diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 3e7c3f62aa752f..ab2287a7abd15c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -59,6 +59,8 @@ # tls/crypto +/doc/api/crypto.md @nodejs/crypto +/doc/api/webcrypto.md @nodejs/crypto /lib/crypto.js @nodejs/crypto /lib/internal/crypto/* @nodejs/crypto /lib/internal/tls/* @nodejs/crypto @nodejs/net @@ -172,3 +174,9 @@ /.github/workflows/update-openssl.yml @nodejs/security-wg /.github/workflows/update-v8.yml @nodejs/security-wg @nodejs/v8-update /tools/dep_updaters/* @nodejs/security-wg + +# Web Standards +/lib/internal/bootstrap/web/* @nodejs/web-standards +/lib/internal/navigator.js @nodejs/web-standards +/test/fixtures/wpt/ @nodejs/web-standards +/test/wpt/ @nodejs/web-standards diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml index 262c39dc4d3525..c1a9ac0ad0573b 100644 --- a/.github/workflows/auto-start-ci.yml +++ b/.github/workflows/auto-start-ci.yml @@ -46,12 +46,12 @@ jobs: if: needs.get-prs-for-ci.outputs.numbers != '' runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Install Node.js - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} diff --git a/.github/workflows/build-tarball.yml b/.github/workflows/build-tarball.yml index 56236ced367c19..c941a88cd43fbd 100644 --- a/.github/workflows/build-tarball.yml +++ b/.github/workflows/build-tarball.yml @@ -39,11 +39,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information @@ -65,11 +65,11 @@ jobs: needs: build-tarball runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 3c7012017df7d9..32dd31fbaf219a 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -38,11 +38,11 @@ jobs: fail-fast: false runs-on: ${{ matrix.windows }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Install deps diff --git a/.github/workflows/comment-labeled.yml b/.github/workflows/comment-labeled.yml index 228875e0cba30a..7e3a19c6afd13c 100644 --- a/.github/workflows/comment-labeled.yml +++ b/.github/workflows/comment-labeled.yml @@ -13,7 +13,7 @@ env: NOTABLE_CHANGE_MESSAGE: | The https://github.com/nodejs/node/labels/notable-change label has been added by @${{ github.actor }}. - Please suggest a text for the release notes if you'd like to include a more detailed summary, then proceed to update the PR description with the text or a link to the notable change suggested text comment. + Please suggest a text for the release notes if you'd like to include a more detailed summary, then proceed to update the PR description with the text or a link to the notable change suggested text comment. Otherwise, the commit will be placed in the _Other Notable Changes_ section. permissions: contents: read diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 444725e9fe3d53..f5d59079aabf11 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -17,13 +17,13 @@ jobs: run: | echo "plusOne=$((${{ github.event.pull_request.commits }} + 1))" >> $GITHUB_OUTPUT echo "minusOne=$((${{ github.event.pull_request.commits }} - 1))" >> $GITHUB_OUTPUT - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: fetch-depth: ${{ steps.nb-of-commits.outputs.plusOne }} persist-credentials: false - run: git reset HEAD^2 - name: Install Node.js - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} - name: Validate commit message diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml index e5f73519f16a99..cd5bbb83007aae 100644 --- a/.github/workflows/commit-queue.yml +++ b/.github/workflows/commit-queue.yml @@ -58,7 +58,7 @@ jobs: if: needs.get_mergeable_prs.outputs.numbers != '' runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: # Needs the whole git history for ncu to work # See https://github.com/nodejs/node-core-utils/pull/486 @@ -71,7 +71,7 @@ jobs: # Install dependencies - name: Install Node.js - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} - name: Install @node-core/utils diff --git a/.github/workflows/coverage-linux-without-intl.yml b/.github/workflows/coverage-linux-without-intl.yml index 7cb41bbb3f6fbe..f54433408bfd29 100644 --- a/.github/workflows/coverage-linux-without-intl.yml +++ b/.github/workflows/coverage-linux-without-intl.yml @@ -3,23 +3,27 @@ name: Coverage Linux (without intl) on: pull_request: types: [opened, synchronize, reopened, ready_for_review] - paths-ignore: - - '**.md' - - benchmark/** - - deps/** - - doc/** - - .github/** - - '!.github/workflows/coverage-linux-without-intl.yml' + paths: + - lib/**/*.js + - Makefile + - src/**/*.cc + - src/**/*.h + - test/** + - tools/gyp/** + - tools/test.py + - .github/workflows/coverage-linux-without-intl.yml push: branches: - main - paths-ignore: - - '**.md' - - benchmark/** - - deps/** - - doc/** - - .github/** - - '!.github/workflows/coverage-linux-without-intl.yml' + paths: + - lib/**/*.js + - Makefile + - src/**/*.cc + - src/**/*.h + - test/** + - tools/gyp/** + - tools/test.py + - .github/workflows/coverage-linux-without-intl.yml concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} @@ -37,11 +41,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/coverage-linux.yml b/.github/workflows/coverage-linux.yml index 12ce0ccc262ade..9d1c1b25ad6792 100644 --- a/.github/workflows/coverage-linux.yml +++ b/.github/workflows/coverage-linux.yml @@ -3,23 +3,27 @@ name: Coverage Linux on: pull_request: types: [opened, synchronize, reopened, ready_for_review] - paths-ignore: - - '**.md' - - benchmark/** - - deps/* - - doc/** - - .github/** - - '!.github/workflows/coverage-linux.yml' + paths: + - lib/**/*.js + - Makefile + - src/**/*.cc + - src/**/*.h + - test/** + - tools/gyp/** + - tools/test.py + - .github/workflows/coverage-linux.yml push: branches: - main - paths-ignore: - - '**.md' - - benchmark/** - - deps/** - - doc/** - - .github/** - - '!.github/workflows/coverage-linux.yml' + paths: + - lib/**/*.js + - Makefile + - src/**/*.cc + - src/**/*.h + - test/** + - tools/gyp/** + - tools/test.py + - .github/workflows/coverage-linux.yml concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} @@ -37,11 +41,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/coverage-windows.yml b/.github/workflows/coverage-windows.yml index 164e30ab035d7a..e837fa04a30e5f 100644 --- a/.github/workflows/coverage-windows.yml +++ b/.github/workflows/coverage-windows.yml @@ -3,25 +3,27 @@ name: Coverage Windows on: pull_request: types: [opened, synchronize, reopened, ready_for_review] - paths-ignore: - - '**.md' - - benchmark/** - - deps/** - - doc/** - - tools/** - - .github/** - - '!.github/workflows/coverage-windows.yml' + paths: + - lib/**/*.js + - Makefile + - src/**/*.cc + - src/**/*.h + - test/** + - tools/gyp/** + - tools/test.py + - .github/workflows/coverage-windows.yml push: branches: - main - paths-ignore: - - '**.md' - - benchmark/** - - deps/** - - doc/** - - tools/** - - .github/** - - '!.github/workflows/coverage-windows.yml' + paths: + - lib/**/*.js + - Makefile + - src/**/*.cc + - src/**/*.h + - test/** + - tools/gyp/** + - tools/test.py + - .github/workflows/coverage-windows.yml concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} @@ -39,11 +41,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: windows-2022 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Install deps diff --git a/.github/workflows/daily-wpt-fyi.yml b/.github/workflows/daily-wpt-fyi.yml index 0fa94da4b015fb..96947ca22eb561 100644 --- a/.github/workflows/daily-wpt-fyi.yml +++ b/.github/workflows/daily-wpt-fyi.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information @@ -45,7 +45,7 @@ jobs: run: echo "NIGHTLY=$(curl -s https://nodejs.org/download/nightly/index.json | jq -r '[.[] | select(.files[] | contains("linux-x64"))][0].version')" >> $GITHUB_ENV - name: Install Node.js id: setup-node - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NIGHTLY || matrix.node-version }} check-latest: true @@ -57,7 +57,7 @@ jobs: SHORT_SHA=$(node -p 'process.version.split(/-nightly\d{8}/)[1]') echo "NIGHTLY_REF=$(gh api /repos/nodejs/node/commits/$SHORT_SHA --jq '.sha')" >> $GITHUB_ENV - name: Checkout ${{ steps.setup-node.outputs.node-version }} - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false ref: ${{ env.NIGHTLY_REF || steps.setup-node.outputs.node-version }} @@ -73,7 +73,7 @@ jobs: run: rm -rf wpt working-directory: test/fixtures - name: Checkout epochs/daily WPT - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: repository: web-platform-tests/wpt persist-credentials: false @@ -98,7 +98,7 @@ jobs: run: rm -rf deps/undici - name: Checkout undici if: ${{ env.WPT_REPORT != '' }} - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: repository: nodejs/undici persist-credentials: false diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index df11560e737837..aff2f1ccb678e6 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -17,11 +17,11 @@ jobs: # not working on gcc-8 and gcc-9 see https://github.com/nodejs/node/issues/38570 container: gcc:11 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} - name: Environment Information diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 36715798829efb..ffb21dc8540d20 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -24,11 +24,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} - name: Environment Information diff --git a/.github/workflows/find-inactive-collaborators.yml b/.github/workflows/find-inactive-collaborators.yml index badb0866dc23d1..8376927156cbb2 100644 --- a/.github/workflows/find-inactive-collaborators.yml +++ b/.github/workflows/find-inactive-collaborators.yml @@ -19,13 +19,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: fetch-depth: 0 persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} diff --git a/.github/workflows/find-inactive-tsc.yml b/.github/workflows/find-inactive-tsc.yml index 0a14599e776d56..2fe7c15fea940c 100644 --- a/.github/workflows/find-inactive-tsc.yml +++ b/.github/workflows/find-inactive-tsc.yml @@ -20,13 +20,13 @@ jobs: steps: - name: Checkout the repo - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: fetch-depth: 0 persist-credentials: false - name: Clone nodejs/TSC repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: fetch-depth: 0 path: .tmp @@ -34,7 +34,7 @@ jobs: repository: nodejs/TSC - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} diff --git a/.github/workflows/license-builder.yml b/.github/workflows/license-builder.yml index 724572c044d0c1..c1cbfafc1ac789 100644 --- a/.github/workflows/license-builder.yml +++ b/.github/workflows/license-builder.yml @@ -17,7 +17,7 @@ jobs: if: github.repository == 'nodejs/node' runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - run: ./tools/license-builder.sh # Run the license builder tool diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index ff01e442990582..c3de444958e396 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -25,11 +25,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} - name: Environment Information @@ -40,11 +40,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information @@ -55,16 +55,16 @@ jobs: if: ${{ github.event.pull_request && github.event.pull_request.draft == false && github.base_ref == github.event.repository.default_branch }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: fetch-depth: 0 persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information @@ -93,11 +93,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} - name: Environment Information @@ -118,11 +118,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information @@ -135,11 +135,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Use Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information @@ -153,7 +153,7 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - run: shellcheck -V @@ -163,7 +163,7 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - uses: mszostok/codeowners-validator@7f3f5e28c6d7b8dfae5731e54ce2272ca384592f @@ -173,7 +173,7 @@ jobs: if: ${{ github.event.pull_request }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: fetch-depth: 2 persist-credentials: false diff --git a/.github/workflows/notify-on-push.yml b/.github/workflows/notify-on-push.yml index 45ed957c0acefa..364e6610d439aa 100644 --- a/.github/workflows/notify-on-push.yml +++ b/.github/workflows/notify-on-push.yml @@ -34,7 +34,7 @@ jobs: permissions: pull-requests: write steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Check commit message diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 804b95cb64683c..cba8bfecbee83e 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -33,17 +33,17 @@ jobs: steps: - name: Harden Runner - uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1 + uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 # v2.6.0 with: egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs - name: Checkout code - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Run analysis - uses: ossf/scorecard-action@08b4669551908b1024bb425080c797723083c031 # v2.2.0 + uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1 with: results_file: results.sarif results_format: sarif @@ -73,6 +73,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard. - name: Upload to code-scanning - uses: github/codeql-action/upload-sarif@ddccb873888234080b77e9bc2d4764d5ccaaccf9 # v2.21.9 + uses: github/codeql-action/upload-sarif@74483a38d39275f33fcff5f35b679b5ca4a26a99 # v2.22.5 with: sarif_file: results.sarif diff --git a/.github/workflows/test-asan.yml b/.github/workflows/test-asan.yml index 3b869140e39317..4db69c4c9ab90b 100644 --- a/.github/workflows/test-asan.yml +++ b/.github/workflows/test-asan.yml @@ -47,11 +47,11 @@ jobs: CONFIG_FLAGS: --enable-asan ASAN: true steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/test-internet.yml b/.github/workflows/test-internet.yml index 20a3beb5367e7e..3d92b245eb19f5 100644 --- a/.github/workflows/test-internet.yml +++ b/.github/workflows/test-internet.yml @@ -40,11 +40,11 @@ jobs: if: github.repository == 'nodejs/node' || github.event_name != 'schedule' runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index c5838f316c9662..2f9e13caf67cfb 100644 --- a/.github/workflows/test-linux.yml +++ b/.github/workflows/test-linux.yml @@ -34,11 +34,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index d0d9d846156dee..cef03a2bb6decc 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -40,11 +40,11 @@ jobs: if: github.event.pull_request.draft == false runs-on: macos-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information diff --git a/.github/workflows/timezone-update.yml b/.github/workflows/timezone-update.yml index 0b1eecde618c7e..12b93abceed7d0 100644 --- a/.github/workflows/timezone-update.yml +++ b/.github/workflows/timezone-update.yml @@ -20,12 +20,12 @@ jobs: steps: - name: Checkout nodejs/node - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Checkout unicode-org/icu-data - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: path: icu-data persist-credentials: false diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 852097fa5626cf..3ff354d55362c6 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -285,13 +285,13 @@ jobs: tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true rm temp-output steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 if: github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id with: persist-credentials: false - name: Set up Python ${{ env.PYTHON_VERSION }} if: matrix.id == 'icu' && (github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id) - uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 with: python-version: ${{ env.PYTHON_VERSION }} - run: ${{ matrix.run }} diff --git a/.github/workflows/update-openssl.yml b/.github/workflows/update-openssl.yml index 5fdc7ac22a8778..95802feaee36f3 100644 --- a/.github/workflows/update-openssl.yml +++ b/.github/workflows/update-openssl.yml @@ -14,7 +14,7 @@ jobs: if: github.repository == 'nodejs/node' runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Check and download new OpenSSL version @@ -62,7 +62,7 @@ jobs: if: github.repository == 'nodejs/node' runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false ref: v16.x-staging diff --git a/.github/workflows/update-v8.yml b/.github/workflows/update-v8.yml index 8fe51b944da264..a22ff2f013864b 100644 --- a/.github/workflows/update-v8.yml +++ b/.github/workflows/update-v8.yml @@ -16,7 +16,7 @@ jobs: if: github.repository == 'nodejs/node' runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: Cache node modules and update-v8 @@ -30,7 +30,7 @@ jobs: ~/.npm key: ${{ runner.os }}-build-${{ env.cache-name }} - name: Install Node.js - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 with: node-version: ${{ env.NODE_VERSION }} - name: Install @node-core/utils diff --git a/.mailmap b/.mailmap index eefb00db9b7afa..24ff039703b9c1 100644 --- a/.mailmap +++ b/.mailmap @@ -92,8 +92,8 @@ Caralyn Reisle Charles Charles Rudolph Chemi Atlow -Chemi Atlow -Chemi Atlow +Chemi Atlow +Chemi Atlow Chen Gang Chen Gang <13298548+MoonBall@users.noreply.github.com> Chengzhong Wu @@ -161,6 +161,7 @@ Erik Corry Ernesto Salazar Erwin W. Ramadhan Ethan Arrowood +Ethan Arrowood Eugene Obrezkov Eugene Ostroukhov Eugene Ostroukhov diff --git a/BUILD.gn b/BUILD.gn new file mode 100644 index 00000000000000..1ed186b597eece --- /dev/null +++ b/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +node_gn_build("node") { +} diff --git a/BUILDING.md b/BUILDING.md index 15ef1a05e77fb8..46827af7c40cbf 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -230,7 +230,7 @@ The Node.js project supports Python >= 3 for building and testing. * `gcc` and `g++` >= 10.1 or newer * GNU Make 3.81 or newer -* Python >=3.6 <=3.11 (see note above) +* [A supported version of Python][Python versions] * For test coverage, your Python installation must include pip. Installation via Linux package manager can be achieved with: @@ -246,7 +246,7 @@ FreeBSD and OpenBSD users may also need to install `libexecinfo`. #### macOS prerequisites * Xcode Command Line Tools >= 13 for macOS -* Python >=3.6 <=3.11 (see note above) +* [A supported version of Python][Python versions] * For test coverage, your Python installation must include pip. macOS users can install the `Xcode Command Line Tools` by running @@ -576,7 +576,8 @@ to run it again before invoking `make -j4`. ##### Option 1: Manual install -* [Python 3.11](https://apps.microsoft.com/store/detail/python-311/9NRWMJP3717K) +* The current [version of Python][Python versions] from the + [Microsoft Store](https://apps.microsoft.com/store/search?publisher=Python+Software+Foundation) * The "Desktop development with C++" workload from [Visual Studio 2022](https://visualstudio.microsoft.com/downloads/) or the "C++ build tools" workload from the @@ -887,3 +888,5 @@ incompatible with the official Node.js builds (e.g. using a ABI incompatible version of a dependency), please reserve and use a custom `NODE_MODULE_VERSION` by opening a pull request against the registry available at . + +[Python versions]: https://devguide.python.org/versions/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 9274cbed3f32fc..7048879edcd122 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,8 @@ release. -21.1.0
+21.2.0
+21.1.0
21.0.0
diff --git a/README.md b/README.md index 70a130c5fa7d07..ab5e5d63a4891a 100644 --- a/README.md +++ b/README.md @@ -341,12 +341,14 @@ For information about the governance of the Node.js project, see **Adrian Estrada** <> (he/him) * [erickwendel](https://github.com/erickwendel) - **Erick Wendel** <> (he/him) +* [Ethan-Arrowood](https://github.com/Ethan-Arrowood) - + **Ethan Arrowood** <> (he/him) * [fhinkel](https://github.com/fhinkel) - **Franziska Hinkelmann** <> (she/her) * [F3n67u](https://github.com/F3n67u) - **Feng Yu** <> (he/him) * [Flarna](https://github.com/Flarna) - - **Gerhard Stöbich** <> (he/they) + **Gerhard Stöbich** <> (he/they) * [gabrielschulhof](https://github.com/gabrielschulhof) - **Gabriel Schulhof** <> * [gengjiawen](https://github.com/gengjiawen) - @@ -417,6 +419,8 @@ For information about the governance of the Node.js project, see **Alba Mendez** <> (she/her) * [MoLow](https://github.com/MoLow) - **Moshe Atlow** <> (he/him) +* [MrJithil](https://github.com/MrJithil) - + **Jithil P Ponnan** <> (he/him) * [mscdex](https://github.com/mscdex) - **Brian White** <> * [MylesBorins](https://github.com/MylesBorins) - diff --git a/benchmark/buffers/buffer-base64-decode.js b/benchmark/buffers/buffer-base64-decode.js index 4a8ed4466df413..f98e621c2dd836 100644 --- a/benchmark/buffers/buffer-base64-decode.js +++ b/benchmark/buffers/buffer-base64-decode.js @@ -15,7 +15,15 @@ function main({ n, size }) { assert.strictEqual(s.length % 4, 0); const b = Buffer.allocUnsafe(encodedSize); b.write(s, 0, encodedSize, 'base64'); + + let tmp; + bench.start(); - for (let i = 0; i < n; i += 1) b.base64Write(s, 0, s.length); + + for (let i = 0; i < n; i += 1) + tmp = b.base64Write(s, 0, s.length); + bench.end(n); + + assert.strictEqual(tmp, encodedSize); } diff --git a/benchmark/buffers/buffer-base64-encode.js b/benchmark/buffers/buffer-base64-encode.js index 0571f3181ae4e2..99f633b65fd871 100644 --- a/benchmark/buffers/buffer-base64-encode.js +++ b/benchmark/buffers/buffer-base64-encode.js @@ -21,6 +21,7 @@ 'use strict'; const common = require('../common.js'); +const assert = require('assert'); const bench = common.createBenchmark(main, { len: [64 * 1024 * 1024], @@ -35,7 +36,15 @@ function main({ n, len }) { let i; for (i = 0; i < 256; ++i) s += String.fromCharCode(i); for (i = 0; i < len; i += 256) b.write(s, i, 256, 'ascii'); + + let tmp; + bench.start(); - for (i = 0; i < n; ++i) b.toString('base64'); + + for (i = 0; i < n; ++i) + tmp = b.toString('base64'); + bench.end(n); + + assert.strictEqual(typeof tmp, 'string'); } diff --git a/benchmark/buffers/buffer-base64url-decode.js b/benchmark/buffers/buffer-base64url-decode.js new file mode 100644 index 00000000000000..276dfc8d23b543 --- /dev/null +++ b/benchmark/buffers/buffer-base64url-decode.js @@ -0,0 +1,29 @@ +'use strict'; +const assert = require('assert'); +const common = require('../common.js'); + +const bench = common.createBenchmark(main, { + n: [32], + size: [8 << 20], +}); + +function main({ n, size }) { + const s = 'abcd'.repeat(size); + const encodedSize = s.length * 3 / 4; + // eslint-disable-next-line node-core/no-unescaped-regexp-dot + s.match(/./); // Flatten string. + assert.strictEqual(s.length % 4, 0); + const b = Buffer.allocUnsafe(encodedSize); + b.write(s, 0, encodedSize, 'base64url'); + + let tmp; + + bench.start(); + + for (let i = 0; i < n; i += 1) + tmp = b.base64Write(s, 0, s.length); + + bench.end(n); + + assert.strictEqual(tmp, encodedSize); +} diff --git a/benchmark/buffers/buffer-base64url-encode.js b/benchmark/buffers/buffer-base64url-encode.js new file mode 100644 index 00000000000000..cb4ea28c29d005 --- /dev/null +++ b/benchmark/buffers/buffer-base64url-encode.js @@ -0,0 +1,29 @@ +'use strict'; +const common = require('../common.js'); +const assert = require('assert'); + +const bench = common.createBenchmark(main, { + len: [64 * 1024 * 1024], + n: [32], +}, { + test: { len: 256 }, +}); + +function main({ n, len }) { + const b = Buffer.allocUnsafe(len); + let s = ''; + let i; + for (i = 0; i < 256; ++i) s += String.fromCharCode(i); + for (i = 0; i < len; i += 256) b.write(s, i, 256, 'ascii'); + + let tmp; + + bench.start(); + + for (i = 0; i < n; ++i) + tmp = b.toString('base64url'); + + bench.end(n); + + assert.strictEqual(typeof tmp, 'string'); +} diff --git a/benchmark/buffers/buffer-hex-decode.js b/benchmark/buffers/buffer-hex-decode.js new file mode 100644 index 00000000000000..4d4db07238c630 --- /dev/null +++ b/benchmark/buffers/buffer-hex-decode.js @@ -0,0 +1,29 @@ +'use strict'; + +const common = require('../common.js'); +const assert = require('assert'); + +const bench = common.createBenchmark(main, { + len: [64, 1024], + n: [1e6], +}); + +function main({ len, n }) { + const buf = Buffer.alloc(len); + + for (let i = 0; i < buf.length; i++) + buf[i] = i & 0xff; + + const plain = buf; + + bench.start(); + + let tmp; + + for (let i = 0; i < n; i += 1) + tmp = plain.toString('hex'); + + bench.end(n); + + assert.strictEqual(typeof tmp, 'string'); +} diff --git a/benchmark/buffers/buffer-hex.js b/benchmark/buffers/buffer-hex-encode.js similarity index 74% rename from benchmark/buffers/buffer-hex.js rename to benchmark/buffers/buffer-hex-encode.js index 6e61d71c9bacf1..d038ce95f0aec8 100644 --- a/benchmark/buffers/buffer-hex.js +++ b/benchmark/buffers/buffer-hex-encode.js @@ -1,6 +1,7 @@ 'use strict'; const common = require('../common.js'); +const assert = require('assert'); const bench = common.createBenchmark(main, { len: [64, 1024], @@ -14,11 +15,14 @@ function main({ len, n }) { buf[i] = i & 0xff; const hex = buf.toString('hex'); + let tmp; bench.start(); for (let i = 0; i < n; i += 1) - Buffer.from(hex, 'hex'); + tmp = Buffer.from(hex, 'hex'); bench.end(n); + + assert.strictEqual(typeof tmp, 'object'); } diff --git a/benchmark/error/hidestackframes-noerr.js b/benchmark/error/hidestackframes-noerr.js new file mode 100644 index 00000000000000..9e662f6a620f13 --- /dev/null +++ b/benchmark/error/hidestackframes-noerr.js @@ -0,0 +1,62 @@ +'use strict'; + +const common = require('../common.js'); +const assert = require('assert'); + +const bench = common.createBenchmark(main, { + type: [ + 'hide-stackframes', + 'direct-call', + ], + n: [1e7], +}, { + flags: ['--expose-internals'], +}); + +function main({ n, type }) { + const { + hideStackFrames, + codes: { + ERR_INVALID_ARG_TYPE, + }, + } = require('internal/errors'); + + const testfn = (value) => { + if (typeof value !== 'number') { + throw new ERR_INVALID_ARG_TYPE('Benchmark', 'number', value); + } + }; + + const hideStackFramesTestfn = hideStackFrames((value) => { + if (typeof value !== 'number') { + throw new ERR_INVALID_ARG_TYPE.HideStackFrameError('Benchmark', 'number', value); + } + }); + + const fn = type === 'hide-stackframe' ? hideStackFramesTestfn : testfn; + + const value = 42; + + const length = 1024; + const array = []; + const errCase = false; + + for (let i = 0; i < length; ++i) { + array.push(fn(value)); + } + + bench.start(); + + for (let i = 0; i < n; i++) { + const index = i % length; + array[index] = fn(value); + } + + bench.end(n); + + // Verify the entries to prevent dead code elimination from making + // the benchmark invalid. + for (let i = 0; i < length; ++i) { + assert.strictEqual(typeof array[i], errCase ? 'object' : 'undefined'); + } +} diff --git a/benchmark/error/hidestackframes-throw.js b/benchmark/error/hidestackframes-throw.js new file mode 100644 index 00000000000000..c7147e39ba57a3 --- /dev/null +++ b/benchmark/error/hidestackframes-throw.js @@ -0,0 +1,87 @@ +'use strict'; + +const common = require('../common.js'); +const assert = require('assert'); + +const bench = common.createBenchmark(main, { + type: [ + 'hide-stackframes', + 'direct-call', + ], + double: ['true', 'false'], + n: [1e5], +}, { + flags: ['--expose-internals'], +}); + +function main({ n, type, double }) { + const { + hideStackFrames, + codes: { + ERR_INVALID_ARG_TYPE, + }, + } = require('internal/errors'); + + const value = 'err'; + + const testfn = (value) => { + if (typeof value !== 'number') { + throw new ERR_INVALID_ARG_TYPE('Benchmark', 'number', value); + } + }; + + const hideStackFramesTestfn = hideStackFrames((value) => { + if (typeof value !== 'number') { + throw new ERR_INVALID_ARG_TYPE.HideStackFrameError('Benchmark', 'number', value); + } + }); + + function doubleTestfn(value) { + testfn(value); + } + + const doubleHideStackFramesTestfn = hideStackFrames((value) => { + hideStackFramesTestfn.withoutStackTrace(value); + }); + + const fn = type === 'hide-stackframe' ? + double === 'true' ? + doubleHideStackFramesTestfn : + hideStackFramesTestfn : + double === 'true' ? + doubleTestfn : + testfn; + + const length = 1024; + const array = []; + let errCase = false; + + // Warm up. + for (let i = 0; i < length; ++i) { + try { + fn(value); + } catch (e) { + errCase = true; + array.push(e); + } + } + + bench.start(); + + for (let i = 0; i < n; i++) { + const index = i % length; + try { + fn(value); + } catch (e) { + array[index] = e; + } + } + + bench.end(n); + + // Verify the entries to prevent dead code elimination from making + // the benchmark invalid. + for (let i = 0; i < length; ++i) { + assert.strictEqual(typeof array[i], errCase ? 'object' : 'undefined'); + } +} diff --git a/benchmark/error/hidestackframes.js b/benchmark/error/hidestackframes.js deleted file mode 100644 index b28be725a30969..00000000000000 --- a/benchmark/error/hidestackframes.js +++ /dev/null @@ -1,45 +0,0 @@ -'use strict'; - -const common = require('../common.js'); - -const bench = common.createBenchmark(main, { - type: ['hide-stackframes-throw', 'direct-call-throw', - 'hide-stackframes-noerr', 'direct-call-noerr'], - n: [10e4], -}, { - flags: ['--expose-internals'], -}); - -function main({ n, type }) { - const { - hideStackFrames, - codes: { - ERR_INVALID_ARG_TYPE, - }, - } = require('internal/errors'); - - const testfn = (value) => { - if (typeof value !== 'number') { - throw new ERR_INVALID_ARG_TYPE('Benchmark', 'number', value); - } - }; - - let fn = testfn; - if (type.startsWith('hide-stackframe')) - fn = hideStackFrames(testfn); - let value = 42; - if (type.endsWith('-throw')) - value = 'err'; - - bench.start(); - - for (let i = 0; i < n; i++) { - try { - fn(value); - } catch { - // No-op - } - } - - bench.end(n); -} diff --git a/benchmark/es/string-concatenations.js b/benchmark/es/string-concatenations.js index 3c0b27e05019d1..4f9d56cc69df84 100644 --- a/benchmark/es/string-concatenations.js +++ b/benchmark/es/string-concatenations.js @@ -3,7 +3,7 @@ const common = require('../common.js'); const configs = { - n: [1e3], + n: [1e6], mode: [ 'multi-concat', 'multi-join', diff --git a/benchmark/fixtures/esm-dir-file.mjs b/benchmark/fixtures/esm-dir-file.mjs new file mode 100644 index 00000000000000..d5dafc5c46697e --- /dev/null +++ b/benchmark/fixtures/esm-dir-file.mjs @@ -0,0 +1,3 @@ +import assert from 'assert'; +assert.ok(import.meta.dirname); +assert.ok(import.meta.filename); diff --git a/benchmark/fixtures/load-esm-dir-file.js b/benchmark/fixtures/load-esm-dir-file.js new file mode 100644 index 00000000000000..a4115dd39e0489 --- /dev/null +++ b/benchmark/fixtures/load-esm-dir-file.js @@ -0,0 +1,5 @@ +(async function () { + for (let i = 0; i < 1000; i += 1) { + await import(`./esm-dir-file.mjs?i=${i}`); + } +}()); diff --git a/benchmark/misc/startup.js b/benchmark/misc/startup.js index 07c0701d128899..f55be1a7902e4f 100644 --- a/benchmark/misc/startup.js +++ b/benchmark/misc/startup.js @@ -9,6 +9,7 @@ const bench = common.createBenchmark(main, { script: [ 'benchmark/fixtures/require-builtins', 'test/fixtures/semicolon', + 'benchmark/fixtures/load-esm-dir-file', ], mode: ['process', 'worker'], count: [30], diff --git a/benchmark/misc/structured-clone.js b/benchmark/misc/structured-clone.js new file mode 100644 index 00000000000000..257671df44b07f --- /dev/null +++ b/benchmark/misc/structured-clone.js @@ -0,0 +1,46 @@ +'use strict'; + +const common = require('../common.js'); +const assert = require('assert'); + +const bench = common.createBenchmark(main, { + type: ['string', 'object', 'arraybuffer'], + n: [1e4], +}); + +function main({ n, type }) { + const data = []; + + switch (type) { + case 'string': + for (let i = 0; i < n; ++i) { + data.push(new Date().toISOString()); + } + break; + case 'object': + for (let i = 0; i < n; ++i) { + data.push({ ...process.config }); + } + break; + case 'arraybuffer': + for (let i = 0; i < n; ++i) { + data.push(new ArrayBuffer(10)); + } + break; + default: + throw new Error('Unsupported payload type'); + } + + const run = type === 'arraybuffer' ? (i) => { + data[i] = structuredClone(data[i], { transfer: [ data[i] ] }); + } : (i) => { + data[i] = structuredClone(data[i]); + }; + + bench.start(); + for (let i = 0; i < n; ++i) { + run(i); + } + bench.end(n); + assert.strictEqual(data.length, n); +} diff --git a/benchmark/os/uptime.js b/benchmark/os/uptime.js index 2f25dfe670b722..9826107c69d039 100644 --- a/benchmark/os/uptime.js +++ b/benchmark/os/uptime.js @@ -1,14 +1,21 @@ 'use strict'; +const os = require('os'); const common = require('../common.js'); -const uptime = require('os').uptime; const assert = require('assert'); +const uptime = os.uptime; + const bench = common.createBenchmark(main, { n: [1e5], }); function main({ n }) { + if (os.type() === 'OS400') { + console.log('Skipping: os.uptime is not implemented on IBMi'); + process.exit(0); + } + // Warm up. const length = 1024; const array = []; diff --git a/benchmark/perf_hooks/histogram-clone.js b/benchmark/perf_hooks/histogram-clone.js new file mode 100644 index 00000000000000..4b610963fa2a0a --- /dev/null +++ b/benchmark/perf_hooks/histogram-clone.js @@ -0,0 +1,24 @@ +'use strict'; + +const assert = require('assert'); +const common = require('../common.js'); + +const { createHistogram } = require('perf_hooks'); + +const bench = common.createBenchmark(main, { + n: [1e5], +}); + +let _histogram; + +function main({ n }) { + const histogram = createHistogram(); + + bench.start(); + for (let i = 0; i < n; i++) + _histogram = structuredClone(histogram); + bench.end(n); + + // Avoid V8 deadcode (elimination) + assert.ok(_histogram); +} diff --git a/benchmark/perf_hooks/histogram-create.js b/benchmark/perf_hooks/histogram-create.js new file mode 100644 index 00000000000000..89ddad1fa79224 --- /dev/null +++ b/benchmark/perf_hooks/histogram-create.js @@ -0,0 +1,22 @@ +'use strict'; + +const assert = require('assert'); +const common = require('../common.js'); + +const { createHistogram } = require('perf_hooks'); + +const bench = common.createBenchmark(main, { + n: [1e5], +}); + +let _histogram; + +function main({ n }) { + bench.start(); + for (let i = 0; i < n; i++) + _histogram = createHistogram(); + bench.end(n); + + // Avoid V8 deadcode (elimination) + assert.ok(_histogram); +} diff --git a/benchmark/permission/permission-fs-read.js b/benchmark/permission/permission-processhas-fs-read.js similarity index 100% rename from benchmark/permission/permission-fs-read.js rename to benchmark/permission/permission-processhas-fs-read.js diff --git a/benchmark/streams/readable-bigread.js b/benchmark/streams/readable-bigread.js index 0d963c6803299e..8b36f49d7ffa53 100644 --- a/benchmark/streams/readable-bigread.js +++ b/benchmark/streams/readable-bigread.js @@ -15,7 +15,7 @@ function main({ n }) { bench.start(); for (let k = 0; k < n; ++k) { - for (let i = 0; i < 1e4; ++i) + for (let i = 0; i < 1e3; ++i) s.push(b); while (s.read(128)); } diff --git a/benchmark/streams/readable-from.js b/benchmark/streams/readable-from.js index 2dcf10ffef2732..c3990d20f988db 100644 --- a/benchmark/streams/readable-from.js +++ b/benchmark/streams/readable-from.js @@ -5,15 +5,58 @@ const Readable = require('stream').Readable; const bench = common.createBenchmark(main, { n: [1e7], + type: ['array', 'sync-generator-with-sync-values', 'sync-generator-with-async-values', 'async-generator'], }); -async function main({ n }) { - const arr = []; - for (let i = 0; i < n; i++) { - arr.push(`${i}`); +async function main({ n, type }) { + let fromArg; + + switch (type) { + case 'array': { + fromArg = []; + for (let i = 0; i < n; i++) { + fromArg.push(`${i}`); + } + + break; + } + + case 'sync-generator-with-sync-values': { + fromArg = (function* () { + for (let i = 0; i < n; i++) { + yield `${i}`; + } + })(); + + break; + } + + case 'sync-generator-with-async-values': { + fromArg = (function* () { + for (let i = 0; i < n; i++) { + yield Promise.resolve(`${i}`); + } + })(); + + break; + } + + case 'async-generator': { + fromArg = (async function* () { + for (let i = 0; i < n; i++) { + yield `${i}`; + } + })(); + + break; + } + + default: { + throw new Error(`Unknown type: ${type}`); + } } - const s = new Readable.from(arr); + const s = new Readable.from(fromArg); bench.start(); s.on('data', (data) => { diff --git a/benchmark/streams/readable-readall.js b/benchmark/streams/readable-readall.js index b62b1d05b13876..c1a015a4d02716 100644 --- a/benchmark/streams/readable-readall.js +++ b/benchmark/streams/readable-readall.js @@ -15,7 +15,7 @@ function main({ n }) { bench.start(); for (let k = 0; k < n; ++k) { - for (let i = 0; i < 1e4; ++i) + for (let i = 0; i < 1e3; ++i) s.push(b); while (s.read()); } diff --git a/common.gypi b/common.gypi index d5328f39b28837..c51dbca5e74c5b 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.14', + 'v8_embedder_string': '-node.15', ##### V8 defaults for Node.js ##### diff --git a/configure b/configure index fefb313c9cd13c..711a3014b9a67f 100755 --- a/configure +++ b/configure @@ -4,6 +4,7 @@ # Note that the mix of single and double quotes is intentional, # as is the fact that the ] goes on a new line. _=[ 'exec' '/bin/sh' '-c' ''' +command -v python3.12 >/dev/null && exec python3.12 "$0" "$@" command -v python3.11 >/dev/null && exec python3.11 "$0" "$@" command -v python3.10 >/dev/null && exec python3.10 "$0" "$@" command -v python3.9 >/dev/null && exec python3.9 "$0" "$@" @@ -23,7 +24,7 @@ except ImportError: from distutils.spawn import find_executable as which print('Node.js configure: Found Python {}.{}.{}...'.format(*sys.version_info)) -acceptable_pythons = ((3, 11), (3, 10), (3, 9), (3, 8), (3, 7), (3, 6)) +acceptable_pythons = ((3, 12), (3, 11), (3, 10), (3, 9), (3, 8), (3, 7), (3, 6)) if sys.version_info[:2] in acceptable_pythons: import configure else: diff --git a/configure.py b/configure.py index 8be9e9ca5c4af8..be95decd5668f2 100755 --- a/configure.py +++ b/configure.py @@ -14,8 +14,6 @@ import io from pathlib import Path -from distutils.version import StrictVersion - # If not run from node/, cd to node/. os.chdir(Path(__file__).parent) @@ -30,6 +28,7 @@ sys.path.insert(0, str(tools_path / 'gyp' / 'pylib')) from gyp.common import GetFlavor +from packaging.version import Version # imports in tools/configure.d sys.path.insert(0, str(tools_path / 'configure.d')) @@ -1566,10 +1565,10 @@ def without_ssl_error(option): # supported asm compiler for AVX2. See https://github.com/openssl/openssl/ # blob/OpenSSL_1_1_0-stable/crypto/modes/asm/aesni-gcm-x86_64.pl#L52-L69 openssl110_asm_supported = \ - ('gas_version' in variables and StrictVersion(variables['gas_version']) >= StrictVersion('2.23')) or \ - ('xcode_version' in variables and StrictVersion(variables['xcode_version']) >= StrictVersion('5.0')) or \ - ('llvm_version' in variables and StrictVersion(variables['llvm_version']) >= StrictVersion('3.3')) or \ - ('nasm_version' in variables and StrictVersion(variables['nasm_version']) >= StrictVersion('2.10')) + ('gas_version' in variables and Version(variables['gas_version']) >= Version('2.23')) or \ + ('xcode_version' in variables and Version(variables['xcode_version']) >= Version('5.0')) or \ + ('llvm_version' in variables and Version(variables['llvm_version']) >= Version('3.3')) or \ + ('nasm_version' in variables and Version(variables['nasm_version']) >= Version('2.10')) if is_x86 and not openssl110_asm_supported: error('''Did not find a new enough assembler, install one or build with @@ -2121,6 +2120,17 @@ def make_bin_override(): gyp_args = ['--no-parallel', '-Dconfiguring_node=1'] gyp_args += ['-Dbuild_type=' + config['BUILDTYPE']] +# Remove the trailing .exe from the executable name, otherwise the python.exe +# would be rewrote as python_host.exe due to hack in GYP for supporting cross +# compilation on Windows. +# See https://github.com/nodejs/node/pull/32867 for related change. +python = sys.executable +if flavor == 'win' and python.lower().endswith('.exe'): + python = python[:-4] +# Always set 'python' variable, otherwise environments that only have python3 +# will fail to run python scripts. +gyp_args += ['-Dpython=' + python] + if options.use_ninja: gyp_args += ['-f', 'ninja-' + flavor] elif flavor == 'win' and sys.platform != 'msys': @@ -2133,10 +2143,6 @@ def make_bin_override(): os.path.islink('./compile_commands.json') and os.unlink('./compile_commands.json') os.symlink('./out/' + config['BUILDTYPE'] + '/compile_commands.json', './compile_commands.json') -# override the variable `python` defined in common.gypi -if bin_override is not None: - gyp_args += ['-Dpython=' + sys.executable] - # pass the leftover non-whitespace positional arguments to GYP gyp_args += [arg for arg in args if not str.isspace(arg)] diff --git a/deps/acorn/acorn/CHANGELOG.md b/deps/acorn/acorn/CHANGELOG.md index 12464cfdbeefdd..02a4b546153973 100644 --- a/deps/acorn/acorn/CHANGELOG.md +++ b/deps/acorn/acorn/CHANGELOG.md @@ -1,3 +1,29 @@ +## 8.11.2 (2023-10-27) + +### Bug fixes + +Fix a bug that caused regular expressions after colon tokens to not be properly tokenized in some circumstances. + +## 8.11.1 (2023-10-26) + +### Bug fixes + +Fix a regression where `onToken` would receive 'name' tokens for 'new' keyword tokens. + +## 8.11.0 (2023-10-26) + +### Bug fixes + +Fix an issue where tokenizing (without parsing) an object literal with a property named `class` or `function` could, in some circumstance, put the tokenizer into an invalid state. + +Fix an issue where a slash after a call to a propery named the same as some keywords would be tokenized as a regular expression. + +### New features + +Upgrade to Unicode 15.1. + +Use a set of new, much more precise, TypeScript types. + ## 8.10.0 (2023-07-05) ### New features diff --git a/deps/acorn/acorn/README.md b/deps/acorn/acorn/README.md index b62d02bde1fbb0..cfc51b384a3e2b 100644 --- a/deps/acorn/acorn/README.md +++ b/deps/acorn/acorn/README.md @@ -9,9 +9,7 @@ Acorn is open source software released under an You are welcome to [report bugs](https://github.com/acornjs/acorn/issues) or create pull -requests on [github](https://github.com/acornjs/acorn). For questions -and discussion, please use the -[Tern discussion forum](https://discuss.ternjs.net). +requests on [github](https://github.com/acornjs/acorn). ## Installation @@ -204,6 +202,13 @@ option is enabled). When the token's type is `tokTypes.eof`, you should stop calling the method, since it will keep returning that same token forever. +Note that tokenizing JavaScript without parsing it is, in modern +versions of the language, not really possible due to the way syntax is +overloaded in ways that can only be disambiguated by the parse +context. This package applies a bunch of heuristics to try and do a +reasonable job, but you are advised to use `parse` with the `onToken` +option instead of this. + In ES6 environment, returned result can be used as any other protocol-compliant iterable: diff --git a/deps/acorn/acorn/dist/acorn.d.mts b/deps/acorn/acorn/dist/acorn.d.mts index 49ae59fd95776a..6ad58121195c96 100644 --- a/deps/acorn/acorn/dist/acorn.d.mts +++ b/deps/acorn/acorn/dist/acorn.d.mts @@ -1,26 +1,857 @@ -export { - Node, - Parser, - Position, - SourceLocation, - TokContext, - Token, - TokenType, - defaultOptions, - getLineInfo, - isIdentifierChar, - isIdentifierStart, - isNewLine, - lineBreak, - lineBreakG, - parse, - parseExpressionAt, - tokContexts, - tokTypes, - tokenizer, - version, - AbstractToken, - Comment, - Options, - ecmaVersion, -} from "./acorn.js"; +export interface Node { + start: number + end: number + type: string + range?: [number, number] + loc?: SourceLocation | null +} + +export interface SourceLocation { + source?: string | null + start: Position + end: Position +} + +export interface Position { + /** 1-based */ + line: number + /** 0-based */ + column: number +} + +export interface Identifier extends Node { + type: "Identifier" + name: string +} + +export interface Literal extends Node { + type: "Literal" + value?: string | boolean | null | number | RegExp | bigint + raw?: string + regex?: { + pattern: string + flags: string + } + bigint?: string +} + +export interface Program extends Node { + type: "Program" + body: Array + sourceType: "script" | "module" +} + +export interface Function extends Node { + id?: Identifier | null + params: Array + body: BlockStatement | Expression + generator: boolean + expression: boolean + async: boolean +} + +export interface ExpressionStatement extends Node { + type: "ExpressionStatement" + expression: Expression | Literal + directive?: string +} + +export interface BlockStatement extends Node { + type: "BlockStatement" + body: Array +} + +export interface EmptyStatement extends Node { + type: "EmptyStatement" +} + +export interface DebuggerStatement extends Node { + type: "DebuggerStatement" +} + +export interface WithStatement extends Node { + type: "WithStatement" + object: Expression + body: Statement +} + +export interface ReturnStatement extends Node { + type: "ReturnStatement" + argument?: Expression | null +} + +export interface LabeledStatement extends Node { + type: "LabeledStatement" + label: Identifier + body: Statement +} + +export interface BreakStatement extends Node { + type: "BreakStatement" + label?: Identifier | null +} + +export interface ContinueStatement extends Node { + type: "ContinueStatement" + label?: Identifier | null +} + +export interface IfStatement extends Node { + type: "IfStatement" + test: Expression + consequent: Statement + alternate?: Statement | null +} + +export interface SwitchStatement extends Node { + type: "SwitchStatement" + discriminant: Expression + cases: Array +} + +export interface SwitchCase extends Node { + type: "SwitchCase" + test?: Expression | null + consequent: Array +} + +export interface ThrowStatement extends Node { + type: "ThrowStatement" + argument: Expression +} + +export interface TryStatement extends Node { + type: "TryStatement" + block: BlockStatement + handler?: CatchClause | null + finalizer?: BlockStatement | null +} + +export interface CatchClause extends Node { + type: "CatchClause" + param?: Pattern | null + body: BlockStatement +} + +export interface WhileStatement extends Node { + type: "WhileStatement" + test: Expression + body: Statement +} + +export interface DoWhileStatement extends Node { + type: "DoWhileStatement" + body: Statement + test: Expression +} + +export interface ForStatement extends Node { + type: "ForStatement" + init?: VariableDeclaration | Expression | null + test?: Expression | null + update?: Expression | null + body: Statement +} + +export interface ForInStatement extends Node { + type: "ForInStatement" + left: VariableDeclaration | Pattern + right: Expression + body: Statement +} + +export interface FunctionDeclaration extends Function { + type: "FunctionDeclaration" + id: Identifier + body: BlockStatement +} + +export interface VariableDeclaration extends Node { + type: "VariableDeclaration" + declarations: Array + kind: "var" | "let" | "const" +} + +export interface VariableDeclarator extends Node { + type: "VariableDeclarator" + id: Pattern + init?: Expression | null +} + +export interface ThisExpression extends Node { + type: "ThisExpression" +} + +export interface ArrayExpression extends Node { + type: "ArrayExpression" + elements: Array +} + +export interface ObjectExpression extends Node { + type: "ObjectExpression" + properties: Array +} + +export interface Property extends Node { + type: "Property" + key: Expression + value: Expression + kind: "init" | "get" | "set" + method: boolean + shorthand: boolean + computed: boolean +} + +export interface FunctionExpression extends Function { + type: "FunctionExpression" + body: BlockStatement +} + +export interface UnaryExpression extends Node { + type: "UnaryExpression" + operator: UnaryOperator + prefix: boolean + argument: Expression +} + +export type UnaryOperator = "-" | "+" | "!" | "~" | "typeof" | "void" | "delete" + +export interface UpdateExpression extends Node { + type: "UpdateExpression" + operator: UpdateOperator + argument: Expression + prefix: boolean +} + +export type UpdateOperator = "++" | "--" + +export interface BinaryExpression extends Node { + type: "BinaryExpression" + operator: BinaryOperator + left: Expression | PrivateIdentifier + right: Expression +} + +export type BinaryOperator = "==" | "!=" | "===" | "!==" | "<" | "<=" | ">" | ">=" | "<<" | ">>" | ">>>" | "+" | "-" | "*" | "/" | "%" | "|" | "^" | "&" | "in" | "instanceof" | "**" + +export interface AssignmentExpression extends Node { + type: "AssignmentExpression" + operator: AssignmentOperator + left: Pattern + right: Expression +} + +export type AssignmentOperator = "=" | "+=" | "-=" | "*=" | "/=" | "%=" | "<<=" | ">>=" | ">>>=" | "|=" | "^=" | "&=" | "**=" | "||=" | "&&=" | "??=" + +export interface LogicalExpression extends Node { + type: "LogicalExpression" + operator: LogicalOperator + left: Expression + right: Expression +} + +export type LogicalOperator = "||" | "&&" | "??" + +export interface MemberExpression extends Node { + type: "MemberExpression" + object: Expression | Super + property: Expression | PrivateIdentifier + computed: boolean + optional: boolean +} + +export interface ConditionalExpression extends Node { + type: "ConditionalExpression" + test: Expression + alternate: Expression + consequent: Expression +} + +export interface CallExpression extends Node { + type: "CallExpression" + callee: Expression | Super + arguments: Array + optional: boolean +} + +export interface NewExpression extends Node { + type: "NewExpression" + callee: Expression + arguments: Array +} + +export interface SequenceExpression extends Node { + type: "SequenceExpression" + expressions: Array +} + +export interface ForOfStatement extends Node { + type: "ForOfStatement" + left: VariableDeclaration | Pattern + right: Expression + body: Statement + await: boolean +} + +export interface Super extends Node { + type: "Super" +} + +export interface SpreadElement extends Node { + type: "SpreadElement" + argument: Expression +} + +export interface ArrowFunctionExpression extends Function { + type: "ArrowFunctionExpression" +} + +export interface YieldExpression extends Node { + type: "YieldExpression" + argument?: Expression | null + delegate: boolean +} + +export interface TemplateLiteral extends Node { + type: "TemplateLiteral" + quasis: Array + expressions: Array +} + +export interface TaggedTemplateExpression extends Node { + type: "TaggedTemplateExpression" + tag: Expression + quasi: TemplateLiteral +} + +export interface TemplateElement extends Node { + type: "TemplateElement" + tail: boolean + value: { + cooked?: string | null + raw: string + } +} + +export interface AssignmentProperty extends Node { + type: "Property" + key: Expression + value: Pattern + kind: "init" + method: false + shorthand: boolean + computed: boolean +} + +export interface ObjectPattern extends Node { + type: "ObjectPattern" + properties: Array +} + +export interface ArrayPattern extends Node { + type: "ArrayPattern" + elements: Array +} + +export interface RestElement extends Node { + type: "RestElement" + argument: Pattern +} + +export interface AssignmentPattern extends Node { + type: "AssignmentPattern" + left: Pattern + right: Expression +} + +export interface Class extends Node { + id?: Identifier | null + superClass?: Expression | null + body: ClassBody +} + +export interface ClassBody extends Node { + type: "ClassBody" + body: Array +} + +export interface MethodDefinition extends Node { + type: "MethodDefinition" + key: Expression | PrivateIdentifier + value: FunctionExpression + kind: "constructor" | "method" | "get" | "set" + computed: boolean + static: boolean +} + +export interface ClassDeclaration extends Class { + type: "ClassDeclaration" + id: Identifier +} + +export interface ClassExpression extends Class { + type: "ClassExpression" +} + +export interface MetaProperty extends Node { + type: "MetaProperty" + meta: Identifier + property: Identifier +} + +export interface ImportDeclaration extends Node { + type: "ImportDeclaration" + specifiers: Array + source: Literal +} + +export interface ImportSpecifier extends Node { + type: "ImportSpecifier" + imported: Identifier | Literal + local: Identifier +} + +export interface ImportDefaultSpecifier extends Node { + type: "ImportDefaultSpecifier" + local: Identifier +} + +export interface ImportNamespaceSpecifier extends Node { + type: "ImportNamespaceSpecifier" + local: Identifier +} + +export interface ExportNamedDeclaration extends Node { + type: "ExportNamedDeclaration" + declaration?: Declaration | null + specifiers: Array + source?: Literal | null +} + +export interface ExportSpecifier extends Node { + type: "ExportSpecifier" + exported: Identifier | Literal + local: Identifier | Literal +} + +export interface AnonymousFunctionDeclaration extends Function { + type: "FunctionDeclaration" + id: null + body: BlockStatement +} + +export interface AnonymousClassDeclaration extends Class { + type: "ClassDeclaration" + id: null +} + +export interface ExportDefaultDeclaration extends Node { + type: "ExportDefaultDeclaration" + declaration: AnonymousFunctionDeclaration | FunctionDeclaration | AnonymousClassDeclaration | ClassDeclaration | Expression +} + +export interface ExportAllDeclaration extends Node { + type: "ExportAllDeclaration" + source: Literal + exported?: Identifier | Literal | null +} + +export interface AwaitExpression extends Node { + type: "AwaitExpression" + argument: Expression +} + +export interface ChainExpression extends Node { + type: "ChainExpression" + expression: MemberExpression | CallExpression +} + +export interface ImportExpression extends Node { + type: "ImportExpression" + source: Expression +} + +export interface ParenthesizedExpression extends Node { + type: "ParenthesizedExpression" + expression: Expression +} + +export interface PropertyDefinition extends Node { + type: "PropertyDefinition" + key: Expression | PrivateIdentifier + value?: Expression | null + computed: boolean + static: boolean +} + +export interface PrivateIdentifier extends Node { + type: "PrivateIdentifier" + name: string +} + +export interface StaticBlock extends Node { + type: "StaticBlock" + body: Array +} + +export type Statement = +| ExpressionStatement +| BlockStatement +| EmptyStatement +| DebuggerStatement +| WithStatement +| ReturnStatement +| LabeledStatement +| BreakStatement +| ContinueStatement +| IfStatement +| SwitchStatement +| ThrowStatement +| TryStatement +| WhileStatement +| DoWhileStatement +| ForStatement +| ForInStatement +| ForOfStatement +| Declaration + +export type Declaration = +| FunctionDeclaration +| VariableDeclaration +| ClassDeclaration + +export type Expression = +| Identifier +| Literal +| ThisExpression +| ArrayExpression +| ObjectExpression +| FunctionExpression +| UnaryExpression +| UpdateExpression +| BinaryExpression +| AssignmentExpression +| LogicalExpression +| MemberExpression +| ConditionalExpression +| CallExpression +| NewExpression +| SequenceExpression +| ArrowFunctionExpression +| YieldExpression +| TemplateLiteral +| TaggedTemplateExpression +| ClassExpression +| MetaProperty +| AwaitExpression +| ChainExpression +| ImportExpression +| ParenthesizedExpression + +export type Pattern = +| Identifier +| MemberExpression +| ObjectPattern +| ArrayPattern +| RestElement +| AssignmentPattern + +export type ModuleDeclaration = +| ImportDeclaration +| ExportNamedDeclaration +| ExportDefaultDeclaration +| ExportAllDeclaration + +export type AnyNode = Statement | Expression | Declaration | ModuleDeclaration | Literal | Program | SwitchCase | CatchClause | Property | Super | SpreadElement | TemplateElement | AssignmentProperty | ObjectPattern | ArrayPattern | RestElement | AssignmentPattern | ClassBody | MethodDefinition | MetaProperty | ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ExportSpecifier | AnonymousFunctionDeclaration | AnonymousClassDeclaration | PropertyDefinition | PrivateIdentifier | StaticBlock + +export function parse(input: string, options: Options): Program + +export function parseExpressionAt(input: string, pos: number, options: Options): Expression + +export function tokenizer(input: string, options: Options): { + getToken(): Token + [Symbol.iterator](): Iterator +} + +export type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | "latest" + +export interface Options { + /** + * `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), 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: ecmaVersion + + /** + * `sourceType` indicates the mode the code should be parsed in. + * Can be either `"script"` or `"module"`. This influences global + * strict mode and parsing of `import` and `export` declarations. + */ + sourceType?: "script" | "module" + + /** + * a callback that will be called when a semicolon is automatically inserted. + * @param lastTokEnd the position of the comma as an offset + * @param lastTokEndLoc location if {@link locations} is enabled + */ + onInsertedSemicolon?: (lastTokEnd: number, lastTokEndLoc?: Position) => void + + /** + * similar to `onInsertedSemicolon`, but for trailing commas + * @param lastTokEnd the position of the comma as an offset + * @param lastTokEndLoc location if `locations` is enabled + */ + onTrailingComma?: (lastTokEnd: number, lastTokEndLoc?: Position) => void + + /** + * By default, reserved words are only enforced if ecmaVersion >= 5. + * Set `allowReserved` to a boolean value to explicitly turn this on + * an off. When this option has the value "never", reserved words + * and keywords can also not be used as property names. + */ + allowReserved?: boolean | "never" + + /** + * When enabled, a return at the top level is not considered an error. + */ + allowReturnOutsideFunction?: boolean + + /** + * When enabled, import/export statements are not constrained to + * appearing at the top of the program, and an import.meta expression + * in a script isn't considered an error. + */ + allowImportExportEverywhere?: boolean + + /** + * By default, `await` identifiers are allowed to appear at the top-level scope only if {@link ecmaVersion} >= 2022. + * When enabled, await identifiers are allowed to appear at the top-level scope, + * but they are still not allowed in non-async functions. + */ + allowAwaitOutsideFunction?: boolean + + /** + * When enabled, super identifiers are not constrained to + * appearing in methods and do not raise an error when they appear elsewhere. + */ + allowSuperOutsideMethod?: boolean + + /** + * When enabled, hashbang directive in the beginning of file is + * allowed and treated as a line comment. Enabled by default when + * {@link ecmaVersion} >= 2023. + */ + allowHashBang?: boolean + + /** + * By default, the parser will verify that private properties are + * only used in places where they are valid and have been declared. + * Set this to false to turn such checks off. + */ + checkPrivateFields?: boolean + + /** + * When `locations` is on, `loc` properties holding objects with + * `start` and `end` properties as {@link Position} objects will be attached to the + * nodes. + */ + locations?: boolean + + /** + * a callback that will cause Acorn to call that export function with object in the same + * format as tokens returned from `tokenizer().getToken()`. Note + * that you are not allowed to call the parser from the + * callback—that will corrupt its internal state. + */ + onToken?: ((token: Token) => void) | Token[] + + + /** + * This takes a export function or an array. + * + * When a export function is passed, Acorn will call that export function with `(block, text, start, + * end)` parameters whenever a comment is skipped. `block` is a + * boolean indicating whether this is a block (`/* *\/`) comment, + * `text` is the content of the comment, and `start` and `end` are + * character offsets that denote the start and end of the comment. + * When the {@link locations} option is on, two more parameters are + * passed, the full locations of {@link Position} export type of the start and + * end of the comments. + * + * When a array is passed, each found comment of {@link Comment} export type is pushed to the array. + * + * Note that you are not allowed to call the + * parser from the callback—that will corrupt its internal state. + */ + onComment?: (( + isBlock: boolean, text: string, start: number, end: number, startLoc?: Position, + endLoc?: Position + ) => void) | Comment[] + + /** + * Nodes have their start and end characters offsets recorded in + * `start` and `end` properties (directly on the node, rather than + * the `loc` object, which holds line/column data. To also add a + * [semi-standardized][range] `range` property holding a `[start, + * end]` array with the same numbers, set the `ranges` option to + * `true`. + */ + ranges?: boolean + + /** + * It is possible to parse multiple files into a single AST by + * passing the tree produced by parsing the first file as + * `program` option in subsequent parses. This will add the + * toplevel forms of the parsed file to the `Program` (top) node + * of an existing parse tree. + */ + program?: Node + + /** + * When {@link locations} is on, you can pass this to record the source + * file in every node's `loc` object. + */ + sourceFile?: string + + /** + * This value, if given, is stored in every node, whether {@link locations} is on or off. + */ + directSourceFile?: string + + /** + * When enabled, parenthesized expressions are represented by + * (non-standard) ParenthesizedExpression nodes + */ + preserveParens?: boolean +} + +export class Parser { + options: Options + input: string + + private constructor(options: Options, input: string, startPos?: number) + parse(): Program + + static parse(input: string, options: Options): Program + static parseExpressionAt(input: string, pos: number, options: Options): Expression + static tokenizer(input: string, options: Options): { + getToken(): Token + [Symbol.iterator](): Iterator + } + static extend(...plugins: ((BaseParser: typeof Parser) => typeof Parser)[]): typeof Parser +} + +export const defaultOptions: Options + +export function getLineInfo(input: string, offset: number): Position + +export class TokenType { + label: string + keyword: string | undefined +} + +export const tokTypes: { + num: TokenType + regexp: TokenType + string: TokenType + name: TokenType + privateId: TokenType + eof: TokenType + + bracketL: TokenType + bracketR: TokenType + braceL: TokenType + braceR: TokenType + parenL: TokenType + parenR: TokenType + comma: TokenType + semi: TokenType + colon: TokenType + dot: TokenType + question: TokenType + questionDot: TokenType + arrow: TokenType + template: TokenType + invalidTemplate: TokenType + ellipsis: TokenType + backQuote: TokenType + dollarBraceL: TokenType + + eq: TokenType + assign: TokenType + incDec: TokenType + prefix: TokenType + logicalOR: TokenType + logicalAND: TokenType + bitwiseOR: TokenType + bitwiseXOR: TokenType + bitwiseAND: TokenType + equality: TokenType + relational: TokenType + bitShift: TokenType + plusMin: TokenType + modulo: TokenType + star: TokenType + slash: TokenType + starstar: TokenType + coalesce: TokenType + + _break: TokenType + _case: TokenType + _catch: TokenType + _continue: TokenType + _debugger: TokenType + _default: TokenType + _do: TokenType + _else: TokenType + _finally: TokenType + _for: TokenType + _function: TokenType + _if: TokenType + _return: TokenType + _switch: TokenType + _throw: TokenType + _try: TokenType + _var: TokenType + _const: TokenType + _while: TokenType + _with: TokenType + _new: TokenType + _this: TokenType + _super: TokenType + _class: TokenType + _extends: TokenType + _export: TokenType + _import: TokenType + _null: TokenType + _true: TokenType + _false: TokenType + _in: TokenType + _instanceof: TokenType + _typeof: TokenType + _void: TokenType + _delete: TokenType +} + +export interface Comment { + type: "Line" | "Block" + value: string + start: number + end: number + loc?: SourceLocation + range?: [number, number] +} + +export class Token { + type: TokenType + start: number + end: number + loc?: SourceLocation + range?: [number, number] +} + +export const version: string diff --git a/deps/acorn/acorn/dist/acorn.d.ts b/deps/acorn/acorn/dist/acorn.d.ts index 5b26741473db1a..6ad58121195c96 100644 --- a/deps/acorn/acorn/dist/acorn.d.ts +++ b/deps/acorn/acorn/dist/acorn.d.ts @@ -1,292 +1,857 @@ -export as namespace acorn -export = acorn +export interface Node { + start: number + end: number + type: string + range?: [number, number] + loc?: SourceLocation | null +} -declare namespace acorn { - function parse(input: string, options: Options): Node +export interface SourceLocation { + source?: string | null + start: Position + end: Position +} - function parseExpressionAt(input: string, pos: number, options: Options): Node +export interface Position { + /** 1-based */ + line: number + /** 0-based */ + column: number +} - function tokenizer(input: string, options: Options): { - getToken(): Token - [Symbol.iterator](): Iterator - } +export interface Identifier extends Node { + type: "Identifier" + name: string +} - type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | 'latest' - - interface Options { - ecmaVersion: ecmaVersion - sourceType?: 'script' | 'module' - onInsertedSemicolon?: (lastTokEnd: number, lastTokEndLoc?: Position) => void - onTrailingComma?: (lastTokEnd: number, lastTokEndLoc?: Position) => void - allowReserved?: boolean | 'never' - allowReturnOutsideFunction?: boolean - allowImportExportEverywhere?: boolean - allowAwaitOutsideFunction?: boolean - allowSuperOutsideMethod?: boolean - allowHashBang?: boolean - locations?: boolean - onToken?: ((token: Token) => any) | Token[] - onComment?: (( - isBlock: boolean, text: string, start: number, end: number, startLoc?: Position, - endLoc?: Position - ) => void) | Comment[] - ranges?: boolean - program?: Node - sourceFile?: string - directSourceFile?: string - preserveParens?: boolean +export interface Literal extends Node { + type: "Literal" + value?: string | boolean | null | number | RegExp | bigint + raw?: string + regex?: { + pattern: string + flags: string } + bigint?: string +} - 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): { - getToken(): Token - [Symbol.iterator](): Iterator - } - static extend(this: typeof Parser, ...plugins: ((BaseParser: typeof Parser) => typeof Parser)[]): typeof Parser - } +export interface Program extends Node { + type: "Program" + body: Array + sourceType: "script" | "module" +} - interface Position { line: number; column: number; offset: number } +export interface Function extends Node { + id?: Identifier | null + params: Array + body: BlockStatement | Expression + generator: boolean + expression: boolean + async: boolean +} - const defaultOptions: Options +export interface ExpressionStatement extends Node { + type: "ExpressionStatement" + expression: Expression | Literal + directive?: string +} - function getLineInfo(input: string, offset: number): Position +export interface BlockStatement extends Node { + type: "BlockStatement" + body: Array +} - class SourceLocation { - start: Position - end: Position - source?: string | null - constructor(p: Parser, start: Position, end: Position) - } +export interface EmptyStatement extends Node { + type: "EmptyStatement" +} - class Node { - type: string - start: number - end: number - loc?: SourceLocation - sourceFile?: string - range?: [number, number] - constructor(parser: Parser, pos: number, loc?: SourceLocation) - } +export interface DebuggerStatement extends Node { + type: "DebuggerStatement" +} - class TokenType { - label: string - keyword: string - beforeExpr: boolean - startsExpr: boolean - isLoop: boolean - isAssign: boolean - prefix: boolean - postfix: boolean - binop: number - updateContext?: (prevType: TokenType) => void - constructor(label: string, conf?: any) - } +export interface WithStatement extends Node { + type: "WithStatement" + object: Expression + body: Statement +} - const tokTypes: { - num: TokenType - regexp: TokenType - string: TokenType - name: TokenType - privateId: TokenType - eof: TokenType - bracketL: TokenType - bracketR: TokenType - braceL: TokenType - braceR: TokenType - parenL: TokenType - parenR: TokenType - comma: TokenType - semi: TokenType - colon: TokenType - dot: TokenType - question: TokenType - questionDot: TokenType - arrow: TokenType - template: TokenType - invalidTemplate: TokenType - ellipsis: TokenType - backQuote: TokenType - dollarBraceL: TokenType - eq: TokenType - assign: TokenType - incDec: TokenType - prefix: TokenType - logicalOR: TokenType - logicalAND: TokenType - bitwiseOR: TokenType - bitwiseXOR: TokenType - bitwiseAND: TokenType - equality: TokenType - relational: TokenType - bitShift: TokenType - plusMin: TokenType - modulo: TokenType - star: TokenType - slash: TokenType - starstar: TokenType - coalesce: TokenType - _break: TokenType - _case: TokenType - _catch: TokenType - _continue: TokenType - _debugger: TokenType - _default: TokenType - _do: TokenType - _else: TokenType - _finally: TokenType - _for: TokenType - _function: TokenType - _if: TokenType - _return: TokenType - _switch: TokenType - _throw: TokenType - _try: TokenType - _var: TokenType - _const: TokenType - _while: TokenType - _with: TokenType - _new: TokenType - _this: TokenType - _super: TokenType - _class: TokenType - _extends: TokenType - _export: TokenType - _import: TokenType - _null: TokenType - _true: TokenType - _false: TokenType - _in: TokenType - _instanceof: TokenType - _typeof: TokenType - _void: TokenType - _delete: TokenType - } +export interface ReturnStatement extends Node { + type: "ReturnStatement" + argument?: Expression | null +} - class TokContext { - constructor(token: string, isExpr: boolean, preserveSpace: boolean, override?: (p: Parser) => void) - } +export interface LabeledStatement extends Node { + type: "LabeledStatement" + label: Identifier + body: Statement +} - const tokContexts: { - b_stat: TokContext - b_expr: TokContext - b_tmpl: TokContext - p_stat: TokContext - p_expr: TokContext - q_tmpl: TokContext - f_expr: TokContext - f_stat: TokContext - f_expr_gen: TokContext - f_gen: TokContext - } +export interface BreakStatement extends Node { + type: "BreakStatement" + label?: Identifier | null +} - function isIdentifierStart(code: number, astral?: boolean): boolean +export interface ContinueStatement extends Node { + type: "ContinueStatement" + label?: Identifier | null +} - function isIdentifierChar(code: number, astral?: boolean): boolean +export interface IfStatement extends Node { + type: "IfStatement" + test: Expression + consequent: Statement + alternate?: Statement | null +} - interface AbstractToken { - } +export interface SwitchStatement extends Node { + type: "SwitchStatement" + discriminant: Expression + cases: Array +} - interface Comment extends AbstractToken { - type: 'Line' | 'Block' - value: string - start: number - end: number - loc?: SourceLocation - range?: [number, number] - } +export interface SwitchCase extends Node { + type: "SwitchCase" + test?: Expression | null + consequent: Array +} + +export interface ThrowStatement extends Node { + type: "ThrowStatement" + argument: Expression +} - class Token { - type: TokenType - value: any - start: number - end: number - loc?: SourceLocation - range?: [number, number] - constructor(p: Parser) +export interface TryStatement extends Node { + type: "TryStatement" + block: BlockStatement + handler?: CatchClause | null + finalizer?: BlockStatement | null +} + +export interface CatchClause extends Node { + type: "CatchClause" + param?: Pattern | null + body: BlockStatement +} + +export interface WhileStatement extends Node { + type: "WhileStatement" + test: Expression + body: Statement +} + +export interface DoWhileStatement extends Node { + type: "DoWhileStatement" + body: Statement + test: Expression +} + +export interface ForStatement extends Node { + type: "ForStatement" + init?: VariableDeclaration | Expression | null + test?: Expression | null + update?: Expression | null + body: Statement +} + +export interface ForInStatement extends Node { + type: "ForInStatement" + left: VariableDeclaration | Pattern + right: Expression + body: Statement +} + +export interface FunctionDeclaration extends Function { + type: "FunctionDeclaration" + id: Identifier + body: BlockStatement +} + +export interface VariableDeclaration extends Node { + type: "VariableDeclaration" + declarations: Array + kind: "var" | "let" | "const" +} + +export interface VariableDeclarator extends Node { + type: "VariableDeclarator" + id: Pattern + init?: Expression | null +} + +export interface ThisExpression extends Node { + type: "ThisExpression" +} + +export interface ArrayExpression extends Node { + type: "ArrayExpression" + elements: Array +} + +export interface ObjectExpression extends Node { + type: "ObjectExpression" + properties: Array +} + +export interface Property extends Node { + type: "Property" + key: Expression + value: Expression + kind: "init" | "get" | "set" + method: boolean + shorthand: boolean + computed: boolean +} + +export interface FunctionExpression extends Function { + type: "FunctionExpression" + body: BlockStatement +} + +export interface UnaryExpression extends Node { + type: "UnaryExpression" + operator: UnaryOperator + prefix: boolean + argument: Expression +} + +export type UnaryOperator = "-" | "+" | "!" | "~" | "typeof" | "void" | "delete" + +export interface UpdateExpression extends Node { + type: "UpdateExpression" + operator: UpdateOperator + argument: Expression + prefix: boolean +} + +export type UpdateOperator = "++" | "--" + +export interface BinaryExpression extends Node { + type: "BinaryExpression" + operator: BinaryOperator + left: Expression | PrivateIdentifier + right: Expression +} + +export type BinaryOperator = "==" | "!=" | "===" | "!==" | "<" | "<=" | ">" | ">=" | "<<" | ">>" | ">>>" | "+" | "-" | "*" | "/" | "%" | "|" | "^" | "&" | "in" | "instanceof" | "**" + +export interface AssignmentExpression extends Node { + type: "AssignmentExpression" + operator: AssignmentOperator + left: Pattern + right: Expression +} + +export type AssignmentOperator = "=" | "+=" | "-=" | "*=" | "/=" | "%=" | "<<=" | ">>=" | ">>>=" | "|=" | "^=" | "&=" | "**=" | "||=" | "&&=" | "??=" + +export interface LogicalExpression extends Node { + type: "LogicalExpression" + operator: LogicalOperator + left: Expression + right: Expression +} + +export type LogicalOperator = "||" | "&&" | "??" + +export interface MemberExpression extends Node { + type: "MemberExpression" + object: Expression | Super + property: Expression | PrivateIdentifier + computed: boolean + optional: boolean +} + +export interface ConditionalExpression extends Node { + type: "ConditionalExpression" + test: Expression + alternate: Expression + consequent: Expression +} + +export interface CallExpression extends Node { + type: "CallExpression" + callee: Expression | Super + arguments: Array + optional: boolean +} + +export interface NewExpression extends Node { + type: "NewExpression" + callee: Expression + arguments: Array +} + +export interface SequenceExpression extends Node { + type: "SequenceExpression" + expressions: Array +} + +export interface ForOfStatement extends Node { + type: "ForOfStatement" + left: VariableDeclaration | Pattern + right: Expression + body: Statement + await: boolean +} + +export interface Super extends Node { + type: "Super" +} + +export interface SpreadElement extends Node { + type: "SpreadElement" + argument: Expression +} + +export interface ArrowFunctionExpression extends Function { + type: "ArrowFunctionExpression" +} + +export interface YieldExpression extends Node { + type: "YieldExpression" + argument?: Expression | null + delegate: boolean +} + +export interface TemplateLiteral extends Node { + type: "TemplateLiteral" + quasis: Array + expressions: Array +} + +export interface TaggedTemplateExpression extends Node { + type: "TaggedTemplateExpression" + tag: Expression + quasi: TemplateLiteral +} + +export interface TemplateElement extends Node { + type: "TemplateElement" + tail: boolean + value: { + cooked?: string | null + raw: string } +} + +export interface AssignmentProperty extends Node { + type: "Property" + key: Expression + value: Pattern + kind: "init" + method: false + shorthand: boolean + computed: boolean +} + +export interface ObjectPattern extends Node { + type: "ObjectPattern" + properties: Array +} + +export interface ArrayPattern extends Node { + type: "ArrayPattern" + elements: Array +} + +export interface RestElement extends Node { + type: "RestElement" + argument: Pattern +} + +export interface AssignmentPattern extends Node { + type: "AssignmentPattern" + left: Pattern + right: Expression +} + +export interface Class extends Node { + id?: Identifier | null + superClass?: Expression | null + body: ClassBody +} + +export interface ClassBody extends Node { + type: "ClassBody" + body: Array +} + +export interface MethodDefinition extends Node { + type: "MethodDefinition" + key: Expression | PrivateIdentifier + value: FunctionExpression + kind: "constructor" | "method" | "get" | "set" + computed: boolean + static: boolean +} + +export interface ClassDeclaration extends Class { + type: "ClassDeclaration" + id: Identifier +} + +export interface ClassExpression extends Class { + type: "ClassExpression" +} + +export interface MetaProperty extends Node { + type: "MetaProperty" + meta: Identifier + property: Identifier +} + +export interface ImportDeclaration extends Node { + type: "ImportDeclaration" + specifiers: Array + source: Literal +} + +export interface ImportSpecifier extends Node { + type: "ImportSpecifier" + imported: Identifier | Literal + local: Identifier +} + +export interface ImportDefaultSpecifier extends Node { + type: "ImportDefaultSpecifier" + local: Identifier +} + +export interface ImportNamespaceSpecifier extends Node { + type: "ImportNamespaceSpecifier" + local: Identifier +} + +export interface ExportNamedDeclaration extends Node { + type: "ExportNamedDeclaration" + declaration?: Declaration | null + specifiers: Array + source?: Literal | null +} + +export interface ExportSpecifier extends Node { + type: "ExportSpecifier" + exported: Identifier | Literal + local: Identifier | Literal +} + +export interface AnonymousFunctionDeclaration extends Function { + type: "FunctionDeclaration" + id: null + body: BlockStatement +} + +export interface AnonymousClassDeclaration extends Class { + type: "ClassDeclaration" + id: null +} + +export interface ExportDefaultDeclaration extends Node { + type: "ExportDefaultDeclaration" + declaration: AnonymousFunctionDeclaration | FunctionDeclaration | AnonymousClassDeclaration | ClassDeclaration | Expression +} - function isNewLine(code: number): boolean - - const lineBreak: RegExp - - const lineBreakG: RegExp - - const version: string - - const nonASCIIwhitespace: RegExp - - const keywordTypes: { - _break: TokenType - _case: TokenType - _catch: TokenType - _continue: TokenType - _debugger: TokenType - _default: TokenType - _do: TokenType - _else: TokenType - _finally: TokenType - _for: TokenType - _function: TokenType - _if: TokenType - _return: TokenType - _switch: TokenType - _throw: TokenType - _try: TokenType - _var: TokenType - _const: TokenType - _while: TokenType - _with: TokenType - _new: TokenType - _this: TokenType - _super: TokenType - _class: TokenType - _extends: TokenType - _export: TokenType - _import: TokenType - _null: TokenType - _true: TokenType - _false: TokenType - _in: TokenType - _instanceof: TokenType - _typeof: TokenType - _void: TokenType - _delete: TokenType +export interface ExportAllDeclaration extends Node { + type: "ExportAllDeclaration" + source: Literal + exported?: Identifier | Literal | null +} + +export interface AwaitExpression extends Node { + type: "AwaitExpression" + argument: Expression +} + +export interface ChainExpression extends Node { + type: "ChainExpression" + expression: MemberExpression | CallExpression +} + +export interface ImportExpression extends Node { + type: "ImportExpression" + source: Expression +} + +export interface ParenthesizedExpression extends Node { + type: "ParenthesizedExpression" + expression: Expression +} + +export interface PropertyDefinition extends Node { + type: "PropertyDefinition" + key: Expression | PrivateIdentifier + value?: Expression | null + computed: boolean + static: boolean +} + +export interface PrivateIdentifier extends Node { + type: "PrivateIdentifier" + name: string +} + +export interface StaticBlock extends Node { + type: "StaticBlock" + body: Array +} + +export type Statement = +| ExpressionStatement +| BlockStatement +| EmptyStatement +| DebuggerStatement +| WithStatement +| ReturnStatement +| LabeledStatement +| BreakStatement +| ContinueStatement +| IfStatement +| SwitchStatement +| ThrowStatement +| TryStatement +| WhileStatement +| DoWhileStatement +| ForStatement +| ForInStatement +| ForOfStatement +| Declaration + +export type Declaration = +| FunctionDeclaration +| VariableDeclaration +| ClassDeclaration + +export type Expression = +| Identifier +| Literal +| ThisExpression +| ArrayExpression +| ObjectExpression +| FunctionExpression +| UnaryExpression +| UpdateExpression +| BinaryExpression +| AssignmentExpression +| LogicalExpression +| MemberExpression +| ConditionalExpression +| CallExpression +| NewExpression +| SequenceExpression +| ArrowFunctionExpression +| YieldExpression +| TemplateLiteral +| TaggedTemplateExpression +| ClassExpression +| MetaProperty +| AwaitExpression +| ChainExpression +| ImportExpression +| ParenthesizedExpression + +export type Pattern = +| Identifier +| MemberExpression +| ObjectPattern +| ArrayPattern +| RestElement +| AssignmentPattern + +export type ModuleDeclaration = +| ImportDeclaration +| ExportNamedDeclaration +| ExportDefaultDeclaration +| ExportAllDeclaration + +export type AnyNode = Statement | Expression | Declaration | ModuleDeclaration | Literal | Program | SwitchCase | CatchClause | Property | Super | SpreadElement | TemplateElement | AssignmentProperty | ObjectPattern | ArrayPattern | RestElement | AssignmentPattern | ClassBody | MethodDefinition | MetaProperty | ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ExportSpecifier | AnonymousFunctionDeclaration | AnonymousClassDeclaration | PropertyDefinition | PrivateIdentifier | StaticBlock + +export function parse(input: string, options: Options): Program + +export function parseExpressionAt(input: string, pos: number, options: Options): Expression + +export function tokenizer(input: string, options: Options): { + getToken(): Token + [Symbol.iterator](): Iterator +} + +export type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | "latest" + +export interface Options { + /** + * `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), 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: ecmaVersion + + /** + * `sourceType` indicates the mode the code should be parsed in. + * Can be either `"script"` or `"module"`. This influences global + * strict mode and parsing of `import` and `export` declarations. + */ + sourceType?: "script" | "module" + + /** + * a callback that will be called when a semicolon is automatically inserted. + * @param lastTokEnd the position of the comma as an offset + * @param lastTokEndLoc location if {@link locations} is enabled + */ + onInsertedSemicolon?: (lastTokEnd: number, lastTokEndLoc?: Position) => void + + /** + * similar to `onInsertedSemicolon`, but for trailing commas + * @param lastTokEnd the position of the comma as an offset + * @param lastTokEndLoc location if `locations` is enabled + */ + onTrailingComma?: (lastTokEnd: number, lastTokEndLoc?: Position) => void + + /** + * By default, reserved words are only enforced if ecmaVersion >= 5. + * Set `allowReserved` to a boolean value to explicitly turn this on + * an off. When this option has the value "never", reserved words + * and keywords can also not be used as property names. + */ + allowReserved?: boolean | "never" + + /** + * When enabled, a return at the top level is not considered an error. + */ + allowReturnOutsideFunction?: boolean + + /** + * When enabled, import/export statements are not constrained to + * appearing at the top of the program, and an import.meta expression + * in a script isn't considered an error. + */ + allowImportExportEverywhere?: boolean + + /** + * By default, `await` identifiers are allowed to appear at the top-level scope only if {@link ecmaVersion} >= 2022. + * When enabled, await identifiers are allowed to appear at the top-level scope, + * but they are still not allowed in non-async functions. + */ + allowAwaitOutsideFunction?: boolean + + /** + * When enabled, super identifiers are not constrained to + * appearing in methods and do not raise an error when they appear elsewhere. + */ + allowSuperOutsideMethod?: boolean + + /** + * When enabled, hashbang directive in the beginning of file is + * allowed and treated as a line comment. Enabled by default when + * {@link ecmaVersion} >= 2023. + */ + allowHashBang?: boolean + + /** + * By default, the parser will verify that private properties are + * only used in places where they are valid and have been declared. + * Set this to false to turn such checks off. + */ + checkPrivateFields?: boolean + + /** + * When `locations` is on, `loc` properties holding objects with + * `start` and `end` properties as {@link Position} objects will be attached to the + * nodes. + */ + locations?: boolean + + /** + * a callback that will cause Acorn to call that export function with object in the same + * format as tokens returned from `tokenizer().getToken()`. Note + * that you are not allowed to call the parser from the + * callback—that will corrupt its internal state. + */ + onToken?: ((token: Token) => void) | Token[] + + + /** + * This takes a export function or an array. + * + * When a export function is passed, Acorn will call that export function with `(block, text, start, + * end)` parameters whenever a comment is skipped. `block` is a + * boolean indicating whether this is a block (`/* *\/`) comment, + * `text` is the content of the comment, and `start` and `end` are + * character offsets that denote the start and end of the comment. + * When the {@link locations} option is on, two more parameters are + * passed, the full locations of {@link Position} export type of the start and + * end of the comments. + * + * When a array is passed, each found comment of {@link Comment} export type is pushed to the array. + * + * Note that you are not allowed to call the + * parser from the callback—that will corrupt its internal state. + */ + onComment?: (( + isBlock: boolean, text: string, start: number, end: number, startLoc?: Position, + endLoc?: Position + ) => void) | Comment[] + + /** + * Nodes have their start and end characters offsets recorded in + * `start` and `end` properties (directly on the node, rather than + * the `loc` object, which holds line/column data. To also add a + * [semi-standardized][range] `range` property holding a `[start, + * end]` array with the same numbers, set the `ranges` option to + * `true`. + */ + ranges?: boolean + + /** + * It is possible to parse multiple files into a single AST by + * passing the tree produced by parsing the first file as + * `program` option in subsequent parses. This will add the + * toplevel forms of the parsed file to the `Program` (top) node + * of an existing parse tree. + */ + program?: Node + + /** + * When {@link locations} is on, you can pass this to record the source + * file in every node's `loc` object. + */ + sourceFile?: string + + /** + * This value, if given, is stored in every node, whether {@link locations} is on or off. + */ + directSourceFile?: string + + /** + * When enabled, parenthesized expressions are represented by + * (non-standard) ParenthesizedExpression nodes + */ + preserveParens?: boolean +} + +export class Parser { + options: Options + input: string + + private constructor(options: Options, input: string, startPos?: number) + parse(): Program + + static parse(input: string, options: Options): Program + static parseExpressionAt(input: string, pos: number, options: Options): Expression + static tokenizer(input: string, options: Options): { + getToken(): Token + [Symbol.iterator](): Iterator } + static extend(...plugins: ((BaseParser: typeof Parser) => typeof Parser)[]): typeof Parser } + +export const defaultOptions: Options + +export function getLineInfo(input: string, offset: number): Position + +export class TokenType { + label: string + keyword: string | undefined +} + +export const tokTypes: { + num: TokenType + regexp: TokenType + string: TokenType + name: TokenType + privateId: TokenType + eof: TokenType + + bracketL: TokenType + bracketR: TokenType + braceL: TokenType + braceR: TokenType + parenL: TokenType + parenR: TokenType + comma: TokenType + semi: TokenType + colon: TokenType + dot: TokenType + question: TokenType + questionDot: TokenType + arrow: TokenType + template: TokenType + invalidTemplate: TokenType + ellipsis: TokenType + backQuote: TokenType + dollarBraceL: TokenType + + eq: TokenType + assign: TokenType + incDec: TokenType + prefix: TokenType + logicalOR: TokenType + logicalAND: TokenType + bitwiseOR: TokenType + bitwiseXOR: TokenType + bitwiseAND: TokenType + equality: TokenType + relational: TokenType + bitShift: TokenType + plusMin: TokenType + modulo: TokenType + star: TokenType + slash: TokenType + starstar: TokenType + coalesce: TokenType + + _break: TokenType + _case: TokenType + _catch: TokenType + _continue: TokenType + _debugger: TokenType + _default: TokenType + _do: TokenType + _else: TokenType + _finally: TokenType + _for: TokenType + _function: TokenType + _if: TokenType + _return: TokenType + _switch: TokenType + _throw: TokenType + _try: TokenType + _var: TokenType + _const: TokenType + _while: TokenType + _with: TokenType + _new: TokenType + _this: TokenType + _super: TokenType + _class: TokenType + _extends: TokenType + _export: TokenType + _import: TokenType + _null: TokenType + _true: TokenType + _false: TokenType + _in: TokenType + _instanceof: TokenType + _typeof: TokenType + _void: TokenType + _delete: TokenType +} + +export interface Comment { + type: "Line" | "Block" + value: string + start: number + end: number + loc?: SourceLocation + range?: [number, number] +} + +export class Token { + type: TokenType + start: number + end: number + loc?: SourceLocation + range?: [number, number] +} + +export const version: string diff --git a/deps/acorn/acorn/dist/acorn.js b/deps/acorn/acorn/dist/acorn.js index 62e1aa63d0974f..de0096ec9a6a31 100644 --- a/deps/acorn/acorn/dist/acorn.js +++ b/deps/acorn/acorn/dist/acorn.js @@ -8,10 +8,10 @@ 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, 81, 2, 71, 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, 3, 0, 158, 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, 10, 1, 2, 0, 49, 6, 4, 4, 14, 9, 5351, 0, 7, 14, 13835, 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, 101, 0, 161, 6, 10, 9, 357, 0, 62, 13, 499, 13, 983, 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, 20, 1, 64, 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, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 4026, 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, 16, 0, 30, 2, 3, 0, 15, 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, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 757, 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, 4153, 7, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938, 6, 4191]; + 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, 20, 1, 64, 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, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 4026, 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, 16, 0, 30, 2, 3, 0, 15, 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, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 757, 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, 4153, 7, 221, 3, 5761, 15, 7472, 16, 621, 2467, 541, 1507, 4938, 6, 4191]; // 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\u0cf3\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-\u0ece\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 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\u0cf3\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-\u0ece\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\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\u30fb\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\uff65"; // 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"; @@ -279,8 +279,10 @@ toString.call(obj) === "[object Array]" ); }); + var regexpCache = Object.create(null); + function wordsRegexp(words) { - return new RegExp("^(?:" + words.replace(/ /g, "|") + ")$") + return regexpCache[words] || (regexpCache[words] = new RegExp("^(?:" + words.replace(/ /g, "|") + ")$")) } function codePointToString(code) { @@ -340,11 +342,11 @@ // Can be either `"script"` or `"module"`. This influences global // strict mode and parsing of `import` and `export` declarations. sourceType: "script", - // `onInsertedSemicolon` can be a callback that will be called - // when a semicolon is automatically inserted. It will be passed - // the position of the comma as an offset, and if `locations` is - // enabled, it is given the location as a `{line, column}` object - // as second argument. + // `onInsertedSemicolon` can be a callback that will be called when + // a semicolon is automatically inserted. It will be passed the + // position of the inserted semicolon as an offset, and if + // `locations` is enabled, it is given the location as a `{line, + // column}` object as second argument. onInsertedSemicolon: null, // `onTrailingComma` is similar to `onInsertedSemicolon`, but for // trailing commas. @@ -397,6 +399,8 @@ // passed, the full `{line, column}` locations of the start and // end of the comments. Note that you are not allowed to call the // parser from the callback—that will corrupt its internal state. + // When this option has an array as value, objects representing the + // comments are pushed to it. onComment: null, // Nodes have their start and end characters offsets recorded in // `start` and `end` properties (directly on the node, rather than @@ -1772,8 +1776,6 @@ { this.checkPatternExport(exports, pat.left); } else if (type === "RestElement") { this.checkPatternExport(exports, pat.argument); } - else if (type === "ParenthesizedExpression") - { this.checkPatternExport(exports, pat.expression); } }; pp$8.checkVariableExport = function(exports, decls) { @@ -2337,7 +2339,7 @@ { this.exprAllowed = type.beforeExpr; } }; - // Used to handle egde cases when token context could not be inferred correctly during tokenization phase + // Used to handle edge cases when token context could not be inferred correctly during tokenization phase pp$6.overrideContext = function(tokenCtx) { if (this.curContext() !== tokenCtx) { @@ -2390,6 +2392,11 @@ this.exprAllowed = false; }; + types$1.colon.updateContext = function() { + if (this.curContext().token === "function") { this.context.pop(); } + this.exprAllowed = true; + }; + types$1.backQuote.updateContext = function() { if (this.curContext() === types.q_tmpl) { this.context.pop(); } @@ -3088,9 +3095,12 @@ pp$5.parseNew = function() { if (this.containsEsc) { this.raiseRecoverable(this.start, "Escape sequence in keyword new"); } var node = this.startNode(); - var meta = this.parseIdent(true); - if (this.options.ecmaVersion >= 6 && this.eat(types$1.dot)) { - node.meta = meta; + this.next(); + if (this.options.ecmaVersion >= 6 && this.type === types$1.dot) { + var meta = this.startNodeAt(node.start, node.startLoc); + meta.name = "new"; + node.meta = this.finishNode(meta, "Identifier"); + this.next(); var containsEsc = this.containsEsc; node.property = this.parseIdent(true); if (node.property.name !== "target") @@ -3492,6 +3502,7 @@ (this.lastTokEnd !== this.lastTokStart + 1 || this.input.charCodeAt(this.lastTokStart) !== 46)) { this.context.pop(); } + this.type = types$1.name; } else { this.unexpected(); } @@ -5914,7 +5925,7 @@ // [walk]: util/walk.js - var version = "8.10.0"; + var version = "8.11.2"; Parser.acorn = { Parser: Parser, diff --git a/deps/acorn/acorn/dist/acorn.mjs b/deps/acorn/acorn/dist/acorn.mjs index 119eff98d4ded6..01a49ef94da2a7 100644 --- a/deps/acorn/acorn/dist/acorn.mjs +++ b/deps/acorn/acorn/dist/acorn.mjs @@ -2,10 +2,10 @@ 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, 81, 2, 71, 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, 3, 0, 158, 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, 10, 1, 2, 0, 49, 6, 4, 4, 14, 9, 5351, 0, 7, 14, 13835, 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, 101, 0, 161, 6, 10, 9, 357, 0, 62, 13, 499, 13, 983, 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, 20, 1, 64, 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, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 4026, 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, 16, 0, 30, 2, 3, 0, 15, 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, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 757, 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, 4153, 7, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938, 6, 4191]; +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, 20, 1, 64, 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, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 4026, 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, 16, 0, 30, 2, 3, 0, 15, 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, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 757, 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, 4153, 7, 221, 3, 5761, 15, 7472, 16, 621, 2467, 541, 1507, 4938, 6, 4191]; // 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\u0cf3\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-\u0ece\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 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\u0cf3\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-\u0ece\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\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\u30fb\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\uff65"; // 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"; @@ -273,8 +273,10 @@ var isArray = Array.isArray || (function (obj) { return ( toString.call(obj) === "[object Array]" ); }); +var regexpCache = Object.create(null); + function wordsRegexp(words) { - return new RegExp("^(?:" + words.replace(/ /g, "|") + ")$") + return regexpCache[words] || (regexpCache[words] = new RegExp("^(?:" + words.replace(/ /g, "|") + ")$")) } function codePointToString(code) { @@ -334,11 +336,11 @@ var defaultOptions = { // Can be either `"script"` or `"module"`. This influences global // strict mode and parsing of `import` and `export` declarations. sourceType: "script", - // `onInsertedSemicolon` can be a callback that will be called - // when a semicolon is automatically inserted. It will be passed - // the position of the comma as an offset, and if `locations` is - // enabled, it is given the location as a `{line, column}` object - // as second argument. + // `onInsertedSemicolon` can be a callback that will be called when + // a semicolon is automatically inserted. It will be passed the + // position of the inserted semicolon as an offset, and if + // `locations` is enabled, it is given the location as a `{line, + // column}` object as second argument. onInsertedSemicolon: null, // `onTrailingComma` is similar to `onInsertedSemicolon`, but for // trailing commas. @@ -391,6 +393,8 @@ var defaultOptions = { // passed, the full `{line, column}` locations of the start and // end of the comments. Note that you are not allowed to call the // parser from the callback—that will corrupt its internal state. + // When this option has an array as value, objects representing the + // comments are pushed to it. onComment: null, // Nodes have their start and end characters offsets recorded in // `start` and `end` properties (directly on the node, rather than @@ -1766,8 +1770,6 @@ pp$8.checkPatternExport = function(exports, pat) { { this.checkPatternExport(exports, pat.left); } else if (type === "RestElement") { this.checkPatternExport(exports, pat.argument); } - else if (type === "ParenthesizedExpression") - { this.checkPatternExport(exports, pat.expression); } }; pp$8.checkVariableExport = function(exports, decls) { @@ -2331,7 +2333,7 @@ pp$6.updateContext = function(prevType) { { this.exprAllowed = type.beforeExpr; } }; -// Used to handle egde cases when token context could not be inferred correctly during tokenization phase +// Used to handle edge cases when token context could not be inferred correctly during tokenization phase pp$6.overrideContext = function(tokenCtx) { if (this.curContext() !== tokenCtx) { @@ -2384,6 +2386,11 @@ types$1._function.updateContext = types$1._class.updateContext = function(prevTy this.exprAllowed = false; }; +types$1.colon.updateContext = function() { + if (this.curContext().token === "function") { this.context.pop(); } + this.exprAllowed = true; +}; + types$1.backQuote.updateContext = function() { if (this.curContext() === types.q_tmpl) { this.context.pop(); } @@ -3082,9 +3089,12 @@ var empty = []; pp$5.parseNew = function() { if (this.containsEsc) { this.raiseRecoverable(this.start, "Escape sequence in keyword new"); } var node = this.startNode(); - var meta = this.parseIdent(true); - if (this.options.ecmaVersion >= 6 && this.eat(types$1.dot)) { - node.meta = meta; + this.next(); + if (this.options.ecmaVersion >= 6 && this.type === types$1.dot) { + var meta = this.startNodeAt(node.start, node.startLoc); + meta.name = "new"; + node.meta = this.finishNode(meta, "Identifier"); + this.next(); var containsEsc = this.containsEsc; node.property = this.parseIdent(true); if (node.property.name !== "target") @@ -3486,6 +3496,7 @@ pp$5.parseIdentNode = function() { (this.lastTokEnd !== this.lastTokStart + 1 || this.input.charCodeAt(this.lastTokStart) !== 46)) { this.context.pop(); } + this.type = types$1.name; } else { this.unexpected(); } @@ -5908,7 +5919,7 @@ pp.readWord = function() { // [walk]: util/walk.js -var version = "8.10.0"; +var version = "8.11.2"; Parser.acorn = { Parser: Parser, diff --git a/deps/acorn/acorn/package.json b/deps/acorn/acorn/package.json index 4243aa3542deb3..430603dc8c3d57 100644 --- a/deps/acorn/acorn/package.json +++ b/deps/acorn/acorn/package.json @@ -16,7 +16,7 @@ ], "./package.json": "./package.json" }, - "version": "8.10.0", + "version": "8.11.2", "engines": { "node": ">=0.4.0" }, diff --git a/deps/ada/BUILD.gn b/deps/ada/BUILD.gn new file mode 100644 index 00000000000000..e92ac3a3beac14 --- /dev/null +++ b/deps/ada/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +ada_gn_build("ada") { +} diff --git a/deps/ada/unofficial.gni b/deps/ada/unofficial.gni new file mode 100644 index 00000000000000..d3d14193c5a154 --- /dev/null +++ b/deps/ada/unofficial.gni @@ -0,0 +1,29 @@ +# Copyright 2023 Microsoft Inc. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +import("../../node.gni") +import("$node_v8_path/gni/v8.gni") + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("ada_gn_build") { + config("ada_config") { + include_dirs = [ "." ] + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("ada.gyp") ], + "scope", + [ "ada.gyp" ]) + + source_set(target_name) { + forward_variables_from(invoker, "*") + public_configs = [ ":ada_config" ] + sources = gypi_values.ada_sources + } +} diff --git a/deps/base64/BUILD.gn b/deps/base64/BUILD.gn new file mode 100644 index 00000000000000..172dd960910439 --- /dev/null +++ b/deps/base64/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +base64_gn_build("base64") { +} diff --git a/deps/base64/base64.gyp b/deps/base64/base64.gyp index 06b20a142b1679..5d0a0c05dc2a08 100644 --- a/deps/base64/base64.gyp +++ b/deps/base64/base64.gyp @@ -49,6 +49,7 @@ 'HAVE_SSE42=1', 'HAVE_AVX=1', 'HAVE_AVX2=1', + 'HAVE_AVX512=1', ], 'dependencies': [ 'base64_ssse3', @@ -56,6 +57,7 @@ 'base64_sse42', 'base64_avx', 'base64_avx2', + 'base64_avx512', ], }, { 'sources': [ @@ -64,6 +66,7 @@ 'base64/lib/arch/sse42/codec.c', 'base64/lib/arch/avx/codec.c', 'base64/lib/arch/avx2/codec.c', + 'base64/lib/arch/avx512/codec.c', ], }], ], @@ -165,6 +168,30 @@ ], }, + { + 'target_name': 'base64_avx512', + 'type': 'static_library', + 'include_dirs': [ 'base64/include', 'base64/lib' ], + 'sources': [ 'base64/lib/arch/avx512/codec.c' ], + 'defines': [ 'BASE64_STATIC_DEFINE', 'HAVE_AVX512=1' ], + 'conditions': [ + [ 'OS!="win"', { + 'cflags': [ '-mavx512vl', '-mavx512vbmi' ], + 'xcode_settings': { + 'OTHER_CFLAGS': [ '-mavx512vl', '-mavx512vbmi' ] + }, + }, { + 'msvs_settings': { + 'VCCLCompilerTool': { + 'AdditionalOptions': [ + '/arch:AVX512' + ], + }, + }, + }], + ], + }, + { 'target_name': 'base64_neon32', 'type': 'static_library', diff --git a/deps/base64/base64/.gitignore b/deps/base64/base64/.gitignore index 837a2306a6294b..bb7b160deb3702 100644 --- a/deps/base64/base64/.gitignore +++ b/deps/base64/base64/.gitignore @@ -1,12 +1 @@ -*.o -bin/base64 -lib/config.h -test/benchmark -test/test_base64 - -# visual studio symbol db, etc. -.vs/ -# build directory used by CMakePresets -out/ -# private cmake presets -CMakeUserPresets.json +# Intentionally empty diff --git a/deps/base64/base64/CMakeLists.txt b/deps/base64/base64/CMakeLists.txt index 56076e47a6aa3a..be1de665a2cd59 100644 --- a/deps/base64/base64/CMakeLists.txt +++ b/deps/base64/base64/CMakeLists.txt @@ -17,7 +17,7 @@ if (POLICY CMP0127) cmake_policy(SET CMP0127 NEW) endif() -project(base64 LANGUAGES C VERSION 0.5.0) +project(base64 LANGUAGES C VERSION 0.5.1) include(GNUInstallDirs) include(CMakeDependentOption) @@ -62,6 +62,8 @@ cmake_dependent_option(BASE64_WITH_AVX "add AVX codepath" ON ${_IS_X86} OFF) add_feature_info(AVX BASE64_WITH_AVX "add AVX codepath") cmake_dependent_option(BASE64_WITH_AVX2 "add AVX 2 codepath" ON ${_IS_X86} OFF) add_feature_info(AVX2 BASE64_WITH_AVX2 "add AVX2 codepath") +cmake_dependent_option(BASE64_WITH_AVX512 "add AVX 512 codepath" ON ${_IS_X86} OFF) +add_feature_info(AVX512 BASE64_WITH_AVX512 "add AVX512 codepath") cmake_dependent_option(BASE64_WITH_NEON32 "add NEON32 codepath" OFF _TARGET_ARCH_arm OFF) add_feature_info(NEON32 BASE64_WITH_NEON32 "add NEON32 codepath") @@ -118,6 +120,7 @@ add_library(base64 lib/arch/sse42/codec.c lib/arch/avx/codec.c lib/arch/avx2/codec.c + lib/arch/avx512/codec.c lib/arch/neon32/codec.c lib/arch/neon64/codec.c @@ -206,6 +209,7 @@ if (_TARGET_ARCH STREQUAL "x86" OR _TARGET_ARCH STREQUAL "x64") configure_codec(SSE42 __SSSE4_2__) configure_codec(AVX) configure_codec(AVX2) + configure_codec(AVX512) elseif (_TARGET_ARCH STREQUAL "arm") set(BASE64_NEON32_CFLAGS "${COMPILE_FLAGS_NEON32}" CACHE STRING "the NEON32 compile flags (for 'lib/arch/neon32/codec.c')") diff --git a/deps/base64/base64/LICENSE b/deps/base64/base64/LICENSE index 9446393a82a847..109d6521b122c0 100644 --- a/deps/base64/base64/LICENSE +++ b/deps/base64/base64/LICENSE @@ -1,7 +1,7 @@ Copyright (c) 2005-2007, Nick Galbreath -Copyright (c) 2013-2019, Alfred Klomp -Copyright (c) 2015-2017, Wojciech Mula +Copyright (c) 2015-2018, Wojciech Muła Copyright (c) 2016-2017, Matthieu Darbois +Copyright (c) 2013-2022, Alfred Klomp All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/deps/base64/base64/Makefile b/deps/base64/base64/Makefile index 2bb01e204fcfac..bcb944551ae881 100644 --- a/deps/base64/base64/Makefile +++ b/deps/base64/base64/Makefile @@ -4,6 +4,7 @@ CFLAGS += -std=c99 -O3 -Wall -Wextra -pedantic OBJCOPY ?= objcopy OBJS = \ + lib/arch/avx512/codec.o \ lib/arch/avx2/codec.o \ lib/arch/generic/codec.o \ lib/arch/neon32/codec.o \ @@ -16,6 +17,7 @@ OBJS = \ lib/codec_choose.o \ lib/tables/tables.o +HAVE_AVX512 = 0 HAVE_AVX2 = 0 HAVE_NEON32 = 0 HAVE_NEON64 = 0 @@ -26,6 +28,9 @@ HAVE_AVX = 0 # The user should supply compiler flags for the codecs they want to build. # Check which codecs we're going to include: +ifdef AVX512_CFLAGS + HAVE_AVX512 = 1 +endif ifdef AVX2_CFLAGS HAVE_AVX2 = 1 endif @@ -64,7 +69,8 @@ lib/libbase64.o: $(OBJS) $(OBJCOPY) --keep-global-symbols=lib/exports.txt $@ lib/config.h: - @echo "#define HAVE_AVX2 $(HAVE_AVX2)" > $@ + @echo "#define HAVE_AVX512 $(HAVE_AVX512)" > $@ + @echo "#define HAVE_AVX2 $(HAVE_AVX2)" >> $@ @echo "#define HAVE_NEON32 $(HAVE_NEON32)" >> $@ @echo "#define HAVE_NEON64 $(HAVE_NEON64)" >> $@ @echo "#define HAVE_SSSE3 $(HAVE_SSSE3)" >> $@ @@ -75,6 +81,7 @@ lib/config.h: $(OBJS): lib/config.h $(OBJS): CFLAGS += -Ilib +lib/arch/avx512/codec.o: CFLAGS += $(AVX512_CFLAGS) lib/arch/avx2/codec.o: CFLAGS += $(AVX2_CFLAGS) lib/arch/neon32/codec.o: CFLAGS += $(NEON32_CFLAGS) lib/arch/neon64/codec.o: CFLAGS += $(NEON64_CFLAGS) diff --git a/deps/base64/base64/README.md b/deps/base64/base64/README.md index b953c324c9dc1e..ae0a914965e101 100644 --- a/deps/base64/base64/README.md +++ b/deps/base64/base64/README.md @@ -3,7 +3,7 @@ [![Build Status](https://github.com/aklomp/base64/actions/workflows/test.yml/badge.svg)](https://github.com/aklomp/base64/actions/workflows/test.yml) This is an implementation of a base64 stream encoding/decoding library in C99 -with SIMD (AVX2, NEON, AArch64/NEON, SSSE3, SSE4.1, SSE4.2, AVX) and +with SIMD (AVX2, AVX512, NEON, AArch64/NEON, SSSE3, SSE4.1, SSE4.2, AVX) and [OpenMP](http://www.openmp.org) acceleration. It also contains wrapper functions to encode/decode simple length-delimited strings. This library aims to be: @@ -19,6 +19,10 @@ will pick an optimized codec that lets it encode/decode 12 or 24 bytes at a time, which gives a speedup of four or more times compared to the "plain" bytewise codec. +AVX512 support is only for encoding at present, utilizing the AVX512 VL and VBMI +instructions. Decoding part reused AVX2 implementations. For CPUs later than +Cannonlake (manufactured in 2018) supports these instructions. + NEON support is hardcoded to on or off at compile time, because portable runtime feature detection is unavailable on ARM. @@ -59,6 +63,9 @@ optimizations described by Wojciech Muła in a [articles](http://0x80.pl/notesen/2016-01-17-sse-base64-decoding.html). His own code is [here](https://github.com/WojciechMula/toys/tree/master/base64). +The AVX512 encoder is based on code from Wojciech Muła's +[base64simd](https://github.com/WojciechMula/base64simd) library. + The OpenMP implementation was added by Ferry Toth (@htot) from [Exalon Delft](http://www.exalondelft.nl). ## Building @@ -76,8 +83,8 @@ To compile just the "plain" library without SIMD codecs, type: make lib/libbase64.o ``` -Optional SIMD codecs can be included by specifying the `AVX2_CFLAGS`, `NEON32_CFLAGS`, `NEON64_CFLAGS`, -`SSSE3_CFLAGS`, `SSE41_CFLAGS`, `SSE42_CFLAGS` and/or `AVX_CFLAGS` environment variables. +Optional SIMD codecs can be included by specifying the `AVX2_CFLAGS`, `AVX512_CFLAGS`, +`NEON32_CFLAGS`, `NEON64_CFLAGS`, `SSSE3_CFLAGS`, `SSE41_CFLAGS`, `SSE42_CFLAGS` and/or `AVX_CFLAGS` environment variables. A typical build invocation on x86 looks like this: ```sh @@ -93,6 +100,15 @@ Example: AVX2_CFLAGS=-mavx2 make ``` +### AVX512 + +To build and include the AVX512 codec, set the `AVX512_CFLAGS` environment variable to a value that will turn on AVX512 support in your compiler, typically `-mavx512vl -mavx512vbmi`. +Example: + +```sh +AVX512_CFLAGS="-mavx512vl -mavx512vbmi" make +``` + The codec will only be used if runtime feature detection shows that the target machine supports AVX2. ### SSSE3 @@ -208,6 +224,7 @@ Mainly there for testing purposes, this is also useful on ARM where the only way The following constants can be used: - `BASE64_FORCE_AVX2` +- `BASE64_FORCE_AVX512` - `BASE64_FORCE_NEON32` - `BASE64_FORCE_NEON64` - `BASE64_FORCE_PLAIN` @@ -434,7 +451,7 @@ x86 processors | i7-4770 @ 3.4 GHz DDR1600 OPENMP 4 thread | 4884\* | 7099\* | 4917\* | 7057\* | 4799\* | 7143\* | 4902\* | 7219\* | | i7-4770 @ 3.4 GHz DDR1600 OPENMP 8 thread | 5212\* | 8849\* | 5284\* | 9099\* | 5289\* | 9220\* | 4849\* | 9200\* | | i7-4870HQ @ 2.5 GHz | 1471\* | 3066\* | 6721\* | 6962\* | 7015\* | 8267\* | 8328\* | 11576\* | -| i5-4590S @ 3.0 GHz | 3356 | 3197 | 4363 | 6104 | 4243 | 6233 | 4160 | 6344 | +| i5-4590S @ 3.0 GHz | 3356 | 3197 | 4363 | 6104 | 4243\* | 6233 | 4160\* | 6344 | | Xeon X5570 @ 2.93 GHz | 2161 | 1508 | 3160 | 3915 | - | - | - | - | | Pentium4 @ 3.4 GHz | 896 | 740 | - | - | - | - | - | - | | Atom N270 | 243 | 266 | 508 | 387 | - | - | - | - | diff --git a/deps/base64/base64/bin/base64.c b/deps/base64/base64/bin/base64.c index e4384fe885d3eb..98d6b3cbab560c 100644 --- a/deps/base64/base64/bin/base64.c +++ b/deps/base64/base64/bin/base64.c @@ -1,128 +1,477 @@ -#include // size_t -#include // fopen() -#include // strlen() +#define _XOPEN_SOURCE // IOV_MAX + +#include +#include +#include +#include +#include #include +#include +#include +#include #include "../include/libbase64.h" -#define BUFSIZE 1024 * 1024 +// Size of the buffer for the "raw" (not base64-encoded) data in bytes. +#define BUFFER_RAW_SIZE (1024 * 1024) -static char buf[BUFSIZE]; -static char out[(BUFSIZE * 5) / 3]; // Technically 4/3 of input, but take some margin -size_t nread; -size_t nout; +// Size of the buffer for the base64-encoded data in bytes. The base64-encoded +// data is 4/3 the size of the input, with some margin to be sure. +#define BUFFER_ENC_SIZE (BUFFER_RAW_SIZE * 4 / 3 + 16) -static int -enc (FILE *fp) +// Global config structure. +struct config { + + // Name by which the program was called on the command line. + const char *name; + + // Name of the input file for logging purposes. + const char *file; + + // Input file handle. + FILE *fp; + + // Wrap width in characters, for encoding only. + size_t wrap; + + // Whether to run in decode mode. + bool decode; + + // Whether to just print the help text and exit. + bool print_help; +}; + +// Input/output buffer structure. +struct buffer { + + // Runtime-allocated buffer for raw (unencoded) data. + char *raw; + + // Runtime-allocated buffer for base64-encoded data. + char *enc; +}; + +static bool +buffer_alloc (const struct config *config, struct buffer *buf) +{ + if ((buf->raw = malloc(BUFFER_RAW_SIZE)) == NULL || + (buf->enc = malloc(BUFFER_ENC_SIZE)) == NULL) { + free(buf->raw); + fprintf(stderr, "%s: malloc: %s\n", + config->name, strerror(errno)); + return false; + } + + return true; +} + +static void +buffer_free (struct buffer *buf) +{ + free(buf->raw); + free(buf->enc); +} + +static bool +writev_retry (const struct config *config, struct iovec *iov, size_t nvec) +{ + // Writing nothing always succeeds. + if (nvec == 0) { + return true; + } + + while (true) { + ssize_t nwrite; + + // Try to write the vectors to stdout. + if ((nwrite = writev(1, iov, nvec)) < 0) { + + // Retry on EINTR. + if (errno == EINTR) { + continue; + } + + // Quit on other errors. + fprintf(stderr, "%s: writev: %s\n", + config->name, strerror(errno)); + return false; + } + + // The return value of `writev' is the number of bytes written. + // To check for success, we traverse the list and remove all + // written vectors. The call succeeded if the list is empty. + while (true) { + + // Retry if this vector is not or partially written. + if (iov->iov_len > (size_t) nwrite) { + char *base = iov->iov_base; + + iov->iov_base = (size_t) nwrite + base; + iov->iov_len -= (size_t) nwrite; + break; + } + + // Move to the next vector. + nwrite -= iov->iov_len; + iov++; + + // Return successfully if all vectors were written. + if (--nvec == 0) { + return true; + } + } + } +} + +static inline bool +iov_append (const struct config *config, struct iovec *iov, + size_t *nvec, char *base, const size_t len) +{ + // Add the buffer to the IO vector array. + iov[*nvec].iov_base = base; + iov[*nvec].iov_len = len; + + // Increment the array index. Flush the array if it is full. + if (++(*nvec) == IOV_MAX) { + if (writev_retry(config, iov, IOV_MAX) == false) { + return false; + } + *nvec = 0; + } + + return true; +} + +static bool +write_stdout (const struct config *config, const char *buf, size_t len) +{ + while (len > 0) { + ssize_t nwrite; + + // Try to write the buffer to stdout. + if ((nwrite = write(1, buf, len)) < 0) { + + // Retry on EINTR. + if (errno == EINTR) { + continue; + } + + // Quit on other errors. + fprintf(stderr, "%s: write: %s\n", + config->name, strerror(errno)); + return false; + } + + // Update the buffer position. + buf += (size_t) nwrite; + len -= (size_t) nwrite; + } + + return true; +} + +static bool +write_wrapped (const struct config *config, char *buf, size_t len) +{ + static size_t col = 0; + + // Special case: if buf is NULL, print final trailing newline. + if (buf == NULL) { + if (config->wrap > 0 && col > 0) { + return write_stdout(config, "\n", 1); + } + return true; + } + + // If no wrap width is given, write the entire buffer. + if (config->wrap == 0) { + return write_stdout(config, buf, len); + } + + // Statically allocated IO vector buffer. + static struct iovec iov[IOV_MAX]; + size_t nvec = 0; + + while (len > 0) { + + // Number of characters to fill the current line. + size_t nwrite = config->wrap - col; + + // Do not write more data than is available. + if (nwrite > len) { + nwrite = len; + } + + // Append the data to the IO vector array. + if (iov_append(config, iov, &nvec, buf, nwrite) == false) { + return false; + } + + // Advance the buffer. + len -= nwrite; + buf += nwrite; + col += nwrite; + + // If the line is full, append a newline. + if (col == config->wrap) { + if (iov_append(config, iov, &nvec, "\n", 1) == false) { + return false; + } + col = 0; + } + } + + // Write the remaining vectors. + if (writev_retry(config, iov, nvec) == false) { + return false; + } + + return true; +} + +static bool +encode (const struct config *config, struct buffer *buf) { - int ret = 1; + size_t nread, nout; struct base64_state state; + // Initialize the encoder's state structure. base64_stream_encode_init(&state, 0); - while ((nread = fread(buf, 1, BUFSIZE, fp)) > 0) { - base64_stream_encode(&state, buf, nread, out, &nout); - if (nout) { - fwrite(out, nout, 1, stdout); - } - if (feof(fp)) { - break; + // Read raw data into the buffer. + while ((nread = fread(buf->raw, 1, BUFFER_RAW_SIZE, config->fp)) > 0) { + + // Encode the raw input into the encoded buffer. + base64_stream_encode(&state, buf->raw, nread, buf->enc, &nout); + + // Append the encoded data to the output stream. + if (write_wrapped(config, buf->enc, nout) == false) { + return false; } } - if (ferror(fp)) { - fprintf(stderr, "read error\n"); - ret = 0; - goto out; + + // Check for stream errors. + if (ferror(config->fp)) { + fprintf(stderr, "%s: %s: read error\n", + config->name, config->file); + return false; } - base64_stream_encode_final(&state, out, &nout); - if (nout) { - fwrite(out, nout, 1, stdout); + // Finalize the encoding by adding proper stream terminators. + base64_stream_encode_final(&state, buf->enc, &nout); + + // Append this tail to the output stream. + if (write_wrapped(config, buf->enc, nout) == false) { + return false; } -out: fclose(fp); - fclose(stdout); - return ret; + + // Print optional trailing newline. + if (write_wrapped(config, NULL, 0) == false) { + return false; + } + + return true; } static int -dec (FILE *fp) +decode (const struct config *config, struct buffer *buf) { - int ret = 1; + size_t nread, nout; struct base64_state state; + // Initialize the decoder's state structure. base64_stream_decode_init(&state, 0); - while ((nread = fread(buf, 1, BUFSIZE, fp)) > 0) { - if (!base64_stream_decode(&state, buf, nread, out, &nout)) { - fprintf(stderr, "decoding error\n"); - ret = 0; - goto out; - } - if (nout) { - fwrite(out, nout, 1, stdout); + // Read encoded data into the buffer. Use the smallest buffer size to + // be on the safe side: the decoded output will fit the raw buffer. + while ((nread = fread(buf->enc, 1, BUFFER_RAW_SIZE, config->fp)) > 0) { + + // Decode the input into the raw buffer. + if (base64_stream_decode(&state, buf->enc, nread, + buf->raw, &nout) == 0) { + fprintf(stderr, "%s: %s: decoding error\n", + config->name, config->file); + return false; } - if (feof(fp)) { - break; + + // Append the raw data to the output stream. + if (write_stdout(config, buf->raw, nout) == false) { + return false; } } - if (ferror(fp)) { - fprintf(stderr, "read error\n"); - ret = 0; + + // Check for stream errors. + if (ferror(config->fp)) { + fprintf(stderr, "%s: %s: read error\n", + config->name, config->file); + return false; } -out: fclose(fp); - fclose(stdout); - return ret; + + return true; } -int -main (int argc, char **argv) +static void +usage (FILE *fp, const struct config *config) { - char *file; - FILE *fp; - int decode = 0; - - // Parse options: - for (;;) - { - int c; - int opt_index = 0; - static struct option opt_long[] = { - { "decode", 0, 0, 'd' }, - { 0, 0, 0, 0 } - }; - if ((c = getopt_long(argc, argv, "d", opt_long, &opt_index)) == -1) { + const char *usage = + "Usage: %s [OPTION]... [FILE]\n" + "If no FILE is given or is specified as '-', " + "read from standard input.\n" + "Options:\n" + " -d, --decode Decode a base64 stream.\n" + " -h, --help Print this help text.\n" + " -w, --wrap=COLS Wrap encoded lines at this column. " + "Default 76, 0 to disable.\n"; + + fprintf(fp, usage, config->name); +} + +static bool +get_wrap (struct config *config, const char *str) +{ + char *eptr; + + // Reject empty strings. + if (*str == '\0') { + return false; + } + + // Convert the input string to a signed long. + const long wrap = strtol(str, &eptr, 10); + + // Reject negative numbers. + if (wrap < 0) { + return false; + } + + // Reject strings containing non-digits. + if (*eptr != '\0') { + return false; + } + + config->wrap = (size_t) wrap; + return true; +} + +static bool +parse_opts (int argc, char **argv, struct config *config) +{ + int c; + static const struct option opts[] = { + { "decode", no_argument, NULL, 'd' }, + { "help", no_argument, NULL, 'h' }, + { "wrap", required_argument, NULL, 'w' }, + { NULL } + }; + + // Remember the program's name. + config->name = *argv; + + // Parse command line options. + while ((c = getopt_long(argc, argv, ":dhw:", opts, NULL)) != -1) { + switch (c) { + case 'd': + config->decode = true; break; - } - switch (c) - { - case 'd': - decode = 1; - break; + + case 'h': + config->print_help = true; + return true; + + case 'w': + if (get_wrap(config, optarg) == false) { + fprintf(stderr, + "%s: invalid wrap value '%s'\n", + config->name, optarg); + return false; + } + break; + + case ':': + fprintf(stderr, "%s: missing argument for '%c'\n", + config->name, optopt); + return false; + + default: + fprintf(stderr, "%s: unknown option '%c'\n", + config->name, optopt); + return false; } } - // No options left on command line? Read from stdin: + // Return successfully if no filename was given. if (optind >= argc) { - fp = stdin; + return true; } - // One option left on command line? Treat it as a file: - else if (optind + 1 == argc) { - file = argv[optind]; - if (strcmp(file, "-") == 0) { - fp = stdin; - } - else if ((fp = fopen(file, "rb")) == NULL) { - printf("cannot open %s\n", file); - return 1; - } + // Return unsuccessfully if more than one filename was given. + if (optind + 1 < argc) { + fprintf(stderr, "%s: too many files\n", config->name); + return false; + } + + // For compatibility with GNU Coreutils base64, treat a filename of '-' + // as standard input. + if (strcmp(argv[optind], "-") == 0) { + return true; + } + + // Save the name of the file. + config->file = argv[optind]; + + // Open the file. + if ((config->fp = fopen(config->file, "rb")) == NULL) { + fprintf(stderr, "%s: %s: %s\n", + config->name, config->file, strerror(errno)); + return false; + } + + return true; +} + +int +main (int argc, char **argv) +{ + // Default program config. + struct config config = { + .file = "stdin", + .fp = stdin, + .wrap = 76, + .decode = false, + .print_help = false, + }; + struct buffer buf; + + // Parse options from the command line. + if (parse_opts(argc, argv, &config) == false) { + usage(stderr, &config); + return 1; } - // More than one option left on command line? Syntax error: - else { - printf("Usage: %s \n", argv[0]); + // Return early if the user just wanted the help text. + if (config.print_help) { + usage(stdout, &config); + return 0; + } + + // Allocate buffers. + if (buffer_alloc(&config, &buf) == false) { return 1; } - // Invert return codes to create shell return code: - return (decode) ? !dec(fp) : !enc(fp); + // Encode or decode the input based on the user's choice. + const bool ret = config.decode + ? decode(&config, &buf) + : encode(&config, &buf); + + // Free the buffers. + buffer_free(&buf); + + // Close the input file. + fclose(config.fp); + + // Close the output stream. + fclose(stdout); + + // That's all, folks. + return ret ? 0 : 1; } diff --git a/deps/base64/base64/cmake/Modules/TargetSIMDInstructionSet.cmake b/deps/base64/base64/cmake/Modules/TargetSIMDInstructionSet.cmake index ba1f6e51815eec..485080905319a6 100644 --- a/deps/base64/base64/cmake/Modules/TargetSIMDInstructionSet.cmake +++ b/deps/base64/base64/cmake/Modules/TargetSIMDInstructionSet.cmake @@ -21,6 +21,7 @@ macro(define_SIMD_compile_flags) set(COMPILE_FLAGS_SSE42 "-msse4.2") set(COMPILE_FLAGS_AVX "-mavx") set(COMPILE_FLAGS_AVX2 "-mavx2") + set(COMPILE_FLAGS_AVX512 "-mavx512vl -mavx512vbmi") #arm set(COMPILE_FLAGS_NEON32 "-mfpu=neon") @@ -30,5 +31,6 @@ macro(define_SIMD_compile_flags) set(COMPILE_FLAGS_SSE42 " ") set(COMPILE_FLAGS_AVX "/arch:AVX") set(COMPILE_FLAGS_AVX2 "/arch:AVX2") + set(COMPILE_FLAGS_AVX512 "/arch:AVX512") endif() endmacro(define_SIMD_compile_flags) diff --git a/deps/base64/base64/cmake/config.h.in b/deps/base64/base64/cmake/config.h.in index 8530d1e13d4801..c7faa94bc0903d 100644 --- a/deps/base64/base64/cmake/config.h.in +++ b/deps/base64/base64/cmake/config.h.in @@ -16,6 +16,9 @@ #cmakedefine01 BASE64_WITH_AVX2 #define HAVE_AVX2 BASE64_WITH_AVX2 +#cmakedefine01 BASE64_WITH_AVX512 +#define HAVE_AVX512 BASE64_WITH_AVX512 + #cmakedefine01 BASE64_WITH_NEON32 #define HAVE_NEON32 BASE64_WITH_NEON32 diff --git a/deps/base64/base64/include/libbase64.h b/deps/base64/base64/include/libbase64.h index d470a82f1028dc..c5908973c5e73c 100644 --- a/deps/base64/base64/include/libbase64.h +++ b/deps/base64/base64/include/libbase64.h @@ -53,6 +53,7 @@ extern "C" { #define BASE64_FORCE_SSE41 (1 << 5) #define BASE64_FORCE_SSE42 (1 << 6) #define BASE64_FORCE_AVX (1 << 7) +#define BASE64_FORCE_AVX512 (1 << 8) struct base64_state { int eof; diff --git a/deps/base64/base64/lib/arch/avx/codec.c b/deps/base64/base64/lib/arch/avx/codec.c index a7a963d8358918..b069618e29463e 100644 --- a/deps/base64/base64/lib/arch/avx/codec.c +++ b/deps/base64/base64/lib/arch/avx/codec.c @@ -11,11 +11,25 @@ #if HAVE_AVX #include +// Only enable inline assembly on supported compilers and on 64-bit CPUs. +#ifndef BASE64_AVX_USE_ASM +# if (defined(__GNUC__) || defined(__clang__)) && BASE64_WORDSIZE == 64 +# define BASE64_AVX_USE_ASM 1 +# else +# define BASE64_AVX_USE_ASM 0 +# endif +#endif + #include "../ssse3/dec_reshuffle.c" #include "../ssse3/dec_loop.c" -#include "../ssse3/enc_translate.c" -#include "../ssse3/enc_reshuffle.c" -#include "../ssse3/enc_loop.c" + +#if BASE64_AVX_USE_ASM +# include "enc_loop_asm.c" +#else +# include "../ssse3/enc_translate.c" +# include "../ssse3/enc_reshuffle.c" +# include "../ssse3/enc_loop.c" +#endif #endif // HAVE_AVX @@ -23,7 +37,17 @@ BASE64_ENC_FUNCTION(avx) { #if HAVE_AVX #include "../generic/enc_head.c" + + // For supported compilers, use a hand-optimized inline assembly + // encoder. Otherwise fall back on the SSSE3 encoder, but compiled with + // AVX flags to generate better optimized AVX code. + +#if BASE64_AVX_USE_ASM + enc_loop_avx(&s, &slen, &o, &olen); +#else enc_loop_ssse3(&s, &slen, &o, &olen); +#endif + #include "../generic/enc_tail.c" #else BASE64_ENC_STUB diff --git a/deps/base64/base64/lib/arch/avx/enc_loop_asm.c b/deps/base64/base64/lib/arch/avx/enc_loop_asm.c new file mode 100644 index 00000000000000..979269af57740e --- /dev/null +++ b/deps/base64/base64/lib/arch/avx/enc_loop_asm.c @@ -0,0 +1,264 @@ +// Apologies in advance for combining the preprocessor with inline assembly, +// two notoriously gnarly parts of C, but it was necessary to avoid a lot of +// code repetition. The preprocessor is used to template large sections of +// inline assembly that differ only in the registers used. If the code was +// written out by hand, it would become very large and hard to audit. + +// Generate a block of inline assembly that loads register R0 from memory. The +// offset at which the register is loaded is set by the given round. +#define LOAD(R0, ROUND) \ + "vlddqu ("#ROUND" * 12)(%[src]), %["R0"] \n\t" + +// Generate a block of inline assembly that deinterleaves and shuffles register +// R0 using preloaded constants. Outputs in R0 and R1. +#define SHUF(R0, R1, R2) \ + "vpshufb %[lut0], %["R0"], %["R1"] \n\t" \ + "vpand %["R1"], %[msk0], %["R2"] \n\t" \ + "vpand %["R1"], %[msk2], %["R1"] \n\t" \ + "vpmulhuw %["R2"], %[msk1], %["R2"] \n\t" \ + "vpmullw %["R1"], %[msk3], %["R1"] \n\t" \ + "vpor %["R1"], %["R2"], %["R1"] \n\t" + +// Generate a block of inline assembly that takes R0 and R1 and translates +// their contents to the base64 alphabet, using preloaded constants. +#define TRAN(R0, R1, R2) \ + "vpsubusb %[n51], %["R1"], %["R0"] \n\t" \ + "vpcmpgtb %[n25], %["R1"], %["R2"] \n\t" \ + "vpsubb %["R2"], %["R0"], %["R0"] \n\t" \ + "vpshufb %["R0"], %[lut1], %["R2"] \n\t" \ + "vpaddb %["R1"], %["R2"], %["R0"] \n\t" + +// Generate a block of inline assembly that stores the given register R0 at an +// offset set by the given round. +#define STOR(R0, ROUND) \ + "vmovdqu %["R0"], ("#ROUND" * 16)(%[dst]) \n\t" + +// Generate a block of inline assembly that generates a single self-contained +// encoder round: fetch the data, process it, and store the result. Then update +// the source and destination pointers. +#define ROUND() \ + LOAD("a", 0) \ + SHUF("a", "b", "c") \ + TRAN("a", "b", "c") \ + STOR("a", 0) \ + "add $12, %[src] \n\t" \ + "add $16, %[dst] \n\t" + +// Define a macro that initiates a three-way interleaved encoding round by +// preloading registers a, b and c from memory. +// The register graph shows which registers are in use during each step, and +// is a visual aid for choosing registers for that step. Symbol index: +// +// + indicates that a register is loaded by that step. +// | indicates that a register is in use and must not be touched. +// - indicates that a register is decommissioned by that step. +// x indicates that a register is used as a temporary by that step. +// V indicates that a register is an input or output to the macro. +// +#define ROUND_3_INIT() /* a b c d e f */ \ + LOAD("a", 0) /* + */ \ + SHUF("a", "d", "e") /* | + x */ \ + LOAD("b", 1) /* | + | */ \ + TRAN("a", "d", "e") /* | | - x */ \ + LOAD("c", 2) /* V V V */ + +// Define a macro that translates, shuffles and stores the input registers A, B +// and C, and preloads registers D, E and F for the next round. +// This macro can be arbitrarily daisy-chained by feeding output registers D, E +// and F back into the next round as input registers A, B and C. The macro +// carefully interleaves memory operations with data operations for optimal +// pipelined performance. + +#define ROUND_3(ROUND, A,B,C,D,E,F) /* A B C D E F */ \ + LOAD(D, (ROUND + 3)) /* V V V + */ \ + SHUF(B, E, F) /* | | | | + x */ \ + STOR(A, (ROUND + 0)) /* - | | | | */ \ + TRAN(B, E, F) /* | | | - x */ \ + LOAD(E, (ROUND + 4)) /* | | | + */ \ + SHUF(C, A, F) /* + | | | | x */ \ + STOR(B, (ROUND + 1)) /* | - | | | */ \ + TRAN(C, A, F) /* - | | | x */ \ + LOAD(F, (ROUND + 5)) /* | | | + */ \ + SHUF(D, A, B) /* + x | | | | */ \ + STOR(C, (ROUND + 2)) /* | - | | | */ \ + TRAN(D, A, B) /* - x V V V */ + +// Define a macro that terminates a ROUND_3 macro by taking pre-loaded +// registers D, E and F, and translating, shuffling and storing them. +#define ROUND_3_END(ROUND, A,B,C,D,E,F) /* A B C D E F */ \ + SHUF(E, A, B) /* + x V V V */ \ + STOR(D, (ROUND + 3)) /* | - | | */ \ + TRAN(E, A, B) /* - x | | */ \ + SHUF(F, C, D) /* + x | | */ \ + STOR(E, (ROUND + 4)) /* | - | */ \ + TRAN(F, C, D) /* - x | */ \ + STOR(F, (ROUND + 5)) /* - */ + +// Define a type A round. Inputs are a, b, and c, outputs are d, e, and f. +#define ROUND_3_A(ROUND) \ + ROUND_3(ROUND, "a", "b", "c", "d", "e", "f") + +// Define a type B round. Inputs and outputs are swapped with regard to type A. +#define ROUND_3_B(ROUND) \ + ROUND_3(ROUND, "d", "e", "f", "a", "b", "c") + +// Terminating macro for a type A round. +#define ROUND_3_A_LAST(ROUND) \ + ROUND_3_A(ROUND) \ + ROUND_3_END(ROUND, "a", "b", "c", "d", "e", "f") + +// Terminating macro for a type B round. +#define ROUND_3_B_LAST(ROUND) \ + ROUND_3_B(ROUND) \ + ROUND_3_END(ROUND, "d", "e", "f", "a", "b", "c") + +// Suppress clang's warning that the literal string in the asm statement is +// overlong (longer than the ISO-mandated minimum size of 4095 bytes for C99 +// compilers). It may be true, but the goal here is not C99 portability. +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Woverlength-strings" + +static inline void +enc_loop_avx (const uint8_t **s, size_t *slen, uint8_t **o, size_t *olen) +{ + // For a clearer explanation of the algorithm used by this function, + // please refer to the plain (not inline assembly) implementation. This + // function follows the same basic logic. + + if (*slen < 16) { + return; + } + + // Process blocks of 12 bytes at a time. Input is read in blocks of 16 + // bytes, so "reserve" four bytes from the input buffer to ensure that + // we never read beyond the end of the input buffer. + size_t rounds = (*slen - 4) / 12; + + *slen -= rounds * 12; // 12 bytes consumed per round + *olen += rounds * 16; // 16 bytes produced per round + + // Number of times to go through the 36x loop. + size_t loops = rounds / 36; + + // Number of rounds remaining after the 36x loop. + rounds %= 36; + + // Lookup tables. + const __m128i lut0 = _mm_set_epi8( + 10, 11, 9, 10, 7, 8, 6, 7, 4, 5, 3, 4, 1, 2, 0, 1); + + const __m128i lut1 = _mm_setr_epi8( + 65, 71, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -19, -16, 0, 0); + + // Temporary registers. + __m128i a, b, c, d, e, f; + + __asm__ volatile ( + + // If there are 36 rounds or more, enter a 36x unrolled loop of + // interleaved encoding rounds. The rounds interleave memory + // operations (load/store) with data operations (table lookups, + // etc) to maximize pipeline throughput. + " test %[loops], %[loops] \n\t" + " jz 18f \n\t" + " jmp 36f \n\t" + " \n\t" + ".balign 64 \n\t" + "36: " ROUND_3_INIT() + " " ROUND_3_A( 0) + " " ROUND_3_B( 3) + " " ROUND_3_A( 6) + " " ROUND_3_B( 9) + " " ROUND_3_A(12) + " " ROUND_3_B(15) + " " ROUND_3_A(18) + " " ROUND_3_B(21) + " " ROUND_3_A(24) + " " ROUND_3_B(27) + " " ROUND_3_A_LAST(30) + " add $(12 * 36), %[src] \n\t" + " add $(16 * 36), %[dst] \n\t" + " dec %[loops] \n\t" + " jnz 36b \n\t" + + // Enter an 18x unrolled loop for rounds of 18 or more. + "18: cmp $18, %[rounds] \n\t" + " jl 9f \n\t" + " " ROUND_3_INIT() + " " ROUND_3_A(0) + " " ROUND_3_B(3) + " " ROUND_3_A(6) + " " ROUND_3_B(9) + " " ROUND_3_A_LAST(12) + " sub $18, %[rounds] \n\t" + " add $(12 * 18), %[src] \n\t" + " add $(16 * 18), %[dst] \n\t" + + // Enter a 9x unrolled loop for rounds of 9 or more. + "9: cmp $9, %[rounds] \n\t" + " jl 6f \n\t" + " " ROUND_3_INIT() + " " ROUND_3_A(0) + " " ROUND_3_B_LAST(3) + " sub $9, %[rounds] \n\t" + " add $(12 * 9), %[src] \n\t" + " add $(16 * 9), %[dst] \n\t" + + // Enter a 6x unrolled loop for rounds of 6 or more. + "6: cmp $6, %[rounds] \n\t" + " jl 55f \n\t" + " " ROUND_3_INIT() + " " ROUND_3_A_LAST(0) + " sub $6, %[rounds] \n\t" + " add $(12 * 6), %[src] \n\t" + " add $(16 * 6), %[dst] \n\t" + + // Dispatch the remaining rounds 0..5. + "55: cmp $3, %[rounds] \n\t" + " jg 45f \n\t" + " je 3f \n\t" + " cmp $1, %[rounds] \n\t" + " jg 2f \n\t" + " je 1f \n\t" + " jmp 0f \n\t" + + "45: cmp $4, %[rounds] \n\t" + " je 4f \n\t" + + // Block of non-interlaced encoding rounds, which can each + // individually be jumped to. Rounds fall through to the next. + "5: " ROUND() + "4: " ROUND() + "3: " ROUND() + "2: " ROUND() + "1: " ROUND() + "0: \n\t" + + // Outputs (modified). + : [rounds] "+r" (rounds), + [loops] "+r" (loops), + [src] "+r" (*s), + [dst] "+r" (*o), + [a] "=&x" (a), + [b] "=&x" (b), + [c] "=&x" (c), + [d] "=&x" (d), + [e] "=&x" (e), + [f] "=&x" (f) + + // Inputs (not modified). + : [lut0] "x" (lut0), + [lut1] "x" (lut1), + [msk0] "x" (_mm_set1_epi32(0x0FC0FC00)), + [msk1] "x" (_mm_set1_epi32(0x04000040)), + [msk2] "x" (_mm_set1_epi32(0x003F03F0)), + [msk3] "x" (_mm_set1_epi32(0x01000010)), + [n51] "x" (_mm_set1_epi8(51)), + [n25] "x" (_mm_set1_epi8(25)) + + // Clobbers. + : "cc", "memory" + ); +} + +#pragma GCC diagnostic pop diff --git a/deps/base64/base64/lib/arch/avx2/codec.c b/deps/base64/base64/lib/arch/avx2/codec.c index 0498548b80d286..8a2aa4a6071500 100644 --- a/deps/base64/base64/lib/arch/avx2/codec.c +++ b/deps/base64/base64/lib/arch/avx2/codec.c @@ -11,11 +11,25 @@ #if HAVE_AVX2 #include +// Only enable inline assembly on supported compilers and on 64-bit CPUs. +#ifndef BASE64_AVX2_USE_ASM +# if (defined(__GNUC__) || defined(__clang__)) && BASE64_WORDSIZE == 64 +# define BASE64_AVX2_USE_ASM 1 +# else +# define BASE64_AVX2_USE_ASM 0 +# endif +#endif + #include "dec_reshuffle.c" #include "dec_loop.c" -#include "enc_translate.c" -#include "enc_reshuffle.c" -#include "enc_loop.c" + +#if BASE64_AVX2_USE_ASM +# include "enc_loop_asm.c" +#else +# include "enc_translate.c" +# include "enc_reshuffle.c" +# include "enc_loop.c" +#endif #endif // HAVE_AVX2 diff --git a/deps/base64/base64/lib/arch/avx2/enc_loop_asm.c b/deps/base64/base64/lib/arch/avx2/enc_loop_asm.c new file mode 100644 index 00000000000000..eb775a1d1f03d0 --- /dev/null +++ b/deps/base64/base64/lib/arch/avx2/enc_loop_asm.c @@ -0,0 +1,291 @@ +// Apologies in advance for combining the preprocessor with inline assembly, +// two notoriously gnarly parts of C, but it was necessary to avoid a lot of +// code repetition. The preprocessor is used to template large sections of +// inline assembly that differ only in the registers used. If the code was +// written out by hand, it would become very large and hard to audit. + +// Generate a block of inline assembly that loads register R0 from memory. The +// offset at which the register is loaded is set by the given round and a +// constant offset. +#define LOAD(R0, ROUND, OFFSET) \ + "vlddqu ("#ROUND" * 24 + "#OFFSET")(%[src]), %["R0"] \n\t" + +// Generate a block of inline assembly that deinterleaves and shuffles register +// R0 using preloaded constants. Outputs in R0 and R1. +#define SHUF(R0, R1, R2) \ + "vpshufb %[lut0], %["R0"], %["R1"] \n\t" \ + "vpand %["R1"], %[msk0], %["R2"] \n\t" \ + "vpand %["R1"], %[msk2], %["R1"] \n\t" \ + "vpmulhuw %["R2"], %[msk1], %["R2"] \n\t" \ + "vpmullw %["R1"], %[msk3], %["R1"] \n\t" \ + "vpor %["R1"], %["R2"], %["R1"] \n\t" + +// Generate a block of inline assembly that takes R0 and R1 and translates +// their contents to the base64 alphabet, using preloaded constants. +#define TRAN(R0, R1, R2) \ + "vpsubusb %[n51], %["R1"], %["R0"] \n\t" \ + "vpcmpgtb %[n25], %["R1"], %["R2"] \n\t" \ + "vpsubb %["R2"], %["R0"], %["R0"] \n\t" \ + "vpshufb %["R0"], %[lut1], %["R2"] \n\t" \ + "vpaddb %["R1"], %["R2"], %["R0"] \n\t" + +// Generate a block of inline assembly that stores the given register R0 at an +// offset set by the given round. +#define STOR(R0, ROUND) \ + "vmovdqu %["R0"], ("#ROUND" * 32)(%[dst]) \n\t" + +// Generate a block of inline assembly that generates a single self-contained +// encoder round: fetch the data, process it, and store the result. Then update +// the source and destination pointers. +#define ROUND() \ + LOAD("a", 0, -4) \ + SHUF("a", "b", "c") \ + TRAN("a", "b", "c") \ + STOR("a", 0) \ + "add $24, %[src] \n\t" \ + "add $32, %[dst] \n\t" + +// Define a macro that initiates a three-way interleaved encoding round by +// preloading registers a, b and c from memory. +// The register graph shows which registers are in use during each step, and +// is a visual aid for choosing registers for that step. Symbol index: +// +// + indicates that a register is loaded by that step. +// | indicates that a register is in use and must not be touched. +// - indicates that a register is decommissioned by that step. +// x indicates that a register is used as a temporary by that step. +// V indicates that a register is an input or output to the macro. +// +#define ROUND_3_INIT() /* a b c d e f */ \ + LOAD("a", 0, -4) /* + */ \ + SHUF("a", "d", "e") /* | + x */ \ + LOAD("b", 1, -4) /* | + | */ \ + TRAN("a", "d", "e") /* | | - x */ \ + LOAD("c", 2, -4) /* V V V */ + +// Define a macro that translates, shuffles and stores the input registers A, B +// and C, and preloads registers D, E and F for the next round. +// This macro can be arbitrarily daisy-chained by feeding output registers D, E +// and F back into the next round as input registers A, B and C. The macro +// carefully interleaves memory operations with data operations for optimal +// pipelined performance. + +#define ROUND_3(ROUND, A,B,C,D,E,F) /* A B C D E F */ \ + LOAD(D, (ROUND + 3), -4) /* V V V + */ \ + SHUF(B, E, F) /* | | | | + x */ \ + STOR(A, (ROUND + 0)) /* - | | | | */ \ + TRAN(B, E, F) /* | | | - x */ \ + LOAD(E, (ROUND + 4), -4) /* | | | + */ \ + SHUF(C, A, F) /* + | | | | x */ \ + STOR(B, (ROUND + 1)) /* | - | | | */ \ + TRAN(C, A, F) /* - | | | x */ \ + LOAD(F, (ROUND + 5), -4) /* | | | + */ \ + SHUF(D, A, B) /* + x | | | | */ \ + STOR(C, (ROUND + 2)) /* | - | | | */ \ + TRAN(D, A, B) /* - x V V V */ + +// Define a macro that terminates a ROUND_3 macro by taking pre-loaded +// registers D, E and F, and translating, shuffling and storing them. +#define ROUND_3_END(ROUND, A,B,C,D,E,F) /* A B C D E F */ \ + SHUF(E, A, B) /* + x V V V */ \ + STOR(D, (ROUND + 3)) /* | - | | */ \ + TRAN(E, A, B) /* - x | | */ \ + SHUF(F, C, D) /* + x | | */ \ + STOR(E, (ROUND + 4)) /* | - | */ \ + TRAN(F, C, D) /* - x | */ \ + STOR(F, (ROUND + 5)) /* - */ + +// Define a type A round. Inputs are a, b, and c, outputs are d, e, and f. +#define ROUND_3_A(ROUND) \ + ROUND_3(ROUND, "a", "b", "c", "d", "e", "f") + +// Define a type B round. Inputs and outputs are swapped with regard to type A. +#define ROUND_3_B(ROUND) \ + ROUND_3(ROUND, "d", "e", "f", "a", "b", "c") + +// Terminating macro for a type A round. +#define ROUND_3_A_LAST(ROUND) \ + ROUND_3_A(ROUND) \ + ROUND_3_END(ROUND, "a", "b", "c", "d", "e", "f") + +// Terminating macro for a type B round. +#define ROUND_3_B_LAST(ROUND) \ + ROUND_3_B(ROUND) \ + ROUND_3_END(ROUND, "d", "e", "f", "a", "b", "c") + +// Suppress clang's warning that the literal string in the asm statement is +// overlong (longer than the ISO-mandated minimum size of 4095 bytes for C99 +// compilers). It may be true, but the goal here is not C99 portability. +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Woverlength-strings" + +static inline void +enc_loop_avx2 (const uint8_t **s, size_t *slen, uint8_t **o, size_t *olen) +{ + // For a clearer explanation of the algorithm used by this function, + // please refer to the plain (not inline assembly) implementation. This + // function follows the same basic logic. + + if (*slen < 32) { + return; + } + + // Process blocks of 24 bytes at a time. Because blocks are loaded 32 + // bytes at a time an offset of -4, ensure that there will be at least + // 4 remaining bytes after the last round, so that the final read will + // not pass beyond the bounds of the input buffer. + size_t rounds = (*slen - 4) / 24; + + *slen -= rounds * 24; // 24 bytes consumed per round + *olen += rounds * 32; // 32 bytes produced per round + + // Pre-decrement the number of rounds to get the number of rounds + // *after* the first round, which is handled as a special case. + rounds--; + + // Number of times to go through the 36x loop. + size_t loops = rounds / 36; + + // Number of rounds remaining after the 36x loop. + rounds %= 36; + + // Lookup tables. + const __m256i lut0 = _mm256_set_epi8( + 10, 11, 9, 10, 7, 8, 6, 7, 4, 5, 3, 4, 1, 2, 0, 1, + 14, 15, 13, 14, 11, 12, 10, 11, 8, 9, 7, 8, 5, 6, 4, 5); + + const __m256i lut1 = _mm256_setr_epi8( + 65, 71, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -19, -16, 0, 0, + 65, 71, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -19, -16, 0, 0); + + // Temporary registers. + __m256i a, b, c, d, e; + + // Temporary register f doubles as the shift mask for the first round. + __m256i f = _mm256_setr_epi32(0, 0, 1, 2, 3, 4, 5, 6); + + __asm__ volatile ( + + // The first loop iteration requires special handling to ensure + // that the read, which is normally done at an offset of -4, + // does not underflow the buffer. Load the buffer at an offset + // of 0 and permute the input to achieve the same effect. + LOAD("a", 0, 0) + "vpermd %[a], %[f], %[a] \n\t" + + // Perform the standard shuffling and translation steps. + SHUF("a", "b", "c") + TRAN("a", "b", "c") + + // Store the result and increment the source and dest pointers. + "vmovdqu %[a], (%[dst]) \n\t" + "add $24, %[src] \n\t" + "add $32, %[dst] \n\t" + + // If there are 36 rounds or more, enter a 36x unrolled loop of + // interleaved encoding rounds. The rounds interleave memory + // operations (load/store) with data operations (table lookups, + // etc) to maximize pipeline throughput. + " test %[loops], %[loops] \n\t" + " jz 18f \n\t" + " jmp 36f \n\t" + " \n\t" + ".balign 64 \n\t" + "36: " ROUND_3_INIT() + " " ROUND_3_A( 0) + " " ROUND_3_B( 3) + " " ROUND_3_A( 6) + " " ROUND_3_B( 9) + " " ROUND_3_A(12) + " " ROUND_3_B(15) + " " ROUND_3_A(18) + " " ROUND_3_B(21) + " " ROUND_3_A(24) + " " ROUND_3_B(27) + " " ROUND_3_A_LAST(30) + " add $(24 * 36), %[src] \n\t" + " add $(32 * 36), %[dst] \n\t" + " dec %[loops] \n\t" + " jnz 36b \n\t" + + // Enter an 18x unrolled loop for rounds of 18 or more. + "18: cmp $18, %[rounds] \n\t" + " jl 9f \n\t" + " " ROUND_3_INIT() + " " ROUND_3_A(0) + " " ROUND_3_B(3) + " " ROUND_3_A(6) + " " ROUND_3_B(9) + " " ROUND_3_A_LAST(12) + " sub $18, %[rounds] \n\t" + " add $(24 * 18), %[src] \n\t" + " add $(32 * 18), %[dst] \n\t" + + // Enter a 9x unrolled loop for rounds of 9 or more. + "9: cmp $9, %[rounds] \n\t" + " jl 6f \n\t" + " " ROUND_3_INIT() + " " ROUND_3_A(0) + " " ROUND_3_B_LAST(3) + " sub $9, %[rounds] \n\t" + " add $(24 * 9), %[src] \n\t" + " add $(32 * 9), %[dst] \n\t" + + // Enter a 6x unrolled loop for rounds of 6 or more. + "6: cmp $6, %[rounds] \n\t" + " jl 55f \n\t" + " " ROUND_3_INIT() + " " ROUND_3_A_LAST(0) + " sub $6, %[rounds] \n\t" + " add $(24 * 6), %[src] \n\t" + " add $(32 * 6), %[dst] \n\t" + + // Dispatch the remaining rounds 0..5. + "55: cmp $3, %[rounds] \n\t" + " jg 45f \n\t" + " je 3f \n\t" + " cmp $1, %[rounds] \n\t" + " jg 2f \n\t" + " je 1f \n\t" + " jmp 0f \n\t" + + "45: cmp $4, %[rounds] \n\t" + " je 4f \n\t" + + // Block of non-interlaced encoding rounds, which can each + // individually be jumped to. Rounds fall through to the next. + "5: " ROUND() + "4: " ROUND() + "3: " ROUND() + "2: " ROUND() + "1: " ROUND() + "0: \n\t" + + // Outputs (modified). + : [rounds] "+r" (rounds), + [loops] "+r" (loops), + [src] "+r" (*s), + [dst] "+r" (*o), + [a] "=&x" (a), + [b] "=&x" (b), + [c] "=&x" (c), + [d] "=&x" (d), + [e] "=&x" (e), + [f] "+x" (f) + + // Inputs (not modified). + : [lut0] "x" (lut0), + [lut1] "x" (lut1), + [msk0] "x" (_mm256_set1_epi32(0x0FC0FC00)), + [msk1] "x" (_mm256_set1_epi32(0x04000040)), + [msk2] "x" (_mm256_set1_epi32(0x003F03F0)), + [msk3] "x" (_mm256_set1_epi32(0x01000010)), + [n51] "x" (_mm256_set1_epi8(51)), + [n25] "x" (_mm256_set1_epi8(25)) + + // Clobbers. + : "cc", "memory" + ); +} + +#pragma GCC diagnostic pop diff --git a/deps/base64/base64/lib/arch/avx512/codec.c b/deps/base64/base64/lib/arch/avx512/codec.c new file mode 100644 index 00000000000000..664120853d4316 --- /dev/null +++ b/deps/base64/base64/lib/arch/avx512/codec.c @@ -0,0 +1,42 @@ +#include +#include +#include + +#include "../../../include/libbase64.h" +#include "../../tables/tables.h" +#include "../../codecs.h" +#include "config.h" +#include "../../env.h" + +#if HAVE_AVX512 +#include + +#include "../avx2/dec_reshuffle.c" +#include "../avx2/dec_loop.c" +#include "enc_reshuffle_translate.c" +#include "enc_loop.c" + +#endif // HAVE_AVX512 + +BASE64_ENC_FUNCTION(avx512) +{ +#if HAVE_AVX512 + #include "../generic/enc_head.c" + enc_loop_avx512(&s, &slen, &o, &olen); + #include "../generic/enc_tail.c" +#else + BASE64_ENC_STUB +#endif +} + +// Reuse AVX2 decoding. Not supporting AVX512 at present +BASE64_DEC_FUNCTION(avx512) +{ +#if HAVE_AVX512 + #include "../generic/dec_head.c" + dec_loop_avx2(&s, &slen, &o, &olen); + #include "../generic/dec_tail.c" +#else + BASE64_DEC_STUB +#endif +} diff --git a/deps/base64/base64/lib/arch/avx512/enc_loop.c b/deps/base64/base64/lib/arch/avx512/enc_loop.c new file mode 100644 index 00000000000000..4c71e160ae820a --- /dev/null +++ b/deps/base64/base64/lib/arch/avx512/enc_loop.c @@ -0,0 +1,61 @@ +static inline void +enc_loop_avx512_inner (const uint8_t **s, uint8_t **o) +{ + // Load input. + __m512i src = _mm512_loadu_si512((__m512i *) *s); + + // Reshuffle, translate, store. + src = enc_reshuffle_translate(src); + _mm512_storeu_si512((__m512i *) *o, src); + + *s += 48; + *o += 64; +} + +static inline void +enc_loop_avx512 (const uint8_t **s, size_t *slen, uint8_t **o, size_t *olen) +{ + if (*slen < 64) { + return; + } + + // Process blocks of 48 bytes at a time. Because blocks are loaded 64 + // bytes at a time, ensure that there will be at least 24 remaining + // bytes after the last round, so that the final read will not pass + // beyond the bounds of the input buffer. + size_t rounds = (*slen - 24) / 48; + + *slen -= rounds * 48; // 48 bytes consumed per round + *olen += rounds * 64; // 64 bytes produced per round + + while (rounds > 0) { + if (rounds >= 8) { + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + rounds -= 8; + continue; + } + if (rounds >= 4) { + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + rounds -= 4; + continue; + } + if (rounds >= 2) { + enc_loop_avx512_inner(s, o); + enc_loop_avx512_inner(s, o); + rounds -= 2; + continue; + } + enc_loop_avx512_inner(s, o); + break; + } +} diff --git a/deps/base64/base64/lib/arch/avx512/enc_reshuffle_translate.c b/deps/base64/base64/lib/arch/avx512/enc_reshuffle_translate.c new file mode 100644 index 00000000000000..5c332bb24ca4e3 --- /dev/null +++ b/deps/base64/base64/lib/arch/avx512/enc_reshuffle_translate.c @@ -0,0 +1,50 @@ +// AVX512 algorithm is based on permutevar and multishift. The code is based on +// https://github.com/WojciechMula/base64simd which is under BSD-2 license. + +static inline __m512i +enc_reshuffle_translate (const __m512i input) +{ + // 32-bit input + // [ 0 0 0 0 0 0 0 0|c1 c0 d5 d4 d3 d2 d1 d0| + // b3 b2 b1 b0 c5 c4 c3 c2|a5 a4 a3 a2 a1 a0 b5 b4] + // output order [1, 2, 0, 1] + // [b3 b2 b1 b0 c5 c4 c3 c2|c1 c0 d5 d4 d3 d2 d1 d0| + // a5 a4 a3 a2 a1 a0 b5 b4|b3 b2 b1 b0 c3 c2 c1 c0] + + const __m512i shuffle_input = _mm512_setr_epi32(0x01020001, + 0x04050304, + 0x07080607, + 0x0a0b090a, + 0x0d0e0c0d, + 0x10110f10, + 0x13141213, + 0x16171516, + 0x191a1819, + 0x1c1d1b1c, + 0x1f201e1f, + 0x22232122, + 0x25262425, + 0x28292728, + 0x2b2c2a2b, + 0x2e2f2d2e); + + // Reorder bytes + // [b3 b2 b1 b0 c5 c4 c3 c2|c1 c0 d5 d4 d3 d2 d1 d0| + // a5 a4 a3 a2 a1 a0 b5 b4|b3 b2 b1 b0 c3 c2 c1 c0] + const __m512i in = _mm512_permutexvar_epi8(shuffle_input, input); + + // After multishift a single 32-bit lane has following layout + // [c1 c0 d5 d4 d3 d2 d1 d0|b1 b0 c5 c4 c3 c2 c1 c0| + // a1 a0 b5 b4 b3 b2 b1 b0|d1 d0 a5 a4 a3 a2 a1 a0] + // (a = [10:17], b = [4:11], c = [22:27], d = [16:21]) + + // 48, 54, 36, 42, 16, 22, 4, 10 + const __m512i shifts = _mm512_set1_epi64(0x3036242a1016040alu); + __m512i shuffled_in = _mm512_multishift_epi64_epi8(shifts, in); + + // Translate immediatedly after reshuffled. + const __m512i lookup = _mm512_loadu_si512(base64_table_enc_6bit); + + // Translation 6-bit values to ASCII. + return _mm512_permutexvar_epi8(shuffled_in, lookup); +} diff --git a/deps/base64/base64/lib/arch/neon32/enc_loop.c b/deps/base64/base64/lib/arch/neon32/enc_loop.c index e9e8e28525691b..d694b33733cd61 100644 --- a/deps/base64/base64/lib/arch/neon32/enc_loop.c +++ b/deps/base64/base64/lib/arch/neon32/enc_loop.c @@ -100,7 +100,8 @@ enc_loop_neon32_inner_asm (const uint8_t **s, uint8_t **o) [n63] "w" (n63) // Clobbers. - : "d24", "d25", "d26", "d27", "d28", "d29", "d30", "d31" + : "d24", "d25", "d26", "d27", "d28", "d29", "d30", "d31", + "cc", "memory" ); } #endif diff --git a/deps/base64/base64/lib/arch/neon64/enc_loop_asm.c b/deps/base64/base64/lib/arch/neon64/enc_loop_asm.c index cf2fd27e80d2ca..182e9cdf4a17db 100644 --- a/deps/base64/base64/lib/arch/neon64/enc_loop_asm.c +++ b/deps/base64/base64/lib/arch/neon64/enc_loop_asm.c @@ -160,7 +160,8 @@ enc_loop_neon64 (const uint8_t **s, size_t *slen, uint8_t **o, size_t *olen) // Clobbers. : "v2", "v3", "v4", "v5", "v8", "v9", "v10", "v11", - "v12", "v13", "v14", "v15" + "v12", "v13", "v14", "v15", + "cc", "memory" ); } diff --git a/deps/base64/base64/lib/arch/sse41/codec.c b/deps/base64/base64/lib/arch/sse41/codec.c index 00645feda836d0..6e5afe30011b7b 100644 --- a/deps/base64/base64/lib/arch/sse41/codec.c +++ b/deps/base64/base64/lib/arch/sse41/codec.c @@ -11,11 +11,25 @@ #if HAVE_SSE41 #include +// Only enable inline assembly on supported compilers and on 64-bit CPUs. +#ifndef BASE64_SSE41_USE_ASM +# if (defined(__GNUC__) || defined(__clang__)) && BASE64_WORDSIZE == 64 +# define BASE64_SSE41_USE_ASM 1 +# else +# define BASE64_SSE41_USE_ASM 0 +# endif +#endif + #include "../ssse3/dec_reshuffle.c" #include "../ssse3/dec_loop.c" -#include "../ssse3/enc_translate.c" -#include "../ssse3/enc_reshuffle.c" -#include "../ssse3/enc_loop.c" + +#if BASE64_SSE41_USE_ASM +# include "../ssse3/enc_loop_asm.c" +#else +# include "../ssse3/enc_translate.c" +# include "../ssse3/enc_reshuffle.c" +# include "../ssse3/enc_loop.c" +#endif #endif // HAVE_SSE41 diff --git a/deps/base64/base64/lib/arch/sse42/codec.c b/deps/base64/base64/lib/arch/sse42/codec.c index cf5d97cfb293ca..dde823b7aa0aa6 100644 --- a/deps/base64/base64/lib/arch/sse42/codec.c +++ b/deps/base64/base64/lib/arch/sse42/codec.c @@ -11,11 +11,25 @@ #if HAVE_SSE42 #include +// Only enable inline assembly on supported compilers and on 64-bit CPUs. +#ifndef BASE64_SSE42_USE_ASM +# if (defined(__GNUC__) || defined(__clang__)) && BASE64_WORDSIZE == 64 +# define BASE64_SSE42_USE_ASM 1 +# else +# define BASE64_SSE42_USE_ASM 0 +# endif +#endif + #include "../ssse3/dec_reshuffle.c" #include "../ssse3/dec_loop.c" -#include "../ssse3/enc_translate.c" -#include "../ssse3/enc_reshuffle.c" -#include "../ssse3/enc_loop.c" + +#if BASE64_SSE42_USE_ASM +# include "../ssse3/enc_loop_asm.c" +#else +# include "../ssse3/enc_translate.c" +# include "../ssse3/enc_reshuffle.c" +# include "../ssse3/enc_loop.c" +#endif #endif // HAVE_SSE42 diff --git a/deps/base64/base64/lib/arch/ssse3/codec.c b/deps/base64/base64/lib/arch/ssse3/codec.c index ad14a4589deb70..a812a2901f4efb 100644 --- a/deps/base64/base64/lib/arch/ssse3/codec.c +++ b/deps/base64/base64/lib/arch/ssse3/codec.c @@ -11,11 +11,27 @@ #if HAVE_SSSE3 #include +// Only enable inline assembly on supported compilers and on 64-bit CPUs. +// 32-bit CPUs with SSSE3 support, such as low-end Atoms, only have eight XMM +// registers, which is not enough to run the inline assembly. +#ifndef BASE64_SSSE3_USE_ASM +# if (defined(__GNUC__) || defined(__clang__)) && BASE64_WORDSIZE == 64 +# define BASE64_SSSE3_USE_ASM 1 +# else +# define BASE64_SSSE3_USE_ASM 0 +# endif +#endif + #include "dec_reshuffle.c" #include "dec_loop.c" -#include "enc_reshuffle.c" -#include "enc_translate.c" -#include "enc_loop.c" + +#if BASE64_SSSE3_USE_ASM +# include "enc_loop_asm.c" +#else +# include "enc_reshuffle.c" +# include "enc_translate.c" +# include "enc_loop.c" +#endif #endif // HAVE_SSSE3 diff --git a/deps/base64/base64/lib/arch/ssse3/enc_loop_asm.c b/deps/base64/base64/lib/arch/ssse3/enc_loop_asm.c new file mode 100644 index 00000000000000..0cdb340a63b7fc --- /dev/null +++ b/deps/base64/base64/lib/arch/ssse3/enc_loop_asm.c @@ -0,0 +1,268 @@ +// Apologies in advance for combining the preprocessor with inline assembly, +// two notoriously gnarly parts of C, but it was necessary to avoid a lot of +// code repetition. The preprocessor is used to template large sections of +// inline assembly that differ only in the registers used. If the code was +// written out by hand, it would become very large and hard to audit. + +// Generate a block of inline assembly that loads register R0 from memory. The +// offset at which the register is loaded is set by the given round. +#define LOAD(R0, ROUND) \ + "lddqu ("#ROUND" * 12)(%[src]), %["R0"] \n\t" + +// Generate a block of inline assembly that deinterleaves and shuffles register +// R0 using preloaded constants. Outputs in R0 and R1. +#define SHUF(R0, R1) \ + "pshufb %[lut0], %["R0"] \n\t" \ + "movdqa %["R0"], %["R1"] \n\t" \ + "pand %[msk0], %["R0"] \n\t" \ + "pand %[msk2], %["R1"] \n\t" \ + "pmulhuw %[msk1], %["R0"] \n\t" \ + "pmullw %[msk3], %["R1"] \n\t" \ + "por %["R1"], %["R0"] \n\t" + +// Generate a block of inline assembly that takes R0 and R1 and translates +// their contents to the base64 alphabet, using preloaded constants. +#define TRAN(R0, R1, R2) \ + "movdqa %["R0"], %["R1"] \n\t" \ + "movdqa %["R0"], %["R2"] \n\t" \ + "psubusb %[n51], %["R1"] \n\t" \ + "pcmpgtb %[n25], %["R2"] \n\t" \ + "psubb %["R2"], %["R1"] \n\t" \ + "movdqa %[lut1], %["R2"] \n\t" \ + "pshufb %["R1"], %["R2"] \n\t" \ + "paddb %["R2"], %["R0"] \n\t" + +// Generate a block of inline assembly that stores the given register R0 at an +// offset set by the given round. +#define STOR(R0, ROUND) \ + "movdqu %["R0"], ("#ROUND" * 16)(%[dst]) \n\t" + +// Generate a block of inline assembly that generates a single self-contained +// encoder round: fetch the data, process it, and store the result. Then update +// the source and destination pointers. +#define ROUND() \ + LOAD("a", 0) \ + SHUF("a", "b") \ + TRAN("a", "b", "c") \ + STOR("a", 0) \ + "add $12, %[src] \n\t" \ + "add $16, %[dst] \n\t" + +// Define a macro that initiates a three-way interleaved encoding round by +// preloading registers a, b and c from memory. +// The register graph shows which registers are in use during each step, and +// is a visual aid for choosing registers for that step. Symbol index: +// +// + indicates that a register is loaded by that step. +// | indicates that a register is in use and must not be touched. +// - indicates that a register is decommissioned by that step. +// x indicates that a register is used as a temporary by that step. +// V indicates that a register is an input or output to the macro. +// +#define ROUND_3_INIT() /* a b c d e f */ \ + LOAD("a", 0) /* + */ \ + SHUF("a", "d") /* | + */ \ + LOAD("b", 1) /* | + | */ \ + TRAN("a", "d", "e") /* | | - x */ \ + LOAD("c", 2) /* V V V */ + +// Define a macro that translates, shuffles and stores the input registers A, B +// and C, and preloads registers D, E and F for the next round. +// This macro can be arbitrarily daisy-chained by feeding output registers D, E +// and F back into the next round as input registers A, B and C. The macro +// carefully interleaves memory operations with data operations for optimal +// pipelined performance. + +#define ROUND_3(ROUND, A,B,C,D,E,F) /* A B C D E F */ \ + LOAD(D, (ROUND + 3)) /* V V V + */ \ + SHUF(B, E) /* | | | | + */ \ + STOR(A, (ROUND + 0)) /* - | | | | */ \ + TRAN(B, E, F) /* | | | - x */ \ + LOAD(E, (ROUND + 4)) /* | | | + */ \ + SHUF(C, A) /* + | | | | */ \ + STOR(B, (ROUND + 1)) /* | - | | | */ \ + TRAN(C, A, F) /* - | | | x */ \ + LOAD(F, (ROUND + 5)) /* | | | + */ \ + SHUF(D, A) /* + | | | | */ \ + STOR(C, (ROUND + 2)) /* | - | | | */ \ + TRAN(D, A, B) /* - x V V V */ + +// Define a macro that terminates a ROUND_3 macro by taking pre-loaded +// registers D, E and F, and translating, shuffling and storing them. +#define ROUND_3_END(ROUND, A,B,C,D,E,F) /* A B C D E F */ \ + SHUF(E, A) /* + V V V */ \ + STOR(D, (ROUND + 3)) /* | - | | */ \ + TRAN(E, A, B) /* - x | | */ \ + SHUF(F, C) /* + | | */ \ + STOR(E, (ROUND + 4)) /* | - | */ \ + TRAN(F, C, D) /* - x | */ \ + STOR(F, (ROUND + 5)) /* - */ + +// Define a type A round. Inputs are a, b, and c, outputs are d, e, and f. +#define ROUND_3_A(ROUND) \ + ROUND_3(ROUND, "a", "b", "c", "d", "e", "f") + +// Define a type B round. Inputs and outputs are swapped with regard to type A. +#define ROUND_3_B(ROUND) \ + ROUND_3(ROUND, "d", "e", "f", "a", "b", "c") + +// Terminating macro for a type A round. +#define ROUND_3_A_LAST(ROUND) \ + ROUND_3_A(ROUND) \ + ROUND_3_END(ROUND, "a", "b", "c", "d", "e", "f") + +// Terminating macro for a type B round. +#define ROUND_3_B_LAST(ROUND) \ + ROUND_3_B(ROUND) \ + ROUND_3_END(ROUND, "d", "e", "f", "a", "b", "c") + +// Suppress clang's warning that the literal string in the asm statement is +// overlong (longer than the ISO-mandated minimum size of 4095 bytes for C99 +// compilers). It may be true, but the goal here is not C99 portability. +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Woverlength-strings" + +static inline void +enc_loop_ssse3 (const uint8_t **s, size_t *slen, uint8_t **o, size_t *olen) +{ + // For a clearer explanation of the algorithm used by this function, + // please refer to the plain (not inline assembly) implementation. This + // function follows the same basic logic. + + if (*slen < 16) { + return; + } + + // Process blocks of 12 bytes at a time. Input is read in blocks of 16 + // bytes, so "reserve" four bytes from the input buffer to ensure that + // we never read beyond the end of the input buffer. + size_t rounds = (*slen - 4) / 12; + + *slen -= rounds * 12; // 12 bytes consumed per round + *olen += rounds * 16; // 16 bytes produced per round + + // Number of times to go through the 36x loop. + size_t loops = rounds / 36; + + // Number of rounds remaining after the 36x loop. + rounds %= 36; + + // Lookup tables. + const __m128i lut0 = _mm_set_epi8( + 10, 11, 9, 10, 7, 8, 6, 7, 4, 5, 3, 4, 1, 2, 0, 1); + + const __m128i lut1 = _mm_setr_epi8( + 65, 71, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -19, -16, 0, 0); + + // Temporary registers. + __m128i a, b, c, d, e, f; + + __asm__ volatile ( + + // If there are 36 rounds or more, enter a 36x unrolled loop of + // interleaved encoding rounds. The rounds interleave memory + // operations (load/store) with data operations (table lookups, + // etc) to maximize pipeline throughput. + " test %[loops], %[loops] \n\t" + " jz 18f \n\t" + " jmp 36f \n\t" + " \n\t" + ".balign 64 \n\t" + "36: " ROUND_3_INIT() + " " ROUND_3_A( 0) + " " ROUND_3_B( 3) + " " ROUND_3_A( 6) + " " ROUND_3_B( 9) + " " ROUND_3_A(12) + " " ROUND_3_B(15) + " " ROUND_3_A(18) + " " ROUND_3_B(21) + " " ROUND_3_A(24) + " " ROUND_3_B(27) + " " ROUND_3_A_LAST(30) + " add $(12 * 36), %[src] \n\t" + " add $(16 * 36), %[dst] \n\t" + " dec %[loops] \n\t" + " jnz 36b \n\t" + + // Enter an 18x unrolled loop for rounds of 18 or more. + "18: cmp $18, %[rounds] \n\t" + " jl 9f \n\t" + " " ROUND_3_INIT() + " " ROUND_3_A(0) + " " ROUND_3_B(3) + " " ROUND_3_A(6) + " " ROUND_3_B(9) + " " ROUND_3_A_LAST(12) + " sub $18, %[rounds] \n\t" + " add $(12 * 18), %[src] \n\t" + " add $(16 * 18), %[dst] \n\t" + + // Enter a 9x unrolled loop for rounds of 9 or more. + "9: cmp $9, %[rounds] \n\t" + " jl 6f \n\t" + " " ROUND_3_INIT() + " " ROUND_3_A(0) + " " ROUND_3_B_LAST(3) + " sub $9, %[rounds] \n\t" + " add $(12 * 9), %[src] \n\t" + " add $(16 * 9), %[dst] \n\t" + + // Enter a 6x unrolled loop for rounds of 6 or more. + "6: cmp $6, %[rounds] \n\t" + " jl 55f \n\t" + " " ROUND_3_INIT() + " " ROUND_3_A_LAST(0) + " sub $6, %[rounds] \n\t" + " add $(12 * 6), %[src] \n\t" + " add $(16 * 6), %[dst] \n\t" + + // Dispatch the remaining rounds 0..5. + "55: cmp $3, %[rounds] \n\t" + " jg 45f \n\t" + " je 3f \n\t" + " cmp $1, %[rounds] \n\t" + " jg 2f \n\t" + " je 1f \n\t" + " jmp 0f \n\t" + + "45: cmp $4, %[rounds] \n\t" + " je 4f \n\t" + + // Block of non-interlaced encoding rounds, which can each + // individually be jumped to. Rounds fall through to the next. + "5: " ROUND() + "4: " ROUND() + "3: " ROUND() + "2: " ROUND() + "1: " ROUND() + "0: \n\t" + + // Outputs (modified). + : [rounds] "+r" (rounds), + [loops] "+r" (loops), + [src] "+r" (*s), + [dst] "+r" (*o), + [a] "=&x" (a), + [b] "=&x" (b), + [c] "=&x" (c), + [d] "=&x" (d), + [e] "=&x" (e), + [f] "=&x" (f) + + // Inputs (not modified). + : [lut0] "x" (lut0), + [lut1] "x" (lut1), + [msk0] "x" (_mm_set1_epi32(0x0FC0FC00)), + [msk1] "x" (_mm_set1_epi32(0x04000040)), + [msk2] "x" (_mm_set1_epi32(0x003F03F0)), + [msk3] "x" (_mm_set1_epi32(0x01000010)), + [n51] "x" (_mm_set1_epi8(51)), + [n25] "x" (_mm_set1_epi8(25)) + + // Clobbers. + : "cc", "memory" + ); +} + +#pragma GCC diagnostic pop diff --git a/deps/base64/base64/lib/codec_choose.c b/deps/base64/base64/lib/codec_choose.c index 6a07d6a74cc24f..abef3f2ae9f403 100644 --- a/deps/base64/base64/lib/codec_choose.c +++ b/deps/base64/base64/lib/codec_choose.c @@ -2,6 +2,7 @@ #include #include #include +#include #include "../include/libbase64.h" #include "codecs.h" @@ -10,7 +11,7 @@ #if (__x86_64__ || __i386__ || _M_X86 || _M_X64) #define BASE64_X86 - #if (HAVE_SSSE3 || HAVE_SSE41 || HAVE_SSE42 || HAVE_AVX || HAVE_AVX2) + #if (HAVE_SSSE3 || HAVE_SSE41 || HAVE_SSE42 || HAVE_AVX || HAVE_AVX2 || HAVE_AVX512) #define BASE64_X86_SIMD #endif #endif @@ -31,7 +32,7 @@ __cpuid_count(__level, 0, __eax, __ebx, __ecx, __edx) #else #include - #if HAVE_AVX2 || HAVE_AVX + #if HAVE_AVX512 || HAVE_AVX2 || HAVE_AVX #if ((__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ >= 2) || (__clang_major__ >= 3)) static inline uint64_t _xgetbv (uint32_t index) { @@ -45,6 +46,12 @@ #endif #endif +#ifndef bit_AVX512vl +#define bit_AVX512vl (1 << 31) +#endif +#ifndef bit_AVX512vbmi +#define bit_AVX512vbmi (1 << 1) +#endif #ifndef bit_AVX2 #define bit_AVX2 (1 << 5) #endif @@ -75,6 +82,7 @@ BASE64_ENC_FUNCTION(arch); \ BASE64_DEC_FUNCTION(arch); \ +BASE64_CODEC_FUNCS(avx512) BASE64_CODEC_FUNCS(avx2) BASE64_CODEC_FUNCS(neon32) BASE64_CODEC_FUNCS(neon64) @@ -91,9 +99,10 @@ codec_choose_forced (struct codec *codec, int flags) // always allow it, even if the codec is a no-op. // For testing purposes. - if (!(flags & 0xFF)) { + if (!(flags & 0xFFFF)) { return false; } + if (flags & BASE64_FORCE_AVX2) { codec->enc = base64_stream_encode_avx2; codec->dec = base64_stream_decode_avx2; @@ -134,6 +143,11 @@ codec_choose_forced (struct codec *codec, int flags) codec->dec = base64_stream_decode_avx; return true; } + if (flags & BASE64_FORCE_AVX512) { + codec->enc = base64_stream_encode_avx512; + codec->dec = base64_stream_decode_avx512; + return true; + } return false; } @@ -178,8 +192,8 @@ codec_choose_x86 (struct codec *codec) max_level = __get_cpuid_max(0, NULL); #endif - #if HAVE_AVX2 || HAVE_AVX - // Check for AVX/AVX2 support: + #if HAVE_AVX512 || HAVE_AVX2 || HAVE_AVX + // Check for AVX/AVX2/AVX512 support: // Checking for AVX requires 3 things: // 1) CPUID indicates that the OS uses XSAVE and XRSTORE instructions // (allowing saving YMM registers on context switch) @@ -194,7 +208,17 @@ codec_choose_x86 (struct codec *codec) if (ecx & bit_XSAVE_XRSTORE) { uint64_t xcr_mask; xcr_mask = _xgetbv(_XCR_XFEATURE_ENABLED_MASK); - if (xcr_mask & _XCR_XMM_AND_YMM_STATE_ENABLED_BY_OS) { + if ((xcr_mask & _XCR_XMM_AND_YMM_STATE_ENABLED_BY_OS) == _XCR_XMM_AND_YMM_STATE_ENABLED_BY_OS) { // check multiple bits at once + #if HAVE_AVX512 + if (max_level >= 7) { + __cpuid_count(7, 0, eax, ebx, ecx, edx); + if ((ebx & bit_AVX512vl) && (ecx & bit_AVX512vbmi)) { + codec->enc = base64_stream_encode_avx512; + codec->dec = base64_stream_decode_avx512; + return true; + } + } + #endif #if HAVE_AVX2 if (max_level >= 7) { __cpuid_count(7, 0, eax, ebx, ecx, edx); diff --git a/deps/base64/base64/lib/lib.c b/deps/base64/base64/lib/lib.c index 4703512b87ab46..053931a9918b2b 100644 --- a/deps/base64/base64/lib/lib.c +++ b/deps/base64/base64/lib/lib.c @@ -68,7 +68,7 @@ void base64_stream_decode_init (struct base64_state *state, int flags) { // If any of the codec flags are set, redo choice: - if (codec.dec == NULL || flags & 0xFF) { + if (codec.dec == NULL || flags & 0xFFFF) { codec_choose(&codec, flags); } state->eof = 0; diff --git a/deps/base64/base64/test/Makefile b/deps/base64/base64/test/Makefile index d1045824195edb..c896627e0bd8d6 100644 --- a/deps/base64/base64/test/Makefile +++ b/deps/base64/base64/test/Makefile @@ -11,12 +11,15 @@ else BENCH_LDFLAGS=-lrt endif -.PHONY: clean test +.PHONY: clean test valgrind test: clean test_base64 benchmark ./test_base64 ./benchmark +valgrind: clean test_base64 + valgrind --error-exitcode=2 ./test_base64 + test_base64: test_base64.c codec_supported.o ../lib/libbase64.o $(CC) $(CFLAGS) -o $@ $^ diff --git a/deps/base64/base64/test/ci/analysis.sh b/deps/base64/base64/test/ci/analysis.sh new file mode 100755 index 00000000000000..f7da1857fe05e3 --- /dev/null +++ b/deps/base64/base64/test/ci/analysis.sh @@ -0,0 +1,37 @@ +#!/bin/bash +set -ve + +MACHINE=$(uname -m) +export CC=gcc + +uname -a +clang --version # make analyse +${CC} --version # make -C test valgrind + +for USE_ASSEMBLY in 0 1; do + if [ "${MACHINE}" == "x86_64" ]; then + export SSSE3_CFLAGS="-mssse3 -DBASE64_SSSE3_USE_ASM=${USE_ASSEMBLY}" + export SSE41_CFLAGS="-msse4.1 -DBASE64_SSE41_USE_ASM=${USE_ASSEMBLY}" + export SSE42_CFLAGS="-msse4.2 -DBASE64_SSE42_USE_ASM=${USE_ASSEMBLY}" + export AVX_CFLAGS="-mavx -DBASE64_AVX_USE_ASM=${USE_ASSEMBLY}" + export AVX2_CFLAGS="-mavx2 -DBASE64_AVX2_USE_ASM=${USE_ASSEMBLY}" + # Temporarily disable AVX512; it is not available in CI yet. + # export AVX512_CFLAGS="-mavx512vl -mavx512vbmi" + elif [ "${MACHINE}" == "aarch64" ]; then + export NEON64_CFLAGS="-march=armv8-a" + elif [ "${MACHINE}" == "armv7l" ]; then + export NEON32_CFLAGS="-march=armv7-a -mfloat-abi=hard -mfpu=neon" + fi + + if [ ${USE_ASSEMBLY} -eq 0 ]; then + echo "::group::analyze" + make analyze + echo "::endgroup::" + fi + + echo "::group::valgrind (USE_ASSEMBLY=${USE_ASSEMBLY})" + make clean + make + make -C test valgrind + echo "::endgroup::" +done diff --git a/deps/base64/base64/test/ci/test.sh b/deps/base64/base64/test/ci/test.sh index 066a49f400b95c..fb188418cca0a9 100755 --- a/deps/base64/base64/test/ci/test.sh +++ b/deps/base64/base64/test/ci/test.sh @@ -7,9 +7,11 @@ if [ "${MACHINE}" == "x86_64" ]; then export SSE41_CFLAGS=-msse4.1 export SSE42_CFLAGS=-msse4.2 export AVX_CFLAGS=-mavx - # no AVX2 on GHA macOS + # no AVX2 or AVX512 on GHA macOS if [ "$(uname -s)" != "Darwin" ]; then export AVX2_CFLAGS=-mavx2 + # Temporarily disable AVX512; it is not available in CI yet. + # export AVX512_CFLAGS="-mavx512vl -mavx512vbmi" fi elif [ "${MACHINE}" == "aarch64" ]; then export NEON64_CFLAGS="-march=armv8-a" diff --git a/deps/base64/base64/test/codec_supported.c b/deps/base64/base64/test/codec_supported.c index a027b9943bf8ed..f68c766875abcd 100644 --- a/deps/base64/base64/test/codec_supported.c +++ b/deps/base64/base64/test/codec_supported.c @@ -11,6 +11,7 @@ static char *_codecs[] = , "SSE41" , "SSE42" , "AVX" +, "AVX512" , NULL } ; diff --git a/deps/base64/base64/test/test_base64.c b/deps/base64/base64/test/test_base64.c index bec52d146c824a..94aad2d489b9f7 100644 --- a/deps/base64/base64/test/test_base64.c +++ b/deps/base64/base64/test/test_base64.c @@ -1,6 +1,7 @@ #include #include #include +#include #include "../include/libbase64.h" #include "codec_supported.h" #include "moby_dick.h" @@ -92,7 +93,7 @@ assert_roundtrip (int flags, const char *src) } static int -test_char_table (int flags) +test_char_table (int flags, bool use_malloc) { bool fail = false; char chr[256]; @@ -107,8 +108,24 @@ test_char_table (int flags) for (int i = 0; i < 256; i++) { size_t chrlen = 256 - i; + char* src = &chr[i]; + if (use_malloc) { + src = malloc(chrlen); /* malloc/copy this so valgrind can find out-of-bound access */ + if (src == NULL) { + printf( + "FAIL: encoding @ %d: allocation of %lu bytes failed\n", + i, (unsigned long)chrlen + ); + fail = true; + continue; + } + memcpy(src, &chr[i], chrlen); + } - base64_encode(&chr[i], chrlen, enc, &enclen, BASE64_FORCE_PLAIN); + base64_encode(src, chrlen, enc, &enclen, flags); + if (use_malloc) { + free(src); + } if (!base64_decode(enc, enclen, dec, &declen, flags)) { printf("FAIL: decoding @ %d: decoding error\n", i); @@ -198,6 +215,11 @@ test_streaming (int flags) while (base64_stream_decode(&state, &ref[inpos], (inpos + bs > reflen) ? reflen - inpos : bs, &enc[enclen], &partlen)) { enclen += partlen; inpos += bs; + + // Has the entire buffer been consumed? + if (inpos >= 400) { + break; + } } if (enclen != 256) { printf("FAIL: stream decoding gave incorrect size: " @@ -336,7 +358,8 @@ test_one_codec (const char *codec, int flags) fail |= assert_roundtrip(flags, vec[i].out); } - fail |= test_char_table(flags); + fail |= test_char_table(flags, false); /* test with unaligned input buffer */ + fail |= test_char_table(flags, true); /* test for out-of-bound input read */ fail |= test_streaming(flags); fail |= test_invalid_dec_input(flags); diff --git a/deps/base64/unofficial.gni b/deps/base64/unofficial.gni new file mode 100644 index 00000000000000..8138d88798e1df --- /dev/null +++ b/deps/base64/unofficial.gni @@ -0,0 +1,141 @@ +# Copyright (c) 2013-2022 GitHub Inc. +# Copyright 2022 the V8 project authors. All rights reserved. +# Copyright 2023 Microsoft Inc. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("base64_gn_build") { + config("base64_external_config") { + include_dirs = [ "base64/include" ] + if (!is_component_build) { + defines = [ "BASE64_STATIC_DEFINE" ] + } + } + + config("base64_internal_config") { + include_dirs = [ "base64/lib" ] + if (is_component_build) { + defines = [ "BASE64_EXPORTS" ] + } else { + defines = [] + } + if (target_cpu == "x86" || target_cpu == "x64") { + defines += [ + "HAVE_SSSE3=1", + "HAVE_SSE41=1", + "HAVE_SSE42=1", + "HAVE_AVX=1", + "HAVE_AVX2=1", + ] + } + if (target_cpu == "arm") { + defines += [ "HAVE_NEON32=1" ] + } + if (target_cpu == "arm64") { + defines += [ "HAVE_NEON64=1" ] + } + if (is_clang || !is_win) { + cflags_c = [ + "-Wno-implicit-fallthrough", + "-Wno-shadow", + "-Wno-unused-but-set-variable", + ] + } + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("base64.gyp") ], + "scope", + [ "base64.gyp" ]) + + component(target_name) { + forward_variables_from(invoker, "*") + configs += [ ":base64_internal_config" ] + public_configs = [ ":base64_external_config" ] + sources = gypi_values.base64_sources_common + deps = [ + ":base64_ssse3", + ":base64_sse41", + ":base64_sse42", + ":base64_avx", + ":base64_avx2", + ":base64_neon32", + ":base64_neon64", + ] + } + + source_set("base64_ssse3") { + configs += [ ":base64_internal_config" ] + sources = [ "base64/lib/arch/ssse3/codec.c" ] + if (target_cpu == "x86" || target_cpu == "x64") { + if (is_clang || !is_win) { + cflags_c = [ "-mssse3" ] + } + } + } + + source_set("base64_sse41") { + configs += [ ":base64_internal_config" ] + sources = [ "base64/lib/arch/sse41/codec.c" ] + if (target_cpu == "x86" || target_cpu == "x64") { + if (is_clang || !is_win) { + cflags_c = [ "-msse4.1" ] + } + } + } + + source_set("base64_sse42") { + configs += [ ":base64_internal_config" ] + sources = [ "base64/lib/arch/sse42/codec.c" ] + if (target_cpu == "x86" || target_cpu == "x64") { + if (is_clang || !is_win) { + cflags_c = [ "-msse4.2" ] + } + } + } + + source_set("base64_avx") { + configs += [ ":base64_internal_config" ] + sources = [ "base64/lib/arch/avx/codec.c" ] + if (target_cpu == "x86" || target_cpu == "x64") { + if (is_clang || !is_win) { + cflags_c = [ "-mavx" ] + } else if (is_win) { + cflags_c = [ "/arch:AVX" ] + } + } + } + source_set("base64_avx2") { + configs += [ ":base64_internal_config" ] + sources = [ "base64/lib/arch/avx2/codec.c" ] + if (target_cpu == "x86" || target_cpu == "x64") { + if (is_clang || !is_win) { + cflags_c = [ "-mavx2" ] + } else if (is_win) { + cflags_c = [ "/arch:AVX2" ] + } + } + } + + source_set("base64_neon32") { + configs += [ ":base64_internal_config" ] + sources = [ "base64/lib/arch/neon32/codec.c" ] + if (target_cpu == "arm") { + if (is_clang || !is_win) { + cflags_c = [ "-mfpu=neon" ] + } + } + } + + source_set("base64_neon64") { + configs += [ ":base64_internal_config" ] + sources = [ "base64/lib/arch/neon64/codec.c" ] + # NEON is required in arm64, so no -mfpu flag is needed + } +} diff --git a/deps/brotli/BUILD.gn b/deps/brotli/BUILD.gn new file mode 100644 index 00000000000000..8bdf8ce74d9789 --- /dev/null +++ b/deps/brotli/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +brotli_gn_build("brotli") { +} diff --git a/deps/brotli/unofficial.gni b/deps/brotli/unofficial.gni new file mode 100644 index 00000000000000..ce1df0d14cc01b --- /dev/null +++ b/deps/brotli/unofficial.gni @@ -0,0 +1,45 @@ +# Copyright 2014 The Chromium Authors. All rights reserved. +# Copyright 2019 the V8 project authors. All rights reserved. +# Copyright 2023 Microsoft Inc. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("brotli_gn_build") { + config("brotli_config") { + include_dirs = [ "c/include" ] + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("brotli.gyp") ], + "scope", + [ "brotli.gyp" ]) + + source_set(target_name) { + forward_variables_from(invoker, "*") + public_configs = [ ":brotli_config" ] + sources = gypi_values.brotli_sources + if (is_linux) { + defines = [ "OS_LINUX" ] + } else if (is_mac) { + defines = [ "OS_MACOSX" ] + } else if (target_os == "freebsd") { + defines = [ "OS_FREEBSD" ] + } + if (!is_win) { + libs = [ "m" ] + } + if (is_clang || !is_win) { + cflags_c = [ + "-Wno-implicit-fallthrough", + "-Wno-unreachable-code", + "-Wno-unreachable-code-return", + ] + } + } +} diff --git a/deps/cares/BUILD.gn b/deps/cares/BUILD.gn new file mode 100644 index 00000000000000..ac19ac73ed1e24 --- /dev/null +++ b/deps/cares/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +cares_gn_build("cares") { +} diff --git a/deps/cares/unofficial.gni b/deps/cares/unofficial.gni new file mode 100644 index 00000000000000..07e2ed65b36deb --- /dev/null +++ b/deps/cares/unofficial.gni @@ -0,0 +1,81 @@ +# Copyright (c) 2013-2019 GitHub Inc. +# Copyright 2019 the V8 project authors. All rights reserved. +# Copyright 2023 Microsoft Inc. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("cares_gn_build") { + config("cares_config") { + include_dirs = [ "include" ] + if (!is_component_build) { + defines = [ "CARES_STATICLIB" ] + } + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("cares.gyp") ], + "scope", + [ "cares.gyp" ]) + + component(target_name) { + forward_variables_from(invoker, "*") + public_configs = [ ":cares_config" ] + if (is_component_build) { + defines = [ "CARES_BUILDING_LIBRARY" ] + } else { + defines = [] + } + if (is_win) { + defines += [ "CARES_PULL_WS2TCPIP_H=1" ] + } + if (is_posix) { + defines += [ + "_DARWIN_USE_64_BIT_INODE=1", + "_LARGEFILE_SOURCE", + "_FILE_OFFSET_BITS=64", + "_GNU_SOURCE", + "HAVE_CONFIG_H", + ] + } + + include_dirs = [ "src/lib" ] + if (is_win) { + include_dirs += [ "config/win32" ] + } else if (is_linux) { + include_dirs += [ "config/linux" ] + } else if (is_mac) { + include_dirs += [ "config/darwin" ] + } + + if (is_win) { + libs = [ + "ws2_32.lib", + "iphlpapi.lib", + ] + } + + sources = gypi_values.cares_sources_common + if (is_win) { + sources += gypi_values.cares_sources_win + } + if (is_linux) { + sources += [ "config/linux/ares_config.h" ] + } + if (is_mac) { + sources += [ "config/darwin/ares_config.h" ] + } + + if (is_clang || !is_win) { + cflags_c = [ + "-Wno-implicit-fallthrough", + "-Wno-unreachable-code", + ] + } + } +} diff --git a/deps/corepack/CHANGELOG.md b/deps/corepack/CHANGELOG.md index ea49ba71e3eab0..191a197c60cc72 100644 --- a/deps/corepack/CHANGELOG.md +++ b/deps/corepack/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.23.0](https://github.com/nodejs/corepack/compare/v0.22.0...v0.23.0) (2023-11-05) + + +### Features + +* update package manager versions ([#325](https://github.com/nodejs/corepack/issues/325)) ([450cd33](https://github.com/nodejs/corepack/commit/450cd332d00d3428f49ed09a4235bd12139931c9)) + ## [0.22.0](https://github.com/nodejs/corepack/compare/v0.21.0...v0.22.0) (2023-10-21) diff --git a/deps/corepack/dist/lib/corepack.cjs b/deps/corepack/dist/lib/corepack.cjs index 716b997cf06c62..deb3260976bc54 100644 --- a/deps/corepack/dist/lib/corepack.cjs +++ b/deps/corepack/dist/lib/corepack.cjs @@ -41948,7 +41948,7 @@ function String2(descriptor, ...args) { } // package.json -var version = "0.22.0"; +var version = "0.23.0"; // sources/Engine.ts var import_fs3 = __toESM(require("fs")); @@ -41960,7 +41960,7 @@ var import_semver3 = __toESM(require_semver2()); var config_default = { definitions: { npm: { - default: "10.2.1+sha1.41fd6626a08d4167b8639edd272ecf9735e7ceaf", + default: "10.2.3+sha1.f30ed73c400685ab52bf3f21cd3fcab1c5b007ce", fetchLatestFrom: { type: "npm", package: "npm" @@ -41997,7 +41997,7 @@ var config_default = { } }, pnpm: { - default: "8.9.2+sha1.5f2fa48d614263457cf5d7fb7be8b878da318d87", + default: "8.10.2+sha1.e0b68270e89c817ff88b7be62466a2128c53af02", fetchLatestFrom: { type: "npm", package: "pnpm" @@ -42061,7 +42061,7 @@ var config_default = { package: "yarn" }, transparent: { - default: "3.6.4+sha224.4b0b0a9cf41b177779b701850108387d3189ba7c93bd1a535fafbf72", + default: "4.0.1+sha224.ca5d6f5a8aecd0801adc32f775675b01961bdc2383867d36f4732a0a", commands: [ [ "yarn", diff --git a/deps/corepack/package.json b/deps/corepack/package.json index b0450018ff2cfd..09cee488c1f97f 100644 --- a/deps/corepack/package.json +++ b/deps/corepack/package.json @@ -1,6 +1,6 @@ { "name": "corepack", - "version": "0.22.0", + "version": "0.23.0", "homepage": "https://github.com/nodejs/corepack#readme", "bugs": { "url": "https://github.com/nodejs/corepack/issues" diff --git a/deps/googletest/BUILD.gn b/deps/googletest/BUILD.gn new file mode 100644 index 00000000000000..de13f3f653b5d5 --- /dev/null +++ b/deps/googletest/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +googletest_gn_build("googletest") { +} diff --git a/deps/googletest/include/gtest/internal/gtest-death-test-internal.h b/deps/googletest/include/gtest/internal/gtest-death-test-internal.h index 8e9c988b98ce8b..61536d6572d36c 100644 --- a/deps/googletest/include/gtest/internal/gtest-death-test-internal.h +++ b/deps/googletest/include/gtest/internal/gtest-death-test-internal.h @@ -52,9 +52,7 @@ GTEST_DECLARE_string_(internal_run_death_test); namespace testing { namespace internal { -// Names of the flags (needed for parsing Google Test flags). -const char kDeathTestStyleFlag[] = "death_test_style"; -const char kDeathTestUseFork[] = "death_test_use_fork"; +// Name of the flag (needed for parsing Google Test flag). const char kInternalRunDeathTestFlag[] = "internal_run_death_test"; #ifdef GTEST_HAS_DEATH_TEST diff --git a/deps/googletest/include/gtest/internal/gtest-param-util.h b/deps/googletest/include/gtest/internal/gtest-param-util.h index dd39e98a16c899..b04f7020636083 100644 --- a/deps/googletest/include/gtest/internal/gtest-param-util.h +++ b/deps/googletest/include/gtest/internal/gtest-param-util.h @@ -584,8 +584,8 @@ class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase { GTEST_CHECK_(IsValidParamName(param_name)) << "Parameterized test name '" << param_name - << "' is invalid (contains spaces, dashes, underscores, or " - "non-alphanumeric characters), in " + << "' is invalid (contains spaces, dashes, or any " + "non-alphanumeric characters other than underscores), in " << file << " line " << line << "" << std::endl; GTEST_CHECK_(test_param_names.count(param_name) == 0) diff --git a/deps/googletest/unofficial.gni b/deps/googletest/unofficial.gni new file mode 100644 index 00000000000000..e262d1bc1829a1 --- /dev/null +++ b/deps/googletest/unofficial.gni @@ -0,0 +1,41 @@ +# Copyright 2021 the V8 project authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("googletest_gn_build") { + config("googletest_config") { + include_dirs = [ "include" ] + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("googletest.gyp") ], + "scope", + [ "googletest.gyp" ]) + + source_set(target_name) { + forward_variables_from(invoker, "*") + testonly = true + include_dirs = [ + "include", + ".", + ] + defines = [ + "GTEST_HAS_POSIX_RE=0", + "GTEST_LANG_CXX11=1", + ] + sources = gypi_values.googletest_sources + } + + source_set("gtest_main") { + testonly = true + deps = [ ":googletest" ] + sources = [ "src/gtest_main.cc" ] + public_configs = [ ":googletest_config" ] + } +} diff --git a/deps/histogram/BUILD.gn b/deps/histogram/BUILD.gn new file mode 100644 index 00000000000000..e2f3ee37137a6b --- /dev/null +++ b/deps/histogram/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +histogram_gn_build("histogram") { +} diff --git a/deps/histogram/unofficial.gni b/deps/histogram/unofficial.gni new file mode 100644 index 00000000000000..eedb62049097d7 --- /dev/null +++ b/deps/histogram/unofficial.gni @@ -0,0 +1,38 @@ +# Copyright (c) 2013-2019 GitHub Inc. +# Copyright 2019 the V8 project authors. All rights reserved. +# Copyright 2023 Microsoft Inc. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("histogram_gn_build") { + config("histogram_config") { + include_dirs = [ "include" ] + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("histogram.gyp") ], + "scope", + [ "histogram.gyp" ]) + + source_set(target_name) { + forward_variables_from(invoker, "*") + public_configs = [ ":histogram_config" ] + sources = gypi_values.histogram_sources + if (is_clang || !is_win) { + cflags_c = [ + "-Wno-atomic-alignment", + "-Wno-incompatible-pointer-types", + "-Wno-unused-function", + ] + } + if (is_linux) { + libs = [ "atomic" ] + } + } +} diff --git a/deps/llhttp/BUILD.gn b/deps/llhttp/BUILD.gn new file mode 100644 index 00000000000000..64a2a4799d5530 --- /dev/null +++ b/deps/llhttp/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +llhttp_gn_build("llhttp") { +} diff --git a/deps/llhttp/CMakeLists.txt b/deps/llhttp/CMakeLists.txt index bdef2880dbb7f7..6023a7363dc4e8 100644 --- a/deps/llhttp/CMakeLists.txt +++ b/deps/llhttp/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.5.1) cmake_policy(SET CMP0069 NEW) -project(llhttp VERSION 9.1.2) +project(llhttp VERSION 9.1.3) include(GNUInstallDirs) set(CMAKE_C_STANDARD 99) diff --git a/deps/llhttp/include/llhttp.h b/deps/llhttp/include/llhttp.h index fcd3349c91eead..46a7213c123b82 100644 --- a/deps/llhttp/include/llhttp.h +++ b/deps/llhttp/include/llhttp.h @@ -4,7 +4,7 @@ #define LLHTTP_VERSION_MAJOR 9 #define LLHTTP_VERSION_MINOR 1 -#define LLHTTP_VERSION_PATCH 2 +#define LLHTTP_VERSION_PATCH 3 #ifndef INCLUDE_LLHTTP_ITSELF_H_ #define INCLUDE_LLHTTP_ITSELF_H_ diff --git a/deps/llhttp/src/api.c b/deps/llhttp/src/api.c index 8c4d008acbae9c..8c2ce3dc5c455b 100644 --- a/deps/llhttp/src/api.c +++ b/deps/llhttp/src/api.c @@ -126,7 +126,7 @@ void llhttp_reset(llhttp_t* parser) { llhttp_type_t type = parser->type; const llhttp_settings_t* settings = parser->settings; void* data = parser->data; - uint8_t lenient_flags = parser->lenient_flags; + uint16_t lenient_flags = parser->lenient_flags; llhttp__internal_init(parser); diff --git a/deps/llhttp/src/http.c b/deps/llhttp/src/http.c index e44f36e316e872..1ab91a55796e01 100644 --- a/deps/llhttp/src/http.c +++ b/deps/llhttp/src/http.c @@ -43,15 +43,17 @@ int llhttp__after_headers_complete(llhttp_t* parser, const char* p, (parser->upgrade && (parser->method == HTTP_CONNECT || (parser->flags & F_SKIPBODY) || !hasBody)) || /* See RFC 2616 section 4.4 - 1xx e.g. Continue */ - ( - parser->type == HTTP_RESPONSE && - (parser->status_code == 100 || parser->status_code == 101) - ) + (parser->type == HTTP_RESPONSE && parser->status_code == 101) ) { /* Exit, the rest of the message is in a different protocol. */ return 1; } + if (parser->type == HTTP_RESPONSE && parser->status_code == 100) { + /* No body, restart as the message is complete */ + return 0; + } + /* See RFC 2616 section 4.4 */ if ( parser->flags & F_SKIPBODY || /* response to a HEAD request */ diff --git a/deps/llhttp/src/llhttp.c b/deps/llhttp/src/llhttp.c index dfc1c414f8c3f0..af84c42425ed0a 100644 --- a/deps/llhttp/src/llhttp.c +++ b/deps/llhttp/src/llhttp.c @@ -345,12 +345,14 @@ enum llparse_state_e { s_n_llhttp__internal__n_chunk_extension_quoted_value_done, s_n_llhttp__internal__n_invoke_llhttp__on_chunk_extension_value_complete_2, s_n_llhttp__internal__n_error_30, + s_n_llhttp__internal__n_chunk_extension_quoted_value_quoted_pair, + s_n_llhttp__internal__n_error_31, s_n_llhttp__internal__n_chunk_extension_quoted_value, s_n_llhttp__internal__n_invoke_llhttp__on_chunk_extension_value_complete_3, - s_n_llhttp__internal__n_error_32, + s_n_llhttp__internal__n_error_33, s_n_llhttp__internal__n_chunk_extension_value, s_n_llhttp__internal__n_span_start_llhttp__on_chunk_extension_value, - s_n_llhttp__internal__n_error_33, + s_n_llhttp__internal__n_error_34, s_n_llhttp__internal__n_chunk_extension_name, s_n_llhttp__internal__n_span_start_llhttp__on_chunk_extension_name, s_n_llhttp__internal__n_chunk_extensions, @@ -374,7 +376,7 @@ enum llparse_state_e { s_n_llhttp__internal__n_header_value_almost_done, s_n_llhttp__internal__n_invoke_test_lenient_flags_17, s_n_llhttp__internal__n_header_value_lenient, - s_n_llhttp__internal__n_error_51, + s_n_llhttp__internal__n_error_52, s_n_llhttp__internal__n_header_value_otherwise, s_n_llhttp__internal__n_header_value_connection_token, s_n_llhttp__internal__n_header_value_connection_ws, @@ -382,12 +384,12 @@ enum llparse_state_e { s_n_llhttp__internal__n_header_value_connection_2, s_n_llhttp__internal__n_header_value_connection_3, s_n_llhttp__internal__n_header_value_connection, - s_n_llhttp__internal__n_error_53, s_n_llhttp__internal__n_error_54, + s_n_llhttp__internal__n_error_55, s_n_llhttp__internal__n_header_value_content_length_ws, s_n_llhttp__internal__n_header_value_content_length, + s_n_llhttp__internal__n_error_57, s_n_llhttp__internal__n_error_56, - s_n_llhttp__internal__n_error_55, s_n_llhttp__internal__n_header_value_te_token_ows, s_n_llhttp__internal__n_header_value, s_n_llhttp__internal__n_header_value_te_token, @@ -420,12 +422,12 @@ enum llparse_state_e { s_n_llhttp__internal__n_req_http_complete, s_n_llhttp__internal__n_invoke_load_method_1, s_n_llhttp__internal__n_invoke_llhttp__on_version_complete, - s_n_llhttp__internal__n_error_63, - s_n_llhttp__internal__n_error_70, - s_n_llhttp__internal__n_req_http_minor, + s_n_llhttp__internal__n_error_64, s_n_llhttp__internal__n_error_71, - s_n_llhttp__internal__n_req_http_dot, + s_n_llhttp__internal__n_req_http_minor, s_n_llhttp__internal__n_error_72, + s_n_llhttp__internal__n_req_http_dot, + s_n_llhttp__internal__n_error_73, s_n_llhttp__internal__n_req_http_major, s_n_llhttp__internal__n_span_start_llhttp__on_version, s_n_llhttp__internal__n_req_http_start_1, @@ -537,12 +539,12 @@ enum llparse_state_e { s_n_llhttp__internal__n_res_status_code_digit_1, s_n_llhttp__internal__n_res_after_version, s_n_llhttp__internal__n_invoke_llhttp__on_version_complete_1, - s_n_llhttp__internal__n_error_86, - s_n_llhttp__internal__n_error_100, - s_n_llhttp__internal__n_res_http_minor, + s_n_llhttp__internal__n_error_87, s_n_llhttp__internal__n_error_101, - s_n_llhttp__internal__n_res_http_dot, + s_n_llhttp__internal__n_res_http_minor, s_n_llhttp__internal__n_error_102, + s_n_llhttp__internal__n_res_http_dot, + s_n_llhttp__internal__n_error_103, s_n_llhttp__internal__n_res_http_major, s_n_llhttp__internal__n_span_start_llhttp__on_version_1, s_n_llhttp__internal__n_start_res, @@ -1229,7 +1231,7 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_13; default: - goto s_n_llhttp__internal__n_error_37; + goto s_n_llhttp__internal__n_error_38; } /* UNREACHABLE */; abort(); @@ -1455,6 +1457,51 @@ static llparse_state_t llhttp__internal__run( } case s_n_llhttp__internal__n_error_30: s_n_llhttp__internal__n_error_30: { + state->error = 0x2; + state->reason = "Invalid quoted-pair in chunk extensions quoted value"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + case s_n_llhttp__internal__n_chunk_extension_quoted_value_quoted_pair: + s_n_llhttp__internal__n_chunk_extension_quoted_value_quoted_pair: { + static uint8_t lookup_table[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + }; + if (p == endp) { + return s_n_llhttp__internal__n_chunk_extension_quoted_value_quoted_pair; + } + switch (lookup_table[(uint8_t) *p]) { + case 1: { + p++; + goto s_n_llhttp__internal__n_chunk_extension_quoted_value; + } + default: { + goto s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_3; + } + } + /* UNREACHABLE */; + abort(); + } + case s_n_llhttp__internal__n_error_31: + s_n_llhttp__internal__n_error_31: { state->error = 0x2; state->reason = "Invalid character in chunk extensions quoted value"; state->error_pos = (const char*) p; @@ -1471,7 +1518,7 @@ static llparse_state_t llhttp__internal__run( 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -1495,8 +1542,12 @@ static llparse_state_t llhttp__internal__run( p++; goto s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_2; } + case 3: { + p++; + goto s_n_llhttp__internal__n_chunk_extension_quoted_value_quoted_pair; + } default: { - goto s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_3; + goto s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_4; } } /* UNREACHABLE */; @@ -1506,17 +1557,17 @@ static llparse_state_t llhttp__internal__run( s_n_llhttp__internal__n_invoke_llhttp__on_chunk_extension_value_complete_3: { switch (llhttp__on_chunk_extension_value_complete(state, p, endp)) { case 0: - goto s_n_llhttp__internal__n_chunk_size_otherwise; + goto s_n_llhttp__internal__n_chunk_extensions; case 21: goto s_n_llhttp__internal__n_pause_11; default: - goto s_n_llhttp__internal__n_error_31; + goto s_n_llhttp__internal__n_error_32; } /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_32: - s_n_llhttp__internal__n_error_32: { + case s_n_llhttp__internal__n_error_33: + s_n_llhttp__internal__n_error_33: { state->error = 0x2; state->reason = "Invalid character in chunk extensions value"; state->error_pos = (const char*) p; @@ -1564,10 +1615,10 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_chunk_extension_quoted_value; } case 5: { - goto s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_4; + goto s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_5; } default: { - goto s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_5; + goto s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_6; } } /* UNREACHABLE */; @@ -1584,8 +1635,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_33: - s_n_llhttp__internal__n_error_33: { + case s_n_llhttp__internal__n_error_34: + s_n_llhttp__internal__n_error_34: { state->error = 0x2; state->reason = "Invalid character in chunk extensions name"; state->error_pos = (const char*) p; @@ -1700,7 +1751,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_chunk_extensions; } default: { - goto s_n_llhttp__internal__n_error_34; + goto s_n_llhttp__internal__n_error_35; } } /* UNREACHABLE */; @@ -1946,7 +1997,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_mul_add_content_length; } default: { - goto s_n_llhttp__internal__n_error_36; + goto s_n_llhttp__internal__n_error_37; } } /* UNREACHABLE */; @@ -2023,7 +2074,7 @@ static llparse_state_t llhttp__internal__run( case 4: goto s_n_llhttp__internal__n_invoke_update_finish_3; case 5: - goto s_n_llhttp__internal__n_error_38; + goto s_n_llhttp__internal__n_error_39; default: goto s_n_llhttp__internal__n_invoke_llhttp__on_message_complete; } @@ -2082,7 +2133,7 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_18; default: - goto s_n_llhttp__internal__n_error_46; + goto s_n_llhttp__internal__n_error_47; } /* UNREACHABLE */; abort(); @@ -2166,7 +2217,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_header_value_lws; } default: { - goto s_n_llhttp__internal__n_error_50; + goto s_n_llhttp__internal__n_error_51; } } /* UNREACHABLE */; @@ -2178,7 +2229,7 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_header_value_almost_done; default: - goto s_n_llhttp__internal__n_error_49; + goto s_n_llhttp__internal__n_error_50; } /* UNREACHABLE */; abort(); @@ -2203,8 +2254,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_51: - s_n_llhttp__internal__n_error_51: { + case s_n_llhttp__internal__n_error_52: + s_n_llhttp__internal__n_error_52: { state->error = 0xa; state->reason = "Invalid header value char"; state->error_pos = (const char*) p; @@ -2403,8 +2454,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_53: - s_n_llhttp__internal__n_error_53: { + case s_n_llhttp__internal__n_error_54: + s_n_llhttp__internal__n_error_54: { state->error = 0xb; state->reason = "Content-Length overflow"; state->error_pos = (const char*) p; @@ -2413,8 +2464,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_54: - s_n_llhttp__internal__n_error_54: { + case s_n_llhttp__internal__n_error_55: + s_n_llhttp__internal__n_error_55: { state->error = 0xb; state->reason = "Invalid character in Content-Length"; state->error_pos = (const char*) p; @@ -2509,8 +2560,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_56: - s_n_llhttp__internal__n_error_56: { + case s_n_llhttp__internal__n_error_57: + s_n_llhttp__internal__n_error_57: { state->error = 0xf; state->reason = "Invalid `Transfer-Encoding` header value"; state->error_pos = (const char*) p; @@ -2519,8 +2570,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_55: - s_n_llhttp__internal__n_error_55: { + case s_n_llhttp__internal__n_error_56: + s_n_llhttp__internal__n_error_56: { state->error = 0xf; state->reason = "Invalid `Transfer-Encoding` header value"; state->error_pos = (const char*) p; @@ -2759,7 +2810,7 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_19; default: - goto s_n_llhttp__internal__n_error_43; + goto s_n_llhttp__internal__n_error_44; } /* UNREACHABLE */; abort(); @@ -2774,7 +2825,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_span_end_llhttp__on_header_field_2; } default: { - goto s_n_llhttp__internal__n_error_59; + goto s_n_llhttp__internal__n_error_60; } } /* UNREACHABLE */; @@ -3172,7 +3223,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_to_http_09; } default: { - goto s_n_llhttp__internal__n_error_60; + goto s_n_llhttp__internal__n_error_61; } } /* UNREACHABLE */; @@ -3197,7 +3248,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_skip_lf_to_http09_1; } default: { - goto s_n_llhttp__internal__n_error_60; + goto s_n_llhttp__internal__n_error_61; } } /* UNREACHABLE */; @@ -3215,13 +3266,13 @@ static llparse_state_t llhttp__internal__run( switch (match_seq.status) { case kMatchComplete: { p++; - goto s_n_llhttp__internal__n_error_68; + goto s_n_llhttp__internal__n_error_69; } case kMatchPause: { return s_n_llhttp__internal__n_req_pri_upgrade; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_69; + goto s_n_llhttp__internal__n_error_70; } } /* UNREACHABLE */; @@ -3259,7 +3310,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_http_complete_crlf; } default: { - goto s_n_llhttp__internal__n_error_67; + goto s_n_llhttp__internal__n_error_68; } } /* UNREACHABLE */; @@ -3284,13 +3335,13 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_21; default: - goto s_n_llhttp__internal__n_error_64; + goto s_n_llhttp__internal__n_error_65; } /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_63: - s_n_llhttp__internal__n_error_63: { + case s_n_llhttp__internal__n_error_64: + s_n_llhttp__internal__n_error_64: { state->error = 0x9; state->reason = "Invalid HTTP version"; state->error_pos = (const char*) p; @@ -3299,8 +3350,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_70: - s_n_llhttp__internal__n_error_70: { + case s_n_llhttp__internal__n_error_71: + s_n_llhttp__internal__n_error_71: { state->error = 0x9; state->reason = "Invalid minor version"; state->error_pos = (const char*) p; @@ -3372,8 +3423,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_71: - s_n_llhttp__internal__n_error_71: { + case s_n_llhttp__internal__n_error_72: + s_n_llhttp__internal__n_error_72: { state->error = 0x9; state->reason = "Expected dot"; state->error_pos = (const char*) p; @@ -3399,8 +3450,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_72: - s_n_llhttp__internal__n_error_72: { + case s_n_llhttp__internal__n_error_73: + s_n_llhttp__internal__n_error_73: { state->error = 0x9; state->reason = "Invalid major version"; state->error_pos = (const char*) p; @@ -3501,7 +3552,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_75; + goto s_n_llhttp__internal__n_error_76; } } /* UNREACHABLE */; @@ -3525,7 +3576,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_75; + goto s_n_llhttp__internal__n_error_76; } } /* UNREACHABLE */; @@ -3549,7 +3600,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_75; + goto s_n_llhttp__internal__n_error_76; } } /* UNREACHABLE */; @@ -3578,7 +3629,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_75; + goto s_n_llhttp__internal__n_error_76; } } /* UNREACHABLE */; @@ -3669,7 +3720,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_fragment; } default: { - goto s_n_llhttp__internal__n_error_76; + goto s_n_llhttp__internal__n_error_77; } } /* UNREACHABLE */; @@ -3730,7 +3781,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_77; + goto s_n_llhttp__internal__n_error_78; } } /* UNREACHABLE */; @@ -3768,7 +3819,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_query; } default: { - goto s_n_llhttp__internal__n_error_78; + goto s_n_llhttp__internal__n_error_79; } } /* UNREACHABLE */; @@ -3893,10 +3944,10 @@ static llparse_state_t llhttp__internal__run( } case 8: { p++; - goto s_n_llhttp__internal__n_error_79; + goto s_n_llhttp__internal__n_error_80; } default: { - goto s_n_llhttp__internal__n_error_80; + goto s_n_llhttp__internal__n_error_81; } } /* UNREACHABLE */; @@ -3955,7 +4006,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_81; + goto s_n_llhttp__internal__n_error_82; } } /* UNREACHABLE */; @@ -3972,7 +4023,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_server; } default: { - goto s_n_llhttp__internal__n_error_82; + goto s_n_llhttp__internal__n_error_83; } } /* UNREACHABLE */; @@ -4009,7 +4060,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_schema_delim_1; } default: { - goto s_n_llhttp__internal__n_error_82; + goto s_n_llhttp__internal__n_error_83; } } /* UNREACHABLE */; @@ -4061,7 +4112,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_schema; } default: { - goto s_n_llhttp__internal__n_error_83; + goto s_n_llhttp__internal__n_error_84; } } /* UNREACHABLE */; @@ -4102,7 +4153,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_schema; } default: { - goto s_n_llhttp__internal__n_error_84; + goto s_n_llhttp__internal__n_error_85; } } /* UNREACHABLE */; @@ -4200,7 +4251,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_85; + goto s_n_llhttp__internal__n_error_86; } } /* UNREACHABLE */; @@ -4214,7 +4265,7 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_26; default: - goto s_n_llhttp__internal__n_error_104; + goto s_n_llhttp__internal__n_error_105; } /* UNREACHABLE */; abort(); @@ -4231,7 +4282,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_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4256,7 +4307,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_3; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4277,7 +4328,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_3; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4302,7 +4353,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_4; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4327,7 +4378,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_6; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4352,7 +4403,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_8; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4370,7 +4421,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_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4391,7 +4442,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_9; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4412,7 +4463,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_7; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4437,7 +4488,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_12; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4462,7 +4513,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_13; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4483,7 +4534,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_13; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4500,7 +4551,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_11; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4525,7 +4576,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_14; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4550,7 +4601,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_17; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4592,7 +4643,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_15; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4617,7 +4668,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_18; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4642,7 +4693,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_20; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4667,7 +4718,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_21; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4688,7 +4739,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_21; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4713,7 +4764,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_23; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4738,7 +4789,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_24; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4763,7 +4814,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_26; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4788,7 +4839,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_28; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4806,7 +4857,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_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4827,7 +4878,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_29; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4848,7 +4899,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_27; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4873,7 +4924,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_30; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4902,7 +4953,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_30; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4927,7 +4978,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_31; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4952,7 +5003,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_32; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -4977,7 +5028,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_35; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5002,7 +5053,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_36; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5023,7 +5074,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_36; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5048,7 +5099,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_37; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5073,7 +5124,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_38; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5098,7 +5149,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_42; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5123,7 +5174,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_43; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5144,7 +5195,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_43; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5161,7 +5212,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_41; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5183,7 +5234,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_40; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5208,7 +5259,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_45; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5230,7 +5281,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_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5263,7 +5314,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_44; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5288,7 +5339,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_48; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5313,7 +5364,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_49; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5338,7 +5389,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_50; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5363,7 +5414,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_51; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5392,7 +5443,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_51; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5409,7 +5460,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_47; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5434,7 +5485,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_54; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5452,7 +5503,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_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5477,7 +5528,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_57; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5498,7 +5549,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_57; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5519,7 +5570,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_55; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5544,7 +5595,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_58; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5569,7 +5620,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_59; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5594,7 +5645,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_59; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5619,7 +5670,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_61; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5644,7 +5695,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_62; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5665,7 +5716,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_62; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5690,7 +5741,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_65; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5715,7 +5766,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_67; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5740,7 +5791,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_68; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5761,7 +5812,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_68; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5786,7 +5837,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_after_start_req_69; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5811,7 +5862,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_69; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5828,7 +5879,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_64; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5905,7 +5956,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_after_start_req_63; } default: { - goto s_n_llhttp__internal__n_error_105; + goto s_n_llhttp__internal__n_error_106; } } /* UNREACHABLE */; @@ -5949,7 +6000,7 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_invoke_llhttp__on_status_complete; default: - goto s_n_llhttp__internal__n_error_91; + goto s_n_llhttp__internal__n_error_92; } /* UNREACHABLE */; abort(); @@ -6004,7 +6055,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_span_start_llhttp__on_status; } default: { - goto s_n_llhttp__internal__n_error_92; + goto s_n_llhttp__internal__n_error_93; } } /* UNREACHABLE */; @@ -6067,7 +6118,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_mul_add_status_code_2; } default: { - goto s_n_llhttp__internal__n_error_94; + goto s_n_llhttp__internal__n_error_95; } } /* UNREACHABLE */; @@ -6130,7 +6181,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_mul_add_status_code_1; } default: { - goto s_n_llhttp__internal__n_error_96; + goto s_n_llhttp__internal__n_error_97; } } /* UNREACHABLE */; @@ -6193,7 +6244,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_mul_add_status_code; } default: { - goto s_n_llhttp__internal__n_error_98; + goto s_n_llhttp__internal__n_error_99; } } /* UNREACHABLE */; @@ -6210,7 +6261,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_99; + goto s_n_llhttp__internal__n_error_100; } } /* UNREACHABLE */; @@ -6224,13 +6275,13 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_25; default: - goto s_n_llhttp__internal__n_error_87; + goto s_n_llhttp__internal__n_error_88; } /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_86: - s_n_llhttp__internal__n_error_86: { + case s_n_llhttp__internal__n_error_87: + s_n_llhttp__internal__n_error_87: { state->error = 0x9; state->reason = "Invalid HTTP version"; state->error_pos = (const char*) p; @@ -6239,8 +6290,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_100: - s_n_llhttp__internal__n_error_100: { + case s_n_llhttp__internal__n_error_101: + s_n_llhttp__internal__n_error_101: { state->error = 0x9; state->reason = "Invalid minor version"; state->error_pos = (const char*) p; @@ -6312,8 +6363,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_101: - s_n_llhttp__internal__n_error_101: { + case s_n_llhttp__internal__n_error_102: + s_n_llhttp__internal__n_error_102: { state->error = 0x9; state->reason = "Expected dot"; state->error_pos = (const char*) p; @@ -6339,8 +6390,8 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - case s_n_llhttp__internal__n_error_102: - s_n_llhttp__internal__n_error_102: { + case s_n_llhttp__internal__n_error_103: + s_n_llhttp__internal__n_error_103: { state->error = 0x9; state->reason = "Invalid major version"; state->error_pos = (const char*) p; @@ -6441,7 +6492,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_106; + goto s_n_llhttp__internal__n_error_107; } } /* UNREACHABLE */; @@ -6479,7 +6530,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_103; + goto s_n_llhttp__internal__n_error_104; } } /* UNREACHABLE */; @@ -6512,7 +6563,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_103; + goto s_n_llhttp__internal__n_error_104; } } /* UNREACHABLE */; @@ -6533,7 +6584,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_103; + goto s_n_llhttp__internal__n_error_104; } } /* UNREACHABLE */; @@ -6550,7 +6601,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_103; + goto s_n_llhttp__internal__n_error_104; } } /* UNREACHABLE */; @@ -6709,7 +6760,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_37: { + s_n_llhttp__internal__n_error_38: { state->error = 0x12; state->reason = "`on_message_complete` callback error"; state->error_pos = (const char*) p; @@ -6727,7 +6778,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_39: { + s_n_llhttp__internal__n_error_40: { state->error = 0x14; state->reason = "`on_chunk_complete` callback error"; state->error_pos = (const char*) p; @@ -6743,7 +6794,7 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_15; default: - goto s_n_llhttp__internal__n_error_39; + goto s_n_llhttp__internal__n_error_40; } /* UNREACHABLE */; abort(); @@ -6778,7 +6829,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_35: { + s_n_llhttp__internal__n_error_36: { state->error = 0xc; state->reason = "Chunk size overflow"; state->error_pos = (const char*) p; @@ -7262,16 +7313,34 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } + s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_4: { + const unsigned char* start; + int err; + + start = state->_span_pos0; + state->_span_pos0 = NULL; + err = llhttp__on_chunk_extension_value(state, start, p); + if (err != 0) { + state->error = err; + state->error_pos = (const char*) (p + 1); + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_31; + return s_error; + } + p++; + goto s_n_llhttp__internal__n_error_31; + /* UNREACHABLE */; + abort(); + } s_n_llhttp__internal__n_pause_11: { state->error = 0x15; state->reason = "on_chunk_extension_value pause"; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_chunk_size_otherwise; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_chunk_extensions; return s_error; /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_31: { + s_n_llhttp__internal__n_error_32: { state->error = 0x23; state->reason = "`on_chunk_extension_value` callback error"; state->error_pos = (const char*) p; @@ -7280,7 +7349,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_4: { + s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_5: { const unsigned char* start; int err; @@ -7298,7 +7367,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_5: { + s_n_llhttp__internal__n_span_end_llhttp__on_chunk_extension_value_6: { const unsigned char* start; int err; @@ -7308,11 +7377,11 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) (p + 1); - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_32; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_33; return s_error; } p++; - goto s_n_llhttp__internal__n_error_32; + goto s_n_llhttp__internal__n_error_33; /* UNREACHABLE */; abort(); } @@ -7374,15 +7443,15 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) (p + 1); - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_33; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_34; return s_error; } p++; - goto s_n_llhttp__internal__n_error_33; + goto s_n_llhttp__internal__n_error_34; /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_34: { + s_n_llhttp__internal__n_error_35: { state->error = 0xc; state->reason = "Invalid character in chunk size"; state->error_pos = (const char*) p; @@ -7394,14 +7463,14 @@ static llparse_state_t llhttp__internal__run( s_n_llhttp__internal__n_invoke_mul_add_content_length: { switch (llhttp__internal__c_mul_add_content_length(state, p, endp, match)) { case 1: - goto s_n_llhttp__internal__n_error_35; + goto s_n_llhttp__internal__n_error_36; default: goto s_n_llhttp__internal__n_chunk_size; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_36: { + s_n_llhttp__internal__n_error_37: { state->error = 0xc; state->reason = "Invalid character in chunk size"; state->error_pos = (const char*) p; @@ -7435,7 +7504,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_38: { + s_n_llhttp__internal__n_error_39: { state->error = 0xf; state->reason = "Request has invalid `Transfer-Encoding`"; state->error_pos = (const char*) p; @@ -7569,7 +7638,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_41: { + s_n_llhttp__internal__n_error_42: { state->error = 0x14; state->reason = "`on_chunk_complete` callback error"; state->error_pos = (const char*) p; @@ -7585,7 +7654,7 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_17; default: - goto s_n_llhttp__internal__n_error_41; + goto s_n_llhttp__internal__n_error_42; } /* UNREACHABLE */; abort(); @@ -7623,7 +7692,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_40: { + s_n_llhttp__internal__n_error_41: { state->error = 0x11; state->reason = "User callback error"; state->error_pos = (const char*) p; @@ -7643,7 +7712,7 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_16; default: - goto s_n_llhttp__internal__n_error_40; + goto s_n_llhttp__internal__n_error_41; } /* UNREACHABLE */; abort(); @@ -7666,7 +7735,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_42: { + s_n_llhttp__internal__n_error_43: { state->error = 0x2; state->reason = "Expected LF after headers"; state->error_pos = (const char*) p; @@ -7680,7 +7749,7 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_invoke_test_flags_1; default: - goto s_n_llhttp__internal__n_error_42; + goto s_n_llhttp__internal__n_error_43; } /* UNREACHABLE */; abort(); @@ -7713,7 +7782,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_57: { + s_n_llhttp__internal__n_error_58: { state->error = 0xb; state->reason = "Content-Length can't be present with Transfer-Encoding"; state->error_pos = (const char*) p; @@ -7722,7 +7791,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_45: { + s_n_llhttp__internal__n_error_46: { state->error = 0xa; state->reason = "Invalid header value char"; state->error_pos = (const char*) p; @@ -7736,12 +7805,12 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_header_value_discard_ws; default: - goto s_n_llhttp__internal__n_error_45; + goto s_n_llhttp__internal__n_error_46; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_47: { + s_n_llhttp__internal__n_error_48: { state->error = 0xb; state->reason = "Empty Content-Length"; state->error_pos = (const char*) p; @@ -7759,7 +7828,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_46: { + s_n_llhttp__internal__n_error_47: { state->error = 0x1d; state->reason = "`on_header_value_complete` callback error"; state->error_pos = (const char*) p; @@ -7844,14 +7913,14 @@ static llparse_state_t llhttp__internal__run( s_n_llhttp__internal__n_invoke_load_header_state_1: { switch (llhttp__internal__c_load_header_state(state, p, endp)) { case 2: - goto s_n_llhttp__internal__n_error_47; + goto s_n_llhttp__internal__n_error_48; default: goto s_n_llhttp__internal__n_invoke_load_header_state_2; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_44: { + s_n_llhttp__internal__n_error_45: { state->error = 0xa; state->reason = "Invalid header value char"; state->error_pos = (const char*) p; @@ -7865,12 +7934,12 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_header_value_discard_lws; default: - goto s_n_llhttp__internal__n_error_44; + goto s_n_llhttp__internal__n_error_45; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_48: { + s_n_llhttp__internal__n_error_49: { state->error = 0x2; state->reason = "Expected LF after CR"; state->error_pos = (const char*) p; @@ -7884,7 +7953,7 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_header_value_discard_lws; default: - goto s_n_llhttp__internal__n_error_48; + goto s_n_llhttp__internal__n_error_49; } /* UNREACHABLE */; abort(); @@ -7963,7 +8032,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_50: { + s_n_llhttp__internal__n_error_51: { state->error = 0x3; state->reason = "Missing expected LF after header value"; state->error_pos = (const char*) p; @@ -7972,7 +8041,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_49: { + s_n_llhttp__internal__n_error_50: { state->error = 0x19; state->reason = "Missing expected CR after header value"; state->error_pos = (const char*) p; @@ -8061,10 +8130,10 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_51; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_52; return s_error; } - goto s_n_llhttp__internal__n_error_51; + goto s_n_llhttp__internal__n_error_52; /* UNREACHABLE */; abort(); } @@ -8176,10 +8245,10 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_53; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_54; return s_error; } - goto s_n_llhttp__internal__n_error_53; + goto s_n_llhttp__internal__n_error_54; /* UNREACHABLE */; abort(); } @@ -8211,14 +8280,14 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_54; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_55; return s_error; } - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_55; /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_52: { + s_n_llhttp__internal__n_error_53: { state->error = 0x4; state->reason = "Duplicate Content-Length"; state->error_pos = (const char*) p; @@ -8232,7 +8301,7 @@ static llparse_state_t llhttp__internal__run( case 0: goto s_n_llhttp__internal__n_header_value_content_length; default: - goto s_n_llhttp__internal__n_error_52; + goto s_n_llhttp__internal__n_error_53; } /* UNREACHABLE */; abort(); @@ -8247,11 +8316,11 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) (p + 1); - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_56; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_57; return s_error; } p++; - goto s_n_llhttp__internal__n_error_56; + goto s_n_llhttp__internal__n_error_57; /* UNREACHABLE */; abort(); } @@ -8273,11 +8342,11 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) (p + 1); - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_55; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_56; return s_error; } p++; - goto s_n_llhttp__internal__n_error_55; + goto s_n_llhttp__internal__n_error_56; /* UNREACHABLE */; abort(); } @@ -8390,7 +8459,7 @@ static llparse_state_t llhttp__internal__run( s_n_llhttp__internal__n_invoke_test_lenient_flags_21: { switch (llhttp__internal__c_test_lenient_flags_21(state, p, endp)) { case 0: - goto s_n_llhttp__internal__n_error_57; + goto s_n_llhttp__internal__n_error_58; default: goto s_n_llhttp__internal__n_header_value_discard_ws; } @@ -8407,7 +8476,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_58: { + s_n_llhttp__internal__n_error_59: { state->error = 0xf; state->reason = "Transfer-Encoding can't be present with Content-Length"; state->error_pos = (const char*) p; @@ -8419,7 +8488,7 @@ static llparse_state_t llhttp__internal__run( s_n_llhttp__internal__n_invoke_test_lenient_flags_22: { switch (llhttp__internal__c_test_lenient_flags_21(state, p, endp)) { case 0: - goto s_n_llhttp__internal__n_error_58; + goto s_n_llhttp__internal__n_error_59; default: goto s_n_llhttp__internal__n_header_value_discard_ws; } @@ -8445,7 +8514,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_43: { + s_n_llhttp__internal__n_error_44: { state->error = 0x1c; state->reason = "`on_header_field_complete` callback error"; state->error_pos = (const char*) p; @@ -8490,7 +8559,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_59: { + s_n_llhttp__internal__n_error_60: { state->error = 0xa; state->reason = "Invalid header token"; state->error_pos = (const char*) p; @@ -8605,7 +8674,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_60: { + s_n_llhttp__internal__n_error_61: { state->error = 0x7; state->reason = "Expected CRLF"; state->error_pos = (const char*) p; @@ -8631,7 +8700,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_68: { + s_n_llhttp__internal__n_error_69: { state->error = 0x17; state->reason = "Pause on PRI/Upgrade"; state->error_pos = (const char*) p; @@ -8640,7 +8709,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_69: { + s_n_llhttp__internal__n_error_70: { state->error = 0x9; state->reason = "Expected HTTP/2 Connection Preface"; state->error_pos = (const char*) p; @@ -8649,7 +8718,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_66: { + s_n_llhttp__internal__n_error_67: { state->error = 0x2; state->reason = "Expected CRLF after version"; state->error_pos = (const char*) p; @@ -8663,12 +8732,12 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_headers_start; default: - goto s_n_llhttp__internal__n_error_66; + goto s_n_llhttp__internal__n_error_67; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_65: { + s_n_llhttp__internal__n_error_66: { state->error = 0x9; state->reason = "Expected CRLF after version"; state->error_pos = (const char*) p; @@ -8682,12 +8751,12 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_req_http_complete_crlf; default: - goto s_n_llhttp__internal__n_error_65; + goto s_n_llhttp__internal__n_error_66; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_67: { + s_n_llhttp__internal__n_error_68: { state->error = 0x9; state->reason = "Expected CRLF after version"; state->error_pos = (const char*) p; @@ -8705,7 +8774,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_64: { + s_n_llhttp__internal__n_error_65: { state->error = 0x21; state->reason = "`on_version_complete` callback error"; state->error_pos = (const char*) p; @@ -8741,10 +8810,10 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_63; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_64; return s_error; } - goto s_n_llhttp__internal__n_error_63; + goto s_n_llhttp__internal__n_error_64; /* UNREACHABLE */; abort(); } @@ -8822,10 +8891,10 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_70; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_71; return s_error; } - goto s_n_llhttp__internal__n_error_70; + goto s_n_llhttp__internal__n_error_71; /* UNREACHABLE */; abort(); } @@ -8839,10 +8908,10 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_71; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_72; return s_error; } - goto s_n_llhttp__internal__n_error_71; + goto s_n_llhttp__internal__n_error_72; /* UNREACHABLE */; abort(); } @@ -8864,14 +8933,14 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_72; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_73; return s_error; } - goto s_n_llhttp__internal__n_error_72; + goto s_n_llhttp__internal__n_error_73; /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_62: { + s_n_llhttp__internal__n_error_63: { state->error = 0x8; state->reason = "Invalid method for HTTP/x.x request"; state->error_pos = (const char*) p; @@ -8953,12 +9022,12 @@ static llparse_state_t llhttp__internal__run( case 34: goto s_n_llhttp__internal__n_span_start_llhttp__on_version; default: - goto s_n_llhttp__internal__n_error_62; + goto s_n_llhttp__internal__n_error_63; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_75: { + s_n_llhttp__internal__n_error_76: { state->error = 0x8; state->reason = "Expected HTTP/"; state->error_pos = (const char*) p; @@ -8967,7 +9036,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_73: { + s_n_llhttp__internal__n_error_74: { state->error = 0x8; state->reason = "Expected SOURCE method for ICE/x.x request"; state->error_pos = (const char*) p; @@ -8981,12 +9050,12 @@ static llparse_state_t llhttp__internal__run( case 33: goto s_n_llhttp__internal__n_span_start_llhttp__on_version; default: - goto s_n_llhttp__internal__n_error_73; + goto s_n_llhttp__internal__n_error_74; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_74: { + s_n_llhttp__internal__n_error_75: { state->error = 0x8; state->reason = "Invalid method for RTSP/x.x request"; state->error_pos = (const char*) p; @@ -9026,7 +9095,7 @@ static llparse_state_t llhttp__internal__run( case 45: goto s_n_llhttp__internal__n_span_start_llhttp__on_version; default: - goto s_n_llhttp__internal__n_error_74; + goto s_n_llhttp__internal__n_error_75; } /* UNREACHABLE */; abort(); @@ -9040,7 +9109,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_61: { + s_n_llhttp__internal__n_error_62: { state->error = 0x1a; state->reason = "`on_url_complete` callback error"; state->error_pos = (const char*) p; @@ -9056,7 +9125,7 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_22; default: - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_62; } /* UNREACHABLE */; abort(); @@ -9129,7 +9198,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_76: { + s_n_llhttp__internal__n_error_77: { state->error = 0x7; state->reason = "Invalid char in url fragment start"; state->error_pos = (const char*) p; @@ -9189,7 +9258,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_77: { + s_n_llhttp__internal__n_error_78: { state->error = 0x7; state->reason = "Invalid char in url query"; state->error_pos = (const char*) p; @@ -9198,7 +9267,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_78: { + s_n_llhttp__internal__n_error_79: { state->error = 0x7; state->reason = "Invalid char in url path"; state->error_pos = (const char*) p; @@ -9309,7 +9378,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_79: { + s_n_llhttp__internal__n_error_80: { state->error = 0x7; state->reason = "Double @ in url"; state->error_pos = (const char*) p; @@ -9318,7 +9387,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_80: { + s_n_llhttp__internal__n_error_81: { state->error = 0x7; state->reason = "Unexpected char in url server"; state->error_pos = (const char*) p; @@ -9327,7 +9396,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_81: { + s_n_llhttp__internal__n_error_82: { state->error = 0x7; state->reason = "Unexpected char in url server"; state->error_pos = (const char*) p; @@ -9336,7 +9405,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_82: { + s_n_llhttp__internal__n_error_83: { state->error = 0x7; state->reason = "Unexpected char in url schema"; state->error_pos = (const char*) p; @@ -9345,7 +9414,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_83: { + s_n_llhttp__internal__n_error_84: { state->error = 0x7; state->reason = "Unexpected char in url schema"; state->error_pos = (const char*) p; @@ -9354,7 +9423,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_84: { + s_n_llhttp__internal__n_error_85: { state->error = 0x7; state->reason = "Unexpected start char in url"; state->error_pos = (const char*) p; @@ -9373,7 +9442,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_85: { + s_n_llhttp__internal__n_error_86: { state->error = 0x6; state->reason = "Expected space after method"; state->error_pos = (const char*) p; @@ -9391,7 +9460,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_104: { + s_n_llhttp__internal__n_error_105: { state->error = 0x20; state->reason = "`on_method_complete` callback error"; state->error_pos = (const char*) p; @@ -9425,7 +9494,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_105: { + s_n_llhttp__internal__n_error_106: { state->error = 0x6; state->reason = "Invalid method encountered"; state->error_pos = (const char*) p; @@ -9434,7 +9503,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_97: { + s_n_llhttp__internal__n_error_98: { state->error = 0xd; state->reason = "Invalid status code"; state->error_pos = (const char*) p; @@ -9443,7 +9512,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_95: { + s_n_llhttp__internal__n_error_96: { state->error = 0xd; state->reason = "Invalid status code"; state->error_pos = (const char*) p; @@ -9452,7 +9521,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_93: { + s_n_llhttp__internal__n_error_94: { state->error = 0xd; state->reason = "Invalid status code"; state->error_pos = (const char*) p; @@ -9470,7 +9539,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_89: { + s_n_llhttp__internal__n_error_90: { state->error = 0x1b; state->reason = "`on_status_complete` callback error"; state->error_pos = (const char*) p; @@ -9486,12 +9555,12 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_24; default: - goto s_n_llhttp__internal__n_error_89; + goto s_n_llhttp__internal__n_error_90; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_88: { + s_n_llhttp__internal__n_error_89: { state->error = 0xd; state->reason = "Invalid response status"; state->error_pos = (const char*) p; @@ -9505,12 +9574,12 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_invoke_llhttp__on_status_complete; default: - goto s_n_llhttp__internal__n_error_88; + goto s_n_llhttp__internal__n_error_89; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_90: { + s_n_llhttp__internal__n_error_91: { state->error = 0x2; state->reason = "Expected LF after CR"; state->error_pos = (const char*) p; @@ -9524,12 +9593,12 @@ static llparse_state_t llhttp__internal__run( case 1: goto s_n_llhttp__internal__n_invoke_llhttp__on_status_complete; default: - goto s_n_llhttp__internal__n_error_90; + goto s_n_llhttp__internal__n_error_91; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_91: { + s_n_llhttp__internal__n_error_92: { state->error = 0x19; state->reason = "Missing expected CR after response line"; state->error_pos = (const char*) p; @@ -9574,7 +9643,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_92: { + s_n_llhttp__internal__n_error_93: { state->error = 0xd; state->reason = "Invalid response status"; state->error_pos = (const char*) p; @@ -9586,14 +9655,14 @@ static llparse_state_t llhttp__internal__run( s_n_llhttp__internal__n_invoke_mul_add_status_code_2: { switch (llhttp__internal__c_mul_add_status_code(state, p, endp, match)) { case 1: - goto s_n_llhttp__internal__n_error_93; + goto s_n_llhttp__internal__n_error_94; default: goto s_n_llhttp__internal__n_res_status_code_otherwise; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_94: { + s_n_llhttp__internal__n_error_95: { state->error = 0xd; state->reason = "Invalid status code"; state->error_pos = (const char*) p; @@ -9605,14 +9674,14 @@ static llparse_state_t llhttp__internal__run( s_n_llhttp__internal__n_invoke_mul_add_status_code_1: { switch (llhttp__internal__c_mul_add_status_code(state, p, endp, match)) { case 1: - goto s_n_llhttp__internal__n_error_95; + goto s_n_llhttp__internal__n_error_96; default: goto s_n_llhttp__internal__n_res_status_code_digit_3; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_96: { + s_n_llhttp__internal__n_error_97: { state->error = 0xd; state->reason = "Invalid status code"; state->error_pos = (const char*) p; @@ -9624,14 +9693,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_97; + goto s_n_llhttp__internal__n_error_98; default: goto s_n_llhttp__internal__n_res_status_code_digit_2; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_98: { + s_n_llhttp__internal__n_error_99: { state->error = 0xd; state->reason = "Invalid status code"; state->error_pos = (const char*) p; @@ -9648,7 +9717,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_99: { + s_n_llhttp__internal__n_error_100: { state->error = 0x9; state->reason = "Expected space after version"; state->error_pos = (const char*) p; @@ -9666,7 +9735,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_87: { + s_n_llhttp__internal__n_error_88: { state->error = 0x21; state->reason = "`on_version_complete` callback error"; state->error_pos = (const char*) p; @@ -9702,10 +9771,10 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_86; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_87; return s_error; } - goto s_n_llhttp__internal__n_error_86; + goto s_n_llhttp__internal__n_error_87; /* UNREACHABLE */; abort(); } @@ -9783,10 +9852,10 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_100; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_101; return s_error; } - goto s_n_llhttp__internal__n_error_100; + goto s_n_llhttp__internal__n_error_101; /* UNREACHABLE */; abort(); } @@ -9800,10 +9869,10 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_101; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_102; return s_error; } - goto s_n_llhttp__internal__n_error_101; + goto s_n_llhttp__internal__n_error_102; /* UNREACHABLE */; abort(); } @@ -9825,14 +9894,14 @@ static llparse_state_t llhttp__internal__run( if (err != 0) { state->error = err; state->error_pos = (const char*) p; - state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_102; + state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_error_103; return s_error; } - goto s_n_llhttp__internal__n_error_102; + goto s_n_llhttp__internal__n_error_103; /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_106: { + s_n_llhttp__internal__n_error_107: { state->error = 0x8; state->reason = "Expected HTTP/"; state->error_pos = (const char*) p; @@ -9892,7 +9961,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_103: { + s_n_llhttp__internal__n_error_104: { state->error = 0x8; state->reason = "Invalid word encountered"; state->error_pos = (const char*) p; @@ -9965,7 +10034,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_107: { + s_n_llhttp__internal__n_error_108: { state->error = 0x1f; state->reason = "`on_reset` callback error"; state->error_pos = (const char*) p; @@ -9981,7 +10050,7 @@ static llparse_state_t llhttp__internal__run( case 21: goto s_n_llhttp__internal__n_pause_28; default: - goto s_n_llhttp__internal__n_error_107; + goto s_n_llhttp__internal__n_error_108; } /* UNREACHABLE */; abort(); diff --git a/deps/llhttp/unofficial.gni b/deps/llhttp/unofficial.gni new file mode 100644 index 00000000000000..80e360d472610c --- /dev/null +++ b/deps/llhttp/unofficial.gni @@ -0,0 +1,34 @@ +# Copyright (c) 2013-2019 GitHub Inc. +# Copyright 2019 the V8 project authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("llhttp_gn_build") { + config("llhttp_config") { + include_dirs = [ "include" ] + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("llhttp.gyp") ], + "scope", + [ "llhttp.gyp" ]) + + source_set(target_name) { + forward_variables_from(invoker, "*") + public_configs = [ ":llhttp_config" ] + include_dirs = [ "include" ] + sources = gypi_values.llhttp_sources + if (is_clang || !is_win) { + cflags_c = [ + "-Wno-implicit-fallthrough", + "-Wno-unreachable-code", + ] + } + } +} diff --git a/deps/nghttp2/BUILD.gn b/deps/nghttp2/BUILD.gn new file mode 100644 index 00000000000000..274352b0e2449f --- /dev/null +++ b/deps/nghttp2/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +nghttp2_gn_build("nghttp2") { +} diff --git a/deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h b/deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h index f56954e7fded45..f38fe2b0478ff3 100644 --- a/deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h +++ b/deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h @@ -29,7 +29,7 @@ * @macro * Version number of the nghttp2 library release */ -#define NGHTTP2_VERSION "1.57.0" +#define NGHTTP2_VERSION "1.58.0" /** * @macro @@ -37,6 +37,6 @@ * release. This is a 24 bit number with 8 bits for major number, 8 bits * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203. */ -#define NGHTTP2_VERSION_NUM 0x013900 +#define NGHTTP2_VERSION_NUM 0x013a00 #endif /* NGHTTP2VER_H */ diff --git a/deps/nghttp2/lib/nghttp2_map.c b/deps/nghttp2/lib/nghttp2_map.c index 5f63fc2bb87e99..0aaaf29155cd02 100644 --- a/deps/nghttp2/lib/nghttp2_map.c +++ b/deps/nghttp2/lib/nghttp2_map.c @@ -126,6 +126,7 @@ static void map_bucket_set_data(nghttp2_map_bucket *bkt, uint32_t hash, bkt->data = data; } +#ifndef WIN32 void nghttp2_map_print_distance(nghttp2_map *map) { uint32_t i; size_t idx; @@ -145,6 +146,7 @@ void nghttp2_map_print_distance(nghttp2_map *map) { distance(map->tablelen, map->tablelenbits, bkt, idx)); } } +#endif /* !WIN32 */ static int insert(nghttp2_map_bucket *table, uint32_t tablelen, uint32_t tablelenbits, uint32_t hash, diff --git a/deps/nghttp2/lib/nghttp2_map.h b/deps/nghttp2/lib/nghttp2_map.h index d90245aab74c97..236d28296e31da 100644 --- a/deps/nghttp2/lib/nghttp2_map.h +++ b/deps/nghttp2/lib/nghttp2_map.h @@ -131,6 +131,8 @@ size_t nghttp2_map_size(nghttp2_map *map); int nghttp2_map_each(nghttp2_map *map, int (*func)(void *data, void *ptr), void *ptr); +#ifndef WIN32 void nghttp2_map_print_distance(nghttp2_map *map); +#endif /* !WIN32 */ #endif /* NGHTTP2_MAP_H */ diff --git a/deps/nghttp2/lib/nghttp2_time.c b/deps/nghttp2/lib/nghttp2_time.c index 2a5f1a6ff524df..897556fe2c1a51 100644 --- a/deps/nghttp2/lib/nghttp2_time.c +++ b/deps/nghttp2/lib/nghttp2_time.c @@ -32,7 +32,7 @@ # include #endif /* HAVE_SYSINFOAPI_H */ -#ifndef HAVE_GETTICKCOUNT64 +#if !defined(HAVE_GETTICKCOUNT64) || defined(__CYGWIN__) static uint64_t time_now_sec(void) { time_t t = time(NULL); @@ -42,9 +42,11 @@ static uint64_t time_now_sec(void) { return (uint64_t)t; } -#endif /* HAVE_GETTICKCOUNT64 */ +#endif /* !HAVE_GETTICKCOUNT64 || __CYGWIN__ */ -#ifdef HAVE_CLOCK_GETTIME +#if defined(HAVE_GETTICKCOUNT64) && !defined(__CYGWIN__) +uint64_t nghttp2_time_now_sec(void) { return GetTickCount64() / 1000; } +#elif defined(HAVE_CLOCK_GETTIME) uint64_t nghttp2_time_now_sec(void) { struct timespec tp; int rv = clock_gettime(CLOCK_MONOTONIC, &tp); @@ -55,8 +57,6 @@ uint64_t nghttp2_time_now_sec(void) { return (uint64_t)tp.tv_sec; } -#elif defined(HAVE_GETTICKCOUNT64) -uint64_t nghttp2_time_now_sec(void) { return GetTickCount64() / 1000; } -#else /* !HAVE_CLOCK_GETTIME && !HAVE_GETTICKCOUNT64 */ +#else /* (!HAVE_CLOCK_GETTIME || __CYGWIN__) && !HAVE_GETTICKCOUNT64 */ uint64_t nghttp2_time_now_sec(void) { return time_now_sec(); } -#endif /* !HAVE_CLOCK_GETTIME && !HAVE_GETTICKCOUNT64 */ +#endif /* (!HAVE_CLOCK_GETTIME || __CYGWIN__) && !HAVE_GETTICKCOUNT64 */ diff --git a/deps/nghttp2/unofficial.gni b/deps/nghttp2/unofficial.gni new file mode 100644 index 00000000000000..0d84500a66f249 --- /dev/null +++ b/deps/nghttp2/unofficial.gni @@ -0,0 +1,45 @@ +# Copyright (c) 2013-2019 GitHub Inc. +# Copyright 2019 the V8 project authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("nghttp2_gn_build") { + config("nghttp2_config") { + include_dirs = [ "lib/includes" ] + if (!is_component_build) { + defines = [ "NGHTTP2_STATICLIB" ] + } + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("nghttp2.gyp") ], + "scope", + [ "nghttp2.gyp" ]) + + component(target_name) { + forward_variables_from(invoker, "*") + + public_configs = [ ":nghttp2_config" ] + defines = [ + "_U_", + "HAVE_CONFIG_H" + ] + if (is_component_build) { + defines += [ "BUILDING_NGHTTP2" ] + } + + sources = gypi_values.nghttp2_sources + + if (is_clang || !is_win) { + cflags_c = [ + "-Wno-implicit-fallthrough", + ] + } + } +} diff --git a/deps/ngtcp2/BUILD.gn b/deps/ngtcp2/BUILD.gn new file mode 100644 index 00000000000000..41df46fea419d3 --- /dev/null +++ b/deps/ngtcp2/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +ngtcp2_gn_build("ngtcp2") { +} diff --git a/deps/ngtcp2/unofficial.gni b/deps/ngtcp2/unofficial.gni new file mode 100644 index 00000000000000..a304cf4aded42d --- /dev/null +++ b/deps/ngtcp2/unofficial.gni @@ -0,0 +1,74 @@ +# Copyright (c) 2013-2021 GitHub Inc. +# Copyright 2021 the V8 project authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +import("//node/node.gni") + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("ngtcp2_gn_build") { + config("ngtcp2_config") { + include_dirs = [ + "nghttp3/lib/", + "nghttp3/lib/includes/", + "ngtcp2/crypto/includes/", + "ngtcp2/lib/includes/", + ] + defines = [ + "NGTCP2_STATICLIB", + "NGHTTP3_STATICLIB", + ] + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("ngtcp2.gyp") ], + "scope", + [ "ngtcp2.gyp" ]) + + # FIXME(zcbenz): Some APIs of ngtcp2 are not marked as export, so can not turn + # into component. This should be fixed in upstream ngtcp2 + static_library(target_name) { + forward_variables_from(invoker, "*") + public_configs = [ ":ngtcp2_config" ] + + defines = [ "_U_" ] + if (is_win) { + defines += [ + "WIN32", + "_WINDOWS", + "HAVE_CONFIG_H", + ] + } + if (is_linux) { + defines += [ + "HAVE_ARPA_INET_H", + "HAVE_NETINET_IN_H", + ] + } + + include_dirs = [ + ".", + "ngtcp2/lib/", + "ngtcp2/crypto/", + "nghttp3/lib/" + ] + + sources = gypi_values.nghttp3_sources + gypi_values.ngtcp2_sources + if (node_use_openssl) { + sources += gypi_values.ngtcp2_sources_openssl + deps = [ "../openssl" ] + } + + if (is_clang || !is_win) { + cflags_c = [ + "-Wno-extra-semi", + "-Wno-implicit-fallthrough", + ] + } + } +} diff --git a/deps/npm/bin/node-gyp-bin/node-gyp b/deps/npm/bin/node-gyp-bin/node-gyp new file mode 100755 index 00000000000000..70efb6f339f768 --- /dev/null +++ b/deps/npm/bin/node-gyp-bin/node-gyp @@ -0,0 +1,6 @@ +#!/usr/bin/env sh +if [ "x$npm_config_node_gyp" = "x" ]; then + node "`dirname "$0"`/../../node_modules/node-gyp/bin/node-gyp.js" "$@" +else + "$npm_config_node_gyp" "$@" +fi diff --git a/deps/npm/bin/node-gyp-bin/node-gyp.cmd b/deps/npm/bin/node-gyp-bin/node-gyp.cmd new file mode 100755 index 00000000000000..083c9c58a502a1 --- /dev/null +++ b/deps/npm/bin/node-gyp-bin/node-gyp.cmd @@ -0,0 +1,5 @@ +if not defined npm_config_node_gyp ( + node "%~dp0\..\..\node_modules\node-gyp\bin\node-gyp.js" %* +) else ( + node "%npm_config_node_gyp%" %* +) diff --git a/deps/npm/docs/content/commands/npm-audit.md b/deps/npm/docs/content/commands/npm-audit.md index c36683cf10e073..9b98734a96fcfd 100644 --- a/deps/npm/docs/content/commands/npm-audit.md +++ b/deps/npm/docs/content/commands/npm-audit.md @@ -83,13 +83,13 @@ The `sig` is generated using the following template: `${package.name}@${package. Keys response: -- `expires`: null or a simplified extended ISO 8601 format: `YYYY-MM-DDTHH:mm:ss.sssZ` +- `expires`: null or a simplified extended [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601"): `YYYY-MM-DDTHH:mm:ss.sssZ` - `keydid`: sha256 fingerprint of the public key - `keytype`: only `ecdsa-sha2-nistp256` is currently supported by the npm CLI - `scheme`: only `ecdsa-sha2-nistp256` is currently supported by the npm CLI - `key`: base64 encoded public key -See this example key's response from the public npm registry. +See this [example key's response from the public npm registry](https://registry.npmjs.org/-/npm/v1/keys"). ### Audit Endpoints diff --git a/deps/npm/docs/content/commands/npm-ls.md b/deps/npm/docs/content/commands/npm-ls.md index 791e5f88b082bb..2bff962988c4cc 100644 --- a/deps/npm/docs/content/commands/npm-ls.md +++ b/deps/npm/docs/content/commands/npm-ls.md @@ -27,7 +27,7 @@ packages will *also* show the paths to the specified packages. For example, running `npm ls promzard` in npm's source tree will show: ```bash -npm@10.2.0 /path/to/npm +npm@10.2.3 /path/to/npm └─┬ init-package-json@0.0.4 └── promzard@0.1.5 ``` diff --git a/deps/npm/docs/content/commands/npm-rebuild.md b/deps/npm/docs/content/commands/npm-rebuild.md index c42e09767ef4b4..596ae97df24448 100644 --- a/deps/npm/docs/content/commands/npm-rebuild.md +++ b/deps/npm/docs/content/commands/npm-rebuild.md @@ -14,14 +14,29 @@ alias: rb ### Description -This command runs the `npm build` command on the matched folders. This is -useful when you install a new version of node, and must recompile all your -C++ addons with the new binary. It is also useful when installing with -`--ignore-scripts` and `--no-bin-links`, to explicitly choose which -packages to build and/or link bins. - -If one or more package specs are provided, then only packages with a -name and version matching one of the specifiers will be rebuilt. +This command does the following: + +1. Execute lifecycle scripts (`preinstall`, `install`, `postinstall`, `prepare`) +2. Links bins depending on whether bin links are enabled + +This command is particularly useful in scenarios including but not limited to: + +1. Installing a new version of **node.js**, where you need to recompile all your C++ add-ons with the updated binary. +2. Installing with `--ignore-scripts` and `--no-bin-links`, to explicitly choose which packages to build and/or link bins. + +If one or more package specs are provided, then only packages with a name and version matching one of the specifiers will be rebuilt. + +Usually, you should not need to run `npm rebuild` as it is already done for you as part of npm install (unless you suppressed these steps with `--ignore-scripts` or `--no-bin-links`). + +If there is a `binding.gyp` file in the root of your package, then npm will use a default install hook: + +``` +"scripts": { + "install": "node-gyp rebuild" +} +``` + +This default behavior is suppressed if the `package.json` has its own `install` or `preinstall` scripts. It is also suppressed if the package specifies `"gypfile": false` ### Configuration diff --git a/deps/npm/docs/content/commands/npm-team.md b/deps/npm/docs/content/commands/npm-team.md index a32619a75fe182..7895df7c961522 100644 --- a/deps/npm/docs/content/commands/npm-team.md +++ b/deps/npm/docs/content/commands/npm-team.md @@ -33,7 +33,7 @@ on your `authtype`. * create / destroy: Create a new team, or destroy an existing one. Note: You cannot remove the - `developers` team, learn more. + `developers` team, [learn more.](https://docs.npmjs.com/about-developers-team) Here's how to create a new team `newteam` under the `org` org: diff --git a/deps/npm/docs/content/commands/npm-unpublish.md b/deps/npm/docs/content/commands/npm-unpublish.md index 52f2961246b1f1..8ab976e96cb6c7 100644 --- a/deps/npm/docs/content/commands/npm-unpublish.md +++ b/deps/npm/docs/content/commands/npm-unpublish.md @@ -10,9 +10,8 @@ description: Remove a package from the registry npm unpublish [] ``` -To learn more about how the npm registry treats unpublish, see our unpublish policies +To learn more about how the npm registry treats unpublish, see our +[unpublish policies](https://docs.npmjs.com/policies/unpublish). ### Warning diff --git a/deps/npm/docs/content/commands/npm.md b/deps/npm/docs/content/commands/npm.md index 0a5b88d7083c8a..247b7ba6edf594 100644 --- a/deps/npm/docs/content/commands/npm.md +++ b/deps/npm/docs/content/commands/npm.md @@ -14,7 +14,7 @@ Note: This command is unaware of workspaces. ### Version -10.2.0 +10.2.3 ### Description diff --git a/deps/npm/docs/content/configuring-npm/package-lock-json.md b/deps/npm/docs/content/configuring-npm/package-lock-json.md index 8904f308870982..d540dd0e7228b8 100644 --- a/deps/npm/docs/content/configuring-npm/package-lock-json.md +++ b/deps/npm/docs/content/configuring-npm/package-lock-json.md @@ -114,7 +114,7 @@ the npm registry. Lockfiles generated by npm v7 will contain * `1`: The lockfile version used by npm v5 and v6. * `2`: The lockfile version used by npm v7 and v8. Backwards compatible to v1 lockfiles. -* `3`: The lockfile version used by npm v9. Backwards compatible to npm v7. +* `3`: The lockfile version used by npm v9 and above. Backwards compatible to npm v7. npm will always attempt to get whatever data it can out of a lockfile, even if it is not a version that it was designed to support. diff --git a/deps/npm/docs/content/using-npm/scripts.md b/deps/npm/docs/content/using-npm/scripts.md index bf212c5db24f77..b25815a428cd4c 100644 --- a/deps/npm/docs/content/using-npm/scripts.md +++ b/deps/npm/docs/content/using-npm/scripts.md @@ -159,8 +159,6 @@ These are run from the scripts of `` * `publish` * `postpublish` -`prepare` will not run during `--dry-run` - #### [`npm rebuild`](/commands/npm-rebuild) * `preinstall` diff --git a/deps/npm/docs/output/commands/npm-audit.html b/deps/npm/docs/output/commands/npm-audit.html index 8ac632d7336589..4aaff936efe846 100644 --- a/deps/npm/docs/output/commands/npm-audit.html +++ b/deps/npm/docs/output/commands/npm-audit.html @@ -203,13 +203,13 @@

Audit Signatures

Keys response:

    -
  • expires: null or a simplified extended ISO 8601 format: YYYY-MM-DDTHH:mm:ss.sssZ
  • +
  • expires: null or a simplified extended ISO 8601 format: YYYY-MM-DDTHH:mm:ss.sssZ
  • keydid: sha256 fingerprint of the public key
  • keytype: only ecdsa-sha2-nistp256 is currently supported by the npm CLI
  • scheme: only ecdsa-sha2-nistp256 is currently supported by the npm CLI
  • key: base64 encoded public key
-

See this example key's response from the public npm registry.

+

See this example key's response from the public npm registry.

Audit Endpoints

There are two audit endpoints that npm may use to fetch vulnerability information: the Bulk Advisory endpoint and the Quick Audit endpoint.

diff --git a/deps/npm/docs/output/commands/npm-ls.html b/deps/npm/docs/output/commands/npm-ls.html index fda40e2beabf14..0c623b49378635 100644 --- a/deps/npm/docs/output/commands/npm-ls.html +++ b/deps/npm/docs/output/commands/npm-ls.html @@ -160,7 +160,7 @@

Description

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

-
npm@10.2.0 /path/to/npm
+
npm@10.2.3 /path/to/npm
 └─┬ init-package-json@0.0.4
   └── promzard@0.1.5
 
diff --git a/deps/npm/docs/output/commands/npm-rebuild.html b/deps/npm/docs/output/commands/npm-rebuild.html index 4d2ce115e6a362..3a1a5a401a6a06 100644 --- a/deps/npm/docs/output/commands/npm-rebuild.html +++ b/deps/npm/docs/output/commands/npm-rebuild.html @@ -151,13 +151,24 @@

Table of contents

alias: rb

Description

-

This command runs the npm build command on the matched folders. This is -useful when you install a new version of node, and must recompile all your -C++ addons with the new binary. It is also useful when installing with ---ignore-scripts and --no-bin-links, to explicitly choose which -packages to build and/or link bins.

-

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

+

This command does the following:

+
    +
  1. Execute lifecycle scripts (preinstall, install, postinstall, prepare)
  2. +
  3. Links bins depending on whether bin links are enabled
  4. +
+

This command is particularly useful in scenarios including but not limited to:

+
    +
  1. Installing a new version of node.js, where you need to recompile all your C++ add-ons with the updated binary.
  2. +
  3. Installing with --ignore-scripts and --no-bin-links, to explicitly choose which packages to build and/or link bins.
  4. +
+

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

+

Usually, you should not need to run npm rebuild as it is already done for you as part of npm install (unless you suppressed these steps with --ignore-scripts or --no-bin-links).

+

If there is a binding.gyp file in the root of your package, then npm will use a default install hook:

+
"scripts": {
+    "install": "node-gyp rebuild"
+}
+
+

This default behavior is suppressed if the package.json has its own install or preinstall scripts. It is also suppressed if the package specifies "gypfile": false

Configuration

global

    diff --git a/deps/npm/docs/output/commands/npm-team.html b/deps/npm/docs/output/commands/npm-team.html index ac8740e917cc8f..6752bb38102d7a 100644 --- a/deps/npm/docs/output/commands/npm-team.html +++ b/deps/npm/docs/output/commands/npm-team.html @@ -168,7 +168,7 @@

    Description

  • create / destroy: Create a new team, or destroy an existing one. Note: You cannot remove the -developers team, learn more.

    +developers team, learn more.

    Here's how to create a new team newteam under the org org:

    npm team create @org:newteam
     
    diff --git a/deps/npm/docs/output/commands/npm-unpublish.html b/deps/npm/docs/output/commands/npm-unpublish.html index 98fa487e07775c..0c4776309b5640 100644 --- a/deps/npm/docs/output/commands/npm-unpublish.html +++ b/deps/npm/docs/output/commands/npm-unpublish.html @@ -148,7 +148,8 @@

    Table of contents

    Synopsis

    npm unpublish [<package-spec>]
     
    -

    To learn more about how the npm registry treats unpublish, see our unpublish policies

    +

    To learn more about how the npm registry treats unpublish, see our +unpublish policies.

    Warning

    Consider using the deprecate command instead, if your intent is to encourage users to upgrade, or if you no longer diff --git a/deps/npm/docs/output/commands/npm.html b/deps/npm/docs/output/commands/npm.html index dafc8c4f92c3e5..d1ca758360ff09 100644 --- a/deps/npm/docs/output/commands/npm.html +++ b/deps/npm/docs/output/commands/npm.html @@ -150,7 +150,7 @@

    Table of contents

    Note: This command is unaware of workspaces.

    Version

    -

    10.2.0

    +

    10.2.3

    Description

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

    lockfileVersion

  • 1: The lockfile version used by npm v5 and v6.
  • 2: The lockfile version used by npm v7 and v8. Backwards compatible to v1 lockfiles.
  • -
  • 3: The lockfile version used by npm v9. Backwards compatible to npm v7.
  • +
  • 3: The lockfile version used by npm v9 and above. Backwards compatible to npm v7.

npm will always attempt to get whatever data it can out of a lockfile, even if it is not a version that it was designed to support.

diff --git a/deps/npm/docs/output/using-npm/scripts.html b/deps/npm/docs/output/using-npm/scripts.html index 6cc14bff7aeabe..5628c7724f8ca7 100644 --- a/deps/npm/docs/output/using-npm/scripts.html +++ b/deps/npm/docs/output/using-npm/scripts.html @@ -293,7 +293,6 @@

npm publishpublish
  • postpublish
  • -

    prepare will not run during --dry-run

    npm rebuild

    • preinstall
    • diff --git a/deps/npm/lib/commands/audit.js b/deps/npm/lib/commands/audit.js index c95d992c05c99f..8c10a36cfee3cf 100644 --- a/deps/npm/lib/commands/audit.js +++ b/deps/npm/lib/commands/audit.js @@ -55,7 +55,7 @@ class VerifySignatures { // Didn't find any dependencies that could be verified, e.g. only local // deps, missing version, not on a registry etc. if (!this.auditedWithKeysCount) { - throw new Error('found no dependencies to audit that where installed from ' + + throw new Error('found no dependencies to audit that were installed from ' + 'a supported registry') } diff --git a/deps/npm/lib/commands/link.js b/deps/npm/lib/commands/link.js index 0c0929115a557f..cdc248569849c3 100644 --- a/deps/npm/lib/commands/link.js +++ b/deps/npm/lib/commands/link.js @@ -109,13 +109,13 @@ class Link extends ArboristWorkspaceCmd { // using any of --save-dev or other types const save = Boolean( - this.npm.config.find('save') !== 'default' || + (this.npm.config.find('save') !== 'default' && + this.npm.config.get('save')) || this.npm.config.get('save-optional') || this.npm.config.get('save-peer') || this.npm.config.get('save-dev') || this.npm.config.get('save-prod') ) - // create a new arborist instance for the local prefix and // reify all the pending names as symlinks there const localArb = new Arborist({ diff --git a/deps/npm/lib/commands/logout.js b/deps/npm/lib/commands/logout.js index aea5e93652b0e8..665580930639cf 100644 --- a/deps/npm/lib/commands/logout.js +++ b/deps/npm/lib/commands/logout.js @@ -1,5 +1,5 @@ -const getAuth = require('npm-registry-fetch/lib/auth.js') const npmFetch = require('npm-registry-fetch') +const { getAuth } = npmFetch const log = require('../utils/log-shim') const BaseCommand = require('../base-command.js') @@ -19,10 +19,14 @@ class Logout extends BaseCommand { const auth = getAuth(reg, this.npm.flatOptions) + const level = this.npm.config.find(`${auth.regKey}:${auth.authKey}`) + + // find the config level and only delete from there if (auth.token) { log.verbose('logout', `clearing token for ${reg}`) await npmFetch(`/-/user/token/${encodeURIComponent(auth.token)}`, { ...this.npm.flatOptions, + registry: reg, method: 'DELETE', ignoreBody: true, }) @@ -34,12 +38,12 @@ class Logout extends BaseCommand { } if (scope) { - this.npm.config.delete(regRef, 'user') + this.npm.config.delete(regRef, level) } - this.npm.config.clearCredentialsByURI(reg) + this.npm.config.clearCredentialsByURI(reg, level) - await this.npm.config.save('user') + await this.npm.config.save(level) } } module.exports = Logout diff --git a/deps/npm/lib/utils/error-message.js b/deps/npm/lib/utils/error-message.js index a2cdb0aa48068c..e3d6c3526936f8 100644 --- a/deps/npm/lib/utils/error-message.js +++ b/deps/npm/lib/utils/error-message.js @@ -182,7 +182,7 @@ const errorMessage = (er, npm) => { ]) detail.push([ '', - ['To correct this please trying logging in again with:', ' npm login'].join('\n'), + ['To correct this please try logging in again with:', ' npm login'].join('\n'), ]) } else if (auth.includes('Basic')) { short.push(['', 'Incorrect or missing password.']) diff --git a/deps/npm/lib/utils/queryable.js b/deps/npm/lib/utils/queryable.js index 5ddcf636e83836..69621d928e8ddc 100644 --- a/deps/npm/lib/utils/queryable.js +++ b/deps/npm/lib/utils/queryable.js @@ -111,13 +111,9 @@ const getter = ({ data, key }) => { }, {}) return _data } else { - // if can't find any more values, it means it's just over - // and there's nothing to return - if (!_data[k]) { + if (!Object.hasOwn(_data, k)) { return undefined } - - // otherwise sets the next value _data = _data[k] } diff --git a/deps/npm/man/man1/npm-access.1 b/deps/npm/man/man1/npm-access.1 index 3973970b33e774..53fd371f3a67e2 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" "October 2023" "" "" +.TH "NPM-ACCESS" "1" "November 2023" "" "" .SH "NAME" \fBnpm-access\fR - Set access level on published packages .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-adduser.1 b/deps/npm/man/man1/npm-adduser.1 index bed0126358ba71..2c55c56074528d 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" "October 2023" "" "" +.TH "NPM-ADDUSER" "1" "November 2023" "" "" .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 2b354792825a2a..c3b84eef16325b 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" "October 2023" "" "" +.TH "NPM-AUDIT" "1" "November 2023" "" "" .SH "NAME" \fBnpm-audit\fR - Run a security audit .SS "Synopsis" @@ -78,7 +78,7 @@ Public signing keys are provided at \fBregistry-host.tld/-/npm/v1/keys\fR in the Keys response: .RS 0 .IP \(bu 4 -\fBexpires\fR: null or a simplified extended ISO 8601 format: \fBYYYY-MM-DDTHH:mm:ss.sssZ\fR +\fBexpires\fR: null or a simplified extended \fBISO 8601 format\fR \fI\(lahttps://en.wikipedia.org/wiki/ISO_8601"\(ra\fR: \fBYYYY-MM-DDTHH:mm:ss.sssZ\fR .IP \(bu 4 \fBkeydid\fR: sha256 fingerprint of the public key .IP \(bu 4 @@ -90,7 +90,7 @@ Keys response: .RE 0 .P -See this example key's response from the public npm registry. +See this \fBexample key's response from the public npm registry\fR \fI\(lahttps://registry.npmjs.org/-/npm/v1/keys"\(ra\fR. .SS "Audit Endpoints" .P There are two audit endpoints that npm may use to fetch vulnerability information: the \fBBulk Advisory\fR endpoint and the \fBQuick Audit\fR endpoint. diff --git a/deps/npm/man/man1/npm-bugs.1 b/deps/npm/man/man1/npm-bugs.1 index 16fee0af9cf066..16a65feaa6d038 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" "October 2023" "" "" +.TH "NPM-BUGS" "1" "November 2023" "" "" .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 a0faa423af17a6..8f303d21c2c455 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" "October 2023" "" "" +.TH "NPM-CACHE" "1" "November 2023" "" "" .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 e22f3bd8ce4134..4d7a7a0c658742 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" "October 2023" "" "" +.TH "NPM-CI" "1" "November 2023" "" "" .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 b8f80ed6090c85..2597a926a124ac 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" "October 2023" "" "" +.TH "NPM-COMPLETION" "1" "November 2023" "" "" .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 bdf56c7bdb49eb..02abc5c9d8f1d7 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" "October 2023" "" "" +.TH "NPM-CONFIG" "1" "November 2023" "" "" .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 7857da24d22227..6ed4db0a520e0d 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" "October 2023" "" "" +.TH "NPM-DEDUPE" "1" "November 2023" "" "" .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 b58987d3afad92..faea73b948544f 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" "October 2023" "" "" +.TH "NPM-DEPRECATE" "1" "November 2023" "" "" .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 70227dc7aaff32..217e2ebf607019 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" "October 2023" "" "" +.TH "NPM-DIFF" "1" "November 2023" "" "" .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 a02570f24a6f9f..668b8963a57384 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" "October 2023" "" "" +.TH "NPM-DIST-TAG" "1" "November 2023" "" "" .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 81f53336cdb779..0f0d0f731b9bda 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" "October 2023" "" "" +.TH "NPM-DOCS" "1" "November 2023" "" "" .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 17978d0d5e532a..4d2c2aa00f4e0f 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" "October 2023" "" "" +.TH "NPM-DOCTOR" "1" "November 2023" "" "" .SH "NAME" \fBnpm-doctor\fR - Check the health of your npm environment .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-edit.1 b/deps/npm/man/man1/npm-edit.1 index 012aabad9f2858..cc1e9b5c8ede7f 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" "October 2023" "" "" +.TH "NPM-EDIT" "1" "November 2023" "" "" .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 92e0cdb11895d7..8cb1010ffb552a 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" "October 2023" "" "" +.TH "NPM-EXEC" "1" "November 2023" "" "" .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 667d46df151f40..6070bb24a24386 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" "October 2023" "" "" +.TH "NPM-EXPLAIN" "1" "November 2023" "" "" .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 f30ffd4a5e27af..27371aa6c9e9e7 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" "October 2023" "" "" +.TH "NPM-EXPLORE" "1" "November 2023" "" "" .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 e4bcc8b85db3dd..d27a252baaca8d 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" "October 2023" "" "" +.TH "NPM-FIND-DUPES" "1" "November 2023" "" "" .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 afcbcfbbc85f41..88bf7caa0d5d83 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" "October 2023" "" "" +.TH "NPM-FUND" "1" "November 2023" "" "" .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 2c5effe6c6e186..b98088152314b8 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" "October 2023" "" "" +.TH "NPM-HELP-SEARCH" "1" "November 2023" "" "" .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 b5f7e3bdd959ef..949e54c44eab08 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" "October 2023" "" "" +.TH "NPM-HELP" "1" "November 2023" "" "" .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 db68ce36d4d88a..145406b9d09877 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" "October 2023" "" "" +.TH "NPM-HOOK" "1" "November 2023" "" "" .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 f2e0a289b88561..a86a09b910a810 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" "October 2023" "" "" +.TH "NPM-INIT" "1" "November 2023" "" "" .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 9f7c1a222ef31f..21320f9378b7d8 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" "October 2023" "" "" +.TH "NPM-INSTALL-CI-TEST" "1" "November 2023" "" "" .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 c7361dcd7ac767..3e6efb819bc6e2 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" "October 2023" "" "" +.TH "NPM-INSTALL-TEST" "1" "November 2023" "" "" .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 0d202d94814425..0493f5dc9577f0 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" "October 2023" "" "" +.TH "NPM-INSTALL" "1" "November 2023" "" "" .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 13c26b8b4043de..491cc6e45f066d 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" "October 2023" "" "" +.TH "NPM-LINK" "1" "November 2023" "" "" .SH "NAME" \fBnpm-link\fR - Symlink a package folder .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-login.1 b/deps/npm/man/man1/npm-login.1 index 86bc0a1f6162f3..dff4c54b206299 100644 --- a/deps/npm/man/man1/npm-login.1 +++ b/deps/npm/man/man1/npm-login.1 @@ -1,4 +1,4 @@ -.TH "NPM-LOGIN" "1" "October 2023" "" "" +.TH "NPM-LOGIN" "1" "November 2023" "" "" .SH "NAME" \fBnpm-login\fR - Login to a registry user account .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-logout.1 b/deps/npm/man/man1/npm-logout.1 index 58c7f047db0086..f4e3525a9a43ad 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" "October 2023" "" "" +.TH "NPM-LOGOUT" "1" "November 2023" "" "" .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 385138d4876f99..25af64a1534878 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" "October 2023" "" "" +.TH "NPM-LS" "1" "November 2023" "" "" .SH "NAME" \fBnpm-ls\fR - List installed packages .SS "Synopsis" @@ -20,7 +20,7 @@ Positional arguments are \fBname@version-range\fR identifiers, which will limit .P .RS 2 .nf -npm@10.2.0 /path/to/npm +npm@10.2.3 /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 df0495c6c6aeea..182f84af28895f 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" "October 2023" "" "" +.TH "NPM-ORG" "1" "November 2023" "" "" .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 2935461bbedd0a..84351aeb35d4b9 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" "October 2023" "" "" +.TH "NPM-OUTDATED" "1" "November 2023" "" "" .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 288c891617d867..ceda18a6c31758 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" "October 2023" "" "" +.TH "NPM-OWNER" "1" "November 2023" "" "" .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 b6d8a6bff2d275..050c208ffd64e8 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" "October 2023" "" "" +.TH "NPM-PACK" "1" "November 2023" "" "" .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 f5e3cc536030e8..6c6e1e28281664 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" "October 2023" "" "" +.TH "NPM-PING" "1" "November 2023" "" "" .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 75d0791abbfed6..40b0329fef13f1 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" "October 2023" "" "" +.TH "NPM-PKG" "1" "November 2023" "" "" .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 c63af6e4d99fbd..a0ab1560881243 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" "October 2023" "" "" +.TH "NPM-PREFIX" "1" "November 2023" "" "" .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 acc437b9b904f2..834c26428d94b8 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" "October 2023" "" "" +.TH "NPM-PROFILE" "1" "November 2023" "" "" .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 1ccd763e2372f6..3ab15a55c879a1 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" "October 2023" "" "" +.TH "NPM-PRUNE" "1" "November 2023" "" "" .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 9d580de01e5ec5..5d8444e2fa2d04 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" "October 2023" "" "" +.TH "NPM-PUBLISH" "1" "November 2023" "" "" .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 5a79a5c2fac37d..947a7b78397571 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" "October 2023" "" "" +.TH "NPM-QUERY" "1" "November 2023" "" "" .SH "NAME" \fBnpm-query\fR - Dependency selector query .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-rebuild.1 b/deps/npm/man/man1/npm-rebuild.1 index 882b27fa6e0722..b00eb2816eb116 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" "October 2023" "" "" +.TH "NPM-REBUILD" "1" "November 2023" "" "" .SH "NAME" \fBnpm-rebuild\fR - Rebuild a package .SS "Synopsis" @@ -12,9 +12,39 @@ alias: rb .RE .SS "Description" .P -This command runs the \fBnpm build\fR command on the matched folders. This is useful when you install a new version of node, and must recompile all your C++ addons with the new binary. It is also useful when installing with \fB--ignore-scripts\fR and \fB--no-bin-links\fR, to explicitly choose which packages to build and/or link bins. +This command does the following: +.RS 0 +.IP 1. 4 +Execute lifecycle scripts (\fBpreinstall\fR, \fBinstall\fR, \fBpostinstall\fR, \fBprepare\fR) +.IP 2. 4 +Links bins depending on whether bin links are enabled +.RE 0 + +.P +This command is particularly useful in scenarios including but not limited to: +.RS 0 +.IP 1. 4 +Installing a new version of \fBnode.js\fR, where you need to recompile all your C++ add-ons with the updated binary. +.IP 2. 4 +Installing with \fB--ignore-scripts\fR and \fB--no-bin-links\fR, to explicitly choose which packages to build and/or link bins. +.RE 0 + .P If one or more package specs are provided, then only packages with a name and version matching one of the specifiers will be rebuilt. +.P +Usually, you should not need to run \fBnpm rebuild\fR as it is already done for you as part of npm install (unless you suppressed these steps with \fB--ignore-scripts\fR or \fB--no-bin-links\fR). +.P +If there is a \fBbinding.gyp\fR file in the root of your package, then npm will use a default install hook: +.P +.RS 2 +.nf +"scripts": { + "install": "node-gyp rebuild" +} +.fi +.RE +.P +This default behavior is suppressed if the \fBpackage.json\fR has its own \fBinstall\fR or \fBpreinstall\fR scripts. It is also suppressed if the package specifies \fB"gypfile": false\fR .SS "Configuration" .SS "\fBglobal\fR" .RS 0 diff --git a/deps/npm/man/man1/npm-repo.1 b/deps/npm/man/man1/npm-repo.1 index 85805cb46b07fc..1d89a9e85c7105 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" "October 2023" "" "" +.TH "NPM-REPO" "1" "November 2023" "" "" .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 eea0fa265c0260..5f85577a45ac12 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" "October 2023" "" "" +.TH "NPM-RESTART" "1" "November 2023" "" "" .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 eb0cfdb848c9ef..1dce718fc0f961 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" "October 2023" "" "" +.TH "NPM-ROOT" "1" "November 2023" "" "" .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 df369cd43a6a7c..3718c9293d45a1 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" "October 2023" "" "" +.TH "NPM-RUN-SCRIPT" "1" "November 2023" "" "" .SH "NAME" \fBnpm-run-script\fR - Run arbitrary package scripts .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-sbom.1 b/deps/npm/man/man1/npm-sbom.1 index f9f14670f55a67..21a18ac91dc953 100644 --- a/deps/npm/man/man1/npm-sbom.1 +++ b/deps/npm/man/man1/npm-sbom.1 @@ -1,4 +1,4 @@ -.TH "NPM-SBOM" "1" "October 2023" "" "" +.TH "NPM-SBOM" "1" "November 2023" "" "" .SH "NAME" \fBnpm-sbom\fR - Generate a Software Bill of Materials (SBOM) .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-search.1 b/deps/npm/man/man1/npm-search.1 index 0dfb654fadf452..5aaeabd24af938 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" "October 2023" "" "" +.TH "NPM-SEARCH" "1" "November 2023" "" "" .SH "NAME" \fBnpm-search\fR - Search for packages .SS "Synopsis" diff --git a/deps/npm/man/man1/npm-shrinkwrap.1 b/deps/npm/man/man1/npm-shrinkwrap.1 index 6457db0d7ecd7f..7e29d4151728c3 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" "October 2023" "" "" +.TH "NPM-SHRINKWRAP" "1" "November 2023" "" "" .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 5656bc38c20ce6..b6a3f7e8f174a9 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" "October 2023" "" "" +.TH "NPM-STAR" "1" "November 2023" "" "" .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 e57b1311062b70..ad66d694917f68 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" "October 2023" "" "" +.TH "NPM-STARS" "1" "November 2023" "" "" .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 d88f1e2478ec73..f35690a145e58c 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" "October 2023" "" "" +.TH "NPM-START" "1" "November 2023" "" "" .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 4980c16fc6ea90..2913641d2845d3 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" "October 2023" "" "" +.TH "NPM-STOP" "1" "November 2023" "" "" .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 28b7b904fe0456..729e9d3194dd49 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" "October 2023" "" "" +.TH "NPM-TEAM" "1" "November 2023" "" "" .SH "NAME" \fBnpm-team\fR - Manage organization teams and team memberships .SS "Synopsis" @@ -23,7 +23,7 @@ Teams must always be fully qualified with the organization/scope they belong to If you have two-factor authentication enabled in \fBauth-and-writes\fR mode, then you can provide a code from your authenticator with \fB\[lB]--otp \[rB]\fR. If you don't include this then you will be taken through a second factor flow based on your \fBauthtype\fR. .RS 0 .IP \(bu 4 -create / destroy: Create a new team, or destroy an existing one. Note: You cannot remove the \fBdevelopers\fR team, learn more. +create / destroy: Create a new team, or destroy an existing one. Note: You cannot remove the \fBdevelopers\fR team, \fBlearn more.\fR \fI\(lahttps://docs.npmjs.com/about-developers-team\(ra\fR .P Here's how to create a new team \fBnewteam\fR under the \fBorg\fR org: .P diff --git a/deps/npm/man/man1/npm-test.1 b/deps/npm/man/man1/npm-test.1 index f2da6368450065..bfecac60a9a113 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" "October 2023" "" "" +.TH "NPM-TEST" "1" "November 2023" "" "" .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 8bbfaac64962aa..84e0e8ea0220a3 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" "October 2023" "" "" +.TH "NPM-TOKEN" "1" "November 2023" "" "" .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 17e906228b57d2..749ae7533a4f5f 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" "October 2023" "" "" +.TH "NPM-UNINSTALL" "1" "November 2023" "" "" .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 77eeb843b363b9..0b059350966a00 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" "October 2023" "" "" +.TH "NPM-UNPUBLISH" "1" "November 2023" "" "" .SH "NAME" \fBnpm-unpublish\fR - Remove a package from the registry .SS "Synopsis" @@ -9,7 +9,7 @@ npm unpublish \[lB]\[rB] .fi .RE .P -To learn more about how the npm registry treats unpublish, see our unpublish policies +To learn more about how the npm registry treats unpublish, see our \fBunpublish policies\fR \fI\(lahttps://docs.npmjs.com/policies/unpublish\(ra\fR. .SS "Warning" .P Consider using the npm help deprecate command instead, if your intent is to encourage users to upgrade, or if you no longer want to maintain a package. diff --git a/deps/npm/man/man1/npm-unstar.1 b/deps/npm/man/man1/npm-unstar.1 index d77464de965580..0e44709c83da65 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" "October 2023" "" "" +.TH "NPM-UNSTAR" "1" "November 2023" "" "" .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 4b59f8600e0a67..0b247f80d8d9f8 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" "October 2023" "" "" +.TH "NPM-UPDATE" "1" "November 2023" "" "" .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 03dd68d3e0956a..07f8352de3c7ce 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" "October 2023" "" "" +.TH "NPM-VERSION" "1" "November 2023" "" "" .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 73512687904971..decf76a1e9bfc7 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" "October 2023" "" "" +.TH "NPM-VIEW" "1" "November 2023" "" "" .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 67735a171494e1..6e182bbff873c2 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" "October 2023" "" "" +.TH "NPM-WHOAMI" "1" "November 2023" "" "" .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 740c99ee0be370..2f08cb27dbbca5 100644 --- a/deps/npm/man/man1/npm.1 +++ b/deps/npm/man/man1/npm.1 @@ -1,4 +1,4 @@ -.TH "NPM" "1" "October 2023" "" "" +.TH "NPM" "1" "November 2023" "" "" .SH "NAME" \fBnpm\fR - javascript package manager .SS "Synopsis" @@ -12,7 +12,7 @@ npm Note: This command is unaware of workspaces. .SS "Version" .P -10.2.0 +10.2.3 .SS "Description" .P npm is the package manager for the Node JavaScript platform. It puts modules in place so that node can find them, and manages dependency conflicts intelligently. diff --git a/deps/npm/man/man1/npx.1 b/deps/npm/man/man1/npx.1 index a280ca57f7a7ad..d318fa2a6ea6c6 100644 --- a/deps/npm/man/man1/npx.1 +++ b/deps/npm/man/man1/npx.1 @@ -1,4 +1,4 @@ -.TH "NPX" "1" "October 2023" "" "" +.TH "NPX" "1" "November 2023" "" "" .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 d3e9e6fc78dffc..f6248235a2e9bd 100644 --- a/deps/npm/man/man5/folders.5 +++ b/deps/npm/man/man5/folders.5 @@ -1,4 +1,4 @@ -.TH "FOLDERS" "5" "October 2023" "" "" +.TH "FOLDERS" "5" "November 2023" "" "" .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 3a8da18ba18544..5b32048710b9e0 100644 --- a/deps/npm/man/man5/install.5 +++ b/deps/npm/man/man5/install.5 @@ -1,4 +1,4 @@ -.TH "INSTALL" "5" "October 2023" "" "" +.TH "INSTALL" "5" "November 2023" "" "" .SH "NAME" \fBinstall\fR - Download and install node and npm .SS "Description" diff --git a/deps/npm/man/man5/npm-global.5 b/deps/npm/man/man5/npm-global.5 index d3e9e6fc78dffc..f6248235a2e9bd 100644 --- a/deps/npm/man/man5/npm-global.5 +++ b/deps/npm/man/man5/npm-global.5 @@ -1,4 +1,4 @@ -.TH "FOLDERS" "5" "October 2023" "" "" +.TH "FOLDERS" "5" "November 2023" "" "" .SH "NAME" \fBfolders\fR - Folder Structures Used by npm .SS "Description" diff --git a/deps/npm/man/man5/npm-json.5 b/deps/npm/man/man5/npm-json.5 index 71d630e750e645..8054048290285e 100644 --- a/deps/npm/man/man5/npm-json.5 +++ b/deps/npm/man/man5/npm-json.5 @@ -1,4 +1,4 @@ -.TH "PACKAGE.JSON" "5" "October 2023" "" "" +.TH "PACKAGE.JSON" "5" "November 2023" "" "" .SH "NAME" \fBpackage.json\fR - Specifics of npm's package.json handling .SS "Description" diff --git a/deps/npm/man/man5/npm-shrinkwrap-json.5 b/deps/npm/man/man5/npm-shrinkwrap-json.5 index 8346df052db259..d1f8b923c2c0de 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" "October 2023" "" "" +.TH "NPM-SHRINKWRAP.JSON" "5" "November 2023" "" "" .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 d7dc344865c4a0..2fe1d3eeba7cc7 100644 --- a/deps/npm/man/man5/npmrc.5 +++ b/deps/npm/man/man5/npmrc.5 @@ -1,4 +1,4 @@ -.TH "NPMRC" "5" "October 2023" "" "" +.TH "NPMRC" "5" "November 2023" "" "" .SH "NAME" \fBnpmrc\fR - The npm config files .SS "Description" diff --git a/deps/npm/man/man5/package-json.5 b/deps/npm/man/man5/package-json.5 index 71d630e750e645..8054048290285e 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" "October 2023" "" "" +.TH "PACKAGE.JSON" "5" "November 2023" "" "" .SH "NAME" \fBpackage.json\fR - Specifics of npm's package.json handling .SS "Description" diff --git a/deps/npm/man/man5/package-lock-json.5 b/deps/npm/man/man5/package-lock-json.5 index 22ae8cd1dd2d87..2f303d610ff127 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" "October 2023" "" "" +.TH "PACKAGE-LOCK.JSON" "5" "November 2023" "" "" .SH "NAME" \fBpackage-lock.json\fR - A manifestation of the manifest .SS "Description" @@ -69,7 +69,7 @@ No version provided: an "ancient" shrinkwrap file from a version of npm prior to .IP \(bu 4 \fB2\fR: The lockfile version used by npm v7 and v8. Backwards compatible to v1 lockfiles. .IP \(bu 4 -\fB3\fR: The lockfile version used by npm v9. Backwards compatible to npm v7. +\fB3\fR: The lockfile version used by npm v9 and above. Backwards compatible to npm v7. .RE 0 .P diff --git a/deps/npm/man/man7/config.7 b/deps/npm/man/man7/config.7 index 496cfcb4ba71a2..73552f74e29746 100644 --- a/deps/npm/man/man7/config.7 +++ b/deps/npm/man/man7/config.7 @@ -1,4 +1,4 @@ -.TH "CONFIG" "7" "October 2023" "" "" +.TH "CONFIG" "7" "November 2023" "" "" .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 fe78a200cb682f..78aaa5a18a9fff 100644 --- a/deps/npm/man/man7/dependency-selectors.7 +++ b/deps/npm/man/man7/dependency-selectors.7 @@ -1,4 +1,4 @@ -.TH "QUERYING" "7" "October 2023" "" "" +.TH "QUERYING" "7" "November 2023" "" "" .SH "NAME" \fBQuerying\fR - Dependency Selector Syntax & Querying .SS "Description" diff --git a/deps/npm/man/man7/developers.7 b/deps/npm/man/man7/developers.7 index e0748fe1960c7d..9516ee1030c22a 100644 --- a/deps/npm/man/man7/developers.7 +++ b/deps/npm/man/man7/developers.7 @@ -1,4 +1,4 @@ -.TH "DEVELOPERS" "7" "October 2023" "" "" +.TH "DEVELOPERS" "7" "November 2023" "" "" .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 767759fbb8249d..a6fb699796ea5d 100644 --- a/deps/npm/man/man7/logging.7 +++ b/deps/npm/man/man7/logging.7 @@ -1,4 +1,4 @@ -.TH "LOGGING" "7" "October 2023" "" "" +.TH "LOGGING" "7" "November 2023" "" "" .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 68410b66be297b..2f282bc29165de 100644 --- a/deps/npm/man/man7/orgs.7 +++ b/deps/npm/man/man7/orgs.7 @@ -1,4 +1,4 @@ -.TH "ORGS" "7" "October 2023" "" "" +.TH "ORGS" "7" "November 2023" "" "" .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 212d78dd71bf0b..6c38ccdcbf8434 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" "October 2023" "" "" +.TH "PACKAGE-SPEC" "7" "November 2023" "" "" .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 f1133f43666af7..a1dc9352fc706b 100644 --- a/deps/npm/man/man7/registry.7 +++ b/deps/npm/man/man7/registry.7 @@ -1,4 +1,4 @@ -.TH "REGISTRY" "7" "October 2023" "" "" +.TH "REGISTRY" "7" "November 2023" "" "" .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 f96bbe84a4ea5a..0047ac99fd5832 100644 --- a/deps/npm/man/man7/removal.7 +++ b/deps/npm/man/man7/removal.7 @@ -1,4 +1,4 @@ -.TH "REMOVAL" "7" "October 2023" "" "" +.TH "REMOVAL" "7" "November 2023" "" "" .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 c2a6ecd8d25342..b7c6d0104ac3b8 100644 --- a/deps/npm/man/man7/scope.7 +++ b/deps/npm/man/man7/scope.7 @@ -1,4 +1,4 @@ -.TH "SCOPE" "7" "October 2023" "" "" +.TH "SCOPE" "7" "November 2023" "" "" .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 8306b12e37fa8a..881e8202e086f3 100644 --- a/deps/npm/man/man7/scripts.7 +++ b/deps/npm/man/man7/scripts.7 @@ -1,4 +1,4 @@ -.TH "SCRIPTS" "7" "October 2023" "" "" +.TH "SCRIPTS" "7" "November 2023" "" "" .SH "NAME" \fBscripts\fR - How npm handles the "scripts" field .SS "Description" @@ -201,8 +201,6 @@ These are run from the scripts of \fB\fR \fBpostpublish\fR .RE 0 -.P -\fBprepare\fR will not run during \fB--dry-run\fR .SS "npm help rebuild" .RS 0 .IP \(bu 4 diff --git a/deps/npm/man/man7/workspaces.7 b/deps/npm/man/man7/workspaces.7 index 0558c8446399f6..a81dd84a928fb0 100644 --- a/deps/npm/man/man7/workspaces.7 +++ b/deps/npm/man/man7/workspaces.7 @@ -1,4 +1,4 @@ -.TH "WORKSPACES" "7" "October 2023" "" "" +.TH "WORKSPACES" "7" "November 2023" "" "" .SH "NAME" \fBworkspaces\fR - Working with workspaces .SS "Description" diff --git a/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/dist/index.js b/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/dist/index.js index e3bbfe632c454d..978af031baf3aa 100644 --- a/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/dist/index.js +++ b/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/dist/index.js @@ -81,7 +81,11 @@ class HttpsProxyAgent extends agent_base_1.Agent { let socket; if (proxy.protocol === 'https:') { debug('Creating `tls.Socket`: %o', this.connectOpts); - socket = tls.connect(this.connectOpts); + const servername = this.connectOpts.servername || this.connectOpts.host; + socket = tls.connect({ + ...this.connectOpts, + servername: servername && net.isIP(servername) ? undefined : servername + }); } else { debug('Creating `net.Socket`: %o', this.connectOpts); diff --git a/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/dist/parse-proxy-response.js b/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/dist/parse-proxy-response.js index a28f1d811805f8..d3f506f9413066 100644 --- a/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/dist/parse-proxy-response.js +++ b/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/dist/parse-proxy-response.js @@ -47,7 +47,10 @@ function parseProxyResponse(socket) { read(); return; } - const headerParts = buffered.slice(0, endOfHeaders).toString('ascii').split('\r\n'); + const headerParts = buffered + .slice(0, endOfHeaders) + .toString('ascii') + .split('\r\n'); const firstLine = headerParts.shift(); if (!firstLine) { socket.destroy(); diff --git a/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/package.json b/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/package.json index fc5f988d3b02bf..07c04f82a9c3ab 100644 --- a/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/package.json +++ b/deps/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent/package.json @@ -1,6 +1,6 @@ { "name": "https-proxy-agent", - "version": "7.0.1", + "version": "7.0.2", "description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/deps/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent/dist/index.js b/deps/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent/dist/index.js index 8189e014c13a0d..102ecd64c0b9d6 100644 --- a/deps/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent/dist/index.js +++ b/deps/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent/dist/index.js @@ -33,6 +33,7 @@ const debug_1 = __importDefault(require("debug")); const dns = __importStar(require("dns")); const net = __importStar(require("net")); const tls = __importStar(require("tls")); +const url_1 = require("url"); const debug = (0, debug_1.default)('socks-proxy-agent'); function parseSocksURL(url) { let lookup = false; @@ -88,7 +89,7 @@ function parseSocksURL(url) { class SocksProxyAgent extends agent_base_1.Agent { constructor(uri, opts) { super(opts); - const url = typeof uri === 'string' ? new URL(uri) : uri; + const url = typeof uri === 'string' ? new url_1.URL(uri) : uri; const { proxy, lookup } = parseSocksURL(url); this.shouldLookup = lookup; this.proxy = proxy; diff --git a/deps/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent/package.json b/deps/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent/package.json index a6c7c0741641a1..6e1c2c12de3674 100644 --- a/deps/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent/package.json +++ b/deps/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent/package.json @@ -1,6 +1,6 @@ { "name": "socks-proxy-agent", - "version": "8.0.1", + "version": "8.0.2", "description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS", "main": "./dist/index.js", "types": "./dist/index.d.ts", @@ -107,7 +107,7 @@ "socks5h" ], "dependencies": { - "agent-base": "^7.0.1", + "agent-base": "^7.0.2", "debug": "^4.3.4", "socks": "^2.7.1" }, @@ -117,7 +117,7 @@ "@types/dns2": "^2.0.3", "@types/jest": "^29.5.1", "@types/node": "^14.18.45", - "async-listen": "^2.1.0", + "async-listen": "^3.0.0", "async-retry": "^1.3.3", "cacheable-lookup": "^6.1.0", "dns2": "^2.1.0", @@ -125,8 +125,8 @@ "socksv5": "github:TooTallNate/socksv5#fix/dstSock-close-event", "ts-jest": "^29.1.0", "typescript": "^5.0.4", - "tsconfig": "0.0.0", - "proxy": "2.0.1" + "proxy": "2.1.1", + "tsconfig": "0.0.0" }, "engines": { "node": ">= 14" diff --git a/deps/npm/node_modules/@npmcli/arborist/package.json b/deps/npm/node_modules/@npmcli/arborist/package.json index 95d9bc7416905b..a4d47d5627031c 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": "7.2.0", + "version": "7.2.1", "description": "Manage node_modules trees", "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", @@ -12,7 +12,7 @@ "@npmcli/node-gyp": "^3.0.0", "@npmcli/package-json": "^5.0.0", "@npmcli/query": "^3.0.1", - "@npmcli/run-script": "^7.0.1", + "@npmcli/run-script": "^7.0.2", "bin-links": "^4.0.1", "cacache": "^18.0.0", "common-ancestor-path": "^1.0.1", diff --git a/deps/npm/node_modules/@npmcli/config/README.md b/deps/npm/node_modules/@npmcli/config/README.md index 32418381a4c76a..12a5e23331d3ae 100644 --- a/deps/npm/node_modules/@npmcli/config/README.md +++ b/deps/npm/node_modules/@npmcli/config/README.md @@ -55,20 +55,17 @@ The resulting hierarchy of configs: ```js const Config = require('@npmcli/config') -// the types of all the configs we know about -const types = require('./config/types.js') -// default values for all the configs we know about -const defaults = require('./config/defaults.js') -// if you want -c to be short for --call and so on, define it here -const shorthands = require('./config/shorthands.js') +const { shorthands, definitions, flatten } = require('@npmcli/config/lib/definitions') const conf = new Config({ // path to the npm module being run npmPath: resolve(__dirname, '..'), - types, + definitions, shorthands, - defaults, + flatten, // optional, defaults to process.argv + // argv: [] <- if you are using this package in your own cli + // and dont want to have colliding argv argv: process.argv, // optional, defaults to process.env env: process.env, diff --git a/deps/npm/node_modules/@npmcli/config/lib/index.js b/deps/npm/node_modules/@npmcli/config/lib/index.js index ad07fcdf51826a..b09ecc478f64fd 100644 --- a/deps/npm/node_modules/@npmcli/config/lib/index.js +++ b/deps/npm/node_modules/@npmcli/config/lib/index.js @@ -774,29 +774,29 @@ class Config { await chmod(conf.source, mode) } - clearCredentialsByURI (uri) { + clearCredentialsByURI (uri, level = 'user') { const nerfed = nerfDart(uri) const def = nerfDart(this.get('registry')) if (def === nerfed) { - this.delete(`-authtoken`, 'user') - this.delete(`_authToken`, 'user') - this.delete(`_authtoken`, 'user') - this.delete(`_auth`, 'user') - this.delete(`_password`, 'user') - this.delete(`username`, 'user') + this.delete(`-authtoken`, level) + this.delete(`_authToken`, level) + this.delete(`_authtoken`, level) + this.delete(`_auth`, level) + this.delete(`_password`, level) + this.delete(`username`, level) // de-nerf email if it's nerfed to the default registry - const email = this.get(`${nerfed}:email`, 'user') + const email = this.get(`${nerfed}:email`, level) if (email) { - this.set('email', email, 'user') + this.set('email', email, level) } } - this.delete(`${nerfed}:_authToken`, 'user') - this.delete(`${nerfed}:_auth`, 'user') - this.delete(`${nerfed}:_password`, 'user') - this.delete(`${nerfed}:username`, 'user') - this.delete(`${nerfed}:email`, 'user') - this.delete(`${nerfed}:certfile`, 'user') - this.delete(`${nerfed}:keyfile`, 'user') + this.delete(`${nerfed}:_authToken`, level) + this.delete(`${nerfed}:_auth`, level) + this.delete(`${nerfed}:_password`, level) + this.delete(`${nerfed}:username`, level) + this.delete(`${nerfed}:email`, level) + this.delete(`${nerfed}:certfile`, level) + this.delete(`${nerfed}:keyfile`, level) } setCredentialsByURI (uri, { token, username, password, email, certfile, keyfile }) { diff --git a/deps/npm/node_modules/@npmcli/config/package.json b/deps/npm/node_modules/@npmcli/config/package.json index 85af7ee1c7d405..2f30c7ff98a644 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": "8.0.0", + "version": "8.0.1", "files": [ "bin/", "lib/" diff --git a/deps/npm/node_modules/@npmcli/run-script/package.json b/deps/npm/node_modules/@npmcli/run-script/package.json index 7e7d2561571566..21f00c7f1cbfbb 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": "7.0.1", + "version": "7.0.2", "description": "Run a lifecycle script for a package (descendant of npm-lifecycle)", "author": "GitHub Inc.", "license": "ISC", @@ -16,14 +16,14 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.18.0", + "@npmcli/template-oss": "4.19.0", "require-inject": "^1.4.4", "tap": "^16.0.1" }, "dependencies": { "@npmcli/node-gyp": "^3.0.0", "@npmcli/promise-spawn": "^7.0.0", - "node-gyp": "^9.0.0", + "node-gyp": "^10.0.0", "read-package-json-fast": "^3.0.0", "which": "^4.0.0" }, @@ -41,13 +41,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "ciVersions": [ - "16.14.0", - "16.x", - "18.0.0", - "18.x" - ], - "version": "4.18.0", + "version": "4.19.0", "publish": "true" }, "tap": { diff --git a/deps/npm/node_modules/@tootallnate/once/LICENSE b/deps/npm/node_modules/@tootallnate/once/LICENSE deleted file mode 100644 index c4c56a2a53b2fe..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020 Nathan Rajlich - -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/deps/npm/node_modules/@tootallnate/once/dist/index.js b/deps/npm/node_modules/@tootallnate/once/dist/index.js deleted file mode 100644 index ca6385b1b82f88..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/dist/index.js +++ /dev/null @@ -1,24 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -function once(emitter, name, { signal } = {}) { - return new Promise((resolve, reject) => { - function cleanup() { - signal === null || signal === void 0 ? void 0 : signal.removeEventListener('abort', cleanup); - emitter.removeListener(name, onEvent); - emitter.removeListener('error', onError); - } - function onEvent(...args) { - cleanup(); - resolve(args); - } - function onError(err) { - cleanup(); - reject(err); - } - signal === null || signal === void 0 ? void 0 : signal.addEventListener('abort', cleanup); - emitter.on(name, onEvent); - emitter.on('error', onError); - }); -} -exports.default = once; -//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/@tootallnate/once/dist/overloaded-parameters.js b/deps/npm/node_modules/@tootallnate/once/dist/overloaded-parameters.js deleted file mode 100644 index 207186d9e7cca0..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/dist/overloaded-parameters.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -//# sourceMappingURL=overloaded-parameters.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/@tootallnate/once/dist/types.js b/deps/npm/node_modules/@tootallnate/once/dist/types.js deleted file mode 100644 index 11e638d1ee44ae..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/dist/types.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -//# sourceMappingURL=types.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/@tootallnate/once/package.json b/deps/npm/node_modules/@tootallnate/once/package.json deleted file mode 100644 index 69ce947d9c3103..00000000000000 --- a/deps/npm/node_modules/@tootallnate/once/package.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "name": "@tootallnate/once", - "version": "2.0.0", - "description": "Creates a Promise that waits for a single event", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", - "files": [ - "dist" - ], - "scripts": { - "prebuild": "rimraf dist", - "build": "tsc", - "test": "jest", - "prepublishOnly": "npm run build" - }, - "repository": { - "type": "git", - "url": "git://github.com/TooTallNate/once.git" - }, - "keywords": [], - "author": "Nathan Rajlich (http://n8.io/)", - "license": "MIT", - "bugs": { - "url": "https://github.com/TooTallNate/once/issues" - }, - "devDependencies": { - "@types/jest": "^27.0.2", - "@types/node": "^12.12.11", - "abort-controller": "^3.0.0", - "jest": "^27.2.1", - "rimraf": "^3.0.0", - "ts-jest": "^27.0.5", - "typescript": "^4.4.3" - }, - "engines": { - "node": ">= 10" - }, - "jest": { - "preset": "ts-jest", - "globals": { - "ts-jest": { - "diagnostics": false, - "isolatedModules": true - } - }, - "verbose": false, - "testEnvironment": "node", - "testMatch": [ - "/test/**/*.test.ts" - ] - } -} diff --git a/deps/npm/node_modules/agent-base/dist/src/index.js b/deps/npm/node_modules/agent-base/dist/src/index.js deleted file mode 100644 index bfd9e22071e7ee..00000000000000 --- a/deps/npm/node_modules/agent-base/dist/src/index.js +++ /dev/null @@ -1,203 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -const events_1 = require("events"); -const debug_1 = __importDefault(require("debug")); -const promisify_1 = __importDefault(require("./promisify")); -const debug = debug_1.default('agent-base'); -function isAgent(v) { - return Boolean(v) && typeof v.addRequest === 'function'; -} -function isSecureEndpoint() { - const { stack } = new Error(); - if (typeof stack !== 'string') - return false; - return stack.split('\n').some(l => l.indexOf('(https.js:') !== -1 || l.indexOf('node:https:') !== -1); -} -function createAgent(callback, opts) { - return new createAgent.Agent(callback, opts); -} -(function (createAgent) { - /** - * Base `http.Agent` implementation. - * No pooling/keep-alive is implemented by default. - * - * @param {Function} callback - * @api public - */ - class Agent extends events_1.EventEmitter { - constructor(callback, _opts) { - super(); - let opts = _opts; - if (typeof callback === 'function') { - this.callback = callback; - } - else if (callback) { - opts = callback; - } - // Timeout for the socket to be returned from the callback - this.timeout = null; - if (opts && typeof opts.timeout === 'number') { - this.timeout = opts.timeout; - } - // These aren't actually used by `agent-base`, but are required - // for the TypeScript definition files in `@types/node` :/ - this.maxFreeSockets = 1; - this.maxSockets = 1; - this.maxTotalSockets = Infinity; - this.sockets = {}; - this.freeSockets = {}; - this.requests = {}; - this.options = {}; - } - get defaultPort() { - if (typeof this.explicitDefaultPort === 'number') { - return this.explicitDefaultPort; - } - return isSecureEndpoint() ? 443 : 80; - } - set defaultPort(v) { - this.explicitDefaultPort = v; - } - get protocol() { - if (typeof this.explicitProtocol === 'string') { - return this.explicitProtocol; - } - return isSecureEndpoint() ? 'https:' : 'http:'; - } - set protocol(v) { - this.explicitProtocol = v; - } - callback(req, opts, fn) { - throw new Error('"agent-base" has no default implementation, you must subclass and override `callback()`'); - } - /** - * Called by node-core's "_http_client.js" module when creating - * a new HTTP request with this Agent instance. - * - * @api public - */ - addRequest(req, _opts) { - const opts = Object.assign({}, _opts); - if (typeof opts.secureEndpoint !== 'boolean') { - opts.secureEndpoint = isSecureEndpoint(); - } - if (opts.host == null) { - opts.host = 'localhost'; - } - if (opts.port == null) { - opts.port = opts.secureEndpoint ? 443 : 80; - } - if (opts.protocol == null) { - opts.protocol = opts.secureEndpoint ? 'https:' : 'http:'; - } - if (opts.host && opts.path) { - // If both a `host` and `path` are specified then it's most - // likely the result of a `url.parse()` call... we need to - // remove the `path` portion so that `net.connect()` doesn't - // attempt to open that as a unix socket file. - delete opts.path; - } - delete opts.agent; - delete opts.hostname; - delete opts._defaultAgent; - delete opts.defaultPort; - delete opts.createConnection; - // Hint to use "Connection: close" - // XXX: non-documented `http` module API :( - req._last = true; - req.shouldKeepAlive = false; - let timedOut = false; - let timeoutId = null; - const timeoutMs = opts.timeout || this.timeout; - const onerror = (err) => { - if (req._hadError) - return; - req.emit('error', err); - // For Safety. Some additional errors might fire later on - // and we need to make sure we don't double-fire the error event. - req._hadError = true; - }; - const ontimeout = () => { - timeoutId = null; - timedOut = true; - const err = new Error(`A "socket" was not created for HTTP request before ${timeoutMs}ms`); - err.code = 'ETIMEOUT'; - onerror(err); - }; - const callbackError = (err) => { - if (timedOut) - return; - if (timeoutId !== null) { - clearTimeout(timeoutId); - timeoutId = null; - } - onerror(err); - }; - const onsocket = (socket) => { - if (timedOut) - return; - if (timeoutId != null) { - clearTimeout(timeoutId); - timeoutId = null; - } - if (isAgent(socket)) { - // `socket` is actually an `http.Agent` instance, so - // relinquish responsibility for this `req` to the Agent - // from here on - debug('Callback returned another Agent instance %o', socket.constructor.name); - socket.addRequest(req, opts); - return; - } - if (socket) { - socket.once('free', () => { - this.freeSocket(socket, opts); - }); - req.onSocket(socket); - return; - } - const err = new Error(`no Duplex stream was returned to agent-base for \`${req.method} ${req.path}\``); - onerror(err); - }; - if (typeof this.callback !== 'function') { - onerror(new Error('`callback` is not defined')); - return; - } - if (!this.promisifiedCallback) { - if (this.callback.length >= 3) { - debug('Converting legacy callback function to promise'); - this.promisifiedCallback = promisify_1.default(this.callback); - } - else { - this.promisifiedCallback = this.callback; - } - } - if (typeof timeoutMs === 'number' && timeoutMs > 0) { - timeoutId = setTimeout(ontimeout, timeoutMs); - } - if ('port' in opts && typeof opts.port !== 'number') { - opts.port = Number(opts.port); - } - try { - debug('Resolving socket for %o request: %o', opts.protocol, `${req.method} ${req.path}`); - Promise.resolve(this.promisifiedCallback(req, opts)).then(onsocket, callbackError); - } - catch (err) { - Promise.reject(err).catch(callbackError); - } - } - freeSocket(socket, opts) { - debug('Freeing socket %o %o', socket.constructor.name, opts); - socket.destroy(); - } - destroy() { - debug('Destroying agent %o', this.constructor.name); - } - } - createAgent.Agent = Agent; - // So that `instanceof` works correctly - createAgent.prototype = createAgent.Agent.prototype; -})(createAgent || (createAgent = {})); -module.exports = createAgent; -//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/agent-base/dist/src/promisify.js b/deps/npm/node_modules/agent-base/dist/src/promisify.js deleted file mode 100644 index b2f6132a7beaa5..00000000000000 --- a/deps/npm/node_modules/agent-base/dist/src/promisify.js +++ /dev/null @@ -1,18 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -function promisify(fn) { - return function (req, opts) { - return new Promise((resolve, reject) => { - fn.call(this, req, opts, (err, rtn) => { - if (err) { - reject(err); - } - else { - resolve(rtn); - } - }); - }); - }; -} -exports.default = promisify; -//# sourceMappingURL=promisify.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/agent-base/package.json b/deps/npm/node_modules/agent-base/package.json deleted file mode 100644 index fadce3ad99f22d..00000000000000 --- a/deps/npm/node_modules/agent-base/package.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "name": "agent-base", - "version": "6.0.2", - "description": "Turn a function into an `http.Agent` instance", - "main": "dist/src/index", - "typings": "dist/src/index", - "files": [ - "dist/src", - "src" - ], - "scripts": { - "prebuild": "rimraf dist", - "build": "tsc", - "postbuild": "cpy --parents src test '!**/*.ts' dist", - "test": "mocha --reporter spec dist/test/*.js", - "test-lint": "eslint src --ext .js,.ts", - "prepublishOnly": "npm run build" - }, - "repository": { - "type": "git", - "url": "git://github.com/TooTallNate/node-agent-base.git" - }, - "keywords": [ - "http", - "agent", - "base", - "barebones", - "https" - ], - "author": "Nathan Rajlich (http://n8.io/)", - "license": "MIT", - "bugs": { - "url": "https://github.com/TooTallNate/node-agent-base/issues" - }, - "dependencies": { - "debug": "4" - }, - "devDependencies": { - "@types/debug": "4", - "@types/mocha": "^5.2.7", - "@types/node": "^14.0.20", - "@types/semver": "^7.1.0", - "@types/ws": "^6.0.3", - "@typescript-eslint/eslint-plugin": "1.6.0", - "@typescript-eslint/parser": "1.1.0", - "async-listen": "^1.2.0", - "cpy-cli": "^2.0.0", - "eslint": "5.16.0", - "eslint-config-airbnb": "17.1.0", - "eslint-config-prettier": "4.1.0", - "eslint-import-resolver-typescript": "1.1.1", - "eslint-plugin-import": "2.16.0", - "eslint-plugin-jsx-a11y": "6.2.1", - "eslint-plugin-react": "7.12.4", - "mocha": "^6.2.0", - "rimraf": "^3.0.0", - "semver": "^7.1.2", - "typescript": "^3.5.3", - "ws": "^3.0.0" - }, - "engines": { - "node": ">= 6.0.0" - } -} diff --git a/deps/npm/node_modules/agentkeepalive/LICENSE b/deps/npm/node_modules/agentkeepalive/LICENSE deleted file mode 100644 index 941258ca703b30..00000000000000 --- a/deps/npm/node_modules/agentkeepalive/LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright(c) node-modules and other contributors. -Copyright(c) 2012 - 2015 fengmk2 - -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/deps/npm/node_modules/agentkeepalive/browser.js b/deps/npm/node_modules/agentkeepalive/browser.js deleted file mode 100644 index 29c9398aa567f9..00000000000000 --- a/deps/npm/node_modules/agentkeepalive/browser.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = noop; -module.exports.HttpsAgent = noop; - -// Noop function for browser since native api's don't use agents. -function noop () {} diff --git a/deps/npm/node_modules/agentkeepalive/index.js b/deps/npm/node_modules/agentkeepalive/index.js deleted file mode 100644 index 6ca1513463724d..00000000000000 --- a/deps/npm/node_modules/agentkeepalive/index.js +++ /dev/null @@ -1,5 +0,0 @@ -'use strict'; - -module.exports = require('./lib/agent'); -module.exports.HttpsAgent = require('./lib/https_agent'); -module.exports.constants = require('./lib/constants'); diff --git a/deps/npm/node_modules/agentkeepalive/lib/agent.js b/deps/npm/node_modules/agentkeepalive/lib/agent.js deleted file mode 100644 index 8bd354effa05ec..00000000000000 --- a/deps/npm/node_modules/agentkeepalive/lib/agent.js +++ /dev/null @@ -1,402 +0,0 @@ -'use strict'; - -const OriginalAgent = require('http').Agent; -const ms = require('humanize-ms'); -const debug = require('util').debuglog('agentkeepalive'); -const { - INIT_SOCKET, - CURRENT_ID, - CREATE_ID, - SOCKET_CREATED_TIME, - SOCKET_NAME, - SOCKET_REQUEST_COUNT, - SOCKET_REQUEST_FINISHED_COUNT, -} = require('./constants'); - -// OriginalAgent come from -// - https://github.com/nodejs/node/blob/v8.12.0/lib/_http_agent.js -// - https://github.com/nodejs/node/blob/v10.12.0/lib/_http_agent.js - -// node <= 10 -let defaultTimeoutListenerCount = 1; -const majorVersion = parseInt(process.version.split('.', 1)[0].substring(1)); -if (majorVersion >= 11 && majorVersion <= 12) { - defaultTimeoutListenerCount = 2; -} else if (majorVersion >= 13) { - defaultTimeoutListenerCount = 3; -} - -function deprecate(message) { - console.log('[agentkeepalive:deprecated] %s', message); -} - -class Agent extends OriginalAgent { - constructor(options) { - options = options || {}; - options.keepAlive = options.keepAlive !== false; - // default is keep-alive and 4s free socket timeout - // see https://medium.com/ssense-tech/reduce-networking-errors-in-nodejs-23b4eb9f2d83 - if (options.freeSocketTimeout === undefined) { - options.freeSocketTimeout = 4000; - } - // Legacy API: keepAliveTimeout should be rename to `freeSocketTimeout` - if (options.keepAliveTimeout) { - deprecate('options.keepAliveTimeout is deprecated, please use options.freeSocketTimeout instead'); - options.freeSocketTimeout = options.keepAliveTimeout; - delete options.keepAliveTimeout; - } - // Legacy API: freeSocketKeepAliveTimeout should be rename to `freeSocketTimeout` - if (options.freeSocketKeepAliveTimeout) { - deprecate('options.freeSocketKeepAliveTimeout is deprecated, please use options.freeSocketTimeout instead'); - options.freeSocketTimeout = options.freeSocketKeepAliveTimeout; - delete options.freeSocketKeepAliveTimeout; - } - - // Sets the socket to timeout after timeout milliseconds of inactivity on the socket. - // By default is double free socket timeout. - if (options.timeout === undefined) { - // make sure socket default inactivity timeout >= 8s - options.timeout = Math.max(options.freeSocketTimeout * 2, 8000); - } - - // support humanize format - options.timeout = ms(options.timeout); - options.freeSocketTimeout = ms(options.freeSocketTimeout); - options.socketActiveTTL = options.socketActiveTTL ? ms(options.socketActiveTTL) : 0; - - super(options); - - this[CURRENT_ID] = 0; - - // create socket success counter - this.createSocketCount = 0; - this.createSocketCountLastCheck = 0; - - this.createSocketErrorCount = 0; - this.createSocketErrorCountLastCheck = 0; - - this.closeSocketCount = 0; - this.closeSocketCountLastCheck = 0; - - // socket error event count - this.errorSocketCount = 0; - this.errorSocketCountLastCheck = 0; - - // request finished counter - this.requestCount = 0; - this.requestCountLastCheck = 0; - - // including free socket timeout counter - this.timeoutSocketCount = 0; - this.timeoutSocketCountLastCheck = 0; - - this.on('free', socket => { - // https://github.com/nodejs/node/pull/32000 - // Node.js native agent will check socket timeout eqs agent.options.timeout. - // Use the ttl or freeSocketTimeout to overwrite. - const timeout = this.calcSocketTimeout(socket); - if (timeout > 0 && socket.timeout !== timeout) { - socket.setTimeout(timeout); - } - }); - } - - get freeSocketKeepAliveTimeout() { - deprecate('agent.freeSocketKeepAliveTimeout is deprecated, please use agent.options.freeSocketTimeout instead'); - return this.options.freeSocketTimeout; - } - - get timeout() { - deprecate('agent.timeout is deprecated, please use agent.options.timeout instead'); - return this.options.timeout; - } - - get socketActiveTTL() { - deprecate('agent.socketActiveTTL is deprecated, please use agent.options.socketActiveTTL instead'); - return this.options.socketActiveTTL; - } - - calcSocketTimeout(socket) { - /** - * return <= 0: should free socket - * return > 0: should update socket timeout - * return undefined: not find custom timeout - */ - let freeSocketTimeout = this.options.freeSocketTimeout; - const socketActiveTTL = this.options.socketActiveTTL; - if (socketActiveTTL) { - // check socketActiveTTL - const aliveTime = Date.now() - socket[SOCKET_CREATED_TIME]; - const diff = socketActiveTTL - aliveTime; - if (diff <= 0) { - return diff; - } - if (freeSocketTimeout && diff < freeSocketTimeout) { - freeSocketTimeout = diff; - } - } - // set freeSocketTimeout - if (freeSocketTimeout) { - // set free keepalive timer - // try to use socket custom freeSocketTimeout first, support headers['keep-alive'] - // https://github.com/node-modules/urllib/blob/b76053020923f4d99a1c93cf2e16e0c5ba10bacf/lib/urllib.js#L498 - const customFreeSocketTimeout = socket.freeSocketTimeout || socket.freeSocketKeepAliveTimeout; - return customFreeSocketTimeout || freeSocketTimeout; - } - } - - keepSocketAlive(socket) { - const result = super.keepSocketAlive(socket); - // should not keepAlive, do nothing - if (!result) return result; - - const customTimeout = this.calcSocketTimeout(socket); - if (typeof customTimeout === 'undefined') { - return true; - } - if (customTimeout <= 0) { - debug('%s(requests: %s, finished: %s) free but need to destroy by TTL, request count %s, diff is %s', - socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], customTimeout); - return false; - } - if (socket.timeout !== customTimeout) { - socket.setTimeout(customTimeout); - } - return true; - } - - // only call on addRequest - reuseSocket(...args) { - // reuseSocket(socket, req) - super.reuseSocket(...args); - const socket = args[0]; - const req = args[1]; - req.reusedSocket = true; - const agentTimeout = this.options.timeout; - if (getSocketTimeout(socket) !== agentTimeout) { - // reset timeout before use - socket.setTimeout(agentTimeout); - debug('%s reset timeout to %sms', socket[SOCKET_NAME], agentTimeout); - } - socket[SOCKET_REQUEST_COUNT]++; - debug('%s(requests: %s, finished: %s) reuse on addRequest, timeout %sms', - socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], - getSocketTimeout(socket)); - } - - [CREATE_ID]() { - const id = this[CURRENT_ID]++; - if (this[CURRENT_ID] === Number.MAX_SAFE_INTEGER) this[CURRENT_ID] = 0; - return id; - } - - [INIT_SOCKET](socket, options) { - // bugfix here. - // https on node 8, 10 won't set agent.options.timeout by default - // TODO: need to fix on node itself - if (options.timeout) { - const timeout = getSocketTimeout(socket); - if (!timeout) { - socket.setTimeout(options.timeout); - } - } - - if (this.options.keepAlive) { - // Disable Nagle's algorithm: http://blog.caustik.com/2012/04/08/scaling-node-js-to-100k-concurrent-connections/ - // https://fengmk2.com/benchmark/nagle-algorithm-delayed-ack-mock.html - socket.setNoDelay(true); - } - this.createSocketCount++; - if (this.options.socketActiveTTL) { - socket[SOCKET_CREATED_TIME] = Date.now(); - } - // don't show the hole '-----BEGIN CERTIFICATE----' key string - socket[SOCKET_NAME] = `sock[${this[CREATE_ID]()}#${options._agentKey}]`.split('-----BEGIN', 1)[0]; - socket[SOCKET_REQUEST_COUNT] = 1; - socket[SOCKET_REQUEST_FINISHED_COUNT] = 0; - installListeners(this, socket, options); - } - - createConnection(options, oncreate) { - let called = false; - const onNewCreate = (err, socket) => { - if (called) return; - called = true; - - if (err) { - this.createSocketErrorCount++; - return oncreate(err); - } - this[INIT_SOCKET](socket, options); - oncreate(err, socket); - }; - - const newSocket = super.createConnection(options, onNewCreate); - if (newSocket) onNewCreate(null, newSocket); - return newSocket; - } - - get statusChanged() { - const changed = this.createSocketCount !== this.createSocketCountLastCheck || - this.createSocketErrorCount !== this.createSocketErrorCountLastCheck || - this.closeSocketCount !== this.closeSocketCountLastCheck || - this.errorSocketCount !== this.errorSocketCountLastCheck || - this.timeoutSocketCount !== this.timeoutSocketCountLastCheck || - this.requestCount !== this.requestCountLastCheck; - if (changed) { - this.createSocketCountLastCheck = this.createSocketCount; - this.createSocketErrorCountLastCheck = this.createSocketErrorCount; - this.closeSocketCountLastCheck = this.closeSocketCount; - this.errorSocketCountLastCheck = this.errorSocketCount; - this.timeoutSocketCountLastCheck = this.timeoutSocketCount; - this.requestCountLastCheck = this.requestCount; - } - return changed; - } - - getCurrentStatus() { - return { - createSocketCount: this.createSocketCount, - createSocketErrorCount: this.createSocketErrorCount, - closeSocketCount: this.closeSocketCount, - errorSocketCount: this.errorSocketCount, - timeoutSocketCount: this.timeoutSocketCount, - requestCount: this.requestCount, - freeSockets: inspect(this.freeSockets), - sockets: inspect(this.sockets), - requests: inspect(this.requests), - }; - } -} - -// node 8 don't has timeout attribute on socket -// https://github.com/nodejs/node/pull/21204/files#diff-e6ef024c3775d787c38487a6309e491dR408 -function getSocketTimeout(socket) { - return socket.timeout || socket._idleTimeout; -} - -function installListeners(agent, socket, options) { - debug('%s create, timeout %sms', socket[SOCKET_NAME], getSocketTimeout(socket)); - - // listener socket events: close, timeout, error, free - function onFree() { - // create and socket.emit('free') logic - // https://github.com/nodejs/node/blob/master/lib/_http_agent.js#L311 - // no req on the socket, it should be the new socket - if (!socket._httpMessage && socket[SOCKET_REQUEST_COUNT] === 1) return; - - socket[SOCKET_REQUEST_FINISHED_COUNT]++; - agent.requestCount++; - debug('%s(requests: %s, finished: %s) free', - socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT]); - - // should reuse on pedding requests? - const name = agent.getName(options); - if (socket.writable && agent.requests[name] && agent.requests[name].length) { - // will be reuse on agent free listener - socket[SOCKET_REQUEST_COUNT]++; - debug('%s(requests: %s, finished: %s) will be reuse on agent free event', - socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT]); - } - } - socket.on('free', onFree); - - function onClose(isError) { - debug('%s(requests: %s, finished: %s) close, isError: %s', - socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], isError); - agent.closeSocketCount++; - } - socket.on('close', onClose); - - // start socket timeout handler - function onTimeout() { - // onTimeout and emitRequestTimeout(_http_client.js) - // https://github.com/nodejs/node/blob/v12.x/lib/_http_client.js#L711 - const listenerCount = socket.listeners('timeout').length; - // node <= 10, default listenerCount is 1, onTimeout - // 11 < node <= 12, default listenerCount is 2, onTimeout and emitRequestTimeout - // node >= 13, default listenerCount is 3, onTimeout, - // onTimeout(https://github.com/nodejs/node/pull/32000/files#diff-5f7fb0850412c6be189faeddea6c5359R333) - // and emitRequestTimeout - const timeout = getSocketTimeout(socket); - const req = socket._httpMessage; - const reqTimeoutListenerCount = req && req.listeners('timeout').length || 0; - debug('%s(requests: %s, finished: %s) timeout after %sms, listeners %s, defaultTimeoutListenerCount %s, hasHttpRequest %s, HttpRequest timeoutListenerCount %s', - socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], - timeout, listenerCount, defaultTimeoutListenerCount, !!req, reqTimeoutListenerCount); - if (debug.enabled) { - debug('timeout listeners: %s', socket.listeners('timeout').map(f => f.name).join(', ')); - } - agent.timeoutSocketCount++; - const name = agent.getName(options); - if (agent.freeSockets[name] && agent.freeSockets[name].indexOf(socket) !== -1) { - // free socket timeout, destroy quietly - socket.destroy(); - // Remove it from freeSockets list immediately to prevent new requests - // from being sent through this socket. - agent.removeSocket(socket, options); - debug('%s is free, destroy quietly', socket[SOCKET_NAME]); - } else { - // if there is no any request socket timeout handler, - // agent need to handle socket timeout itself. - // - // custom request socket timeout handle logic must follow these rules: - // 1. Destroy socket first - // 2. Must emit socket 'agentRemove' event tell agent remove socket - // from freeSockets list immediately. - // Otherise you may be get 'socket hang up' error when reuse - // free socket and timeout happen in the same time. - if (reqTimeoutListenerCount === 0) { - const error = new Error('Socket timeout'); - error.code = 'ERR_SOCKET_TIMEOUT'; - error.timeout = timeout; - // must manually call socket.end() or socket.destroy() to end the connection. - // https://nodejs.org/dist/latest-v10.x/docs/api/net.html#net_socket_settimeout_timeout_callback - socket.destroy(error); - agent.removeSocket(socket, options); - debug('%s destroy with timeout error', socket[SOCKET_NAME]); - } - } - } - socket.on('timeout', onTimeout); - - function onError(err) { - const listenerCount = socket.listeners('error').length; - debug('%s(requests: %s, finished: %s) error: %s, listenerCount: %s', - socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], - err, listenerCount); - agent.errorSocketCount++; - if (listenerCount === 1) { - // if socket don't contain error event handler, don't catch it, emit it again - debug('%s emit uncaught error event', socket[SOCKET_NAME]); - socket.removeListener('error', onError); - socket.emit('error', err); - } - } - socket.on('error', onError); - - function onRemove() { - debug('%s(requests: %s, finished: %s) agentRemove', - socket[SOCKET_NAME], - socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT]); - // We need this function for cases like HTTP 'upgrade' - // (defined by WebSockets) where we need to remove a socket from the - // pool because it'll be locked up indefinitely - socket.removeListener('close', onClose); - socket.removeListener('error', onError); - socket.removeListener('free', onFree); - socket.removeListener('timeout', onTimeout); - socket.removeListener('agentRemove', onRemove); - } - socket.on('agentRemove', onRemove); -} - -module.exports = Agent; - -function inspect(obj) { - const res = {}; - for (const key in obj) { - res[key] = obj[key].length; - } - return res; -} diff --git a/deps/npm/node_modules/agentkeepalive/lib/constants.js b/deps/npm/node_modules/agentkeepalive/lib/constants.js deleted file mode 100644 index ca7ab97eacd9c9..00000000000000 --- a/deps/npm/node_modules/agentkeepalive/lib/constants.js +++ /dev/null @@ -1,14 +0,0 @@ -'use strict'; - -module.exports = { - // agent - CURRENT_ID: Symbol('agentkeepalive#currentId'), - CREATE_ID: Symbol('agentkeepalive#createId'), - INIT_SOCKET: Symbol('agentkeepalive#initSocket'), - CREATE_HTTPS_CONNECTION: Symbol('agentkeepalive#createHttpsConnection'), - // socket - SOCKET_CREATED_TIME: Symbol('agentkeepalive#socketCreatedTime'), - SOCKET_NAME: Symbol('agentkeepalive#socketName'), - SOCKET_REQUEST_COUNT: Symbol('agentkeepalive#socketRequestCount'), - SOCKET_REQUEST_FINISHED_COUNT: Symbol('agentkeepalive#socketRequestFinishedCount'), -}; diff --git a/deps/npm/node_modules/agentkeepalive/lib/https_agent.js b/deps/npm/node_modules/agentkeepalive/lib/https_agent.js deleted file mode 100644 index 344fb32cadd862..00000000000000 --- a/deps/npm/node_modules/agentkeepalive/lib/https_agent.js +++ /dev/null @@ -1,51 +0,0 @@ -'use strict'; - -const OriginalHttpsAgent = require('https').Agent; -const HttpAgent = require('./agent'); -const { - INIT_SOCKET, - CREATE_HTTPS_CONNECTION, -} = require('./constants'); - -class HttpsAgent extends HttpAgent { - constructor(options) { - super(options); - - this.defaultPort = 443; - this.protocol = 'https:'; - this.maxCachedSessions = this.options.maxCachedSessions; - /* istanbul ignore next */ - if (this.maxCachedSessions === undefined) { - this.maxCachedSessions = 100; - } - - this._sessionCache = { - map: {}, - list: [], - }; - } - - createConnection(options, oncreate) { - const socket = this[CREATE_HTTPS_CONNECTION](options, oncreate); - this[INIT_SOCKET](socket, options); - return socket; - } -} - -// https://github.com/nodejs/node/blob/master/lib/https.js#L89 -HttpsAgent.prototype[CREATE_HTTPS_CONNECTION] = OriginalHttpsAgent.prototype.createConnection; - -[ - 'getName', - '_getSession', - '_cacheSession', - // https://github.com/nodejs/node/pull/4982 - '_evictSession', -].forEach(function(method) { - /* istanbul ignore next */ - if (typeof OriginalHttpsAgent.prototype[method] === 'function') { - HttpsAgent.prototype[method] = OriginalHttpsAgent.prototype[method]; - } -}); - -module.exports = HttpsAgent; diff --git a/deps/npm/node_modules/agentkeepalive/package.json b/deps/npm/node_modules/agentkeepalive/package.json deleted file mode 100644 index d8e9aa7160d0b3..00000000000000 --- a/deps/npm/node_modules/agentkeepalive/package.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "agentkeepalive", - "version": "4.5.0", - "description": "Missing keepalive http.Agent", - "main": "index.js", - "browser": "browser.js", - "files": [ - "index.js", - "index.d.ts", - "browser.js", - "lib" - ], - "scripts": { - "contributor": "git-contributor", - "test": "npm run lint && egg-bin test --full-trace", - "test-local": "egg-bin test --full-trace", - "cov": "cross-env NODE_DEBUG=agentkeepalive egg-bin cov --full-trace", - "ci": "npm run lint && npm run cov", - "lint": "eslint lib test index.js" - }, - "repository": { - "type": "git", - "url": "git://github.com/node-modules/agentkeepalive.git" - }, - "bugs": { - "url": "https://github.com/node-modules/agentkeepalive/issues" - }, - "keywords": [ - "http", - "https", - "agent", - "keepalive", - "agentkeepalive", - "HttpAgent", - "HttpsAgent" - ], - "dependencies": { - "humanize-ms": "^1.2.1" - }, - "devDependencies": { - "coffee": "^5.3.0", - "cross-env": "^6.0.3", - "egg-bin": "^4.9.0", - "eslint": "^5.7.0", - "eslint-config-egg": "^7.1.0", - "git-contributor": "^2.0.0", - "mm": "^2.4.1", - "pedding": "^1.1.0", - "typescript": "^3.8.3" - }, - "engines": { - "node": ">= 8.0.0" - }, - "author": "fengmk2 (https://github.com/fengmk2)", - "license": "MIT" -} diff --git a/deps/npm/node_modules/are-we-there-yet/lib/tracker-base.js b/deps/npm/node_modules/are-we-there-yet/lib/tracker-base.js index 6f436875578a7a..1b5e0dc30c49bb 100644 --- a/deps/npm/node_modules/are-we-there-yet/lib/tracker-base.js +++ b/deps/npm/node_modules/are-we-there-yet/lib/tracker-base.js @@ -1,11 +1,13 @@ 'use strict' -var EventEmitter = require('events').EventEmitter -var util = require('util') +const EventEmitter = require('events') -var trackerId = 0 -var TrackerBase = module.exports = function (name) { - EventEmitter.call(this) - this.id = ++trackerId - this.name = name +let trackerId = 0 +class TrackerBase extends EventEmitter { + constructor (name) { + super() + this.id = ++trackerId + this.name = name + } } -util.inherits(TrackerBase, EventEmitter) + +module.exports = TrackerBase 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 a3c7af804c4d3b..162c22584cdc53 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 @@ -1,116 +1,112 @@ 'use strict' -var util = require('util') -var TrackerBase = require('./tracker-base.js') -var Tracker = require('./tracker.js') -var TrackerStream = require('./tracker-stream.js') +const TrackerBase = require('./tracker-base.js') +const Tracker = require('./tracker.js') +const TrackerStream = require('./tracker-stream.js') -var TrackerGroup = module.exports = function (name) { - TrackerBase.call(this, name) - this.parentGroup = null - this.trackers = [] - this.completion = {} - this.weight = {} - this.totalWeight = 0 - this.finished = false - this.bubbleChange = bubbleChange(this) -} -util.inherits(TrackerGroup, TrackerBase) +class TrackerGroup extends TrackerBase { + parentGroup = null + trackers = [] + completion = {} + weight = {} + totalWeight = 0 + finished = false + bubbleChange = bubbleChange(this) -function bubbleChange (trackerGroup) { - return function (name, completed, tracker) { - trackerGroup.completion[tracker.id] = completed - if (trackerGroup.finished) { - return + nameInTree () { + var names = [] + var from = this + while (from) { + names.unshift(from.name) + from = from.parentGroup } - trackerGroup.emit('change', name || trackerGroup.name, trackerGroup.completed(), trackerGroup) + return names.join('/') } -} -TrackerGroup.prototype.nameInTree = function () { - var names = [] - var from = this - while (from) { - names.unshift(from.name) - from = from.parentGroup - } - return names.join('/') -} - -TrackerGroup.prototype.addUnit = function (unit, weight) { - if (unit.addUnit) { - var toTest = this - while (toTest) { - if (unit === toTest) { - throw new Error( - 'Attempted to add tracker group ' + - unit.name + ' to tree that already includes it ' + - this.nameInTree(this)) + addUnit (unit, weight) { + if (unit.addUnit) { + var toTest = this + while (toTest) { + if (unit === toTest) { + throw new Error( + 'Attempted to add tracker group ' + + unit.name + ' to tree that already includes it ' + + this.nameInTree(this)) + } + toTest = toTest.parentGroup } - toTest = toTest.parentGroup + unit.parentGroup = this } - unit.parentGroup = this + this.weight[unit.id] = weight || 1 + this.totalWeight += this.weight[unit.id] + this.trackers.push(unit) + this.completion[unit.id] = unit.completed() + unit.on('change', this.bubbleChange) + if (!this.finished) { + this.emit('change', unit.name, this.completion[unit.id], unit) + } + return unit } - this.weight[unit.id] = weight || 1 - this.totalWeight += this.weight[unit.id] - this.trackers.push(unit) - this.completion[unit.id] = unit.completed() - unit.on('change', this.bubbleChange) - if (!this.finished) { - this.emit('change', unit.name, this.completion[unit.id], unit) + + completed () { + if (this.trackers.length === 0) { + return 0 + } + var valPerWeight = 1 / this.totalWeight + var completed = 0 + for (var ii = 0; ii < this.trackers.length; ii++) { + var trackerId = this.trackers[ii].id + completed += + valPerWeight * this.weight[trackerId] * this.completion[trackerId] + } + return completed } - return unit -} -TrackerGroup.prototype.completed = function () { - if (this.trackers.length === 0) { - return 0 + newGroup (name, weight) { + return this.addUnit(new TrackerGroup(name), weight) } - var valPerWeight = 1 / this.totalWeight - var completed = 0 - for (var ii = 0; ii < this.trackers.length; ii++) { - var trackerId = this.trackers[ii].id - completed += - valPerWeight * this.weight[trackerId] * this.completion[trackerId] + + newItem (name, todo, weight) { + return this.addUnit(new Tracker(name, todo), weight) } - return completed -} -TrackerGroup.prototype.newGroup = function (name, weight) { - return this.addUnit(new TrackerGroup(name), weight) -} + newStream (name, todo, weight) { + return this.addUnit(new TrackerStream(name, todo), weight) + } -TrackerGroup.prototype.newItem = function (name, todo, weight) { - return this.addUnit(new Tracker(name, todo), weight) -} + finish () { + this.finished = true + if (!this.trackers.length) { + this.addUnit(new Tracker(), 1, true) + } + for (var ii = 0; ii < this.trackers.length; ii++) { + var tracker = this.trackers[ii] + tracker.finish() + tracker.removeListener('change', this.bubbleChange) + } + this.emit('change', this.name, 1, this) + } -TrackerGroup.prototype.newStream = function (name, todo, weight) { - return this.addUnit(new TrackerStream(name, todo), weight) -} + debug (depth = 0) { + const indent = ' '.repeat(depth) + let output = `${indent}${this.name || 'top'}: ${this.completed()}\n` -TrackerGroup.prototype.finish = function () { - this.finished = true - if (!this.trackers.length) { - this.addUnit(new Tracker(), 1, true) - } - for (var ii = 0; ii < this.trackers.length; ii++) { - var tracker = this.trackers[ii] - tracker.finish() - tracker.removeListener('change', this.bubbleChange) + this.trackers.forEach(function (tracker) { + output += tracker instanceof TrackerGroup + ? tracker.debug(depth + 1) + : `${indent} ${tracker.name}: ${tracker.completed()}\n` + }) + return output } - this.emit('change', this.name, 1, this) } -var buffer = ' ' -TrackerGroup.prototype.debug = function (depth) { - depth = depth || 0 - 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) { - output += tracker.debug(depth + 1) - } else { - output += indent + ' ' + tracker.name + ': ' + tracker.completed() + '\n' +function bubbleChange (trackerGroup) { + return function (name, completed, tracker) { + trackerGroup.completion[tracker.id] = completed + if (trackerGroup.finished) { + return } - }) - return output + trackerGroup.emit('change', name || trackerGroup.name, trackerGroup.completed(), trackerGroup) + } } + +module.exports = TrackerGroup diff --git a/deps/npm/node_modules/are-we-there-yet/lib/tracker-stream.js b/deps/npm/node_modules/are-we-there-yet/lib/tracker-stream.js index e1cf85055702a7..4b111b6bae8a81 100644 --- a/deps/npm/node_modules/are-we-there-yet/lib/tracker-stream.js +++ b/deps/npm/node_modules/are-we-there-yet/lib/tracker-stream.js @@ -1,17 +1,28 @@ 'use strict' -var util = require('util') -var stream = require('readable-stream') -var delegate = require('delegates') -var Tracker = require('./tracker.js') +const stream = require('readable-stream') +const delegate = require('delegates') +const Tracker = require('./tracker.js') -var TrackerStream = module.exports = function (name, size, options) { - stream.Transform.call(this, options) - this.tracker = new Tracker(name, size) - this.name = name - this.id = this.tracker.id - this.tracker.on('change', delegateChange(this)) +class TrackerStream extends stream.Transform { + constructor (name, size, options) { + super(options) + this.tracker = new Tracker(name, size) + this.name = name + this.id = this.tracker.id + this.tracker.on('change', delegateChange(this)) + } + + _transform (data, encoding, cb) { + this.tracker.completeWork(data.length ? data.length : 1) + this.push(data) + cb() + } + + _flush (cb) { + this.tracker.finish() + cb() + } } -util.inherits(TrackerStream, stream.Transform) function delegateChange (trackerStream) { return function (name, completion, tracker) { @@ -19,18 +30,9 @@ function delegateChange (trackerStream) { } } -TrackerStream.prototype._transform = function (data, encoding, cb) { - this.tracker.completeWork(data.length ? data.length : 1) - this.push(data) - cb() -} - -TrackerStream.prototype._flush = function (cb) { - this.tracker.finish() - cb() -} - delegate(TrackerStream.prototype, 'tracker') .method('completed') .method('addWork') .method('finish') + +module.exports = TrackerStream diff --git a/deps/npm/node_modules/are-we-there-yet/lib/tracker.js b/deps/npm/node_modules/are-we-there-yet/lib/tracker.js index a8f8b3ba013915..02e879ce6e3e26 100644 --- a/deps/npm/node_modules/are-we-there-yet/lib/tracker.js +++ b/deps/npm/node_modules/are-we-there-yet/lib/tracker.js @@ -1,32 +1,34 @@ 'use strict' -var util = require('util') -var TrackerBase = require('./tracker-base.js') +const TrackerBase = require('./tracker-base.js') -var Tracker = module.exports = function (name, todo) { - TrackerBase.call(this, name) - this.workDone = 0 - this.workTodo = todo || 0 -} -util.inherits(Tracker, TrackerBase) +class Tracker extends TrackerBase { + constructor (name, todo) { + super(name) + this.workDone = 0 + this.workTodo = todo || 0 + } -Tracker.prototype.completed = function () { - return this.workTodo === 0 ? 0 : this.workDone / this.workTodo -} + completed () { + return this.workTodo === 0 ? 0 : this.workDone / this.workTodo + } -Tracker.prototype.addWork = function (work) { - this.workTodo += work - this.emit('change', this.name, this.completed(), this) -} + addWork (work) { + this.workTodo += work + this.emit('change', this.name, this.completed(), this) + } -Tracker.prototype.completeWork = function (work) { - this.workDone += work - if (this.workDone > this.workTodo) { - this.workDone = this.workTodo + completeWork (work) { + this.workDone += work + if (this.workDone > this.workTodo) { + this.workDone = this.workTodo + } + this.emit('change', this.name, this.completed(), this) } - this.emit('change', this.name, this.completed(), this) -} -Tracker.prototype.finish = function () { - this.workTodo = this.workDone = 1 - this.emit('change', this.name, 1, this) + finish () { + this.workTodo = this.workDone = 1 + this.emit('change', this.name, 1, this) + } } + +module.exports = Tracker 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 919cb9a1dc5a73..e238c6581df667 100644 --- a/deps/npm/node_modules/are-we-there-yet/package.json +++ b/deps/npm/node_modules/are-we-there-yet/package.json @@ -1,6 +1,6 @@ { "name": "are-we-there-yet", - "version": "4.0.0", + "version": "4.0.1", "description": "Keep track of the overall completion of many disparate processes", "main": "lib/index.js", "scripts": { @@ -24,8 +24,8 @@ }, "homepage": "https://github.com/npm/are-we-there-yet", "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "4.5.1", + "@npmcli/eslint-config": "^4.0.0", + "@npmcli/template-oss": "4.17.0", "tap": "^16.0.1" }, "dependencies": { @@ -51,6 +51,7 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.5.1" + "version": "4.17.0", + "publish": true } } diff --git a/deps/npm/node_modules/bin-links/lib/link-mans.js b/deps/npm/node_modules/bin-links/lib/link-mans.js index 656e179b6ca54b..b6dd214cebdfe7 100644 --- a/deps/npm/node_modules/bin-links/lib/link-mans.js +++ b/deps/npm/node_modules/bin-links/lib/link-mans.js @@ -2,22 +2,23 @@ const { dirname, relative, join, resolve, basename } = require('path') const linkGently = require('./link-gently.js') const manTarget = require('./man-target.js') -const linkMans = ({ path, pkg, top, force }) => { +const linkMans = async ({ path, pkg, top, force }) => { const target = manTarget({ path, top }) - if (!target || !pkg.man || !Array.isArray(pkg.man) || !pkg.man.length) { - return Promise.resolve([]) + if (!target || !Array.isArray(pkg?.man) || !pkg.man.length) { + return [] } - // break any links to c:\\blah or /foo/blah or ../blah - // and filter out duplicates - const set = [...new Set(pkg.man.map(man => - man ? join('/', man).replace(/\\|:/g, '/').slice(1) : null) - .filter(man => typeof man === 'string'))] - - return Promise.all(set.map(man => { - const parseMan = man.match(/(.*\.([0-9]+)(\.gz)?)$/) + const links = [] + // `new Set` to filter out duplicates + for (let man of new Set(pkg.man)) { + if (!man || typeof man !== 'string') { + continue + } + // break any links to c:\\blah or /foo/blah or ../blah + man = join('/', man).replace(/\\|:/g, '/').slice(1) + const parseMan = man.match(/\.([0-9]+)(\.gz)?$/) if (!parseMan) { - return Promise.reject(Object.assign(new Error('invalid man entry name\n' + + throw Object.assign(new Error('invalid man entry name\n' + 'Man files must end with a number, ' + 'and optionally a .gz suffix if they are compressed.' ), { @@ -25,28 +26,28 @@ const linkMans = ({ path, pkg, top, force }) => { path, pkgid: pkg._id, man, - })) + }) } - const stem = parseMan[1] - const sxn = parseMan[2] - const base = basename(stem) + const section = parseMan[1] + const base = basename(man) const absFrom = resolve(path, man) /* istanbul ignore if - that unpossible */ if (absFrom.indexOf(path) !== 0) { - return Promise.reject(Object.assign(new Error('invalid man entry'), { + throw Object.assign(new Error('invalid man entry'), { code: 'EBADMAN', path, pkgid: pkg._id, man, - })) + }) } - const to = resolve(target, 'man' + sxn, base) + const to = resolve(target, 'man' + section, base) const from = relative(dirname(to), absFrom) - return linkGently({ from, to, path, absFrom, force }) - })) + links.push(linkGently({ from, to, path, absFrom, force })) + } + return Promise.all(links) } module.exports = linkMans diff --git a/deps/npm/node_modules/bin-links/package.json b/deps/npm/node_modules/bin-links/package.json index e6abb0b589808b..d5c11f7971f942 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": "4.0.2", + "version": "4.0.3", "description": "JavaScript package binary linker", "main": "./lib/index.js", "scripts": { @@ -30,7 +30,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.15.1", + "@npmcli/template-oss": "4.19.0", "require-inject": "^1.4.4", "tap": "^16.0.1" }, @@ -53,7 +53,7 @@ "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", "windowsCI": false, - "version": "4.15.1", + "version": "4.19.0", "publish": true } } diff --git a/deps/npm/node_modules/ci-info/LICENSE b/deps/npm/node_modules/ci-info/LICENSE index 44ca33aa611e73..95f61daaaf485f 100644 --- a/deps/npm/node_modules/ci-info/LICENSE +++ b/deps/npm/node_modules/ci-info/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016-2023 Thomas Watson Steen +Copyright (c) 2016 Thomas Watson Steen 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/npm/node_modules/ci-info/package.json b/deps/npm/node_modules/ci-info/package.json index 3edae7417a33ef..8d3ff0030cc919 100644 --- a/deps/npm/node_modules/ci-info/package.json +++ b/deps/npm/node_modules/ci-info/package.json @@ -1,6 +1,6 @@ { "name": "ci-info", - "version": "3.8.0", + "version": "3.9.0", "description": "Get details about the current Continuous Integration environment", "main": "index.js", "typings": "index.d.ts", @@ -35,9 +35,9 @@ }, "devDependencies": { "clear-module": "^4.1.2", - "husky": "^8.0.2", - "standard": "^17.0.0", - "tape": "^5.6.1" + "husky": "^8.0.3", + "standard": "^17.1.0", + "tape": "^5.7.0" }, "engines": { "node": ">=8" diff --git a/deps/npm/node_modules/ci-info/vendors.json b/deps/npm/node_modules/ci-info/vendors.json index 213711755273ae..7bedd96a7972fa 100644 --- a/deps/npm/node_modules/ci-info/vendors.json +++ b/deps/npm/node_modules/ci-info/vendors.json @@ -18,8 +18,10 @@ { "name": "Azure Pipelines", "constant": "AZURE_PIPELINES", - "env": "SYSTEM_TEAMFOUNDATIONCOLLECTIONURI", - "pr": "SYSTEM_PULLREQUEST_PULLREQUESTID" + "env": "TF_BUILD", + "pr": { + "BUILD_REASON": "PullRequest" + } }, { "name": "Bamboo", @@ -287,7 +289,8 @@ "NOW_BUILDER", "VERCEL" ] - } + }, + "pr": "VERCEL_GIT_PULL_REQUEST_ID" }, { "name": "Visual Studio App Center", diff --git a/deps/npm/node_modules/cmd-shim/lib/index.js b/deps/npm/node_modules/cmd-shim/lib/index.js index 76ea2cb6d624d8..9cf2243ebf035f 100644 --- a/deps/npm/node_modules/cmd-shim/lib/index.js +++ b/deps/npm/node_modules/cmd-shim/lib/index.js @@ -122,7 +122,11 @@ const writeShim_ = (from, to, prog, args, variables) => { // basedir=`dirname "$0"` // // case `uname` in - // *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; + // *CYGWIN*|*MINGW*|*MSYS*) + // if command -v cygpath > /dev/null 2>&1; then + // basedir=`cygpath -w "$basedir"` + // fi + // ;; // esac // // if [ -x "$basedir/node.exe" ]; then @@ -137,7 +141,11 @@ const writeShim_ = (from, to, prog, args, variables) => { + `basedir=$(dirname "$(echo "$0" | sed -e 's,\\\\,/,g')")\n` + '\n' + 'case `uname` in\n' - + ' *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;\n' + + ' *CYGWIN*|*MINGW*|*MSYS*)\n' + + ' if command -v cygpath > /dev/null 2>&1; then\n' + + ' basedir=`cygpath -w "$basedir"`\n' + + ' fi\n' + + ' ;;\n' + 'esac\n' + '\n' diff --git a/deps/npm/node_modules/cmd-shim/package.json b/deps/npm/node_modules/cmd-shim/package.json index 4e52de2412f24a..ec274b2768fbb7 100644 --- a/deps/npm/node_modules/cmd-shim/package.json +++ b/deps/npm/node_modules/cmd-shim/package.json @@ -1,6 +1,6 @@ { "name": "cmd-shim", - "version": "6.0.1", + "version": "6.0.2", "description": "Used in npm for command line application support", "scripts": { "test": "tap", @@ -18,7 +18,7 @@ "license": "ISC", "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.11.0", + "@npmcli/template-oss": "4.19.0", "tap": "^16.0.1" }, "files": [ @@ -41,6 +41,7 @@ "author": "GitHub Inc.", "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.11.0" + "version": "4.19.0", + "publish": true } } diff --git a/deps/npm/node_modules/concat-map/LICENSE b/deps/npm/node_modules/concat-map/LICENSE deleted file mode 100644 index ee27ba4b4412b0..00000000000000 --- a/deps/npm/node_modules/concat-map/LICENSE +++ /dev/null @@ -1,18 +0,0 @@ -This software is released under the MIT license: - -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/deps/npm/node_modules/concat-map/example/map.js b/deps/npm/node_modules/concat-map/example/map.js deleted file mode 100644 index 33656217b61d8f..00000000000000 --- a/deps/npm/node_modules/concat-map/example/map.js +++ /dev/null @@ -1,6 +0,0 @@ -var concatMap = require('../'); -var xs = [ 1, 2, 3, 4, 5, 6 ]; -var ys = concatMap(xs, function (x) { - return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; -}); -console.dir(ys); diff --git a/deps/npm/node_modules/concat-map/index.js b/deps/npm/node_modules/concat-map/index.js deleted file mode 100644 index b29a7812e5055a..00000000000000 --- a/deps/npm/node_modules/concat-map/index.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = function (xs, fn) { - var res = []; - for (var i = 0; i < xs.length; i++) { - var x = fn(xs[i], i); - if (isArray(x)) res.push.apply(res, x); - else res.push(x); - } - return res; -}; - -var isArray = Array.isArray || function (xs) { - return Object.prototype.toString.call(xs) === '[object Array]'; -}; diff --git a/deps/npm/node_modules/concat-map/package.json b/deps/npm/node_modules/concat-map/package.json deleted file mode 100644 index d3640e6b027b9e..00000000000000 --- a/deps/npm/node_modules/concat-map/package.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "name" : "concat-map", - "description" : "concatenative mapdashery", - "version" : "0.0.1", - "repository" : { - "type" : "git", - "url" : "git://github.com/substack/node-concat-map.git" - }, - "main" : "index.js", - "keywords" : [ - "concat", - "concatMap", - "map", - "functional", - "higher-order" - ], - "directories" : { - "example" : "example", - "test" : "test" - }, - "scripts" : { - "test" : "tape test/*.js" - }, - "devDependencies" : { - "tape" : "~2.4.0" - }, - "license" : "MIT", - "author" : { - "name" : "James Halliday", - "email" : "mail@substack.net", - "url" : "http://substack.net" - }, - "testling" : { - "files" : "test/*.js", - "browsers" : { - "ie" : [ 6, 7, 8, 9 ], - "ff" : [ 3.5, 10, 15.0 ], - "chrome" : [ 10, 22 ], - "safari" : [ 5.1 ], - "opera" : [ 12 ] - } - } -} diff --git a/deps/npm/node_modules/concat-map/test/map.js b/deps/npm/node_modules/concat-map/test/map.js deleted file mode 100644 index fdbd7022f6da17..00000000000000 --- a/deps/npm/node_modules/concat-map/test/map.js +++ /dev/null @@ -1,39 +0,0 @@ -var concatMap = require('../'); -var test = require('tape'); - -test('empty or not', function (t) { - var xs = [ 1, 2, 3, 4, 5, 6 ]; - var ixes = []; - var ys = concatMap(xs, function (x, ix) { - ixes.push(ix); - return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; - }); - t.same(ys, [ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]); - t.same(ixes, [ 0, 1, 2, 3, 4, 5 ]); - t.end(); -}); - -test('always something', function (t) { - var xs = [ 'a', 'b', 'c', 'd' ]; - var ys = concatMap(xs, function (x) { - return x === 'b' ? [ 'B', 'B', 'B' ] : [ x ]; - }); - t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]); - t.end(); -}); - -test('scalars', function (t) { - var xs = [ 'a', 'b', 'c', 'd' ]; - var ys = concatMap(xs, function (x) { - return x === 'b' ? [ 'B', 'B', 'B' ] : x; - }); - t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]); - t.end(); -}); - -test('undefs', function (t) { - var xs = [ 'a', 'b', 'c', 'd' ]; - var ys = concatMap(xs, function () {}); - t.same(ys, [ undefined, undefined, undefined, undefined ]); - t.end(); -}); diff --git a/deps/npm/node_modules/fs.realpath/LICENSE b/deps/npm/node_modules/fs.realpath/LICENSE deleted file mode 100644 index 5bd884c252ac49..00000000000000 --- a/deps/npm/node_modules/fs.realpath/LICENSE +++ /dev/null @@ -1,43 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ----- - -This library bundles a version of the `fs.realpath` and `fs.realpathSync` -methods from Node.js v0.10 under the terms of the Node.js MIT license. - -Node's license follows, also included at the header of `old.js` which contains -the licensed code: - - Copyright Joyent, Inc. and other Node contributors. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. diff --git a/deps/npm/node_modules/fs.realpath/index.js b/deps/npm/node_modules/fs.realpath/index.js deleted file mode 100644 index b09c7c7e6364da..00000000000000 --- a/deps/npm/node_modules/fs.realpath/index.js +++ /dev/null @@ -1,66 +0,0 @@ -module.exports = realpath -realpath.realpath = realpath -realpath.sync = realpathSync -realpath.realpathSync = realpathSync -realpath.monkeypatch = monkeypatch -realpath.unmonkeypatch = unmonkeypatch - -var fs = require('fs') -var origRealpath = fs.realpath -var origRealpathSync = fs.realpathSync - -var version = process.version -var ok = /^v[0-5]\./.test(version) -var old = require('./old.js') - -function newError (er) { - return er && er.syscall === 'realpath' && ( - er.code === 'ELOOP' || - er.code === 'ENOMEM' || - er.code === 'ENAMETOOLONG' - ) -} - -function realpath (p, cache, cb) { - if (ok) { - return origRealpath(p, cache, cb) - } - - if (typeof cache === 'function') { - cb = cache - cache = null - } - origRealpath(p, cache, function (er, result) { - if (newError(er)) { - old.realpath(p, cache, cb) - } else { - cb(er, result) - } - }) -} - -function realpathSync (p, cache) { - if (ok) { - return origRealpathSync(p, cache) - } - - try { - return origRealpathSync(p, cache) - } catch (er) { - if (newError(er)) { - return old.realpathSync(p, cache) - } else { - throw er - } - } -} - -function monkeypatch () { - fs.realpath = realpath - fs.realpathSync = realpathSync -} - -function unmonkeypatch () { - fs.realpath = origRealpath - fs.realpathSync = origRealpathSync -} diff --git a/deps/npm/node_modules/fs.realpath/old.js b/deps/npm/node_modules/fs.realpath/old.js deleted file mode 100644 index b40305e73fd583..00000000000000 --- a/deps/npm/node_modules/fs.realpath/old.js +++ /dev/null @@ -1,303 +0,0 @@ -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. - -var pathModule = require('path'); -var isWindows = process.platform === 'win32'; -var fs = require('fs'); - -// JavaScript implementation of realpath, ported from node pre-v6 - -var DEBUG = process.env.NODE_DEBUG && /fs/.test(process.env.NODE_DEBUG); - -function rethrow() { - // Only enable in debug mode. A backtrace uses ~1000 bytes of heap space and - // is fairly slow to generate. - var callback; - if (DEBUG) { - var backtrace = new Error; - callback = debugCallback; - } else - callback = missingCallback; - - return callback; - - function debugCallback(err) { - if (err) { - backtrace.message = err.message; - err = backtrace; - missingCallback(err); - } - } - - function missingCallback(err) { - if (err) { - if (process.throwDeprecation) - throw err; // Forgot a callback but don't know where? Use NODE_DEBUG=fs - else if (!process.noDeprecation) { - var msg = 'fs: missing callback ' + (err.stack || err.message); - if (process.traceDeprecation) - console.trace(msg); - else - console.error(msg); - } - } - } -} - -function maybeCallback(cb) { - return typeof cb === 'function' ? cb : rethrow(); -} - -var normalize = pathModule.normalize; - -// Regexp that finds the next partion of a (partial) path -// result is [base_with_slash, base], e.g. ['somedir/', 'somedir'] -if (isWindows) { - var nextPartRe = /(.*?)(?:[\/\\]+|$)/g; -} else { - var nextPartRe = /(.*?)(?:[\/]+|$)/g; -} - -// Regex to find the device root, including trailing slash. E.g. 'c:\\'. -if (isWindows) { - var splitRootRe = /^(?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/][^\\\/]+)?[\\\/]*/; -} else { - var splitRootRe = /^[\/]*/; -} - -exports.realpathSync = function realpathSync(p, cache) { - // make p is absolute - p = pathModule.resolve(p); - - if (cache && Object.prototype.hasOwnProperty.call(cache, p)) { - return cache[p]; - } - - var original = p, - seenLinks = {}, - knownHard = {}; - - // current character position in p - var pos; - // the partial path so far, including a trailing slash if any - var current; - // the partial path without a trailing slash (except when pointing at a root) - var base; - // the partial path scanned in the previous round, with slash - var previous; - - start(); - - function start() { - // Skip over roots - var m = splitRootRe.exec(p); - pos = m[0].length; - current = m[0]; - base = m[0]; - previous = ''; - - // On windows, check that the root exists. On unix there is no need. - if (isWindows && !knownHard[base]) { - fs.lstatSync(base); - knownHard[base] = true; - } - } - - // walk down the path, swapping out linked pathparts for their real - // values - // NB: p.length changes. - while (pos < p.length) { - // find the next part - nextPartRe.lastIndex = pos; - var result = nextPartRe.exec(p); - previous = current; - current += result[0]; - base = previous + result[1]; - pos = nextPartRe.lastIndex; - - // continue if not a symlink - if (knownHard[base] || (cache && cache[base] === base)) { - continue; - } - - var resolvedLink; - if (cache && Object.prototype.hasOwnProperty.call(cache, base)) { - // some known symbolic link. no need to stat again. - resolvedLink = cache[base]; - } else { - var stat = fs.lstatSync(base); - if (!stat.isSymbolicLink()) { - knownHard[base] = true; - if (cache) cache[base] = base; - continue; - } - - // read the link if it wasn't read before - // dev/ino always return 0 on windows, so skip the check. - var linkTarget = null; - if (!isWindows) { - var id = stat.dev.toString(32) + ':' + stat.ino.toString(32); - if (seenLinks.hasOwnProperty(id)) { - linkTarget = seenLinks[id]; - } - } - if (linkTarget === null) { - fs.statSync(base); - linkTarget = fs.readlinkSync(base); - } - resolvedLink = pathModule.resolve(previous, linkTarget); - // track this, if given a cache. - if (cache) cache[base] = resolvedLink; - if (!isWindows) seenLinks[id] = linkTarget; - } - - // resolve the link, then start over - p = pathModule.resolve(resolvedLink, p.slice(pos)); - start(); - } - - if (cache) cache[original] = p; - - return p; -}; - - -exports.realpath = function realpath(p, cache, cb) { - if (typeof cb !== 'function') { - cb = maybeCallback(cache); - cache = null; - } - - // make p is absolute - p = pathModule.resolve(p); - - if (cache && Object.prototype.hasOwnProperty.call(cache, p)) { - return process.nextTick(cb.bind(null, null, cache[p])); - } - - var original = p, - seenLinks = {}, - knownHard = {}; - - // current character position in p - var pos; - // the partial path so far, including a trailing slash if any - var current; - // the partial path without a trailing slash (except when pointing at a root) - var base; - // the partial path scanned in the previous round, with slash - var previous; - - start(); - - function start() { - // Skip over roots - var m = splitRootRe.exec(p); - pos = m[0].length; - current = m[0]; - base = m[0]; - previous = ''; - - // On windows, check that the root exists. On unix there is no need. - if (isWindows && !knownHard[base]) { - fs.lstat(base, function(err) { - if (err) return cb(err); - knownHard[base] = true; - LOOP(); - }); - } else { - process.nextTick(LOOP); - } - } - - // walk down the path, swapping out linked pathparts for their real - // values - function LOOP() { - // stop if scanned past end of path - if (pos >= p.length) { - if (cache) cache[original] = p; - return cb(null, p); - } - - // find the next part - nextPartRe.lastIndex = pos; - var result = nextPartRe.exec(p); - previous = current; - current += result[0]; - base = previous + result[1]; - pos = nextPartRe.lastIndex; - - // continue if not a symlink - if (knownHard[base] || (cache && cache[base] === base)) { - return process.nextTick(LOOP); - } - - if (cache && Object.prototype.hasOwnProperty.call(cache, base)) { - // known symbolic link. no need to stat again. - return gotResolvedLink(cache[base]); - } - - return fs.lstat(base, gotStat); - } - - function gotStat(err, stat) { - if (err) return cb(err); - - // if not a symlink, skip to the next path part - if (!stat.isSymbolicLink()) { - knownHard[base] = true; - if (cache) cache[base] = base; - return process.nextTick(LOOP); - } - - // stat & read the link if not read before - // call gotTarget as soon as the link target is known - // dev/ino always return 0 on windows, so skip the check. - if (!isWindows) { - var id = stat.dev.toString(32) + ':' + stat.ino.toString(32); - if (seenLinks.hasOwnProperty(id)) { - return gotTarget(null, seenLinks[id], base); - } - } - fs.stat(base, function(err) { - if (err) return cb(err); - - fs.readlink(base, function(err, target) { - if (!isWindows) seenLinks[id] = target; - gotTarget(err, target); - }); - }); - } - - function gotTarget(err, target, base) { - if (err) return cb(err); - - var resolvedLink = pathModule.resolve(previous, target); - if (cache) cache[base] = resolvedLink; - gotResolvedLink(resolvedLink); - } - - function gotResolvedLink(resolvedLink) { - // resolve the link, then start over - p = pathModule.resolve(resolvedLink, p.slice(pos)); - start(); - } -}; diff --git a/deps/npm/node_modules/fs.realpath/package.json b/deps/npm/node_modules/fs.realpath/package.json deleted file mode 100644 index 3edc57d21c7137..00000000000000 --- a/deps/npm/node_modules/fs.realpath/package.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "fs.realpath", - "version": "1.0.0", - "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", - "main": "index.js", - "dependencies": {}, - "devDependencies": {}, - "scripts": { - "test": "tap test/*.js --cov" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/isaacs/fs.realpath.git" - }, - "keywords": [ - "realpath", - "fs", - "polyfill" - ], - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "license": "ISC", - "files": [ - "old.js", - "index.js" - ] -} diff --git a/deps/npm/node_modules/http-proxy-agent/dist/agent.js b/deps/npm/node_modules/http-proxy-agent/dist/agent.js deleted file mode 100644 index aca82804314882..00000000000000 --- a/deps/npm/node_modules/http-proxy-agent/dist/agent.js +++ /dev/null @@ -1,145 +0,0 @@ -"use strict"; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const net_1 = __importDefault(require("net")); -const tls_1 = __importDefault(require("tls")); -const url_1 = __importDefault(require("url")); -const debug_1 = __importDefault(require("debug")); -const once_1 = __importDefault(require("@tootallnate/once")); -const agent_base_1 = require("agent-base"); -const debug = (0, debug_1.default)('http-proxy-agent'); -function isHTTPS(protocol) { - return typeof protocol === 'string' ? /^https:?$/i.test(protocol) : false; -} -/** - * The `HttpProxyAgent` implements an HTTP Agent subclass that connects - * to the specified "HTTP proxy server" in order to proxy HTTP requests. - * - * @api public - */ -class HttpProxyAgent extends agent_base_1.Agent { - constructor(_opts) { - let opts; - if (typeof _opts === 'string') { - opts = url_1.default.parse(_opts); - } - else { - opts = _opts; - } - if (!opts) { - throw new Error('an HTTP(S) proxy server `host` and `port` must be specified!'); - } - debug('Creating new HttpProxyAgent instance: %o', opts); - super(opts); - const proxy = Object.assign({}, opts); - // If `true`, then connect to the proxy server over TLS. - // Defaults to `false`. - this.secureProxy = opts.secureProxy || isHTTPS(proxy.protocol); - // Prefer `hostname` over `host`, and set the `port` if needed. - proxy.host = proxy.hostname || proxy.host; - if (typeof proxy.port === 'string') { - proxy.port = parseInt(proxy.port, 10); - } - if (!proxy.port && proxy.host) { - proxy.port = this.secureProxy ? 443 : 80; - } - if (proxy.host && proxy.path) { - // If both a `host` and `path` are specified then it's most likely - // the result of a `url.parse()` call... we need to remove the - // `path` portion so that `net.connect()` doesn't attempt to open - // that as a Unix socket file. - delete proxy.path; - delete proxy.pathname; - } - this.proxy = proxy; - } - /** - * Called when the node-core HTTP client library is creating a - * new HTTP request. - * - * @api protected - */ - callback(req, opts) { - return __awaiter(this, void 0, void 0, function* () { - const { proxy, secureProxy } = this; - const parsed = url_1.default.parse(req.path); - if (!parsed.protocol) { - parsed.protocol = 'http:'; - } - if (!parsed.hostname) { - parsed.hostname = opts.hostname || opts.host || null; - } - if (parsed.port == null && typeof opts.port) { - parsed.port = String(opts.port); - } - if (parsed.port === '80') { - // if port is 80, then we can remove the port so that the - // ":80" portion is not on the produced URL - parsed.port = ''; - } - // Change the `http.ClientRequest` instance's "path" field - // to the absolute path of the URL that will be requested. - req.path = url_1.default.format(parsed); - // Inject the `Proxy-Authorization` header if necessary. - if (proxy.auth) { - req.setHeader('Proxy-Authorization', `Basic ${Buffer.from(proxy.auth).toString('base64')}`); - } - // Create a socket connection to the proxy server. - let socket; - if (secureProxy) { - debug('Creating `tls.Socket`: %o', proxy); - socket = tls_1.default.connect(proxy); - } - else { - debug('Creating `net.Socket`: %o', proxy); - socket = net_1.default.connect(proxy); - } - // At this point, the http ClientRequest's internal `_header` field - // might have already been set. If this is the case then we'll need - // to re-generate the string since we just changed the `req.path`. - if (req._header) { - let first; - let endOfHeaders; - debug('Regenerating stored HTTP header string for request'); - req._header = null; - req._implicitHeader(); - if (req.output && req.output.length > 0) { - // Node < 12 - debug('Patching connection write() output buffer with updated header'); - first = req.output[0]; - endOfHeaders = first.indexOf('\r\n\r\n') + 4; - req.output[0] = req._header + first.substring(endOfHeaders); - debug('Output buffer: %o', req.output); - } - else if (req.outputData && req.outputData.length > 0) { - // Node >= 12 - debug('Patching connection write() output buffer with updated header'); - first = req.outputData[0].data; - endOfHeaders = first.indexOf('\r\n\r\n') + 4; - req.outputData[0].data = - req._header + first.substring(endOfHeaders); - debug('Output buffer: %o', req.outputData[0].data); - } - } - // Wait for the socket's `connect` event, so that this `callback()` - // function throws instead of the `http` request machinery. This is - // important for i.e. `PacProxyAgent` which determines a failed proxy - // connection via the `callback()` function throwing. - yield (0, once_1.default)(socket, 'connect'); - return socket; - }); - } -} -exports.default = HttpProxyAgent; -//# sourceMappingURL=agent.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/http-proxy-agent/dist/index.js b/deps/npm/node_modules/http-proxy-agent/dist/index.js deleted file mode 100644 index 0a71180594605b..00000000000000 --- a/deps/npm/node_modules/http-proxy-agent/dist/index.js +++ /dev/null @@ -1,14 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -const agent_1 = __importDefault(require("./agent")); -function createHttpProxyAgent(opts) { - return new agent_1.default(opts); -} -(function (createHttpProxyAgent) { - createHttpProxyAgent.HttpProxyAgent = agent_1.default; - createHttpProxyAgent.prototype = agent_1.default.prototype; -})(createHttpProxyAgent || (createHttpProxyAgent = {})); -module.exports = createHttpProxyAgent; -//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/http-proxy-agent/package.json b/deps/npm/node_modules/http-proxy-agent/package.json deleted file mode 100644 index 659d6e11e80e40..00000000000000 --- a/deps/npm/node_modules/http-proxy-agent/package.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "name": "http-proxy-agent", - "version": "5.0.0", - "description": "An HTTP(s) proxy `http.Agent` implementation for HTTP", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", - "files": [ - "dist" - ], - "scripts": { - "prebuild": "rimraf dist", - "build": "tsc", - "test": "mocha", - "test-lint": "eslint src --ext .js,.ts", - "prepublishOnly": "npm run build" - }, - "repository": { - "type": "git", - "url": "git://github.com/TooTallNate/node-http-proxy-agent.git" - }, - "keywords": [ - "http", - "proxy", - "endpoint", - "agent" - ], - "author": "Nathan Rajlich (http://n8.io/)", - "license": "MIT", - "bugs": { - "url": "https://github.com/TooTallNate/node-http-proxy-agent/issues" - }, - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "devDependencies": { - "@types/debug": "4", - "@types/node": "^12.19.2", - "@typescript-eslint/eslint-plugin": "1.6.0", - "@typescript-eslint/parser": "1.1.0", - "eslint": "5.16.0", - "eslint-config-airbnb": "17.1.0", - "eslint-config-prettier": "4.1.0", - "eslint-import-resolver-typescript": "1.1.1", - "eslint-plugin-import": "2.16.0", - "eslint-plugin-jsx-a11y": "6.2.1", - "eslint-plugin-react": "7.12.4", - "mocha": "^6.2.2", - "proxy": "1", - "rimraf": "^3.0.0", - "typescript": "^4.4.3" - }, - "engines": { - "node": ">= 6" - } -} diff --git a/deps/npm/node_modules/https-proxy-agent/dist/agent.js b/deps/npm/node_modules/https-proxy-agent/dist/agent.js deleted file mode 100644 index 75d11364ed3001..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/dist/agent.js +++ /dev/null @@ -1,177 +0,0 @@ -"use strict"; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const net_1 = __importDefault(require("net")); -const tls_1 = __importDefault(require("tls")); -const url_1 = __importDefault(require("url")); -const assert_1 = __importDefault(require("assert")); -const debug_1 = __importDefault(require("debug")); -const agent_base_1 = require("agent-base"); -const parse_proxy_response_1 = __importDefault(require("./parse-proxy-response")); -const debug = debug_1.default('https-proxy-agent:agent'); -/** - * The `HttpsProxyAgent` implements an HTTP Agent subclass that connects to - * the specified "HTTP(s) proxy server" in order to proxy HTTPS requests. - * - * Outgoing HTTP requests are first tunneled through the proxy server using the - * `CONNECT` HTTP request method to establish a connection to the proxy server, - * and then the proxy server connects to the destination target and issues the - * HTTP request from the proxy server. - * - * `https:` requests have their socket connection upgraded to TLS once - * the connection to the proxy server has been established. - * - * @api public - */ -class HttpsProxyAgent extends agent_base_1.Agent { - constructor(_opts) { - let opts; - if (typeof _opts === 'string') { - opts = url_1.default.parse(_opts); - } - else { - opts = _opts; - } - if (!opts) { - throw new Error('an HTTP(S) proxy server `host` and `port` must be specified!'); - } - debug('creating new HttpsProxyAgent instance: %o', opts); - super(opts); - const proxy = Object.assign({}, opts); - // If `true`, then connect to the proxy server over TLS. - // Defaults to `false`. - this.secureProxy = opts.secureProxy || isHTTPS(proxy.protocol); - // Prefer `hostname` over `host`, and set the `port` if needed. - proxy.host = proxy.hostname || proxy.host; - if (typeof proxy.port === 'string') { - proxy.port = parseInt(proxy.port, 10); - } - if (!proxy.port && proxy.host) { - proxy.port = this.secureProxy ? 443 : 80; - } - // ALPN is supported by Node.js >= v5. - // attempt to negotiate http/1.1 for proxy servers that support http/2 - if (this.secureProxy && !('ALPNProtocols' in proxy)) { - proxy.ALPNProtocols = ['http 1.1']; - } - if (proxy.host && proxy.path) { - // If both a `host` and `path` are specified then it's most likely - // the result of a `url.parse()` call... we need to remove the - // `path` portion so that `net.connect()` doesn't attempt to open - // that as a Unix socket file. - delete proxy.path; - delete proxy.pathname; - } - this.proxy = proxy; - } - /** - * Called when the node-core HTTP client library is creating a - * new HTTP request. - * - * @api protected - */ - callback(req, opts) { - return __awaiter(this, void 0, void 0, function* () { - const { proxy, secureProxy } = this; - // Create a socket connection to the proxy server. - let socket; - if (secureProxy) { - debug('Creating `tls.Socket`: %o', proxy); - socket = tls_1.default.connect(proxy); - } - else { - debug('Creating `net.Socket`: %o', proxy); - socket = net_1.default.connect(proxy); - } - const headers = Object.assign({}, proxy.headers); - const hostname = `${opts.host}:${opts.port}`; - let payload = `CONNECT ${hostname} HTTP/1.1\r\n`; - // Inject the `Proxy-Authorization` header if necessary. - if (proxy.auth) { - headers['Proxy-Authorization'] = `Basic ${Buffer.from(proxy.auth).toString('base64')}`; - } - // The `Host` header should only include the port - // number when it is not the default port. - let { host, port, secureEndpoint } = opts; - if (!isDefaultPort(port, secureEndpoint)) { - host += `:${port}`; - } - headers.Host = host; - headers.Connection = 'close'; - for (const name of Object.keys(headers)) { - payload += `${name}: ${headers[name]}\r\n`; - } - const proxyResponsePromise = parse_proxy_response_1.default(socket); - socket.write(`${payload}\r\n`); - const { statusCode, buffered } = yield proxyResponsePromise; - if (statusCode === 200) { - req.once('socket', resume); - if (opts.secureEndpoint) { - // The proxy is connecting to a TLS server, so upgrade - // this socket connection to a TLS connection. - debug('Upgrading socket connection to TLS'); - const servername = opts.servername || opts.host; - return tls_1.default.connect(Object.assign(Object.assign({}, omit(opts, 'host', 'hostname', 'path', 'port')), { socket, - servername })); - } - return socket; - } - // Some other status code that's not 200... need to re-play the HTTP - // header "data" events onto the socket once the HTTP machinery is - // attached so that the node core `http` can parse and handle the - // error status code. - // Close the original socket, and a new "fake" socket is returned - // instead, so that the proxy doesn't get the HTTP request - // written to it (which may contain `Authorization` headers or other - // sensitive data). - // - // See: https://hackerone.com/reports/541502 - socket.destroy(); - const fakeSocket = new net_1.default.Socket({ writable: false }); - fakeSocket.readable = true; - // Need to wait for the "socket" event to re-play the "data" events. - req.once('socket', (s) => { - debug('replaying proxy buffer for failed request'); - assert_1.default(s.listenerCount('data') > 0); - // Replay the "buffered" Buffer onto the fake `socket`, since at - // this point the HTTP module machinery has been hooked up for - // the user. - s.push(buffered); - s.push(null); - }); - return fakeSocket; - }); - } -} -exports.default = HttpsProxyAgent; -function resume(socket) { - socket.resume(); -} -function isDefaultPort(port, secure) { - return Boolean((!secure && port === 80) || (secure && port === 443)); -} -function isHTTPS(protocol) { - return typeof protocol === 'string' ? /^https:?$/i.test(protocol) : false; -} -function omit(obj, ...keys) { - const ret = {}; - let key; - for (key in obj) { - if (!keys.includes(key)) { - ret[key] = obj[key]; - } - } - return ret; -} -//# sourceMappingURL=agent.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/https-proxy-agent/dist/index.js b/deps/npm/node_modules/https-proxy-agent/dist/index.js deleted file mode 100644 index b03e7631a45a45..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/dist/index.js +++ /dev/null @@ -1,14 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -const agent_1 = __importDefault(require("./agent")); -function createHttpsProxyAgent(opts) { - return new agent_1.default(opts); -} -(function (createHttpsProxyAgent) { - createHttpsProxyAgent.HttpsProxyAgent = agent_1.default; - createHttpsProxyAgent.prototype = agent_1.default.prototype; -})(createHttpsProxyAgent || (createHttpsProxyAgent = {})); -module.exports = createHttpsProxyAgent; -//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js b/deps/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js deleted file mode 100644 index aa5ce3cc2d371f..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js +++ /dev/null @@ -1,66 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const debug_1 = __importDefault(require("debug")); -const debug = debug_1.default('https-proxy-agent:parse-proxy-response'); -function parseProxyResponse(socket) { - return new Promise((resolve, reject) => { - // we need to buffer any HTTP traffic that happens with the proxy before we get - // the CONNECT response, so that if the response is anything other than an "200" - // response code, then we can re-play the "data" events on the socket once the - // HTTP parser is hooked up... - let buffersLength = 0; - const buffers = []; - function read() { - const b = socket.read(); - if (b) - ondata(b); - else - socket.once('readable', read); - } - function cleanup() { - socket.removeListener('end', onend); - socket.removeListener('error', onerror); - socket.removeListener('close', onclose); - socket.removeListener('readable', read); - } - function onclose(err) { - debug('onclose had error %o', err); - } - function onend() { - debug('onend'); - } - function onerror(err) { - cleanup(); - debug('onerror %o', err); - reject(err); - } - function ondata(b) { - buffers.push(b); - buffersLength += b.length; - const buffered = Buffer.concat(buffers, buffersLength); - const endOfHeaders = buffered.indexOf('\r\n\r\n'); - if (endOfHeaders === -1) { - // keep buffering - debug('have not received end of HTTP headers yet...'); - read(); - return; - } - const firstLine = buffered.toString('ascii', 0, buffered.indexOf('\r\n')); - const statusCode = +firstLine.split(' ')[1]; - debug('got proxy server response: %o', firstLine); - resolve({ - statusCode, - buffered - }); - } - socket.on('error', onerror); - socket.on('close', onclose); - socket.on('end', onend); - read(); - }); -} -exports.default = parseProxyResponse; -//# sourceMappingURL=parse-proxy-response.js.map \ No newline at end of file diff --git a/deps/npm/node_modules/https-proxy-agent/package.json b/deps/npm/node_modules/https-proxy-agent/package.json deleted file mode 100644 index fb2aba1b946951..00000000000000 --- a/deps/npm/node_modules/https-proxy-agent/package.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "https-proxy-agent", - "version": "5.0.1", - "description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS", - "main": "dist/index", - "types": "dist/index", - "files": [ - "dist" - ], - "scripts": { - "prebuild": "rimraf dist", - "build": "tsc", - "test": "mocha --reporter spec", - "test-lint": "eslint src --ext .js,.ts", - "prepublishOnly": "npm run build" - }, - "repository": { - "type": "git", - "url": "git://github.com/TooTallNate/node-https-proxy-agent.git" - }, - "keywords": [ - "https", - "proxy", - "endpoint", - "agent" - ], - "author": "Nathan Rajlich (http://n8.io/)", - "license": "MIT", - "bugs": { - "url": "https://github.com/TooTallNate/node-https-proxy-agent/issues" - }, - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "devDependencies": { - "@types/debug": "4", - "@types/node": "^12.12.11", - "@typescript-eslint/eslint-plugin": "1.6.0", - "@typescript-eslint/parser": "1.1.0", - "eslint": "5.16.0", - "eslint-config-airbnb": "17.1.0", - "eslint-config-prettier": "4.1.0", - "eslint-import-resolver-typescript": "1.1.1", - "eslint-plugin-import": "2.16.0", - "eslint-plugin-jsx-a11y": "6.2.1", - "eslint-plugin-react": "7.12.4", - "mocha": "^6.2.2", - "proxy": "1", - "rimraf": "^3.0.0", - "typescript": "^3.5.3" - }, - "engines": { - "node": ">= 6" - } -} diff --git a/deps/npm/node_modules/humanize-ms/LICENSE b/deps/npm/node_modules/humanize-ms/LICENSE deleted file mode 100644 index 89de354795ec7a..00000000000000 --- a/deps/npm/node_modules/humanize-ms/LICENSE +++ /dev/null @@ -1,17 +0,0 @@ -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/deps/npm/node_modules/humanize-ms/index.js b/deps/npm/node_modules/humanize-ms/index.js deleted file mode 100644 index 660df81def5120..00000000000000 --- a/deps/npm/node_modules/humanize-ms/index.js +++ /dev/null @@ -1,24 +0,0 @@ -/*! - * humanize-ms - index.js - * Copyright(c) 2014 dead_horse - * MIT Licensed - */ - -'use strict'; - -/** - * Module dependencies. - */ - -var util = require('util'); -var ms = require('ms'); - -module.exports = function (t) { - if (typeof t === 'number') return t; - var r = ms(t); - if (r === undefined) { - var err = new Error(util.format('humanize-ms(%j) result undefined', t)); - console.warn(err.stack); - } - return r; -}; diff --git a/deps/npm/node_modules/humanize-ms/package.json b/deps/npm/node_modules/humanize-ms/package.json deleted file mode 100644 index da4ab7f571a686..00000000000000 --- a/deps/npm/node_modules/humanize-ms/package.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "name": "humanize-ms", - "version": "1.2.1", - "description": "transform humanize time to ms", - "main": "index.js", - "files": [ - "index.js" - ], - "scripts": { - "test": "make test" - }, - "keywords": [ - "humanize", - "ms" - ], - "author": { - "name": "dead-horse", - "email": "dead_horse@qq.com", - "url": "http://deadhorse.me" - }, - "repository": { - "type": "git", - "url": "https://github.com/node-modules/humanize-ms" - }, - "license": "MIT", - "dependencies": { - "ms": "^2.0.0" - }, - "devDependencies": { - "autod": "*", - "beautify-benchmark": "~0.2.4", - "benchmark": "~1.0.0", - "istanbul": "*", - "mocha": "*", - "should": "*" - } -} diff --git a/deps/npm/node_modules/inflight/LICENSE b/deps/npm/node_modules/inflight/LICENSE deleted file mode 100644 index 05eeeb88c2ef4c..00000000000000 --- a/deps/npm/node_modules/inflight/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/deps/npm/node_modules/inflight/inflight.js b/deps/npm/node_modules/inflight/inflight.js deleted file mode 100644 index 48202b3ca41d97..00000000000000 --- a/deps/npm/node_modules/inflight/inflight.js +++ /dev/null @@ -1,54 +0,0 @@ -var wrappy = require('wrappy') -var reqs = Object.create(null) -var once = require('once') - -module.exports = wrappy(inflight) - -function inflight (key, cb) { - if (reqs[key]) { - reqs[key].push(cb) - return null - } else { - reqs[key] = [cb] - return makeres(key) - } -} - -function makeres (key) { - return once(function RES () { - var cbs = reqs[key] - var len = cbs.length - var args = slice(arguments) - - // XXX It's somewhat ambiguous whether a new callback added in this - // pass should be queued for later execution if something in the - // list of callbacks throws, or if it should just be discarded. - // However, it's such an edge case that it hardly matters, and either - // choice is likely as surprising as the other. - // As it happens, we do go ahead and schedule it for later execution. - try { - for (var i = 0; i < len; i++) { - cbs[i].apply(null, args) - } - } finally { - if (cbs.length > len) { - // added more in the interim. - // de-zalgo, just in case, but don't call again. - cbs.splice(0, len) - process.nextTick(function () { - RES.apply(null, args) - }) - } else { - delete reqs[key] - } - } - }) -} - -function slice (args) { - var length = args.length - var array = [] - - for (var i = 0; i < length; i++) array[i] = args[i] - return array -} diff --git a/deps/npm/node_modules/inflight/package.json b/deps/npm/node_modules/inflight/package.json deleted file mode 100644 index 6084d3509a5d6d..00000000000000 --- a/deps/npm/node_modules/inflight/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "inflight", - "version": "1.0.6", - "description": "Add callbacks to requests in flight to avoid async duplication", - "main": "inflight.js", - "files": [ - "inflight.js" - ], - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - }, - "devDependencies": { - "tap": "^7.1.2" - }, - "scripts": { - "test": "tap test.js --100" - }, - "repository": { - "type": "git", - "url": "https://github.com/npm/inflight.git" - }, - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "bugs": { - "url": "https://github.com/isaacs/inflight/issues" - }, - "homepage": "https://github.com/isaacs/inflight", - "license": "ISC" -} diff --git a/deps/npm/node_modules/inherits/inherits.js b/deps/npm/node_modules/inherits/inherits.js deleted file mode 100644 index f71f2d93294a67..00000000000000 --- a/deps/npm/node_modules/inherits/inherits.js +++ /dev/null @@ -1,9 +0,0 @@ -try { - var util = require('util'); - /* istanbul ignore next */ - if (typeof util.inherits !== 'function') throw ''; - module.exports = util.inherits; -} catch (e) { - /* istanbul ignore next */ - module.exports = require('./inherits_browser.js'); -} diff --git a/deps/npm/node_modules/inherits/inherits_browser.js b/deps/npm/node_modules/inherits/inherits_browser.js deleted file mode 100644 index 86bbb3dc29e484..00000000000000 --- a/deps/npm/node_modules/inherits/inherits_browser.js +++ /dev/null @@ -1,27 +0,0 @@ -if (typeof Object.create === 'function') { - // implementation from standard node.js 'util' module - module.exports = function inherits(ctor, superCtor) { - if (superCtor) { - ctor.super_ = superCtor - ctor.prototype = Object.create(superCtor.prototype, { - constructor: { - value: ctor, - enumerable: false, - writable: true, - configurable: true - } - }) - } - }; -} else { - // old school shim for old browsers - module.exports = function inherits(ctor, superCtor) { - if (superCtor) { - ctor.super_ = superCtor - var TempCtor = function () {} - TempCtor.prototype = superCtor.prototype - ctor.prototype = new TempCtor() - ctor.prototype.constructor = ctor - } - } -} diff --git a/deps/npm/node_modules/inherits/package.json b/deps/npm/node_modules/inherits/package.json deleted file mode 100644 index 37b4366b83e63e..00000000000000 --- a/deps/npm/node_modules/inherits/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "inherits", - "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", - "version": "2.0.4", - "keywords": [ - "inheritance", - "class", - "klass", - "oop", - "object-oriented", - "inherits", - "browser", - "browserify" - ], - "main": "./inherits.js", - "browser": "./inherits_browser.js", - "repository": "git://github.com/isaacs/inherits", - "license": "ISC", - "scripts": { - "test": "tap" - }, - "devDependencies": { - "tap": "^14.2.4" - }, - "files": [ - "inherits.js", - "inherits_browser.js" - ] -} diff --git a/deps/npm/node_modules/is-core-module/core.json b/deps/npm/node_modules/is-core-module/core.json index af29f0b734b225..3cda693d7d0fd3 100644 --- a/deps/npm/node_modules/is-core-module/core.json +++ b/deps/npm/node_modules/is-core-module/core.json @@ -115,7 +115,7 @@ "sys": [">= 0.4 && < 0.7", ">= 0.8"], "node:sys": [">= 14.18 && < 15", ">= 16"], "test/reporters": ">= 19.9 && < 20.2", - "node:test/reporters": [">= 19.9", ">= 20"], + "node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"], "node:test": [">= 16.17 && < 17", ">= 18"], "timers": true, "node:timers": [">= 14.18 && < 15", ">= 16"], @@ -149,8 +149,8 @@ "node:v8": [">= 14.18 && < 15", ">= 16"], "vm": true, "node:vm": [">= 14.18 && < 15", ">= 16"], - "wasi": [">= 13.4 && < 13.5", ">= 20"], - "node:wasi": ">= 20", + "wasi": [">= 13.4 && < 13.5", ">= 18.17 && < 19", ">= 20"], + "node:wasi": [">= 18.17 && < 19", ">= 20"], "worker_threads": ">= 11.7", "node:worker_threads": [">= 14.18 && < 15", ">= 16"], "zlib": ">= 0.5", diff --git a/deps/npm/node_modules/is-core-module/package.json b/deps/npm/node_modules/is-core-module/package.json index 62bb065e8364a8..1269c80c5520d8 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.12.1", + "version": "2.13.0", "description": "Is this specifier a node.js core module?", "main": "index.js", "sideEffects": false, @@ -45,8 +45,8 @@ "has": "^1.0.3" }, "devDependencies": { - "@ljharb/eslint-config": "^21.0.1", - "aud": "^2.0.2", + "@ljharb/eslint-config": "^21.1.0", + "aud": "^2.0.3", "auto-changelog": "^2.4.0", "eslint": "=8.8.0", "in-publish": "^2.0.1", @@ -54,8 +54,8 @@ "npmignore": "^0.3.0", "nyc": "^10.3.2", "safe-publish-latest": "^2.0.0", - "semver": "^6.3.0", - "tape": "^5.6.3" + "semver": "^6.3.1", + "tape": "^5.6.6" }, "auto-changelog": { "output": "CHANGELOG.md", diff --git a/deps/npm/node_modules/libnpmdiff/package.json b/deps/npm/node_modules/libnpmdiff/package.json index f54a35ff5f868d..54a54ece0f026a 100644 --- a/deps/npm/node_modules/libnpmdiff/package.json +++ b/deps/npm/node_modules/libnpmdiff/package.json @@ -1,6 +1,6 @@ { "name": "libnpmdiff", - "version": "6.0.2", + "version": "6.0.3", "description": "The registry diff", "repository": { "type": "git", @@ -46,7 +46,7 @@ "tap": "^16.3.8" }, "dependencies": { - "@npmcli/arborist": "^7.2.0", + "@npmcli/arborist": "^7.2.1", "@npmcli/disparity-colors": "^3.0.0", "@npmcli/installed-package-contents": "^2.0.2", "binary-extensions": "^2.2.0", diff --git a/deps/npm/node_modules/libnpmexec/package.json b/deps/npm/node_modules/libnpmexec/package.json index 5ab1484e216aba..5e4ae52a2fdddf 100644 --- a/deps/npm/node_modules/libnpmexec/package.json +++ b/deps/npm/node_modules/libnpmexec/package.json @@ -1,6 +1,6 @@ { "name": "libnpmexec", - "version": "7.0.2", + "version": "7.0.3", "files": [ "bin/", "lib/" @@ -59,8 +59,8 @@ "tap": "^16.3.8" }, "dependencies": { - "@npmcli/arborist": "^7.2.0", - "@npmcli/run-script": "^7.0.1", + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", "ci-info": "^3.7.1", "npm-package-arg": "^11.0.1", "npmlog": "^7.0.1", diff --git a/deps/npm/node_modules/libnpmfund/package.json b/deps/npm/node_modules/libnpmfund/package.json index 034e39c60d277d..9bacac4cdaabf6 100644 --- a/deps/npm/node_modules/libnpmfund/package.json +++ b/deps/npm/node_modules/libnpmfund/package.json @@ -1,6 +1,6 @@ { "name": "libnpmfund", - "version": "5.0.0", + "version": "5.0.1", "main": "lib/index.js", "files": [ "bin/", @@ -45,7 +45,7 @@ "tap": "^16.3.8" }, "dependencies": { - "@npmcli/arborist": "^7.2.0" + "@npmcli/arborist": "^7.2.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" diff --git a/deps/npm/node_modules/libnpmpack/package.json b/deps/npm/node_modules/libnpmpack/package.json index d3ceea0882fc3b..fbaa3dc256bc54 100644 --- a/deps/npm/node_modules/libnpmpack/package.json +++ b/deps/npm/node_modules/libnpmpack/package.json @@ -1,6 +1,6 @@ { "name": "libnpmpack", - "version": "6.0.2", + "version": "6.0.3", "description": "Programmatic API for the bits behind npm pack", "author": "GitHub Inc.", "main": "lib/index.js", @@ -36,8 +36,8 @@ "bugs": "https://github.com/npm/libnpmpack/issues", "homepage": "https://npmjs.com/package/libnpmpack", "dependencies": { - "@npmcli/arborist": "^7.2.0", - "@npmcli/run-script": "^7.0.1", + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", "npm-package-arg": "^11.0.1", "pacote": "^17.0.4" }, diff --git a/deps/npm/node_modules/libnpmversion/package.json b/deps/npm/node_modules/libnpmversion/package.json index a440ee75cec7fc..5baac0c437e8b6 100644 --- a/deps/npm/node_modules/libnpmversion/package.json +++ b/deps/npm/node_modules/libnpmversion/package.json @@ -1,6 +1,6 @@ { "name": "libnpmversion", - "version": "5.0.0", + "version": "5.0.1", "main": "lib/index.js", "files": [ "bin/", @@ -38,7 +38,7 @@ }, "dependencies": { "@npmcli/git": "^5.0.3", - "@npmcli/run-script": "^7.0.1", + "@npmcli/run-script": "^7.0.2", "json-parse-even-better-errors": "^3.0.0", "proc-log": "^3.0.0", "semver": "^7.3.7" diff --git a/deps/npm/node_modules/node-gyp/.github/ISSUE_TEMPLATE.md b/deps/npm/node_modules/node-gyp/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index c6b213d7be3663..00000000000000 --- a/deps/npm/node_modules/node-gyp/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,52 +0,0 @@ - - -Please look thru your error log for the string `gyp info using node-gyp@` and if the version number is less than the [current release of node-gyp](https://github.com/nodejs/node-gyp/releases) then __please upgrade__ using the instructions at https://github.com/nodejs/node-gyp/blob/master/docs/Updating-npm-bundled-node-gyp.md and try your command again. - -Requests for help with [`node-sass` are very common](https://github.com/nodejs/node-gyp/issues?q=label%3A%22Node+Sass+--%3E+Dart+Sass%22). Please be aware that this package is deprecated, you should seek alternatives and avoid opening new issues about it here. - -* **Node Version**: -* **Platform**: -* **Compiler**: -* **Module**: - -
      Verbose output (from npm or node-gyp): - -``` -Paste your log here, between the backticks. It can be: - - npm --verbose output, - - or contents of npm-debug.log, - - or output of node-gyp rebuild --verbose. -Include the command you were trying to run. - -This should look like this: - ->npm --verbose -npm info it worked if it ends with ok -npm verb cli [ -npm verb cli 'C:\\...\\node\\13.9.0\\x64\\node.exe', -npm verb cli 'C:\\...\\node\\13.9.0\\x64\\node_modules\\npm\\bin\\npm-cli.js', -npm verb cli '--verbose' -npm verb cli ] -npm info using npm@6.13.7 -npm info using node@v13.9.0 - -Usage: npm -(...) -``` - -
      - - diff --git a/deps/npm/node_modules/node-gyp/.github/PULL_REQUEST_TEMPLATE.md b/deps/npm/node_modules/node-gyp/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index bcc4bb1a048c80..00000000000000 --- a/deps/npm/node_modules/node-gyp/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,17 +0,0 @@ - - -##### Checklist - - -- [ ] `npm install && npm test` passes -- [ ] tests are included -- [ ] documentation is changed or added -- [ ] commit message follows [commit guidelines](https://github.com/googleapis/release-please#how-should-i-write-my-commits) - -##### Description of change - - 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 deleted file mode 100644 index c3057c3a3159ae..00000000000000 --- a/deps/npm/node_modules/node-gyp/.github/workflows/release-please.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: release-please - -on: - push: - branches: - - main - -jobs: - release-please: - runs-on: ubuntu-latest - steps: - - uses: google-github-actions/release-please-action@v2 - id: release - with: - package-name: node-gyp - release-type: node - changelog-types: > - [{"type":"feat","section":"Features","hidden":false}, - {"type":"fix","section":"Bug Fixes","hidden":false}, - {"type":"bin","section":"Core","hidden":false}, - {"type":"gyp","section":"Core","hidden":false}, - {"type":"lib","section":"Core","hidden":false}, - {"type":"src","section":"Core","hidden":false}, - {"type":"test","section":"Tests","hidden":false}, - {"type":"build","section":"Core","hidden":false}, - {"type":"clean","section":"Core","hidden":false}, - {"type":"configure","section":"Core","hidden":false}, - {"type":"install","section":"Core","hidden":false}, - {"type":"list","section":"Core","hidden":false}, - {"type":"rebuild","section":"Core","hidden":false}, - {"type":"remove","section":"Core","hidden":false}, - {"type":"deps","section":"Core","hidden":false}, - {"type":"python","section":"Core","hidden":false}, - {"type":"lin","section":"Core","hidden":false}, - {"type":"linux","section":"Core","hidden":false}, - {"type":"mac","section":"Core","hidden":false}, - {"type":"macos","section":"Core","hidden":false}, - {"type":"win","section":"Core","hidden":false}, - {"type":"windows","section":"Core","hidden":false}, - {"type":"zos","section":"Core","hidden":false}, - {"type":"doc","section":"Doc","hidden":false}, - {"type":"docs","section":"Doc","hidden":false}, - {"type":"readme","section":"Doc","hidden":false}, - {"type":"chore","section":"Miscellaneous","hidden":false}, - {"type":"refactor","section":"Miscellaneous","hidden":false}, - {"type":"ci","section":"Miscellaneous","hidden":false}, - {"type":"meta","section":"Miscellaneous","hidden":false}] - - # Standard Conventional Commits: `feat` and `fix` - # node-gyp subdirectories: `bin`, `gyp`, `lib`, `src`, `test` - # node-gyp subcommands: `build`, `clean`, `configure`, `install`, `list`, `rebuild`, `remove` - # Core abstract category: `deps` - # Languages/platforms: `python`, `lin`, `linux`, `mac`, `macos`, `win`, `window`, `zos` - # Documentation: `doc`, `docs`, `readme` - # Standard Conventional Commits: `chore` (under "Miscellaneous") - # Miscellaneous abstract categories: `refactor`, `ci`, `meta` diff --git a/deps/npm/node_modules/node-gyp/.github/workflows/tests.yml b/deps/npm/node_modules/node-gyp/.github/workflows/tests.yml deleted file mode 100644 index 517b2d95a48c6f..00000000000000 --- a/deps/npm/node_modules/node-gyp/.github/workflows/tests.yml +++ /dev/null @@ -1,55 +0,0 @@ -# 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: - branches: [ main ] - pull_request: - branches: [ main ] -jobs: - Lint_Python: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: pip install --user ruff - - run: ruff --format=github --select="E,F,PLC,PLE,UP,W,YTT" --ignore="PLC1901,S101,UP031" --target-version=py37 . - Tests: - strategy: - fail-fast: false - max-parallel: 15 - matrix: - node: [16.x, 18.x, 20.x] - python: ["3.8", "3.11"] - os: [macos-latest, ubuntu-latest, windows-latest] - runs-on: ${{ matrix.os }} - steps: - - name: Checkout Repository - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - - name: Use Python ${{ matrix.python }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python }} - env: - PYTHON_VERSION: ${{ matrix.python }} # Why do this? - - name: Install Dependencies - run: | - npm install --no-progress - pip install pytest - - name: Set Windows environment - 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: 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 deleted file mode 100644 index 12125e54479b87..00000000000000 --- a/deps/npm/node_modules/node-gyp/.github/workflows/visual-studio.yml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: - visual-studio: - strategy: - fail-fast: false - max-parallel: 8 - matrix: - 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@v3 - - name: Install Dependencies - run: | - npm install --no-progress - # npm audit fix --force - - name: Set Windows environment - if: startsWith(matrix.os, 'windows') - run: | - 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 - - name: Run Node tests - run: npm test diff --git a/deps/npm/node_modules/node-gyp/CHANGELOG.md b/deps/npm/node_modules/node-gyp/CHANGELOG.md index 9fb5f11847bb26..98315add5e0d46 100644 --- a/deps/npm/node_modules/node-gyp/CHANGELOG.md +++ b/deps/npm/node_modules/node-gyp/CHANGELOG.md @@ -1,5 +1,83 @@ # Changelog +### [10.0.1](https://www.github.com/nodejs/node-gyp/compare/v10.0.0...v10.0.1) (2023-11-02) + + +### Bug Fixes + +* use local `util` for `findAccessibleSync()` ([b39e681](https://www.github.com/nodejs/node-gyp/commit/b39e6819aa9e2c45107d6e60a4913ca036ebfbfd)) + + +### Miscellaneous + +* add parallel test logging ([7de1f5f](https://www.github.com/nodejs/node-gyp/commit/7de1f5f32d550d26d48fe4f76aed5866744edcba)) +* lint fixes ([4e0ed99](https://www.github.com/nodejs/node-gyp/commit/4e0ed992566f43abc6e988af091ad07fde04acbf)) +* use platform specific timeouts in tests ([a68586a](https://www.github.com/nodejs/node-gyp/commit/a68586a67d0af238300662cc062422b42820044d)) + +## [10.0.0](https://www.github.com/nodejs/node-gyp/compare/v9.4.0...v10.0.0) (2023-10-28) + + +### ⚠ BREAKING CHANGES + +* use .npmignore file to limit which files are published (#2921) +* the `Gyp` class exported is now created using ECMAScript classes and therefore might have small differences to classes that were previously created with `util.inherits`. +* All internal functions have been coverted to return promises and no longer accept callbacks. This is not a breaking change for users but may be breaking to consumers of `node-gyp` if you are requiring internal functions directly. +* `node-gyp` now supports node `^16.14.0 || >=18.0.0` +* update engines.node to ^14.17.0 || ^16.13.0 || >=18.0.0 + +### Features + +* convert all internal functions to async/await ([355622f](https://www.github.com/nodejs/node-gyp/commit/355622f4aac3bd3056b9e03aac5fa2f42a4b3576)) +* convert internal classes from util.inherits to classes ([d52997e](https://www.github.com/nodejs/node-gyp/commit/d52997e975b9da6e0cea3d9b99873e9ddc768679)) +* drop node 14 support ([#2929](https://www.github.com/nodejs/node-gyp/issues/2929)) ([1b3bd34](https://www.github.com/nodejs/node-gyp/commit/1b3bd341b40f384988d03207ce8187e93ba609bc)) +* drop rimraf dependency ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) +* **gyp:** update gyp to v0.16.1 ([#2923](https://www.github.com/nodejs/node-gyp/issues/2923)) ([707927c](https://www.github.com/nodejs/node-gyp/commit/707927cd579205ef2b4b17e61c1cce24c056b452)) +* replace npmlog with proc-log ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) +* update engines.node to ^14.17.0 || ^16.13.0 || >=18.0.0 ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) +* use .npmignore file to limit which files are published ([#2921](https://www.github.com/nodejs/node-gyp/issues/2921)) ([864a979](https://www.github.com/nodejs/node-gyp/commit/864a979930cf0ef5ad64bc887b901fa8955d058f)) + + +### Bug Fixes + +* create Python symlink only during builds, and clean it up after ([#2721](https://www.github.com/nodejs/node-gyp/issues/2721)) ([0f1f667](https://www.github.com/nodejs/node-gyp/commit/0f1f667b737d21905e283df100a2cb639993562a)) +* promisify build command ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) +* use fs/promises in favor of fs.promises ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) + + +### Tests + +* increase mocha timeout ([#2887](https://www.github.com/nodejs/node-gyp/issues/2887)) ([445c28f](https://www.github.com/nodejs/node-gyp/commit/445c28fabc5fbdf9c3bb3341fb70660a3530f6ad)) +* update expired certs ([#2908](https://www.github.com/nodejs/node-gyp/issues/2908)) ([5746691](https://www.github.com/nodejs/node-gyp/commit/5746691a36f7b37019d4b8d4e9616aec43d20410)) + + +### Doc + +* Add note about Python symlinks (PR 2362) to CHANGELOG.md for 9.1.0 ([#2783](https://www.github.com/nodejs/node-gyp/issues/2783)) ([b3d41ae](https://www.github.com/nodejs/node-gyp/commit/b3d41aeb737ddd54cc292f363abc561dcc0a614e)) +* README.md Do not hardcode the supported versions of Python ([#2880](https://www.github.com/nodejs/node-gyp/issues/2880)) ([bb93b94](https://www.github.com/nodejs/node-gyp/commit/bb93b946a9c74934b59164deb52128cf913c97d5)) +* update applicable GitHub links from master to main ([#2843](https://www.github.com/nodejs/node-gyp/issues/2843)) ([d644ce4](https://www.github.com/nodejs/node-gyp/commit/d644ce48311edf090d0e920ad449e5766c757933)) +* Update windows installation instructions in README.md ([#2882](https://www.github.com/nodejs/node-gyp/issues/2882)) ([c9caa2e](https://www.github.com/nodejs/node-gyp/commit/c9caa2ecf3c7deae68444ce8fabb32d2dca651cd)) + + +### Core + +* find python checks order changed on windows ([#2872](https://www.github.com/nodejs/node-gyp/issues/2872)) ([b030555](https://www.github.com/nodejs/node-gyp/commit/b030555cdb754d9c23906e7e707115cd077bbf76)) +* glob@10.3.10 ([#2926](https://www.github.com/nodejs/node-gyp/issues/2926)) ([4bef1ec](https://www.github.com/nodejs/node-gyp/commit/4bef1ecc7554097d92beb397fbe1a546c5227545)) +* glob@8.0.3 ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) +* make-fetch-happen@13.0.0 ([#2927](https://www.github.com/nodejs/node-gyp/issues/2927)) ([059bb6f](https://www.github.com/nodejs/node-gyp/commit/059bb6fd41bb50955a9efbd97887773d60d53221)) +* nopt@^7.0.0 ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) +* standard@17.0.0 and fix linting errors ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) +* which@3.0.0 ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) +* which@4.0.0 ([#2928](https://www.github.com/nodejs/node-gyp/issues/2928)) ([e388255](https://www.github.com/nodejs/node-gyp/commit/e38825531403aabeae7abe58e76867f31b832f36)) + + +### Miscellaneous + +* add check engines script to CI ([#2922](https://www.github.com/nodejs/node-gyp/issues/2922)) ([21a7249](https://www.github.com/nodejs/node-gyp/commit/21a7249b40d8f95e7721e450fd18764adb1648a7)) +* empty commit to add changelog entries from [#2770](https://www.github.com/nodejs/node-gyp/issues/2770) ([4a50fe3](https://www.github.com/nodejs/node-gyp/commit/4a50fe31574217c4b2a798fc72b19947a64ceea1)) +* GitHub Workflows security hardening ([#2740](https://www.github.com/nodejs/node-gyp/issues/2740)) ([26683e9](https://www.github.com/nodejs/node-gyp/commit/26683e993df038fb94d89f2276f3535e4522d79a)) +* misc testing fixes ([#2930](https://www.github.com/nodejs/node-gyp/issues/2930)) ([4e493d4](https://www.github.com/nodejs/node-gyp/commit/4e493d4fb262d12ac52c84979071ccc79e666a1a)) +* run tests after release please PR ([3032e10](https://www.github.com/nodejs/node-gyp/commit/3032e1061cc2b7b49f83c397d385bafddc6b0214)) + ## [9.4.0](https://www.github.com/nodejs/node-gyp/compare/v9.3.1...v9.4.0) (2023-06-12) @@ -98,6 +176,7 @@ ### Core * update due to rename of primary branch ([ca1f068](https://www.github.com/nodejs/node-gyp/commit/ca1f0681a5567ca8cd51acebccd37a633f19bc6a)) +* Add Python symlink to path (for non-Windows OSes only) ([#2362](https://github.com/nodejs/node-gyp/pull/2362)) ([b9ddcd5](https://github.com/nodejs/node-gyp/commit/b9ddcd5bbd93b05b03674836b6ebdae2c2e74c8c)) ### Tests diff --git a/deps/npm/node_modules/node-gyp/CONTRIBUTING.md b/deps/npm/node_modules/node-gyp/CONTRIBUTING.md index c1c50eab4e58b7..5b977898f104b3 100644 --- a/deps/npm/node_modules/node-gyp/CONTRIBUTING.md +++ b/deps/npm/node_modules/node-gyp/CONTRIBUTING.md @@ -3,7 +3,7 @@ ## Code of Conduct Please read the -[Code of Conduct](https://github.com/nodejs/admin/blob/master/CODE_OF_CONDUCT.md) +[Code of Conduct](https://github.com/nodejs/admin/blob/main/CODE_OF_CONDUCT.md) which explains the minimum behavior expectations for node-gyp contributors. diff --git a/deps/npm/node_modules/node-gyp/README.md b/deps/npm/node_modules/node-gyp/README.md index 99494a38d09b38..f46ee06308db1e 100644 --- a/deps/npm/node_modules/node-gyp/README.md +++ b/deps/npm/node_modules/node-gyp/README.md @@ -1,12 +1,13 @@ # `node-gyp` - Node.js native addon build tool -[![Build Status](https://github.com/nodejs/node-gyp/workflows/Tests/badge.svg?branch=master)](https://github.com/nodejs/node-gyp/actions?query=workflow%3ATests+branch%3Amaster) +[![Build Status](https://github.com/nodejs/node-gyp/workflows/Tests/badge.svg?branch=main)](https://github.com/nodejs/node-gyp/actions?query=workflow%3ATests+branch%3Amain) ![npm](https://img.shields.io/npm/dm/node-gyp) `node-gyp` is a cross-platform command-line tool written in Node.js for compiling native addon modules for Node.js. It contains a vendored copy of the [gyp-next](https://github.com/nodejs/gyp-next) project that was previously used -by the Chromium team, extended to support the development of Node.js native addons. +by the Chromium team and extended to support the development of Node.js native +addons. Note that `node-gyp` is _not_ used to build Node.js itself. @@ -31,27 +32,26 @@ Depending on your operating system, you will need to install: ### On Unix - * Python v3.7, v3.8, v3.9, or v3.10 + * [A supported version of Python](https://devguide.python.org/versions/) * `make` * A proper C/C++ compiler toolchain, like [GCC](https://gcc.gnu.org) ### On macOS -**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`. - * Install the `XCode Command Line Tools` standalone by running `xcode-select --install`. -- OR -- + * [A supported version of Python](https://devguide.python.org/versions/) + * `Xcode Command Line Tools` which will install `clang`, `clang++`, and `make`. + * Install the `Xcode Command Line Tools` standalone by running `xcode-select --install`. -- OR -- * Alternatively, if you already have the [full Xcode installed](https://developer.apple.com/xcode/download/), you can install the Command Line Tools under the menu `Xcode -> Open Developer Tool -> More Developer Tools...`. ### On Windows -Install the current version of Python from the [Microsoft Store package](https://www.microsoft.com/en-us/p/python-310/9pjpw5ldxlz5). +Install the current [version of Python](https://devguide.python.org/versions/) from the +[Microsoft Store](https://apps.microsoft.com/store/search?publisher=Python+Software+Foundation). Install tools and configuration manually: * Install Visual C++ Build Environment: [Visual Studio Build Tools](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=BuildTools) - (using "Visual C++ build tools" workload) or [Visual Studio Community](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=Community) + (using "Visual C++ build tools" if using a version older than VS2019, otherwise use "Desktop development with C++" workload) or [Visual Studio Community](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=Community) (using the "Desktop development with C++" workload) If the above steps didn't work for you, please visit [Microsoft's Node.js Guidelines for Windows](https://github.com/Microsoft/nodejs-guidelines/blob/master/windows-environment.md#compiling-native-addon-modules) for additional tips. @@ -62,9 +62,9 @@ Install tools and configuration manually: ### Configuring Python Dependency -`node-gyp` requires that you have installed a compatible version of Python, one of: v3.7, v3.8, -v3.9, or v3.10. If you have multiple Python versions installed, you can identify which Python -version `node-gyp` should use in one of the following ways: +`node-gyp` requires that you have installed a [supported version of Python](https://devguide.python.org/versions/). +If you have multiple versions of Python installed, you can identify which version +`node-gyp` should use in one of the following ways: 1. by setting the `--python` command-line option, e.g.: @@ -73,24 +73,28 @@ node-gyp --python /path/to/executable/python ``` 2. If `node-gyp` is called by way of `npm`, *and* you have multiple versions of -Python installed, then you can set `npm`'s 'python' config key to the appropriate -value: - +Python installed, then you can set the `npm_config_python` environment variable +to the appropriate path: ``` bash -npm config set python /path/to/executable/python +export npm_config_python=/path/to/executable/python +``` +    Or on Windows: +```console +py --list-paths # To see the installed Python versions +set npm_config_python=C:\path\to\python.exe ``` 3. If the `PYTHON` environment variable is set to the path of a Python executable, -then that version will be used, if it is a compatible version. +then that version will be used if it is a supported version. 4. If the `NODE_GYP_FORCE_PYTHON` environment variable is set to the path of a Python executable, it will be used instead of any of the other configured or -builtin Python search paths. If it's not a compatible version, no further +built-in Python search paths. If it's not a compatible version, no further searching will be done. ### Build for Third Party Node.js Runtimes -When building modules for third 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. @@ -106,7 +110,7 @@ to work around configuration errors. ## How to Use -To compile your native addon, first go to its root directory: +To compile your native addon first go to its root directory: ``` bash cd my_node_addon @@ -168,7 +172,7 @@ The **[docs](./docs/)** directory contains additional documentation on specific Some additional resources for Node.js native addons and writing `gyp` configuration files: * ["Going Native" a nodeschool.io tutorial](http://nodeschool.io/#goingnative) - * ["Hello World" node addon example](https://github.com/nodejs/node/tree/master/test/addons/hello-world) + * ["Hello World" node addon example](https://github.com/nodejs/node/tree/main/test/addons/hello-world) * [gyp user documentation](https://gyp.gsrc.io/docs/UserDocumentation.md) * [gyp input format reference](https://gyp.gsrc.io/docs/InputFormatReference.md) * [*"binding.gyp" files out in the wild* wiki page](./docs/binding.gyp-files-in-the-wild.md) @@ -240,7 +244,7 @@ Or this on Windows: set npm_config_devdir=c:\temp\.gyp ``` -### `npm` configuration +### `npm` configuration for npm versions before v9 Use the form `OPTION_NAME` for any of the command options listed above. diff --git a/deps/npm/node_modules/node-gyp/bin/node-gyp.js b/deps/npm/node_modules/node-gyp/bin/node-gyp.js index 8652ea21eceebb..f8317b47b34147 100755 --- a/deps/npm/node_modules/node-gyp/bin/node-gyp.js +++ b/deps/npm/node_modules/node-gyp/bin/node-gyp.js @@ -6,7 +6,7 @@ process.title = 'node-gyp' const envPaths = require('env-paths') const gyp = require('../') -const log = require('npmlog') +const log = require('../lib/log') const os = require('os') /** @@ -14,11 +14,11 @@ const os = require('os') */ const prog = gyp() -var completed = false +let completed = false prog.parseArgv(process.argv) prog.devDir = prog.opts.devdir -var homeDir = os.homedir() +const homeDir = os.homedir() if (prog.devDir) { prog.devDir = prog.devDir.replace(/^~/, homeDir) } else if (homeDir) { @@ -32,9 +32,9 @@ if (prog.devDir) { if (prog.todo.length === 0) { if (~process.argv.indexOf('-v') || ~process.argv.indexOf('--version')) { - console.log('v%s', prog.version) + log.stdout('v%s', prog.version) } else { - console.log('%s', prog.usage()) + log.stdout('%s', prog.usage()) } process.exit(0) } @@ -48,11 +48,11 @@ log.info('using', 'node@%s | %s | %s', process.versions.node, process.platform, * Change dir if -C/--directory was passed. */ -var dir = prog.opts.directory +const dir = prog.opts.directory if (dir) { - var fs = require('fs') + const fs = require('fs') try { - var stat = fs.statSync(dir) + const stat = fs.statSync(dir) if (stat.isDirectory()) { log.info('chdir', dir) process.chdir(dir) @@ -68,8 +68,8 @@ if (dir) { } } -function run () { - var command = prog.todo.shift() +async function run () { + const command = prog.todo.shift() if (!command) { // done! completed = true @@ -77,30 +77,28 @@ function run () { return } - prog.commands[command.name](command.args, function (err) { - if (err) { - log.error(command.name + ' error') - log.error('stack', err.stack) - errorMessage() - log.error('not ok') - return process.exit(1) - } + try { + const args = await prog.commands[command.name](command.args) ?? [] + if (command.name === 'list') { - var versions = arguments[1] - if (versions.length > 0) { - versions.forEach(function (version) { - console.log(version) - }) + if (args.length) { + args.forEach((version) => log.stdout(version)) } else { - console.log('No node development files installed. Use `node-gyp install` to install a version.') + log.stdout('No node development files installed. Use `node-gyp install` to install a version.') } - } else if (arguments.length >= 2) { - console.log.apply(console, [].slice.call(arguments, 1)) + } else if (args.length >= 1) { + log.stdout(...args.slice(1)) } // now run the next command in the queue - process.nextTick(run) - }) + return run() + } catch (err) { + log.error(command.name + ' error') + log.error('stack', err.stack) + errorMessage() + log.error('not ok') + return process.exit(1) + } } process.on('exit', function (code) { @@ -120,7 +118,7 @@ process.on('uncaughtException', function (err) { function errorMessage () { // copied from npm's lib/utils/error-handler.js - var os = require('os') + const os = require('os') log.error('System', os.type() + ' ' + os.release()) log.error('command', process.argv .map(JSON.stringify).join(' ')) diff --git a/deps/npm/node_modules/node-gyp/docs/Error-pre-versions-of-node-cannot-be-installed.md b/deps/npm/node_modules/node-gyp/docs/Error-pre-versions-of-node-cannot-be-installed.md deleted file mode 100644 index c1e1158d70190b..00000000000000 --- a/deps/npm/node_modules/node-gyp/docs/Error-pre-versions-of-node-cannot-be-installed.md +++ /dev/null @@ -1,94 +0,0 @@ -When using `node-gyp` you might see an error like this when attempting to compile/install a node.js native addon: - -``` -$ npm install bcrypt -npm http GET https://registry.npmjs.org/bcrypt/0.7.5 -npm http 304 https://registry.npmjs.org/bcrypt/0.7.5 -npm http GET https://registry.npmjs.org/bindings/1.0.0 -npm http 304 https://registry.npmjs.org/bindings/1.0.0 - -> bcrypt@0.7.5 install /home/ubuntu/public/song-swap/node_modules/bcrypt -> node-gyp rebuild - -gyp ERR! configure error -gyp ERR! stack Error: "pre" versions of node cannot be installed, use the --nodedir flag instead -gyp ERR! stack at install (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/install.js:69:16) -gyp ERR! stack at Object.self.commands.(anonymous function) [as install] (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js:56:37) -gyp ERR! stack at getNodeDir (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:219:20) -gyp ERR! stack at /usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:105:9 -gyp ERR! stack at ChildProcess.exithandler (child_process.js:630:7) -gyp ERR! stack at ChildProcess.EventEmitter.emit (events.js:99:17) -gyp ERR! stack at maybeClose (child_process.js:730:16) -gyp ERR! stack at Process.ChildProcess._handle.onexit (child_process.js:797:5) -gyp ERR! System Linux 3.5.0-21-generic -gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" -gyp ERR! cwd /home/ubuntu/public/song-swap/node_modules/bcrypt -gyp ERR! node -v v0.11.2-pre -gyp ERR! node-gyp -v v0.9.5 -gyp ERR! not ok -npm ERR! bcrypt@0.7.5 install: `node-gyp rebuild` -npm ERR! `sh "-c" "node-gyp rebuild"` failed with 1 -npm ERR! -npm ERR! Failed at the bcrypt@0.7.5 install script. -npm ERR! This is most likely a problem with the bcrypt package, -npm ERR! not with npm itself. -npm ERR! Tell the author that this fails on your system: -npm ERR! node-gyp rebuild -npm ERR! You can get their info via: -npm ERR! npm owner ls bcrypt -npm ERR! There is likely additional logging output above. - -npm ERR! System Linux 3.5.0-21-generic -npm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install" "bcrypt" -npm ERR! cwd /home/ubuntu/public/song-swap -npm ERR! node -v v0.11.2-pre -npm ERR! npm -v 1.2.18 -npm ERR! code ELIFECYCLE -npm ERR! -npm ERR! Additional logging details can be found in: -npm ERR! /home/ubuntu/public/song-swap/npm-debug.log -npm ERR! not ok code 0 -``` - -The main error here is: - -``` -Error: "pre" versions of node cannot be installed, use the --nodedir flag instead -``` - -This error is caused when you attempt to compile a native addon using a version of node.js with `-pre` at the end of the version number: - -``` bash -$ node -v -v0.10.4-pre -``` - -## How to avoid (the short answer) - -To avoid this error completely just use a stable release of node.js. i.e. `v0.10.4`, and __not__ `v0.10.4-pre`. - -## How to fix (the long answer) - -This error happens because `node-gyp` does not know what header files were used to compile your "pre" version of node, and therefore it needs you to specify the node source code directory path using the `--nodedir` flag. - -For example, if I compiled my development ("pre") version of node.js using the source code in `/Users/nrajlich/node`, then I could invoke `node-gyp` like: - -``` bash -$ node-gyp rebuild --nodedir=/Users/nrajlich/node -``` - -Or install an native addon through `npm` like: - -``` bash -$ npm install bcrypt --nodedir=/Users/nrajlich/node -``` - -### Always use `--nodedir` - -__Note:__ This is for advanced users who use `-pre` versions of node more often than tagged releases. - -If you're invoking `node-gyp` through `npm`, then you can leverage `npm`'s configuration system and not have to specify the `--nodedir` flag all the time: - -``` bash -$ npm config set nodedir /Users/nrajlich/node -``` \ No newline at end of file diff --git a/deps/npm/node_modules/node-gyp/docs/Force-npm-to-use-global-node-gyp.md b/deps/npm/node_modules/node-gyp/docs/Force-npm-to-use-global-node-gyp.md deleted file mode 100644 index c6304e490a75d9..00000000000000 --- a/deps/npm/node_modules/node-gyp/docs/Force-npm-to-use-global-node-gyp.md +++ /dev/null @@ -1,47 +0,0 @@ -# Force npm to use global installed node-gyp - -**Note: These instructions only work with npm 6 or older. For a solution that works with npm 8 (or older), see [Updating-npm-bundled-node-gyp.md](Updating-npm-bundled-node-gyp.md).** - -[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 -not running a [current version of node-gyp](https://github.com/nodejs/node-gyp/releases). - -npm bundles its own, internal, copy of node-gyp located at `npm/node_modules`, within npm's private dependencies which are separate from *globally* accessible packages. Therefore this internal copy of node-gyp is independent from any globally installed copy of node-gyp that -may have been installed via `npm install -g node-gyp`. - -So npm's internal copy of node-gyp **isn't** stored inside *global* `node_modules` and thus isn't available for use as a standalone package. npm uses it's *internal* copy of `node-gyp` to automatically build native addons. - -When you install a _new_ version of node-gyp outside of npm, it'll go into your *global* `node_modules`, but not under the `npm/node_modules` (where internal copy of node-gyp is stored). So it will get into your `$PATH` and you will be able to use this globally installed version (**but not internal node-gyp of npm**) as any other globally installed package. - -The catch is that npm **won't** use global version unless you tell it to, it'll keep on using the **internal one**. You need to instruct it to by setting the `node_gyp` config variable (which goes into your `~/.npmrc`). You do this by running the `npm config set` command as below. Then npm will use the command in the path you supply whenever it needs to build a native addon. - -**Important**: You also need to remember to unset this when you upgrade npm with a newer version of node-gyp, or you have to manually keep your globally installed node-gyp to date. See "Undo" below. - -## Linux and macOS -``` -npm install --global node-gyp@latest -npm config set node_gyp $(npm prefix -g)/lib/node_modules/node-gyp/bin/node-gyp.js -``` - -`sudo` may be required for the first command if you get a permission error. - -## Windows - -### Windows Command Prompt -``` -npm install --global node-gyp@latest -for /f "delims=" %P in ('npm prefix -g') do npm config set node_gyp "%P\node_modules\node-gyp\bin\node-gyp.js" -``` - -### Powershell -``` -npm install --global node-gyp@latest -npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"} -``` - -## Undo -**Beware** if you don't unset the `node_gyp` config option, npm will continue to use the globally installed version of node-gyp rather than the one it ships with, which may end up being newer. - -``` -npm config delete node_gyp -npm uninstall --global node-gyp -``` diff --git a/deps/npm/node_modules/node-gyp/docs/Home.md b/deps/npm/node_modules/node-gyp/docs/Home.md deleted file mode 100644 index fe099868b28225..00000000000000 --- a/deps/npm/node_modules/node-gyp/docs/Home.md +++ /dev/null @@ -1,7 +0,0 @@ -Welcome to the node-gyp wiki! - - * [["binding.gyp" files out in the wild]] - * [[Linking to OpenSSL]] - * [[Common Issues]] - * [[Updating npm's bundled node-gyp]] - * [[Error: "pre" versions of node cannot be installed]] diff --git a/deps/npm/node_modules/node-gyp/docs/Linking-to-OpenSSL.md b/deps/npm/node_modules/node-gyp/docs/Linking-to-OpenSSL.md deleted file mode 100644 index 1c17ab8e313667..00000000000000 --- a/deps/npm/node_modules/node-gyp/docs/Linking-to-OpenSSL.md +++ /dev/null @@ -1,86 +0,0 @@ -A handful of native addons require linking to OpenSSL in one way or another. This introduces a small challenge since node will sometimes bundle OpenSSL statically (the default for node >= v0.8.x), or sometimes dynamically link to the system OpenSSL (default for node <= v0.6.x). - -Good native addons should account for both scenarios. It's recommended that you use the `binding.gyp` file provided below as a starting-point for any addon that needs to use OpenSSL: - -``` python -{ - 'variables': { - # node v0.6.x doesn't give us its build variables, - # but on Unix it was only possible to use the system OpenSSL library, - # so default the variable to "true", v0.8.x node and up will overwrite it. - 'node_shared_openssl%': 'true' - }, - 'targets': [ - { - 'target_name': 'binding', - 'sources': [ - 'src/binding.cc' - ], - 'conditions': [ - ['node_shared_openssl=="false"', { - # so when "node_shared_openssl" is "false", then OpenSSL has been - # bundled into the node executable. So we need to include the same - # header files that were used when building node. - 'include_dirs': [ - '<(node_root_dir)/deps/openssl/openssl/include' - ], - "conditions" : [ - ["target_arch=='ia32'", { - "include_dirs": [ "<(node_root_dir)/deps/openssl/config/piii" ] - }], - ["target_arch=='x64'", { - "include_dirs": [ "<(node_root_dir)/deps/openssl/config/k8" ] - }], - ["target_arch=='arm'", { - "include_dirs": [ "<(node_root_dir)/deps/openssl/config/arm" ] - }] - ] - }] - ] - } - ] -} -``` - -This ensures that when OpenSSL is statically linked into `node` then, the bundled OpenSSL headers are included, but when the system OpenSSL is in use, then only those headers will be used. - -## Windows? - -As you can see this baseline `binding.gyp` file only accounts for the Unix scenario. Currently on Windows the situation is a little less ideal. On Windows, OpenSSL is _always_ statically compiled into the `node` executable, so ideally it would be possible to use that copy of OpenSSL when building native addons. - -Unfortunately it doesn't seem like that is possible at the moment, as there would need to be tweaks made to the generated `node.lib` file to include the openssl glue functions, or a new `openssl.lib` file would need to be created during the node build. I'm not sure which is the easiest/most feasible. - -In the meantime, one possible solution is using another copy of OpenSSL, which is what [`node-bcrypt`](https://github.com/ncb000gt/node.bcrypt.js) currently does. Adding something like this to your `binding.gyp` file's `"conditions"` block would enable this: - -``` python - [ 'OS=="win"', { - 'conditions': [ - # "openssl_root" is the directory on Windows of the OpenSSL files. - # Check the "target_arch" variable to set good default values for - # both 64-bit and 32-bit builds of the module. - ['target_arch=="x64"', { - 'variables': { - 'openssl_root%': 'C:/OpenSSL-Win64' - }, - }, { - 'variables': { - 'openssl_root%': 'C:/OpenSSL-Win32' - }, - }], - ], - 'libraries': [ - '-l<(openssl_root)/lib/libeay32.lib', - ], - 'include_dirs': [ - '<(openssl_root)/include', - ], - }] -``` - -Now you can direct your users to install OpenSSL on Windows from here (be sure to tell them to install the 64-bit version if they're compiling against a 64-bit version of node): http://slproweb.com/products/Win32OpenSSL.html - -Also note that both `node-gyp` and `npm` allow you to overwrite that default `openssl_root` variable on the command line: - -``` bash -$ node-gyp rebuild --openssl-root="C:\Users\Nathan\Desktop\openssl" -``` \ No newline at end of file diff --git a/deps/npm/node_modules/node-gyp/docs/README.md b/deps/npm/node_modules/node-gyp/docs/README.md deleted file mode 100644 index 487fb0a57edbfa..00000000000000 --- a/deps/npm/node_modules/node-gyp/docs/README.md +++ /dev/null @@ -1,19 +0,0 @@ -## 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. - -## `node-sass` is deprecated - -Please be aware that the package [`node-sass` is deprecated](https://github.com/sass/node-sass#node-sass) so you should actively seek alternatives. You can try: -``` -npm uninstall node-sass -npm install sass --save -# or ... -npm install --global node-sass@latest -``` -`node-sass` projects _may_ work by downgrading to Node.js v14 but [that release is end-of-life](https://github.com/nodejs/release#release-schedule). -But in any case, please avoid opening new `node-sass` issues on this repo because we [cannot help much](https://github.com/nodejs/node-gyp/issues?q=is%3Aissue+label%3A%22Node+Sass+--%3E+Dart+Sass%22+). - -## Issues finding the installed Visual Studio - -In cmd, [`npm config set msvs_version 20xx`](https://github.com/nodejs/node-gyp#on-windows) with ___xx___ matching your locally installed version of Visual Studio. 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 deleted file mode 100644 index 5759add3fee572..00000000000000 --- a/deps/npm/node_modules/node-gyp/docs/Updating-npm-bundled-node-gyp.md +++ /dev/null @@ -1,72 +0,0 @@ -# Updating the npm-bundled version of node-gyp - -**Note: These instructions are (only) tested and known to work with npm 8 and older.** - -**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/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 -may have been installed via `npm install -g node-gyp`. - -This means that while `node-gyp` doesn't get installed into your `$PATH` by default, npm still keeps its own copy to invoke when you -attempt to `npm install` a native add-on. - -Sometimes, you may need to update npm's internal node-gyp to a newer version than what is installed. A simple `npm install -g node-gyp` -_won't_ do the trick since npm will still continue to use its internal copy over the global one. - -So instead: - -## Version of npm - -We need to start by knowing your version of `npm`: -```bash -npm --version -``` - -## Linux, macOS, Solaris, etc. - -Unix is easy. Just run the following command. - -If your npm is version ___7 or 8___, do: -```bash -$ npm explore npm/node_modules/@npmcli/run-script -g -- npm_config_global=false npm install node-gyp@latest -``` - -Else if your npm is version ___less than 7___, do: -```bash -$ npm explore npm/node_modules/npm-lifecycle -g -- npm install node-gyp@latest -``` - -If the command fails with a permissions error, please try `sudo` and then the command. - -## Windows - -Windows is a bit trickier, since `npm` might be installed to the "Program Files" directory, which needs admin privileges in order to -modify on current Windows. Therefore, run the following commands __inside a `cmd.exe` started with "Run as Administrator"__: - -First we need to find the location of `node`. If you don't already know the location that `node.exe` got installed to, then run: -```bash -$ where node -``` - -Now `cd` to the directory that `node.exe` is contained in e.g.: -```bash -$ cd "C:\Program Files\nodejs" -``` - -If your npm version is ___7 or 8___, do: -```bash -cd node_modules\npm\node_modules\@npmcli\run-script -``` - -Else if your npm version is ___less than 7___, do: -```bash -cd node_modules\npm\node_modules\npm-lifecycle -``` - -Finish by running: -```bash -$ npm install node-gyp@latest -``` diff --git a/deps/npm/node_modules/node-gyp/docs/binding.gyp-files-in-the-wild.md b/deps/npm/node_modules/node-gyp/docs/binding.gyp-files-in-the-wild.md deleted file mode 100644 index 78afb32544776f..00000000000000 --- a/deps/npm/node_modules/node-gyp/docs/binding.gyp-files-in-the-wild.md +++ /dev/null @@ -1,49 +0,0 @@ -This page contains links to some examples of existing `binding.gyp` files that other node modules are using. Take a look at them for inspiration. - -To add to this page, just add the link to the project's `binding.gyp` file below: - - * [ons](https://github.com/XadillaX/aliyun-ons/blob/master/binding.gyp) - * [thmclrx](https://github.com/XadillaX/thmclrx/blob/master/binding.gyp) - * [libxmljs](https://github.com/polotek/libxmljs/blob/master/binding.gyp) - * [node-buffertools](https://github.com/bnoordhuis/node-buffertools/blob/master/binding.gyp) - * [node-canvas](https://github.com/LearnBoost/node-canvas/blob/master/binding.gyp) - * [node-ffi](https://github.com/rbranson/node-ffi/blob/master/binding.gyp) + [libffi](https://github.com/rbranson/node-ffi/blob/master/deps/libffi/libffi.gyp) - * [node-time](https://github.com/TooTallNate/node-time/blob/master/binding.gyp) - * [node-sass](https://github.com/sass/node-sass/blob/master/binding.gyp) + [libsass](https://github.com/sass/node-sass/blob/master/src/libsass.gyp) - * [node-serialport](https://github.com/voodootikigod/node-serialport/blob/master/binding.gyp) - * [node-weak](https://github.com/TooTallNate/node-weak/blob/master/binding.gyp) - * [pty.js](https://github.com/chjj/pty.js/blob/master/binding.gyp) - * [ref](https://github.com/TooTallNate/ref/blob/master/binding.gyp) - * [appjs](https://github.com/milani/appjs/blob/master/binding.gyp) - * [nwm](https://github.com/mixu/nwm/blob/master/binding.gyp) - * [bcrypt](https://github.com/ncb000gt/node.bcrypt.js/blob/master/binding.gyp) - * [nk-mysql](https://github.com/mmod/nodamysql/blob/master/binding.gyp) - * [nk-xrm-installer](https://github.com/mmod/nk-xrm-installer/blob/master/binding.gyp) + [includable.gypi](https://github.com/mmod/nk-xrm-installer/blob/master/includable.gypi) + [unpack.py](https://github.com/mmod/nk-xrm-installer/blob/master/unpack.py) + [disburse.py](https://github.com/mmod/nk-xrm-installer/blob/master/disburse.py) - .py files above provide complete reference for examples of fetching source via http, extracting, and moving files. - * [node-memwatch](https://github.com/lloyd/node-memwatch/blob/master/binding.gyp) - * [node-ip2location](https://github.com/bolgovr/node-ip2location/blob/master/binding.gyp) - * [node-midi](https://github.com/justinlatimer/node-midi/blob/master/binding.gyp) - * [node-sqlite3](https://github.com/developmentseed/node-sqlite3/blob/master/binding.gyp) + [libsqlite3](https://github.com/developmentseed/node-sqlite3/blob/master/deps/sqlite3.gyp) - * [node-zipfile](https://github.com/mapbox/node-zipfile/blob/master/binding.gyp) - * [node-mapnik](https://github.com/mapnik/node-mapnik/blob/master/binding.gyp) - * [node-inotify](https://github.com/c4milo/node-inotify/blob/master/binding.gyp) - * [v8-profiler](https://github.com/c4milo/v8-profiler/blob/master/binding.gyp) - * [airtunes](https://github.com/radioline/node_airtunes/blob/master/binding.gyp) - * [node-fann](https://github.com/c4milo/node-fann/blob/master/binding.gyp) - * [node-talib](https://github.com/oransel/node-talib/blob/master/binding.gyp) - * [node-leveldown](https://github.com/rvagg/node-leveldown/blob/master/binding.gyp) + [leveldb.gyp](https://github.com/rvagg/node-leveldown/blob/master/deps/leveldb/leveldb.gyp) + [snappy.gyp](https://github.com/rvagg/node-leveldown/blob/master/deps/snappy/snappy.gyp) - * [node-expat](https://github.com/astro/node-expat/blob/master/binding.gyp) + [libexpat](https://github.com/astro/node-expat/blob/master/deps/libexpat/libexpat.gyp) - * [node-openvg-canvas](https://github.com/luismreis/node-openvg-canvas/blob/master/binding.gyp) + [node-openvg](https://github.com/luismreis/node-openvg/blob/master/binding.gyp) - * [node-cryptopp](https://github.com/BatikhSouri/node-cryptopp/blob/master/binding.gyp) - * [topcube](https://github.com/creationix/topcube/blob/master/binding.gyp) - * [node-osmium](https://github.com/osmcode/node-osmium/blob/master/binding.gyp) - * [node-osrm](https://github.com/DennisOSRM/node-osrm) - * [node-oracle](https://github.com/joeferner/node-oracle/blob/master/binding.gyp) - * [node-process-list](https://github.com/ReklatsMasters/node-process-list/blob/master/binding.gyp) - * [node-nanomsg](https://github.com/nickdesaulniers/node-nanomsg/blob/master/binding.gyp) - * [Ghostscript4JS](https://github.com/NickNaso/ghostscript4js/blob/master/binding.gyp) - * [nodecv](https://github.com/xudafeng/nodecv/blob/master/binding.gyp) - * [magick-cli](https://github.com/NickNaso/magick-cli/blob/master/binding.gyp) - * [sharp](https://github.com/lovell/sharp/blob/master/binding.gyp) - * [krb5](https://github.com/adaltas/node-krb5/blob/master/binding.gyp) - * [node-heapdump](https://github.com/bnoordhuis/node-heapdump/blob/master/binding.gyp) diff --git a/deps/npm/node_modules/node-gyp/gyp/.flake8 b/deps/npm/node_modules/node-gyp/gyp/.flake8 deleted file mode 100644 index ea0c7680ef87b2..00000000000000 --- a/deps/npm/node_modules/node-gyp/gyp/.flake8 +++ /dev/null @@ -1,4 +0,0 @@ -[flake8] -max-complexity = 101 -max-line-length = 88 -extend-ignore = E203 # whitespace before ':' to agree with psf/black diff --git a/deps/npm/node_modules/node-gyp/gyp/.github/workflows/Python_tests.yml b/deps/npm/node_modules/node-gyp/gyp/.github/workflows/Python_tests.yml deleted file mode 100644 index aad135027ce8fc..00000000000000 --- a/deps/npm/node_modules/node-gyp/gyp/.github/workflows/Python_tests.yml +++ /dev/null @@ -1,36 +0,0 @@ -# TODO: Enable os: windows-latest -# TODO: Enable pytest --doctest-modules - -name: Python_tests -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - workflow_dispatch: -jobs: - Python_tests: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - max-parallel: 8 - matrix: - os: [macos-latest, ubuntu-latest] # , windows-latest] - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"] - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools - pip install --editable ".[dev]" - - run: ./gyp -V && ./gyp --version && gyp -V && gyp --version - - name: Lint with flake8 - run: flake8 . --ignore=E203,W503 --max-complexity=101 --max-line-length=88 --show-source --statistics - - name: Test with pytest - run: pytest - # - name: Run doctests with pytest - # run: pytest --doctest-modules diff --git a/deps/npm/node_modules/node-gyp/gyp/.github/workflows/node-gyp.yml b/deps/npm/node_modules/node-gyp/gyp/.github/workflows/node-gyp.yml deleted file mode 100644 index 7cc1f9e0754365..00000000000000 --- a/deps/npm/node_modules/node-gyp/gyp/.github/workflows/node-gyp.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: node-gyp integration -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - workflow_dispatch: -jobs: - integration: - strategy: - fail-fast: false - matrix: - os: [macos-latest, ubuntu-latest, windows-latest] - python: ["3.7", "3.10"] - - runs-on: ${{ matrix.os }} - steps: - - name: Clone gyp-next - uses: actions/checkout@v3 - with: - path: gyp-next - - name: Clone nodejs/node-gyp - uses: actions/checkout@v3 - with: - repository: nodejs/node-gyp - path: node-gyp - - uses: actions/setup-node@v3 - with: - node-version: 14.x - - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python }} - - name: Install dependencies - run: | - cd node-gyp - npm install --no-progress - - name: Replace gyp in node-gyp - shell: bash - run: | - rm -rf node-gyp/gyp - cp -r gyp-next node-gyp/gyp - - name: Run tests - run: | - cd node-gyp - npm test diff --git a/deps/npm/node_modules/node-gyp/gyp/.github/workflows/nodejs-windows.yml b/deps/npm/node_modules/node-gyp/gyp/.github/workflows/nodejs-windows.yml deleted file mode 100644 index 4e6c9548ff5c59..00000000000000 --- a/deps/npm/node_modules/node-gyp/gyp/.github/workflows/nodejs-windows.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Node.js Windows integration - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - workflow_dispatch: - -jobs: - build-windows: - runs-on: windows-2019 - steps: - - name: Clone gyp-next - uses: actions/checkout@v3 - with: - path: gyp-next - - name: Clone nodejs/node - uses: actions/checkout@v3 - with: - repository: nodejs/node - path: node - - name: Install deps - run: choco install nasm - - name: Replace gyp in Node.js - run: | - rm -Recurse node/tools/gyp - cp -Recurse gyp-next node/tools/gyp - - name: Build Node.js - run: | - cd node - ./vcbuild.bat diff --git a/deps/npm/node_modules/node-gyp/gyp/.github/workflows/release-please.yml b/deps/npm/node_modules/node-gyp/gyp/.github/workflows/release-please.yml deleted file mode 100644 index 665c4c48fed210..00000000000000 --- a/deps/npm/node_modules/node-gyp/gyp/.github/workflows/release-please.yml +++ /dev/null @@ -1,16 +0,0 @@ -on: - push: - branches: - - main - -name: release-please -jobs: - release-please: - runs-on: ubuntu-latest - steps: - - uses: google-github-actions/release-please-action@v3 - with: - token: ${{ secrets.GITHUB_TOKEN }} - release-type: python - package-name: gyp-next - bump-minor-pre-major: true diff --git a/deps/npm/node_modules/node-gyp/gyp/AUTHORS b/deps/npm/node_modules/node-gyp/gyp/AUTHORS deleted file mode 100644 index f49a357b9ed104..00000000000000 --- a/deps/npm/node_modules/node-gyp/gyp/AUTHORS +++ /dev/null @@ -1,16 +0,0 @@ -# Names should be added to this file like so: -# Name or Organization - -Google Inc. <*@google.com> -Bloomberg Finance L.P. <*@bloomberg.net> -IBM Inc. <*@*.ibm.com> -Yandex LLC <*@yandex-team.ru> - -Steven Knight -Ryan Norton -David J. Sankel -Eric N. Vander Weele -Tom Freudenberg -Julien Brianceau -Refael Ackermann -Ujjwal Sharma diff --git a/deps/npm/node_modules/node-gyp/gyp/CHANGELOG.md b/deps/npm/node_modules/node-gyp/gyp/CHANGELOG.md deleted file mode 100644 index 4b4968f6a4ca8e..00000000000000 --- a/deps/npm/node_modules/node-gyp/gyp/CHANGELOG.md +++ /dev/null @@ -1,233 +0,0 @@ -# Changelog - -## [0.14.0](https://github.com/nodejs/gyp-next/compare/v0.13.0...v0.14.0) (2022-10-08) - - -### Features - -* Add command line argument for `gyp --version` ([#164](https://github.com/nodejs/gyp-next/issues/164)) ([5c9f4d0](https://github.com/nodejs/gyp-next/commit/5c9f4d05678dd855e18ed2327219e5d18e5374db)) -* ninja build for iOS ([#174](https://github.com/nodejs/gyp-next/issues/174)) ([b6f2714](https://github.com/nodejs/gyp-next/commit/b6f271424e0033d7ed54d437706695af2ba7a1bf)) -* **zos:** support IBM Open XL C/C++ & PL/I compilers on z/OS ([#178](https://github.com/nodejs/gyp-next/issues/178)) ([43a7211](https://github.com/nodejs/gyp-next/commit/43a72110ae3fafb13c9625cc7a969624b27cda47)) - - -### Bug Fixes - -* lock windows env ([#163](https://github.com/nodejs/gyp-next/issues/163)) ([44bd0dd](https://github.com/nodejs/gyp-next/commit/44bd0ddc93ea0b5770a44dd326a2e4ae62c21442)) -* move configuration information into pyproject.toml ([#176](https://github.com/nodejs/gyp-next/issues/176)) ([d69d8ec](https://github.com/nodejs/gyp-next/commit/d69d8ece6dbff7af4f2ea073c9fd170baf8cb7f7)) -* node.js debugger adds stderr (but exit code is 0) -> shouldn't throw ([#179](https://github.com/nodejs/gyp-next/issues/179)) ([1a457d9](https://github.com/nodejs/gyp-next/commit/1a457d9ed08cfd30c9fa551bc5cf0d90fb583787)) - -## [0.13.0](https://www.github.com/nodejs/gyp-next/compare/v0.12.1...v0.13.0) (2022-05-11) - - -### Features - -* add PRODUCT_DIR_ABS variable ([#151](https://www.github.com/nodejs/gyp-next/issues/151)) ([80d2626](https://www.github.com/nodejs/gyp-next/commit/80d26263581db829b61b312a7bdb5cc791df7824)) - - -### Bug Fixes - -* execvp: printf: Argument list too long ([#147](https://www.github.com/nodejs/gyp-next/issues/147)) ([c4e14f3](https://www.github.com/nodejs/gyp-next/commit/c4e14f301673fadbac3ab7882d0b5f4d02530cb9)) - -### [0.12.1](https://www.github.com/nodejs/gyp-next/compare/v0.12.0...v0.12.1) (2022-04-06) - - -### Bug Fixes - -* **msvs:** avoid fixing path for arguments with "=" ([#143](https://www.github.com/nodejs/gyp-next/issues/143)) ([7e8f16e](https://www.github.com/nodejs/gyp-next/commit/7e8f16eb165e042e64bec98fa6c2a0232a42c26b)) - -## [0.12.0](https://www.github.com/nodejs/gyp-next/compare/v0.11.0...v0.12.0) (2022-04-04) - - -### Features - -* support building shared libraries on z/OS ([#137](https://www.github.com/nodejs/gyp-next/issues/137)) ([293bcfa](https://www.github.com/nodejs/gyp-next/commit/293bcfa4c25c6adb743377adafc45a80fee492c6)) - -## [0.11.0](https://www.github.com/nodejs/gyp-next/compare/v0.10.1...v0.11.0) (2022-03-04) - - -### Features - -* Add proper support for IBM i ([#140](https://www.github.com/nodejs/gyp-next/issues/140)) ([fdda4a3](https://www.github.com/nodejs/gyp-next/commit/fdda4a3038b8a7042ad960ce7a223687c24a21b1)) - -### [0.10.1](https://www.github.com/nodejs/gyp-next/compare/v0.10.0...v0.10.1) (2021-11-24) - - -### Bug Fixes - -* **make:** only generate makefile for multiple toolsets if requested ([#133](https://www.github.com/nodejs/gyp-next/issues/133)) ([f463a77](https://www.github.com/nodejs/gyp-next/commit/f463a77705973289ea38fec1b244c922ac438e26)) - -## [0.10.0](https://www.github.com/nodejs/gyp-next/compare/v0.9.6...v0.10.0) (2021-08-26) - - -### Features - -* **msvs:** add support for Visual Studio 2022 ([#124](https://www.github.com/nodejs/gyp-next/issues/124)) ([4bd9215](https://www.github.com/nodejs/gyp-next/commit/4bd9215c44d300f06e916aec1d6327c22b78272d)) - -### [0.9.6](https://www.github.com/nodejs/gyp-next/compare/v0.9.5...v0.9.6) (2021-08-23) - - -### Bug Fixes - -* align flake8 test ([#122](https://www.github.com/nodejs/gyp-next/issues/122)) ([f1faa8d](https://www.github.com/nodejs/gyp-next/commit/f1faa8d3081e1a47e917ff910892f00dff16cf8a)) -* **msvs:** fix paths again in action command arguments ([#121](https://www.github.com/nodejs/gyp-next/issues/121)) ([7159dfb](https://www.github.com/nodejs/gyp-next/commit/7159dfbc5758c9ec717e215f2c36daf482c846a1)) - -### [0.9.5](https://www.github.com/nodejs/gyp-next/compare/v0.9.4...v0.9.5) (2021-08-18) - - -### Bug Fixes - -* add python 3.6 to node-gyp integration test ([3462d4c](https://www.github.com/nodejs/gyp-next/commit/3462d4ce3c31cce747513dc7ca9760c81d57c60e)) -* revert for windows compatibility ([d078e7d](https://www.github.com/nodejs/gyp-next/commit/d078e7d7ae080ddae243188f6415f940376a7368)) -* support msvs_quote_cmd in ninja generator ([#117](https://www.github.com/nodejs/gyp-next/issues/117)) ([46486ac](https://www.github.com/nodejs/gyp-next/commit/46486ac6e9329529d51061e006a5b39631e46729)) - -### [0.9.4](https://www.github.com/nodejs/gyp-next/compare/v0.9.3...v0.9.4) (2021-08-09) - - -### Bug Fixes - -* .S is an extension for asm file on Windows ([#115](https://www.github.com/nodejs/gyp-next/issues/115)) ([d2fad44](https://www.github.com/nodejs/gyp-next/commit/d2fad44ef3a79ca8900f1307060153ded57053fc)) - -### [0.9.3](https://www.github.com/nodejs/gyp-next/compare/v0.9.2...v0.9.3) (2021-07-07) - - -### Bug Fixes - -* build failure with ninja and Python 3 on Windows ([#113](https://www.github.com/nodejs/gyp-next/issues/113)) ([c172d10](https://www.github.com/nodejs/gyp-next/commit/c172d105deff5db4244e583942215918fa80dd3c)) - -### [0.9.2](https://www.github.com/nodejs/gyp-next/compare/v0.9.1...v0.9.2) (2021-05-21) - - -### Bug Fixes - -* add support of utf8 encoding ([#105](https://www.github.com/nodejs/gyp-next/issues/105)) ([4d0f93c](https://www.github.com/nodejs/gyp-next/commit/4d0f93c249286d1f0c0f665f5fe7346119f98cf1)) - -### [0.9.1](https://www.github.com/nodejs/gyp-next/compare/v0.9.0...v0.9.1) (2021-05-14) - - -### Bug Fixes - -* py lint ([3b6a8ee](https://www.github.com/nodejs/gyp-next/commit/3b6a8ee7a66193a8a6867eba9e1d2b70bdf04402)) - -## [0.9.0](https://www.github.com/nodejs/gyp-next/compare/v0.8.1...v0.9.0) (2021-05-13) - - -### Features - -* use LDFLAGS_host for host toolset ([#98](https://www.github.com/nodejs/gyp-next/issues/98)) ([bea5c7b](https://www.github.com/nodejs/gyp-next/commit/bea5c7bd67d6ad32acbdce79767a5481c70675a2)) - - -### Bug Fixes - -* msvs.py: remove overindentation ([#102](https://www.github.com/nodejs/gyp-next/issues/102)) ([3f83e99](https://www.github.com/nodejs/gyp-next/commit/3f83e99056d004d9579ceb786e06b624ddc36529)) -* update gyp.el to change case to cl-case ([#93](https://www.github.com/nodejs/gyp-next/issues/93)) ([13d5b66](https://www.github.com/nodejs/gyp-next/commit/13d5b66aab35985af9c2fb1174fdc6e1c1407ecc)) - -### [0.8.1](https://www.github.com/nodejs/gyp-next/compare/v0.8.0...v0.8.1) (2021-02-18) - - -### Bug Fixes - -* update shebang lines from python to python3 ([#94](https://www.github.com/nodejs/gyp-next/issues/94)) ([a1b0d41](https://www.github.com/nodejs/gyp-next/commit/a1b0d4171a8049a4ab7a614202063dec332f2df4)) - -## [0.8.0](https://www.github.com/nodejs/gyp-next/compare/v0.7.0...v0.8.0) (2021-01-15) - - -### ⚠ BREAKING CHANGES - -* remove support for Python 2 - -### Bug Fixes - -* revert posix build job ([#86](https://www.github.com/nodejs/gyp-next/issues/86)) ([39dc34f](https://www.github.com/nodejs/gyp-next/commit/39dc34f0799c074624005fb9bbccf6e028607f9d)) - - -### gyp - -* Remove support for Python 2 ([#88](https://www.github.com/nodejs/gyp-next/issues/88)) ([22e4654](https://www.github.com/nodejs/gyp-next/commit/22e465426fd892403c95534229af819a99c3f8dc)) - -## [0.7.0](https://www.github.com/nodejs/gyp-next/compare/v0.6.2...v0.7.0) (2020-12-17) - - -### ⚠ BREAKING CHANGES - -* **msvs:** On Windows, arguments passed to the "action" commands are no longer transformed to replace slashes with backslashes. - -### Features - -* **xcode:** --cross-compiling overrides arch-specific settings ([973bae0](https://www.github.com/nodejs/gyp-next/commit/973bae0b7b08be7b680ecae9565fbd04b3e0787d)) - - -### Bug Fixes - -* **msvs:** do not fix paths in action command arguments ([fc22f83](https://www.github.com/nodejs/gyp-next/commit/fc22f8335e2016da4aae4f4233074bd651d2faea)) -* cmake on python 3 ([fd61f5f](https://www.github.com/nodejs/gyp-next/commit/fd61f5faa5275ec8fc98e3c7868c0dd46f109540)) -* ValueError: invalid mode: 'rU' while trying to load binding.gyp ([d0504e6](https://www.github.com/nodejs/gyp-next/commit/d0504e6700ce48f44957a4d5891b142a60be946f)) -* xcode cmake parsing ([eefe8d1](https://www.github.com/nodejs/gyp-next/commit/eefe8d10e99863bc4ac7e2ed32facd608d400d4b)) - -### [0.6.2](https://www.github.com/nodejs/gyp-next/compare/v0.6.1...v0.6.2) (2020-10-16) - - -### Bug Fixes - -* do not rewrite absolute paths to avoid long paths ([#74](https://www.github.com/nodejs/gyp-next/issues/74)) ([c2ccc1a](https://www.github.com/nodejs/gyp-next/commit/c2ccc1a81f7f94433a94f4d01a2e820db4c4331a)) -* only include MARMASM when toolset is target ([5a2794a](https://www.github.com/nodejs/gyp-next/commit/5a2794aefb58f0c00404ff042b61740bc8b8d5cd)) - -### [0.6.1](https://github.com/nodejs/gyp-next/compare/v0.6.0...v0.6.1) (2020-10-14) - - -### Bug Fixes - -* Correctly rename object files for absolute paths in MSVS generator. - -## [0.6.0](https://github.com/nodejs/gyp-next/compare/v0.5.0...v0.6.0) (2020-10-13) - - -### Features - -* The Makefile generator will now output shared libraries directly to the product directory on all platforms (previously only macOS). - -## [0.5.0](https://github.com/nodejs/gyp-next/compare/v0.4.0...v0.5.0) (2020-09-30) - - -### Features - -* Extended compile_commands_json generator to consider more file extensions than just `c` and `cc`. `cpp` and `cxx` are now supported. -* Source files with duplicate basenames are now supported. - -### Removed - -* The `--no-duplicate-basename-check` option was removed. -* The `msvs_enable_marmasm` configuration option was removed in favor of auto-inclusion of the "marmasm" sections for Windows on ARM. - -## [0.4.0](https://github.com/nodejs/gyp-next/compare/v0.3.0...v0.4.0) (2020-07-14) - - -### Features - -* Added support for passing arbitrary architectures to Xcode builds, enables `arm64` builds. - -### Bug Fixes - -* Fixed a bug on Solaris where copying archives failed. - -## [0.3.0](https://github.com/nodejs/gyp-next/compare/v0.2.1...v0.3.0) (2020-06-06) - - -### Features - -* Added support for MSVC cross-compilation. This allows compilation on x64 for a Windows ARM target. - -### Bug Fixes - -* Fixed XCode CLT version detection on macOS Catalina. - -### [0.2.1](https://github.com/nodejs/gyp-next/compare/v0.2.0...v0.2.1) (2020-05-05) - - -### Bug Fixes - -* Relicensed to Node.js contributors. -* Fixed Windows bug introduced in v0.2.0. - -## [0.2.0](https://github.com/nodejs/gyp-next/releases/tag/v0.2.0) (2020-04-06) - -This is the first release of this project, based on https://chromium.googlesource.com/external/gyp with changes made over the years in Node.js and node-gyp. diff --git a/deps/npm/node_modules/node-gyp/gyp/CODE_OF_CONDUCT.md b/deps/npm/node_modules/node-gyp/gyp/CODE_OF_CONDUCT.md deleted file mode 100644 index d724027fd9aadb..00000000000000 --- a/deps/npm/node_modules/node-gyp/gyp/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,4 +0,0 @@ -# Code of Conduct - -* [Node.js Code of Conduct](https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md) -* [Node.js Moderation Policy](https://github.com/nodejs/admin/blob/HEAD/Moderation-Policy.md) diff --git a/deps/npm/node_modules/node-gyp/gyp/CONTRIBUTING.md b/deps/npm/node_modules/node-gyp/gyp/CONTRIBUTING.md deleted file mode 100644 index 1a0bcde2b48d8e..00000000000000 --- a/deps/npm/node_modules/node-gyp/gyp/CONTRIBUTING.md +++ /dev/null @@ -1,32 +0,0 @@ -# Contributing to gyp-next - -## Code of Conduct - -This project is bound to the [Node.js Code of Conduct](https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md). - - -## Developer's Certificate of Origin 1.1 - -By making a contribution to this project, I certify that: - -* (a) The contribution was created in whole or in part by me and I - have the right to submit it under the open source license - indicated in the file; or - -* (b) The contribution is based upon previous work that, to the best - of my knowledge, is covered under an appropriate open source - license and I have the right under that license to submit that - work with modifications, whether created in whole or in part - by me, under the same open source license (unless I am - permitted to submit under a different license), as indicated - in the file; or - -* (c) The contribution was provided directly to me by some other - person who certified (a), (b) or (c) and I have not modified - it. - -* (d) I understand and agree that this project and the contribution - are public and that a record of the contribution (including all - personal information I submit with it, including my sign-off) is - maintained indefinitely and may be redistributed consistent with - this project or the open source license(s) involved. diff --git a/deps/npm/node_modules/node-gyp/gyp/README.md b/deps/npm/node_modules/node-gyp/gyp/README.md index 9ffc2b21e81b8b..be1d7b9ebf6611 100644 --- a/deps/npm/node_modules/node-gyp/gyp/README.md +++ b/deps/npm/node_modules/node-gyp/gyp/README.md @@ -5,3 +5,26 @@ Documents are available at [gyp.gsrc.io](https://gyp.gsrc.io), or you can check __gyp-next__ is [released](https://github.com/nodejs/gyp-next/releases) to the [__Python Packaging Index__](https://pypi.org/project/gyp-next) (PyPI) and can be installed with the command: * `python3 -m pip install gyp-next` + +When used as a command line utility, __gyp-next__ can also be installed with [pipx](https://pypa.github.io/pipx): +* `pipx install gyp-next` +``` +Installing to a new venv 'gyp-next' + installed package gyp-next 0.13.0, installed using Python 3.10.6 + These apps are now globally available + - gyp +done! ✨ 🌟 ✨ +``` + +Or to run __gyp-next__ directly without installing it: +* `pipx run gyp-next --help` +``` +NOTE: running app 'gyp' from 'gyp-next' +usage: usage: gyp [options ...] [build_file ...] + +options: + -h, --help show this help message and exit + --build CONFIGS configuration for build after project generation + --check check format of gyp files + [ ... ] +``` diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py index d6b189760cef99..bc0e93d07f8900 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py @@ -285,19 +285,17 @@ def Write(self, writer=gyp.common.WriteOnDiff): "\tEndProjectSection\r\n" ) - if isinstance(e, MSVSFolder): - if e.items: - f.write("\tProjectSection(SolutionItems) = preProject\r\n") - for i in e.items: - f.write(f"\t\t{i} = {i}\r\n") - f.write("\tEndProjectSection\r\n") - - if isinstance(e, MSVSProject): - if e.dependencies: - f.write("\tProjectSection(ProjectDependencies) = postProject\r\n") - for d in e.dependencies: - f.write(f"\t\t{d.get_guid()} = {d.get_guid()}\r\n") - f.write("\tEndProjectSection\r\n") + if isinstance(e, MSVSFolder) and e.items: + f.write("\tProjectSection(SolutionItems) = preProject\r\n") + for i in e.items: + f.write(f"\t\t{i} = {i}\r\n") + f.write("\tEndProjectSection\r\n") + + if isinstance(e, MSVSProject) and e.dependencies: + f.write("\tProjectSection(ProjectDependencies) = postProject\r\n") + for d in e.dependencies: + f.write(f"\t\t{d.get_guid()} = {d.get_guid()}\r\n") + f.write("\tEndProjectSection\r\n") f.write("EndProject\r\n") @@ -353,7 +351,7 @@ def Write(self, writer=gyp.common.WriteOnDiff): # Folder mappings # Omit this section if there are no folders - if any([e.entries for e in all_entries if isinstance(e, MSVSFolder)]): + if any(e.entries for e in all_entries if isinstance(e, MSVSFolder)): f.write("\tGlobalSection(NestedProjects) = preSolution\r\n") for e in all_entries: if not isinstance(e, MSVSFolder): diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py index f0cfabe8349099..629f3f61b4819d 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py @@ -79,7 +79,7 @@ def __init__(self, project_path, version, name, guid=None, platforms=None): self.files_section = ["Files"] # Keep a dict keyed on filename to speed up access. - self.files_dict = dict() + self.files_dict = {} def AddToolFile(self, path): """Adds a tool file to the project. diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py index e89a971a3bb4fd..93633dbca133c7 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py @@ -141,7 +141,7 @@ class _Boolean(_Type): """Boolean settings, can have the values 'false' or 'true'.""" def _Validate(self, value): - if value != "true" and value != "false": + if value not in {"true", "false"}: raise ValueError("expected bool; got %r" % value) def ValidateMSVS(self, value): diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py index 2aa39d0318860f..d6cc01307d997c 100755 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py @@ -108,7 +108,9 @@ def Load( if default_variables["GENERATOR"] == "ninja": default_variables.setdefault( "PRODUCT_DIR_ABS", - os.path.join(output_dir, "out", default_variables["build_type"]), + os.path.join( + output_dir, "out", default_variables.get("build_type", "default") + ), ) else: default_variables.setdefault( @@ -622,7 +624,7 @@ def gyp_main(args): if options.generator_flags: gen_flags += options.generator_flags generator_flags = NameValueListToDict(gen_flags) - if DEBUG_GENERAL in gyp.debug.keys(): + if DEBUG_GENERAL in gyp.debug: DebugOutput(DEBUG_GENERAL, "generator_flags: %s", generator_flags) # Generate all requested formats (use a set in case we got one format request diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py index d77adee8afd55d..b73a0c55b1e349 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py @@ -144,20 +144,16 @@ def RelativePath(path, relative_to, follow_path_symlink=True): # symlink, this option has no effect. # Convert to normalized (and therefore absolute paths). - if follow_path_symlink: - path = os.path.realpath(path) - else: - path = os.path.abspath(path) + path = os.path.realpath(path) if follow_path_symlink else os.path.abspath(path) relative_to = os.path.realpath(relative_to) # On Windows, we can't create a relative path to a different drive, so just # use the absolute path. - if sys.platform == "win32": - if ( - os.path.splitdrive(path)[0].lower() - != os.path.splitdrive(relative_to)[0].lower() - ): - return path + if sys.platform == "win32" and ( + os.path.splitdrive(path)[0].lower() + != os.path.splitdrive(relative_to)[0].lower() + ): + return path # Split the paths into components. path_split = path.split(os.path.sep) @@ -277,10 +273,7 @@ def EncodePOSIXShellArgument(argument): if not isinstance(argument, str): argument = str(argument) - if _quote.search(argument): - quote = '"' - else: - quote = "" + quote = '"' if _quote.search(argument) else "" encoded = quote + re.sub(_escape, r"\\\1", argument) + quote diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py index bda1a47468ae2b..02567b251446d7 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py @@ -121,7 +121,11 @@ def WriteXmlIfChanged(content, path, encoding="utf-8", pretty=False, if win32 and os.linesep != "\r\n": xml_string = xml_string.replace("\n", "\r\n") - default_encoding = locale.getdefaultlocale()[1] + try: # getdefaultlocale() was removed in Python 3.11 + default_encoding = locale.getdefaultlocale()[1] + except AttributeError: + default_encoding = locale.getencoding() + if default_encoding and default_encoding.upper() != encoding.upper(): xml_string = xml_string.encode(encoding) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py index 342f693a329d26..2d9b15210dc126 100755 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py @@ -76,6 +76,8 @@ def test_EasyXml_complex(self): '\'Debug|Win32\'" Label="Configuration">' "Application" "Unicode" + "SpectreLoadCF" + "14.36.32532" "" "" ) @@ -99,6 +101,8 @@ def test_EasyXml_complex(self): }, ["ConfigurationType", "Application"], ["CharacterSet", "Unicode"], + ["SpectreMitigation", "SpectreLoadCF"], + ["VCToolsVersion", "14.36.32532"], ], ] ) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py index f15df00c36373e..1334f2fca9967c 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py @@ -379,7 +379,7 @@ def _GenerateTargets(data, target_list, target_dicts, toplevel_dir, files, build target.is_executable = target_type == "executable" target.is_static_library = target_type == "static_library" target.is_or_has_linked_ancestor = ( - target_type == "executable" or target_type == "shared_library" + target_type in {"executable", "shared_library"} ) build_file = gyp.common.ParseQualifiedTarget(target_name)[0] @@ -433,14 +433,14 @@ def _GetUnqualifiedToTargetMapping(all_targets, to_find): if not to_find: return {}, [] to_find = set(to_find) - for target_name in all_targets.keys(): + for target_name in all_targets: extracted = gyp.common.ParseQualifiedTarget(target_name) if len(extracted) > 1 and extracted[1] in to_find: to_find.remove(extracted[1]) result[extracted[1]] = all_targets[target_name] if not to_find: return result, [] - return result, [x for x in to_find] + return result, list(to_find) def _DoesTargetDependOnMatchingTargets(target): @@ -451,8 +451,8 @@ def _DoesTargetDependOnMatchingTargets(target): if target.match_status == MATCH_STATUS_DOESNT_MATCH: return False if ( - target.match_status == MATCH_STATUS_MATCHES - or target.match_status == MATCH_STATUS_MATCHES_BY_DEPENDENCY + target.match_status in {MATCH_STATUS_MATCHES, + MATCH_STATUS_MATCHES_BY_DEPENDENCY} ): return True for dep in target.deps: @@ -683,11 +683,9 @@ def find_matching_test_target_names(self): ) test_target_names_contains_all = "all" in self._test_target_names if test_target_names_contains_all: - test_targets = [ - x for x in (set(test_targets_no_all) | set(self._root_targets)) - ] + test_targets = list(set(test_targets_no_all) | set(self._root_targets)) else: - test_targets = [x for x in test_targets_no_all] + test_targets = list(test_targets_no_all) print("supplied test_targets") for target_name in self._test_target_names: print("\t", target_name) @@ -702,9 +700,9 @@ def find_matching_test_target_names(self): if matching_test_targets_contains_all: # Remove any of the targets for all that were not explicitly supplied, # 'all' is subsequentely added to the matching names below. - matching_test_targets = [ - x for x in (set(matching_test_targets) & set(test_targets_no_all)) - ] + matching_test_targets = list( + set(matching_test_targets) & set(test_targets_no_all) + ) print("matched test_targets") for target in matching_test_targets: print("\t", target.name) @@ -729,9 +727,7 @@ def find_matching_compile_target_names(self): self._supplied_target_names_no_all(), self._unqualified_mapping ) if "all" in self._supplied_target_names(): - supplied_targets = [ - x for x in (set(supplied_targets) | set(self._root_targets)) - ] + supplied_targets = list(set(supplied_targets) | set(self._root_targets)) print("Supplied test_targets & compile_targets") for target in supplied_targets: print("\t", target.name) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py index cdf1a4832cf1ad..d3c97c666db077 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py @@ -697,7 +697,7 @@ def ComputeOutputParts(self, spec): target, ) - if self.type != "static_library" and self.type != "shared_library": + if self.type not in {"static_library", "shared_library"}: target_prefix = spec.get("product_prefix", target_prefix) target = spec.get("product_name", target) product_ext = spec.get("product_extension") diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py index c95d18415cdb37..320a891aa8adc9 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py @@ -103,7 +103,7 @@ def NormjoinPathForceCMakeSource(base_path, rel_path): """ if os.path.isabs(rel_path): return rel_path - if any([rel_path.startswith(var) for var in FULL_PATH_VARS]): + if any(rel_path.startswith(var) for var in FULL_PATH_VARS): return rel_path # TODO: do we need to check base_path for absolute variables as well? return os.path.join( @@ -328,7 +328,7 @@ def WriteActions(target_name, actions, extra_sources, extra_deps, path_to_gyp, o def NormjoinRulePathForceCMakeSource(base_path, rel_path, rule_source): if rel_path.startswith(("${RULE_INPUT_PATH}", "${RULE_INPUT_DIRNAME}")): - if any([rule_source.startswith(var) for var in FULL_PATH_VARS]): + if any(rule_source.startswith(var) for var in FULL_PATH_VARS): return rel_path return NormjoinPathForceCMakeSource(base_path, rel_path) @@ -929,10 +929,7 @@ def WriteTarget( product_prefix = spec.get("product_prefix", default_product_prefix) product_name = spec.get("product_name", default_product_name) product_ext = spec.get("product_extension") - if product_ext: - product_ext = "." + product_ext - else: - product_ext = default_product_ext + product_ext = "." + product_ext if product_ext else default_product_ext SetTargetProperty(output, cmake_target_name, "PREFIX", product_prefix) SetTargetProperty( diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py index f330a04dea4c53..0ffa3bb5980fe9 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py @@ -34,7 +34,7 @@ def IsMac(params): - return "mac" == gyp.common.GetFlavor(params) + return gyp.common.GetFlavor(params) == "mac" def CalculateVariables(default_variables, params): @@ -93,7 +93,7 @@ def resolve(filename): gyp.common.EncodePOSIXShellArgument(file), ) ) - commands.append(dict(command=command, directory=output_dir, file=file)) + commands.append({"command": command, "directory": output_dir, "file": file}) def GenerateOutput(target_list, target_dicts, data, params): @@ -108,7 +108,10 @@ def GenerateOutput(target_list, target_dicts, data, params): cwd = os.path.dirname(build_file) AddCommandsForTarget(cwd, target, params, per_config_commands) - output_dir = params["generator_flags"].get("output_dir", "out") + try: + output_dir = params["options"].generator_output + except (AttributeError, KeyError): + output_dir = params["generator_flags"].get("output_dir", "out") for configuration_name, commands in per_config_commands.items(): filename = os.path.join(output_dir, configuration_name, "compile_commands.json") gyp.common.EnsureDirExists(filename) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py index a851b4db757eda..52aeae6050990b 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py @@ -248,10 +248,7 @@ def GetAllDefines(target_list, target_dicts, data, config_name, params, compiler continue cpp_line_parts = cpp_line.split(" ", 2) key = cpp_line_parts[1] - if len(cpp_line_parts) >= 3: - val = cpp_line_parts[2] - else: - val = "1" + val = cpp_line_parts[2] if len(cpp_line_parts) >= 3 else "1" all_defines[key] = val return all_defines diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py index f1d01a629d435f..1b9974948e4de5 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py @@ -681,10 +681,7 @@ def WriteRootHeaderSuffixRules(writer): def Compilable(filename): """Return true if the file is compilable (should be in OBJS).""" - for res in (filename.endswith(e) for e in COMPILABLE_EXTENSIONS): - if res: - return True - return False + return any(res for res in (filename.endswith(e) for e in COMPILABLE_EXTENSIONS)) def Linkable(filename): @@ -778,7 +775,7 @@ def __init__(self, generator_flags, flavor): self.suffix_rules_objdir2 = {} # Generate suffix rules for all compilable extensions. - for ext in COMPILABLE_EXTENSIONS.keys(): + for ext in COMPILABLE_EXTENSIONS: # Suffix rules for source folder. self.suffix_rules_srcdir.update( { @@ -1066,7 +1063,7 @@ def WriteActions( # libraries, but until everything is made cross-compile safe, also use # target libraries. # TODO(piman): when everything is cross-compile safe, remove lib.target - if self.flavor == "zos" or self.flavor == "aix": + if self.flavor in {"zos", "aix"}: self.WriteLn( "cmd_%s = LIBPATH=$(builddir)/lib.host:" "$(builddir)/lib.target:$$LIBPATH; " @@ -1992,10 +1989,7 @@ def WriteTarget( and self.toolset == "target" ): # On mac, products are created in install_path immediately. - assert install_path == self.output, "{} != {}".format( - install_path, - self.output, - ) + assert install_path == self.output, f"{install_path} != {self.output}" # Point the target alias to the final binary output. self.WriteMakeRule( @@ -2034,7 +2028,7 @@ def WriteTarget( installable_deps.append( self.GetUnversionedSidedeckFromSidedeck(install_path) ) - if self.output != self.alias and self.alias != self.target: + if self.alias not in (self.output, self.target): self.WriteMakeRule( [self.alias], installable_deps, diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py index fd950057847980..13b0794b4dccc3 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py @@ -164,7 +164,7 @@ def _FixPath(path, separator="\\"): fixpath_prefix and path and not os.path.isabs(path) - and not path[0] == "$" + and path[0] != "$" and not _IsWindowsAbsPath(path) ): path = os.path.join(fixpath_prefix, path) @@ -281,9 +281,9 @@ def _ToolSetOrAppend(tools, tool_name, setting, value, only_if_unset=False): else: value = [i.replace("/", "\\") for i in value] if not tools.get(tool_name): - tools[tool_name] = dict() + tools[tool_name] = {} tool = tools[tool_name] - if "CompileAsWinRT" == setting: + if setting == "CompileAsWinRT": return if tool.get(setting): if only_if_unset: @@ -412,10 +412,7 @@ def _BuildCommandLineForRuleRaw( return input_dir_preamble + cmd else: # Convert cat --> type to mimic unix. - if cmd[0] == "cat": - command = ["type"] - else: - command = [cmd[0].replace("/", "\\")] + command = ["type"] if cmd[0] == "cat" else [cmd[0].replace("/", "\\")] # Add call before command to ensure that commands can be tied together one # after the other without aborting in Incredibuild, since IB makes a bat # file out of the raw command string, and some commands (like python) are @@ -438,6 +435,7 @@ def _BuildCommandLineForRuleRaw( # Support a mode for using cmd directly. # Convert any paths to native form (first element is used directly). # TODO(quote): regularize quoting path names throughout the module + command[1] = '"%s"' % command[1] arguments = ['"%s"' % i for i in arguments] # Collapse into a single command. return input_dir_preamble + " ".join(command + arguments) @@ -687,7 +685,7 @@ def _GenerateExternalRules(rules, output_dir, spec, sources, options, actions_to all_outputs.update(OrderedSet(outputs)) # Only use one target from each rule as the dependency for # 'all' so we don't try to build each rule multiple times. - first_outputs.append(list(outputs)[0]) + first_outputs.append(next(iter(outputs))) # Get the unique output directories for this rule. output_dirs = [os.path.split(i)[0] for i in outputs] for od in output_dirs: @@ -756,7 +754,7 @@ def _EscapeEnvironmentVariableExpansion(s): Returns: The escaped string. - """ # noqa: E731,E123,E501 + """ s = s.replace("%", "%%") return s @@ -1189,7 +1187,7 @@ def _AddConfigurationToMSVSProject(p, spec, config_type, config_name, config): precompiled_header = config.get("msvs_precompiled_header") # Prepare the list of tools as a dictionary. - tools = dict() + tools = {} # Add in user specified msvs_settings. msvs_settings = config.get("msvs_settings", {}) MSVSSettings.ValidateMSVSSettings(msvs_settings) @@ -1384,10 +1382,7 @@ def _GetDefines(config): """ defines = [] for d in config.get("defines", []): - if type(d) == list: - fd = "=".join([str(dpart) for dpart in d]) - else: - fd = str(d) + fd = "=".join([str(dpart) for dpart in d]) if isinstance(d, list) else str(d) defines.append(fd) return defines @@ -1578,10 +1573,10 @@ def _AdjustSourcesAndConvertToFilterHierarchy( # such as ../../src/modules/module1 etc. if version.UsesVcxproj(): while ( - all([isinstance(s, MSVSProject.Filter) for s in sources]) + all(isinstance(s, MSVSProject.Filter) for s in sources) and len({s.name for s in sources}) == 1 ): - assert all([len(s.contents) == 1 for s in sources]) + assert all(len(s.contents) == 1 for s in sources) sources = [s.contents[0] for s in sources] else: while len(sources) == 1 and isinstance(sources[0], MSVSProject.Filter): @@ -1598,10 +1593,7 @@ def _IdlFilesHandledNonNatively(spec, sources): if rule["extension"] == "idl" and int(rule.get("msvs_external_rule", 0)): using_idl = True break - if using_idl: - excluded_idl = [i for i in sources if i.endswith(".idl")] - else: - excluded_idl = [] + excluded_idl = [i for i in sources if i.endswith(".idl")] if using_idl else [] return excluded_idl @@ -1819,7 +1811,7 @@ def _GetPathDict(root, path): parent, folder = os.path.split(path) parent_dict = _GetPathDict(root, parent) if folder not in parent_dict: - parent_dict[folder] = dict() + parent_dict[folder] = {} return parent_dict[folder] @@ -3013,18 +3005,26 @@ def _GetMSBuildConfigurationDetails(spec, build_file): msbuild_attributes = _GetMSBuildAttributes(spec, settings, build_file) condition = _GetConfigurationCondition(name, settings, spec) character_set = msbuild_attributes.get("CharacterSet") + vctools_version = msbuild_attributes.get("VCToolsVersion") config_type = msbuild_attributes.get("ConfigurationType") _AddConditionalProperty(properties, condition, "ConfigurationType", config_type) + spectre_mitigation = msbuild_attributes.get('SpectreMitigation') + if spectre_mitigation: + _AddConditionalProperty(properties, condition, "SpectreMitigation", + spectre_mitigation) if config_type == "Driver": _AddConditionalProperty(properties, condition, "DriverType", "WDM") _AddConditionalProperty( properties, condition, "TargetVersion", _ConfigTargetVersion(settings) ) - if character_set: - if "msvs_enable_winrt" not in spec: - _AddConditionalProperty( - properties, condition, "CharacterSet", character_set - ) + if character_set and "msvs_enable_winrt" not in spec: + _AddConditionalProperty( + properties, condition, "CharacterSet", character_set + ) + if vctools_version and "msvs_enable_winrt" not in spec: + _AddConditionalProperty( + properties, condition, "VCToolsVersion", vctools_version + ) return _GetMSBuildPropertyGroup(spec, "Configuration", properties) @@ -3104,6 +3104,10 @@ def _ConvertMSVSBuildAttributes(spec, config, build_file): msbuild_attributes[a] = _ConvertMSVSCharacterSet(msvs_attributes[a]) elif a == "ConfigurationType": msbuild_attributes[a] = _ConvertMSVSConfigurationType(msvs_attributes[a]) + elif a == "SpectreMitigation": + msbuild_attributes[a] = msvs_attributes[a] + elif a == "VCToolsVersion": + msbuild_attributes[a] = msvs_attributes[a] else: print("Warning: Do not know how to convert MSVS attribute " + a) return msbuild_attributes @@ -3326,15 +3330,14 @@ def _GetMSBuildToolSettingsSections(spec, configurations): for tool_name, tool_settings in sorted(msbuild_settings.items()): # Skip the tool named '' which is a holder of global settings handled # by _GetMSBuildConfigurationGlobalProperties. - if tool_name: - if tool_settings: - tool = [tool_name] - for name, value in sorted(tool_settings.items()): - formatted_value = _GetValueFormattedForMSBuild( - tool_name, name, value - ) - tool.append([name, formatted_value]) - group.append(tool) + if tool_name and tool_settings: + tool = [tool_name] + for name, value in sorted(tool_settings.items()): + formatted_value = _GetValueFormattedForMSBuild( + tool_name, name, value + ) + tool.append([name, formatted_value]) + group.append(tool) groups.append(group) return groups @@ -3462,10 +3465,7 @@ def _GetValueFormattedForMSBuild(tool_name, name, value): "Link": ["AdditionalOptions"], "Lib": ["AdditionalOptions"], } - if tool_name in exceptions and name in exceptions[tool_name]: - char = " " - else: - char = ";" + char = " " if name in exceptions.get(tool_name, []) else ";" formatted_value = char.join( [MSVSSettings.ConvertVCMacrosToMSBuild(i) for i in value] ) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py index ca04ee13a1c1bf..8ba341e96d3f0d 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py @@ -1815,10 +1815,7 @@ def ComputeOutputFileName(self, spec, type=None): "executable": default_variables["EXECUTABLE_SUFFIX"], } extension = spec.get("product_extension") - if extension: - extension = "." + extension - else: - extension = DEFAULT_EXTENSION.get(type, "") + extension = "." + extension if extension else DEFAULT_EXTENSION.get(type, "") if "product_name" in spec: # If we were given an explicit name, use that. @@ -2533,7 +2530,7 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params, config_name description="SOLINK $lib", restat=True, command=mtime_preserving_solink_base - % {"suffix": "@$link_file_list"}, # noqa: E501 + % {"suffix": "@$link_file_list"}, rspfile="$link_file_list", rspfile_content=( "-Wl,--whole-archive $in $solibs -Wl," "--no-whole-archive $libs" diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py index 2f4d17e514e439..1ac672c3876bd9 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py @@ -439,7 +439,7 @@ def Finalize2(self, xcode_targets, xcode_target_to_target_dict): # it opens the project file, which will result in unnecessary diffs. # TODO(mark): This is evil because it relies on internal knowledge of # PBXProject._other_pbxprojects. - for other_pbxproject in self.project._other_pbxprojects.keys(): + for other_pbxproject in self.project._other_pbxprojects: self.project.AddOrGetProjectReference(other_pbxproject) self.project.SortRemoteProductReferences() @@ -1118,10 +1118,7 @@ def GenerateOutput(target_list, target_dicts, data, params): for concrete_output_index, concrete_output in enumerate( concrete_outputs ): - if concrete_output_index == 0: - bol = "" - else: - bol = " " + bol = "" if concrete_output_index == 0 else " " makefile.write(f"{bol}{concrete_output} \\\n") concrete_output_dir = posixpath.dirname(concrete_output) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py index d9699a0a502183..8f39519dee51fb 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py @@ -16,9 +16,9 @@ import sys import threading import traceback -from distutils.version import StrictVersion from gyp.common import GypError from gyp.common import OrderedSet +from packaging.version import Version # A list of types that are treated as linkable. linkable_types = [ @@ -225,7 +225,7 @@ def LoadOneBuildFile(build_file_path, data, aux_data, includes, is_target, check return data[build_file_path] if os.path.exists(build_file_path): - build_file_contents = open(build_file_path, encoding='utf-8').read() + build_file_contents = open(build_file_path, encoding="utf-8").read() else: raise GypError(f"{build_file_path} not found (cwd: {os.getcwd()})") @@ -870,10 +870,7 @@ def ExpandVariables(input, phase, variables, build_file): # This works around actions/rules which have more inputs than will # fit on the command line. if file_list: - if type(contents) is list: - contents_list = contents - else: - contents_list = contents.split(" ") + contents_list = contents if type(contents) is list else contents.split(" ") replacement = contents_list[0] if os.path.isabs(replacement): raise GypError('| cannot handle absolute paths, got "%s"' % replacement) @@ -1183,7 +1180,7 @@ def EvalSingleCondition(cond_expr, true_dict, false_dict, phase, variables, buil else: ast_code = compile(cond_expr_expanded, "", "eval") cached_conditions_asts[cond_expr_expanded] = ast_code - env = {"__builtins__": {}, "v": StrictVersion} + env = {"__builtins__": {}, "v": Version} if eval(ast_code, env, variables): return true_dict return false_dict @@ -1579,14 +1576,12 @@ def ExpandWildcardDependencies(targets, data): continue dependency_target_name = dependency_target_dict["target_name"] if ( - dependency_target != "*" - and dependency_target != dependency_target_name + dependency_target not in {"*", dependency_target_name} ): continue dependency_target_toolset = dependency_target_dict["toolset"] if ( - dependency_toolset != "*" - and dependency_toolset != dependency_target_toolset + dependency_toolset not in {"*", dependency_target_toolset} ): continue dependency = gyp.common.QualifiedTarget( @@ -1630,15 +1625,14 @@ def RemoveSelfDependencies(targets): dependencies = target_dict.get(dependency_key, []) if dependencies: for t in dependencies: - if t == target_name: - if ( - targets[t] - .get("variables", {}) - .get("prune_self_dependency", 0) - ): - target_dict[dependency_key] = Filter( - dependencies, target_name - ) + if t == target_name and ( + targets[t] + .get("variables", {}) + .get("prune_self_dependency", 0) + ): + target_dict[dependency_key] = Filter( + dependencies, target_name + ) def RemoveLinkDependenciesFromNoneTargets(targets): @@ -2238,10 +2232,7 @@ def is_in_set_or_list(x, s, items): singleton = False if type(item) in (str, int): # The cheap and easy case. - if is_paths: - to_item = MakePathRelative(to_file, fro_file, item) - else: - to_item = item + to_item = MakePathRelative(to_file, fro_file, item) if is_paths else item if not (type(item) is str and item.startswith("-")): # Any string that doesn't begin with a "-" is a singleton - it can @@ -2467,10 +2458,7 @@ def SetUpConfigurations(target, target_dict): new_configuration_dict = {} for (key, target_val) in target_dict.items(): key_ext = key[-1:] - if key_ext in key_suffixes: - key_base = key[:-1] - else: - key_base = key + key_base = key[:-1] if key_ext in key_suffixes else key if key_base not in non_configuration_keys: new_configuration_dict[key] = gyp.simple_copy.deepcopy(target_val) @@ -2482,7 +2470,7 @@ def SetUpConfigurations(target, target_dict): merged_configurations[configuration] = new_configuration_dict # Put the new configurations back into the target dict as a configuration. - for configuration in merged_configurations.keys(): + for configuration in merged_configurations: target_dict["configurations"][configuration] = merged_configurations[ configuration ] @@ -2499,19 +2487,16 @@ def SetUpConfigurations(target, target_dict): delete_keys = [] for key in target_dict: key_ext = key[-1:] - if key_ext in key_suffixes: - key_base = key[:-1] - else: - key_base = key + key_base = key[:-1] if key_ext in key_suffixes else key if key_base not in non_configuration_keys: delete_keys.append(key) for key in delete_keys: del target_dict[key] # Check the configurations to see if they contain invalid keys. - for configuration in target_dict["configurations"].keys(): + for configuration in target_dict["configurations"]: configuration_dict = target_dict["configurations"][configuration] - for key in configuration_dict.keys(): + for key in configuration_dict: if key in invalid_configuration_keys: raise GypError( "%s not allowed in the %s configuration, found in " @@ -2554,7 +2539,7 @@ def ProcessListFiltersInDict(name, the_dict): del_lists = [] for key, value in the_dict.items(): operation = key[-1] - if operation != "!" and operation != "/": + if operation not in {"!", "/"}: continue if type(value) is not list: diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py index 5b9c2712e091b4..38fa21dd666697 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py @@ -93,7 +93,7 @@ def _AddPrefix(element, prefix): if element is None: return element # Note, not Iterable because we don't want to handle strings like that. - if isinstance(element, list) or isinstance(element, tuple): + if isinstance(element, (list, tuple)): return [prefix + e for e in element] else: return prefix + element @@ -105,7 +105,7 @@ def _DoRemapping(element, map): if map is not None and element is not None: if not callable(map): map = map.get # Assume it's a dict, otherwise a callable to do the remap. - if isinstance(element, list) or isinstance(element, tuple): + if isinstance(element, (list, tuple)): element = filter(None, [map(elem) for elem in element]) else: element = map(element) @@ -117,7 +117,7 @@ def _AppendOrReturn(append, element): then add |element| to it, adding each item in |element| if it's a list or tuple.""" if append is not None and element is not None: - if isinstance(element, list) or isinstance(element, tuple): + if isinstance(element, (list, tuple)): append.extend(element) else: append.append(element) @@ -183,7 +183,7 @@ def ExtractSharedMSVSSystemIncludes(configs, generator_flags): expanded_system_includes = OrderedSet( [ExpandMacros(include, env) for include in all_system_includes] ) - if any(["$" in include for include in expanded_system_includes]): + if any("$" in include for include in expanded_system_includes): # Some path relies on target-specific variables, bail. return None @@ -255,10 +255,7 @@ def GetVSMacroEnv(self, base_to_build=None, config=None): """Get a dict of variables mapping internal VS macro names to their gyp equivalents.""" target_arch = self.GetArch(config) - if target_arch == "x86": - target_platform = "Win32" - else: - target_platform = target_arch + target_platform = "Win32" if target_arch == "x86" else target_arch target_name = self.spec.get("product_prefix", "") + self.spec.get( "product_name", self.spec["target_name"] ) @@ -738,10 +735,7 @@ def GetLdflags( # TODO(scottmg): This should sort of be somewhere else (not really a flag). ld("AdditionalDependencies", prefix="") - if self.GetArch(config) == "x86": - safeseh_default = "true" - else: - safeseh_default = None + safeseh_default = "true" if self.GetArch(config) == "x86" else None ld( "ImageHasSafeExceptionHandlers", map={"false": ":NO", "true": ""}, @@ -960,15 +954,12 @@ def GetRuleShellFlags(self, rule): def _HasExplicitRuleForExtension(self, spec, extension): """Determine if there's an explicit rule for a particular extension.""" - for rule in spec.get("rules", []): - if rule["extension"] == extension: - return True - return False + return any(rule["extension"] == extension for rule in spec.get("rules", [])) def _HasExplicitIdlActions(self, spec): """Determine if an action should not run midl for .idl files.""" return any( - [action.get("explicit_idl_action", 0) for action in spec.get("actions", [])] + action.get("explicit_idl_action", 0) for action in spec.get("actions", []) ) def HasExplicitIdlRulesOrActions(self, spec): diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py index 638eee40029411..171d7295747fcd 100755 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py @@ -219,11 +219,10 @@ def ExecLinkWithManifests( our_manifest = "%(out)s.manifest" % variables # Load and normalize the manifests. mt.exe sometimes removes whitespace, # and sometimes doesn't unfortunately. - with open(our_manifest) as our_f: - with open(assert_manifest) as assert_f: - translator = str.maketrans('', '', string.whitespace) - our_data = our_f.read().translate(translator) - assert_data = assert_f.read().translate(translator) + with open(our_manifest) as our_f, open(assert_manifest) as assert_f: + translator = str.maketrans("", "", string.whitespace) + our_data = our_f.read().translate(translator) + assert_data = assert_f.read().translate(translator) if our_data != assert_data: os.unlink(out) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py index a75d8eeab7bda0..29caf1ce7fbb97 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py @@ -685,10 +685,7 @@ def GetCflags(self, configname, arch=None): if platform_root: cflags.append("-F" + platform_root + "/Developer/Library/Frameworks/") - if sdk_root: - framework_root = sdk_root - else: - framework_root = "" + framework_root = sdk_root if sdk_root else "" config = self.spec["configurations"][self.configname] framework_dirs = config.get("mac_framework_dirs", []) for directory in framework_dirs: @@ -1248,10 +1245,7 @@ def _AdjustLibrary(self, library, config_name=None): l_flag = "-framework " + os.path.splitext(os.path.basename(library))[0] else: m = self.library_re.match(library) - if m: - l_flag = "-l" + m.group(1) - else: - l_flag = library + l_flag = "-l" + m.group(1) if m else library sdk_root = self._SdkPath(config_name) if not sdk_root: @@ -1545,7 +1539,7 @@ def CLTVersion(): except GypError: continue - regex = re.compile(r'Command Line Tools for Xcode\s+(?P\S+)') + regex = re.compile(r"Command Line Tools for Xcode\s+(?P\S+)") try: output = GetStdout(["/usr/sbin/softwareupdate", "--history"]) return re.search(regex, output).groupdict()["version"] diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py index 4e0ec5e8828f79..33c667c266bf69 100644 --- a/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py @@ -971,7 +971,7 @@ def __init__(self, properties=None, id=None, parent=None): if "path" in self._properties and "name" not in self._properties: path = self._properties["path"] name = posixpath.basename(path) - if name != "" and path != name: + if name not in ("", path): self.SetProperty("name", name) if "path" in self._properties and ( @@ -2355,9 +2355,8 @@ def __init__( # property was supplied, set "productName" if it is not present. Also set # the "PRODUCT_NAME" build setting in each configuration, but only if # the setting is not present in any build configuration. - if "name" in self._properties: - if "productName" not in self._properties: - self.SetProperty("productName", self._properties["name"]) + if "name" in self._properties and "productName" not in self._properties: + self.SetProperty("productName", self._properties["name"]) if "productName" in self._properties: if "buildConfigurationList" in self._properties: @@ -2547,13 +2546,12 @@ def __init__( force_extension = suffix[1:] if ( - self._properties["productType"] - == "com.apple.product-type-bundle.unit.test" - or self._properties["productType"] - == "com.apple.product-type-bundle.ui-testing" - ): - if force_extension is None: - force_extension = suffix[1:] + self._properties["productType"] in { + "com.apple.product-type-bundle.unit.test", + "com.apple.product-type-bundle.ui-testing" + } + ) and force_extension is None: + force_extension = suffix[1:] if force_extension is not None: # If it's a wrapper (bundle), set WRAPPER_EXTENSION. @@ -2636,10 +2634,13 @@ def HeadersPhase(self): # frameworks phases, if any. insert_at = len(self._properties["buildPhases"]) for index, phase in enumerate(self._properties["buildPhases"]): - if ( - isinstance(phase, PBXResourcesBuildPhase) - or isinstance(phase, PBXSourcesBuildPhase) - or isinstance(phase, PBXFrameworksBuildPhase) + if isinstance( + phase, + ( + PBXResourcesBuildPhase, + PBXSourcesBuildPhase, + PBXFrameworksBuildPhase, + ), ): insert_at = index break @@ -2658,9 +2659,7 @@ def ResourcesPhase(self): # phases, if any. insert_at = len(self._properties["buildPhases"]) for index, phase in enumerate(self._properties["buildPhases"]): - if isinstance(phase, PBXSourcesBuildPhase) or isinstance( - phase, PBXFrameworksBuildPhase - ): + if isinstance(phase, (PBXSourcesBuildPhase, PBXFrameworksBuildPhase)): insert_at = index break @@ -2701,8 +2700,10 @@ def AddDependency(self, other): other._properties["productType"] == static_library_type or ( ( - other._properties["productType"] == shared_library_type - or other._properties["productType"] == framework_type + other._properties["productType"] in { + shared_library_type, + framework_type + } ) and ( (not other.HasBuildSetting("MACH_O_TYPE")) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE new file mode 100644 index 00000000000000..6f62d44e4ef733 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE @@ -0,0 +1,3 @@ +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made +under the terms of *both* these licenses. diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE new file mode 100644 index 00000000000000..f433b1a53f5b83 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE @@ -0,0 +1,177 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD new file mode 100644 index 00000000000000..42ce7b75c92fb0 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD @@ -0,0 +1,23 @@ +Copyright (c) Donald Stufft and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER 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. diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py new file mode 100644 index 00000000000000..5fd91838316fbe --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py @@ -0,0 +1,15 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +__title__ = "packaging" +__summary__ = "Core utilities for Python packages" +__uri__ = "https://github.com/pypa/packaging" + +__version__ = "23.3.dev0" + +__author__ = "Donald Stufft and individual contributors" +__email__ = "donald@stufft.io" + +__license__ = "BSD-2-Clause or Apache-2.0" +__copyright__ = "2014 %s" % __author__ diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py new file mode 100644 index 00000000000000..6fb19b30bb53c1 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py @@ -0,0 +1,108 @@ +""" +ELF file parser. + +This provides a class ``ELFFile`` that parses an ELF executable in a similar +interface to ``ZipFile``. Only the read interface is implemented. + +Based on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca +ELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html +""" + +import enum +import os +import struct +from typing import IO, Optional, Tuple + + +class ELFInvalid(ValueError): + pass + + +class EIClass(enum.IntEnum): + C32 = 1 + C64 = 2 + + +class EIData(enum.IntEnum): + Lsb = 1 + Msb = 2 + + +class EMachine(enum.IntEnum): + I386 = 3 + S390 = 22 + Arm = 40 + X8664 = 62 + AArc64 = 183 + + +class ELFFile: + """ + Representation of an ELF executable. + """ + + def __init__(self, f: IO[bytes]) -> None: + self._f = f + + try: + ident = self._read("16B") + except struct.error: + raise ELFInvalid("unable to parse identification") + magic = bytes(ident[:4]) + if magic != b"\x7fELF": + raise ELFInvalid(f"invalid magic: {magic!r}") + + self.capacity = ident[4] # Format for program header (bitness). + self.encoding = ident[5] # Data structure encoding (endianness). + + try: + # e_fmt: Format for program header. + # p_fmt: Format for section header. + # p_idx: Indexes to find p_type, p_offset, and p_filesz. + e_fmt, self._p_fmt, self._p_idx = { + (1, 1): ("HHIIIIIHHH", ">IIIIIIII", (0, 1, 4)), # 32-bit MSB. + (2, 1): ("HHIQQQIHHH", ">IIQQQQQQ", (0, 2, 5)), # 64-bit MSB. + }[(self.capacity, self.encoding)] + except KeyError: + raise ELFInvalid( + f"unrecognized capacity ({self.capacity}) or " + f"encoding ({self.encoding})" + ) + + try: + ( + _, + self.machine, # Architecture type. + _, + _, + self._e_phoff, # Offset of program header. + _, + self.flags, # Processor-specific flags. + _, + self._e_phentsize, # Size of section. + self._e_phnum, # Number of sections. + ) = self._read(e_fmt) + except struct.error as e: + raise ELFInvalid("unable to parse machine and section information") from e + + def _read(self, fmt: str) -> Tuple[int, ...]: + return struct.unpack(fmt, self._f.read(struct.calcsize(fmt))) + + @property + def interpreter(self) -> Optional[str]: + """ + The path recorded in the ``PT_INTERP`` section header. + """ + for index in range(self._e_phnum): + self._f.seek(self._e_phoff + self._e_phentsize * index) + try: + data = self._read(self._p_fmt) + except struct.error: + continue + if data[self._p_idx[0]] != 3: # Not PT_INTERP. + continue + self._f.seek(data[self._p_idx[1]]) + return os.fsdecode(self._f.read(data[self._p_idx[2]])).strip("\0") + return None diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py new file mode 100644 index 00000000000000..3705d50db9193e --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py @@ -0,0 +1,252 @@ +import collections +import contextlib +import functools +import os +import re +import sys +import warnings +from typing import Dict, Generator, Iterator, NamedTuple, Optional, Sequence, Tuple + +from ._elffile import EIClass, EIData, ELFFile, EMachine + +EF_ARM_ABIMASK = 0xFF000000 +EF_ARM_ABI_VER5 = 0x05000000 +EF_ARM_ABI_FLOAT_HARD = 0x00000400 + + +# `os.PathLike` not a generic type until Python 3.9, so sticking with `str` +# as the type for `path` until then. +@contextlib.contextmanager +def _parse_elf(path: str) -> Generator[Optional[ELFFile], None, None]: + try: + with open(path, "rb") as f: + yield ELFFile(f) + except (OSError, TypeError, ValueError): + yield None + + +def _is_linux_armhf(executable: str) -> bool: + # hard-float ABI can be detected from the ELF header of the running + # process + # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.Arm + and f.flags & EF_ARM_ABIMASK == EF_ARM_ABI_VER5 + and f.flags & EF_ARM_ABI_FLOAT_HARD == EF_ARM_ABI_FLOAT_HARD + ) + + +def _is_linux_i686(executable: str) -> bool: + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.I386 + ) + + +def _have_compatible_abi(executable: str, archs: Sequence[str]) -> bool: + if "armv7l" in archs: + return _is_linux_armhf(executable) + if "i686" in archs: + return _is_linux_i686(executable) + allowed_archs = {"x86_64", "aarch64", "ppc64", "ppc64le", "s390x", "loongarch64"} + return any(arch in allowed_archs for arch in archs) + + +# If glibc ever changes its major version, we need to know what the last +# minor version was, so we can build the complete list of all versions. +# For now, guess what the highest minor version might be, assume it will +# be 50 for testing. Once this actually happens, update the dictionary +# with the actual value. +_LAST_GLIBC_MINOR: Dict[int, int] = collections.defaultdict(lambda: 50) + + +class _GLibCVersion(NamedTuple): + major: int + minor: int + + +def _glibc_version_string_confstr() -> Optional[str]: + """ + Primary implementation of glibc_version_string using os.confstr. + """ + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module. + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 + try: + # Should be a string like "glibc 2.17". + version_string: str = getattr(os, "confstr")("CS_GNU_LIBC_VERSION") + assert version_string is not None + _, version = version_string.rsplit() + except (AssertionError, AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def _glibc_version_string_ctypes() -> Optional[str]: + """ + Fallback implementation of glibc_version_string using ctypes. + """ + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +def _glibc_version_string() -> Optional[str]: + """Returns glibc version string, or None if not using glibc.""" + return _glibc_version_string_confstr() or _glibc_version_string_ctypes() + + +def _parse_glibc_version(version_str: str) -> Tuple[int, int]: + """Parse glibc version. + + We use a regexp instead of str.split because we want to discard any + random junk that might come after the minor version -- this might happen + in patched/forked versions of glibc (e.g. Linaro's version of glibc + uses version strings like "2.20-2014.11"). See gh-3588. + """ + m = re.match(r"(?P[0-9]+)\.(?P[0-9]+)", version_str) + if not m: + warnings.warn( + f"Expected glibc version with 2 components major.minor," + f" got: {version_str}", + RuntimeWarning, + ) + return -1, -1 + return int(m.group("major")), int(m.group("minor")) + + +@functools.lru_cache() +def _get_glibc_version() -> Tuple[int, int]: + version_str = _glibc_version_string() + if version_str is None: + return (-1, -1) + return _parse_glibc_version(version_str) + + +# From PEP 513, PEP 600 +def _is_compatible(arch: str, version: _GLibCVersion) -> bool: + sys_glibc = _get_glibc_version() + if sys_glibc < version: + return False + # Check for presence of _manylinux module. + try: + import _manylinux # noqa + except ImportError: + return True + if hasattr(_manylinux, "manylinux_compatible"): + result = _manylinux.manylinux_compatible(version[0], version[1], arch) + if result is not None: + return bool(result) + return True + if version == _GLibCVersion(2, 5): + if hasattr(_manylinux, "manylinux1_compatible"): + return bool(_manylinux.manylinux1_compatible) + if version == _GLibCVersion(2, 12): + if hasattr(_manylinux, "manylinux2010_compatible"): + return bool(_manylinux.manylinux2010_compatible) + if version == _GLibCVersion(2, 17): + if hasattr(_manylinux, "manylinux2014_compatible"): + return bool(_manylinux.manylinux2014_compatible) + return True + + +_LEGACY_MANYLINUX_MAP = { + # CentOS 7 w/ glibc 2.17 (PEP 599) + (2, 17): "manylinux2014", + # CentOS 6 w/ glibc 2.12 (PEP 571) + (2, 12): "manylinux2010", + # CentOS 5 w/ glibc 2.5 (PEP 513) + (2, 5): "manylinux1", +} + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate manylinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be manylinux-compatible. + + :returns: An iterator of compatible manylinux tags. + """ + if not _have_compatible_abi(sys.executable, archs): + return + # Oldest glibc to be supported regardless of architecture is (2, 17). + too_old_glibc2 = _GLibCVersion(2, 16) + if set(archs) & {"x86_64", "i686"}: + # On x86/i686 also oldest glibc to be supported is (2, 5). + too_old_glibc2 = _GLibCVersion(2, 4) + current_glibc = _GLibCVersion(*_get_glibc_version()) + glibc_max_list = [current_glibc] + # We can assume compatibility across glibc major versions. + # https://sourceware.org/bugzilla/show_bug.cgi?id=24636 + # + # Build a list of maximum glibc versions so that we can + # output the canonical list of all glibc from current_glibc + # down to too_old_glibc2, including all intermediary versions. + for glibc_major in range(current_glibc.major - 1, 1, -1): + glibc_minor = _LAST_GLIBC_MINOR[glibc_major] + glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor)) + for arch in archs: + for glibc_max in glibc_max_list: + if glibc_max.major == too_old_glibc2.major: + min_minor = too_old_glibc2.minor + else: + # For other glibc major versions oldest supported is (x, 0). + min_minor = -1 + for glibc_minor in range(glibc_max.minor, min_minor, -1): + glibc_version = _GLibCVersion(glibc_max.major, glibc_minor) + tag = "manylinux_{}_{}".format(*glibc_version) + if _is_compatible(arch, glibc_version): + yield f"{tag}_{arch}" + # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. + if glibc_version in _LEGACY_MANYLINUX_MAP: + legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] + if _is_compatible(arch, glibc_version): + yield f"{legacy_tag}_{arch}" diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py new file mode 100644 index 00000000000000..86419df9d7087f --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py @@ -0,0 +1,83 @@ +"""PEP 656 support. + +This module implements logic to detect if the currently running Python is +linked against musl, and what musl version is used. +""" + +import functools +import re +import subprocess +import sys +from typing import Iterator, NamedTuple, Optional, Sequence + +from ._elffile import ELFFile + + +class _MuslVersion(NamedTuple): + major: int + minor: int + + +def _parse_musl_version(output: str) -> Optional[_MuslVersion]: + lines = [n for n in (n.strip() for n in output.splitlines()) if n] + if len(lines) < 2 or lines[0][:4] != "musl": + return None + m = re.match(r"Version (\d+)\.(\d+)", lines[1]) + if not m: + return None + return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2))) + + +@functools.lru_cache() +def _get_musl_version(executable: str) -> Optional[_MuslVersion]: + """Detect currently-running musl runtime version. + + This is done by checking the specified executable's dynamic linking + information, and invoking the loader to parse its output for a version + string. If the loader is musl, the output would be something like:: + + musl libc (x86_64) + Version 1.2.2 + Dynamic Program Loader + """ + try: + with open(executable, "rb") as f: + ld = ELFFile(f).interpreter + except (OSError, TypeError, ValueError): + return None + if ld is None or "musl" not in ld: + return None + proc = subprocess.run([ld], stderr=subprocess.PIPE, text=True) + return _parse_musl_version(proc.stderr) + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate musllinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be musllinux-compatible. + + :returns: An iterator of compatible musllinux tags. + """ + sys_musl = _get_musl_version(sys.executable) + if sys_musl is None: # Python not dynamically linked against musl. + return + for arch in archs: + for minor in range(sys_musl.minor, -1, -1): + yield f"musllinux_{sys_musl.major}_{minor}_{arch}" + + +if __name__ == "__main__": # pragma: no cover + import sysconfig + + plat = sysconfig.get_platform() + assert plat.startswith("linux-"), "not linux" + + print("plat:", plat) + print("musl:", _get_musl_version(sys.executable)) + print("tags:", end=" ") + for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])): + print(t, end="\n ") diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py new file mode 100644 index 00000000000000..4576981c2dd755 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py @@ -0,0 +1,359 @@ +"""Handwritten parser of dependency specifiers. + +The docstring for each __parse_* function contains ENBF-inspired grammar representing +the implementation. +""" + +import ast +from typing import Any, List, NamedTuple, Optional, Tuple, Union + +from ._tokenizer import DEFAULT_RULES, Tokenizer + + +class Node: + def __init__(self, value: str) -> None: + self.value = value + + def __str__(self) -> str: + return self.value + + def __repr__(self) -> str: + return f"<{self.__class__.__name__}('{self}')>" + + def serialize(self) -> str: + raise NotImplementedError + + +class Variable(Node): + def serialize(self) -> str: + return str(self) + + +class Value(Node): + def serialize(self) -> str: + return f'"{self}"' + + +class Op(Node): + def serialize(self) -> str: + return str(self) + + +MarkerVar = Union[Variable, Value] +MarkerItem = Tuple[MarkerVar, Op, MarkerVar] +# MarkerAtom = Union[MarkerItem, List["MarkerAtom"]] +# MarkerList = List[Union["MarkerList", MarkerAtom, str]] +# mypy does not support recursive type definition +# https://github.com/python/mypy/issues/731 +MarkerAtom = Any +MarkerList = List[Any] + + +class ParsedRequirement(NamedTuple): + name: str + url: str + extras: List[str] + specifier: str + marker: Optional[MarkerList] + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for dependency specifier +# -------------------------------------------------------------------------------------- +def parse_requirement(source: str) -> ParsedRequirement: + return _parse_requirement(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_requirement(tokenizer: Tokenizer) -> ParsedRequirement: + """ + requirement = WS? IDENTIFIER WS? extras WS? requirement_details + """ + tokenizer.consume("WS") + + name_token = tokenizer.expect( + "IDENTIFIER", expected="package name at the start of dependency specifier" + ) + name = name_token.text + tokenizer.consume("WS") + + extras = _parse_extras(tokenizer) + tokenizer.consume("WS") + + url, specifier, marker = _parse_requirement_details(tokenizer) + tokenizer.expect("END", expected="end of dependency specifier") + + return ParsedRequirement(name, url, extras, specifier, marker) + + +def _parse_requirement_details( + tokenizer: Tokenizer, +) -> Tuple[str, str, Optional[MarkerList]]: + """ + requirement_details = AT URL (WS requirement_marker?)? + | specifier WS? (requirement_marker)? + """ + + specifier = "" + url = "" + marker = None + + if tokenizer.check("AT"): + tokenizer.read() + tokenizer.consume("WS") + + url_start = tokenizer.position + url = tokenizer.expect("URL", expected="URL after @").text + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + tokenizer.expect("WS", expected="whitespace after URL") + + # The input might end after whitespace. + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, span_start=url_start, after="URL and whitespace" + ) + else: + specifier_start = tokenizer.position + specifier = _parse_specifier(tokenizer) + tokenizer.consume("WS") + + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, + span_start=specifier_start, + after=( + "version specifier" + if specifier + else "name and no valid version specifier" + ), + ) + + return (url, specifier, marker) + + +def _parse_requirement_marker( + tokenizer: Tokenizer, *, span_start: int, after: str +) -> MarkerList: + """ + requirement_marker = SEMICOLON marker WS? + """ + + if not tokenizer.check("SEMICOLON"): + tokenizer.raise_syntax_error( + f"Expected end or semicolon (after {after})", + span_start=span_start, + ) + tokenizer.read() + + marker = _parse_marker(tokenizer) + tokenizer.consume("WS") + + return marker + + +def _parse_extras(tokenizer: Tokenizer) -> List[str]: + """ + extras = (LEFT_BRACKET wsp* extras_list? wsp* RIGHT_BRACKET)? + """ + if not tokenizer.check("LEFT_BRACKET", peek=True): + return [] + + with tokenizer.enclosing_tokens( + "LEFT_BRACKET", + "RIGHT_BRACKET", + around="extras", + ): + tokenizer.consume("WS") + extras = _parse_extras_list(tokenizer) + tokenizer.consume("WS") + + return extras + + +def _parse_extras_list(tokenizer: Tokenizer) -> List[str]: + """ + extras_list = identifier (wsp* ',' wsp* identifier)* + """ + extras: List[str] = [] + + if not tokenizer.check("IDENTIFIER"): + return extras + + extras.append(tokenizer.read().text) + + while True: + tokenizer.consume("WS") + if tokenizer.check("IDENTIFIER", peek=True): + tokenizer.raise_syntax_error("Expected comma between extra names") + elif not tokenizer.check("COMMA"): + break + + tokenizer.read() + tokenizer.consume("WS") + + extra_token = tokenizer.expect("IDENTIFIER", expected="extra name after comma") + extras.append(extra_token.text) + + return extras + + +def _parse_specifier(tokenizer: Tokenizer) -> str: + """ + specifier = LEFT_PARENTHESIS WS? version_many WS? RIGHT_PARENTHESIS + | WS? version_many WS? + """ + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="version specifier", + ): + tokenizer.consume("WS") + parsed_specifiers = _parse_version_many(tokenizer) + tokenizer.consume("WS") + + return parsed_specifiers + + +def _parse_version_many(tokenizer: Tokenizer) -> str: + """ + version_many = (SPECIFIER (WS? COMMA WS? SPECIFIER)*)? + """ + parsed_specifiers = "" + while tokenizer.check("SPECIFIER"): + span_start = tokenizer.position + parsed_specifiers += tokenizer.read().text + if tokenizer.check("VERSION_PREFIX_TRAIL", peek=True): + tokenizer.raise_syntax_error( + ".* suffix can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position + 1, + ) + if tokenizer.check("VERSION_LOCAL_LABEL_TRAIL", peek=True): + tokenizer.raise_syntax_error( + "Local version label can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position, + ) + tokenizer.consume("WS") + if not tokenizer.check("COMMA"): + break + parsed_specifiers += tokenizer.read().text + tokenizer.consume("WS") + + return parsed_specifiers + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for marker expression +# -------------------------------------------------------------------------------------- +def parse_marker(source: str) -> MarkerList: + return _parse_full_marker(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_full_marker(tokenizer: Tokenizer) -> MarkerList: + retval = _parse_marker(tokenizer) + tokenizer.expect("END", expected="end of marker expression") + return retval + + +def _parse_marker(tokenizer: Tokenizer) -> MarkerList: + """ + marker = marker_atom (BOOLOP marker_atom)+ + """ + expression = [_parse_marker_atom(tokenizer)] + while tokenizer.check("BOOLOP"): + token = tokenizer.read() + expr_right = _parse_marker_atom(tokenizer) + expression.extend((token.text, expr_right)) + return expression + + +def _parse_marker_atom(tokenizer: Tokenizer) -> MarkerAtom: + """ + marker_atom = WS? LEFT_PARENTHESIS WS? marker WS? RIGHT_PARENTHESIS WS? + | WS? marker_item WS? + """ + + tokenizer.consume("WS") + if tokenizer.check("LEFT_PARENTHESIS", peek=True): + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="marker expression", + ): + tokenizer.consume("WS") + marker: MarkerAtom = _parse_marker(tokenizer) + tokenizer.consume("WS") + else: + marker = _parse_marker_item(tokenizer) + tokenizer.consume("WS") + return marker + + +def _parse_marker_item(tokenizer: Tokenizer) -> MarkerItem: + """ + marker_item = WS? marker_var WS? marker_op WS? marker_var WS? + """ + tokenizer.consume("WS") + marker_var_left = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + marker_op = _parse_marker_op(tokenizer) + tokenizer.consume("WS") + marker_var_right = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + return (marker_var_left, marker_op, marker_var_right) + + +def _parse_marker_var(tokenizer: Tokenizer) -> MarkerVar: + """ + marker_var = VARIABLE | QUOTED_STRING + """ + if tokenizer.check("VARIABLE"): + return process_env_var(tokenizer.read().text.replace(".", "_")) + elif tokenizer.check("QUOTED_STRING"): + return process_python_str(tokenizer.read().text) + else: + tokenizer.raise_syntax_error( + message="Expected a marker variable or quoted string" + ) + + +def process_env_var(env_var: str) -> Variable: + if ( + env_var == "platform_python_implementation" + or env_var == "python_implementation" + ): + return Variable("platform_python_implementation") + else: + return Variable(env_var) + + +def process_python_str(python_str: str) -> Value: + value = ast.literal_eval(python_str) + return Value(str(value)) + + +def _parse_marker_op(tokenizer: Tokenizer) -> Op: + """ + marker_op = IN | NOT IN | OP + """ + if tokenizer.check("IN"): + tokenizer.read() + return Op("in") + elif tokenizer.check("NOT"): + tokenizer.read() + tokenizer.expect("WS", expected="whitespace after 'not'") + tokenizer.expect("IN", expected="'in' after 'not'") + return Op("not in") + elif tokenizer.check("OP"): + return Op(tokenizer.read().text) + else: + return tokenizer.raise_syntax_error( + "Expected marker operator, one of " + "<=, <, !=, ==, >=, >, ~=, ===, in, not in" + ) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py new file mode 100644 index 00000000000000..90a6465f9682c8 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py @@ -0,0 +1,61 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + + +class InfinityType: + def __repr__(self) -> str: + return "Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return False + + def __le__(self, other: object) -> bool: + return False + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return True + + def __ge__(self, other: object) -> bool: + return True + + def __neg__(self: object) -> "NegativeInfinityType": + return NegativeInfinity + + +Infinity = InfinityType() + + +class NegativeInfinityType: + def __repr__(self) -> str: + return "-Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return True + + def __le__(self, other: object) -> bool: + return True + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return False + + def __ge__(self, other: object) -> bool: + return False + + def __neg__(self: object) -> InfinityType: + return Infinity + + +NegativeInfinity = NegativeInfinityType() diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py new file mode 100644 index 00000000000000..dd0d648d49a7c1 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py @@ -0,0 +1,192 @@ +import contextlib +import re +from dataclasses import dataclass +from typing import Dict, Iterator, NoReturn, Optional, Tuple, Union + +from .specifiers import Specifier + + +@dataclass +class Token: + name: str + text: str + position: int + + +class ParserSyntaxError(Exception): + """The provided source text could not be parsed correctly.""" + + def __init__( + self, + message: str, + *, + source: str, + span: Tuple[int, int], + ) -> None: + self.span = span + self.message = message + self.source = source + + super().__init__() + + def __str__(self) -> str: + marker = " " * self.span[0] + "~" * (self.span[1] - self.span[0]) + "^" + return "\n ".join([self.message, self.source, marker]) + + +DEFAULT_RULES: "Dict[str, Union[str, re.Pattern[str]]]" = { + "LEFT_PARENTHESIS": r"\(", + "RIGHT_PARENTHESIS": r"\)", + "LEFT_BRACKET": r"\[", + "RIGHT_BRACKET": r"\]", + "SEMICOLON": r";", + "COMMA": r",", + "QUOTED_STRING": re.compile( + r""" + ( + ('[^']*') + | + ("[^"]*") + ) + """, + re.VERBOSE, + ), + "OP": r"(===|==|~=|!=|<=|>=|<|>)", + "BOOLOP": r"\b(or|and)\b", + "IN": r"\bin\b", + "NOT": r"\bnot\b", + "VARIABLE": re.compile( + r""" + \b( + python_version + |python_full_version + |os[._]name + |sys[._]platform + |platform_(release|system) + |platform[._](version|machine|python_implementation) + |python_implementation + |implementation_(name|version) + |extra + )\b + """, + re.VERBOSE, + ), + "SPECIFIER": re.compile( + Specifier._operator_regex_str + Specifier._version_regex_str, + re.VERBOSE | re.IGNORECASE, + ), + "AT": r"\@", + "URL": r"[^ \t]+", + "IDENTIFIER": r"\b[a-zA-Z0-9][a-zA-Z0-9._-]*\b", + "VERSION_PREFIX_TRAIL": r"\.\*", + "VERSION_LOCAL_LABEL_TRAIL": r"\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*", + "WS": r"[ \t]+", + "END": r"$", +} + + +class Tokenizer: + """Context-sensitive token parsing. + + Provides methods to examine the input stream to check whether the next token + matches. + """ + + def __init__( + self, + source: str, + *, + rules: "Dict[str, Union[str, re.Pattern[str]]]", + ) -> None: + self.source = source + self.rules: Dict[str, re.Pattern[str]] = { + name: re.compile(pattern) for name, pattern in rules.items() + } + self.next_token: Optional[Token] = None + self.position = 0 + + def consume(self, name: str) -> None: + """Move beyond provided token name, if at current position.""" + if self.check(name): + self.read() + + def check(self, name: str, *, peek: bool = False) -> bool: + """Check whether the next token has the provided name. + + By default, if the check succeeds, the token *must* be read before + another check. If `peek` is set to `True`, the token is not loaded and + would need to be checked again. + """ + assert ( + self.next_token is None + ), f"Cannot check for {name!r}, already have {self.next_token!r}" + assert name in self.rules, f"Unknown token name: {name!r}" + + expression = self.rules[name] + + match = expression.match(self.source, self.position) + if match is None: + return False + if not peek: + self.next_token = Token(name, match[0], self.position) + return True + + def expect(self, name: str, *, expected: str) -> Token: + """Expect a certain token name next, failing with a syntax error otherwise. + + The token is *not* read. + """ + if not self.check(name): + raise self.raise_syntax_error(f"Expected {expected}") + return self.read() + + def read(self) -> Token: + """Consume the next token and return it.""" + token = self.next_token + assert token is not None + + self.position += len(token.text) + self.next_token = None + + return token + + def raise_syntax_error( + self, + message: str, + *, + span_start: Optional[int] = None, + span_end: Optional[int] = None, + ) -> NoReturn: + """Raise ParserSyntaxError at the given position.""" + span = ( + self.position if span_start is None else span_start, + self.position if span_end is None else span_end, + ) + raise ParserSyntaxError( + message, + source=self.source, + span=span, + ) + + @contextlib.contextmanager + def enclosing_tokens( + self, open_token: str, close_token: str, *, around: str + ) -> Iterator[None]: + if self.check(open_token): + open_position = self.position + self.read() + else: + open_position = None + + yield + + if open_position is None: + return + + if not self.check(close_token): + self.raise_syntax_error( + f"Expected matching {close_token} for {open_token}, after {around}", + span_start=open_position, + ) + + self.read() diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py new file mode 100644 index 00000000000000..8b98fca7233be6 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py @@ -0,0 +1,252 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import operator +import os +import platform +import sys +from typing import Any, Callable, Dict, List, Optional, Tuple, Union + +from ._parser import ( + MarkerAtom, + MarkerList, + Op, + Value, + Variable, + parse_marker as _parse_marker, +) +from ._tokenizer import ParserSyntaxError +from .specifiers import InvalidSpecifier, Specifier +from .utils import canonicalize_name + +__all__ = [ + "InvalidMarker", + "UndefinedComparison", + "UndefinedEnvironmentName", + "Marker", + "default_environment", +] + +Operator = Callable[[str, str], bool] + + +class InvalidMarker(ValueError): + """ + An invalid marker was found, users should refer to PEP 508. + """ + + +class UndefinedComparison(ValueError): + """ + An invalid operation was attempted on a value that doesn't support it. + """ + + +class UndefinedEnvironmentName(ValueError): + """ + A name was attempted to be used that does not exist inside of the + environment. + """ + + +def _normalize_extra_values(results: Any) -> Any: + """ + Normalize extra values. + """ + if isinstance(results[0], tuple): + lhs, op, rhs = results[0] + if isinstance(lhs, Variable) and lhs.value == "extra": + normalized_extra = canonicalize_name(rhs.value) + rhs = Value(normalized_extra) + elif isinstance(rhs, Variable) and rhs.value == "extra": + normalized_extra = canonicalize_name(lhs.value) + lhs = Value(normalized_extra) + results[0] = lhs, op, rhs + return results + + +def _format_marker( + marker: Union[List[str], MarkerAtom, str], first: Optional[bool] = True +) -> str: + + assert isinstance(marker, (list, tuple, str)) + + # Sometimes we have a structure like [[...]] which is a single item list + # where the single item is itself it's own list. In that case we want skip + # the rest of this function so that we don't get extraneous () on the + # outside. + if ( + isinstance(marker, list) + and len(marker) == 1 + and isinstance(marker[0], (list, tuple)) + ): + return _format_marker(marker[0]) + + if isinstance(marker, list): + inner = (_format_marker(m, first=False) for m in marker) + if first: + return " ".join(inner) + else: + return "(" + " ".join(inner) + ")" + elif isinstance(marker, tuple): + return " ".join([m.serialize() for m in marker]) + else: + return marker + + +_operators: Dict[str, Operator] = { + "in": lambda lhs, rhs: lhs in rhs, + "not in": lambda lhs, rhs: lhs not in rhs, + "<": operator.lt, + "<=": operator.le, + "==": operator.eq, + "!=": operator.ne, + ">=": operator.ge, + ">": operator.gt, +} + + +def _eval_op(lhs: str, op: Op, rhs: str) -> bool: + try: + spec = Specifier("".join([op.serialize(), rhs])) + except InvalidSpecifier: + pass + else: + return spec.contains(lhs, prereleases=True) + + oper: Optional[Operator] = _operators.get(op.serialize()) + if oper is None: + raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") + + return oper(lhs, rhs) + + +def _normalize(*values: str, key: str) -> Tuple[str, ...]: + # PEP 685 – Comparison of extra names for optional distribution dependencies + # https://peps.python.org/pep-0685/ + # > When comparing extra names, tools MUST normalize the names being + # > compared using the semantics outlined in PEP 503 for names + if key == "extra": + return tuple(canonicalize_name(v) for v in values) + + # other environment markers don't have such standards + return values + + +def _evaluate_markers(markers: MarkerList, environment: Dict[str, str]) -> bool: + groups: List[List[bool]] = [[]] + + for marker in markers: + assert isinstance(marker, (list, tuple, str)) + + if isinstance(marker, list): + groups[-1].append(_evaluate_markers(marker, environment)) + elif isinstance(marker, tuple): + lhs, op, rhs = marker + + if isinstance(lhs, Variable): + environment_key = lhs.value + lhs_value = environment[environment_key] + rhs_value = rhs.value + else: + lhs_value = lhs.value + environment_key = rhs.value + rhs_value = environment[environment_key] + + lhs_value, rhs_value = _normalize(lhs_value, rhs_value, key=environment_key) + groups[-1].append(_eval_op(lhs_value, op, rhs_value)) + else: + assert marker in ["and", "or"] + if marker == "or": + groups.append([]) + + return any(all(item) for item in groups) + + +def format_full_version(info: "sys._version_info") -> str: + version = "{0.major}.{0.minor}.{0.micro}".format(info) + kind = info.releaselevel + if kind != "final": + version += kind[0] + str(info.serial) + return version + + +def default_environment() -> Dict[str, str]: + iver = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + return { + "implementation_name": implementation_name, + "implementation_version": iver, + "os_name": os.name, + "platform_machine": platform.machine(), + "platform_release": platform.release(), + "platform_system": platform.system(), + "platform_version": platform.version(), + "python_full_version": platform.python_version(), + "platform_python_implementation": platform.python_implementation(), + "python_version": ".".join(platform.python_version_tuple()[:2]), + "sys_platform": sys.platform, + } + + +class Marker: + def __init__(self, marker: str) -> None: + # Note: We create a Marker object without calling this constructor in + # packaging.requirements.Requirement. If any additional logic is + # added here, make sure to mirror/adapt Requirement. + try: + self._markers = _normalize_extra_values(_parse_marker(marker)) + # The attribute `_markers` can be described in terms of a recursive type: + # MarkerList = List[Union[Tuple[Node, ...], str, MarkerList]] + # + # For example, the following expression: + # python_version > "3.6" or (python_version == "3.6" and os_name == "unix") + # + # is parsed into: + # [ + # (, ')>, ), + # 'and', + # [ + # (, , ), + # 'or', + # (, , ) + # ] + # ] + except ParserSyntaxError as e: + raise InvalidMarker(str(e)) from e + + def __str__(self) -> str: + return _format_marker(self._markers) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash((self.__class__.__name__, str(self))) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Marker): + return NotImplemented + + return str(self) == str(other) + + def evaluate(self, environment: Optional[Dict[str, str]] = None) -> bool: + """Evaluate a marker. + + Return the boolean from evaluating the given marker against the + environment. environment is an optional argument to override all or + part of the determined environment. + + The environment is determined from the current Python process. + """ + current_environment = default_environment() + current_environment["extra"] = "" + if environment is not None: + current_environment.update(environment) + # The API used to allow setting extra to None. We need to handle this + # case for backwards compatibility. + if current_environment["extra"] is None: + current_environment["extra"] = "" + + return _evaluate_markers(self._markers, current_environment) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py new file mode 100644 index 00000000000000..fb274930799da0 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py @@ -0,0 +1,825 @@ +import email.feedparser +import email.header +import email.message +import email.parser +import email.policy +import sys +import typing +from typing import ( + Any, + Callable, + Dict, + Generic, + List, + Optional, + Tuple, + Type, + Union, + cast, +) + +from . import requirements, specifiers, utils, version as version_module + +T = typing.TypeVar("T") +if sys.version_info[:2] >= (3, 8): # pragma: no cover + from typing import Literal, TypedDict +else: # pragma: no cover + if typing.TYPE_CHECKING: + from typing_extensions import Literal, TypedDict + else: + try: + from typing_extensions import Literal, TypedDict + except ImportError: + + class Literal: + def __init_subclass__(*_args, **_kwargs): + pass + + class TypedDict: + def __init_subclass__(*_args, **_kwargs): + pass + + +try: + ExceptionGroup +except NameError: # pragma: no cover + + class ExceptionGroup(Exception): # noqa: N818 + """A minimal implementation of :external:exc:`ExceptionGroup` from Python 3.11. + + If :external:exc:`ExceptionGroup` is already defined by Python itself, + that version is used instead. + """ + + message: str + exceptions: List[Exception] + + def __init__(self, message: str, exceptions: List[Exception]) -> None: + self.message = message + self.exceptions = exceptions + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.message!r}, {self.exceptions!r})" + +else: # pragma: no cover + ExceptionGroup = ExceptionGroup + + +class InvalidMetadata(ValueError): + """A metadata field contains invalid data.""" + + field: str + """The name of the field that contains invalid data.""" + + def __init__(self, field: str, message: str) -> None: + self.field = field + super().__init__(message) + + +# The RawMetadata class attempts to make as few assumptions about the underlying +# serialization formats as possible. The idea is that as long as a serialization +# formats offer some very basic primitives in *some* way then we can support +# serializing to and from that format. +class RawMetadata(TypedDict, total=False): + """A dictionary of raw core metadata. + + Each field in core metadata maps to a key of this dictionary (when data is + provided). The key is lower-case and underscores are used instead of dashes + compared to the equivalent core metadata field. Any core metadata field that + can be specified multiple times or can hold multiple values in a single + field have a key with a plural name. See :class:`Metadata` whose attributes + match the keys of this dictionary. + + Core metadata fields that can be specified multiple times are stored as a + list or dict depending on which is appropriate for the field. Any fields + which hold multiple values in a single field are stored as a list. + + """ + + # Metadata 1.0 - PEP 241 + metadata_version: str + name: str + version: str + platforms: List[str] + summary: str + description: str + keywords: List[str] + home_page: str + author: str + author_email: str + license: str + + # Metadata 1.1 - PEP 314 + supported_platforms: List[str] + download_url: str + classifiers: List[str] + requires: List[str] + provides: List[str] + obsoletes: List[str] + + # Metadata 1.2 - PEP 345 + maintainer: str + maintainer_email: str + requires_dist: List[str] + provides_dist: List[str] + obsoletes_dist: List[str] + requires_python: str + requires_external: List[str] + project_urls: Dict[str, str] + + # Metadata 2.0 + # PEP 426 attempted to completely revamp the metadata format + # but got stuck without ever being able to build consensus on + # it and ultimately ended up withdrawn. + # + # However, a number of tools had started emitting METADATA with + # `2.0` Metadata-Version, so for historical reasons, this version + # was skipped. + + # Metadata 2.1 - PEP 566 + description_content_type: str + provides_extra: List[str] + + # Metadata 2.2 - PEP 643 + dynamic: List[str] + + # Metadata 2.3 - PEP 685 + # No new fields were added in PEP 685, just some edge case were + # tightened up to provide better interoptability. + + +_STRING_FIELDS = { + "author", + "author_email", + "description", + "description_content_type", + "download_url", + "home_page", + "license", + "maintainer", + "maintainer_email", + "metadata_version", + "name", + "requires_python", + "summary", + "version", +} + +_LIST_FIELDS = { + "classifiers", + "dynamic", + "obsoletes", + "obsoletes_dist", + "platforms", + "provides", + "provides_dist", + "provides_extra", + "requires", + "requires_dist", + "requires_external", + "supported_platforms", +} + +_DICT_FIELDS = { + "project_urls", +} + + +def _parse_keywords(data: str) -> List[str]: + """Split a string of comma-separate keyboards into a list of keywords.""" + return [k.strip() for k in data.split(",")] + + +def _parse_project_urls(data: List[str]) -> Dict[str, str]: + """Parse a list of label/URL string pairings separated by a comma.""" + urls = {} + for pair in data: + # Our logic is slightly tricky here as we want to try and do + # *something* reasonable with malformed data. + # + # The main thing that we have to worry about, is data that does + # not have a ',' at all to split the label from the Value. There + # isn't a singular right answer here, and we will fail validation + # later on (if the caller is validating) so it doesn't *really* + # matter, but since the missing value has to be an empty str + # and our return value is dict[str, str], if we let the key + # be the missing value, then they'd have multiple '' values that + # overwrite each other in a accumulating dict. + # + # The other potentional issue is that it's possible to have the + # same label multiple times in the metadata, with no solid "right" + # answer with what to do in that case. As such, we'll do the only + # thing we can, which is treat the field as unparseable and add it + # to our list of unparsed fields. + parts = [p.strip() for p in pair.split(",", 1)] + parts.extend([""] * (max(0, 2 - len(parts)))) # Ensure 2 items + + # TODO: The spec doesn't say anything about if the keys should be + # considered case sensitive or not... logically they should + # be case-preserving and case-insensitive, but doing that + # would open up more cases where we might have duplicate + # entries. + label, url = parts + if label in urls: + # The label already exists in our set of urls, so this field + # is unparseable, and we can just add the whole thing to our + # unparseable data and stop processing it. + raise KeyError("duplicate labels in project urls") + urls[label] = url + + return urls + + +def _get_payload(msg: email.message.Message, source: Union[bytes, str]) -> str: + """Get the body of the message.""" + # If our source is a str, then our caller has managed encodings for us, + # and we don't need to deal with it. + if isinstance(source, str): + payload: str = msg.get_payload() + return payload + # If our source is a bytes, then we're managing the encoding and we need + # to deal with it. + else: + bpayload: bytes = msg.get_payload(decode=True) + try: + return bpayload.decode("utf8", "strict") + except UnicodeDecodeError: + raise ValueError("payload in an invalid encoding") + + +# The various parse_FORMAT functions here are intended to be as lenient as +# possible in their parsing, while still returning a correctly typed +# RawMetadata. +# +# To aid in this, we also generally want to do as little touching of the +# data as possible, except where there are possibly some historic holdovers +# that make valid data awkward to work with. +# +# While this is a lower level, intermediate format than our ``Metadata`` +# class, some light touch ups can make a massive difference in usability. + +# Map METADATA fields to RawMetadata. +_EMAIL_TO_RAW_MAPPING = { + "author": "author", + "author-email": "author_email", + "classifier": "classifiers", + "description": "description", + "description-content-type": "description_content_type", + "download-url": "download_url", + "dynamic": "dynamic", + "home-page": "home_page", + "keywords": "keywords", + "license": "license", + "maintainer": "maintainer", + "maintainer-email": "maintainer_email", + "metadata-version": "metadata_version", + "name": "name", + "obsoletes": "obsoletes", + "obsoletes-dist": "obsoletes_dist", + "platform": "platforms", + "project-url": "project_urls", + "provides": "provides", + "provides-dist": "provides_dist", + "provides-extra": "provides_extra", + "requires": "requires", + "requires-dist": "requires_dist", + "requires-external": "requires_external", + "requires-python": "requires_python", + "summary": "summary", + "supported-platform": "supported_platforms", + "version": "version", +} +_RAW_TO_EMAIL_MAPPING = {raw: email for email, raw in _EMAIL_TO_RAW_MAPPING.items()} + + +def parse_email(data: Union[bytes, str]) -> Tuple[RawMetadata, Dict[str, List[str]]]: + """Parse a distribution's metadata stored as email headers (e.g. from ``METADATA``). + + This function returns a two-item tuple of dicts. The first dict is of + recognized fields from the core metadata specification. Fields that can be + parsed and translated into Python's built-in types are converted + appropriately. All other fields are left as-is. Fields that are allowed to + appear multiple times are stored as lists. + + The second dict contains all other fields from the metadata. This includes + any unrecognized fields. It also includes any fields which are expected to + be parsed into a built-in type but were not formatted appropriately. Finally, + any fields that are expected to appear only once but are repeated are + included in this dict. + + """ + raw: Dict[str, Union[str, List[str], Dict[str, str]]] = {} + unparsed: Dict[str, List[str]] = {} + + if isinstance(data, str): + parsed = email.parser.Parser(policy=email.policy.compat32).parsestr(data) + else: + parsed = email.parser.BytesParser(policy=email.policy.compat32).parsebytes(data) + + # We have to wrap parsed.keys() in a set, because in the case of multiple + # values for a key (a list), the key will appear multiple times in the + # list of keys, but we're avoiding that by using get_all(). + for name in frozenset(parsed.keys()): + # Header names in RFC are case insensitive, so we'll normalize to all + # lower case to make comparisons easier. + name = name.lower() + + # We use get_all() here, even for fields that aren't multiple use, + # because otherwise someone could have e.g. two Name fields, and we + # would just silently ignore it rather than doing something about it. + headers = parsed.get_all(name) or [] + + # The way the email module works when parsing bytes is that it + # unconditionally decodes the bytes as ascii using the surrogateescape + # handler. When you pull that data back out (such as with get_all() ), + # it looks to see if the str has any surrogate escapes, and if it does + # it wraps it in a Header object instead of returning the string. + # + # As such, we'll look for those Header objects, and fix up the encoding. + value = [] + # Flag if we have run into any issues processing the headers, thus + # signalling that the data belongs in 'unparsed'. + valid_encoding = True + for h in headers: + # It's unclear if this can return more types than just a Header or + # a str, so we'll just assert here to make sure. + assert isinstance(h, (email.header.Header, str)) + + # If it's a header object, we need to do our little dance to get + # the real data out of it. In cases where there is invalid data + # we're going to end up with mojibake, but there's no obvious, good + # way around that without reimplementing parts of the Header object + # ourselves. + # + # That should be fine since, if mojibacked happens, this key is + # going into the unparsed dict anyways. + if isinstance(h, email.header.Header): + # The Header object stores it's data as chunks, and each chunk + # can be independently encoded, so we'll need to check each + # of them. + chunks: List[Tuple[bytes, Optional[str]]] = [] + for bin, encoding in email.header.decode_header(h): + try: + bin.decode("utf8", "strict") + except UnicodeDecodeError: + # Enable mojibake. + encoding = "latin1" + valid_encoding = False + else: + encoding = "utf8" + chunks.append((bin, encoding)) + + # Turn our chunks back into a Header object, then let that + # Header object do the right thing to turn them into a + # string for us. + value.append(str(email.header.make_header(chunks))) + # This is already a string, so just add it. + else: + value.append(h) + + # We've processed all of our values to get them into a list of str, + # but we may have mojibake data, in which case this is an unparsed + # field. + if not valid_encoding: + unparsed[name] = value + continue + + raw_name = _EMAIL_TO_RAW_MAPPING.get(name) + if raw_name is None: + # This is a bit of a weird situation, we've encountered a key that + # we don't know what it means, so we don't know whether it's meant + # to be a list or not. + # + # Since we can't really tell one way or another, we'll just leave it + # as a list, even though it may be a single item list, because that's + # what makes the most sense for email headers. + unparsed[name] = value + continue + + # If this is one of our string fields, then we'll check to see if our + # value is a list of a single item. If it is then we'll assume that + # it was emitted as a single string, and unwrap the str from inside + # the list. + # + # If it's any other kind of data, then we haven't the faintest clue + # what we should parse it as, and we have to just add it to our list + # of unparsed stuff. + if raw_name in _STRING_FIELDS and len(value) == 1: + raw[raw_name] = value[0] + # If this is one of our list of string fields, then we can just assign + # the value, since email *only* has strings, and our get_all() call + # above ensures that this is a list. + elif raw_name in _LIST_FIELDS: + raw[raw_name] = value + # Special Case: Keywords + # The keywords field is implemented in the metadata spec as a str, + # but it conceptually is a list of strings, and is serialized using + # ", ".join(keywords), so we'll do some light data massaging to turn + # this into what it logically is. + elif raw_name == "keywords" and len(value) == 1: + raw[raw_name] = _parse_keywords(value[0]) + # Special Case: Project-URL + # The project urls is implemented in the metadata spec as a list of + # specially-formatted strings that represent a key and a value, which + # is fundamentally a mapping, however the email format doesn't support + # mappings in a sane way, so it was crammed into a list of strings + # instead. + # + # We will do a little light data massaging to turn this into a map as + # it logically should be. + elif raw_name == "project_urls": + try: + raw[raw_name] = _parse_project_urls(value) + except KeyError: + unparsed[name] = value + # Nothing that we've done has managed to parse this, so it'll just + # throw it in our unparseable data and move on. + else: + unparsed[name] = value + + # We need to support getting the Description from the message payload in + # addition to getting it from the the headers. This does mean, though, there + # is the possibility of it being set both ways, in which case we put both + # in 'unparsed' since we don't know which is right. + try: + payload = _get_payload(parsed, data) + except ValueError: + unparsed.setdefault("description", []).append( + parsed.get_payload(decode=isinstance(data, bytes)) + ) + else: + if payload: + # Check to see if we've already got a description, if so then both + # it, and this body move to unparseable. + if "description" in raw: + description_header = cast(str, raw.pop("description")) + unparsed.setdefault("description", []).extend( + [description_header, payload] + ) + elif "description" in unparsed: + unparsed["description"].append(payload) + else: + raw["description"] = payload + + # We need to cast our `raw` to a metadata, because a TypedDict only support + # literal key names, but we're computing our key names on purpose, but the + # way this function is implemented, our `TypedDict` can only have valid key + # names. + return cast(RawMetadata, raw), unparsed + + +_NOT_FOUND = object() + + +# Keep the two values in sync. +_VALID_METADATA_VERSIONS = ["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] +_MetadataVersion = Literal["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] + +_REQUIRED_ATTRS = frozenset(["metadata_version", "name", "version"]) + + +class _Validator(Generic[T]): + """Validate a metadata field. + + All _process_*() methods correspond to a core metadata field. The method is + called with the field's raw value. If the raw value is valid it is returned + in its "enriched" form (e.g. ``version.Version`` for the ``Version`` field). + If the raw value is invalid, :exc:`InvalidMetadata` is raised (with a cause + as appropriate). + """ + + name: str + raw_name: str + added: _MetadataVersion + + def __init__( + self, + *, + added: _MetadataVersion = "1.0", + ) -> None: + self.added = added + + def __set_name__(self, _owner: "Metadata", name: str) -> None: + self.name = name + self.raw_name = _RAW_TO_EMAIL_MAPPING[name] + + def __get__(self, instance: "Metadata", _owner: Type["Metadata"]) -> T: + # With Python 3.8, the caching can be replaced with functools.cached_property(). + # No need to check the cache as attribute lookup will resolve into the + # instance's __dict__ before __get__ is called. + cache = instance.__dict__ + value = instance._raw.get(self.name) + + # To make the _process_* methods easier, we'll check if the value is None + # and if this field is NOT a required attribute, and if both of those + # things are true, we'll skip the the converter. This will mean that the + # converters never have to deal with the None union. + if self.name in _REQUIRED_ATTRS or value is not None: + try: + converter: Callable[[Any], T] = getattr(self, f"_process_{self.name}") + except AttributeError: + pass + else: + value = converter(value) + + cache[self.name] = value + try: + del instance._raw[self.name] # type: ignore[misc] + except KeyError: + pass + + return cast(T, value) + + def _invalid_metadata( + self, msg: str, cause: Optional[Exception] = None + ) -> InvalidMetadata: + exc = InvalidMetadata( + self.raw_name, msg.format_map({"field": repr(self.raw_name)}) + ) + exc.__cause__ = cause + return exc + + def _process_metadata_version(self, value: str) -> _MetadataVersion: + # Implicitly makes Metadata-Version required. + if value not in _VALID_METADATA_VERSIONS: + raise self._invalid_metadata(f"{value!r} is not a valid metadata version") + return cast(_MetadataVersion, value) + + def _process_name(self, value: str) -> str: + if not value: + raise self._invalid_metadata("{field} is a required field") + # Validate the name as a side-effect. + try: + utils.canonicalize_name(value, validate=True) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + else: + return value + + def _process_version(self, value: str) -> version_module.Version: + if not value: + raise self._invalid_metadata("{field} is a required field") + try: + return version_module.parse(value) + except version_module.InvalidVersion as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_summary(self, value: str) -> str: + """Check the field contains no newlines.""" + if "\n" in value: + raise self._invalid_metadata("{field} must be a single line") + return value + + def _process_description_content_type(self, value: str) -> str: + content_types = {"text/plain", "text/x-rst", "text/markdown"} + message = email.message.EmailMessage() + message["content-type"] = value + + content_type, parameters = ( + # Defaults to `text/plain` if parsing failed. + message.get_content_type().lower(), + message["content-type"].params, + ) + # Check if content-type is valid or defaulted to `text/plain` and thus was + # not parseable. + if content_type not in content_types or content_type not in value.lower(): + raise self._invalid_metadata( + f"{{field}} must be one of {list(content_types)}, not {value!r}" + ) + + charset = parameters.get("charset", "UTF-8") + if charset != "UTF-8": + raise self._invalid_metadata( + f"{{field}} can only specify the UTF-8 charset, not {list(charset)}" + ) + + markdown_variants = {"GFM", "CommonMark"} + variant = parameters.get("variant", "GFM") # Use an acceptable default. + if content_type == "text/markdown" and variant not in markdown_variants: + raise self._invalid_metadata( + f"valid Markdown variants for {{field}} are {list(markdown_variants)}, " + f"not {variant!r}", + ) + return value + + def _process_dynamic(self, value: List[str]) -> List[str]: + for dynamic_field in map(str.lower, value): + if dynamic_field in {"name", "version", "metadata-version"}: + raise self._invalid_metadata( + f"{value!r} is not allowed as a dynamic field" + ) + elif dynamic_field not in _EMAIL_TO_RAW_MAPPING: + raise self._invalid_metadata(f"{value!r} is not a valid dynamic field") + return list(map(str.lower, value)) + + def _process_provides_extra( + self, + value: List[str], + ) -> List[utils.NormalizedName]: + normalized_names = [] + try: + for name in value: + normalized_names.append(utils.canonicalize_name(name, validate=True)) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{name!r} is invalid for {{field}}", cause=exc + ) + else: + return normalized_names + + def _process_requires_python(self, value: str) -> specifiers.SpecifierSet: + try: + return specifiers.SpecifierSet(value) + except specifiers.InvalidSpecifier as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_requires_dist( + self, + value: List[str], + ) -> List[requirements.Requirement]: + reqs = [] + try: + for req in value: + reqs.append(requirements.Requirement(req)) + except requirements.InvalidRequirement as exc: + raise self._invalid_metadata(f"{req!r} is invalid for {{field}}", cause=exc) + else: + return reqs + + +class Metadata: + """Representation of distribution metadata. + + Compared to :class:`RawMetadata`, this class provides objects representing + metadata fields instead of only using built-in types. Any invalid metadata + will cause :exc:`InvalidMetadata` to be raised (with a + :py:attr:`~BaseException.__cause__` attribute as appropriate). + """ + + _raw: RawMetadata + + @classmethod + def from_raw(cls, data: RawMetadata, *, validate: bool = True) -> "Metadata": + """Create an instance from :class:`RawMetadata`. + + If *validate* is true, all metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + ins = cls() + ins._raw = data.copy() # Mutations occur due to caching enriched values. + + if validate: + exceptions: List[Exception] = [] + try: + metadata_version = ins.metadata_version + metadata_age = _VALID_METADATA_VERSIONS.index(metadata_version) + except InvalidMetadata as metadata_version_exc: + exceptions.append(metadata_version_exc) + metadata_version = None + + # Make sure to check for the fields that are present, the required + # fields (so their absence can be reported). + fields_to_check = frozenset(ins._raw) | _REQUIRED_ATTRS + # Remove fields that have already been checked. + fields_to_check -= {"metadata_version"} + + for key in fields_to_check: + try: + if metadata_version: + # Can't use getattr() as that triggers descriptor protocol which + # will fail due to no value for the instance argument. + try: + field_metadata_version = cls.__dict__[key].added + except KeyError: + exc = InvalidMetadata(key, f"unrecognized field: {key!r}") + exceptions.append(exc) + continue + field_age = _VALID_METADATA_VERSIONS.index( + field_metadata_version + ) + if field_age > metadata_age: + field = _RAW_TO_EMAIL_MAPPING[key] + exc = InvalidMetadata( + field, + "{field} introduced in metadata version " + "{field_metadata_version}, not {metadata_version}", + ) + exceptions.append(exc) + continue + getattr(ins, key) + except InvalidMetadata as exc: + exceptions.append(exc) + + if exceptions: + raise ExceptionGroup("invalid metadata", exceptions) + + return ins + + @classmethod + def from_email( + cls, data: Union[bytes, str], *, validate: bool = True + ) -> "Metadata": + """Parse metadata from email headers. + + If *validate* is true, the metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + raw, unparsed = parse_email(data) + + if validate: + exceptions: list[Exception] = [] + for unparsed_key in unparsed: + if unparsed_key in _EMAIL_TO_RAW_MAPPING: + message = f"{unparsed_key!r} has invalid data" + else: + message = f"unrecognized field: {unparsed_key!r}" + exceptions.append(InvalidMetadata(unparsed_key, message)) + + if exceptions: + raise ExceptionGroup("unparsed", exceptions) + + try: + return cls.from_raw(raw, validate=validate) + except ExceptionGroup as exc_group: + raise ExceptionGroup( + "invalid or unparsed metadata", exc_group.exceptions + ) from None + + metadata_version: _Validator[_MetadataVersion] = _Validator() + """:external:ref:`core-metadata-metadata-version` + (required; validated to be a valid metadata version)""" + name: _Validator[str] = _Validator() + """:external:ref:`core-metadata-name` + (required; validated using :func:`~packaging.utils.canonicalize_name` and its + *validate* parameter)""" + version: _Validator[version_module.Version] = _Validator() + """:external:ref:`core-metadata-version` (required)""" + dynamic: _Validator[Optional[List[str]]] = _Validator( + added="2.2", + ) + """:external:ref:`core-metadata-dynamic` + (validated against core metadata field names and lowercased)""" + platforms: _Validator[Optional[List[str]]] = _Validator() + """:external:ref:`core-metadata-platform`""" + supported_platforms: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """:external:ref:`core-metadata-supported-platform`""" + summary: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-summary` (validated to contain no newlines)""" + description: _Validator[Optional[str]] = _Validator() # TODO 2.1: can be in body + """:external:ref:`core-metadata-description`""" + description_content_type: _Validator[Optional[str]] = _Validator(added="2.1") + """:external:ref:`core-metadata-description-content-type` (validated)""" + keywords: _Validator[Optional[List[str]]] = _Validator() + """:external:ref:`core-metadata-keywords`""" + home_page: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-home-page`""" + download_url: _Validator[Optional[str]] = _Validator(added="1.1") + """:external:ref:`core-metadata-download-url`""" + author: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-author`""" + author_email: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-author-email`""" + maintainer: _Validator[Optional[str]] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer`""" + maintainer_email: _Validator[Optional[str]] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer-email`""" + license: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-license`""" + classifiers: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """:external:ref:`core-metadata-classifier`""" + requires_dist: _Validator[Optional[List[requirements.Requirement]]] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-dist`""" + requires_python: _Validator[Optional[specifiers.SpecifierSet]] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-python`""" + # Because `Requires-External` allows for non-PEP 440 version specifiers, we + # don't do any processing on the values. + requires_external: _Validator[Optional[List[str]]] = _Validator(added="1.2") + """:external:ref:`core-metadata-requires-external`""" + project_urls: _Validator[Optional[Dict[str, str]]] = _Validator(added="1.2") + """:external:ref:`core-metadata-project-url`""" + # PEP 685 lets us raise an error if an extra doesn't pass `Name` validation + # regardless of metadata version. + provides_extra: _Validator[Optional[List[utils.NormalizedName]]] = _Validator( + added="2.1", + ) + """:external:ref:`core-metadata-provides-extra`""" + provides_dist: _Validator[Optional[List[str]]] = _Validator(added="1.2") + """:external:ref:`core-metadata-provides-dist`""" + obsoletes_dist: _Validator[Optional[List[str]]] = _Validator(added="1.2") + """:external:ref:`core-metadata-obsoletes-dist`""" + requires: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """``Requires`` (deprecated)""" + provides: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """``Provides`` (deprecated)""" + obsoletes: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """``Obsoletes`` (deprecated)""" diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed new file mode 100644 index 00000000000000..e69de29bb2d1d6 diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py new file mode 100644 index 00000000000000..0c00eba331b736 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py @@ -0,0 +1,90 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from typing import Any, Iterator, Optional, Set + +from ._parser import parse_requirement as _parse_requirement +from ._tokenizer import ParserSyntaxError +from .markers import Marker, _normalize_extra_values +from .specifiers import SpecifierSet +from .utils import canonicalize_name + + +class InvalidRequirement(ValueError): + """ + An invalid requirement was found, users should refer to PEP 508. + """ + + +class Requirement: + """Parse a requirement. + + Parse a given requirement string into its parts, such as name, specifier, + URL, and extras. Raises InvalidRequirement on a badly-formed requirement + string. + """ + + # TODO: Can we test whether something is contained within a requirement? + # If so how do we do that? Do we need to test against the _name_ of + # the thing as well as the version? What about the markers? + # TODO: Can we normalize the name and extra name? + + def __init__(self, requirement_string: str) -> None: + try: + parsed = _parse_requirement(requirement_string) + except ParserSyntaxError as e: + raise InvalidRequirement(str(e)) from e + + self.name: str = parsed.name + self.url: Optional[str] = parsed.url or None + self.extras: Set[str] = set(parsed.extras if parsed.extras else []) + self.specifier: SpecifierSet = SpecifierSet(parsed.specifier) + self.marker: Optional[Marker] = None + if parsed.marker is not None: + self.marker = Marker.__new__(Marker) + self.marker._markers = _normalize_extra_values(parsed.marker) + + def _iter_parts(self, name: str) -> Iterator[str]: + yield name + + if self.extras: + formatted_extras = ",".join(sorted(self.extras)) + yield f"[{formatted_extras}]" + + if self.specifier: + yield str(self.specifier) + + if self.url: + yield f"@ {self.url}" + if self.marker: + yield " " + + if self.marker: + yield f"; {self.marker}" + + def __str__(self) -> str: + return "".join(self._iter_parts(self.name)) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash( + ( + self.__class__.__name__, + *self._iter_parts(canonicalize_name(self.name)), + ) + ) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Requirement): + return NotImplemented + + return ( + canonicalize_name(self.name) == canonicalize_name(other.name) + and self.extras == other.extras + and self.specifier == other.specifier + and self.url == other.url + and self.marker == other.marker + ) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py new file mode 100644 index 00000000000000..94448327ae2d44 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py @@ -0,0 +1,1030 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from packaging.specifiers import Specifier, SpecifierSet, InvalidSpecifier + from packaging.version import Version +""" + +import abc +import itertools +import re +from typing import ( + Callable, + Iterable, + Iterator, + List, + Optional, + Set, + Tuple, + TypeVar, + Union, +) + +from .utils import canonicalize_version +from .version import Version + +UnparsedVersion = Union[Version, str] +UnparsedVersionVar = TypeVar("UnparsedVersionVar", bound=UnparsedVersion) +CallableOperator = Callable[[Version, str], bool] + + +def _coerce_version(version: UnparsedVersion) -> Version: + if not isinstance(version, Version): + version = Version(version) + return version + + +class InvalidSpecifier(ValueError): + """ + Raised when attempting to create a :class:`Specifier` with a specifier + string that is invalid. + + >>> Specifier("lolwat") + Traceback (most recent call last): + ... + packaging.specifiers.InvalidSpecifier: Invalid specifier: 'lolwat' + """ + + +class BaseSpecifier(metaclass=abc.ABCMeta): + @abc.abstractmethod + def __str__(self) -> str: + """ + Returns the str representation of this Specifier-like object. This + should be representative of the Specifier itself. + """ + + @abc.abstractmethod + def __hash__(self) -> int: + """ + Returns a hash value for this Specifier-like object. + """ + + @abc.abstractmethod + def __eq__(self, other: object) -> bool: + """ + Returns a boolean representing whether or not the two Specifier-like + objects are equal. + + :param other: The other object to check against. + """ + + @property + @abc.abstractmethod + def prereleases(self) -> Optional[bool]: + """Whether or not pre-releases as a whole are allowed. + + This can be set to either ``True`` or ``False`` to explicitly enable or disable + prereleases or it can be set to ``None`` (the default) to use default semantics. + """ + + @prereleases.setter + def prereleases(self, value: bool) -> None: + """Setter for :attr:`prereleases`. + + :param value: The value to set. + """ + + @abc.abstractmethod + def contains(self, item: str, prereleases: Optional[bool] = None) -> bool: + """ + Determines if the given item is contained within this specifier. + """ + + @abc.abstractmethod + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: Optional[bool] = None + ) -> Iterator[UnparsedVersionVar]: + """ + Takes an iterable of items and filters them so that only items which + are contained within this specifier are allowed in it. + """ + + +class Specifier(BaseSpecifier): + """This class abstracts handling of version specifiers. + + .. tip:: + + It is generally not required to instantiate this manually. You should instead + prefer to work with :class:`SpecifierSet` instead, which can parse + comma-separated version specifiers (which is what package metadata contains). + """ + + _operator_regex_str = r""" + (?P(~=|==|!=|<=|>=|<|>|===)) + """ + _version_regex_str = r""" + (?P + (?: + # The identity operators allow for an escape hatch that will + # do an exact string match of the version you wish to install. + # This will not be parsed by PEP 440 and we cannot determine + # any semantic meaning from it. This operator is discouraged + # but included entirely as an escape hatch. + (?<====) # Only match for the identity operator + \s* + [^\s;)]* # The arbitrary version can be just about anything, + # we match everything except for whitespace, a + # semi-colon for marker support, and a closing paren + # since versions can be enclosed in them. + ) + | + (?: + # The (non)equality operators allow for wild card and local + # versions to be specified so we have to define these two + # operators separately to enable that. + (?<===|!=) # Only match for equals and not equals + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)* # release + + # You cannot use a wild card and a pre-release, post-release, a dev or + # local version together so group them with a | and make them optional. + (?: + \.\* # Wild card syntax of .* + | + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local + )? + ) + | + (?: + # The compatible operator requires at least two digits in the + # release segment. + (?<=~=) # Only match for the compatible operator + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + ) + | + (?: + # All other operators only allow a sub set of what the + # (non)equality operators do. Specifically they do not allow + # local versions to be specified nor do they allow the prefix + # matching wild cards. + (?=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + "===": "arbitrary", + } + + def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: + """Initialize a Specifier instance. + + :param spec: + The string representation of a specifier which will be parsed and + normalized before use. + :param prereleases: + This tells the specifier if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + :raises InvalidSpecifier: + If the given specifier is invalid (i.e. bad syntax). + """ + match = self._regex.search(spec) + if not match: + raise InvalidSpecifier(f"Invalid specifier: '{spec}'") + + self._spec: Tuple[str, str] = ( + match.group("operator").strip(), + match.group("version").strip(), + ) + + # Store whether or not this Specifier should accept prereleases + self._prereleases = prereleases + + # https://github.com/python/mypy/pull/13475#pullrequestreview-1079784515 + @property # type: ignore[override] + def prereleases(self) -> bool: + # If there is an explicit prereleases set for this, then we'll just + # blindly use that. + if self._prereleases is not None: + return self._prereleases + + # Look at all of our specifiers and determine if they are inclusive + # operators, and if they are if they are including an explicit + # prerelease. + operator, version = self._spec + if operator in ["==", ">=", "<=", "~=", "==="]: + # The == specifier can include a trailing .*, if it does we + # want to remove before parsing. + if operator == "==" and version.endswith(".*"): + version = version[:-2] + + # Parse the version, and if it is a pre-release than this + # specifier allows pre-releases. + if Version(version).is_prerelease: + return True + + return False + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + @property + def operator(self) -> str: + """The operator of this specifier. + + >>> Specifier("==1.2.3").operator + '==' + """ + return self._spec[0] + + @property + def version(self) -> str: + """The version of this specifier. + + >>> Specifier("==1.2.3").version + '1.2.3' + """ + return self._spec[1] + + def __repr__(self) -> str: + """A representation of the Specifier that shows all internal state. + + >>> Specifier('>=1.0.0') + =1.0.0')> + >>> Specifier('>=1.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> Specifier('>=1.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"<{self.__class__.__name__}({str(self)!r}{pre})>" + + def __str__(self) -> str: + """A string representation of the Specifier that can be round-tripped. + + >>> str(Specifier('>=1.0.0')) + '>=1.0.0' + >>> str(Specifier('>=1.0.0', prereleases=False)) + '>=1.0.0' + """ + return "{}{}".format(*self._spec) + + @property + def _canonical_spec(self) -> Tuple[str, str]: + canonical_version = canonicalize_version( + self._spec[1], + strip_trailing_zero=(self._spec[0] != "~="), + ) + return self._spec[0], canonical_version + + def __hash__(self) -> int: + return hash(self._canonical_spec) + + def __eq__(self, other: object) -> bool: + """Whether or not the two Specifier-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> Specifier("==1.2.3") == Specifier("== 1.2.3.0") + True + >>> (Specifier("==1.2.3", prereleases=False) == + ... Specifier("==1.2.3", prereleases=True)) + True + >>> Specifier("==1.2.3") == "==1.2.3" + True + >>> Specifier("==1.2.3") == Specifier("==1.2.4") + False + >>> Specifier("==1.2.3") == Specifier("~=1.2.3") + False + """ + if isinstance(other, str): + try: + other = self.__class__(str(other)) + except InvalidSpecifier: + return NotImplemented + elif not isinstance(other, self.__class__): + return NotImplemented + + return self._canonical_spec == other._canonical_spec + + def _get_operator(self, op: str) -> CallableOperator: + operator_callable: CallableOperator = getattr( + self, f"_compare_{self._operators[op]}" + ) + return operator_callable + + def _compare_compatible(self, prospective: Version, spec: str) -> bool: + + # Compatible releases have an equivalent combination of >= and ==. That + # is that ~=2.2 is equivalent to >=2.2,==2.*. This allows us to + # implement this in terms of the other specifiers instead of + # implementing it ourselves. The only thing we need to do is construct + # the other specifiers. + + # We want everything but the last item in the version, but we want to + # ignore suffix segments. + prefix = _version_join( + list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1] + ) + + # Add the prefix notation to the end of our string + prefix += ".*" + + return self._get_operator(">=")(prospective, spec) and self._get_operator("==")( + prospective, prefix + ) + + def _compare_equal(self, prospective: Version, spec: str) -> bool: + + # We need special logic to handle prefix matching + if spec.endswith(".*"): + # In the case of prefix matching we want to ignore local segment. + normalized_prospective = canonicalize_version( + prospective.public, strip_trailing_zero=False + ) + # Get the normalized version string ignoring the trailing .* + normalized_spec = canonicalize_version(spec[:-2], strip_trailing_zero=False) + # Split the spec out by bangs and dots, and pretend that there is + # an implicit dot in between a release segment and a pre-release segment. + split_spec = _version_split(normalized_spec) + + # Split the prospective version out by bangs and dots, and pretend + # that there is an implicit dot in between a release segment and + # a pre-release segment. + split_prospective = _version_split(normalized_prospective) + + # 0-pad the prospective version before shortening it to get the correct + # shortened version. + padded_prospective, _ = _pad_version(split_prospective, split_spec) + + # Shorten the prospective version to be the same length as the spec + # so that we can determine if the specifier is a prefix of the + # prospective version or not. + shortened_prospective = padded_prospective[: len(split_spec)] + + return shortened_prospective == split_spec + else: + # Convert our spec string into a Version + spec_version = Version(spec) + + # If the specifier does not have a local segment, then we want to + # act as if the prospective version also does not have a local + # segment. + if not spec_version.local: + prospective = Version(prospective.public) + + return prospective == spec_version + + def _compare_not_equal(self, prospective: Version, spec: str) -> bool: + return not self._compare_equal(prospective, spec) + + def _compare_less_than_equal(self, prospective: Version, spec: str) -> bool: + + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) <= Version(spec) + + def _compare_greater_than_equal(self, prospective: Version, spec: str) -> bool: + + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) >= Version(spec) + + def _compare_less_than(self, prospective: Version, spec_str: str) -> bool: + + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is less than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective < spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a pre-release version, that we do not accept pre-release + # versions for the version mentioned in the specifier (e.g. <3.1 should + # not match 3.1.dev0, but should match 3.0.dev0). + if not spec.is_prerelease and prospective.is_prerelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # less than the spec version *and* it's not a pre-release of the same + # version in the spec. + return True + + def _compare_greater_than(self, prospective: Version, spec_str: str) -> bool: + + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is greater than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective > spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a post-release version, that we do not accept + # post-release versions for the version mentioned in the specifier + # (e.g. >3.1 should not match 3.0.post0, but should match 3.2.post0). + if not spec.is_postrelease and prospective.is_postrelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # Ensure that we do not allow a local version of the version mentioned + # in the specifier, which is technically greater than, to match. + if prospective.local is not None: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # greater than the spec version *and* it's not a pre-release of the + # same version in the spec. + return True + + def _compare_arbitrary(self, prospective: Version, spec: str) -> bool: + return str(prospective).lower() == str(spec).lower() + + def __contains__(self, item: Union[str, Version]) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in Specifier(">=1.2.3") + True + >>> Version("1.2.3") in Specifier(">=1.2.3") + True + >>> "1.0.0" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3", prereleases=True) + True + """ + return self.contains(item) + + def contains( + self, item: UnparsedVersion, prereleases: Optional[bool] = None + ) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this Specifier. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> Specifier(">=1.2.3").contains("1.2.3") + True + >>> Specifier(">=1.2.3").contains(Version("1.2.3")) + True + >>> Specifier(">=1.2.3").contains("1.0.0") + False + >>> Specifier(">=1.2.3").contains("1.3.0a1") + False + >>> Specifier(">=1.2.3", prereleases=True).contains("1.3.0a1") + True + >>> Specifier(">=1.2.3").contains("1.3.0a1", prereleases=True) + True + """ + + # Determine if prereleases are to be allowed or not. + if prereleases is None: + prereleases = self.prereleases + + # Normalize item to a Version, this allows us to have a shortcut for + # "2.0" in Specifier(">=2") + normalized_item = _coerce_version(item) + + # Determine if we should be supporting prereleases in this specifier + # or not, if we do not support prereleases than we can short circuit + # logic if this version is a prereleases. + if normalized_item.is_prerelease and not prereleases: + return False + + # Actually do the comparison to determine if this item is contained + # within this Specifier or not. + operator_callable: CallableOperator = self._get_operator(self.operator) + return operator_callable(normalized_item, self.version) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: Optional[bool] = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifier. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(Specifier().contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.2.3", "1.3", Version("1.4")])) + ['1.2.3', '1.3', ] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.5a1"])) + ['1.5a1'] + >>> list(Specifier(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(Specifier(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + """ + + yielded = False + found_prereleases = [] + + kw = {"prereleases": prereleases if prereleases is not None else True} + + # Attempt to iterate over all the values in the iterable and if any of + # them match, yield them. + for version in iterable: + parsed_version = _coerce_version(version) + + if self.contains(parsed_version, **kw): + # If our version is a prerelease, and we were not set to allow + # prereleases, then we'll store it for later in case nothing + # else matches this specifier. + if parsed_version.is_prerelease and not ( + prereleases or self.prereleases + ): + found_prereleases.append(version) + # Either this is not a prerelease, or we should have been + # accepting prereleases from the beginning. + else: + yielded = True + yield version + + # Now that we've iterated over everything, determine if we've yielded + # any values, and if we have not and we have any prereleases stored up + # then we will go ahead and yield the prereleases. + if not yielded and found_prereleases: + for version in found_prereleases: + yield version + + +_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") + + +def _version_split(version: str) -> List[str]: + """Split version into components. + + The split components are intended for version comparison. The logic does + not attempt to retain the original version string, so joining the + components back with :func:`_version_join` may not produce the original + version string. + """ + result: List[str] = [] + + epoch, _, rest = version.rpartition("!") + result.append(epoch or "0") + + for item in rest.split("."): + match = _prefix_regex.search(item) + if match: + result.extend(match.groups()) + else: + result.append(item) + return result + + +def _version_join(components: List[str]) -> str: + """Join split version components into a version string. + + This function assumes the input came from :func:`_version_split`, where the + first component must be the epoch (either empty or numeric), and all other + components numeric. + """ + epoch, *rest = components + return f"{epoch}!{'.'.join(rest)}" + + +def _is_not_suffix(segment: str) -> bool: + return not any( + segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post") + ) + + +def _pad_version(left: List[str], right: List[str]) -> Tuple[List[str], List[str]]: + left_split, right_split = [], [] + + # Get the release segment of our versions + left_split.append(list(itertools.takewhile(lambda x: x.isdigit(), left))) + right_split.append(list(itertools.takewhile(lambda x: x.isdigit(), right))) + + # Get the rest of our versions + left_split.append(left[len(left_split[0]) :]) + right_split.append(right[len(right_split[0]) :]) + + # Insert our padding + left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) + right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0]))) + + return (list(itertools.chain(*left_split)), list(itertools.chain(*right_split))) + + +class SpecifierSet(BaseSpecifier): + """This class abstracts handling of a set of version specifiers. + + It can be passed a single specifier (``>=3.0``), a comma-separated list of + specifiers (``>=3.0,!=3.1``), or no specifier at all. + """ + + def __init__( + self, specifiers: str = "", prereleases: Optional[bool] = None + ) -> None: + """Initialize a SpecifierSet instance. + + :param specifiers: + The string representation of a specifier or a comma-separated list of + specifiers which will be parsed and normalized before use. + :param prereleases: + This tells the SpecifierSet if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + + :raises InvalidSpecifier: + If the given ``specifiers`` are not parseable than this exception will be + raised. + """ + + # Split on `,` to break each individual specifier into it's own item, and + # strip each item to remove leading/trailing whitespace. + split_specifiers = [s.strip() for s in specifiers.split(",") if s.strip()] + + # Parsed each individual specifier, attempting first to make it a + # Specifier. + parsed: Set[Specifier] = set() + for specifier in split_specifiers: + parsed.add(Specifier(specifier)) + + # Turn our parsed specifiers into a frozen set and save them for later. + self._specs = frozenset(parsed) + + # Store our prereleases value so we can use it later to determine if + # we accept prereleases or not. + self._prereleases = prereleases + + @property + def prereleases(self) -> Optional[bool]: + # If we have been given an explicit prerelease modifier, then we'll + # pass that through here. + if self._prereleases is not None: + return self._prereleases + + # If we don't have any specifiers, and we don't have a forced value, + # then we'll just return None since we don't know if this should have + # pre-releases or not. + if not self._specs: + return None + + # Otherwise we'll see if any of the given specifiers accept + # prereleases, if any of them do we'll return True, otherwise False. + return any(s.prereleases for s in self._specs) + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __repr__(self) -> str: + """A representation of the specifier set that shows all internal state. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> SpecifierSet('>=1.0.0,!=2.0.0') + =1.0.0')> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"" + + def __str__(self) -> str: + """A string representation of the specifier set that can be round-tripped. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> str(SpecifierSet(">=1.0.0,!=1.0.1")) + '!=1.0.1,>=1.0.0' + >>> str(SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False)) + '!=1.0.1,>=1.0.0' + """ + return ",".join(sorted(str(s) for s in self._specs)) + + def __hash__(self) -> int: + return hash(self._specs) + + def __and__(self, other: Union["SpecifierSet", str]) -> "SpecifierSet": + """Return a SpecifierSet which is a combination of the two sets. + + :param other: The other object to combine with. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") & '<=2.0.0,!=2.0.1' + =1.0.0')> + >>> SpecifierSet(">=1.0.0,!=1.0.1") & SpecifierSet('<=2.0.0,!=2.0.1') + =1.0.0')> + """ + if isinstance(other, str): + other = SpecifierSet(other) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + specifier = SpecifierSet() + specifier._specs = frozenset(self._specs | other._specs) + + if self._prereleases is None and other._prereleases is not None: + specifier._prereleases = other._prereleases + elif self._prereleases is not None and other._prereleases is None: + specifier._prereleases = self._prereleases + elif self._prereleases == other._prereleases: + specifier._prereleases = self._prereleases + else: + raise ValueError( + "Cannot combine SpecifierSets with True and False prerelease " + "overrides." + ) + + return specifier + + def __eq__(self, other: object) -> bool: + """Whether or not the two SpecifierSet-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> (SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False) == + ... SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True)) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == ">=1.0.0,!=1.0.1" + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.2") + False + """ + if isinstance(other, (str, Specifier)): + other = SpecifierSet(str(other)) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + return self._specs == other._specs + + def __len__(self) -> int: + """Returns the number of specifiers in this specifier set.""" + return len(self._specs) + + def __iter__(self) -> Iterator[Specifier]: + """ + Returns an iterator over all the underlying :class:`Specifier` instances + in this specifier set. + + >>> sorted(SpecifierSet(">=1.0.0,!=1.0.1"), key=str) + [, =1.0.0')>] + """ + return iter(self._specs) + + def __contains__(self, item: UnparsedVersion) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> Version("1.2.3") in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> "1.0.1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True) + True + """ + return self.contains(item) + + def contains( + self, + item: UnparsedVersion, + prereleases: Optional[bool] = None, + installed: Optional[bool] = None, + ) -> bool: + """Return whether or not the item is contained in this SpecifierSet. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this SpecifierSet. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.2.3") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains(Version("1.2.3")) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.0.1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True).contains("1.3.0a1") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1", prereleases=True) + True + """ + # Ensure that our item is a Version instance. + if not isinstance(item, Version): + item = Version(item) + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # We can determine if we're going to allow pre-releases by looking to + # see if any of the underlying items supports them. If none of them do + # and this item is a pre-release then we do not allow it and we can + # short circuit that here. + # Note: This means that 1.0.dev1 would not be contained in something + # like >=1.0.devabc however it would be in >=1.0.debabc,>0.0.dev0 + if not prereleases and item.is_prerelease: + return False + + if installed and item.is_prerelease: + item = Version(item.base_version) + + # We simply dispatch to the underlying specs here to make sure that the + # given version is contained within all of them. + # Note: This use of all() here means that an empty set of specifiers + # will always return True, this is an explicit design decision. + return all(s.contains(item, prereleases=prereleases) for s in self._specs) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: Optional[bool] = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifiers in this set. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(SpecifierSet(...).contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", Version("1.4")])) + ['1.3', ] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.5a1"])) + [] + >>> list(SpecifierSet(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(SpecifierSet(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + + An "empty" SpecifierSet will filter items based on the presence of prerelease + versions in the set. + + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet("").filter(["1.5a1"])) + ['1.5a1'] + >>> list(SpecifierSet("", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + """ + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # If we have any specifiers, then we want to wrap our iterable in the + # filter method for each one, this will act as a logical AND amongst + # each specifier. + if self._specs: + for spec in self._specs: + iterable = spec.filter(iterable, prereleases=bool(prereleases)) + return iter(iterable) + # If we do not have any specifiers, then we need to have a rough filter + # which will filter out any pre-releases, unless there are no final + # releases. + else: + filtered: List[UnparsedVersionVar] = [] + found_prereleases: List[UnparsedVersionVar] = [] + + for item in iterable: + parsed_version = _coerce_version(item) + + # Store any item which is a pre-release for later unless we've + # already found a final version or we are accepting prereleases + if parsed_version.is_prerelease and not prereleases: + if not filtered: + found_prereleases.append(item) + else: + filtered.append(item) + + # If we've found no items except for pre-releases, then we'll go + # ahead and use the pre-releases + if not filtered and found_prereleases and prereleases is None: + return iter(found_prereleases) + + return iter(filtered) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py new file mode 100644 index 00000000000000..37f33b1ef849ed --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py @@ -0,0 +1,553 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import logging +import platform +import struct +import subprocess +import sys +import sysconfig +from importlib.machinery import EXTENSION_SUFFIXES +from typing import ( + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Optional, + Sequence, + Tuple, + Union, + cast, +) + +from . import _manylinux, _musllinux + +logger = logging.getLogger(__name__) + +PythonVersion = Sequence[int] +MacVersion = Tuple[int, int] + +INTERPRETER_SHORT_NAMES: Dict[str, str] = { + "python": "py", # Generic. + "cpython": "cp", + "pypy": "pp", + "ironpython": "ip", + "jython": "jy", +} + + +_32_BIT_INTERPRETER = struct.calcsize("P") == 4 + + +class Tag: + """ + A representation of the tag triple for a wheel. + + Instances are considered immutable and thus are hashable. Equality checking + is also supported. + """ + + __slots__ = ["_interpreter", "_abi", "_platform", "_hash"] + + def __init__(self, interpreter: str, abi: str, platform: str) -> None: + self._interpreter = interpreter.lower() + self._abi = abi.lower() + self._platform = platform.lower() + # The __hash__ of every single element in a Set[Tag] will be evaluated each time + # that a set calls its `.disjoint()` method, which may be called hundreds of + # times when scanning a page of links for packages with tags matching that + # Set[Tag]. Pre-computing the value here produces significant speedups for + # downstream consumers. + self._hash = hash((self._interpreter, self._abi, self._platform)) + + @property + def interpreter(self) -> str: + return self._interpreter + + @property + def abi(self) -> str: + return self._abi + + @property + def platform(self) -> str: + return self._platform + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Tag): + return NotImplemented + + return ( + (self._hash == other._hash) # Short-circuit ASAP for perf reasons. + and (self._platform == other._platform) + and (self._abi == other._abi) + and (self._interpreter == other._interpreter) + ) + + def __hash__(self) -> int: + return self._hash + + def __str__(self) -> str: + return f"{self._interpreter}-{self._abi}-{self._platform}" + + def __repr__(self) -> str: + return f"<{self} @ {id(self)}>" + + +def parse_tag(tag: str) -> FrozenSet[Tag]: + """ + Parses the provided tag (e.g. `py3-none-any`) into a frozenset of Tag instances. + + Returning a set is required due to the possibility that the tag is a + compressed tag set. + """ + tags = set() + interpreters, abis, platforms = tag.split("-") + for interpreter in interpreters.split("."): + for abi in abis.split("."): + for platform_ in platforms.split("."): + tags.add(Tag(interpreter, abi, platform_)) + return frozenset(tags) + + +def _get_config_var(name: str, warn: bool = False) -> Union[int, str, None]: + value: Union[int, str, None] = sysconfig.get_config_var(name) + if value is None and warn: + logger.debug( + "Config variable '%s' is unset, Python ABI tag may be incorrect", name + ) + return value + + +def _normalize_string(string: str) -> str: + return string.replace(".", "_").replace("-", "_").replace(" ", "_") + + +def _abi3_applies(python_version: PythonVersion) -> bool: + """ + Determine if the Python version supports abi3. + + PEP 384 was first implemented in Python 3.2. + """ + return len(python_version) > 1 and tuple(python_version) >= (3, 2) + + +def _cpython_abis(py_version: PythonVersion, warn: bool = False) -> List[str]: + py_version = tuple(py_version) # To allow for version comparison. + abis = [] + version = _version_nodot(py_version[:2]) + debug = pymalloc = ucs4 = "" + with_debug = _get_config_var("Py_DEBUG", warn) + has_refcount = hasattr(sys, "gettotalrefcount") + # Windows doesn't set Py_DEBUG, so checking for support of debug-compiled + # extension modules is the best option. + # https://github.com/pypa/pip/issues/3383#issuecomment-173267692 + has_ext = "_d.pyd" in EXTENSION_SUFFIXES + if with_debug or (with_debug is None and (has_refcount or has_ext)): + debug = "d" + if py_version < (3, 8): + with_pymalloc = _get_config_var("WITH_PYMALLOC", warn) + if with_pymalloc or with_pymalloc is None: + pymalloc = "m" + if py_version < (3, 3): + unicode_size = _get_config_var("Py_UNICODE_SIZE", warn) + if unicode_size == 4 or ( + unicode_size is None and sys.maxunicode == 0x10FFFF + ): + ucs4 = "u" + elif debug: + # Debug builds can also load "normal" extension modules. + # We can also assume no UCS-4 or pymalloc requirement. + abis.append(f"cp{version}") + abis.insert( + 0, + "cp{version}{debug}{pymalloc}{ucs4}".format( + version=version, debug=debug, pymalloc=pymalloc, ucs4=ucs4 + ), + ) + return abis + + +def cpython_tags( + python_version: Optional[PythonVersion] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a CPython interpreter. + + The tags consist of: + - cp-- + - cp-abi3- + - cp-none- + - cp-abi3- # Older Python versions down to 3.2. + + If python_version only specifies a major version then user-provided ABIs and + the 'none' ABItag will be used. + + If 'abi3' or 'none' are specified in 'abis' then they will be yielded at + their normal position and not at the beginning. + """ + if not python_version: + python_version = sys.version_info[:2] + + interpreter = f"cp{_version_nodot(python_version[:2])}" + + if abis is None: + if len(python_version) > 1: + abis = _cpython_abis(python_version, warn) + else: + abis = [] + abis = list(abis) + # 'abi3' and 'none' are explicitly handled later. + for explicit_abi in ("abi3", "none"): + try: + abis.remove(explicit_abi) + except ValueError: + pass + + platforms = list(platforms or platform_tags()) + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + if _abi3_applies(python_version): + yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) + yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) + + if _abi3_applies(python_version): + for minor_version in range(python_version[1] - 1, 1, -1): + for platform_ in platforms: + interpreter = "cp{version}".format( + version=_version_nodot((python_version[0], minor_version)) + ) + yield Tag(interpreter, "abi3", platform_) + + +def _generic_abi() -> List[str]: + """ + Return the ABI tag based on EXT_SUFFIX. + """ + # The following are examples of `EXT_SUFFIX`. + # We want to keep the parts which are related to the ABI and remove the + # parts which are related to the platform: + # - linux: '.cpython-310-x86_64-linux-gnu.so' => cp310 + # - mac: '.cpython-310-darwin.so' => cp310 + # - win: '.cp310-win_amd64.pyd' => cp310 + # - win: '.pyd' => cp37 (uses _cpython_abis()) + # - pypy: '.pypy38-pp73-x86_64-linux-gnu.so' => pypy38_pp73 + # - graalpy: '.graalpy-38-native-x86_64-darwin.dylib' + # => graalpy_38_native + + ext_suffix = _get_config_var("EXT_SUFFIX", warn=True) + if not isinstance(ext_suffix, str) or ext_suffix[0] != ".": + raise SystemError("invalid sysconfig.get_config_var('EXT_SUFFIX')") + parts = ext_suffix.split(".") + if len(parts) < 3: + # CPython3.7 and earlier uses ".pyd" on Windows. + return _cpython_abis(sys.version_info[:2]) + soabi = parts[1] + if soabi.startswith("cpython"): + # non-windows + abi = "cp" + soabi.split("-")[1] + elif soabi.startswith("cp"): + # windows + abi = soabi.split("-")[0] + elif soabi.startswith("pypy"): + abi = "-".join(soabi.split("-")[:2]) + elif soabi.startswith("graalpy"): + abi = "-".join(soabi.split("-")[:3]) + elif soabi: + # pyston, ironpython, others? + abi = soabi + else: + return [] + return [_normalize_string(abi)] + + +def generic_tags( + interpreter: Optional[str] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a generic interpreter. + + The tags consist of: + - -- + + The "none" ABI will be added if it was not explicitly provided. + """ + if not interpreter: + interp_name = interpreter_name() + interp_version = interpreter_version(warn=warn) + interpreter = "".join([interp_name, interp_version]) + if abis is None: + abis = _generic_abi() + else: + abis = list(abis) + platforms = list(platforms or platform_tags()) + if "none" not in abis: + abis.append("none") + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + +def _py_interpreter_range(py_version: PythonVersion) -> Iterator[str]: + """ + Yields Python versions in descending order. + + After the latest version, the major-only version will be yielded, and then + all previous versions of that major version. + """ + if len(py_version) > 1: + yield f"py{_version_nodot(py_version[:2])}" + yield f"py{py_version[0]}" + if len(py_version) > 1: + for minor in range(py_version[1] - 1, -1, -1): + yield f"py{_version_nodot((py_version[0], minor))}" + + +def compatible_tags( + python_version: Optional[PythonVersion] = None, + interpreter: Optional[str] = None, + platforms: Optional[Iterable[str]] = None, +) -> Iterator[Tag]: + """ + Yields the sequence of tags that are compatible with a specific version of Python. + + The tags consist of: + - py*-none- + - -none-any # ... if `interpreter` is provided. + - py*-none-any + """ + if not python_version: + python_version = sys.version_info[:2] + platforms = list(platforms or platform_tags()) + for version in _py_interpreter_range(python_version): + for platform_ in platforms: + yield Tag(version, "none", platform_) + if interpreter: + yield Tag(interpreter, "none", "any") + for version in _py_interpreter_range(python_version): + yield Tag(version, "none", "any") + + +def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str: + if not is_32bit: + return arch + + if arch.startswith("ppc"): + return "ppc" + + return "i386" + + +def _mac_binary_formats(version: MacVersion, cpu_arch: str) -> List[str]: + formats = [cpu_arch] + if cpu_arch == "x86_64": + if version < (10, 4): + return [] + formats.extend(["intel", "fat64", "fat32"]) + + elif cpu_arch == "i386": + if version < (10, 4): + return [] + formats.extend(["intel", "fat32", "fat"]) + + elif cpu_arch == "ppc64": + # TODO: Need to care about 32-bit PPC for ppc64 through 10.2? + if version > (10, 5) or version < (10, 4): + return [] + formats.append("fat64") + + elif cpu_arch == "ppc": + if version > (10, 6): + return [] + formats.extend(["fat32", "fat"]) + + if cpu_arch in {"arm64", "x86_64"}: + formats.append("universal2") + + if cpu_arch in {"x86_64", "i386", "ppc64", "ppc", "intel"}: + formats.append("universal") + + return formats + + +def mac_platforms( + version: Optional[MacVersion] = None, arch: Optional[str] = None +) -> Iterator[str]: + """ + Yields the platform tags for a macOS system. + + The `version` parameter is a two-item tuple specifying the macOS version to + generate platform tags for. The `arch` parameter is the CPU architecture to + generate platform tags for. Both parameters default to the appropriate value + for the current system. + """ + version_str, _, cpu_arch = platform.mac_ver() + if version is None: + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + if version == (10, 16): + # When built against an older macOS SDK, Python will report macOS 10.16 + # instead of the real version. + version_str = subprocess.run( + [ + sys.executable, + "-sS", + "-c", + "import platform; print(platform.mac_ver()[0])", + ], + check=True, + env={"SYSTEM_VERSION_COMPAT": "0"}, + stdout=subprocess.PIPE, + text=True, + ).stdout + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + else: + version = version + if arch is None: + arch = _mac_arch(cpu_arch) + else: + arch = arch + + if (10, 0) <= version and version < (11, 0): + # Prior to Mac OS 11, each yearly release of Mac OS bumped the + # "minor" version number. The major version was always 10. + for minor_version in range(version[1], -1, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=10, minor=minor_version, binary_format=binary_format + ) + + if version >= (11, 0): + # Starting with Mac OS 11, each yearly release bumps the major version + # number. The minor versions are now the midyear updates. + for major_version in range(version[0], 10, -1): + compat_version = major_version, 0 + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=major_version, minor=0, binary_format=binary_format + ) + + if version >= (11, 0): + # Mac OS 11 on x86_64 is compatible with binaries from previous releases. + # Arm64 support was introduced in 11.0, so no Arm binaries from previous + # releases exist. + # + # However, the "universal2" binary format can have a + # macOS version earlier than 11.0 when the x86_64 part of the binary supports + # that version of macOS. + if arch == "x86_64": + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + else: + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_format = "universal2" + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + + +def _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: + linux = _normalize_string(sysconfig.get_platform()) + if not linux.startswith("linux_"): + # we should never be here, just yield the sysconfig one and return + yield linux + return + if is_32bit: + if linux == "linux_x86_64": + linux = "linux_i686" + elif linux == "linux_aarch64": + linux = "linux_armv8l" + _, arch = linux.split("_", 1) + archs = {"armv8l": ["armv8l", "armv7l"]}.get(arch, [arch]) + yield from _manylinux.platform_tags(archs) + yield from _musllinux.platform_tags(archs) + for arch in archs: + yield f"linux_{arch}" + + +def _generic_platforms() -> Iterator[str]: + yield _normalize_string(sysconfig.get_platform()) + + +def platform_tags() -> Iterator[str]: + """ + Provides the platform tags for this installation. + """ + if platform.system() == "Darwin": + return mac_platforms() + elif platform.system() == "Linux": + return _linux_platforms() + else: + return _generic_platforms() + + +def interpreter_name() -> str: + """ + Returns the name of the running interpreter. + + Some implementations have a reserved, two-letter abbreviation which will + be returned when appropriate. + """ + name = sys.implementation.name + return INTERPRETER_SHORT_NAMES.get(name) or name + + +def interpreter_version(*, warn: bool = False) -> str: + """ + Returns the version of the running interpreter. + """ + version = _get_config_var("py_version_nodot", warn=warn) + if version: + version = str(version) + else: + version = _version_nodot(sys.version_info[:2]) + return version + + +def _version_nodot(version: PythonVersion) -> str: + return "".join(map(str, version)) + + +def sys_tags(*, warn: bool = False) -> Iterator[Tag]: + """ + Returns the sequence of tag triples for the running interpreter. + + The order of the sequence corresponds to priority order for the + interpreter, from most to least important. + """ + + interp_name = interpreter_name() + if interp_name == "cp": + yield from cpython_tags(warn=warn) + else: + yield from generic_tags() + + if interp_name == "pp": + interp = "pp3" + elif interp_name == "cp": + interp = "cp" + interpreter_version(warn=warn) + else: + interp = None + yield from compatible_tags(interpreter=interp) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py new file mode 100644 index 00000000000000..c2c2f75aa80628 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py @@ -0,0 +1,172 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import re +from typing import FrozenSet, NewType, Tuple, Union, cast + +from .tags import Tag, parse_tag +from .version import InvalidVersion, Version + +BuildTag = Union[Tuple[()], Tuple[int, str]] +NormalizedName = NewType("NormalizedName", str) + + +class InvalidName(ValueError): + """ + An invalid distribution name; users should refer to the packaging user guide. + """ + + +class InvalidWheelFilename(ValueError): + """ + An invalid wheel filename was found, users should refer to PEP 427. + """ + + +class InvalidSdistFilename(ValueError): + """ + An invalid sdist filename was found, users should refer to the packaging user guide. + """ + + +# Core metadata spec for `Name` +_validate_regex = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE +) +_canonicalize_regex = re.compile(r"[-_.]+") +_normalized_regex = re.compile(r"^([a-z0-9]|[a-z0-9]([a-z0-9-](?!--))*[a-z0-9])$") +# PEP 427: The build number must start with a digit. +_build_tag_regex = re.compile(r"(\d+)(.*)") + + +def canonicalize_name(name: str, *, validate: bool = False) -> NormalizedName: + if validate and not _validate_regex.match(name): + raise InvalidName(f"name is invalid: {name!r}") + # This is taken from PEP 503. + value = _canonicalize_regex.sub("-", name).lower() + return cast(NormalizedName, value) + + +def is_normalized_name(name: str) -> bool: + return _normalized_regex.match(name) is not None + + +def canonicalize_version( + version: Union[Version, str], *, strip_trailing_zero: bool = True +) -> str: + """ + This is very similar to Version.__str__, but has one subtle difference + with the way it handles the release segment. + """ + if isinstance(version, str): + try: + parsed = Version(version) + except InvalidVersion: + # Legacy versions cannot be normalized + return version + else: + parsed = version + + parts = [] + + # Epoch + if parsed.epoch != 0: + parts.append(f"{parsed.epoch}!") + + # Release segment + release_segment = ".".join(str(x) for x in parsed.release) + if strip_trailing_zero: + # NB: This strips trailing '.0's to normalize + release_segment = re.sub(r"(\.0)+$", "", release_segment) + parts.append(release_segment) + + # Pre-release + if parsed.pre is not None: + parts.append("".join(str(x) for x in parsed.pre)) + + # Post-release + if parsed.post is not None: + parts.append(f".post{parsed.post}") + + # Development release + if parsed.dev is not None: + parts.append(f".dev{parsed.dev}") + + # Local version segment + if parsed.local is not None: + parts.append(f"+{parsed.local}") + + return "".join(parts) + + +def parse_wheel_filename( + filename: str, +) -> Tuple[NormalizedName, Version, BuildTag, FrozenSet[Tag]]: + if not filename.endswith(".whl"): + raise InvalidWheelFilename( + f"Invalid wheel filename (extension must be '.whl'): {filename}" + ) + + filename = filename[:-4] + dashes = filename.count("-") + if dashes not in (4, 5): + raise InvalidWheelFilename( + f"Invalid wheel filename (wrong number of parts): {filename}" + ) + + parts = filename.split("-", dashes - 2) + name_part = parts[0] + # See PEP 427 for the rules on escaping the project name. + if "__" in name_part or re.match(r"^[\w\d._]*$", name_part, re.UNICODE) is None: + raise InvalidWheelFilename(f"Invalid project name: {filename}") + name = canonicalize_name(name_part) + + try: + version = Version(parts[1]) + except InvalidVersion as e: + raise InvalidWheelFilename( + f"Invalid wheel filename (invalid version): {filename}" + ) from e + + if dashes == 5: + build_part = parts[2] + build_match = _build_tag_regex.match(build_part) + if build_match is None: + raise InvalidWheelFilename( + f"Invalid build number: {build_part} in '{filename}'" + ) + build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2))) + else: + build = () + tags = parse_tag(parts[-1]) + return (name, version, build, tags) + + +def parse_sdist_filename(filename: str) -> Tuple[NormalizedName, Version]: + if filename.endswith(".tar.gz"): + file_stem = filename[: -len(".tar.gz")] + elif filename.endswith(".zip"): + file_stem = filename[: -len(".zip")] + else: + raise InvalidSdistFilename( + f"Invalid sdist filename (extension must be '.tar.gz' or '.zip'):" + f" {filename}" + ) + + # We are requiring a PEP 440 version, which cannot contain dashes, + # so we split on the last dash. + name_part, sep, version_part = file_stem.rpartition("-") + if not sep: + raise InvalidSdistFilename(f"Invalid sdist filename: {filename}") + + name = canonicalize_name(name_part) + + try: + version = Version(version_part) + except InvalidVersion as e: + raise InvalidSdistFilename( + f"Invalid sdist filename (invalid version): {filename}" + ) from e + + return (name, version) diff --git a/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py new file mode 100644 index 00000000000000..5faab9bd0dcf28 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py @@ -0,0 +1,563 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from packaging.version import parse, Version +""" + +import itertools +import re +from typing import Any, Callable, NamedTuple, Optional, SupportsInt, Tuple, Union + +from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType + +__all__ = ["VERSION_PATTERN", "parse", "Version", "InvalidVersion"] + +LocalType = Tuple[Union[int, str], ...] + +CmpPrePostDevType = Union[InfinityType, NegativeInfinityType, Tuple[str, int]] +CmpLocalType = Union[ + NegativeInfinityType, + Tuple[Union[Tuple[int, str], Tuple[NegativeInfinityType, Union[int, str]]], ...], +] +CmpKey = Tuple[ + int, + Tuple[int, ...], + CmpPrePostDevType, + CmpPrePostDevType, + CmpPrePostDevType, + CmpLocalType, +] +VersionComparisonMethod = Callable[[CmpKey, CmpKey], bool] + + +class _Version(NamedTuple): + epoch: int + release: Tuple[int, ...] + dev: Optional[Tuple[str, int]] + pre: Optional[Tuple[str, int]] + post: Optional[Tuple[str, int]] + local: Optional[LocalType] + + +def parse(version: str) -> "Version": + """Parse the given version string. + + >>> parse('1.0.dev1') + + + :param version: The version string to parse. + :raises InvalidVersion: When the version string is not a valid version. + """ + return Version(version) + + +class InvalidVersion(ValueError): + """Raised when a version string is not a valid version. + + >>> Version("invalid") + Traceback (most recent call last): + ... + packaging.version.InvalidVersion: Invalid version: 'invalid' + """ + + +class _BaseVersion: + _key: Tuple[Any, ...] + + def __hash__(self) -> int: + return hash(self._key) + + # Please keep the duplicated `isinstance` check + # in the six comparisons hereunder + # unless you find a way to avoid adding overhead function calls. + def __lt__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key < other._key + + def __le__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key <= other._key + + def __eq__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key == other._key + + def __ge__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key >= other._key + + def __gt__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key > other._key + + def __ne__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key != other._key + + +# Deliberately not anchored to the start and end of the string, to make it +# easier for 3rd party code to reuse +_VERSION_PATTERN = r""" + v? + (?: + (?:(?P[0-9]+)!)? # epoch + (?P[0-9]+(?:\.[0-9]+)*) # release segment + (?P
                                                # pre-release
      +            [-_\.]?
      +            (?Palpha|a|beta|b|preview|pre|c|rc)
      +            [-_\.]?
      +            (?P[0-9]+)?
      +        )?
      +        (?P                                         # post release
      +            (?:-(?P[0-9]+))
      +            |
      +            (?:
      +                [-_\.]?
      +                (?Ppost|rev|r)
      +                [-_\.]?
      +                (?P[0-9]+)?
      +            )
      +        )?
      +        (?P                                          # dev release
      +            [-_\.]?
      +            (?Pdev)
      +            [-_\.]?
      +            (?P[0-9]+)?
      +        )?
      +    )
      +    (?:\+(?P[a-z0-9]+(?:[-_\.][a-z0-9]+)*))?       # local version
      +"""
      +
      +VERSION_PATTERN = _VERSION_PATTERN
      +"""
      +A string containing the regular expression used to match a valid version.
      +
      +The pattern is not anchored at either end, and is intended for embedding in larger
      +expressions (for example, matching a version number as part of a file name). The
      +regular expression should be compiled with the ``re.VERBOSE`` and ``re.IGNORECASE``
      +flags set.
      +
      +:meta hide-value:
      +"""
      +
      +
      +class Version(_BaseVersion):
      +    """This class abstracts handling of a project's versions.
      +
      +    A :class:`Version` instance is comparison aware and can be compared and
      +    sorted using the standard Python interfaces.
      +
      +    >>> v1 = Version("1.0a5")
      +    >>> v2 = Version("1.0")
      +    >>> v1
      +    
      +    >>> v2
      +    
      +    >>> v1 < v2
      +    True
      +    >>> v1 == v2
      +    False
      +    >>> v1 > v2
      +    False
      +    >>> v1 >= v2
      +    False
      +    >>> v1 <= v2
      +    True
      +    """
      +
      +    _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE)
      +    _key: CmpKey
      +
      +    def __init__(self, version: str) -> None:
      +        """Initialize a Version object.
      +
      +        :param version:
      +            The string representation of a version which will be parsed and normalized
      +            before use.
      +        :raises InvalidVersion:
      +            If the ``version`` does not conform to PEP 440 in any way then this
      +            exception will be raised.
      +        """
      +
      +        # Validate the version and parse it into pieces
      +        match = self._regex.search(version)
      +        if not match:
      +            raise InvalidVersion(f"Invalid version: '{version}'")
      +
      +        # Store the parsed out pieces of the version
      +        self._version = _Version(
      +            epoch=int(match.group("epoch")) if match.group("epoch") else 0,
      +            release=tuple(int(i) for i in match.group("release").split(".")),
      +            pre=_parse_letter_version(match.group("pre_l"), match.group("pre_n")),
      +            post=_parse_letter_version(
      +                match.group("post_l"), match.group("post_n1") or match.group("post_n2")
      +            ),
      +            dev=_parse_letter_version(match.group("dev_l"), match.group("dev_n")),
      +            local=_parse_local_version(match.group("local")),
      +        )
      +
      +        # Generate a key which will be used for sorting
      +        self._key = _cmpkey(
      +            self._version.epoch,
      +            self._version.release,
      +            self._version.pre,
      +            self._version.post,
      +            self._version.dev,
      +            self._version.local,
      +        )
      +
      +    def __repr__(self) -> str:
      +        """A representation of the Version that shows all internal state.
      +
      +        >>> Version('1.0.0')
      +        
      +        """
      +        return f""
      +
      +    def __str__(self) -> str:
      +        """A string representation of the version that can be rounded-tripped.
      +
      +        >>> str(Version("1.0a5"))
      +        '1.0a5'
      +        """
      +        parts = []
      +
      +        # Epoch
      +        if self.epoch != 0:
      +            parts.append(f"{self.epoch}!")
      +
      +        # Release segment
      +        parts.append(".".join(str(x) for x in self.release))
      +
      +        # Pre-release
      +        if self.pre is not None:
      +            parts.append("".join(str(x) for x in self.pre))
      +
      +        # Post-release
      +        if self.post is not None:
      +            parts.append(f".post{self.post}")
      +
      +        # Development release
      +        if self.dev is not None:
      +            parts.append(f".dev{self.dev}")
      +
      +        # Local version segment
      +        if self.local is not None:
      +            parts.append(f"+{self.local}")
      +
      +        return "".join(parts)
      +
      +    @property
      +    def epoch(self) -> int:
      +        """The epoch of the version.
      +
      +        >>> Version("2.0.0").epoch
      +        0
      +        >>> Version("1!2.0.0").epoch
      +        1
      +        """
      +        return self._version.epoch
      +
      +    @property
      +    def release(self) -> Tuple[int, ...]:
      +        """The components of the "release" segment of the version.
      +
      +        >>> Version("1.2.3").release
      +        (1, 2, 3)
      +        >>> Version("2.0.0").release
      +        (2, 0, 0)
      +        >>> Version("1!2.0.0.post0").release
      +        (2, 0, 0)
      +
      +        Includes trailing zeroes but not the epoch or any pre-release / development /
      +        post-release suffixes.
      +        """
      +        return self._version.release
      +
      +    @property
      +    def pre(self) -> Optional[Tuple[str, int]]:
      +        """The pre-release segment of the version.
      +
      +        >>> print(Version("1.2.3").pre)
      +        None
      +        >>> Version("1.2.3a1").pre
      +        ('a', 1)
      +        >>> Version("1.2.3b1").pre
      +        ('b', 1)
      +        >>> Version("1.2.3rc1").pre
      +        ('rc', 1)
      +        """
      +        return self._version.pre
      +
      +    @property
      +    def post(self) -> Optional[int]:
      +        """The post-release number of the version.
      +
      +        >>> print(Version("1.2.3").post)
      +        None
      +        >>> Version("1.2.3.post1").post
      +        1
      +        """
      +        return self._version.post[1] if self._version.post else None
      +
      +    @property
      +    def dev(self) -> Optional[int]:
      +        """The development number of the version.
      +
      +        >>> print(Version("1.2.3").dev)
      +        None
      +        >>> Version("1.2.3.dev1").dev
      +        1
      +        """
      +        return self._version.dev[1] if self._version.dev else None
      +
      +    @property
      +    def local(self) -> Optional[str]:
      +        """The local version segment of the version.
      +
      +        >>> print(Version("1.2.3").local)
      +        None
      +        >>> Version("1.2.3+abc").local
      +        'abc'
      +        """
      +        if self._version.local:
      +            return ".".join(str(x) for x in self._version.local)
      +        else:
      +            return None
      +
      +    @property
      +    def public(self) -> str:
      +        """The public portion of the version.
      +
      +        >>> Version("1.2.3").public
      +        '1.2.3'
      +        >>> Version("1.2.3+abc").public
      +        '1.2.3'
      +        >>> Version("1.2.3+abc.dev1").public
      +        '1.2.3'
      +        """
      +        return str(self).split("+", 1)[0]
      +
      +    @property
      +    def base_version(self) -> str:
      +        """The "base version" of the version.
      +
      +        >>> Version("1.2.3").base_version
      +        '1.2.3'
      +        >>> Version("1.2.3+abc").base_version
      +        '1.2.3'
      +        >>> Version("1!1.2.3+abc.dev1").base_version
      +        '1!1.2.3'
      +
      +        The "base version" is the public version of the project without any pre or post
      +        release markers.
      +        """
      +        parts = []
      +
      +        # Epoch
      +        if self.epoch != 0:
      +            parts.append(f"{self.epoch}!")
      +
      +        # Release segment
      +        parts.append(".".join(str(x) for x in self.release))
      +
      +        return "".join(parts)
      +
      +    @property
      +    def is_prerelease(self) -> bool:
      +        """Whether this version is a pre-release.
      +
      +        >>> Version("1.2.3").is_prerelease
      +        False
      +        >>> Version("1.2.3a1").is_prerelease
      +        True
      +        >>> Version("1.2.3b1").is_prerelease
      +        True
      +        >>> Version("1.2.3rc1").is_prerelease
      +        True
      +        >>> Version("1.2.3dev1").is_prerelease
      +        True
      +        """
      +        return self.dev is not None or self.pre is not None
      +
      +    @property
      +    def is_postrelease(self) -> bool:
      +        """Whether this version is a post-release.
      +
      +        >>> Version("1.2.3").is_postrelease
      +        False
      +        >>> Version("1.2.3.post1").is_postrelease
      +        True
      +        """
      +        return self.post is not None
      +
      +    @property
      +    def is_devrelease(self) -> bool:
      +        """Whether this version is a development release.
      +
      +        >>> Version("1.2.3").is_devrelease
      +        False
      +        >>> Version("1.2.3.dev1").is_devrelease
      +        True
      +        """
      +        return self.dev is not None
      +
      +    @property
      +    def major(self) -> int:
      +        """The first item of :attr:`release` or ``0`` if unavailable.
      +
      +        >>> Version("1.2.3").major
      +        1
      +        """
      +        return self.release[0] if len(self.release) >= 1 else 0
      +
      +    @property
      +    def minor(self) -> int:
      +        """The second item of :attr:`release` or ``0`` if unavailable.
      +
      +        >>> Version("1.2.3").minor
      +        2
      +        >>> Version("1").minor
      +        0
      +        """
      +        return self.release[1] if len(self.release) >= 2 else 0
      +
      +    @property
      +    def micro(self) -> int:
      +        """The third item of :attr:`release` or ``0`` if unavailable.
      +
      +        >>> Version("1.2.3").micro
      +        3
      +        >>> Version("1").micro
      +        0
      +        """
      +        return self.release[2] if len(self.release) >= 3 else 0
      +
      +
      +def _parse_letter_version(
      +    letter: Optional[str], number: Union[str, bytes, SupportsInt, None]
      +) -> Optional[Tuple[str, int]]:
      +
      +    if letter:
      +        # We consider there to be an implicit 0 in a pre-release if there is
      +        # not a numeral associated with it.
      +        if number is None:
      +            number = 0
      +
      +        # We normalize any letters to their lower case form
      +        letter = letter.lower()
      +
      +        # We consider some words to be alternate spellings of other words and
      +        # in those cases we want to normalize the spellings to our preferred
      +        # spelling.
      +        if letter == "alpha":
      +            letter = "a"
      +        elif letter == "beta":
      +            letter = "b"
      +        elif letter in ["c", "pre", "preview"]:
      +            letter = "rc"
      +        elif letter in ["rev", "r"]:
      +            letter = "post"
      +
      +        return letter, int(number)
      +    if not letter and number:
      +        # We assume if we are given a number, but we are not given a letter
      +        # then this is using the implicit post release syntax (e.g. 1.0-1)
      +        letter = "post"
      +
      +        return letter, int(number)
      +
      +    return None
      +
      +
      +_local_version_separators = re.compile(r"[\._-]")
      +
      +
      +def _parse_local_version(local: Optional[str]) -> Optional[LocalType]:
      +    """
      +    Takes a string like abc.1.twelve and turns it into ("abc", 1, "twelve").
      +    """
      +    if local is not None:
      +        return tuple(
      +            part.lower() if not part.isdigit() else int(part)
      +            for part in _local_version_separators.split(local)
      +        )
      +    return None
      +
      +
      +def _cmpkey(
      +    epoch: int,
      +    release: Tuple[int, ...],
      +    pre: Optional[Tuple[str, int]],
      +    post: Optional[Tuple[str, int]],
      +    dev: Optional[Tuple[str, int]],
      +    local: Optional[LocalType],
      +) -> CmpKey:
      +
      +    # When we compare a release version, we want to compare it with all of the
      +    # trailing zeros removed. So we'll use a reverse the list, drop all the now
      +    # leading zeros until we come to something non zero, then take the rest
      +    # re-reverse it back into the correct order and make it a tuple and use
      +    # that for our sorting key.
      +    _release = tuple(
      +        reversed(list(itertools.dropwhile(lambda x: x == 0, reversed(release))))
      +    )
      +
      +    # We need to "trick" the sorting algorithm to put 1.0.dev0 before 1.0a0.
      +    # We'll do this by abusing the pre segment, but we _only_ want to do this
      +    # if there is not a pre or a post segment. If we have one of those then
      +    # the normal sorting rules will handle this case correctly.
      +    if pre is None and post is None and dev is not None:
      +        _pre: CmpPrePostDevType = NegativeInfinity
      +    # Versions without a pre-release (except as noted above) should sort after
      +    # those with one.
      +    elif pre is None:
      +        _pre = Infinity
      +    else:
      +        _pre = pre
      +
      +    # Versions without a post segment should sort before those with one.
      +    if post is None:
      +        _post: CmpPrePostDevType = NegativeInfinity
      +
      +    else:
      +        _post = post
      +
      +    # Versions without a development segment should sort after those with one.
      +    if dev is None:
      +        _dev: CmpPrePostDevType = Infinity
      +
      +    else:
      +        _dev = dev
      +
      +    if local is None:
      +        # Versions without a local segment should sort before those with one.
      +        _local: CmpLocalType = NegativeInfinity
      +    else:
      +        # Versions with a local segment need that segment parsed to implement
      +        # the sorting rules in PEP440.
      +        # - Alpha numeric segments sort before numeric segments
      +        # - Alpha numeric segments sort lexicographically
      +        # - Numeric segments sort numerically
      +        # - Shorter versions sort before longer versions when the prefixes
      +        #   match exactly
      +        _local = tuple(
      +            (i, "") if isinstance(i, int) else (NegativeInfinity, i) for i in local
      +        )
      +
      +    return epoch, _release, _pre, _post, _dev, _local
      diff --git a/deps/npm/node_modules/node-gyp/gyp/pyproject.toml b/deps/npm/node_modules/node-gyp/gyp/pyproject.toml
      index d8a5451520cc3c..0c25d0b3c1a065 100644
      --- a/deps/npm/node_modules/node-gyp/gyp/pyproject.toml
      +++ b/deps/npm/node_modules/node-gyp/gyp/pyproject.toml
      @@ -4,14 +4,16 @@ build-backend = "setuptools.build_meta"
       
       [project]
       name = "gyp-next"
      -version = "0.14.0"
      +version = "0.16.1"
       authors = [
         { name="Node.js contributors", email="ryzokuken@disroot.org" },
       ]
       description = "A fork of the GYP build system for use in the Node.js projects"
       readme = "README.md"
       license = { file="LICENSE" }
      -requires-python = ">=3.6"
      +requires-python = ">=3.8"
      +# The Python module "packaging" is vendored in the "pylib/packaging" directory to support Python >= 3.12.
      +# dependencies = ["packaging>=23.1"]  # Uncomment this line if the vendored version is removed.
       classifiers = [
           "Development Status :: 3 - Alpha",
           "Environment :: Console",
      @@ -20,15 +22,14 @@ classifiers = [
           "Natural Language :: English",
           "Programming Language :: Python",
           "Programming Language :: Python :: 3",
      -    "Programming Language :: Python :: 3.6",
      -    "Programming Language :: Python :: 3.7",
           "Programming Language :: Python :: 3.8",
           "Programming Language :: Python :: 3.9",
           "Programming Language :: Python :: 3.10",
      +    "Programming Language :: Python :: 3.11",
       ]
       
       [project.optional-dependencies]
      -dev = ["flake8", "pytest"]
      +dev = ["flake8", "ruff", "pytest"]
       
       [project.scripts]
       gyp = "gyp:script_main"
      @@ -36,6 +37,83 @@ gyp = "gyp:script_main"
       [project.urls]
       "Homepage" = "https://github.com/nodejs/gyp-next"
       
      +[tool.ruff]
      +select = [
      +  "C4",   # flake8-comprehensions
      +  "C90",  # McCabe cyclomatic complexity
      +  "DTZ",  # flake8-datetimez
      +  "E",    # pycodestyle
      +  "F",    # Pyflakes
      +  "G",    # flake8-logging-format
      +  "ICN",  # flake8-import-conventions
      +  "INT",  # flake8-gettext
      +  "PL",   # Pylint
      +  "PYI",  # flake8-pyi
      +  "RSE",  # flake8-raise
      +  "RUF",  # Ruff-specific rules
      +  "T10",  # flake8-debugger
      +  "TCH",  # flake8-type-checking
      +  "TID",  # flake8-tidy-imports
      +  "UP",   # pyupgrade
      +  "W",    # pycodestyle
      +  "YTT",  # flake8-2020
      +  # "A",    # flake8-builtins
      +  # "ANN",  # flake8-annotations
      +  # "ARG",  # flake8-unused-arguments
      +  # "B",    # flake8-bugbear
      +  # "BLE",  # flake8-blind-except
      +  # "COM",  # flake8-commas
      +  # "D",    # pydocstyle
      +  # "DJ",   # flake8-django
      +  # "EM",   # flake8-errmsg
      +  # "ERA",  # eradicate
      +  # "EXE",  # flake8-executable
      +  # "FBT",  # flake8-boolean-trap
      +  # "I",    # isort
      +  # "INP",  # flake8-no-pep420
      +  # "ISC",  # flake8-implicit-str-concat
      +  # "N",    # pep8-naming
      +  # "NPY",  # NumPy-specific rules
      +  # "PD",   # pandas-vet
      +  # "PGH",  # pygrep-hooks
      +  # "PIE",  # flake8-pie
      +  # "PT",   # flake8-pytest-style
      +  # "PTH",  # flake8-use-pathlib
      +  # "Q",    # flake8-quotes
      +  # "RET",  # flake8-return
      +  # "S",    # flake8-bandit
      +  # "SIM",  # flake8-simplify
      +  # "SLF",  # flake8-self
      +  # "T20",  # flake8-print
      +  # "TRY",  # tryceratops
      +]
      +ignore = [
      +  "E721",
      +  "PLC1901",
      +  "PLR0402",
      +  "PLR1714",
      +  "PLR2004",
      +  "PLR5501",
      +  "PLW0603",
      +  "PLW2901",
      +  "PYI024",
      +  "RUF005",
      +  "RUF012",
      +  "UP031",
      +]
      +extend-exclude = ["pylib/packaging"]
      +line-length = 88
      +target-version = "py37"
      +
      +[tool.ruff.mccabe]
      +max-complexity = 101
      +
      +[tool.ruff.pylint]
      +max-args = 11
      +max-branches = 108
      +max-returns = 10
      +max-statements = 286
      +
       [tool.setuptools]
       package-dir = {"" = "pylib"}
       packages = ["gyp", "gyp.generator"]
      diff --git a/deps/npm/node_modules/node-gyp/gyp/tools/README b/deps/npm/node_modules/node-gyp/gyp/tools/README
      deleted file mode 100644
      index 84a73d15214b68..00000000000000
      --- a/deps/npm/node_modules/node-gyp/gyp/tools/README
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -pretty_vcproj:
      -  Usage: pretty_vcproj.py "c:\path\to\vcproj.vcproj" [key1=value1] [key2=value2]
      -
      -  They key/value pair are used to resolve vsprops name.
      -
      -  For example, if I want to diff the base.vcproj project:
      -
      -  pretty_vcproj.py z:\dev\src-chrome\src\base\build\base.vcproj "$(SolutionDir)=z:\dev\src-chrome\src\chrome\\" "$(CHROMIUM_BUILD)=" "$(CHROME_BUILD_TYPE)=" > original.txt
      -  pretty_vcproj.py z:\dev\src-chrome\src\base\base_gyp.vcproj "$(SolutionDir)=z:\dev\src-chrome\src\chrome\\" "$(CHROMIUM_BUILD)=" "$(CHROME_BUILD_TYPE)=" > gyp.txt
      -
      -  And you can use your favorite diff tool to see the changes.
      -
      -  Note: In the case of base.vcproj, the original vcproj is one level up the generated one.
      -        I suggest you do a search and replace for '"..\' and replace it with '"' in original.txt
      -        before you perform the diff.
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/README b/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/README
      deleted file mode 100644
      index 2492a2c2f8f170..00000000000000
      --- a/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/README
      +++ /dev/null
      @@ -1,5 +0,0 @@
      -Specifications contains syntax formatters for Xcode 3. These do not appear to be supported yet on Xcode 4. To use these with Xcode 3 please install both the gyp.pbfilespec and gyp.xclangspec files in
      -
      -~/Library/Application Support/Developer/Shared/Xcode/Specifications/
      -
      -and restart Xcode.
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.pbfilespec b/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.pbfilespec
      deleted file mode 100644
      index 85e2e268a51b76..00000000000000
      --- a/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.pbfilespec
      +++ /dev/null
      @@ -1,27 +0,0 @@
      -/*
      -	gyp.pbfilespec
      -	GYP source file spec for Xcode 3
      -
      -	There is not much documentation available regarding the format
      -	of .pbfilespec files. As a starting point, see for instance the
      -	outdated documentation at:
      -	http://maxao.free.fr/xcode-plugin-interface/specifications.html
      -	and the files in:
      -	/Developer/Library/PrivateFrameworks/XcodeEdit.framework/Versions/A/Resources/
      -
      -	Place this file in directory:
      -	~/Library/Application Support/Developer/Shared/Xcode/Specifications/
      -*/
      -
      -(
      -	{
      -		Identifier = sourcecode.gyp;
      -		BasedOn = sourcecode;
      -		Name = "GYP Files";
      -		Extensions = ("gyp", "gypi");
      -		MIMETypes = ("text/gyp");
      -		Language = "xcode.lang.gyp";
      -		IsTextFile = YES;
      -		IsSourceFile = YES;
      -	}
      -)
      diff --git a/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.xclangspec b/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.xclangspec
      deleted file mode 100644
      index 3b3506d319e0f2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.xclangspec
      +++ /dev/null
      @@ -1,226 +0,0 @@
      -/*
      -	Copyright (c) 2011 Google Inc. All rights reserved.
      -	Use of this source code is governed by a BSD-style license that can be
      -	found in the LICENSE file.
      -	
      -	gyp.xclangspec
      -	GYP language specification for Xcode 3
      -
      -	There is not much documentation available regarding the format
      -	of .xclangspec files. As a starting point, see for instance the
      -	outdated documentation at:
      -	http://maxao.free.fr/xcode-plugin-interface/specifications.html
      -	and the files in:
      -	/Developer/Library/PrivateFrameworks/XcodeEdit.framework/Versions/A/Resources/
      -
      -	Place this file in directory:
      -	~/Library/Application Support/Developer/Shared/Xcode/Specifications/
      -*/
      -
      -(
      -
      -    {
      -        Identifier = "xcode.lang.gyp.keyword";
      -        Syntax = {
      -            Words = (
      -                "and",
      -                "or",
      -                " (caar gyp-parse-history) target-point)
      -    (setq gyp-parse-history (cdr gyp-parse-history))))
      -
      -(defun gyp-parse-point ()
      -  "The point of the last parse state added by gyp-parse-to."
      -  (caar gyp-parse-history))
      -
      -(defun gyp-parse-sections ()
      -  "A list of section symbols holding at the last parse state point."
      -  (cdar gyp-parse-history))
      -
      -(defun gyp-inside-dictionary-p ()
      -  "Predicate returning true if the parser is inside a dictionary."
      -  (not (eq (cadar gyp-parse-history) 'list)))
      -
      -(defun gyp-add-parse-history (point sections)
      -  "Add parse state SECTIONS to the parse history at POINT so that parsing can be
      -   resumed instantly."
      -  (while (>= (caar gyp-parse-history) point)
      -    (setq gyp-parse-history (cdr gyp-parse-history)))
      -  (setq gyp-parse-history (cons (cons point sections) gyp-parse-history)))
      -
      -(defun gyp-parse-to (target-point)
      -  "Parses from (point) to TARGET-POINT adding the parse state information to
      -   gyp-parse-state-history. Parsing stops if TARGET-POINT is reached or if a
      -   string literal has been parsed. Returns nil if no further parsing can be
      -   done, otherwise returns the position of the start of a parsed string, leaving
      -   the point at the end of the string."
      -  (let ((parsing t)
      -        string-start)
      -    (while parsing
      -      (setq string-start nil)
      -      ;; Parse up to a character that starts a sexp, or if the nesting
      -      ;; level decreases.
      -      (let ((state (parse-partial-sexp (gyp-parse-point)
      -                                       target-point
      -                                       -1
      -                                       t))
      -            (sections (gyp-parse-sections)))
      -        (if (= (nth 0 state) -1)
      -            (setq sections (cdr sections)) ; pop out a level
      -          (cond ((looking-at-p "['\"]") ; a string
      -                 (setq string-start (point))
      -                 (goto-char (scan-sexps (point) 1))
      -                 (if (gyp-inside-dictionary-p)
      -                     ;; Look for sections inside a dictionary
      -                     (let ((section (gyp-section-name
      -                                     (buffer-substring-no-properties
      -                                      (+ 1 string-start)
      -                                      (- (point) 1)))))
      -                       (setq sections (cons section (cdr sections)))))
      -                 ;; Stop after the string so it can be fontified.
      -                 (setq target-point (point)))
      -                ((looking-at-p "{")
      -                 ;; Inside a dictionary. Increase nesting.
      -                 (forward-char 1)
      -                 (setq sections (cons 'unknown sections)))
      -                ((looking-at-p "\\[")
      -                 ;; Inside a list. Increase nesting
      -                 (forward-char 1)
      -                 (setq sections (cons 'list sections)))
      -                ((not (eobp))
      -                 ;; other
      -                 (forward-char 1))))
      -        (gyp-add-parse-history (point) sections)
      -        (setq parsing (< (point) target-point))))
      -    string-start))
      -
      -(defun gyp-section-at-point ()
      -  "Transform the last parse state, which is a list of nested sections and return
      -   the section symbol that should be used to determine font-lock information for
      -   the string. Can return nil indicating the string should not have any attached
      -   section."
      -  (let ((sections (gyp-parse-sections)))
      -    (cond
      -     ((eq (car sections) 'conditions)
      -      ;; conditions can occur in a variables section, but we still want to
      -      ;; highlight it as a keyword.
      -      nil)
      -     ((and (eq (car sections) 'list)
      -           (eq (cadr sections) 'list))
      -      ;; conditions and sources can have items in [[ ]]
      -      (caddr sections))
      -     (t (cadr sections)))))
      -
      -(defun gyp-section-match (limit)
      -  "Parse from (point) to LIMIT returning by means of match data what was
      -   matched. The group of the match indicates what style font-lock should apply.
      -   See also `gyp-add-font-lock-keywords'."
      -  (gyp-invalidate-parse-states-after (point))
      -  (let ((group nil)
      -        (string-start t))
      -    (while (and (< (point) limit)
      -                (not group)
      -                string-start)
      -      (setq string-start (gyp-parse-to limit))
      -      (if string-start
      -          (setq group (cl-case (gyp-section-at-point)
      -                        ('dependencies 1)
      -                        ('variables 2)
      -                        ('conditions 2)
      -                        ('sources 3)
      -                        ('defines 4)
      -                        (nil nil)))))
      -    (if group
      -        (progn
      -          ;; Set the match data to indicate to the font-lock mechanism the
      -          ;; highlighting to be performed.
      -          (set-match-data (append (list string-start (point))
      -                                  (make-list (* (1- group) 2) nil)
      -                                  (list (1+ string-start) (1- (point)))))
      -          t))))
      -
      -;;; Please see http://code.google.com/p/gyp/wiki/GypLanguageSpecification for
      -;;; canonical list of keywords.
      -(defun gyp-add-font-lock-keywords ()
      -  "Add gyp-mode keywords to font-lock mechanism."
      -  ;; TODO(jknotten): Move all the keyword highlighting into gyp-section-match
      -  ;; so that we can do the font-locking in a single font-lock pass.
      -  (font-lock-add-keywords
      -   nil
      -   (list
      -    ;; Top-level keywords
      -    (list (concat "['\"]\\("
      -              (regexp-opt (list "action" "action_name" "actions" "cflags"
      -                                "cflags_cc" "conditions" "configurations"
      -                                "copies" "defines" "dependencies" "destination"
      -                                "direct_dependent_settings"
      -                                "export_dependent_settings" "extension" "files"
      -                                "include_dirs" "includes" "inputs" "ldflags" "libraries"
      -                                "link_settings" "mac_bundle" "message"
      -                                "msvs_external_rule" "outputs" "product_name"
      -                                "process_outputs_as_sources" "rules" "rule_name"
      -                                "sources" "suppress_wildcard"
      -                                "target_conditions" "target_defaults"
      -                                "target_defines" "target_name" "toolsets"
      -                                "targets" "type" "variables" "xcode_settings"))
      -              "[!/+=]?\\)") 1 'font-lock-keyword-face t)
      -    ;; Type of target
      -    (list (concat "['\"]\\("
      -              (regexp-opt (list "loadable_module" "static_library"
      -                                "shared_library" "executable" "none"))
      -              "\\)") 1 'font-lock-type-face t)
      -    (list "\\(?:target\\|action\\)_name['\"]\\s-*:\\s-*['\"]\\([^ '\"]*\\)" 1
      -          'font-lock-function-name-face t)
      -    (list 'gyp-section-match
      -          (list 1 'font-lock-function-name-face t t) ; dependencies
      -          (list 2 'font-lock-variable-name-face t t) ; variables, conditions
      -          (list 3 'font-lock-constant-face t t) ; sources
      -          (list 4 'font-lock-preprocessor-face t t)) ; preprocessor
      -    ;; Variable expansion
      -    (list "<@?(\\([^\n )]+\\))" 1 'font-lock-variable-name-face t)
      -    ;; Command expansion
      -    (list " "{dst}"')
      -
      -    print("}")
      -
      -
      -def main():
      -    if len(sys.argv) < 2:
      -        print(__doc__, file=sys.stderr)
      -        print(file=sys.stderr)
      -        print("usage: %s target1 target2..." % (sys.argv[0]), file=sys.stderr)
      -        return 1
      -
      -    edges = LoadEdges("dump.json", sys.argv[1:])
      -
      -    WriteGraph(edges)
      -    return 0
      -
      -
      -if __name__ == "__main__":
      -    sys.exit(main())
      diff --git a/deps/npm/node_modules/node-gyp/gyp/tools/pretty_gyp.py b/deps/npm/node_modules/node-gyp/gyp/tools/pretty_gyp.py
      deleted file mode 100755
      index 6eef3a1bbf02a5..00000000000000
      --- a/deps/npm/node_modules/node-gyp/gyp/tools/pretty_gyp.py
      +++ /dev/null
      @@ -1,156 +0,0 @@
      -#!/usr/bin/env python3
      -
      -# Copyright (c) 2012 Google Inc. All rights reserved.
      -# Use of this source code is governed by a BSD-style license that can be
      -# found in the LICENSE file.
      -
      -"""Pretty-prints the contents of a GYP file."""
      -
      -
      -import sys
      -import re
      -
      -
      -# Regex to remove comments when we're counting braces.
      -COMMENT_RE = re.compile(r"\s*#.*")
      -
      -# Regex to remove quoted strings when we're counting braces.
      -# It takes into account quoted quotes, and makes sure that the quotes match.
      -# NOTE: It does not handle quotes that span more than one line, or
      -# cases where an escaped quote is preceded by an escaped backslash.
      -QUOTE_RE_STR = r'(?P[\'"])(.*?)(? 0:
      -        after = True
      -
      -    # This catches the special case of a closing brace having something
      -    # other than just whitespace ahead of it -- we don't want to
      -    # unindent that until after this line is printed so it stays with
      -    # the previous indentation level.
      -    if cnt < 0 and closing_prefix_re.match(stripline):
      -        after = True
      -    return (cnt, after)
      -
      -
      -def prettyprint_input(lines):
      -    """Does the main work of indenting the input based on the brace counts."""
      -    indent = 0
      -    basic_offset = 2
      -    for line in lines:
      -        if COMMENT_RE.match(line):
      -            print(line)
      -        else:
      -            line = line.strip("\r\n\t ")  # Otherwise doesn't strip \r on Unix.
      -            if len(line) > 0:
      -                (brace_diff, after) = count_braces(line)
      -                if brace_diff != 0:
      -                    if after:
      -                        print(" " * (basic_offset * indent) + line)
      -                        indent += brace_diff
      -                    else:
      -                        indent += brace_diff
      -                        print(" " * (basic_offset * indent) + line)
      -                else:
      -                    print(" " * (basic_offset * indent) + line)
      -            else:
      -                print("")
      -
      -
      -def main():
      -    if len(sys.argv) > 1:
      -        data = open(sys.argv[1]).read().splitlines()
      -    else:
      -        data = sys.stdin.read().splitlines()
      -    # Split up the double braces.
      -    lines = split_double_braces(data)
      -
      -    # Indent and print the output.
      -    prettyprint_input(lines)
      -    return 0
      -
      -
      -if __name__ == "__main__":
      -    sys.exit(main())
      diff --git a/deps/npm/node_modules/node-gyp/gyp/tools/pretty_sln.py b/deps/npm/node_modules/node-gyp/gyp/tools/pretty_sln.py
      deleted file mode 100755
      index 6ca0cd12a7ba06..00000000000000
      --- a/deps/npm/node_modules/node-gyp/gyp/tools/pretty_sln.py
      +++ /dev/null
      @@ -1,181 +0,0 @@
      -#!/usr/bin/env python3
      -
      -# Copyright (c) 2012 Google Inc. All rights reserved.
      -# Use of this source code is governed by a BSD-style license that can be
      -# found in the LICENSE file.
      -
      -"""Prints the information in a sln file in a diffable way.
      -
      -   It first outputs each projects in alphabetical order with their
      -   dependencies.
      -
      -   Then it outputs a possible build order.
      -"""
      -
      -
      -import os
      -import re
      -import sys
      -import pretty_vcproj
      -
      -__author__ = "nsylvain (Nicolas Sylvain)"
      -
      -
      -def BuildProject(project, built, projects, deps):
      -    # if all dependencies are done, we can build it, otherwise we try to build the
      -    # dependency.
      -    # This is not infinite-recursion proof.
      -    for dep in deps[project]:
      -        if dep not in built:
      -            BuildProject(dep, built, projects, deps)
      -    print(project)
      -    built.append(project)
      -
      -
      -def ParseSolution(solution_file):
      -    # All projects, their clsid and paths.
      -    projects = dict()
      -
      -    # A list of dependencies associated with a project.
      -    dependencies = dict()
      -
      -    # Regular expressions that matches the SLN format.
      -    # The first line of a project definition.
      -    begin_project = re.compile(
      -        r'^Project\("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942'
      -        r'}"\) = "(.*)", "(.*)", "(.*)"$'
      -    )
      -    # The last line of a project definition.
      -    end_project = re.compile("^EndProject$")
      -    # The first line of a dependency list.
      -    begin_dep = re.compile(r"ProjectSection\(ProjectDependencies\) = postProject$")
      -    # The last line of a dependency list.
      -    end_dep = re.compile("EndProjectSection$")
      -    # A line describing a dependency.
      -    dep_line = re.compile(" *({.*}) = ({.*})$")
      -
      -    in_deps = False
      -    solution = open(solution_file)
      -    for line in solution:
      -        results = begin_project.search(line)
      -        if results:
      -            # Hack to remove icu because the diff is too different.
      -            if results.group(1).find("icu") != -1:
      -                continue
      -            # We remove "_gyp" from the names because it helps to diff them.
      -            current_project = results.group(1).replace("_gyp", "")
      -            projects[current_project] = [
      -                results.group(2).replace("_gyp", ""),
      -                results.group(3),
      -                results.group(2),
      -            ]
      -            dependencies[current_project] = []
      -            continue
      -
      -        results = end_project.search(line)
      -        if results:
      -            current_project = None
      -            continue
      -
      -        results = begin_dep.search(line)
      -        if results:
      -            in_deps = True
      -            continue
      -
      -        results = end_dep.search(line)
      -        if results:
      -            in_deps = False
      -            continue
      -
      -        results = dep_line.search(line)
      -        if results and in_deps and current_project:
      -            dependencies[current_project].append(results.group(1))
      -            continue
      -
      -    # Change all dependencies clsid to name instead.
      -    for project in dependencies:
      -        # For each dependencies in this project
      -        new_dep_array = []
      -        for dep in dependencies[project]:
      -            # Look for the project name matching this cldis
      -            for project_info in projects:
      -                if projects[project_info][1] == dep:
      -                    new_dep_array.append(project_info)
      -        dependencies[project] = sorted(new_dep_array)
      -
      -    return (projects, dependencies)
      -
      -
      -def PrintDependencies(projects, deps):
      -    print("---------------------------------------")
      -    print("Dependencies for all projects")
      -    print("---------------------------------------")
      -    print("--                                   --")
      -
      -    for (project, dep_list) in sorted(deps.items()):
      -        print("Project : %s" % project)
      -        print("Path : %s" % projects[project][0])
      -        if dep_list:
      -            for dep in dep_list:
      -                print("  - %s" % dep)
      -        print("")
      -
      -    print("--                                   --")
      -
      -
      -def PrintBuildOrder(projects, deps):
      -    print("---------------------------------------")
      -    print("Build order                            ")
      -    print("---------------------------------------")
      -    print("--                                   --")
      -
      -    built = []
      -    for (project, _) in sorted(deps.items()):
      -        if project not in built:
      -            BuildProject(project, built, projects, deps)
      -
      -    print("--                                   --")
      -
      -
      -def PrintVCProj(projects):
      -
      -    for project in projects:
      -        print("-------------------------------------")
      -        print("-------------------------------------")
      -        print(project)
      -        print(project)
      -        print(project)
      -        print("-------------------------------------")
      -        print("-------------------------------------")
      -
      -        project_path = os.path.abspath(
      -            os.path.join(os.path.dirname(sys.argv[1]), projects[project][2])
      -        )
      -
      -        pretty = pretty_vcproj
      -        argv = [
      -            "",
      -            project_path,
      -            "$(SolutionDir)=%s\\" % os.path.dirname(sys.argv[1]),
      -        ]
      -        argv.extend(sys.argv[3:])
      -        pretty.main(argv)
      -
      -
      -def main():
      -    # check if we have exactly 1 parameter.
      -    if len(sys.argv) < 2:
      -        print('Usage: %s "c:\\path\\to\\project.sln"' % sys.argv[0])
      -        return 1
      -
      -    (projects, deps) = ParseSolution(sys.argv[1])
      -    PrintDependencies(projects, deps)
      -    PrintBuildOrder(projects, deps)
      -
      -    if "--recursive" in sys.argv:
      -        PrintVCProj(projects)
      -    return 0
      -
      -
      -if __name__ == "__main__":
      -    sys.exit(main())
      diff --git a/deps/npm/node_modules/node-gyp/gyp/tools/pretty_vcproj.py b/deps/npm/node_modules/node-gyp/gyp/tools/pretty_vcproj.py
      deleted file mode 100755
      index 00d32debda51f0..00000000000000
      --- a/deps/npm/node_modules/node-gyp/gyp/tools/pretty_vcproj.py
      +++ /dev/null
      @@ -1,339 +0,0 @@
      -#!/usr/bin/env python3
      -
      -# Copyright (c) 2012 Google Inc. All rights reserved.
      -# Use of this source code is governed by a BSD-style license that can be
      -# found in the LICENSE file.
      -
      -"""Make the format of a vcproj really pretty.
      -
      -   This script normalize and sort an xml. It also fetches all the properties
      -   inside linked vsprops and include them explicitly in the vcproj.
      -
      -   It outputs the resulting xml to stdout.
      -"""
      -
      -
      -import os
      -import sys
      -
      -from xml.dom.minidom import parse
      -from xml.dom.minidom import Node
      -
      -__author__ = "nsylvain (Nicolas Sylvain)"
      -ARGUMENTS = None
      -REPLACEMENTS = dict()
      -
      -
      -def cmp(x, y):
      -    return (x > y) - (x < y)
      -
      -
      -class CmpTuple:
      -    """Compare function between 2 tuple."""
      -
      -    def __call__(self, x, y):
      -        return cmp(x[0], y[0])
      -
      -
      -class CmpNode:
      -    """Compare function between 2 xml nodes."""
      -
      -    def __call__(self, x, y):
      -        def get_string(node):
      -            node_string = "node"
      -            node_string += node.nodeName
      -            if node.nodeValue:
      -                node_string += node.nodeValue
      -
      -            if node.attributes:
      -                # We first sort by name, if present.
      -                node_string += node.getAttribute("Name")
      -
      -                all_nodes = []
      -                for (name, value) in node.attributes.items():
      -                    all_nodes.append((name, value))
      -
      -                all_nodes.sort(CmpTuple())
      -                for (name, value) in all_nodes:
      -                    node_string += name
      -                    node_string += value
      -
      -            return node_string
      -
      -        return cmp(get_string(x), get_string(y))
      -
      -
      -def PrettyPrintNode(node, indent=0):
      -    if node.nodeType == Node.TEXT_NODE:
      -        if node.data.strip():
      -            print("{}{}".format(" " * indent, node.data.strip()))
      -        return
      -
      -    if node.childNodes:
      -        node.normalize()
      -    # Get the number of attributes
      -    attr_count = 0
      -    if node.attributes:
      -        attr_count = node.attributes.length
      -
      -    # Print the main tag
      -    if attr_count == 0:
      -        print("{}<{}>".format(" " * indent, node.nodeName))
      -    else:
      -        print("{}<{}".format(" " * indent, node.nodeName))
      -
      -        all_attributes = []
      -        for (name, value) in node.attributes.items():
      -            all_attributes.append((name, value))
      -            all_attributes.sort(CmpTuple())
      -        for (name, value) in all_attributes:
      -            print('{}  {}="{}"'.format(" " * indent, name, value))
      -        print("%s>" % (" " * indent))
      -    if node.nodeValue:
      -        print("{}  {}".format(" " * indent, node.nodeValue))
      -
      -    for sub_node in node.childNodes:
      -        PrettyPrintNode(sub_node, indent=indent + 2)
      -    print("{}".format(" " * indent, node.nodeName))
      -
      -
      -def FlattenFilter(node):
      -    """Returns a list of all the node and sub nodes."""
      -    node_list = []
      -
      -    if node.attributes and node.getAttribute("Name") == "_excluded_files":
      -        # We don't add the "_excluded_files" filter.
      -        return []
      -
      -    for current in node.childNodes:
      -        if current.nodeName == "Filter":
      -            node_list.extend(FlattenFilter(current))
      -        else:
      -            node_list.append(current)
      -
      -    return node_list
      -
      -
      -def FixFilenames(filenames, current_directory):
      -    new_list = []
      -    for filename in filenames:
      -        if filename:
      -            for key in REPLACEMENTS:
      -                filename = filename.replace(key, REPLACEMENTS[key])
      -            os.chdir(current_directory)
      -            filename = filename.strip("\"' ")
      -            if filename.startswith("$"):
      -                new_list.append(filename)
      -            else:
      -                new_list.append(os.path.abspath(filename))
      -    return new_list
      -
      -
      -def AbsoluteNode(node):
      -    """Makes all the properties we know about in this node absolute."""
      -    if node.attributes:
      -        for (name, value) in node.attributes.items():
      -            if name in [
      -                "InheritedPropertySheets",
      -                "RelativePath",
      -                "AdditionalIncludeDirectories",
      -                "IntermediateDirectory",
      -                "OutputDirectory",
      -                "AdditionalLibraryDirectories",
      -            ]:
      -                # We want to fix up these paths
      -                path_list = value.split(";")
      -                new_list = FixFilenames(path_list, os.path.dirname(ARGUMENTS[1]))
      -                node.setAttribute(name, ";".join(new_list))
      -            if not value:
      -                node.removeAttribute(name)
      -
      -
      -def CleanupVcproj(node):
      -    """For each sub node, we call recursively this function."""
      -    for sub_node in node.childNodes:
      -        AbsoluteNode(sub_node)
      -        CleanupVcproj(sub_node)
      -
      -    # Normalize the node, and remove all extraneous whitespaces.
      -    for sub_node in node.childNodes:
      -        if sub_node.nodeType == Node.TEXT_NODE:
      -            sub_node.data = sub_node.data.replace("\r", "")
      -            sub_node.data = sub_node.data.replace("\n", "")
      -            sub_node.data = sub_node.data.rstrip()
      -
      -    # Fix all the semicolon separated attributes to be sorted, and we also
      -    # remove the dups.
      -    if node.attributes:
      -        for (name, value) in node.attributes.items():
      -            sorted_list = sorted(value.split(";"))
      -            unique_list = []
      -            for i in sorted_list:
      -                if not unique_list.count(i):
      -                    unique_list.append(i)
      -            node.setAttribute(name, ";".join(unique_list))
      -            if not value:
      -                node.removeAttribute(name)
      -
      -    if node.childNodes:
      -        node.normalize()
      -
      -    # For each node, take a copy, and remove it from the list.
      -    node_array = []
      -    while node.childNodes and node.childNodes[0]:
      -        # Take a copy of the node and remove it from the list.
      -        current = node.childNodes[0]
      -        node.removeChild(current)
      -
      -        # If the child is a filter, we want to append all its children
      -        # to this same list.
      -        if current.nodeName == "Filter":
      -            node_array.extend(FlattenFilter(current))
      -        else:
      -            node_array.append(current)
      -
      -    # Sort the list.
      -    node_array.sort(CmpNode())
      -
      -    # Insert the nodes in the correct order.
      -    for new_node in node_array:
      -        # But don't append empty tool node.
      -        if new_node.nodeName == "Tool":
      -            if new_node.attributes and new_node.attributes.length == 1:
      -                # This one was empty.
      -                continue
      -        if new_node.nodeName == "UserMacro":
      -            continue
      -        node.appendChild(new_node)
      -
      -
      -def GetConfiguationNodes(vcproj):
      -    # TODO(nsylvain): Find a better way to navigate the xml.
      -    nodes = []
      -    for node in vcproj.childNodes:
      -        if node.nodeName == "Configurations":
      -            for sub_node in node.childNodes:
      -                if sub_node.nodeName == "Configuration":
      -                    nodes.append(sub_node)
      -
      -    return nodes
      -
      -
      -def GetChildrenVsprops(filename):
      -    dom = parse(filename)
      -    if dom.documentElement.attributes:
      -        vsprops = dom.documentElement.getAttribute("InheritedPropertySheets")
      -        return FixFilenames(vsprops.split(";"), os.path.dirname(filename))
      -    return []
      -
      -
      -def SeekToNode(node1, child2):
      -    # A text node does not have properties.
      -    if child2.nodeType == Node.TEXT_NODE:
      -        return None
      -
      -    # Get the name of the current node.
      -    current_name = child2.getAttribute("Name")
      -    if not current_name:
      -        # There is no name. We don't know how to merge.
      -        return None
      -
      -    # Look through all the nodes to find a match.
      -    for sub_node in node1.childNodes:
      -        if sub_node.nodeName == child2.nodeName:
      -            name = sub_node.getAttribute("Name")
      -            if name == current_name:
      -                return sub_node
      -
      -    # No match. We give up.
      -    return None
      -
      -
      -def MergeAttributes(node1, node2):
      -    # No attributes to merge?
      -    if not node2.attributes:
      -        return
      -
      -    for (name, value2) in node2.attributes.items():
      -        # Don't merge the 'Name' attribute.
      -        if name == "Name":
      -            continue
      -        value1 = node1.getAttribute(name)
      -        if value1:
      -            # The attribute exist in the main node. If it's equal, we leave it
      -            # untouched, otherwise we concatenate it.
      -            if value1 != value2:
      -                node1.setAttribute(name, ";".join([value1, value2]))
      -        else:
      -            # The attribute does not exist in the main node. We append this one.
      -            node1.setAttribute(name, value2)
      -
      -        # If the attribute was a property sheet attributes, we remove it, since
      -        # they are useless.
      -        if name == "InheritedPropertySheets":
      -            node1.removeAttribute(name)
      -
      -
      -def MergeProperties(node1, node2):
      -    MergeAttributes(node1, node2)
      -    for child2 in node2.childNodes:
      -        child1 = SeekToNode(node1, child2)
      -        if child1:
      -            MergeProperties(child1, child2)
      -        else:
      -            node1.appendChild(child2.cloneNode(True))
      -
      -
      -def main(argv):
      -    """Main function of this vcproj prettifier."""
      -    global ARGUMENTS
      -    ARGUMENTS = argv
      -
      -    # check if we have exactly 1 parameter.
      -    if len(argv) < 2:
      -        print(
      -            'Usage: %s "c:\\path\\to\\vcproj.vcproj" [key1=value1] '
      -            "[key2=value2]" % argv[0]
      -        )
      -        return 1
      -
      -    # Parse the keys
      -    for i in range(2, len(argv)):
      -        (key, value) = argv[i].split("=")
      -        REPLACEMENTS[key] = value
      -
      -    # Open the vcproj and parse the xml.
      -    dom = parse(argv[1])
      -
      -    # First thing we need to do is find the Configuration Node and merge them
      -    # with the vsprops they include.
      -    for configuration_node in GetConfiguationNodes(dom.documentElement):
      -        # Get the property sheets associated with this configuration.
      -        vsprops = configuration_node.getAttribute("InheritedPropertySheets")
      -
      -        # Fix the filenames to be absolute.
      -        vsprops_list = FixFilenames(
      -            vsprops.strip().split(";"), os.path.dirname(argv[1])
      -        )
      -
      -        # Extend the list of vsprops with all vsprops contained in the current
      -        # vsprops.
      -        for current_vsprops in vsprops_list:
      -            vsprops_list.extend(GetChildrenVsprops(current_vsprops))
      -
      -        # Now that we have all the vsprops, we need to merge them.
      -        for current_vsprops in vsprops_list:
      -            MergeProperties(configuration_node, parse(current_vsprops).documentElement)
      -
      -    # Now that everything is merged, we need to cleanup the xml.
      -    CleanupVcproj(dom.documentElement)
      -
      -    # Finally, we use the prett xml function to print the vcproj back to the
      -    # user.
      -    # print dom.toprettyxml(newl="\n")
      -    PrettyPrintNode(dom.documentElement)
      -    return 0
      -
      -
      -if __name__ == "__main__":
      -    sys.exit(main(sys.argv))
      diff --git a/deps/npm/node_modules/node-gyp/lib/build.js b/deps/npm/node_modules/node-gyp/lib/build.js
      index ea1f90652a05d8..6b8d84d3ede344 100644
      --- a/deps/npm/node_modules/node-gyp/lib/build.js
      +++ b/deps/npm/node_modules/node-gyp/lib/build.js
      @@ -1,14 +1,14 @@
       'use strict'
       
      -const fs = require('graceful-fs')
      +const fs = require('graceful-fs').promises
       const path = require('path')
      -const glob = require('glob')
      -const log = require('npmlog')
      +const { glob } = require('glob')
      +const log = require('./log')
       const which = require('which')
       const win = process.platform === 'win32'
       
      -function build (gyp, argv, callback) {
      -  var platformMake = 'make'
      +async function build (gyp, argv) {
      +  let platformMake = 'make'
         if (process.platform === 'aix') {
           platformMake = 'gmake'
         } else if (process.platform === 'os400') {
      @@ -21,113 +21,107 @@ function build (gyp, argv, callback) {
           })
         }
       
      -  var makeCommand = gyp.opts.make || process.env.MAKE || platformMake
      -  var command = win ? 'msbuild' : makeCommand
      -  var jobs = gyp.opts.jobs || process.env.JOBS
      -  var buildType
      -  var config
      -  var arch
      -  var nodeDir
      -  var guessedSolution
      +  const makeCommand = gyp.opts.make || process.env.MAKE || platformMake
      +  let command = win ? 'msbuild' : makeCommand
      +  const jobs = gyp.opts.jobs || process.env.JOBS
      +  let buildType
      +  let config
      +  let arch
      +  let nodeDir
      +  let guessedSolution
      +  let python
      +  let buildBinsDir
       
      -  loadConfigGypi()
      +  await loadConfigGypi()
       
         /**
          * Load the "config.gypi" file that was generated during "configure".
          */
       
      -  function loadConfigGypi () {
      -    var configPath = path.resolve('build', 'config.gypi')
      -
      -    fs.readFile(configPath, 'utf8', function (err, data) {
      -      if (err) {
      -        if (err.code === 'ENOENT') {
      -          callback(new Error('You must run `node-gyp configure` first!'))
      -        } else {
      -          callback(err)
      -        }
      -        return
      +  async function loadConfigGypi () {
      +    let data
      +    try {
      +      const configPath = path.resolve('build', 'config.gypi')
      +      data = await fs.readFile(configPath, 'utf8')
      +    } catch (err) {
      +      if (err.code === 'ENOENT') {
      +        throw new Error('You must run `node-gyp configure` first!')
      +      } else {
      +        throw err
             }
      -      config = JSON.parse(data.replace(/#.+\n/, ''))
      +    }
       
      -      // get the 'arch', 'buildType', and 'nodeDir' vars from the config
      -      buildType = config.target_defaults.default_configuration
      -      arch = config.variables.target_arch
      -      nodeDir = config.variables.nodedir
      +    config = JSON.parse(data.replace(/#.+\n/, ''))
       
      -      if ('debug' in gyp.opts) {
      -        buildType = gyp.opts.debug ? 'Debug' : 'Release'
      -      }
      -      if (!buildType) {
      -        buildType = 'Release'
      -      }
      +    // get the 'arch', 'buildType', and 'nodeDir' vars from the config
      +    buildType = config.target_defaults.default_configuration
      +    arch = config.variables.target_arch
      +    nodeDir = config.variables.nodedir
      +    python = config.variables.python
       
      -      log.verbose('build type', buildType)
      -      log.verbose('architecture', arch)
      -      log.verbose('node dev dir', nodeDir)
      +    if ('debug' in gyp.opts) {
      +      buildType = gyp.opts.debug ? 'Debug' : 'Release'
      +    }
      +    if (!buildType) {
      +      buildType = 'Release'
      +    }
       
      -      if (win) {
      -        findSolutionFile()
      -      } else {
      -        doWhich()
      -      }
      -    })
      +    log.verbose('build type', buildType)
      +    log.verbose('architecture', arch)
      +    log.verbose('node dev dir', nodeDir)
      +    log.verbose('python', python)
      +
      +    if (win) {
      +      await findSolutionFile()
      +    } else {
      +      await doWhich()
      +    }
         }
       
         /**
          * On Windows, find the first build/*.sln file.
          */
       
      -  function findSolutionFile () {
      -    glob('build/*.sln', function (err, files) {
      -      if (err) {
      -        return callback(err)
      -      }
      -      if (files.length === 0) {
      -        return callback(new Error('Could not find *.sln file. Did you run "configure"?'))
      -      }
      -      guessedSolution = files[0]
      -      log.verbose('found first Solution file', guessedSolution)
      -      doWhich()
      -    })
      +  async function findSolutionFile () {
      +    const files = await glob('build/*.sln')
      +    if (files.length === 0) {
      +      throw new Error('Could not find *.sln file. Did you run "configure"?')
      +    }
      +    guessedSolution = files[0]
      +    log.verbose('found first Solution file', guessedSolution)
      +    await doWhich()
         }
       
         /**
          * Uses node-which to locate the msbuild / make executable.
          */
       
      -  function doWhich () {
      +  async function doWhich () {
           // On Windows use msbuild provided by node-gyp configure
           if (win) {
             if (!config.variables.msbuild_path) {
      -        return callback(new Error(
      -          'MSBuild is not set, please run `node-gyp configure`.'))
      +        throw new Error('MSBuild is not set, please run `node-gyp configure`.')
             }
             command = config.variables.msbuild_path
             log.verbose('using MSBuild:', command)
      -      doBuild()
      +      await doBuild()
             return
           }
      +
           // First make sure we have the build command in the PATH
      -    which(command, function (err, execPath) {
      -      if (err) {
      -        // Some other error or 'make' not found on Unix, report that to the user
      -        callback(err)
      -        return
      -      }
      -      log.verbose('`which` succeeded for `' + command + '`', execPath)
      -      doBuild()
      -    })
      +    const execPath = await which(command)
      +    log.verbose('`which` succeeded for `' + command + '`', execPath)
      +    await doBuild()
         }
       
         /**
          * Actually spawn the process and compile the module.
          */
       
      -  function doBuild () {
      +  async function doBuild () {
           // Enable Verbose build
      -    var verbose = log.levels[log.level] <= log.levels.verbose
      -    var j
      +    const verbose = log.logger.isVisible('verbose')
      +    let j
       
           if (!win && verbose) {
             argv.push('V=1')
      @@ -147,10 +141,12 @@ function build (gyp, argv, callback) {
             // Convert .gypi config target_arch to MSBuild /Platform
             // Since there are many ways to state '32-bit Intel', default to it.
             // N.B. msbuild's Condition string equality tests are case-insensitive.
      -      var archLower = arch.toLowerCase()
      -      var p = archLower === 'x64' ? 'x64'
      -        : (archLower === 'arm' ? 'ARM'
      -          : (archLower === 'arm64' ? 'ARM64' : 'Win32'))
      +      const archLower = arch.toLowerCase()
      +      const p = archLower === 'x64'
      +        ? 'x64'
      +        : (archLower === 'arm'
      +            ? 'ARM'
      +            : (archLower === 'arm64' ? 'ARM64' : 'Win32'))
             argv.push('/p:Configuration=' + buildType + ';Platform=' + p)
             if (jobs) {
               j = parseInt(jobs, 10)
      @@ -179,7 +175,7 @@ function build (gyp, argv, callback) {
       
           if (win) {
             // did the user specify their own .sln file?
      -      var hasSln = argv.some(function (arg) {
      +      const hasSln = argv.some(function (arg) {
               return path.extname(arg) === '.sln'
             })
             if (!hasSln) {
      @@ -189,23 +185,34 @@ 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')
      +      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`)
      +      await fs.mkdir(buildBinsDir, { recursive: true })
      +      const symlinkDestination = path.join(buildBinsDir, 'python3')
      +      try {
      +        await fs.unlink(symlinkDestination)
      +      } catch (err) {
      +        if (err.code !== 'ENOENT') throw err
      +      }
      +      await fs.symlink(python, symlinkDestination)
      +      log.verbose('bin symlinks', `created symlink to "${python}" in "${buildBinsDir}" and added to PATH`)
           }
       
      -    var proc = gyp.spawn(command, argv)
      -    proc.on('exit', onExit)
      -  }
      +    const proc = gyp.spawn(command, argv)
      +    await new Promise((resolve, reject) => proc.on('exit', async (code, signal) => {
      +      if (buildBinsDir) {
      +        // Clean up the build-time dependency symlinks:
      +        await fs.rm(buildBinsDir, { recursive: true })
      +      }
       
      -  function onExit (code, signal) {
      -    if (code !== 0) {
      -      return callback(new Error('`' + command + '` failed with exit code: ' + code))
      -    }
      -    if (signal) {
      -      return callback(new Error('`' + command + '` got signal: ' + signal))
      -    }
      -    callback()
      +      if (code !== 0) {
      +        return reject(new Error('`' + command + '` failed with exit code: ' + code))
      +      }
      +      if (signal) {
      +        return reject(new Error('`' + command + '` got signal: ' + signal))
      +      }
      +      resolve()
      +    }))
         }
       }
       
      diff --git a/deps/npm/node_modules/node-gyp/lib/clean.js b/deps/npm/node_modules/node-gyp/lib/clean.js
      index dbfa4dbb99d3cb..523f8016caecef 100644
      --- a/deps/npm/node_modules/node-gyp/lib/clean.js
      +++ b/deps/npm/node_modules/node-gyp/lib/clean.js
      @@ -1,14 +1,14 @@
       'use strict'
       
      -const rm = require('rimraf')
      -const log = require('npmlog')
      +const fs = require('graceful-fs').promises
      +const log = require('./log')
       
      -function clean (gyp, argv, callback) {
      +async function clean (gyp, argv) {
         // Remove the 'build' dir
      -  var buildDir = 'build'
      +  const buildDir = 'build'
       
         log.verbose('clean', 'removing "%s" directory', buildDir)
      -  rm(buildDir, callback)
      +  await fs.rm(buildDir, { recursive: true, force: true })
       }
       
       module.exports = clean
      diff --git a/deps/npm/node_modules/node-gyp/lib/configure.js b/deps/npm/node_modules/node-gyp/lib/configure.js
      index 1ca3ade70935ee..8da41a849dfcf6 100644
      --- a/deps/npm/node_modules/node-gyp/lib/configure.js
      +++ b/deps/npm/node_modules/node-gyp/lib/configure.js
      @@ -1,47 +1,36 @@
       'use strict'
       
      -const fs = require('graceful-fs')
      +const { promises: fs } = require('graceful-fs')
       const path = require('path')
      -const log = require('npmlog')
      +const log = require('./log')
       const os = require('os')
       const processRelease = require('./process-release')
       const win = process.platform === 'win32'
       const findNodeDirectory = require('./find-node-directory')
      -const createConfigGypi = require('./create-config-gypi')
      -const msgFormat = require('util').format
      -var findPython = require('./find-python')
      -if (win) {
      -  var findVisualStudio = require('./find-visualstudio')
      -}
      -
      -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
      -  var release = processRelease(argv, gyp, process.version, process.release)
      -
      -  findPython(gyp.opts.python, function (err, found) {
      -    if (err) {
      -      callback(err)
      -    } else {
      -      python = found
      -      getNodeDir()
      -    }
      -  })
      -
      -  function getNodeDir () {
      +const { createConfigGypi } = require('./create-config-gypi')
      +const { format: msgFormat } = require('util')
      +const { findAccessibleSync } = require('./util')
      +const { findPython } = require('./find-python')
      +const { findVisualStudio } = win ? require('./find-visualstudio') : {}
      +
      +async function configure (gyp, argv) {
      +  const buildDir = path.resolve('build')
      +  const configNames = ['config.gypi', 'common.gypi']
      +  const configs = []
      +  let nodeDir
      +  const release = processRelease(argv, gyp, process.version, process.release)
      +
      +  const python = await findPython(gyp.opts.python)
      +  return getNodeDir()
      +
      +  async function getNodeDir () {
           // 'python' should be set by now
           process.env.PYTHON = python
       
           if (gyp.opts.nodedir) {
             // --nodedir was specified. use that for the dev files
             nodeDir = gyp.opts.nodedir.replace(/^~/, os.homedir())
      -
             log.verbose('get node dir', 'compiling against specified --nodedir dev files: %s', nodeDir)
      -      createBuildDir()
           } else {
             // if no --nodedir specified, ensure node dependencies are installed
             if ('v' + release.version !== process.version) {
      @@ -54,108 +43,66 @@ function configure (gyp, argv, callback) {
       
             if (!release.semver) {
               // could not parse the version string with semver
      -        return callback(new Error('Invalid version number: ' + release.version))
      +        throw new Error('Invalid version number: ' + release.version)
             }
       
             // If the tarball option is set, always remove and reinstall the headers
             // into devdir. Otherwise only install if they're not already there.
             gyp.opts.ensure = !gyp.opts.tarball
       
      -      gyp.commands.install([release.version], function (err) {
      -        if (err) {
      -          return callback(err)
      -        }
      -        log.verbose('get node dir', 'target node version installed:', release.versionDir)
      -        nodeDir = path.resolve(gyp.devDir, release.versionDir)
      -        createBuildDir()
      -      })
      -    }
      -  }
      +      await gyp.commands.install([release.version])
       
      -  function createBuildDir () {
      -    log.verbose('build dir', 'attempting to create "build" dir: %s', buildDir)
      +      log.verbose('get node dir', 'target node version installed:', release.versionDir)
      +      nodeDir = path.resolve(gyp.devDir, release.versionDir)
      +    }
       
      -    const deepestBuildDirSubdirectory = win ? buildDir : buildBinsDir
      -    fs.mkdir(deepestBuildDirSubdirectory, { recursive: true }, function (err, isNew) {
      -      if (err) {
      -        return callback(err)
      -      }
      -      log.verbose(
      -        'build dir', '"build" dir needed to be created?', isNew ? 'Yes' : 'No'
      -      )
      -      if (win) {
      -        findVisualStudio(release.semver, gyp.opts.msvs_version,
      -          createConfigFile)
      -      } else {
      -        createPythonSymlink()
      -        createConfigFile()
      -      }
      -    })
      +    return createBuildDir()
         }
       
      -  function createPythonSymlink () {
      -    const symlinkDestination = path.join(buildBinsDir, 'python3')
      -
      -    log.verbose('python symlink', `creating symlink to "${python}" at "${symlinkDestination}"`)
      +  async function createBuildDir () {
      +    log.verbose('build dir', 'attempting to create "build" dir: %s', buildDir)
       
      -    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)
      -        }
      -      })
      -    })
      +    const isNew = await fs.mkdir(buildDir, { recursive: true })
      +    log.verbose(
      +      'build dir', '"build" dir needed to be created?', isNew ? 'Yes' : 'No'
      +    )
      +    const vsInfo = win ? await findVisualStudio(release.semver, gyp.opts['msvs-version']) : null
      +    return createConfigFile(vsInfo)
         }
       
      -  function createConfigFile (err, vsInfo) {
      -    if (err) {
      -      return callback(err)
      -    }
      -    if (process.platform === 'win32') {
      +  async function createConfigFile (vsInfo) {
      +    if (win) {
             process.env.GYP_MSVS_VERSION = Math.min(vsInfo.versionYear, 2015)
             process.env.GYP_MSVS_OVERRIDE_PATH = vsInfo.path
           }
      -    createConfigGypi({ gyp, buildDir, nodeDir, vsInfo }).then(configPath => {
      -      configs.push(configPath)
      -      findConfigs()
      -    }).catch(err => {
      -      callback(err)
      -    })
      +    const configPath = await createConfigGypi({ gyp, buildDir, nodeDir, vsInfo, python })
      +    configs.push(configPath)
      +    return findConfigs()
         }
       
      -  function findConfigs () {
      -    var name = configNames.shift()
      +  async function findConfigs () {
      +    const name = configNames.shift()
           if (!name) {
             return runGyp()
           }
      -    var fullPath = path.resolve(name)
       
      +    const fullPath = path.resolve(name)
           log.verbose(name, 'checking for gypi file: %s', fullPath)
      -    fs.stat(fullPath, function (err) {
      -      if (err) {
      -        if (err.code === 'ENOENT') {
      -          findConfigs() // check next gypi filename
      -        } else {
      -          callback(err)
      -        }
      -      } else {
      -        log.verbose(name, 'found gypi file')
      -        configs.push(fullPath)
      -        findConfigs()
      +    try {
      +      await fs.stat(fullPath)
      +      log.verbose(name, 'found gypi file')
      +      configs.push(fullPath)
      +    } catch (err) {
      +      // ENOENT will check next gypi filename
      +      if (err.code !== 'ENOENT') {
      +        throw err
             }
      -    })
      -  }
      -
      -  function runGyp (err) {
      -    if (err) {
      -      return callback(err)
           }
       
      +    return findConfigs()
      +  }
      +
      +  async function runGyp () {
           if (!~argv.indexOf('-f') && !~argv.indexOf('--format')) {
             if (win) {
               log.verbose('gyp', 'gyp format was not specified; forcing "msvs"')
      @@ -175,11 +122,13 @@ function configure (gyp, argv, callback) {
       
           // For AIX and z/OS we need to set up the path to the exports file
           // which contains the symbols needed for linking.
      -    var nodeExpFile
      +    let nodeExpFile
      +    let nodeRootDir
      +    let candidates
      +    let logprefix = 'find exports file'
           if (process.platform === 'aix' || process.platform === 'os390' || process.platform === 'os400') {
      -      var ext = process.platform === 'os390' ? 'x' : 'exp'
      -      var nodeRootDir = findNodeDirectory()
      -      var candidates
      +      const ext = process.platform === 'os390' ? 'x' : 'exp'
      +      nodeRootDir = findNodeDirectory()
       
             if (process.platform === 'aix' || process.platform === 'os400') {
               candidates = [
      @@ -202,24 +151,23 @@ function configure (gyp, argv, callback) {
               })
             }
       
      -      var logprefix = 'find exports file'
             nodeExpFile = findAccessibleSync(logprefix, nodeRootDir, candidates)
             if (nodeExpFile !== undefined) {
               log.verbose(logprefix, 'Found exports file: %s', nodeExpFile)
             } else {
      -        var msg = msgFormat('Could not find node.%s file in %s', ext, nodeRootDir)
      +        const msg = msgFormat('Could not find node.%s file in %s', ext, nodeRootDir)
               log.error(logprefix, 'Could not find exports file')
      -        return callback(new Error(msg))
      +        throw new Error(msg)
             }
           }
       
           // For z/OS we need to set up the path to zoslib include directory,
           // which contains headers included in v8config.h.
      -    var zoslibIncDir
      +    let zoslibIncDir
           if (process.platform === 'os390') {
             logprefix = "find zoslib's zos-base.h:"
             let msg
      -      var zoslibIncPath = process.env.ZOSLIB_INCLUDES
      +      let zoslibIncPath = process.env.ZOSLIB_INCLUDES
             if (zoslibIncPath) {
               zoslibIncPath = findAccessibleSync(logprefix, zoslibIncPath, ['zos-base.h'])
               if (zoslibIncPath === undefined) {
      @@ -247,114 +195,88 @@ function configure (gyp, argv, callback) {
             } else if (release.version.split('.')[0] >= 16) {
               // zoslib is only shipped in Node v16 and above.
               log.error(logprefix, msg)
      -        return callback(new Error(msg))
      +        throw new Error(msg)
             }
           }
       
           // this logic ported from the old `gyp_addon` python file
      -    var gypScript = path.resolve(__dirname, '..', 'gyp', 'gyp_main.py')
      -    var addonGypi = path.resolve(__dirname, '..', 'addon.gypi')
      -    var commonGypi = path.resolve(nodeDir, 'include/node/common.gypi')
      -    fs.stat(commonGypi, function (err) {
      -      if (err) {
      -        commonGypi = path.resolve(nodeDir, 'common.gypi')
      -      }
      +    const gypScript = path.resolve(__dirname, '..', 'gyp', 'gyp_main.py')
      +    const addonGypi = path.resolve(__dirname, '..', 'addon.gypi')
      +    let commonGypi = path.resolve(nodeDir, 'include/node/common.gypi')
      +    try {
      +      await fs.stat(commonGypi)
      +    } catch (err) {
      +      commonGypi = path.resolve(nodeDir, 'common.gypi')
      +    }
       
      -      var outputDir = 'build'
      -      if (win) {
      -        // Windows expects an absolute path
      -        outputDir = buildDir
      -      }
      -      var nodeGypDir = path.resolve(__dirname, '..')
      -
      -      var nodeLibFile = path.join(nodeDir,
      -        !gyp.opts.nodedir ? '<(target_arch)' : '$(Configuration)',
      -        release.name + '.lib')
      -
      -      argv.push('-I', addonGypi)
      -      argv.push('-I', commonGypi)
      -      argv.push('-Dlibrary=shared_library')
      -      argv.push('-Dvisibility=default')
      -      argv.push('-Dnode_root_dir=' + nodeDir)
      -      if (process.platform === 'aix' || process.platform === 'os390' || process.platform === 'os400') {
      -        argv.push('-Dnode_exp_file=' + nodeExpFile)
      -        if (process.platform === 'os390' && zoslibIncDir) {
      -          argv.push('-Dzoslib_include_dir=' + zoslibIncDir)
      -        }
      -      }
      -      argv.push('-Dnode_gyp_dir=' + nodeGypDir)
      +    let outputDir = 'build'
      +    if (win) {
      +      // Windows expects an absolute path
      +      outputDir = buildDir
      +    }
      +    const nodeGypDir = path.resolve(__dirname, '..')
       
      -      // Do this to keep Cygwin environments happy, else the unescaped '\' gets eaten up,
      -      // resulting in bad paths, Ex c:parentFolderfolderanotherFolder instead of c:\parentFolder\folder\anotherFolder
      -      if (win) {
      -        nodeLibFile = nodeLibFile.replace(/\\/g, '\\\\')
      -      }
      -      argv.push('-Dnode_lib_file=' + nodeLibFile)
      -      argv.push('-Dmodule_root_dir=' + process.cwd())
      -      argv.push('-Dnode_engine=' +
      -        (gyp.opts.node_engine || process.jsEngine || 'v8'))
      -      argv.push('--depth=.')
      -      argv.push('--no-parallel')
      +    let nodeLibFile = path.join(nodeDir,
      +      !gyp.opts.nodedir ? '<(target_arch)' : '$(Configuration)',
      +      release.name + '.lib')
       
      -      // tell gyp to write the Makefile/Solution files into output_dir
      -      argv.push('--generator-output', outputDir)
      +    argv.push('-I', addonGypi)
      +    argv.push('-I', commonGypi)
      +    argv.push('-Dlibrary=shared_library')
      +    argv.push('-Dvisibility=default')
      +    argv.push('-Dnode_root_dir=' + nodeDir)
      +    if (process.platform === 'aix' || process.platform === 'os390' || process.platform === 'os400') {
      +      argv.push('-Dnode_exp_file=' + nodeExpFile)
      +      if (process.platform === 'os390' && zoslibIncDir) {
      +        argv.push('-Dzoslib_include_dir=' + zoslibIncDir)
      +      }
      +    }
      +    argv.push('-Dnode_gyp_dir=' + nodeGypDir)
       
      -      // tell make to write its output into the same dir
      -      argv.push('-Goutput_dir=.')
      +    // Do this to keep Cygwin environments happy, else the unescaped '\' gets eaten up,
      +    // resulting in bad paths, Ex c:parentFolderfolderanotherFolder instead of c:\parentFolder\folder\anotherFolder
      +    if (win) {
      +      nodeLibFile = nodeLibFile.replace(/\\/g, '\\\\')
      +    }
      +    argv.push('-Dnode_lib_file=' + nodeLibFile)
      +    argv.push('-Dmodule_root_dir=' + process.cwd())
      +    argv.push('-Dnode_engine=' +
      +        (gyp.opts.node_engine || process.jsEngine || 'v8'))
      +    argv.push('--depth=.')
      +    argv.push('--no-parallel')
       
      -      // enforce use of the "binding.gyp" file
      -      argv.unshift('binding.gyp')
      +    // tell gyp to write the Makefile/Solution files into output_dir
      +    argv.push('--generator-output', outputDir)
       
      -      // execute `gyp` from the current target nodedir
      -      argv.unshift(gypScript)
      +    // tell make to write its output into the same dir
      +    argv.push('-Goutput_dir=.')
       
      -      // make sure python uses files that came with this particular node package
      -      var pypath = [path.join(__dirname, '..', 'gyp', 'pylib')]
      -      if (process.env.PYTHONPATH) {
      -        pypath.push(process.env.PYTHONPATH)
      -      }
      -      process.env.PYTHONPATH = pypath.join(win ? ';' : ':')
      +    // enforce use of the "binding.gyp" file
      +    argv.unshift('binding.gyp')
       
      -      var cp = gyp.spawn(python, argv)
      -      cp.on('exit', onCpExit)
      -    })
      -  }
      +    // execute `gyp` from the current target nodedir
      +    argv.unshift(gypScript)
       
      -  function onCpExit (code) {
      -    if (code !== 0) {
      -      callback(new Error('`gyp` failed with exit code: ' + code))
      -    } else {
      -      // we're done
      -      callback()
      +    // make sure python uses files that came with this particular node package
      +    const pypath = [path.join(__dirname, '..', 'gyp', 'pylib')]
      +    if (process.env.PYTHONPATH) {
      +      pypath.push(process.env.PYTHONPATH)
           }
      -  }
      -}
      +    process.env.PYTHONPATH = pypath.join(win ? ';' : ':')
       
      -/**
      - * Returns the first file or directory from an array of candidates that is
      - * readable by the current user, or undefined if none of the candidates are
      - * readable.
      - */
      -function findAccessibleSync (logprefix, dir, candidates) {
      -  for (var next = 0; next < candidates.length; next++) {
      -    var candidate = path.resolve(dir, candidates[next])
      -    try {
      -      var fd = fs.openSync(candidate, 'r')
      -    } catch (e) {
      -      // this candidate was not found or not readable, do nothing
      -      log.silly(logprefix, 'Could not open %s: %s', candidate, e.message)
      -      continue
      -    }
      -    fs.closeSync(fd)
      -    log.silly(logprefix, 'Found readable %s', candidate)
      -    return candidate
      +    await new Promise((resolve, reject) => {
      +      const cp = gyp.spawn(python, argv)
      +      cp.on('exit', (code) => {
      +        if (code !== 0) {
      +          reject(new Error('`gyp` failed with exit code: ' + code))
      +        } else {
      +          // we're done
      +          resolve()
      +        }
      +      })
      +    })
         }
      -
      -  return undefined
       }
       
       module.exports = configure
      -module.exports.test = {
      -  findAccessibleSync: findAccessibleSync
      -}
       module.exports.usage = 'Generates ' + (win ? 'MSVC project files' : 'a Makefile') + ' for the current module'
      diff --git a/deps/npm/node_modules/node-gyp/lib/create-config-gypi.js b/deps/npm/node_modules/node-gyp/lib/create-config-gypi.js
      index ced49115027336..d598dea6e2e7fa 100644
      --- a/deps/npm/node_modules/node-gyp/lib/create-config-gypi.js
      +++ b/deps/npm/node_modules/node-gyp/lib/create-config-gypi.js
      @@ -1,7 +1,7 @@
       'use strict'
       
      -const fs = require('graceful-fs')
      -const log = require('npmlog')
      +const fs = require('graceful-fs').promises
      +const log = require('./log')
       const path = require('path')
       
       function parseConfigGypi (config) {
      @@ -24,7 +24,7 @@ async function getBaseConfigGypi ({ gyp, nodeDir }) {
         if (shouldReadConfigGypi && nodeDir) {
           try {
             const baseConfigGypiPath = path.resolve(nodeDir, 'include/node/config.gypi')
      -      const baseConfigGypi = await fs.promises.readFile(baseConfigGypiPath)
      +      const baseConfigGypi = await fs.readFile(baseConfigGypiPath)
             return parseConfigGypi(baseConfigGypi.toString())
           } catch (err) {
             log.warn('read config.gypi', err.message)
      @@ -35,7 +35,7 @@ async function getBaseConfigGypi ({ gyp, nodeDir }) {
         return JSON.parse(JSON.stringify(process.config))
       }
       
      -async function getCurrentConfigGypi ({ gyp, nodeDir, vsInfo }) {
      +async function getCurrentConfigGypi ({ gyp, nodeDir, vsInfo, python }) {
         const config = await getBaseConfigGypi({ gyp, nodeDir })
         if (!config.target_defaults) {
           config.target_defaults = {}
      @@ -75,6 +75,9 @@ async function getCurrentConfigGypi ({ gyp, nodeDir, vsInfo }) {
         // set the node development directory
         variables.nodedir = nodeDir
       
      +  // set the configured Python path
      +  variables.python = python
      +
         // disable -T "thin" static archives by default
         variables.standalone_static_library = gyp.opts.thin ? 0 : 1
       
      @@ -112,13 +115,13 @@ async function getCurrentConfigGypi ({ gyp, nodeDir, vsInfo }) {
         return config
       }
       
      -async function createConfigGypi ({ gyp, buildDir, nodeDir, vsInfo }) {
      +async function createConfigGypi ({ gyp, buildDir, nodeDir, vsInfo, python }) {
         const configFilename = 'config.gypi'
         const configPath = path.resolve(buildDir, configFilename)
       
         log.verbose('build/' + configFilename, 'creating config file')
       
      -  const config = await getCurrentConfigGypi({ gyp, nodeDir, vsInfo })
      +  const config = await getCurrentConfigGypi({ gyp, nodeDir, vsInfo, python })
       
         // ensures that any boolean values in config.gypi get stringified
         function boolsToString (k, v) {
      @@ -135,13 +138,13 @@ async function createConfigGypi ({ gyp, buildDir, nodeDir, vsInfo }) {
       
         const json = JSON.stringify(config, boolsToString, 2)
         log.verbose('build/' + configFilename, 'writing out config file: %s', configPath)
      -  await fs.promises.writeFile(configPath, [prefix, json, ''].join('\n'))
      +  await fs.writeFile(configPath, [prefix, json, ''].join('\n'))
       
         return configPath
       }
       
      -module.exports = createConfigGypi
      -module.exports.test = {
      -  parseConfigGypi: parseConfigGypi,
      -  getCurrentConfigGypi: getCurrentConfigGypi
      +module.exports = {
      +  createConfigGypi,
      +  parseConfigGypi,
      +  getCurrentConfigGypi
       }
      diff --git a/deps/npm/node_modules/node-gyp/lib/download.js b/deps/npm/node_modules/node-gyp/lib/download.js
      new file mode 100644
      index 00000000000000..ed0aa37f441165
      --- /dev/null
      +++ b/deps/npm/node_modules/node-gyp/lib/download.js
      @@ -0,0 +1,39 @@
      +const fetch = require('make-fetch-happen')
      +const { promises: fs } = require('graceful-fs')
      +const log = require('./log')
      +
      +async function download (gyp, url) {
      +  log.http('GET', url)
      +
      +  const requestOpts = {
      +    headers: {
      +      'User-Agent': `node-gyp v${gyp.version} (node ${process.version})`,
      +      Connection: 'keep-alive'
      +    },
      +    proxy: gyp.opts.proxy,
      +    noProxy: gyp.opts.noproxy
      +  }
      +
      +  const cafile = gyp.opts.cafile
      +  if (cafile) {
      +    requestOpts.ca = await readCAFile(cafile)
      +  }
      +
      +  const res = await fetch(url, requestOpts)
      +  log.http(res.status, res.url)
      +
      +  return res
      +}
      +
      +async function readCAFile (filename) {
      +  // The CA file can contain multiple certificates so split on certificate
      +  // boundaries.  [\S\s]*? is used to match everything including newlines.
      +  const ca = await fs.readFile(filename, 'utf8')
      +  const re = /(-----BEGIN CERTIFICATE-----[\S\s]*?-----END CERTIFICATE-----)/g
      +  return ca.match(re)
      +}
      +
      +module.exports = {
      +  download,
      +  readCAFile
      +}
      diff --git a/deps/npm/node_modules/node-gyp/lib/find-node-directory.js b/deps/npm/node_modules/node-gyp/lib/find-node-directory.js
      index 0dd781a6cfae8c..8838b81d338997 100644
      --- a/deps/npm/node_modules/node-gyp/lib/find-node-directory.js
      +++ b/deps/npm/node_modules/node-gyp/lib/find-node-directory.js
      @@ -1,7 +1,7 @@
       'use strict'
       
       const path = require('path')
      -const log = require('npmlog')
      +const log = require('./log')
       
       function findNodeDirectory (scriptLocation, processObj) {
         // set dirname and process if not passed in
      @@ -14,10 +14,10 @@ function findNodeDirectory (scriptLocation, processObj) {
         }
       
         // Have a look to see what is above us, to try and work out where we are
      -  var npmParentDirectory = path.join(scriptLocation, '../../../..')
      +  const npmParentDirectory = path.join(scriptLocation, '../../../..')
         log.verbose('node-gyp root', 'npm_parent_directory is ' +
                     path.basename(npmParentDirectory))
      -  var nodeRootDir = ''
      +  let nodeRootDir = ''
       
         log.verbose('node-gyp root', 'Finding node root directory')
         if (path.basename(npmParentDirectory) === 'deps') {
      @@ -41,8 +41,8 @@ function findNodeDirectory (scriptLocation, processObj) {
         } else {
           // We don't know where we are, try working it out from the location
           // of the node binary
      -    var nodeDir = path.dirname(processObj.execPath)
      -    var directoryUp = path.basename(nodeDir)
      +    const nodeDir = path.dirname(processObj.execPath)
      +    const directoryUp = path.basename(nodeDir)
           if (directoryUp === 'bin') {
             nodeRootDir = path.join(nodeDir, '..')
           } else if (directoryUp === 'Release' || directoryUp === 'Debug') {
      diff --git a/deps/npm/node_modules/node-gyp/lib/find-python.js b/deps/npm/node_modules/node-gyp/lib/find-python.js
      index a445e825b9d7e3..615da57bb85723 100644
      --- a/deps/npm/node_modules/node-gyp/lib/find-python.js
      +++ b/deps/npm/node_modules/node-gyp/lib/find-python.js
      @@ -1,11 +1,15 @@
       'use strict'
       
      -const log = require('npmlog')
      +const log = require('./log')
       const semver = require('semver')
      -const cp = require('child_process')
      -const extend = require('util')._extend // eslint-disable-line
      +const { execFile } = require('./util')
       const win = process.platform === 'win32'
      -const logWithPrefix = require('./util').logWithPrefix
      +
      +function getOsUserInfo () {
      +  try {
      +    return require('os').userInfo().username
      +  } catch {}
      +}
       
       const systemDrive = process.env.SystemDrive || 'C:'
       const username = process.env.USERNAME || process.env.USER || getOsUserInfo()
      @@ -15,7 +19,7 @@ const programFiles = process.env.ProgramW6432 || process.env.ProgramFiles || `${
       const programFilesX86 = process.env['ProgramFiles(x86)'] || `${programFiles} (x86)`
       
       const winDefaultLocationsArray = []
      -for (const majorMinor of ['39', '38', '37', '36']) {
      +for (const majorMinor of ['311', '310', '39', '38']) {
         if (foundLocalAppData) {
           winDefaultLocationsArray.push(
             `${localAppData}\\Programs\\Python\\Python${majorMinor}\\python.exe`,
      @@ -33,45 +37,39 @@ for (const majorMinor of ['39', '38', '37', '36']) {
         }
       }
       
      -function getOsUserInfo () {
      -  try {
      -    return require('os').userInfo().username
      -  } catch (e) {}
      -}
      -
      -function PythonFinder (configPython, callback) {
      -  this.callback = callback
      -  this.configPython = configPython
      -  this.errorLog = []
      -}
      +class PythonFinder {
      +  static findPython = (...args) => new PythonFinder(...args).findPython()
       
      -PythonFinder.prototype = {
      -  log: logWithPrefix(log, 'find Python'),
      -  argsExecutable: ['-c', 'import sys; print(sys.executable);'],
      -  argsVersion: ['-c', 'import sys; print("%s.%s.%s" % sys.version_info[:3]);'],
      -  semverRange: '>=3.6.0',
      +  log = log.withPrefix('find Python')
      +  argsExecutable = ['-c', 'import sys; print(sys.executable);']
      +  argsVersion = ['-c', 'import sys; print("%s.%s.%s" % sys.version_info[:3]);']
      +  semverRange = '>=3.6.0'
       
         // These can be overridden for testing:
      -  execFile: cp.execFile,
      -  env: process.env,
      -  win: win,
      -  pyLauncher: 'py.exe',
      -  winDefaultLocations: winDefaultLocationsArray,
      +  execFile = execFile
      +  env = process.env
      +  win = win
      +  pyLauncher = 'py.exe'
      +  winDefaultLocations = winDefaultLocationsArray
      +
      +  constructor (configPython) {
      +    this.configPython = configPython
      +    this.errorLog = []
      +  }
       
         // Logs a message at verbose level, but also saves it to be displayed later
         // at error level if an error occurs. This should help diagnose the problem.
      -  addLog: function addLog (message) {
      +  addLog (message) {
           this.log.verbose(message)
           this.errorLog.push(message)
      -  },
      +  }
       
         // Find Python by trying a sequence of possibilities.
         // Ignore errors, keep trying until Python is found.
      -  findPython: function findPython () {
      -    const SKIP = 0; const FAIL = 1
      -    var toCheck = getChecks.apply(this)
      -
      -    function getChecks () {
      +  async findPython () {
      +    const SKIP = 0
      +    const FAIL = 1
      +    const toCheck = (() => {
             if (this.env.NODE_GYP_FORCE_PYTHON) {
               return [{
                 before: () => {
      @@ -80,12 +78,11 @@ PythonFinder.prototype = {
                   this.addLog('- process.env.NODE_GYP_FORCE_PYTHON is ' +
                     `"${this.env.NODE_GYP_FORCE_PYTHON}"`)
                 },
      -          check: this.checkCommand,
      -          arg: this.env.NODE_GYP_FORCE_PYTHON
      +          check: () => this.checkCommand(this.env.NODE_GYP_FORCE_PYTHON)
               }]
             }
       
      -      var checks = [
      +      const checks = [
               {
                 before: () => {
                   if (!this.configPython) {
      @@ -98,8 +95,7 @@ PythonFinder.prototype = {
                   this.addLog('- "--python=" or "npm config get python" is ' +
                     `"${this.configPython}"`)
                 },
      -          check: this.checkCommand,
      -          arg: this.configPython
      +          check: () => this.checkCommand(this.configPython)
               },
               {
                 before: () => {
      @@ -112,78 +108,69 @@ PythonFinder.prototype = {
                     'variable PYTHON')
                   this.addLog(`- process.env.PYTHON is "${this.env.PYTHON}"`)
                 },
      -          check: this.checkCommand,
      -          arg: this.env.PYTHON
      -        },
      +          check: () => this.checkCommand(this.env.PYTHON)
      +        }
      +      ]
      +
      +      if (this.win) {
      +        checks.push({
      +          before: () => {
      +            this.addLog(
      +              'checking if the py launcher can be used to find Python 3')
      +          },
      +          check: () => this.checkPyLauncher()
      +        })
      +      }
      +
      +      checks.push(...[
               {
                 before: () => { this.addLog('checking if "python3" can be used') },
      -          check: this.checkCommand,
      -          arg: 'python3'
      +          check: () => this.checkCommand('python3')
               },
               {
                 before: () => { this.addLog('checking if "python" can be used') },
      -          check: this.checkCommand,
      -          arg: 'python'
      +          check: () => this.checkCommand('python')
               }
      -      ]
      +      ])
       
             if (this.win) {
      -        for (var i = 0; i < this.winDefaultLocations.length; ++i) {
      +        for (let i = 0; i < this.winDefaultLocations.length; ++i) {
                 const location = this.winDefaultLocations[i]
                 checks.push({
      -            before: () => {
      -              this.addLog('checking if Python is ' +
      -                `${location}`)
      -            },
      -            check: this.checkExecPath,
      -            arg: location
      +            before: () => this.addLog(`checking if Python is ${location}`),
      +            check: () => this.checkExecPath(location)
                 })
               }
      -        checks.push({
      -          before: () => {
      -            this.addLog(
      -              'checking if the py launcher can be used to find Python 3')
      -          },
      -          check: this.checkPyLauncher
      -        })
             }
       
             return checks
      -    }
      -
      -    function runChecks (err) {
      -      this.log.silly('runChecks: err = %j', (err && err.stack) || err)
      +    })()
       
      -      const check = toCheck.shift()
      -      if (!check) {
      -        return this.fail()
      -      }
      -
      -      const before = check.before.apply(this)
      +    for (const check of toCheck) {
      +      const before = check.before()
             if (before === SKIP) {
      -        return runChecks.apply(this)
      +        continue
             }
             if (before === FAIL) {
               return this.fail()
             }
      -
      -      const args = [runChecks.bind(this)]
      -      if (check.arg) {
      -        args.unshift(check.arg)
      +      try {
      +        return await check.check()
      +      } catch (err) {
      +        this.log.silly('runChecks: err = %j', (err && err.stack) || err)
             }
      -      check.check.apply(this, args)
           }
       
      -    runChecks.apply(this)
      -  },
      +    return this.fail()
      +  }
       
         // Check if command is a valid Python to use.
         // Will exit the Python finder on success.
         // If on Windows, run in a CMD shell to support BAT/CMD launchers.
      -  checkCommand: function checkCommand (command, errorCallback) {
      -    var exec = command
      -    var args = this.argsExecutable
      -    var shell = false
      +  async checkCommand (command) {
      +    let exec = command
      +    let args = this.argsExecutable
      +    let shell = false
           if (this.win) {
             // Arguments have to be manually quoted
             exec = `"${exec}"`
      @@ -192,19 +179,19 @@ PythonFinder.prototype = {
           }
       
           this.log.verbose(`- executing "${command}" to get executable path`)
      -    this.run(exec, args, shell, function (err, execPath) {
      -      // Possible outcomes:
      -      // - Error: not in PATH, not executable or execution fails
      -      // - Gibberish: the next command to check version will fail
      -      // - Absolute path to executable
      -      if (err) {
      -        this.addLog(`- "${command}" is not in PATH or produced an error`)
      -        return errorCallback(err)
      -      }
      +    // Possible outcomes:
      +    // - Error: not in PATH, not executable or execution fails
      +    // - Gibberish: the next command to check version will fail
      +    // - Absolute path to executable
      +    try {
      +      const execPath = await this.run(exec, args, shell)
             this.addLog(`- executable path is "${execPath}"`)
      -      this.checkExecPath(execPath, errorCallback)
      -    }.bind(this))
      -  },
      +      return this.checkExecPath(execPath)
      +    } catch (err) {
      +      this.addLog(`- "${command}" is not in PATH or produced an error`)
      +      throw err
      +    }
      +  }
       
         // Check if the py launcher can find a valid Python to use.
         // Will exit the Python finder on success.
      @@ -216,97 +203,86 @@ PythonFinder.prototype = {
         // the first command line argument. Since "py.exe -3" would be an invalid
         // executable for "execFile", we have to use the launcher to figure out
         // where the actual "python.exe" executable is located.
      -  checkPyLauncher: function checkPyLauncher (errorCallback) {
      -    this.log.verbose(
      -      `- executing "${this.pyLauncher}" to get Python 3 executable path`)
      -    this.run(this.pyLauncher, ['-3', ...this.argsExecutable], false,
      -      function (err, execPath) {
      -      // Possible outcomes: same as checkCommand
      -        if (err) {
      -          this.addLog(
      -            `- "${this.pyLauncher}" is not in PATH or produced an error`)
      -          return errorCallback(err)
      -        }
      -        this.addLog(`- executable path is "${execPath}"`)
      -        this.checkExecPath(execPath, errorCallback)
      -      }.bind(this))
      -  },
      +  async checkPyLauncher () {
      +    this.log.verbose(`- executing "${this.pyLauncher}" to get Python 3 executable path`)
      +    // Possible outcomes: same as checkCommand
      +    try {
      +      const execPath = await this.run(this.pyLauncher, ['-3', ...this.argsExecutable], false)
      +      this.addLog(`- executable path is "${execPath}"`)
      +      return this.checkExecPath(execPath)
      +    } catch (err) {
      +      this.addLog(`- "${this.pyLauncher}" is not in PATH or produced an error`)
      +      throw err
      +    }
      +  }
       
         // Check if a Python executable is the correct version to use.
         // Will exit the Python finder on success.
      -  checkExecPath: function checkExecPath (execPath, errorCallback) {
      +  async checkExecPath (execPath) {
           this.log.verbose(`- executing "${execPath}" to get version`)
      -    this.run(execPath, this.argsVersion, false, function (err, version) {
      -      // Possible outcomes:
      -      // - Error: executable can not be run (likely meaning the command wasn't
      -      //   a Python executable and the previous command produced gibberish)
      -      // - Gibberish: somehow the last command produced an executable path,
      -      //   this will fail when verifying the version
      -      // - Version of the Python executable
      -      if (err) {
      -        this.addLog(`- "${execPath}" could not be run`)
      -        return errorCallback(err)
      -      }
      +    // Possible outcomes:
      +    // - Error: executable can not be run (likely meaning the command wasn't
      +    //   a Python executable and the previous command produced gibberish)
      +    // - Gibberish: somehow the last command produced an executable path,
      +    //   this will fail when verifying the version
      +    // - Version of the Python executable
      +    try {
      +      const version = await this.run(execPath, this.argsVersion, false)
             this.addLog(`- version is "${version}"`)
       
             const range = new semver.Range(this.semverRange)
      -      var valid = false
      +      let valid = false
             try {
               valid = range.test(version)
             } catch (err) {
               this.log.silly('range.test() threw:\n%s', err.stack)
               this.addLog(`- "${execPath}" does not have a valid version`)
               this.addLog('- is it a Python executable?')
      -        return errorCallback(err)
      +        throw err
             }
      -
             if (!valid) {
               this.addLog(`- version is ${version} - should be ${this.semverRange}`)
               this.addLog('- THIS VERSION OF PYTHON IS NOT SUPPORTED')
      -        return errorCallback(new Error(
      -          `Found unsupported Python version ${version}`))
      +        throw new Error(`Found unsupported Python version ${version}`)
             }
      -      this.succeed(execPath, version)
      -    }.bind(this))
      -  },
      +      return this.succeed(execPath, version)
      +    } catch (err) {
      +      this.addLog(`- "${execPath}" could not be run`)
      +      throw err
      +    }
      +  }
       
         // Run an executable or shell command, trimming the output.
      -  run: function run (exec, args, shell, callback) {
      -    var env = extend({}, this.env)
      +  async run (exec, args, shell) {
      +    const env = Object.assign({}, this.env)
           env.TERM = 'dumb'
      -    const opts = { env: env, shell: shell }
      +    const opts = { env, shell }
       
           this.log.silly('execFile: exec = %j', exec)
           this.log.silly('execFile: args = %j', args)
           this.log.silly('execFile: opts = %j', opts)
           try {
      -      this.execFile(exec, args, opts, execFileCallback.bind(this))
      -    } catch (err) {
      -      this.log.silly('execFile: threw:\n%s', err.stack)
      -      return callback(err)
      -    }
      -
      -    function execFileCallback (err, stdout, stderr) {
      +      const [err, stdout, stderr] = await this.execFile(exec, args, opts)
             this.log.silly('execFile result: err = %j', (err && err.stack) || err)
             this.log.silly('execFile result: stdout = %j', stdout)
             this.log.silly('execFile result: stderr = %j', stderr)
      -      if (err) {
      -        return callback(err)
      -      }
      -      const execPath = stdout.trim()
      -      callback(null, execPath)
      +      return stdout.trim()
      +    } catch (err) {
      +      this.log.silly('execFile: threw:\n%s', err.stack)
      +      throw err
           }
      -  },
      +  }
       
      -  succeed: function succeed (execPath, version) {
      +  succeed (execPath, version) {
           this.log.info(`using Python version ${version} found at "${execPath}"`)
      -    process.nextTick(this.callback.bind(null, null, execPath))
      -  },
      +    return execPath
      +  }
       
      -  fail: function fail () {
      +  fail () {
           const errorLog = this.errorLog.join('\n')
       
      -    const pathExample = this.win ? 'C:\\Path\\To\\python.exe'
      +    const pathExample = this.win
      +      ? 'C:\\Path\\To\\python.exe'
             : '/path/to/pythonexecutable'
           // For Windows 80 col console, use up to the column before the one marked
           // with X (total 79 chars including logger prefix, 58 chars usable here):
      @@ -327,18 +303,8 @@ PythonFinder.prototype = {
           ].join('\n')
       
           this.log.error(`\n${errorLog}\n\n${info}\n`)
      -    process.nextTick(this.callback.bind(null, new Error(
      -      'Could not find any Python installation to use')))
      +    throw new Error('Could not find any Python installation to use')
         }
       }
       
      -function findPython (configPython, callback) {
      -  var finder = new PythonFinder(configPython, callback)
      -  finder.findPython()
      -}
      -
      -module.exports = findPython
      -module.exports.test = {
      -  PythonFinder: PythonFinder,
      -  findPython: findPython
      -}
      +module.exports = PythonFinder
      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 16f6e79559307c..b57770259abde3 100644
      --- a/deps/npm/node_modules/node-gyp/lib/find-visualstudio.js
      +++ b/deps/npm/node_modules/node-gyp/lib/find-visualstudio.js
      @@ -1,39 +1,32 @@
       'use strict'
       
      -const log = require('npmlog')
      -const execFile = require('child_process').execFile
      -const fs = require('fs')
      -const path = require('path').win32
      -const logWithPrefix = require('./util').logWithPrefix
      -const regSearchKeys = require('./util').regSearchKeys
      -
      -function findVisualStudio (nodeSemver, configMsvsVersion, callback) {
      -  const finder = new VisualStudioFinder(nodeSemver, configMsvsVersion,
      -    callback)
      -  finder.findVisualStudio()
      -}
      +const log = require('./log')
      +const { existsSync } = require('fs')
      +const { win32: path } = require('path')
      +const { regSearchKeys, execFile } = require('./util')
       
      -function VisualStudioFinder (nodeSemver, configMsvsVersion, callback) {
      -  this.nodeSemver = nodeSemver
      -  this.configMsvsVersion = configMsvsVersion
      -  this.callback = callback
      -  this.errorLog = []
      -  this.validVersions = []
      -}
      +class VisualStudioFinder {
      +  static findVisualStudio = (...args) => new VisualStudioFinder(...args).findVisualStudio()
      +
      +  log = log.withPrefix('find VS')
       
      -VisualStudioFinder.prototype = {
      -  log: logWithPrefix(log, 'find VS'),
      +  regSearchKeys = regSearchKeys
       
      -  regSearchKeys: regSearchKeys,
      +  constructor (nodeSemver, configMsvsVersion) {
      +    this.nodeSemver = nodeSemver
      +    this.configMsvsVersion = configMsvsVersion
      +    this.errorLog = []
      +    this.validVersions = []
      +  }
       
         // Logs a message at verbose level, but also saves it to be displayed later
         // at error level if an error occurs. This should help diagnose the problem.
      -  addLog: function addLog (message) {
      +  addLog (message) {
           this.log.verbose(message)
           this.errorLog.push(message)
      -  },
      +  }
       
      -  findVisualStudio: function findVisualStudio () {
      +  async findVisualStudio () {
           this.configVersionYear = null
           this.configPath = null
           if (this.configMsvsVersion) {
      @@ -60,32 +53,30 @@ VisualStudioFinder.prototype = {
             this.addLog('VCINSTALLDIR not set, not running in VS Command Prompt')
           }
       
      -    this.findVisualStudio2017OrNewer((info) => {
      +    const checks = [
      +      () => this.findVisualStudio2017OrNewer(),
      +      () => this.findVisualStudio2015(),
      +      () => this.findVisualStudio2013()
      +    ]
      +
      +    for (const check of checks) {
      +      const info = await check()
             if (info) {
               return this.succeed(info)
             }
      -      this.findVisualStudio2015((info) => {
      -        if (info) {
      -          return this.succeed(info)
      -        }
      -        this.findVisualStudio2013((info) => {
      -          if (info) {
      -            return this.succeed(info)
      -          }
      -          this.fail()
      -        })
      -      })
      -    })
      -  },
      +    }
      +
      +    return this.fail()
      +  }
       
      -  succeed: function succeed (info) {
      +  succeed (info) {
           this.log.info(`using VS${info.versionYear} (${info.version}) found at:` +
                         `\n"${info.path}"` +
                         '\nrun with --verbose for detailed information')
      -    process.nextTick(this.callback.bind(null, null, info))
      -  },
      +    return info
      +  }
       
      -  fail: function fail () {
      +  fail () {
           if (this.configMsvsVersion && this.envVcInstallDir) {
             this.errorLog.push(
               'msvs_version does not match this VS Command Prompt or the',
      @@ -119,17 +110,16 @@ VisualStudioFinder.prototype = {
           ].join('\n')
       
           this.log.error(`\n${errorLog}\n\n${infoLog}\n`)
      -    process.nextTick(this.callback.bind(null, new Error(
      -      'Could not find any Visual Studio installation to use')))
      -  },
      +    throw new Error('Could not find any Visual Studio installation to use')
      +  }
       
         // Invoke the PowerShell script to get information about Visual Studio 2017
         // or newer installations
      -  findVisualStudio2017OrNewer: function findVisualStudio2017OrNewer (cb) {
      -    var ps = path.join(process.env.SystemRoot, 'System32',
      +  async findVisualStudio2017OrNewer () {
      +    const ps = path.join(process.env.SystemRoot, 'System32',
             'WindowsPowerShell', 'v1.0', 'powershell.exe')
      -    var csFile = path.join(__dirname, 'Find-VisualStudio.cs')
      -    var psArgs = [
      +    const csFile = path.join(__dirname, 'Find-VisualStudio.cs')
      +    const psArgs = [
             '-ExecutionPolicy',
             'Unrestricted',
             '-NoProfile',
      @@ -138,22 +128,19 @@ VisualStudioFinder.prototype = {
           ]
       
           this.log.silly('Running', ps, psArgs)
      -    var child = execFile(ps, psArgs, { encoding: 'utf8' },
      -      (err, stdout, stderr) => {
      -        this.parseData(err, stdout, stderr, cb)
      -      })
      -    child.stdin.end()
      -  },
      +    const [err, stdout, stderr] = await execFile(ps, psArgs, { encoding: 'utf8' })
      +    return this.parseData(err, stdout, stderr)
      +  }
       
         // Parse the output of the PowerShell script and look for an installation
         // of Visual Studio 2017 or newer to use
      -  parseData: function parseData (err, stdout, stderr, cb) {
      +  parseData (err, stdout, stderr) {
           this.log.silly('PS stderr = %j', stderr)
       
           const failPowershell = () => {
             this.addLog(
               'could not use PowerShell to find Visual Studio 2017 or newer, try re-running with \'--loglevel silly\' for more details')
      -      cb(null)
      +      return null
           }
       
           if (err) {
      @@ -161,7 +148,7 @@ VisualStudioFinder.prototype = {
             return failPowershell()
           }
       
      -    var vsInfo
      +    let vsInfo
           try {
             vsInfo = JSON.parse(stdout)
           } catch (e) {
      @@ -178,7 +165,7 @@ VisualStudioFinder.prototype = {
           vsInfo = vsInfo.map((info) => {
             this.log.silly(`processing installation: "${info.path}"`)
             info.path = path.resolve(info.path)
      -      var ret = this.getVersionInfo(info)
      +      const ret = this.getVersionInfo(info)
             ret.path = info.path
             ret.msBuild = this.getMSBuild(info, ret.versionYear)
             ret.toolset = this.getToolset(info, ret.versionYear)
      @@ -199,7 +186,7 @@ VisualStudioFinder.prototype = {
           // Sort to place newer versions first
           vsInfo.sort((a, b) => b.versionYear - a.versionYear)
       
      -    for (var i = 0; i < vsInfo.length; ++i) {
      +    for (let i = 0; i < vsInfo.length; ++i) {
             const info = vsInfo[i]
             this.addLog(`checking VS${info.versionYear} (${info.version}) found ` +
                         `at:\n"${info.path}"`)
      @@ -229,23 +216,23 @@ VisualStudioFinder.prototype = {
               continue
             }
       
      -      return cb(info)
      +      return info
           }
       
           this.addLog(
             'could not find a version of Visual Studio 2017 or newer to use')
      -    cb(null)
      -  },
      +    return null
      +  }
       
         // Helper - process version information
      -  getVersionInfo: function getVersionInfo (info) {
      +  getVersionInfo (info) {
           const match = /^(\d+)\.(\d+)\..*/.exec(info.version)
           if (!match) {
             this.log.silly('- failed to parse version:', info.version)
             return {}
           }
           this.log.silly('- version match = %j', match)
      -    var ret = {
      +    const ret = {
             version: info.version,
             versionMajor: parseInt(match[1], 10),
             versionMinor: parseInt(match[2], 10)
      @@ -264,14 +251,14 @@ VisualStudioFinder.prototype = {
           }
           this.log.silly('- unsupported version:', ret.versionMajor)
           return {}
      -  },
      +  }
       
      -  msBuildPathExists: function msBuildPathExists (path) {
      -    return fs.existsSync(path)
      -  },
      +  msBuildPathExists (path) {
      +    return existsSync(path)
      +  }
       
         // Helper - process MSBuild information
      -  getMSBuild: function getMSBuild (info, versionYear) {
      +  getMSBuild (info, versionYear) {
           const pkg = 'Microsoft.VisualStudio.VC.MSBuild.Base'
           const msbuildPath = path.join(info.path, 'MSBuild', 'Current', 'Bin', 'MSBuild.exe')
           const msbuildPathArm64 = path.join(info.path, 'MSBuild', 'Current', 'Bin', 'arm64', 'MSBuild.exe')
      @@ -295,10 +282,10 @@ VisualStudioFinder.prototype = {
             return msbuildPath
           }
           return null
      -  },
      +  }
       
         // Helper - process toolset information
      -  getToolset: function getToolset (info, versionYear) {
      +  getToolset (info, versionYear) {
           const pkg = 'Microsoft.VisualStudio.Component.VC.Tools.x86.x64'
           const express = 'Microsoft.VisualStudio.WDExpress'
       
      @@ -319,15 +306,15 @@ VisualStudioFinder.prototype = {
           }
           this.log.silly('- invalid versionYear:', versionYear)
           return null
      -  },
      +  }
       
         // Helper - process Windows SDK information
      -  getSDK: function getSDK (info) {
      +  getSDK (info) {
           const win8SDK = 'Microsoft.VisualStudio.Component.Windows81SDK'
           const win10SDKPrefix = 'Microsoft.VisualStudio.Component.Windows10SDK.'
           const win11SDKPrefix = 'Microsoft.VisualStudio.Component.Windows11SDK.'
       
      -    var Win10or11SDKVer = 0
      +    let Win10or11SDKVer = 0
           info.packages.forEach((pkg) => {
             if (!pkg.startsWith(win10SDKPrefix) && !pkg.startsWith(win11SDKPrefix)) {
               return
      @@ -354,14 +341,14 @@ VisualStudioFinder.prototype = {
             return '8.1'
           }
           return null
      -  },
      +  }
       
         // Find an installation of Visual Studio 2015 to use
      -  findVisualStudio2015: function findVisualStudio2015 (cb) {
      +  async findVisualStudio2015 () {
           if (this.nodeSemver.major >= 19) {
             this.addLog(
               'not looking for VS2015 as it is only supported up to Node.js 18')
      -      return cb(null)
      +      return null
           }
           return this.findOldVS({
             version: '14.0',
      @@ -369,15 +356,15 @@ VisualStudioFinder.prototype = {
             versionMinor: 0,
             versionYear: 2015,
             toolset: 'v140'
      -    }, cb)
      -  },
      +    })
      +  }
       
         // Find an installation of Visual Studio 2013 to use
      -  findVisualStudio2013: function findVisualStudio2013 (cb) {
      +  async findVisualStudio2013 () {
           if (this.nodeSemver.major >= 9) {
             this.addLog(
               'not looking for VS2013 as it is only supported up to Node.js 8')
      -      return cb(null)
      +      return null
           }
           return this.findOldVS({
             version: '12.0',
      @@ -385,55 +372,52 @@ VisualStudioFinder.prototype = {
             versionMinor: 0,
             versionYear: 2013,
             toolset: 'v120'
      -    }, cb)
      -  },
      +    })
      +  }
       
         // Helper - common code for VS2013 and VS2015
      -  findOldVS: function findOldVS (info, cb) {
      +  async findOldVS (info) {
           const regVC7 = ['HKLM\\Software\\Microsoft\\VisualStudio\\SxS\\VC7',
             'HKLM\\Software\\Wow6432Node\\Microsoft\\VisualStudio\\SxS\\VC7']
           const regMSBuild = 'HKLM\\Software\\Microsoft\\MSBuild\\ToolsVersions'
       
           this.addLog(`looking for Visual Studio ${info.versionYear}`)
      -    this.regSearchKeys(regVC7, info.version, [], (err, res) => {
      -      if (err) {
      -        this.addLog('- not found')
      -        return cb(null)
      -      }
      -
      +    try {
      +      let res = await this.regSearchKeys(regVC7, info.version, [])
             const vsPath = path.resolve(res, '..')
             this.addLog(`- found in "${vsPath}"`)
      -
             const msBuildRegOpts = process.arch === 'ia32' ? [] : ['/reg:32']
      -      this.regSearchKeys([`${regMSBuild}\\${info.version}`],
      -        'MSBuildToolsPath', msBuildRegOpts, (err, res) => {
      -          if (err) {
      -            this.addLog(
      -              '- could not find MSBuild in registry for this version')
      -            return cb(null)
      -          }
      -
      -          const msBuild = path.join(res, 'MSBuild.exe')
      -          this.addLog(`- MSBuild in "${msBuild}"`)
      -
      -          if (!this.checkConfigVersion(info.versionYear, vsPath)) {
      -            return cb(null)
      -          }
      -
      -          info.path = vsPath
      -          info.msBuild = msBuild
      -          info.sdk = null
      -          cb(info)
      -        })
      -    })
      -  },
      +
      +      try {
      +        res = await this.regSearchKeys([`${regMSBuild}\\${info.version}`], 'MSBuildToolsPath', msBuildRegOpts)
      +      } catch (err) {
      +        this.addLog('- could not find MSBuild in registry for this version')
      +        return null
      +      }
      +
      +      const msBuild = path.join(res, 'MSBuild.exe')
      +      this.addLog(`- MSBuild in "${msBuild}"`)
      +
      +      if (!this.checkConfigVersion(info.versionYear, vsPath)) {
      +        return null
      +      }
      +
      +      info.path = vsPath
      +      info.msBuild = msBuild
      +      info.sdk = null
      +      return info
      +    } catch (err) {
      +      this.addLog('- not found')
      +      return null
      +    }
      +  }
       
         // After finding a usable version of Visual Studio:
         // - add it to validVersions to be displayed at the end if a specific
         //   version was requested and not found;
         // - check if this is the version that was requested.
         // - check if this matches the Visual Studio Command Prompt
      -  checkConfigVersion: function checkConfigVersion (versionYear, vsPath) {
      +  checkConfigVersion (versionYear, vsPath) {
           this.validVersions.push(versionYear)
           this.validVersions.push(vsPath)
       
      @@ -456,8 +440,4 @@ VisualStudioFinder.prototype = {
         }
       }
       
      -module.exports = findVisualStudio
      -module.exports.test = {
      -  VisualStudioFinder: VisualStudioFinder,
      -  findVisualStudio: findVisualStudio
      -}
      +module.exports = VisualStudioFinder
      diff --git a/deps/npm/node_modules/node-gyp/lib/install.js b/deps/npm/node_modules/node-gyp/lib/install.js
      index 1eb9f14c6742aa..7196a316296fb8 100644
      --- a/deps/npm/node_modules/node-gyp/lib/install.js
      +++ b/deps/npm/node_modules/node-gyp/lib/install.js
      @@ -1,26 +1,21 @@
       'use strict'
       
      -const fs = require('graceful-fs')
      +const { createWriteStream, promises: fs } = require('graceful-fs')
       const os = require('os')
       const { backOff } = require('exponential-backoff')
      -const rm = require('rimraf')
       const tar = require('tar')
       const path = require('path')
      -const util = require('util')
      -const stream = require('stream')
      +const { Transform, promises: { pipeline } } = require('stream')
       const crypto = require('crypto')
      -const log = require('npmlog')
      +const log = require('./log')
       const semver = require('semver')
      -const fetch = require('make-fetch-happen')
      +const { download } = require('./download')
       const processRelease = require('./process-release')
      -const win = process.platform === 'win32'
      -const streamPipeline = util.promisify(stream.pipeline)
       
      -/**
      - * @param {typeof import('graceful-fs')} fs
      - */
      +const win = process.platform === 'win32'
       
      -async function install (fs, gyp, argv) {
      +async function install (gyp, argv) {
      +  log.stdout()
         const release = processRelease(argv, gyp, process.version, process.release)
         // Detecting target_arch based on logic from create-cnfig-gyp.js. Used on Windows only.
         const arch = win ? (gyp.opts.target_arch || gyp.opts.arch || process.arch || 'ia32') : ''
      @@ -60,7 +55,7 @@ async function install (fs, gyp, argv) {
         if (gyp.opts.ensure) {
           log.verbose('install', '--ensure was passed, so won\'t reinstall if already installed')
           try {
      -      await fs.promises.stat(devDir)
      +      await fs.stat(devDir)
           } catch (err) {
             if (err.code === 'ENOENT') {
               log.verbose('install', 'version not already installed, continuing with install', release.version)
      @@ -78,7 +73,7 @@ async function install (fs, gyp, argv) {
           const installVersionFile = path.resolve(devDir, 'installVersion')
           let installVersion = 0
           try {
      -      const ver = await fs.promises.readFile(installVersionFile, 'ascii')
      +      const ver = await fs.readFile(installVersionFile, 'ascii')
             installVersion = parseInt(ver, 10) || 0
           } catch (err) {
             if (err.code !== 'ENOENT') {
      @@ -100,7 +95,7 @@ async function install (fs, gyp, argv) {
             log.verbose('on Windows; need to check node.lib')
             const nodeLibPath = path.resolve(devDir, arch, 'node.lib')
             try {
      -        await fs.promises.stat(nodeLibPath)
      +        await fs.stat(nodeLibPath)
             } catch (err) {
               if (err.code === 'ENOENT') {
                 log.verbose('install', `version not already installed for ${arch}, continuing with install`, release.version)
      @@ -126,12 +121,12 @@ async function install (fs, gyp, argv) {
       
         async function copyDirectory (src, dest) {
           try {
      -      await fs.promises.stat(src)
      +      await fs.stat(src)
           } catch {
             throw new Error(`Missing source directory for copy: ${src}`)
           }
      -    await fs.promises.mkdir(dest, { recursive: true })
      -    const entries = await fs.promises.readdir(src, { withFileTypes: true })
      +    await fs.mkdir(dest, { recursive: true })
      +    const entries = await fs.readdir(src, { withFileTypes: true })
           for (const entry of entries) {
             if (entry.isDirectory()) {
               await copyDirectory(path.join(src, entry.name), path.join(dest, entry.name))
      @@ -140,12 +135,12 @@ async function install (fs, gyp, argv) {
               // Windows so use an exponential backoff to resolve collisions
               await backOff(async () => {
                 try {
      -            await fs.promises.copyFile(path.join(src, entry.name), path.join(dest, entry.name))
      +            await fs.copyFile(path.join(src, entry.name), path.join(dest, entry.name))
                 } catch (err) {
                   // if ensure, check if file already exists and that's good enough
                   if (gyp.opts.ensure && err.code === 'EBUSY') {
                     try {
      -                await fs.promises.stat(path.join(dest, entry.name))
      +                await fs.stat(path.join(dest, entry.name))
                       return
                     } catch {}
                   }
      @@ -163,7 +158,7 @@ async function install (fs, gyp, argv) {
       
           // first create the dir for the node dev files
           try {
      -      const created = await fs.promises.mkdir(devDir, { recursive: true })
      +      const created = await fs.mkdir(devDir, { recursive: true })
       
             if (created) {
               log.verbose('created devDir', created)
      @@ -208,7 +203,7 @@ async function install (fs, gyp, argv) {
           // on Windows there can be file errors from tar if parallel installs
           // are happening (not uncommon with multiple native modules) so
           // extract the tarball to a temp directory first and then copy over
      -    const tarExtractDir = win ? await fs.promises.mkdtemp(path.join(os.tmpdir(), 'node-gyp-tmp-')) : devDir
      +    const tarExtractDir = win ? await fs.mkdtemp(path.join(os.tmpdir(), 'node-gyp-tmp-')) : devDir
       
           try {
             if (shouldDownloadTarball) {
      @@ -228,7 +223,7 @@ async function install (fs, gyp, argv) {
                     throw new Error(`${res.status} response downloading ${release.tarballUrl}`)
                   }
       
      -            await streamPipeline(
      +            await pipeline(
                     res.body,
                     // content checksum
                     new ShaSum((_, checksum) => {
      @@ -267,7 +262,7 @@ async function install (fs, gyp, argv) {
             // need to download node.lib
               ...(win ? [downloadNodeLib()] : []),
               // write the "installVersion" file
      -        fs.promises.writeFile(installVersionPath, gyp.package.installVersion + '\n'),
      +        fs.writeFile(installVersionPath, gyp.package.installVersion + '\n'),
               // Only download SHASUMS.txt if we downloaded something in need of SHA verification
               ...(!tarPath || win ? [downloadShasums()] : [])
             ])
      @@ -289,7 +284,7 @@ async function install (fs, gyp, argv) {
             if (tarExtractDir !== devDir) {
               try {
                 // try to cleanup temp dir
      -          await util.promisify(rm)(tarExtractDir)
      +          await fs.rm(tarExtractDir, { recursive: true })
               } catch {
                 log.warn('failed to clean up temp tarball extract directory')
               }
      @@ -329,7 +324,7 @@ async function install (fs, gyp, argv) {
             log.verbose(name, 'dir', dir)
             log.verbose(name, 'url', libUrl)
       
      -      await fs.promises.mkdir(dir, { recursive: true })
      +      await fs.mkdir(dir, { recursive: true })
             log.verbose('streaming', name, 'to:', targetLibPath)
       
             const res = await download(gyp, libUrl)
      @@ -339,13 +334,13 @@ async function install (fs, gyp, argv) {
               throw new Error(`${res.status} status code downloading ${name}`)
             }
       
      -      return streamPipeline(
      +      return pipeline(
               res.body,
               new ShaSum((_, checksum) => {
                 contentShasums[libPath] = checksum
                 log.verbose('content checksum', libPath, checksum)
               }),
      -        fs.createWriteStream(targetLibPath)
      +        createWriteStream(targetLibPath)
             )
           } // downloadNodeLib()
         } // go()
      @@ -363,7 +358,7 @@ async function install (fs, gyp, argv) {
         async function rollback (err) {
           log.warn('install', 'got an error, rolling back install')
           // roll-back the install if anything went wrong
      -    await util.promisify(gyp.commands.remove)([release.versionDir])
      +    await gyp.commands.remove([release.versionDir])
           throw err
         }
       
      @@ -394,11 +389,11 @@ async function install (fs, gyp, argv) {
             log.verbose('tmpdir == cwd', 'automatically will remove dev files after to save disk space')
             gyp.todo.push({ name: 'remove', args: argv })
           }
      -    return util.promisify(gyp.commands.install)([noretry].concat(argv))
      +    return gyp.commands.install([noretry].concat(argv))
         }
       }
       
      -class ShaSum extends stream.Transform {
      +class ShaSum extends Transform {
         constructor (callback) {
           super()
           this._callback = callback
      @@ -416,43 +411,5 @@ class ShaSum extends stream.Transform {
         }
       }
       
      -async function download (gyp, url) {
      -  log.http('GET', url)
      -
      -  const requestOpts = {
      -    headers: {
      -      'User-Agent': `node-gyp v${gyp.version} (node ${process.version})`,
      -      Connection: 'keep-alive'
      -    },
      -    proxy: gyp.opts.proxy,
      -    noProxy: gyp.opts.noproxy
      -  }
      -
      -  const cafile = gyp.opts.cafile
      -  if (cafile) {
      -    requestOpts.ca = await readCAFile(cafile)
      -  }
      -
      -  const res = await fetch(url, requestOpts)
      -  log.http(res.status, res.url)
      -
      -  return res
      -}
      -
      -async function readCAFile (filename) {
      -  // The CA file can contain multiple certificates so split on certificate
      -  // boundaries.  [\S\s]*? is used to match everything including newlines.
      -  const ca = await fs.promises.readFile(filename, 'utf8')
      -  const re = /(-----BEGIN CERTIFICATE-----[\S\s]*?-----END CERTIFICATE-----)/g
      -  return ca.match(re)
      -}
      -
      -module.exports = function (gyp, argv, callback) {
      -  install(fs, gyp, argv).then(callback.bind(undefined, null), callback)
      -}
      -module.exports.test = {
      -  download,
      -  install,
      -  readCAFile
      -}
      +module.exports = install
       module.exports.usage = 'Install node development files for the specified node version.'
      diff --git a/deps/npm/node_modules/node-gyp/lib/list.js b/deps/npm/node_modules/node-gyp/lib/list.js
      index 405ebc0d889590..36889ad4f71e27 100644
      --- a/deps/npm/node_modules/node-gyp/lib/list.js
      +++ b/deps/npm/node_modules/node-gyp/lib/list.js
      @@ -1,26 +1,25 @@
       'use strict'
       
      -const fs = require('graceful-fs')
      -const log = require('npmlog')
      +const fs = require('graceful-fs').promises
      +const log = require('./log')
       
      -function list (gyp, args, callback) {
      -  var devDir = gyp.devDir
      +async function list (gyp, args) {
      +  const devDir = gyp.devDir
         log.verbose('list', 'using node-gyp dir:', devDir)
       
      -  fs.readdir(devDir, onreaddir)
      -
      -  function onreaddir (err, versions) {
      -    if (err && err.code !== 'ENOENT') {
      -      return callback(err)
      +  let versions = []
      +  try {
      +    const dir = await fs.readdir(devDir)
      +    if (Array.isArray(dir)) {
      +      versions = dir.filter((v) => v !== 'current')
           }
      -
      -    if (Array.isArray(versions)) {
      -      versions = versions.filter(function (v) { return v !== 'current' })
      -    } else {
      -      versions = []
      +  } catch (err) {
      +    if (err && err.code !== 'ENOENT') {
      +      throw err
           }
      -    callback(null, versions)
         }
      +
      +  return versions
       }
       
       module.exports = list
      diff --git a/deps/npm/node_modules/node-gyp/lib/log.js b/deps/npm/node_modules/node-gyp/lib/log.js
      new file mode 100644
      index 00000000000000..6841719abab5a9
      --- /dev/null
      +++ b/deps/npm/node_modules/node-gyp/lib/log.js
      @@ -0,0 +1,169 @@
      +'use strict'
      +
      +const procLog = require('proc-log')
      +const { format } = require('util')
      +
      +// helper to emit log messages with a predefined prefix
      +const logLevels = Object.keys(procLog).filter((k) => typeof procLog[k] === 'function')
      +const withPrefix = (prefix) => logLevels.reduce((acc, level) => {
      +  acc[level] = (...args) => procLog[level](prefix, ...args)
      +  return acc
      +}, {})
      +
      +// very basic ansi color generator
      +const COLORS = {
      +  wrap: (str, colors) => {
      +    const codes = colors.filter(c => typeof c === 'number')
      +    return `\x1b[${codes.join(';')}m${str}\x1b[0m`
      +  },
      +  inverse: 7,
      +  fg: {
      +    black: 30,
      +    red: 31,
      +    green: 32,
      +    yellow: 33,
      +    blue: 34,
      +    magenta: 35,
      +    cyan: 36,
      +    white: 37
      +  },
      +  bg: {
      +    black: 40,
      +    red: 41,
      +    green: 42,
      +    yellow: 43,
      +    blue: 44,
      +    magenta: 45,
      +    cyan: 46,
      +    white: 47
      +  }
      +}
      +
      +class Logger {
      +  #buffer = []
      +  #paused = null
      +  #level = null
      +  #stream = null
      +
      +  // ordered from loudest to quietest
      +  #levels = [{
      +    id: 'silly',
      +    display: 'sill',
      +    style: { inverse: true }
      +  }, {
      +    id: 'verbose',
      +    display: 'verb',
      +    style: { fg: 'cyan', bg: 'black' }
      +  }, {
      +    id: 'info',
      +    style: { fg: 'green' }
      +  }, {
      +    id: 'http',
      +    style: { fg: 'green', bg: 'black' }
      +  }, {
      +    id: 'notice',
      +    style: { fg: 'cyan', bg: 'black' }
      +  }, {
      +    id: 'warn',
      +    display: 'WARN',
      +    style: { fg: 'black', bg: 'yellow' }
      +  }, {
      +    id: 'error',
      +    display: 'ERR!',
      +    style: { fg: 'red', bg: 'black' }
      +  }]
      +
      +  constructor (stream) {
      +    process.on('log', (...args) => this.#onLog(...args))
      +    this.#levels = new Map(this.#levels.map((level, index) => [level.id, { ...level, index }]))
      +    this.level = 'info'
      +    this.stream = stream
      +    procLog.pause()
      +  }
      +
      +  get stream () {
      +    return this.#stream
      +  }
      +
      +  set stream (stream) {
      +    this.#stream = stream
      +  }
      +
      +  get level () {
      +    return this.#levels.get(this.#level) ?? null
      +  }
      +
      +  set level (level) {
      +    this.#level = this.#levels.get(level)?.id ?? null
      +  }
      +
      +  isVisible (level) {
      +    return this.level?.index <= this.#levels.get(level)?.index ?? -1
      +  }
      +
      +  #onLog (...args) {
      +    const [level] = args
      +
      +    if (level === 'pause') {
      +      this.#paused = true
      +      return
      +    }
      +
      +    if (level === 'resume') {
      +      this.#paused = false
      +      this.#buffer.forEach((b) => this.#log(...b))
      +      this.#buffer.length = 0
      +      return
      +    }
      +
      +    if (this.#paused) {
      +      this.#buffer.push(args)
      +      return
      +    }
      +
      +    this.#log(...args)
      +  }
      +
      +  #color (str, { fg, bg, inverse }) {
      +    if (!this.#stream?.isTTY) {
      +      return str
      +    }
      +
      +    return COLORS.wrap(str, [
      +      COLORS.fg[fg],
      +      COLORS.bg[bg],
      +      inverse && COLORS.inverse
      +    ])
      +  }
      +
      +  #log (levelId, msgPrefix, ...args) {
      +    if (!this.isVisible(levelId) || typeof this.#stream?.write !== 'function') {
      +      return
      +    }
      +
      +    const level = this.#levels.get(levelId)
      +
      +    const prefixParts = [
      +      this.#color('gyp', { fg: 'white', bg: 'black' }),
      +      this.#color(level.display ?? level.id, level.style)
      +    ]
      +    if (msgPrefix) {
      +      prefixParts.push(this.#color(msgPrefix, { fg: 'magenta' }))
      +    }
      +
      +    const prefix = prefixParts.join(' ').trim() + ' '
      +    const lines = format(...args).split(/\r?\n/).map(l => prefix + l.trim())
      +
      +    this.#stream.write(lines.join('\n') + '\n')
      +  }
      +}
      +
      +// used to suppress logs in tests
      +const NULL_LOGGER = !!process.env.NODE_GYP_NULL_LOGGER
      +
      +module.exports = {
      +  logger: new Logger(NULL_LOGGER ? null : process.stderr),
      +  stdout: NULL_LOGGER ? () => {} : (...args) => console.log(...args),
      +  withPrefix,
      +  ...procLog
      +}
      diff --git a/deps/npm/node_modules/node-gyp/lib/node-gyp.js b/deps/npm/node_modules/node-gyp/lib/node-gyp.js
      index e492ec1026d9d3..5e25bf996f8b22 100644
      --- a/deps/npm/node_modules/node-gyp/lib/node-gyp.js
      +++ b/deps/npm/node_modules/node-gyp/lib/node-gyp.js
      @@ -2,10 +2,10 @@
       
       const path = require('path')
       const nopt = require('nopt')
      -const log = require('npmlog')
      +const log = require('./log')
       const childProcess = require('child_process')
      -const EE = require('events').EventEmitter
      -const inherits = require('util').inherits
      +const { EventEmitter } = require('events')
      +
       const commands = [
         // Module build commands
         'build',
      @@ -17,199 +17,172 @@ const commands = [
         'list',
         'remove'
       ]
      -const aliases = {
      -  ls: 'list',
      -  rm: 'remove'
      -}
      -
      -// differentiate node-gyp's logs from npm's
      -log.heading = 'gyp'
      -
      -function gyp () {
      -  return new Gyp()
      -}
       
      -function Gyp () {
      -  var self = this
      +class Gyp extends EventEmitter {
      +  /**
      +   * Export the contents of the package.json.
      +   */
      +  package = require('../package.json')
      +
      +  /**
      +   * nopt configuration definitions
      +   */
      +  configDefs = {
      +    help: Boolean, // everywhere
      +    arch: String, // 'configure'
      +    cafile: String, // 'install'
      +    debug: Boolean, // 'build'
      +    directory: String, // bin
      +    make: String, // 'build'
      +    'msvs-version': String, // 'configure'
      +    ensure: Boolean, // 'install'
      +    solution: String, // 'build' (windows only)
      +    proxy: String, // 'install'
      +    noproxy: String, // 'install'
      +    devdir: String, // everywhere
      +    nodedir: String, // 'configure'
      +    loglevel: String, // everywhere
      +    python: String, // 'configure'
      +    'dist-url': String, // 'install'
      +    tarball: String, // 'install'
      +    jobs: String, // 'build'
      +    thin: String, // 'configure'
      +    'force-process-config': Boolean // 'configure'
      +  }
       
      -  this.devDir = ''
      -  this.commands = {}
      +  /**
      +   * nopt shorthands
      +   */
      +  shorthands = {
      +    release: '--no-debug',
      +    C: '--directory',
      +    debug: '--debug',
      +    j: '--jobs',
      +    silly: '--loglevel=silly',
      +    verbose: '--loglevel=verbose',
      +    silent: '--loglevel=silent'
      +  }
       
      -  commands.forEach(function (command) {
      -    self.commands[command] = function (argv, callback) {
      -      log.verbose('command', command, argv)
      -      return require('./' + command)(self, argv, callback)
      -    }
      -  })
      -}
      -inherits(Gyp, EE)
      -exports.Gyp = Gyp
      -var proto = Gyp.prototype
      -
      -/**
      - * Export the contents of the package.json.
      - */
      -
      -proto.package = require('../package.json')
      -
      -/**
      - * nopt configuration definitions
      - */
      -
      -proto.configDefs = {
      -  help: Boolean, // everywhere
      -  arch: String, // 'configure'
      -  cafile: String, // 'install'
      -  debug: Boolean, // 'build'
      -  directory: String, // bin
      -  make: String, // 'build'
      -  msvs_version: String, // 'configure'
      -  ensure: Boolean, // 'install'
      -  solution: String, // 'build' (windows only)
      -  proxy: String, // 'install'
      -  noproxy: String, // 'install'
      -  devdir: String, // everywhere
      -  nodedir: String, // 'configure'
      -  loglevel: String, // everywhere
      -  python: String, // 'configure'
      -  'dist-url': String, // 'install'
      -  tarball: String, // 'install'
      -  jobs: String, // 'build'
      -  thin: String, // 'configure'
      -  'force-process-config': Boolean // 'configure'
      -}
      +  /**
      +   * expose the command aliases for the bin file to use.
      +   */
      +  aliases = {
      +    ls: 'list',
      +    rm: 'remove'
      +  }
       
      -/**
      - * nopt shorthands
      - */
      -
      -proto.shorthands = {
      -  release: '--no-debug',
      -  C: '--directory',
      -  debug: '--debug',
      -  j: '--jobs',
      -  silly: '--loglevel=silly',
      -  verbose: '--loglevel=verbose',
      -  silent: '--loglevel=silent'
      -}
      +  constructor (...args) {
      +    super(...args)
       
      -/**
      - * expose the command aliases for the bin file to use.
      - */
      +    this.devDir = ''
       
      -proto.aliases = aliases
      +    this.commands = commands.reduce((acc, command) => {
      +      acc[command] = (argv) => require('./' + command)(this, argv)
      +      return acc
      +    }, {})
       
      -/**
      - * Parses the given argv array and sets the 'opts',
      - * 'argv' and 'command' properties.
      - */
      +    Object.defineProperty(this, 'version', {
      +      enumerable: true,
      +      get: function () { return this.package.version }
      +    })
      +  }
       
      -proto.parseArgv = function parseOpts (argv) {
      -  this.opts = nopt(this.configDefs, this.shorthands, argv)
      -  this.argv = this.opts.argv.remain.slice()
      +  /**
      +   * Parses the given argv array and sets the 'opts',
      +   * 'argv' and 'command' properties.
      +   */
      +  parseArgv (argv) {
      +    this.opts = nopt(this.configDefs, this.shorthands, argv)
      +    this.argv = this.opts.argv.remain.slice()
       
      -  var commands = this.todo = []
      +    const commands = this.todo = []
       
      -  // create a copy of the argv array with aliases mapped
      -  argv = this.argv.map(function (arg) {
      +    // create a copy of the argv array with aliases mapped
      +    argv = this.argv.map((arg) => {
           // is this an alias?
      -    if (arg in this.aliases) {
      -      arg = this.aliases[arg]
      -    }
      -    return arg
      -  }, this)
      -
      -  // process the mapped args into "command" objects ("name" and "args" props)
      -  argv.slice().forEach(function (arg) {
      -    if (arg in this.commands) {
      -      var args = argv.splice(0, argv.indexOf(arg))
      -      argv.shift()
      -      if (commands.length > 0) {
      -        commands[commands.length - 1].args = args
      +      if (arg in this.aliases) {
      +        arg = this.aliases[arg]
      +      }
      +      return arg
      +    })
      +
      +    // process the mapped args into "command" objects ("name" and "args" props)
      +    argv.slice().forEach((arg) => {
      +      if (arg in this.commands) {
      +        const args = argv.splice(0, argv.indexOf(arg))
      +        argv.shift()
      +        if (commands.length > 0) {
      +          commands[commands.length - 1].args = args
      +        }
      +        commands.push({ name: arg, args: [] })
             }
      -      commands.push({ name: arg, args: [] })
      +    })
      +    if (commands.length > 0) {
      +      commands[commands.length - 1].args = argv.splice(0)
           }
      -  }, this)
      -  if (commands.length > 0) {
      -    commands[commands.length - 1].args = argv.splice(0)
      -  }
       
      -  // support for inheriting config env variables from npm
      -  var npmConfigPrefix = 'npm_config_'
      -  Object.keys(process.env).forEach(function (name) {
      -    if (name.indexOf(npmConfigPrefix) !== 0) {
      -      return
      -    }
      -    var val = process.env[name]
      -    if (name === npmConfigPrefix + 'loglevel') {
      -      log.level = val
      -    } else {
      +    // support for inheriting config env variables from npm
      +    const npmConfigPrefix = 'npm_config_'
      +    Object.keys(process.env).forEach((name) => {
      +      if (name.indexOf(npmConfigPrefix) !== 0) {
      +        return
      +      }
      +      const val = process.env[name]
      +      if (name === npmConfigPrefix + 'loglevel') {
      +        log.logger.level = val
      +      } else {
             // add the user-defined options to the config
      -      name = name.substring(npmConfigPrefix.length)
      -      // gyp@741b7f1 enters an infinite loop when it encounters
      -      // zero-length options so ensure those don't get through.
      -      if (name) {
      +        name = name.substring(npmConfigPrefix.length)
      +        // gyp@741b7f1 enters an infinite loop when it encounters
      +        // zero-length options so ensure those don't get through.
      +        if (name) {
               // convert names like force_process_config to force-process-config
      -        if (name.includes('_')) {
      -          name = name.replace(/_/g, '-')
      +          if (name.includes('_')) {
      +            name = name.replace(/_/g, '-')
      +          }
      +          this.opts[name] = val
               }
      -        this.opts[name] = val
             }
      -    }
      -  }, this)
      +    })
       
      -  if (this.opts.loglevel) {
      -    log.level = this.opts.loglevel
      +    if (this.opts.loglevel) {
      +      log.logger.level = this.opts.loglevel
      +    }
      +    log.resume()
         }
      -  log.resume()
      -}
      -
      -/**
      - * Spawns a child process and emits a 'spawn' event.
      - */
       
      -proto.spawn = function spawn (command, args, opts) {
      -  if (!opts) {
      -    opts = {}
      -  }
      -  if (!opts.silent && !opts.stdio) {
      -    opts.stdio = [0, 1, 2]
      +  /**
      +   * Spawns a child process and emits a 'spawn' event.
      +   */
      +  spawn (command, args, opts) {
      +    if (!opts) {
      +      opts = {}
      +    }
      +    if (!opts.silent && !opts.stdio) {
      +      opts.stdio = [0, 1, 2]
      +    }
      +    const cp = childProcess.spawn(command, args, opts)
      +    log.info('spawn', command)
      +    log.info('spawn args', args)
      +    return cp
         }
      -  var cp = childProcess.spawn(command, args, opts)
      -  log.info('spawn', command)
      -  log.info('spawn args', args)
      -  return cp
      -}
       
      -/**
      - * Returns the usage instructions for node-gyp.
      - */
      -
      -proto.usage = function usage () {
      -  var str = [
      -    '',
      -    '  Usage: node-gyp  [options]',
      -    '',
      -    '  where  is one of:',
      -    commands.map(function (c) {
      -      return '    - ' + c + ' - ' + require('./' + c).usage
      -    }).join('\n'),
      -    '',
      -    'node-gyp@' + this.version + '  ' + path.resolve(__dirname, '..'),
      -    'node@' + process.versions.node
      -  ].join('\n')
      -  return str
      +  /**
      +   * Returns the usage instructions for node-gyp.
      +   */
      +  usage () {
      +    return [
      +      '',
      +      '  Usage: node-gyp  [options]',
      +      '',
      +      '  where  is one of:',
      +      commands.map((c) => '    - ' + c + ' - ' + require('./' + c).usage).join('\n'),
      +      '',
      +      'node-gyp@' + this.version + '  ' + path.resolve(__dirname, '..'),
      +      'node@' + process.versions.node
      +    ].join('\n')
      +  }
       }
       
      -/**
      - * Version number getter.
      - */
      -
      -Object.defineProperty(proto, 'version', {
      -  get: function () {
      -    return this.package.version
      -  },
      -  enumerable: true
      -})
      -
      -module.exports = exports = gyp
      +module.exports = () => new Gyp()
      +module.exports.Gyp = Gyp
      diff --git a/deps/npm/node_modules/node-gyp/lib/process-release.js b/deps/npm/node_modules/node-gyp/lib/process-release.js
      index 95b55e4426dee7..c9a319dfadd2bc 100644
      --- a/deps/npm/node_modules/node-gyp/lib/process-release.js
      +++ b/deps/npm/node_modules/node-gyp/lib/process-release.js
      @@ -1,11 +1,11 @@
      -/* eslint-disable node/no-deprecated-api */
      +/* eslint-disable n/no-deprecated-api */
       
       'use strict'
       
       const semver = require('semver')
       const url = require('url')
       const path = require('path')
      -const log = require('npmlog')
      +const log = require('./log')
       
       // versions where -headers.tar.gz started shipping
       const headersTarballRange = '>= 3.0.0 || ~0.12.10 || ~0.10.42'
      @@ -17,29 +17,28 @@ const bitsreV3 = /\/win-(x86|ia32|x64)\// // io.js v3.x.x shipped with "ia32" bu
       // file names. Inputs come from command-line switches (--target, --dist-url),
       // `process.version` and `process.release` where it exists.
       function processRelease (argv, gyp, defaultVersion, defaultRelease) {
      -  var version = (semver.valid(argv[0]) && argv[0]) || gyp.opts.target || defaultVersion
      -  var versionSemver = semver.parse(version)
      -  var overrideDistUrl = gyp.opts['dist-url'] || gyp.opts.disturl
      -  var isDefaultVersion
      -  var isNamedForLegacyIojs
      -  var name
      -  var distBaseUrl
      -  var baseUrl
      -  var libUrl32
      -  var libUrl64
      -  var libUrlArm64
      -  var tarballUrl
      -  var canGetHeaders
      +  let version = (semver.valid(argv[0]) && argv[0]) || gyp.opts.target || defaultVersion
      +  const versionSemver = semver.parse(version)
      +  let overrideDistUrl = gyp.opts['dist-url'] || gyp.opts.disturl
      +  let isNamedForLegacyIojs
      +  let name
      +  let distBaseUrl
      +  let baseUrl
      +  let libUrl32
      +  let libUrl64
      +  let libUrlArm64
      +  let tarballUrl
      +  let canGetHeaders
       
         if (!versionSemver) {
           // not a valid semver string, nothing we can do
      -    return { version: version }
      +    return { version }
         }
         // flatten version into String
         version = versionSemver.version
       
         // defaultVersion should come from process.version so ought to be valid semver
      -  isDefaultVersion = version === semver.parse(defaultVersion).version
      +  const isDefaultVersion = version === semver.parse(defaultVersion).version
       
         // can't use process.release if we're using --target=x.y.z
         if (!isDefaultVersion) {
      @@ -101,11 +100,11 @@ function processRelease (argv, gyp, defaultVersion, defaultRelease) {
         }
       
         return {
      -    version: version,
      +    version,
           semver: versionSemver,
      -    name: name,
      -    baseUrl: baseUrl,
      -    tarballUrl: tarballUrl,
      +    name,
      +    baseUrl,
      +    tarballUrl,
           shasumsUrl: url.resolve(baseUrl, 'SHASUMS256.txt'),
           versionDir: (name !== 'node' ? name + '-' : '') + version,
           ia32: {
      @@ -128,8 +127,8 @@ function normalizePath (p) {
       }
       
       function resolveLibUrl (name, defaultUrl, arch, versionMajor) {
      -  var base = url.resolve(defaultUrl, './')
      -  var hasLibUrl = bitsre.test(defaultUrl) || (versionMajor === 3 && bitsreV3.test(defaultUrl))
      +  const base = url.resolve(defaultUrl, './')
      +  const hasLibUrl = bitsre.test(defaultUrl) || (versionMajor === 3 && bitsreV3.test(defaultUrl))
       
         if (!hasLibUrl) {
           // let's assume it's a baseUrl then
      diff --git a/deps/npm/node_modules/node-gyp/lib/rebuild.js b/deps/npm/node_modules/node-gyp/lib/rebuild.js
      index a1c5b27cbe56a5..609817665e2dba 100644
      --- a/deps/npm/node_modules/node-gyp/lib/rebuild.js
      +++ b/deps/npm/node_modules/node-gyp/lib/rebuild.js
      @@ -1,12 +1,11 @@
       'use strict'
       
      -function rebuild (gyp, argv, callback) {
      +async function rebuild (gyp, argv) {
         gyp.todo.push(
           { name: 'clean', args: [] }
           , { name: 'configure', args: argv }
           , { name: 'build', args: [] }
         )
      -  process.nextTick(callback)
       }
       
       module.exports = rebuild
      diff --git a/deps/npm/node_modules/node-gyp/lib/remove.js b/deps/npm/node_modules/node-gyp/lib/remove.js
      index 8c945e5659001c..7efdb01a662e76 100644
      --- a/deps/npm/node_modules/node-gyp/lib/remove.js
      +++ b/deps/npm/node_modules/node-gyp/lib/remove.js
      @@ -1,46 +1,43 @@
       'use strict'
       
      -const fs = require('fs')
      -const rm = require('rimraf')
      +const fs = require('graceful-fs').promises
       const path = require('path')
      -const log = require('npmlog')
      +const log = require('./log')
       const semver = require('semver')
       
      -function remove (gyp, argv, callback) {
      -  var devDir = gyp.devDir
      +async function remove (gyp, argv) {
      +  const devDir = gyp.devDir
         log.verbose('remove', 'using node-gyp dir:', devDir)
       
         // get the user-specified version to remove
      -  var version = argv[0] || gyp.opts.target
      +  let version = argv[0] || gyp.opts.target
         log.verbose('remove', 'removing target version:', version)
       
         if (!version) {
      -    return callback(new Error('You must specify a version number to remove. Ex: "' + process.version + '"'))
      +    throw new Error('You must specify a version number to remove. Ex: "' + process.version + '"')
         }
       
      -  var versionSemver = semver.parse(version)
      +  const versionSemver = semver.parse(version)
         if (versionSemver) {
           // flatten the version Array into a String
           version = versionSemver.version
         }
       
      -  var versionPath = path.resolve(gyp.devDir, version)
      +  const versionPath = path.resolve(gyp.devDir, version)
         log.verbose('remove', 'removing development files for version:', version)
       
         // first check if its even installed
      -  fs.stat(versionPath, function (err) {
      -    if (err) {
      -      if (err.code === 'ENOENT') {
      -        callback(null, 'version was already uninstalled: ' + version)
      -      } else {
      -        callback(err)
      -      }
      -      return
      +  try {
      +    await fs.stat(versionPath)
      +  } catch (err) {
      +    if (err.code === 'ENOENT') {
      +      return 'version was already uninstalled: ' + version
           }
      -    // Go ahead and delete the dir
      -    rm(versionPath, callback)
      -  })
      +    throw err
      +  }
      +
      +  await fs.rm(versionPath, { recursive: true, force: true })
       }
       
      -module.exports = exports = remove
      +module.exports = remove
       module.exports.usage = 'Removes the node development files for the specified version'
      diff --git a/deps/npm/node_modules/node-gyp/lib/util.js b/deps/npm/node_modules/node-gyp/lib/util.js
      index 3e23c628e6ad71..3f6aeeb7dcb436 100644
      --- a/deps/npm/node_modules/node-gyp/lib/util.js
      +++ b/deps/npm/node_modules/node-gyp/lib/util.js
      @@ -1,64 +1,81 @@
       'use strict'
       
      -const log = require('npmlog')
      -const execFile = require('child_process').execFile
      +const cp = require('child_process')
       const path = require('path')
      +const { openSync, closeSync } = require('graceful-fs')
      +const log = require('./log')
       
      -function logWithPrefix (log, prefix) {
      -  function setPrefix (logFunction) {
      -    return (...args) => logFunction.apply(null, [ prefix, ...args ]) // eslint-disable-line
      -  }
      -  return {
      -    silly: setPrefix(log.silly),
      -    verbose: setPrefix(log.verbose),
      -    info: setPrefix(log.info),
      -    warn: setPrefix(log.warn),
      -    error: setPrefix(log.error)
      -  }
      -}
      +const execFile = async (...args) => new Promise((resolve) => {
      +  const child = cp.execFile(...args, (...a) => resolve(a))
      +  child.stdin.end()
      +})
       
      -function regGetValue (key, value, addOpts, cb) {
      +async function regGetValue (key, value, addOpts) {
         const outReValue = value.replace(/\W/g, '.')
         const outRe = new RegExp(`^\\s+${outReValue}\\s+REG_\\w+\\s+(\\S.*)$`, 'im')
         const reg = path.join(process.env.SystemRoot, 'System32', 'reg.exe')
         const regArgs = ['query', key, '/v', value].concat(addOpts)
       
         log.silly('reg', 'running', reg, regArgs)
      -  const child = execFile(reg, regArgs, { encoding: 'utf8' },
      -    function (err, stdout, stderr) {
      -      log.silly('reg', 'reg.exe stdout = %j', stdout)
      -      if (err || stderr.trim() !== '') {
      -        log.silly('reg', 'reg.exe err = %j', err && (err.stack || err))
      -        log.silly('reg', 'reg.exe stderr = %j', stderr)
      -        return cb(err, stderr)
      -      }
      +  const [err, stdout, stderr] = await execFile(reg, regArgs, { encoding: 'utf8' })
       
      -      const result = outRe.exec(stdout)
      -      if (!result) {
      -        log.silly('reg', 'error parsing stdout')
      -        return cb(new Error('Could not parse output of reg.exe'))
      -      }
      -      log.silly('reg', 'found: %j', result[1])
      -      cb(null, result[1])
      -    })
      -  child.stdin.end()
      +  log.silly('reg', 'reg.exe stdout = %j', stdout)
      +  if (err || stderr.trim() !== '') {
      +    log.silly('reg', 'reg.exe err = %j', err && (err.stack || err))
      +    log.silly('reg', 'reg.exe stderr = %j', stderr)
      +    if (err) {
      +      throw err
      +    }
      +    throw new Error(stderr)
      +  }
      +
      +  const result = outRe.exec(stdout)
      +  if (!result) {
      +    log.silly('reg', 'error parsing stdout')
      +    throw new Error('Could not parse output of reg.exe')
      +  }
      +
      +  log.silly('reg', 'found: %j', result[1])
      +  return result[1]
      +}
      +
      +async function regSearchKeys (keys, value, addOpts) {
      +  for (const key of keys) {
      +    try {
      +      return await regGetValue(key, value, addOpts)
      +    } catch {
      +      continue
      +    }
      +  }
       }
       
      -function regSearchKeys (keys, value, addOpts, cb) {
      -  var i = 0
      -  const search = () => {
      -    log.silly('reg-search', 'looking for %j in %j', value, keys[i])
      -    regGetValue(keys[i], value, addOpts, (err, res) => {
      -      ++i
      -      if (err && i < keys.length) { return search() }
      -      cb(err, res)
      -    })
      +/**
      + * Returns the first file or directory from an array of candidates that is
      + * readable by the current user, or undefined if none of the candidates are
      + * readable.
      + */
      +function findAccessibleSync (logprefix, dir, candidates) {
      +  for (let next = 0; next < candidates.length; next++) {
      +    const candidate = path.resolve(dir, candidates[next])
      +    let fd
      +    try {
      +      fd = openSync(candidate, 'r')
      +    } catch (e) {
      +      // this candidate was not found or not readable, do nothing
      +      log.silly(logprefix, 'Could not open %s: %s', candidate, e.message)
      +      continue
      +    }
      +    closeSync(fd)
      +    log.silly(logprefix, 'Found readable %s', candidate)
      +    return candidate
         }
      -  search()
      +
      +  return undefined
       }
       
       module.exports = {
      -  logWithPrefix: logWithPrefix,
      -  regGetValue: regGetValue,
      -  regSearchKeys: regSearchKeys
      +  execFile,
      +  regGetValue,
      +  regSearchKeys,
      +  findAccessibleSync
       }
      diff --git a/deps/npm/node_modules/node-gyp/macOS_Catalina.md b/deps/npm/node_modules/node-gyp/macOS_Catalina.md
      deleted file mode 100644
      index dde5fe3f7d4fbf..00000000000000
      --- a/deps/npm/node_modules/node-gyp/macOS_Catalina.md
      +++ /dev/null
      @@ -1,104 +0,0 @@
      -# Installation notes for macOS Catalina (v10.15)
      -
      -_This document specifically refers to upgrades from previous versions of macOS to Catalina (10.15). It should be removed from the source repository when Catalina ceases to be the latest macOS version or when future Catalina versions no longer raise these issues._
      -
      -**Both upgrading to macOS Catalina and running a Software Update in Catalina may cause normal `node-gyp` installations to fail. This might manifest as the following error during `npm install`:**
      -
      -```console
      -gyp: No Xcode or CLT version detected!
      -```
      -
      -## node-gyp v7
      -
      -The newest release of `node-gyp` should solve this problem. If you are using `node-gyp` directly then you should be able to install v7 and use it as-is.
      -
      -If you need to use `node-gyp` from within `npm` (e.g. through `npm install`), you will have to install `node-gyp` (either globally with `-g` or to a predictable location) and tell `npm` where the new version is. Either use:
      -
      -* `npm config set node_gyp `; or
      -* run `npm` with an environment variable prefix: `npm_config_node_gyp= npm install`
      -
      -Where "path to node-gyp" is to the `node-gyp` executable which may be a symlink in your global bin directory (e.g. `/usr/local/bin/node-gyp`), or a path to the `node-gyp` installation directory and the `bin/node-gyp.js` file within it (e.g. `/usr/local/lib/node_modules/node-gyp/bin/node-gyp.js`).
      -
      -**If you use `npm config set` to change your global `node_gyp` you are responsible for keeping it up to date and can't rely on `npm` to give you a newer version when available.** Use `npm config delete node_gyp` to unset this configuration option.
      -
      -## Fixing Catalina for older versions of `node-gyp`
      -
      -### Is my Mac running macOS Catalina?
      -Let's first make sure that your Mac is running Catalina:
      -```
      -% sw_vers
      -    ProductName:	Mac OS X
      -    ProductVersion:	10.15
      -    BuildVersion:	19A602
      -```
      -If `ProductVersion` is less then `10.15` then this document is not for you. Normal install docs for `node-gyp` on macOS can be found at https://github.com/nodejs/node-gyp#on-macos
      -
      -
      -### 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/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`.
      -
      -If test failed, there is a problem with your Xcode Command Line Tools installation. [Continue to Solutions](#Solutions).
      -
      -### Solutions
      -There are three ways to install the Xcode libraries `node-gyp` needs on macOS. People running Catalina have had success with some but not others in a way that has been unpredictable.
      -
      -1. With the full Xcode (~7.6 GB download) from the `App Store` app.
      -2. With the _much_ smaller Xcode Command Line Tools via `xcode-select --install`
      -3. With the _much_ smaller Xcode Command Line Tools via manual download. **For people running the latest version of Catalina (10.15.2 at the time of this writing), this has worked when the other two solutions haven't.**
      -
      -### Installing `node-gyp` using the full Xcode
      -1. `xcodebuild -version` should show `Xcode 11.1` or later.
      -    * If not, then install/upgrade Xcode from the App Store app.
      -2. Open the Xcode app and...
      -    * Under __Preferences > Locations__ select the tools if their location is empty.
      -    * Allow Xcode app to do an essential install of the most recent compiler tools.
      -3. Once all installations are _complete_, quit out of Xcode.
      -4. `sudo xcodebuild -license accept`  # If you agree with the licensing terms.
      -5. `softwareupdate -l`  # No listing is a good sign.
      -    * If Xcode or Tools upgrades are listed, use "Software Upgrade" to install them.
      -6. `xcode-select -version`  # Should return `xcode-select version 2370` or later.
      -7. `xcode-select -print-path`  # Should return `/Applications/Xcode.app/Contents/Developer`
      -8. Try the [_acid test_ steps above](#The-acid-test) to see if your Mac is ready.
      -9. If the _acid test_ does _not_ pass then...
      -10. `sudo xcode-select --reset`  # Enter root password.  No output is normal.
      -11. Repeat step 7 above.  Is the path different this time?  Repeat the _acid test_.
      -
      -### Installing `node-gyp` using the Xcode Command Line Tools via `xcode-select --install`
      -1. If the _acid test_ has not succeeded, then try `xcode-select --install`
      -2. If the installation command returns `xcode-select: error: command line tools are already installed, use "Software Update" to install updates`, continue to [remove and reinstall](#i-did-all-that-and-the-acid-test-still-does-not-pass--)
      -3. Wait until the install process is _complete_.
      -4. `softwareupdate -l`  # No listing is a good sign.
      -    * If Xcode or Tools upgrades are listed, use "Software Update" to install them.
      -5. `xcode-select -version`  # Should return `xcode-select version 2370` or later.
      -6. `xcode-select -print-path`  # Should return `/Library/Developer/CommandLineTools`
      -7. Try the [_acid test_ steps above](#The-acid-test) to see if your Mac is ready.
      -8. If the _acid test_ does _not_ pass then...
      -9. `sudo xcode-select --reset`  # Enter root password.  No output is normal.
      -10. Repeat step 5 above.  Is the path different this time?  Repeat the _acid test_.
      -
      -### Installing `node-gyp` using the Xcode Command Line Tools via manual download
      -1. Download the appropriate version of the "Command Line Tools for Xcode" for your version of Catalina from . As of MacOS 10.15.5, that's [Command_Line_Tools_for_Xcode_11.5.dmg](https://download.developer.apple.com/Developer_Tools/Command_Line_Tools_for_Xcode_11.5/Command_Line_Tools_for_Xcode_11.5.dmg)
      -2. Install the package.
      -3. Run the [_acid test_ steps above](#The-acid-test).
      -
      -### I did all that and the acid test still does not pass :-(
      -1. `sudo rm -rf $(xcode-select -print-path)`  # Enter root password.  No output is normal.
      -2. `sudo rm -rf /Library/Developer/CommandLineTools`  # Enter root password.
      -3. `sudo xcode-select --reset`
      -4. `xcode-select --install`
      -5. If the [_acid test_ steps above](#The-acid-test) still does _not_ pass then...
      -6. `npm explore npm -g -- npm install node-gyp@latest`
      -7. `npm explore npm -g -- npm explore npm-lifecycle -- npm install node-gyp@latest`
      -8. If the _acid test_ still does _not_ pass then...
      -9. Add a comment to https://github.com/nodejs/node-gyp/issues/1927 so we can improve.
      -
      -Lessons learned from:
      -* https://github.com/nodejs/node-gyp/issues/1779
      -* https://github.com/nodejs/node-gyp/issues/1861
      -* https://github.com/nodejs/node-gyp/issues/1927 and elsewhere
      -* Thanks to @rrrix for discovering Solution 3
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/abbrev/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/abbrev/LICENSE
      deleted file mode 100644
      index 9bcfa9d7d8d26e..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/abbrev/LICENSE
      +++ /dev/null
      @@ -1,46 +0,0 @@
      -This software is dual-licensed under the ISC and MIT licenses.
      -You may use this software under EITHER of the following licenses.
      -
      -----------
      -
      -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.
      -
      -----------
      -
      -Copyright Isaac Z. Schlueter and Contributors
      -All rights reserved.
      -
      -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/deps/npm/node_modules/node-gyp/node_modules/abbrev/abbrev.js b/deps/npm/node_modules/node-gyp/node_modules/abbrev/abbrev.js
      deleted file mode 100644
      index 7b1dc5d67694a2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/abbrev/abbrev.js
      +++ /dev/null
      @@ -1,61 +0,0 @@
      -module.exports = exports = abbrev.abbrev = abbrev
      -
      -abbrev.monkeyPatch = monkeyPatch
      -
      -function monkeyPatch () {
      -  Object.defineProperty(Array.prototype, 'abbrev', {
      -    value: function () { return abbrev(this) },
      -    enumerable: false, configurable: true, writable: true
      -  })
      -
      -  Object.defineProperty(Object.prototype, 'abbrev', {
      -    value: function () { return abbrev(Object.keys(this)) },
      -    enumerable: false, configurable: true, writable: true
      -  })
      -}
      -
      -function abbrev (list) {
      -  if (arguments.length !== 1 || !Array.isArray(list)) {
      -    list = Array.prototype.slice.call(arguments, 0)
      -  }
      -  for (var i = 0, l = list.length, args = [] ; i < l ; i ++) {
      -    args[i] = typeof list[i] === "string" ? list[i] : String(list[i])
      -  }
      -
      -  // sort them lexicographically, so that they're next to their nearest kin
      -  args = args.sort(lexSort)
      -
      -  // walk through each, seeing how much it has in common with the next and previous
      -  var abbrevs = {}
      -    , prev = ""
      -  for (var i = 0, l = args.length ; i < l ; i ++) {
      -    var current = args[i]
      -      , next = args[i + 1] || ""
      -      , nextMatches = true
      -      , prevMatches = true
      -    if (current === next) continue
      -    for (var j = 0, cl = current.length ; j < cl ; j ++) {
      -      var curChar = current.charAt(j)
      -      nextMatches = nextMatches && curChar === next.charAt(j)
      -      prevMatches = prevMatches && curChar === prev.charAt(j)
      -      if (!nextMatches && !prevMatches) {
      -        j ++
      -        break
      -      }
      -    }
      -    prev = current
      -    if (j === cl) {
      -      abbrevs[current] = current
      -      continue
      -    }
      -    for (var a = current.substr(0, j) ; j <= cl ; j ++) {
      -      abbrevs[a] = current
      -      a += current.charAt(j)
      -    }
      -  }
      -  return abbrevs
      -}
      -
      -function lexSort (a, b) {
      -  return a === b ? 0 : a > b ? 1 : -1
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/abbrev/package.json b/deps/npm/node_modules/node-gyp/node_modules/abbrev/package.json
      deleted file mode 100644
      index bf4e8015bba9d5..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/abbrev/package.json
      +++ /dev/null
      @@ -1,21 +0,0 @@
      -{
      -  "name": "abbrev",
      -  "version": "1.1.1",
      -  "description": "Like ruby's abbrev module, but in js",
      -  "author": "Isaac Z. Schlueter ",
      -  "main": "abbrev.js",
      -  "scripts": {
      -    "test": "tap test.js --100",
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "postpublish": "git push origin --all; git push origin --tags"
      -  },
      -  "repository": "http://github.com/isaacs/abbrev-js",
      -  "license": "ISC",
      -  "devDependencies": {
      -    "tap": "^10.1"
      -  },
      -  "files": [
      -    "abbrev.js"
      -  ]
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/LICENSE.md b/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/LICENSE.md
      deleted file mode 100644
      index 845be76f64e789..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/LICENSE.md
      +++ /dev/null
      @@ -1,18 +0,0 @@
      -ISC License
      -
      -Copyright 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 NPM DISCLAIMS ALL
      -WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
      -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
      -EVENT SHALL NPM 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/are-we-there-yet/lib/index.js b/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/index.js
      deleted file mode 100644
      index 57d8743fdad177..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/index.js
      +++ /dev/null
      @@ -1,4 +0,0 @@
      -'use strict'
      -exports.TrackerGroup = require('./tracker-group.js')
      -exports.Tracker = require('./tracker.js')
      -exports.TrackerStream = require('./tracker-stream.js')
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-base.js b/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-base.js
      deleted file mode 100644
      index 6f436875578a7a..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-base.js
      +++ /dev/null
      @@ -1,11 +0,0 @@
      -'use strict'
      -var EventEmitter = require('events').EventEmitter
      -var util = require('util')
      -
      -var trackerId = 0
      -var TrackerBase = module.exports = function (name) {
      -  EventEmitter.call(this)
      -  this.id = ++trackerId
      -  this.name = name
      -}
      -util.inherits(TrackerBase, EventEmitter)
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-group.js b/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-group.js
      deleted file mode 100644
      index a3c7af804c4d3b..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-group.js
      +++ /dev/null
      @@ -1,116 +0,0 @@
      -'use strict'
      -var util = require('util')
      -var TrackerBase = require('./tracker-base.js')
      -var Tracker = require('./tracker.js')
      -var TrackerStream = require('./tracker-stream.js')
      -
      -var TrackerGroup = module.exports = function (name) {
      -  TrackerBase.call(this, name)
      -  this.parentGroup = null
      -  this.trackers = []
      -  this.completion = {}
      -  this.weight = {}
      -  this.totalWeight = 0
      -  this.finished = false
      -  this.bubbleChange = bubbleChange(this)
      -}
      -util.inherits(TrackerGroup, TrackerBase)
      -
      -function bubbleChange (trackerGroup) {
      -  return function (name, completed, tracker) {
      -    trackerGroup.completion[tracker.id] = completed
      -    if (trackerGroup.finished) {
      -      return
      -    }
      -    trackerGroup.emit('change', name || trackerGroup.name, trackerGroup.completed(), trackerGroup)
      -  }
      -}
      -
      -TrackerGroup.prototype.nameInTree = function () {
      -  var names = []
      -  var from = this
      -  while (from) {
      -    names.unshift(from.name)
      -    from = from.parentGroup
      -  }
      -  return names.join('/')
      -}
      -
      -TrackerGroup.prototype.addUnit = function (unit, weight) {
      -  if (unit.addUnit) {
      -    var toTest = this
      -    while (toTest) {
      -      if (unit === toTest) {
      -        throw new Error(
      -          'Attempted to add tracker group ' +
      -          unit.name + ' to tree that already includes it ' +
      -          this.nameInTree(this))
      -      }
      -      toTest = toTest.parentGroup
      -    }
      -    unit.parentGroup = this
      -  }
      -  this.weight[unit.id] = weight || 1
      -  this.totalWeight += this.weight[unit.id]
      -  this.trackers.push(unit)
      -  this.completion[unit.id] = unit.completed()
      -  unit.on('change', this.bubbleChange)
      -  if (!this.finished) {
      -    this.emit('change', unit.name, this.completion[unit.id], unit)
      -  }
      -  return unit
      -}
      -
      -TrackerGroup.prototype.completed = function () {
      -  if (this.trackers.length === 0) {
      -    return 0
      -  }
      -  var valPerWeight = 1 / this.totalWeight
      -  var completed = 0
      -  for (var ii = 0; ii < this.trackers.length; ii++) {
      -    var trackerId = this.trackers[ii].id
      -    completed +=
      -      valPerWeight * this.weight[trackerId] * this.completion[trackerId]
      -  }
      -  return completed
      -}
      -
      -TrackerGroup.prototype.newGroup = function (name, weight) {
      -  return this.addUnit(new TrackerGroup(name), weight)
      -}
      -
      -TrackerGroup.prototype.newItem = function (name, todo, weight) {
      -  return this.addUnit(new Tracker(name, todo), weight)
      -}
      -
      -TrackerGroup.prototype.newStream = function (name, todo, weight) {
      -  return this.addUnit(new TrackerStream(name, todo), weight)
      -}
      -
      -TrackerGroup.prototype.finish = function () {
      -  this.finished = true
      -  if (!this.trackers.length) {
      -    this.addUnit(new Tracker(), 1, true)
      -  }
      -  for (var ii = 0; ii < this.trackers.length; ii++) {
      -    var tracker = this.trackers[ii]
      -    tracker.finish()
      -    tracker.removeListener('change', this.bubbleChange)
      -  }
      -  this.emit('change', this.name, 1, this)
      -}
      -
      -var buffer = '                                  '
      -TrackerGroup.prototype.debug = function (depth) {
      -  depth = depth || 0
      -  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) {
      -      output += tracker.debug(depth + 1)
      -    } else {
      -      output += indent + ' ' + tracker.name + ': ' + tracker.completed() + '\n'
      -    }
      -  })
      -  return output
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-stream.js b/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-stream.js
      deleted file mode 100644
      index e1cf85055702a7..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker-stream.js
      +++ /dev/null
      @@ -1,36 +0,0 @@
      -'use strict'
      -var util = require('util')
      -var stream = require('readable-stream')
      -var delegate = require('delegates')
      -var Tracker = require('./tracker.js')
      -
      -var TrackerStream = module.exports = function (name, size, options) {
      -  stream.Transform.call(this, options)
      -  this.tracker = new Tracker(name, size)
      -  this.name = name
      -  this.id = this.tracker.id
      -  this.tracker.on('change', delegateChange(this))
      -}
      -util.inherits(TrackerStream, stream.Transform)
      -
      -function delegateChange (trackerStream) {
      -  return function (name, completion, tracker) {
      -    trackerStream.emit('change', name, completion, trackerStream)
      -  }
      -}
      -
      -TrackerStream.prototype._transform = function (data, encoding, cb) {
      -  this.tracker.completeWork(data.length ? data.length : 1)
      -  this.push(data)
      -  cb()
      -}
      -
      -TrackerStream.prototype._flush = function (cb) {
      -  this.tracker.finish()
      -  cb()
      -}
      -
      -delegate(TrackerStream.prototype, 'tracker')
      -  .method('completed')
      -  .method('addWork')
      -  .method('finish')
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker.js b/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker.js
      deleted file mode 100644
      index a8f8b3ba013915..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/lib/tracker.js
      +++ /dev/null
      @@ -1,32 +0,0 @@
      -'use strict'
      -var util = require('util')
      -var TrackerBase = require('./tracker-base.js')
      -
      -var Tracker = module.exports = function (name, todo) {
      -  TrackerBase.call(this, name)
      -  this.workDone = 0
      -  this.workTodo = todo || 0
      -}
      -util.inherits(Tracker, TrackerBase)
      -
      -Tracker.prototype.completed = function () {
      -  return this.workTodo === 0 ? 0 : this.workDone / this.workTodo
      -}
      -
      -Tracker.prototype.addWork = function (work) {
      -  this.workTodo += work
      -  this.emit('change', this.name, this.completed(), this)
      -}
      -
      -Tracker.prototype.completeWork = function (work) {
      -  this.workDone += work
      -  if (this.workDone > this.workTodo) {
      -    this.workDone = this.workTodo
      -  }
      -  this.emit('change', this.name, this.completed(), this)
      -}
      -
      -Tracker.prototype.finish = function () {
      -  this.workTodo = this.workDone = 1
      -  this.emit('change', this.name, 1, this)
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/package.json b/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/package.json
      deleted file mode 100644
      index cc3d7504299fa2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/are-we-there-yet/package.json
      +++ /dev/null
      @@ -1,56 +0,0 @@
      -{
      -  "name": "are-we-there-yet",
      -  "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\"",
      -    "lintfix": "npm run lint -- --fix",
      -    "posttest": "npm run lint",
      -    "postsnap": "npm run lintfix --",
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "prepublishOnly": "git push origin --follow-tags",
      -    "snap": "tap",
      -    "postlint": "template-oss-check",
      -    "template-oss-apply": "template-oss-apply --force"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "https://github.com/npm/are-we-there-yet.git"
      -  },
      -  "author": "GitHub Inc.",
      -  "license": "ISC",
      -  "bugs": {
      -    "url": "https://github.com/npm/are-we-there-yet/issues"
      -  },
      -  "homepage": "https://github.com/npm/are-we-there-yet",
      -  "devDependencies": {
      -    "@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/"
      -  ],
      -  "engines": {
      -    "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
      -  },
      -  "tap": {
      -    "branches": 68,
      -    "statements": 92,
      -    "functions": 86,
      -    "lines": 92
      -  },
      -  "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/node-gyp/node_modules/brace-expansion/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/brace-expansion/LICENSE
      deleted file mode 100644
      index de3226673c3874..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/brace-expansion/LICENSE
      +++ /dev/null
      @@ -1,21 +0,0 @@
      -MIT License
      -
      -Copyright (c) 2013 Julian Gruber 
      -
      -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/deps/npm/node_modules/node-gyp/node_modules/brace-expansion/index.js b/deps/npm/node_modules/node-gyp/node_modules/brace-expansion/index.js
      deleted file mode 100644
      index 2b6f4f85c951fc..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/brace-expansion/index.js
      +++ /dev/null
      @@ -1,200 +0,0 @@
      -var concatMap = require('concat-map');
      -var balanced = require('balanced-match');
      -
      -module.exports = expandTop;
      -
      -var escSlash = '\0SLASH'+Math.random()+'\0';
      -var escOpen = '\0OPEN'+Math.random()+'\0';
      -var escClose = '\0CLOSE'+Math.random()+'\0';
      -var escComma = '\0COMMA'+Math.random()+'\0';
      -var escPeriod = '\0PERIOD'+Math.random()+'\0';
      -
      -function numeric(str) {
      -  return parseInt(str, 10) == str
      -    ? parseInt(str, 10)
      -    : str.charCodeAt(0);
      -}
      -
      -function escapeBraces(str) {
      -  return str.split('\\\\').join(escSlash)
      -            .split('\\{').join(escOpen)
      -            .split('\\}').join(escClose)
      -            .split('\\,').join(escComma)
      -            .split('\\.').join(escPeriod);
      -}
      -
      -function unescapeBraces(str) {
      -  return str.split(escSlash).join('\\')
      -            .split(escOpen).join('{')
      -            .split(escClose).join('}')
      -            .split(escComma).join(',')
      -            .split(escPeriod).join('.');
      -}
      -
      -
      -// Basically just str.split(","), but handling cases
      -// where we have nested braced sections, which should be
      -// treated as individual members, like {a,{b,c},d}
      -function parseCommaParts(str) {
      -  if (!str)
      -    return [''];
      -
      -  var parts = [];
      -  var m = balanced('{', '}', str);
      -
      -  if (!m)
      -    return str.split(',');
      -
      -  var pre = m.pre;
      -  var body = m.body;
      -  var post = m.post;
      -  var p = pre.split(',');
      -
      -  p[p.length-1] += '{' + body + '}';
      -  var postParts = parseCommaParts(post);
      -  if (post.length) {
      -    p[p.length-1] += postParts.shift();
      -    p.push.apply(p, postParts);
      -  }
      -
      -  parts.push.apply(parts, p);
      -
      -  return parts;
      -}
      -
      -function expandTop(str) {
      -  if (!str)
      -    return [];
      -
      -  // I don't know why Bash 4.3 does this, but it does.
      -  // Anything starting with {} will have the first two bytes preserved
      -  // but *only* at the top level, so {},a}b will not expand to anything,
      -  // but a{},b}c will be expanded to [a}c,abc].
      -  // One could argue that this is a bug in Bash, but since the goal of
      -  // this module is to match Bash's rules, we escape a leading {}
      -  if (str.substr(0, 2) === '{}') {
      -    str = '\\{\\}' + str.substr(2);
      -  }
      -
      -  return expand(escapeBraces(str), true).map(unescapeBraces);
      -}
      -
      -function identity(e) {
      -  return e;
      -}
      -
      -function embrace(str) {
      -  return '{' + str + '}';
      -}
      -function isPadded(el) {
      -  return /^-?0\d/.test(el);
      -}
      -
      -function lte(i, y) {
      -  return i <= y;
      -}
      -function gte(i, y) {
      -  return i >= y;
      -}
      -
      -function expand(str, isTop) {
      -  var expansions = [];
      -
      -  var m = balanced('{', '}', str);
      -  if (!m || /\$$/.test(m.pre)) return [str];
      -
      -  var isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body);
      -  var isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body);
      -  var isSequence = isNumericSequence || isAlphaSequence;
      -  var isOptions = m.body.indexOf(',') >= 0;
      -  if (!isSequence && !isOptions) {
      -    // {a},b}
      -    if (m.post.match(/,.*\}/)) {
      -      str = m.pre + '{' + m.body + escClose + m.post;
      -      return expand(str);
      -    }
      -    return [str];
      -  }
      -
      -  var n;
      -  if (isSequence) {
      -    n = m.body.split(/\.\./);
      -  } else {
      -    n = parseCommaParts(m.body);
      -    if (n.length === 1) {
      -      // x{{a,b}}y ==> x{a}y x{b}y
      -      n = expand(n[0], false).map(embrace);
      -      if (n.length === 1) {
      -        var post = m.post.length
      -          ? expand(m.post, false)
      -          : [''];
      -        return post.map(function(p) {
      -          return m.pre + n[0] + p;
      -        });
      -      }
      -    }
      -  }
      -
      -  // at this point, n is the parts, and we know it's not a comma set
      -  // with a single entry.
      -
      -  // no need to expand pre, since it is guaranteed to be free of brace-sets
      -  var pre = m.pre;
      -  var post = m.post.length
      -    ? expand(m.post, false)
      -    : [''];
      -
      -  var N;
      -
      -  if (isSequence) {
      -    var x = numeric(n[0]);
      -    var y = numeric(n[1]);
      -    var width = Math.max(n[0].length, n[1].length)
      -    var incr = n.length == 3
      -      ? Math.abs(numeric(n[2]))
      -      : 1;
      -    var test = lte;
      -    var reverse = y < x;
      -    if (reverse) {
      -      incr *= -1;
      -      test = gte;
      -    }
      -    var pad = n.some(isPadded);
      -
      -    N = [];
      -
      -    for (var i = x; test(i, y); i += incr) {
      -      var c;
      -      if (isAlphaSequence) {
      -        c = String.fromCharCode(i);
      -        if (c === '\\')
      -          c = '';
      -      } else {
      -        c = String(i);
      -        if (pad) {
      -          var need = width - c.length;
      -          if (need > 0) {
      -            var z = new Array(need + 1).join('0');
      -            if (i < 0)
      -              c = '-' + z + c.slice(1);
      -            else
      -              c = z + c;
      -          }
      -        }
      -      }
      -      N.push(c);
      -    }
      -  } else {
      -    N = concatMap(n, function(el) { return expand(el, false) });
      -  }
      -
      -  for (var j = 0; j < N.length; j++) {
      -    for (var k = 0; k < post.length; k++) {
      -      var expansion = pre + N[j] + post[k];
      -      if (!isTop || isSequence || expansion)
      -        expansions.push(expansion);
      -    }
      -  }
      -
      -  return expansions;
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/brace-expansion/package.json b/deps/npm/node_modules/node-gyp/node_modules/brace-expansion/package.json
      deleted file mode 100644
      index a18faa8fd67b82..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/brace-expansion/package.json
      +++ /dev/null
      @@ -1,47 +0,0 @@
      -{
      -  "name": "brace-expansion",
      -  "description": "Brace expansion as known from sh/bash",
      -  "version": "1.1.11",
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/juliangruber/brace-expansion.git"
      -  },
      -  "homepage": "https://github.com/juliangruber/brace-expansion",
      -  "main": "index.js",
      -  "scripts": {
      -    "test": "tape test/*.js",
      -    "gentest": "bash test/generate.sh",
      -    "bench": "matcha test/perf/bench.js"
      -  },
      -  "dependencies": {
      -    "balanced-match": "^1.0.0",
      -    "concat-map": "0.0.1"
      -  },
      -  "devDependencies": {
      -    "matcha": "^0.7.0",
      -    "tape": "^4.6.0"
      -  },
      -  "keywords": [],
      -  "author": {
      -    "name": "Julian Gruber",
      -    "email": "mail@juliangruber.com",
      -    "url": "http://juliangruber.com"
      -  },
      -  "license": "MIT",
      -  "testling": {
      -    "files": "test/*.js",
      -    "browsers": [
      -      "ie/8..latest",
      -      "firefox/20..latest",
      -      "firefox/nightly",
      -      "chrome/25..latest",
      -      "chrome/canary",
      -      "opera/12..latest",
      -      "opera/next",
      -      "safari/5.1..latest",
      -      "ipad/6.0..latest",
      -      "iphone/6.0..latest",
      -      "android-browser/4.2..latest"
      -    ]
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/LICENSE.md b/deps/npm/node_modules/node-gyp/node_modules/cacache/LICENSE.md
      deleted file mode 100644
      index 8d28acf866d932..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/LICENSE.md
      +++ /dev/null
      @@ -1,16 +0,0 @@
      -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 COPYRIGHT HOLDER DISCLAIMS
      -ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
      -WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
      -COPYRIGHT HOLDER 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/cacache/lib/content/path.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/path.js
      deleted file mode 100644
      index ad5a76a4f73f26..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/path.js
      +++ /dev/null
      @@ -1,29 +0,0 @@
      -'use strict'
      -
      -const contentVer = require('../../package.json')['cache-version'].content
      -const hashToSegments = require('../util/hash-to-segments')
      -const path = require('path')
      -const ssri = require('ssri')
      -
      -// Current format of content file path:
      -//
      -// sha512-BaSE64Hex= ->
      -// ~/.my-cache/content-v2/sha512/ba/da/55deadbeefc0ffee
      -//
      -module.exports = contentPath
      -
      -function contentPath (cache, integrity) {
      -  const sri = ssri.parse(integrity, { single: true })
      -  // contentPath is the *strongest* algo given
      -  return path.join(
      -    contentDir(cache),
      -    sri.algorithm,
      -    ...hashToSegments(sri.hexDigest())
      -  )
      -}
      -
      -module.exports.contentDir = contentDir
      -
      -function contentDir (cache) {
      -  return path.join(cache, `content-v${contentVer}`)
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/read.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/read.js
      deleted file mode 100644
      index f41b539df65dce..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/read.js
      +++ /dev/null
      @@ -1,166 +0,0 @@
      -'use strict'
      -
      -const fs = require('fs/promises')
      -const fsm = require('fs-minipass')
      -const ssri = require('ssri')
      -const contentPath = require('./path')
      -const Pipeline = require('minipass-pipeline')
      -
      -module.exports = read
      -
      -const MAX_SINGLE_READ_SIZE = 64 * 1024 * 1024
      -async function read (cache, integrity, opts = {}) {
      -  const { size } = opts
      -  const { stat, cpath, sri } = await withContentSri(cache, integrity, async (cpath, sri) => {
      -    // get size
      -    const stat = await fs.stat(cpath)
      -    return { stat, cpath, sri }
      -  })
      -  if (typeof size === 'number' && stat.size !== size) {
      -    throw sizeError(size, stat.size)
      -  }
      -
      -  if (stat.size > MAX_SINGLE_READ_SIZE) {
      -    return readPipeline(cpath, stat.size, sri, new Pipeline()).concat()
      -  }
      -
      -  const data = await fs.readFile(cpath, { encoding: null })
      -  if (!ssri.checkData(data, sri)) {
      -    throw integrityError(sri, cpath)
      -  }
      -
      -  return data
      -}
      -
      -const readPipeline = (cpath, size, sri, stream) => {
      -  stream.push(
      -    new fsm.ReadStream(cpath, {
      -      size,
      -      readSize: MAX_SINGLE_READ_SIZE,
      -    }),
      -    ssri.integrityStream({
      -      integrity: sri,
      -      size,
      -    })
      -  )
      -  return stream
      -}
      -
      -module.exports.stream = readStream
      -module.exports.readStream = readStream
      -
      -function readStream (cache, integrity, opts = {}) {
      -  const { size } = opts
      -  const stream = new Pipeline()
      -  // Set all this up to run on the stream and then just return the stream
      -  Promise.resolve().then(async () => {
      -    const { stat, cpath, sri } = await withContentSri(cache, integrity, async (cpath, sri) => {
      -      // just stat to ensure it exists
      -      const stat = await fs.stat(cpath)
      -      return { stat, cpath, sri }
      -    })
      -    if (typeof size === 'number' && size !== stat.size) {
      -      return stream.emit('error', sizeError(size, stat.size))
      -    }
      -
      -    return readPipeline(cpath, stat.size, sri, stream)
      -  }).catch(err => stream.emit('error', err))
      -
      -  return stream
      -}
      -
      -module.exports.copy = copy
      -
      -function copy (cache, integrity, dest) {
      -  return withContentSri(cache, integrity, (cpath, sri) => {
      -    return fs.copyFile(cpath, dest)
      -  })
      -}
      -
      -module.exports.hasContent = hasContent
      -
      -async function hasContent (cache, integrity) {
      -  if (!integrity) {
      -    return false
      -  }
      -
      -  try {
      -    return await withContentSri(cache, integrity, async (cpath, sri) => {
      -      const stat = await fs.stat(cpath)
      -      return { size: stat.size, sri, stat }
      -    })
      -  } catch (err) {
      -    if (err.code === 'ENOENT') {
      -      return false
      -    }
      -
      -    if (err.code === 'EPERM') {
      -      /* istanbul ignore else */
      -      if (process.platform !== 'win32') {
      -        throw err
      -      } else {
      -        return false
      -      }
      -    }
      -  }
      -}
      -
      -async function withContentSri (cache, integrity, fn) {
      -  const sri = ssri.parse(integrity)
      -  // If `integrity` has multiple entries, pick the first digest
      -  // with available local data.
      -  const algo = sri.pickAlgorithm()
      -  const digests = sri[algo]
      -
      -  if (digests.length <= 1) {
      -    const cpath = contentPath(cache, digests[0])
      -    return fn(cpath, digests[0])
      -  } else {
      -    // Can't use race here because a generic error can happen before
      -    // a ENOENT error, and can happen before a valid result
      -    const results = await Promise.all(digests.map(async (meta) => {
      -      try {
      -        return await withContentSri(cache, meta, fn)
      -      } catch (err) {
      -        if (err.code === 'ENOENT') {
      -          return Object.assign(
      -            new Error('No matching content found for ' + sri.toString()),
      -            { code: 'ENOENT' }
      -          )
      -        }
      -        return err
      -      }
      -    }))
      -    // Return the first non error if it is found
      -    const result = results.find((r) => !(r instanceof Error))
      -    if (result) {
      -      return result
      -    }
      -
      -    // Throw the No matching content found error
      -    const enoentError = results.find((r) => r.code === 'ENOENT')
      -    if (enoentError) {
      -      throw enoentError
      -    }
      -
      -    // Throw generic error
      -    throw results.find((r) => r instanceof Error)
      -  }
      -}
      -
      -function sizeError (expected, found) {
      -  /* eslint-disable-next-line max-len */
      -  const err = new Error(`Bad data size: expected inserted data to be ${expected} bytes, but got ${found} instead`)
      -  err.expected = expected
      -  err.found = found
      -  err.code = 'EBADSIZE'
      -  return err
      -}
      -
      -function integrityError (sri, path) {
      -  const err = new Error(`Integrity verification failed for ${sri} (${path})`)
      -  err.code = 'EINTEGRITY'
      -  err.sri = sri
      -  err.path = path
      -  return err
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/rm.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/rm.js
      deleted file mode 100644
      index ce58d679e4cb25..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/rm.js
      +++ /dev/null
      @@ -1,18 +0,0 @@
      -'use strict'
      -
      -const fs = require('fs/promises')
      -const contentPath = require('./path')
      -const { hasContent } = require('./read')
      -
      -module.exports = rm
      -
      -async function rm (cache, integrity) {
      -  const content = await hasContent(cache, integrity)
      -  // ~pretty~ sure we can't end up with a content lacking sri, but be safe
      -  if (content && content.sri) {
      -    await fs.rm(contentPath(cache, content.sri), { recursive: true, force: true })
      -    return true
      -  } else {
      -    return false
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/write.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/write.js
      deleted file mode 100644
      index 71461465812878..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/content/write.js
      +++ /dev/null
      @@ -1,205 +0,0 @@
      -'use strict'
      -
      -const events = require('events')
      -
      -const contentPath = require('./path')
      -const fs = require('fs/promises')
      -const { moveFile } = require('@npmcli/fs')
      -const { Minipass } = require('minipass')
      -const Pipeline = require('minipass-pipeline')
      -const Flush = require('minipass-flush')
      -const path = require('path')
      -const ssri = require('ssri')
      -const uniqueFilename = require('unique-filename')
      -const fsm = require('fs-minipass')
      -
      -module.exports = write
      -
      -// Cache of move operations in process so we don't duplicate
      -const moveOperations = new Map()
      -
      -async function write (cache, data, opts = {}) {
      -  const { algorithms, size, integrity } = opts
      -
      -  if (typeof size === 'number' && data.length !== size) {
      -    throw sizeError(size, data.length)
      -  }
      -
      -  const sri = ssri.fromData(data, algorithms ? { algorithms } : {})
      -  if (integrity && !ssri.checkData(data, integrity, opts)) {
      -    throw checksumError(integrity, sri)
      -  }
      -
      -  for (const algo in sri) {
      -    const tmp = await makeTmp(cache, opts)
      -    const hash = sri[algo].toString()
      -    try {
      -      await fs.writeFile(tmp.target, data, { flag: 'wx' })
      -      await moveToDestination(tmp, cache, hash, opts)
      -    } finally {
      -      if (!tmp.moved) {
      -        await fs.rm(tmp.target, { recursive: true, force: true })
      -      }
      -    }
      -  }
      -  return { integrity: sri, size: data.length }
      -}
      -
      -module.exports.stream = writeStream
      -
      -// writes proxied to the 'inputStream' that is passed to the Promise
      -// 'end' is deferred until content is handled.
      -class CacacheWriteStream extends Flush {
      -  constructor (cache, opts) {
      -    super()
      -    this.opts = opts
      -    this.cache = cache
      -    this.inputStream = new Minipass()
      -    this.inputStream.on('error', er => this.emit('error', er))
      -    this.inputStream.on('drain', () => this.emit('drain'))
      -    this.handleContentP = null
      -  }
      -
      -  write (chunk, encoding, cb) {
      -    if (!this.handleContentP) {
      -      this.handleContentP = handleContent(
      -        this.inputStream,
      -        this.cache,
      -        this.opts
      -      )
      -    }
      -    return this.inputStream.write(chunk, encoding, cb)
      -  }
      -
      -  flush (cb) {
      -    this.inputStream.end(() => {
      -      if (!this.handleContentP) {
      -        const e = new Error('Cache input stream was empty')
      -        e.code = 'ENODATA'
      -        // empty streams are probably emitting end right away.
      -        // 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()
      -        },
      -        (er) => cb(er)
      -      )
      -    })
      -  }
      -}
      -
      -function writeStream (cache, opts = {}) {
      -  return new CacacheWriteStream(cache, opts)
      -}
      -
      -async function handleContent (inputStream, cache, opts) {
      -  const tmp = await makeTmp(cache, opts)
      -  try {
      -    const res = await pipeToTmp(inputStream, cache, tmp.target, opts)
      -    await moveToDestination(
      -      tmp,
      -      cache,
      -      res.integrity,
      -      opts
      -    )
      -    return res
      -  } finally {
      -    if (!tmp.moved) {
      -      await fs.rm(tmp.target, { recursive: true, force: true })
      -    }
      -  }
      -}
      -
      -async function pipeToTmp (inputStream, cache, tmpTarget, opts) {
      -  const outStream = new fsm.WriteStream(tmpTarget, {
      -    flags: 'wx',
      -  })
      -
      -  if (opts.integrityEmitter) {
      -    // we need to create these all simultaneously since they can fire in any order
      -    const [integrity, size] = await Promise.all([
      -      events.once(opts.integrityEmitter, 'integrity').then(res => res[0]),
      -      events.once(opts.integrityEmitter, 'size').then(res => res[0]),
      -      new Pipeline(inputStream, outStream).promise(),
      -    ])
      -    return { integrity, size }
      -  }
      -
      -  let integrity
      -  let size
      -  const hashStream = ssri.integrityStream({
      -    integrity: opts.integrity,
      -    algorithms: opts.algorithms,
      -    size: opts.size,
      -  })
      -  hashStream.on('integrity', i => {
      -    integrity = i
      -  })
      -  hashStream.on('size', s => {
      -    size = s
      -  })
      -
      -  const pipeline = new Pipeline(inputStream, hashStream, outStream)
      -  await pipeline.promise()
      -  return { integrity, size }
      -}
      -
      -async function makeTmp (cache, opts) {
      -  const tmpTarget = uniqueFilename(path.join(cache, 'tmp'), opts.tmpPrefix)
      -  await fs.mkdir(path.dirname(tmpTarget), { recursive: true })
      -  return {
      -    target: tmpTarget,
      -    moved: false,
      -  }
      -}
      -
      -async function moveToDestination (tmp, cache, sri, opts) {
      -  const destination = contentPath(cache, sri)
      -  const destDir = path.dirname(destination)
      -  if (moveOperations.has(destination)) {
      -    return moveOperations.get(destination)
      -  }
      -  moveOperations.set(
      -    destination,
      -    fs.mkdir(destDir, { recursive: true })
      -      .then(async () => {
      -        await moveFile(tmp.target, destination, { overwrite: false })
      -        tmp.moved = true
      -        return tmp.moved
      -      })
      -      .catch(err => {
      -        if (!err.message.startsWith('The destination file exists')) {
      -          throw Object.assign(err, { code: 'EEXIST' })
      -        }
      -      }).finally(() => {
      -        moveOperations.delete(destination)
      -      })
      -
      -  )
      -  return moveOperations.get(destination)
      -}
      -
      -function sizeError (expected, found) {
      -  /* eslint-disable-next-line max-len */
      -  const err = new Error(`Bad data size: expected inserted data to be ${expected} bytes, but got ${found} instead`)
      -  err.expected = expected
      -  err.found = found
      -  err.code = 'EBADSIZE'
      -  return err
      -}
      -
      -function checksumError (expected, found) {
      -  const err = new Error(`Integrity check failed:
      -  Wanted: ${expected}
      -   Found: ${found}`)
      -  err.code = 'EINTEGRITY'
      -  err.expected = expected
      -  err.found = found
      -  return err
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/entry-index.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/entry-index.js
      deleted file mode 100644
      index 722a37af5ce157..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/entry-index.js
      +++ /dev/null
      @@ -1,330 +0,0 @@
      -'use strict'
      -
      -const crypto = require('crypto')
      -const {
      -  appendFile,
      -  mkdir,
      -  readFile,
      -  readdir,
      -  rm,
      -  writeFile,
      -} = require('fs/promises')
      -const { Minipass } = require('minipass')
      -const path = require('path')
      -const ssri = require('ssri')
      -const uniqueFilename = require('unique-filename')
      -
      -const contentPath = require('./content/path')
      -const hashToSegments = require('./util/hash-to-segments')
      -const indexV = require('../package.json')['cache-version'].index
      -const { moveFile } = require('@npmcli/fs')
      -
      -module.exports.NotFoundError = class NotFoundError extends Error {
      -  constructor (cache, key) {
      -    super(`No cache entry for ${key} found in ${cache}`)
      -    this.code = 'ENOENT'
      -    this.cache = cache
      -    this.key = key
      -  }
      -}
      -
      -module.exports.compact = compact
      -
      -async function compact (cache, key, matchFn, opts = {}) {
      -  const bucket = bucketPath(cache, key)
      -  const entries = await bucketEntries(bucket)
      -  const newEntries = []
      -  // we loop backwards because the bottom-most result is the newest
      -  // since we add new entries with appendFile
      -  for (let i = entries.length - 1; i >= 0; --i) {
      -    const entry = entries[i]
      -    // a null integrity could mean either a delete was appended
      -    // or the user has simply stored an index that does not map
      -    // to any content. we determine if the user wants to keep the
      -    // null integrity based on the validateEntry function passed in options.
      -    // if the integrity is null and no validateEntry is provided, we break
      -    // as we consider the null integrity to be a deletion of everything
      -    // that came before it.
      -    if (entry.integrity === null && !opts.validateEntry) {
      -      break
      -    }
      -
      -    // if this entry is valid, and it is either the first entry or
      -    // the newEntries array doesn't already include an entry that
      -    // matches this one based on the provided matchFn, then we add
      -    // it to the beginning of our list
      -    if ((!opts.validateEntry || opts.validateEntry(entry) === true) &&
      -      (newEntries.length === 0 ||
      -        !newEntries.find((oldEntry) => matchFn(oldEntry, entry)))) {
      -      newEntries.unshift(entry)
      -    }
      -  }
      -
      -  const newIndex = '\n' + newEntries.map((entry) => {
      -    const stringified = JSON.stringify(entry)
      -    const hash = hashEntry(stringified)
      -    return `${hash}\t${stringified}`
      -  }).join('\n')
      -
      -  const setup = async () => {
      -    const target = uniqueFilename(path.join(cache, 'tmp'), opts.tmpPrefix)
      -    await mkdir(path.dirname(target), { recursive: true })
      -    return {
      -      target,
      -      moved: false,
      -    }
      -  }
      -
      -  const teardown = async (tmp) => {
      -    if (!tmp.moved) {
      -      return rm(tmp.target, { recursive: true, force: true })
      -    }
      -  }
      -
      -  const write = async (tmp) => {
      -    await writeFile(tmp.target, newIndex, { flag: 'wx' })
      -    await mkdir(path.dirname(bucket), { recursive: true })
      -    // we use @npmcli/move-file directly here because we
      -    // want to overwrite the existing file
      -    await moveFile(tmp.target, bucket)
      -    tmp.moved = true
      -  }
      -
      -  // write the file atomically
      -  const tmp = await setup()
      -  try {
      -    await write(tmp)
      -  } finally {
      -    await teardown(tmp)
      -  }
      -
      -  // we reverse the list we generated such that the newest
      -  // entries come first in order to make looping through them easier
      -  // the true passed to formatEntry tells it to keep null
      -  // integrity values, if they made it this far it's because
      -  // validateEntry returned true, and as such we should return it
      -  return newEntries.reverse().map((entry) => formatEntry(cache, entry, true))
      -}
      -
      -module.exports.insert = insert
      -
      -async function insert (cache, key, integrity, opts = {}) {
      -  const { metadata, size, time } = opts
      -  const bucket = bucketPath(cache, key)
      -  const entry = {
      -    key,
      -    integrity: integrity && ssri.stringify(integrity),
      -    time: time || Date.now(),
      -    size,
      -    metadata,
      -  }
      -  try {
      -    await mkdir(path.dirname(bucket), { recursive: true })
      -    const stringified = JSON.stringify(entry)
      -    // NOTE - Cleverness ahoy!
      -    //
      -    // This works because it's tremendously unlikely for an entry to corrupt
      -    // another while still preserving the string length of the JSON in
      -    // question. So, we just slap the length in there and verify it on read.
      -    //
      -    // Thanks to @isaacs for the whiteboarding session that ended up with
      -    // this.
      -    await appendFile(bucket, `\n${hashEntry(stringified)}\t${stringified}`)
      -  } catch (err) {
      -    if (err.code === 'ENOENT') {
      -      return undefined
      -    }
      -
      -    throw err
      -  }
      -  return formatEntry(cache, entry)
      -}
      -
      -module.exports.find = find
      -
      -async function find (cache, key) {
      -  const bucket = bucketPath(cache, key)
      -  try {
      -    const entries = await bucketEntries(bucket)
      -    return entries.reduce((latest, next) => {
      -      if (next && next.key === key) {
      -        return formatEntry(cache, next)
      -      } else {
      -        return latest
      -      }
      -    }, null)
      -  } catch (err) {
      -    if (err.code === 'ENOENT') {
      -      return null
      -    } else {
      -      throw err
      -    }
      -  }
      -}
      -
      -module.exports.delete = del
      -
      -function del (cache, key, opts = {}) {
      -  if (!opts.removeFully) {
      -    return insert(cache, key, null, opts)
      -  }
      -
      -  const bucket = bucketPath(cache, key)
      -  return rm(bucket, { recursive: true, force: true })
      -}
      -
      -module.exports.lsStream = lsStream
      -
      -function lsStream (cache) {
      -  const indexDir = bucketDir(cache)
      -  const stream = new Minipass({ objectMode: true })
      -
      -  // Set all this up to run on the stream and then just return the stream
      -  Promise.resolve().then(async () => {
      -    const buckets = await readdirOrEmpty(indexDir)
      -    await Promise.all(buckets.map(async (bucket) => {
      -      const bucketPath = path.join(indexDir, bucket)
      -      const subbuckets = await readdirOrEmpty(bucketPath)
      -      await Promise.all(subbuckets.map(async (subbucket) => {
      -        const subbucketPath = path.join(bucketPath, subbucket)
      -
      -        // "/cachename//./*"
      -        const subbucketEntries = await readdirOrEmpty(subbucketPath)
      -        await Promise.all(subbucketEntries.map(async (entry) => {
      -          const entryPath = path.join(subbucketPath, entry)
      -          try {
      -            const entries = await bucketEntries(entryPath)
      -            // using a Map here prevents duplicate keys from showing up
      -            // twice, I guess?
      -            const reduced = entries.reduce((acc, entry) => {
      -              acc.set(entry.key, entry)
      -              return acc
      -            }, new Map())
      -            // reduced is a map of key => entry
      -            for (const entry of reduced.values()) {
      -              const formatted = formatEntry(cache, entry)
      -              if (formatted) {
      -                stream.write(formatted)
      -              }
      -            }
      -          } catch (err) {
      -            if (err.code === 'ENOENT') {
      -              return undefined
      -            }
      -            throw err
      -          }
      -        }))
      -      }))
      -    }))
      -    stream.end()
      -    return stream
      -  }).catch(err => stream.emit('error', err))
      -
      -  return stream
      -}
      -
      -module.exports.ls = ls
      -
      -async function ls (cache) {
      -  const entries = await lsStream(cache).collect()
      -  return entries.reduce((acc, xs) => {
      -    acc[xs.key] = xs
      -    return acc
      -  }, {})
      -}
      -
      -module.exports.bucketEntries = bucketEntries
      -
      -async function bucketEntries (bucket, filter) {
      -  const data = await readFile(bucket, 'utf8')
      -  return _bucketEntries(data, filter)
      -}
      -
      -function _bucketEntries (data, filter) {
      -  const entries = []
      -  data.split('\n').forEach((entry) => {
      -    if (!entry) {
      -      return
      -    }
      -
      -    const pieces = entry.split('\t')
      -    if (!pieces[1] || hashEntry(pieces[1]) !== pieces[0]) {
      -      // Hash is no good! Corruption or malice? Doesn't matter!
      -      // EJECT EJECT
      -      return
      -    }
      -    let obj
      -    try {
      -      obj = JSON.parse(pieces[1])
      -    } catch (_) {
      -      // eslint-ignore-next-line no-empty-block
      -    }
      -    // coverage disabled here, no need to test with an entry that parses to something falsey
      -    // istanbul ignore else
      -    if (obj) {
      -      entries.push(obj)
      -    }
      -  })
      -  return entries
      -}
      -
      -module.exports.bucketDir = bucketDir
      -
      -function bucketDir (cache) {
      -  return path.join(cache, `index-v${indexV}`)
      -}
      -
      -module.exports.bucketPath = bucketPath
      -
      -function bucketPath (cache, key) {
      -  const hashed = hashKey(key)
      -  return path.join.apply(
      -    path,
      -    [bucketDir(cache)].concat(hashToSegments(hashed))
      -  )
      -}
      -
      -module.exports.hashKey = hashKey
      -
      -function hashKey (key) {
      -  return hash(key, 'sha256')
      -}
      -
      -module.exports.hashEntry = hashEntry
      -
      -function hashEntry (str) {
      -  return hash(str, 'sha1')
      -}
      -
      -function hash (str, digest) {
      -  return crypto
      -    .createHash(digest)
      -    .update(str)
      -    .digest('hex')
      -}
      -
      -function formatEntry (cache, entry, keepAll) {
      -  // Treat null digests as deletions. They'll shadow any previous entries.
      -  if (!entry.integrity && !keepAll) {
      -    return null
      -  }
      -
      -  return {
      -    key: entry.key,
      -    integrity: entry.integrity,
      -    path: entry.integrity ? contentPath(cache, entry.integrity) : undefined,
      -    size: entry.size,
      -    time: entry.time,
      -    metadata: entry.metadata,
      -  }
      -}
      -
      -function readdirOrEmpty (dir) {
      -  return readdir(dir).catch((err) => {
      -    if (err.code === 'ENOENT' || err.code === 'ENOTDIR') {
      -      return []
      -    }
      -
      -    throw err
      -  })
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/get.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/get.js
      deleted file mode 100644
      index 80ec206c7ecaaa..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/get.js
      +++ /dev/null
      @@ -1,170 +0,0 @@
      -'use strict'
      -
      -const Collect = require('minipass-collect')
      -const { Minipass } = require('minipass')
      -const Pipeline = require('minipass-pipeline')
      -
      -const index = require('./entry-index')
      -const memo = require('./memoization')
      -const read = require('./content/read')
      -
      -async function getData (cache, key, opts = {}) {
      -  const { integrity, memoize, size } = opts
      -  const memoized = memo.get(cache, key, opts)
      -  if (memoized && memoize !== false) {
      -    return {
      -      metadata: memoized.entry.metadata,
      -      data: memoized.data,
      -      integrity: memoized.entry.integrity,
      -      size: memoized.entry.size,
      -    }
      -  }
      -
      -  const entry = await index.find(cache, key, opts)
      -  if (!entry) {
      -    throw new index.NotFoundError(cache, key)
      -  }
      -  const data = await read(cache, entry.integrity, { integrity, size })
      -  if (memoize) {
      -    memo.put(cache, entry, data, opts)
      -  }
      -
      -  return {
      -    data,
      -    metadata: entry.metadata,
      -    size: entry.size,
      -    integrity: entry.integrity,
      -  }
      -}
      -module.exports = getData
      -
      -async function getDataByDigest (cache, key, opts = {}) {
      -  const { integrity, memoize, size } = opts
      -  const memoized = memo.get.byDigest(cache, key, opts)
      -  if (memoized && memoize !== false) {
      -    return memoized
      -  }
      -
      -  const res = await read(cache, key, { integrity, size })
      -  if (memoize) {
      -    memo.put.byDigest(cache, key, res, opts)
      -  }
      -  return res
      -}
      -module.exports.byDigest = getDataByDigest
      -
      -const getMemoizedStream = (memoized) => {
      -  const stream = new Minipass()
      -  stream.on('newListener', function (ev, cb) {
      -    ev === 'metadata' && cb(memoized.entry.metadata)
      -    ev === 'integrity' && cb(memoized.entry.integrity)
      -    ev === 'size' && cb(memoized.entry.size)
      -  })
      -  stream.end(memoized.data)
      -  return stream
      -}
      -
      -function getStream (cache, key, opts = {}) {
      -  const { memoize, size } = opts
      -  const memoized = memo.get(cache, key, opts)
      -  if (memoized && memoize !== false) {
      -    return getMemoizedStream(memoized)
      -  }
      -
      -  const stream = new Pipeline()
      -  // Set all this up to run on the stream and then just return the stream
      -  Promise.resolve().then(async () => {
      -    const entry = await index.find(cache, key)
      -    if (!entry) {
      -      throw new index.NotFoundError(cache, key)
      -    }
      -
      -    stream.emit('metadata', entry.metadata)
      -    stream.emit('integrity', entry.integrity)
      -    stream.emit('size', entry.size)
      -    stream.on('newListener', function (ev, cb) {
      -      ev === 'metadata' && cb(entry.metadata)
      -      ev === 'integrity' && cb(entry.integrity)
      -      ev === 'size' && cb(entry.size)
      -    })
      -
      -    const src = read.readStream(
      -      cache,
      -      entry.integrity,
      -      { ...opts, size: typeof size !== 'number' ? entry.size : size }
      -    )
      -
      -    if (memoize) {
      -      const memoStream = new Collect.PassThrough()
      -      memoStream.on('collect', data => memo.put(cache, entry, data, opts))
      -      stream.unshift(memoStream)
      -    }
      -    stream.unshift(src)
      -    return stream
      -  }).catch((err) => stream.emit('error', err))
      -
      -  return stream
      -}
      -
      -module.exports.stream = getStream
      -
      -function getStreamDigest (cache, integrity, opts = {}) {
      -  const { memoize } = opts
      -  const memoized = memo.get.byDigest(cache, integrity, opts)
      -  if (memoized && memoize !== false) {
      -    const stream = new Minipass()
      -    stream.end(memoized)
      -    return stream
      -  } else {
      -    const stream = read.readStream(cache, integrity, opts)
      -    if (!memoize) {
      -      return stream
      -    }
      -
      -    const memoStream = new Collect.PassThrough()
      -    memoStream.on('collect', data => memo.put.byDigest(
      -      cache,
      -      integrity,
      -      data,
      -      opts
      -    ))
      -    return new Pipeline(stream, memoStream)
      -  }
      -}
      -
      -module.exports.stream.byDigest = getStreamDigest
      -
      -function info (cache, key, opts = {}) {
      -  const { memoize } = opts
      -  const memoized = memo.get(cache, key, opts)
      -  if (memoized && memoize !== false) {
      -    return Promise.resolve(memoized.entry)
      -  } else {
      -    return index.find(cache, key)
      -  }
      -}
      -module.exports.info = info
      -
      -async function copy (cache, key, dest, opts = {}) {
      -  const entry = await index.find(cache, key, opts)
      -  if (!entry) {
      -    throw new index.NotFoundError(cache, key)
      -  }
      -  await read.copy(cache, entry.integrity, dest, opts)
      -  return {
      -    metadata: entry.metadata,
      -    size: entry.size,
      -    integrity: entry.integrity,
      -  }
      -}
      -
      -module.exports.copy = copy
      -
      -async function copyByDigest (cache, key, dest, opts = {}) {
      -  await read.copy(cache, key, dest, opts)
      -  return key
      -}
      -
      -module.exports.copy.byDigest = copyByDigest
      -
      -module.exports.hasContent = read.hasContent
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/index.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/index.js
      deleted file mode 100644
      index c9b0da5f3a271b..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/index.js
      +++ /dev/null
      @@ -1,42 +0,0 @@
      -'use strict'
      -
      -const get = require('./get.js')
      -const put = require('./put.js')
      -const rm = require('./rm.js')
      -const verify = require('./verify.js')
      -const { clearMemoized } = require('./memoization.js')
      -const tmp = require('./util/tmp.js')
      -const index = require('./entry-index.js')
      -
      -module.exports.index = {}
      -module.exports.index.compact = index.compact
      -module.exports.index.insert = index.insert
      -
      -module.exports.ls = index.ls
      -module.exports.ls.stream = index.lsStream
      -
      -module.exports.get = get
      -module.exports.get.byDigest = get.byDigest
      -module.exports.get.stream = get.stream
      -module.exports.get.stream.byDigest = get.stream.byDigest
      -module.exports.get.copy = get.copy
      -module.exports.get.copy.byDigest = get.copy.byDigest
      -module.exports.get.info = get.info
      -module.exports.get.hasContent = get.hasContent
      -
      -module.exports.put = put
      -module.exports.put.stream = put.stream
      -
      -module.exports.rm = rm.entry
      -module.exports.rm.all = rm.all
      -module.exports.rm.entry = module.exports.rm
      -module.exports.rm.content = rm.content
      -
      -module.exports.clearMemoized = clearMemoized
      -
      -module.exports.tmp = {}
      -module.exports.tmp.mkdir = tmp.mkdir
      -module.exports.tmp.withTmp = tmp.withTmp
      -
      -module.exports.verify = verify
      -module.exports.verify.lastRun = verify.lastRun
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/memoization.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/memoization.js
      deleted file mode 100644
      index 0ff604a479c9c1..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/memoization.js
      +++ /dev/null
      @@ -1,72 +0,0 @@
      -'use strict'
      -
      -const LRU = require('lru-cache')
      -
      -const MEMOIZED = new LRU({
      -  max: 500,
      -  maxSize: 50 * 1024 * 1024, // 50MB
      -  ttl: 3 * 60 * 1000, // 3 minutes
      -  sizeCalculation: (entry, key) => key.startsWith('key:') ? entry.data.length : entry.length,
      -})
      -
      -module.exports.clearMemoized = clearMemoized
      -
      -function clearMemoized () {
      -  const old = {}
      -  MEMOIZED.forEach((v, k) => {
      -    old[k] = v
      -  })
      -  MEMOIZED.clear()
      -  return old
      -}
      -
      -module.exports.put = put
      -
      -function put (cache, entry, data, opts) {
      -  pickMem(opts).set(`key:${cache}:${entry.key}`, { entry, data })
      -  putDigest(cache, entry.integrity, data, opts)
      -}
      -
      -module.exports.put.byDigest = putDigest
      -
      -function putDigest (cache, integrity, data, opts) {
      -  pickMem(opts).set(`digest:${cache}:${integrity}`, data)
      -}
      -
      -module.exports.get = get
      -
      -function get (cache, key, opts) {
      -  return pickMem(opts).get(`key:${cache}:${key}`)
      -}
      -
      -module.exports.get.byDigest = getDigest
      -
      -function getDigest (cache, integrity, opts) {
      -  return pickMem(opts).get(`digest:${cache}:${integrity}`)
      -}
      -
      -class ObjProxy {
      -  constructor (obj) {
      -    this.obj = obj
      -  }
      -
      -  get (key) {
      -    return this.obj[key]
      -  }
      -
      -  set (key, val) {
      -    this.obj[key] = val
      -  }
      -}
      -
      -function pickMem (opts) {
      -  if (!opts || !opts.memoize) {
      -    return MEMOIZED
      -  } else if (opts.memoize.get && opts.memoize.set) {
      -    return opts.memoize
      -  } else if (typeof opts.memoize === 'object') {
      -    return new ObjProxy(opts.memoize)
      -  } else {
      -    return MEMOIZED
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/put.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/put.js
      deleted file mode 100644
      index 9fc932d5f6dec5..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/put.js
      +++ /dev/null
      @@ -1,80 +0,0 @@
      -'use strict'
      -
      -const index = require('./entry-index')
      -const memo = require('./memoization')
      -const write = require('./content/write')
      -const Flush = require('minipass-flush')
      -const { PassThrough } = require('minipass-collect')
      -const Pipeline = require('minipass-pipeline')
      -
      -const putOpts = (opts) => ({
      -  algorithms: ['sha512'],
      -  ...opts,
      -})
      -
      -module.exports = putData
      -
      -async function putData (cache, key, data, opts = {}) {
      -  const { memoize } = opts
      -  opts = putOpts(opts)
      -  const res = await write(cache, data, opts)
      -  const entry = await index.insert(cache, key, res.integrity, { ...opts, size: res.size })
      -  if (memoize) {
      -    memo.put(cache, entry, data, opts)
      -  }
      -
      -  return res.integrity
      -}
      -
      -module.exports.stream = putStream
      -
      -function putStream (cache, key, opts = {}) {
      -  const { memoize } = opts
      -  opts = putOpts(opts)
      -  let integrity
      -  let size
      -  let error
      -
      -  let memoData
      -  const pipeline = new Pipeline()
      -  // first item in the pipeline is the memoizer, because we need
      -  // that to end first and get the collected data.
      -  if (memoize) {
      -    const memoizer = new PassThrough().on('collect', data => {
      -      memoData = data
      -    })
      -    pipeline.push(memoizer)
      -  }
      -
      -  // contentStream is a write-only, not a passthrough
      -  // no data comes out of it.
      -  const contentStream = write.stream(cache, opts)
      -    .on('integrity', (int) => {
      -      integrity = int
      -    })
      -    .on('size', (s) => {
      -      size = s
      -    })
      -    .on('error', (err) => {
      -      error = err
      -    })
      -
      -  pipeline.push(contentStream)
      -
      -  // last but not least, we write the index and emit hash and size,
      -  // and memoize if we're doing that
      -  pipeline.push(new Flush({
      -    async flush () {
      -      if (!error) {
      -        const entry = await index.insert(cache, key, integrity, { ...opts, size })
      -        if (memoize && memoData) {
      -          memo.put(cache, entry, memoData, opts)
      -        }
      -        pipeline.emit('integrity', integrity)
      -        pipeline.emit('size', size)
      -      }
      -    },
      -  }))
      -
      -  return pipeline
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/rm.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/rm.js
      deleted file mode 100644
      index a94760c7cf2430..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/rm.js
      +++ /dev/null
      @@ -1,31 +0,0 @@
      -'use strict'
      -
      -const { rm } = require('fs/promises')
      -const glob = require('./util/glob.js')
      -const index = require('./entry-index')
      -const memo = require('./memoization')
      -const path = require('path')
      -const rmContent = require('./content/rm')
      -
      -module.exports = entry
      -module.exports.entry = entry
      -
      -function entry (cache, key, opts) {
      -  memo.clearMemoized()
      -  return index.delete(cache, key, opts)
      -}
      -
      -module.exports.content = content
      -
      -function content (cache, integrity) {
      -  memo.clearMemoized()
      -  return rmContent(cache, integrity)
      -}
      -
      -module.exports.all = all
      -
      -async function all (cache) {
      -  memo.clearMemoized()
      -  const paths = await glob(path.join(cache, '*(content-*|index-*)'), { silent: true, nosort: true })
      -  return Promise.all(paths.map((p) => rm(p, { recursive: true, force: true })))
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/util/glob.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/util/glob.js
      deleted file mode 100644
      index 8500c1c16a429f..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/util/glob.js
      +++ /dev/null
      @@ -1,7 +0,0 @@
      -'use strict'
      -
      -const { glob } = require('glob')
      -const path = require('path')
      -
      -const globify = (pattern) => pattern.split(path.win32.sep).join(path.posix.sep)
      -module.exports = (path, options) => glob(globify(path), options)
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/util/hash-to-segments.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/util/hash-to-segments.js
      deleted file mode 100644
      index 445599b5038088..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/util/hash-to-segments.js
      +++ /dev/null
      @@ -1,7 +0,0 @@
      -'use strict'
      -
      -module.exports = hashToSegments
      -
      -function hashToSegments (hash) {
      -  return [hash.slice(0, 2), hash.slice(2, 4), hash.slice(4)]
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/util/tmp.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/util/tmp.js
      deleted file mode 100644
      index 0bf5302136ebeb..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/util/tmp.js
      +++ /dev/null
      @@ -1,26 +0,0 @@
      -'use strict'
      -
      -const { withTempDir } = require('@npmcli/fs')
      -const fs = require('fs/promises')
      -const path = require('path')
      -
      -module.exports.mkdir = mktmpdir
      -
      -async function mktmpdir (cache, opts = {}) {
      -  const { tmpPrefix } = opts
      -  const tmpDir = path.join(cache, 'tmp')
      -  await fs.mkdir(tmpDir, { recursive: true, owner: 'inherit' })
      -  // do not use path.join(), it drops the trailing / if tmpPrefix is unset
      -  const target = `${tmpDir}${path.sep}${tmpPrefix || ''}`
      -  return fs.mkdtemp(target, { owner: 'inherit' })
      -}
      -
      -module.exports.withTmp = withTmp
      -
      -function withTmp (cache, opts, cb) {
      -  if (!cb) {
      -    cb = opts
      -    opts = {}
      -  }
      -  return withTempDir(path.join(cache, 'tmp'), cb, opts)
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/verify.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/verify.js
      deleted file mode 100644
      index 62e85c946490fc..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/lib/verify.js
      +++ /dev/null
      @@ -1,257 +0,0 @@
      -'use strict'
      -
      -const {
      -  mkdir,
      -  readFile,
      -  rm,
      -  stat,
      -  truncate,
      -  writeFile,
      -} = require('fs/promises')
      -const pMap = require('p-map')
      -const contentPath = require('./content/path')
      -const fsm = require('fs-minipass')
      -const glob = require('./util/glob.js')
      -const index = require('./entry-index')
      -const path = require('path')
      -const ssri = require('ssri')
      -
      -const hasOwnProperty = (obj, key) =>
      -  Object.prototype.hasOwnProperty.call(obj, key)
      -
      -const verifyOpts = (opts) => ({
      -  concurrency: 20,
      -  log: { silly () {} },
      -  ...opts,
      -})
      -
      -module.exports = verify
      -
      -async function verify (cache, opts) {
      -  opts = verifyOpts(opts)
      -  opts.log.silly('verify', 'verifying cache at', cache)
      -
      -  const steps = [
      -    markStartTime,
      -    fixPerms,
      -    garbageCollect,
      -    rebuildIndex,
      -    cleanTmp,
      -    writeVerifile,
      -    markEndTime,
      -  ]
      -
      -  const stats = {}
      -  for (const step of steps) {
      -    const label = step.name
      -    const start = new Date()
      -    const s = await step(cache, opts)
      -    if (s) {
      -      Object.keys(s).forEach((k) => {
      -        stats[k] = s[k]
      -      })
      -    }
      -    const end = new Date()
      -    if (!stats.runTime) {
      -      stats.runTime = {}
      -    }
      -    stats.runTime[label] = end - start
      -  }
      -  stats.runTime.total = stats.endTime - stats.startTime
      -  opts.log.silly(
      -    'verify',
      -    'verification finished for',
      -    cache,
      -    'in',
      -    `${stats.runTime.total}ms`
      -  )
      -  return stats
      -}
      -
      -async function markStartTime (cache, opts) {
      -  return { startTime: new Date() }
      -}
      -
      -async function markEndTime (cache, opts) {
      -  return { endTime: new Date() }
      -}
      -
      -async function fixPerms (cache, opts) {
      -  opts.log.silly('verify', 'fixing cache permissions')
      -  await mkdir(cache, { recursive: true })
      -  return null
      -}
      -
      -// Implements a naive mark-and-sweep tracing garbage collector.
      -//
      -// The algorithm is basically as follows:
      -// 1. Read (and filter) all index entries ("pointers")
      -// 2. Mark each integrity value as "live"
      -// 3. Read entire filesystem tree in `content-vX/` dir
      -// 4. If content is live, verify its checksum and delete it if it fails
      -// 5. If content is not marked as live, rm it.
      -//
      -async function garbageCollect (cache, opts) {
      -  opts.log.silly('verify', 'garbage collecting content')
      -  const indexStream = index.lsStream(cache)
      -  const liveContent = new Set()
      -  indexStream.on('data', (entry) => {
      -    if (opts.filter && !opts.filter(entry)) {
      -      return
      -    }
      -
      -    // integrity is stringified, re-parse it so we can get each hash
      -    const integrity = ssri.parse(entry.integrity)
      -    for (const algo in integrity) {
      -      liveContent.add(integrity[algo].toString())
      -    }
      -  })
      -  await new Promise((resolve, reject) => {
      -    indexStream.on('end', resolve).on('error', reject)
      -  })
      -  const contentDir = contentPath.contentDir(cache)
      -  const files = await glob(path.join(contentDir, '**'), {
      -    follow: false,
      -    nodir: true,
      -    nosort: true,
      -  })
      -  const stats = {
      -    verifiedContent: 0,
      -    reclaimedCount: 0,
      -    reclaimedSize: 0,
      -    badContentCount: 0,
      -    keptSize: 0,
      -  }
      -  await pMap(
      -    files,
      -    async (f) => {
      -      const split = f.split(/[/\\]/)
      -      const digest = split.slice(split.length - 3).join('')
      -      const algo = split[split.length - 4]
      -      const integrity = ssri.fromHex(digest, algo)
      -      if (liveContent.has(integrity.toString())) {
      -        const info = await verifyContent(f, integrity)
      -        if (!info.valid) {
      -          stats.reclaimedCount++
      -          stats.badContentCount++
      -          stats.reclaimedSize += info.size
      -        } else {
      -          stats.verifiedContent++
      -          stats.keptSize += info.size
      -        }
      -      } else {
      -        // No entries refer to this content. We can delete.
      -        stats.reclaimedCount++
      -        const s = await stat(f)
      -        await rm(f, { recursive: true, force: true })
      -        stats.reclaimedSize += s.size
      -      }
      -      return stats
      -    },
      -    { concurrency: opts.concurrency }
      -  )
      -  return stats
      -}
      -
      -async function verifyContent (filepath, sri) {
      -  const contentInfo = {}
      -  try {
      -    const { size } = await stat(filepath)
      -    contentInfo.size = size
      -    contentInfo.valid = true
      -    await ssri.checkStream(new fsm.ReadStream(filepath), sri)
      -  } catch (err) {
      -    if (err.code === 'ENOENT') {
      -      return { size: 0, valid: false }
      -    }
      -    if (err.code !== 'EINTEGRITY') {
      -      throw err
      -    }
      -
      -    await rm(filepath, { recursive: true, force: true })
      -    contentInfo.valid = false
      -  }
      -  return contentInfo
      -}
      -
      -async function rebuildIndex (cache, opts) {
      -  opts.log.silly('verify', 'rebuilding index')
      -  const entries = await index.ls(cache)
      -  const stats = {
      -    missingContent: 0,
      -    rejectedEntries: 0,
      -    totalEntries: 0,
      -  }
      -  const buckets = {}
      -  for (const k in entries) {
      -    /* istanbul ignore else */
      -    if (hasOwnProperty(entries, k)) {
      -      const hashed = index.hashKey(k)
      -      const entry = entries[k]
      -      const excluded = opts.filter && !opts.filter(entry)
      -      excluded && stats.rejectedEntries++
      -      if (buckets[hashed] && !excluded) {
      -        buckets[hashed].push(entry)
      -      } else if (buckets[hashed] && excluded) {
      -        // skip
      -      } else if (excluded) {
      -        buckets[hashed] = []
      -        buckets[hashed]._path = index.bucketPath(cache, k)
      -      } else {
      -        buckets[hashed] = [entry]
      -        buckets[hashed]._path = index.bucketPath(cache, k)
      -      }
      -    }
      -  }
      -  await pMap(
      -    Object.keys(buckets),
      -    (key) => {
      -      return rebuildBucket(cache, buckets[key], stats, opts)
      -    },
      -    { concurrency: opts.concurrency }
      -  )
      -  return stats
      -}
      -
      -async function rebuildBucket (cache, bucket, stats, opts) {
      -  await truncate(bucket._path)
      -  // This needs to be serialized because cacache explicitly
      -  // lets very racy bucket conflicts clobber each other.
      -  for (const entry of bucket) {
      -    const content = contentPath(cache, entry.integrity)
      -    try {
      -      await stat(content)
      -      await index.insert(cache, entry.key, entry.integrity, {
      -        metadata: entry.metadata,
      -        size: entry.size,
      -        time: entry.time,
      -      })
      -      stats.totalEntries++
      -    } catch (err) {
      -      if (err.code === 'ENOENT') {
      -        stats.rejectedEntries++
      -        stats.missingContent++
      -      } else {
      -        throw err
      -      }
      -    }
      -  }
      -}
      -
      -function cleanTmp (cache, opts) {
      -  opts.log.silly('verify', 'cleaning tmp directory')
      -  return rm(path.join(cache, 'tmp'), { recursive: true, force: true })
      -}
      -
      -async function writeVerifile (cache, opts) {
      -  const verifile = path.join(cache, '_lastverified')
      -  opts.log.silly('verify', 'writing verifile to ' + verifile)
      -  return writeFile(verifile, `${Date.now()}`)
      -}
      -
      -module.exports.lastRun = lastRun
      -
      -async function lastRun (cache) {
      -  const data = await readFile(path.join(cache, '_lastverified'), { encoding: 'utf8' })
      -  return new Date(+data)
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/LICENSE
      deleted file mode 100644
      index de3226673c3874..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/LICENSE
      +++ /dev/null
      @@ -1,21 +0,0 @@
      -MIT License
      -
      -Copyright (c) 2013 Julian Gruber 
      -
      -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/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/index.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/index.js
      deleted file mode 100644
      index 668fb1cb9d45a4..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/index.js
      +++ /dev/null
      @@ -1,202 +0,0 @@
      -var balanced = require('balanced-match');
      -
      -module.exports = expandTop;
      -
      -var escSlash = '\0SLASH'+Math.random()+'\0';
      -var escOpen = '\0OPEN'+Math.random()+'\0';
      -var escClose = '\0CLOSE'+Math.random()+'\0';
      -var escComma = '\0COMMA'+Math.random()+'\0';
      -var escPeriod = '\0PERIOD'+Math.random()+'\0';
      -
      -function numeric(str) {
      -  return parseInt(str, 10) == str
      -    ? parseInt(str, 10)
      -    : str.charCodeAt(0);
      -}
      -
      -function escapeBraces(str) {
      -  return str.split('\\\\').join(escSlash)
      -            .split('\\{').join(escOpen)
      -            .split('\\}').join(escClose)
      -            .split('\\,').join(escComma)
      -            .split('\\.').join(escPeriod);
      -}
      -
      -function unescapeBraces(str) {
      -  return str.split(escSlash).join('\\')
      -            .split(escOpen).join('{')
      -            .split(escClose).join('}')
      -            .split(escComma).join(',')
      -            .split(escPeriod).join('.');
      -}
      -
      -
      -// Basically just str.split(","), but handling cases
      -// where we have nested braced sections, which should be
      -// treated as individual members, like {a,{b,c},d}
      -function parseCommaParts(str) {
      -  if (!str)
      -    return [''];
      -
      -  var parts = [];
      -  var m = balanced('{', '}', str);
      -
      -  if (!m)
      -    return str.split(',');
      -
      -  var pre = m.pre;
      -  var body = m.body;
      -  var post = m.post;
      -  var p = pre.split(',');
      -
      -  p[p.length-1] += '{' + body + '}';
      -  var postParts = parseCommaParts(post);
      -  if (post.length) {
      -    p[p.length-1] += postParts.shift();
      -    p.push.apply(p, postParts);
      -  }
      -
      -  parts.push.apply(parts, p);
      -
      -  return parts;
      -}
      -
      -function expandTop(str) {
      -  if (!str)
      -    return [];
      -
      -  // I don't know why Bash 4.3 does this, but it does.
      -  // Anything starting with {} will have the first two bytes preserved
      -  // but *only* at the top level, so {},a}b will not expand to anything,
      -  // but a{},b}c will be expanded to [a}c,abc].
      -  // One could argue that this is a bug in Bash, but since the goal of
      -  // this module is to match Bash's rules, we escape a leading {}
      -  if (str.substr(0, 2) === '{}') {
      -    str = '\\{\\}' + str.substr(2);
      -  }
      -
      -  return expand(escapeBraces(str), true).map(unescapeBraces);
      -}
      -
      -function embrace(str) {
      -  return '{' + str + '}';
      -}
      -function isPadded(el) {
      -  return /^-?0\d/.test(el);
      -}
      -
      -function lte(i, y) {
      -  return i <= y;
      -}
      -function gte(i, y) {
      -  return i >= y;
      -}
      -
      -function expand(str, isTop) {
      -  var expansions = [];
      -
      -  var m = balanced('{', '}', str);
      -  if (!m) return [str];
      -
      -  // no need to expand pre, since it is guaranteed to be free of brace-sets
      -  var pre = m.pre;
      -  var post = m.post.length
      -    ? expand(m.post, false)
      -    : [''];
      -
      -  if (/\$$/.test(m.pre)) {
      -    for (var k = 0; k < post.length; k++) {
      -      var expansion = pre+ '{' + m.body + '}' + post[k];
      -      expansions.push(expansion);
      -    }
      -  } else {
      -    var isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body);
      -    var isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body);
      -    var isSequence = isNumericSequence || isAlphaSequence;
      -    var isOptions = m.body.indexOf(',') >= 0;
      -    if (!isSequence && !isOptions) {
      -      // {a},b}
      -      if (m.post.match(/,.*\}/)) {
      -        str = m.pre + '{' + m.body + escClose + m.post;
      -        return expand(str);
      -      }
      -      return [str];
      -    }
      -
      -    var n;
      -    if (isSequence) {
      -      n = m.body.split(/\.\./);
      -    } else {
      -      n = parseCommaParts(m.body);
      -      if (n.length === 1) {
      -        // x{{a,b}}y ==> x{a}y x{b}y
      -        n = expand(n[0], false).map(embrace);
      -        if (n.length === 1) {
      -          return post.map(function(p) {
      -            return m.pre + n[0] + p;
      -          });
      -        }
      -      }
      -    }
      -
      -    // at this point, n is the parts, and we know it's not a comma set
      -    // with a single entry.
      -    var N;
      -
      -    if (isSequence) {
      -      var x = numeric(n[0]);
      -      var y = numeric(n[1]);
      -      var width = Math.max(n[0].length, n[1].length)
      -      var incr = n.length == 3
      -        ? Math.abs(numeric(n[2]))
      -        : 1;
      -      var test = lte;
      -      var reverse = y < x;
      -      if (reverse) {
      -        incr *= -1;
      -        test = gte;
      -      }
      -      var pad = n.some(isPadded);
      -
      -      N = [];
      -
      -      for (var i = x; test(i, y); i += incr) {
      -        var c;
      -        if (isAlphaSequence) {
      -          c = String.fromCharCode(i);
      -          if (c === '\\')
      -            c = '';
      -        } else {
      -          c = String(i);
      -          if (pad) {
      -            var need = width - c.length;
      -            if (need > 0) {
      -              var z = new Array(need + 1).join('0');
      -              if (i < 0)
      -                c = '-' + z + c.slice(1);
      -              else
      -                c = z + c;
      -            }
      -          }
      -        }
      -        N.push(c);
      -      }
      -    } else {
      -      N = [];
      -
      -      for (var j = 0; j < n.length; j++) {
      -        N.push.apply(N, expand(n[j], false));
      -      }
      -    }
      -
      -    for (var j = 0; j < N.length; j++) {
      -      for (var k = 0; k < post.length; k++) {
      -        var expansion = pre + N[j] + post[k];
      -        if (!isTop || isSequence || expansion)
      -          expansions.push(expansion);
      -      }
      -    }
      -  }
      -
      -  return expansions;
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/package.json
      deleted file mode 100644
      index 7097d41e39de5d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion/package.json
      +++ /dev/null
      @@ -1,46 +0,0 @@
      -{
      -  "name": "brace-expansion",
      -  "description": "Brace expansion as known from sh/bash",
      -  "version": "2.0.1",
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/juliangruber/brace-expansion.git"
      -  },
      -  "homepage": "https://github.com/juliangruber/brace-expansion",
      -  "main": "index.js",
      -  "scripts": {
      -    "test": "tape test/*.js",
      -    "gentest": "bash test/generate.sh",
      -    "bench": "matcha test/perf/bench.js"
      -  },
      -  "dependencies": {
      -    "balanced-match": "^1.0.0"
      -  },
      -  "devDependencies": {
      -    "@c4312/matcha": "^1.3.1",
      -    "tape": "^4.6.0"
      -  },
      -  "keywords": [],
      -  "author": {
      -    "name": "Julian Gruber",
      -    "email": "mail@juliangruber.com",
      -    "url": "http://juliangruber.com"
      -  },
      -  "license": "MIT",
      -  "testling": {
      -    "files": "test/*.js",
      -    "browsers": [
      -      "ie/8..latest",
      -      "firefox/20..latest",
      -      "firefox/nightly",
      -      "chrome/25..latest",
      -      "chrome/canary",
      -      "opera/12..latest",
      -      "opera/next",
      -      "safari/5.1..latest",
      -      "ipad/6.0..latest",
      -      "iphone/6.0..latest",
      -      "android-browser/4.2..latest"
      -    ]
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/LICENSE
      deleted file mode 100644
      index ec7df93329abf3..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) 2009-2023 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/cacache/node_modules/glob/README.md b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/README.md
      deleted file mode 100644
      index 1bde1494664d4d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/README.md
      +++ /dev/null
      @@ -1,1214 +0,0 @@
      -# Glob
      -
      -Match files using the patterns the shell uses.
      -
      -The most correct and second fastest glob implementation in
      -JavaScript. (See **Comparison to Other JavaScript Glob
      -Implementations** at the bottom of this readme.)
      -
      -![a fun cartoon logo made of glob characters](https://github.com/isaacs/node-glob/raw/main/logo/glob.png)
      -
      -## Usage
      -
      -Install with npm
      -
      -```
      -npm i glob
      -```
      -
      -**Note** the npm package name is _not_ `node-glob` that's a
      -different thing that was abandoned years ago. Just `glob`.
      -
      -```js
      -// load using import
      -import { glob, globSync, globStream, globStreamSync, Glob } from 'glob'
      -// or using commonjs, that's fine, too
      -const {
      -  glob,
      -  globSync,
      -  globStream,
      -  globStreamSync,
      -  Glob,
      -} = require('glob')
      -
      -// the main glob() and globSync() resolve/return array of filenames
      -
      -// all js files, but don't look in node_modules
      -const jsfiles = await glob('**/*.js', { ignore: 'node_modules/**' })
      -
      -// pass in a signal to cancel the glob walk
      -const stopAfter100ms = await glob('**/*.css', {
      -  signal: AbortSignal.timeout(100),
      -})
      -
      -// multiple patterns supported as well
      -const images = await glob(['css/*.{png,jpeg}', 'public/*.{png,jpeg}'])
      -
      -// but of course you can do that with the glob pattern also
      -// the sync function is the same, just returns a string[] instead
      -// of Promise
      -const imagesAlt = globSync('{css,public}/*.{png,jpeg}')
      -
      -// you can also stream them, this is a Minipass stream
      -const filesStream = globStream(['**/*.dat', 'logs/**/*.log'])
      -
      -// construct a Glob object if you wanna do it that way, which
      -// allows for much faster walks if you have to look in the same
      -// folder multiple times.
      -const g = new Glob('**/foo', {})
      -// glob objects are async iterators, can also do globIterate() or
      -// g.iterate(), same deal
      -for await (const file of g) {
      -  console.log('found a foo file:', file)
      -}
      -// pass a glob as the glob options to reuse its settings and caches
      -const g2 = new Glob('**/bar', g)
      -// sync iteration works as well
      -for (const file of g2) {
      -  console.log('found a bar file:', file)
      -}
      -
      -// you can also pass withFileTypes: true to get Path objects
      -// these are like a Dirent, but with some more added powers
      -// check out http://npm.im/path-scurry for more info on their API
      -const g3 = new Glob('**/baz/**', { withFileTypes: true })
      -g3.stream().on('data', path => {
      -  console.log(
      -    'got a path object',
      -    path.fullpath(),
      -    path.isDirectory(),
      -    path.readdirSync().map(e => e.name)
      -  )
      -})
      -
      -// if you use stat:true and withFileTypes, you can sort results
      -// by things like modified time, filter by permission mode, etc.
      -// All Stats fields will be available in that case. Slightly
      -// slower, though.
      -// For example:
      -const results = await glob('**', { stat: true, withFileTypes: true })
      -
      -const timeSortedFiles = results
      -  .sort((a, b) => a.mtimeMS - b.mtimeMS)
      -  .map(path => path.fullpath())
      -
      -const groupReadableFiles = results
      -  .filter(path => path.mode & 0o040)
      -  .map(path => path.fullpath())
      -
      -// custom ignores can be done like this, for example by saying
      -// you'll ignore all markdown files, and all folders named 'docs'
      -const customIgnoreResults = await glob('**', {
      -  ignore: {
      -    ignored: p => /\.md$/.test(p.name),
      -    childrenIgnored: p => p.isNamed('docs'),
      -  },
      -})
      -
      -// another fun use case, only return files with the same name as
      -// their parent folder, plus either `.ts` or `.js`
      -const folderNamedModules = await glob('**/*.{ts,js}', {
      -  ignore: {
      -    ignored: p => {
      -      const pp = p.parent
      -      return !(p.isNamed(pp.name + '.ts') || p.isNamed(pp.name + '.js'))
      -    },
      -  },
      -})
      -
      -// find all files edited in the last hour, to do this, we ignore
      -// all of them that are more than an hour old
      -const newFiles = await glob('**', {
      -  // need stat so we have mtime
      -  stat: true,
      -  // only want the files, not the dirs
      -  nodir: true,
      -  ignore: {
      -    ignored: p => {
      -      return new Date() - p.mtime > 60 * 60 * 1000
      -    },
      -    // could add similar childrenIgnored here as well, but
      -    // directory mtime is inconsistent across platforms, so
      -    // probably better not to, unless you know the system
      -    // tracks this reliably.
      -  },
      -})
      -```
      -
      -**Note** Glob patterns should always use `/` as a path separator,
      -even on Windows systems, as `\` is used to escape glob
      -characters. If you wish to use `\` as a path separator _instead
      -of_ using it as an escape character on Windows platforms, you may
      -set `windowsPathsNoEscape:true` in the options. In this mode,
      -special glob characters cannot be escaped, making it impossible
      -to match a literal `*` `?` and so on in filenames.
      -
      -## Command Line Interface
      -
      -```
      -$ glob -h
      -
      -Usage:
      -  glob [options] [ [ ...]]
      -
      -Expand the positional glob expression arguments into any matching file system
      -paths found.
      -
      -  -c --cmd=
      -                         Run the command provided, passing the glob expression
      -                         matches as arguments.
      -
      -  -A --all               By default, the glob cli command will not expand any
      -                         arguments that are an exact match to a file on disk.
      -
      -                         This prevents double-expanding, in case the shell
      -                         expands an argument whose filename is a glob
      -                         expression.
      -
      -                         For example, if 'app/*.ts' would match 'app/[id].ts',
      -                         then on Windows powershell or cmd.exe, 'glob app/*.ts'
      -                         will expand to 'app/[id].ts', as expected. However, in
      -                         posix shells such as bash or zsh, the shell will first
      -                         expand 'app/*.ts' to a list of filenames. Then glob
      -                         will look for a file matching 'app/[id].ts' (ie,
      -                         'app/i.ts' or 'app/d.ts'), which is unexpected.
      -
      -                         Setting '--all' prevents this behavior, causing glob to
      -                         treat ALL patterns as glob expressions to be expanded,
      -                         even if they are an exact match to a file on disk.
      -
      -                         When setting this option, be sure to enquote arguments
      -                         so that the shell will not expand them prior to passing
      -                         them to the glob command process.
      -
      -  -a --absolute          Expand to absolute paths
      -  -d --dot-relative      Prepend './' on relative matches
      -  -m --mark              Append a / on any directories matched
      -  -x --posix             Always resolve to posix style paths, using '/' as the
      -                         directory separator, even on Windows. Drive letter
      -                         absolute matches on Windows will be expanded to their
      -                         full resolved UNC maths, eg instead of 'C:\foo\bar', it
      -                         will expand to '//?/C:/foo/bar'.
      -
      -  -f --follow            Follow symlinked directories when expanding '**'
      -  -R --realpath          Call 'fs.realpath' on all of the results. In the case
      -                         of an entry that cannot be resolved, the entry is
      -                         omitted. This incurs a slight performance penalty, of
      -                         course, because of the added system calls.
      -
      -  -s --stat              Call 'fs.lstat' on all entries, whether required or not
      -                         to determine if it's a valid match.
      -
      -  -b --match-base        Perform a basename-only match if the pattern does not
      -                         contain any slash characters. That is, '*.js' would be
      -                         treated as equivalent to '**/*.js', matching js files
      -                         in all directories.
      -
      -  --dot                  Allow patterns to match files/directories that start
      -                         with '.', even if the pattern does not start with '.'
      -
      -  --nobrace              Do not expand {...} patterns
      -  --nocase               Perform a case-insensitive match. This defaults to
      -                         'true' on macOS and Windows platforms, and false on all
      -                         others.
      -
      -                         Note: 'nocase' should only be explicitly set when it is
      -                         known that the filesystem's case sensitivity differs
      -                         from the platform default. If set 'true' on
      -                         case-insensitive file systems, then the walk may return
      -                         more or less results than expected.
      -
      -  --nodir                Do not match directories, only files.
      -
      -                         Note: to *only* match directories, append a '/' at the
      -                         end of the pattern.
      -
      -  --noext                Do not expand extglob patterns, such as '+(a|b)'
      -  --noglobstar           Do not expand '**' against multiple path portions. Ie,
      -                         treat it as a normal '*' instead.
      -
      -  --windows-path-no-escape
      -                         Use '\' as a path separator *only*, and *never* as an
      -                         escape character. If set, all '\' characters are
      -                         replaced with '/' in the pattern.
      -
      -  -D --max-depth=  Maximum depth to traverse from the current working
      -                         directory
      -
      -  -C --cwd=    Current working directory to execute/match in
      -  -r --root= A string path resolved against the 'cwd', which is used
      -                         as the starting point for absolute patterns that start
      -                         with '/' (but not drive letters or UNC paths on
      -                         Windows).
      -
      -                         Note that this *doesn't* necessarily limit the walk to
      -                         the 'root' directory, and doesn't affect the cwd
      -                         starting point for non-absolute patterns. A pattern
      -                         containing '..' will still be able to traverse out of
      -                         the root directory, if it is not an actual root
      -                         directory on the filesystem, and any non-absolute
      -                         patterns will still be matched in the 'cwd'.
      -
      -                         To start absolute and non-absolute patterns in the same
      -                         path, you can use '--root=' to set it to the empty
      -                         string. However, be aware that on Windows systems, a
      -                         pattern like 'x:/*' or '//host/share/*' will *always*
      -                         start in the 'x:/' or '//host/share/' directory,
      -                         regardless of the --root setting.
      -
      -  --platform=  Defaults to the value of 'process.platform' if
      -                         available, or 'linux' if not. Setting --platform=win32
      -                         on non-Windows systems may cause strange behavior!
      -
      -  -i --ignore=
      -                         Glob patterns to ignore Can be set multiple times
      -  -v --debug             Output a huge amount of noisy debug information about
      -                         patterns as they are parsed and used to match files.
      -
      -  -h --help              Show this usage information
      -```
      -
      -## `glob(pattern: string | string[], options?: GlobOptions) => Promise`
      -
      -Perform an asynchronous glob search for the pattern(s) specified.
      -Returns
      -[Path](https://isaacs.github.io/path-scurry/classes/PathBase)
      -objects if the `withFileTypes` option is set to `true`. See below
      -for full options field desciptions.
      -
      -## `globSync(pattern: string | string[], options?: GlobOptions) => string[] | Path[]`
      -
      -Synchronous form of `glob()`.
      -
      -Alias: `glob.sync()`
      -
      -## `globIterate(pattern: string | string[], options?: GlobOptions) => AsyncGenerator`
      -
      -Return an async iterator for walking glob pattern matches.
      -
      -Alias: `glob.iterate()`
      -
      -## `globIterateSync(pattern: string | string[], options?: GlobOptions) => Generator`
      -
      -Return a sync iterator for walking glob pattern matches.
      -
      -Alias: `glob.iterate.sync()`, `glob.sync.iterate()`
      -
      -## `globStream(pattern: string | string[], options?: GlobOptions) => Minipass`
      -
      -Return a stream that emits all the strings or `Path` objects and
      -then emits `end` when completed.
      -
      -Alias: `glob.stream()`
      -
      -## `globStreamSync(pattern: string | string[], options?: GlobOptions) => Minipass`
      -
      -Syncronous form of `globStream()`. Will read all the matches as
      -fast as you consume them, even all in a single tick if you
      -consume them immediately, but will still respond to backpressure
      -if they're not consumed immediately.
      -
      -Alias: `glob.stream.sync()`, `glob.sync.stream()`
      -
      -## `hasMagic(pattern: string | string[], options?: GlobOptions) => boolean`
      -
      -Returns `true` if the provided pattern contains any "magic" glob
      -characters, given the options provided.
      -
      -Brace expansion is not considered "magic" unless the
      -`magicalBraces` option is set, as brace expansion just turns one
      -string into an array of strings. So a pattern like `'x{a,b}y'`
      -would return `false`, because `'xay'` and `'xby'` both do not
      -contain any magic glob characters, and it's treated the same as
      -if you had called it on `['xay', 'xby']`. When
      -`magicalBraces:true` is in the options, brace expansion _is_
      -treated as a pattern having magic.
      -
      -## `escape(pattern: string, options?: GlobOptions) => string`
      -
      -Escape all magic characters in a glob pattern, so that it will
      -only ever match literal strings
      -
      -If the `windowsPathsNoEscape` option is used, then characters are
      -escaped by wrapping in `[]`, because a magic character wrapped in
      -a character class can only be satisfied by that exact character.
      -
      -Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot
      -be escaped or unescaped.
      -
      -## `unescape(pattern: string, options?: GlobOptions) => string`
      -
      -Un-escape a glob string that may contain some escaped characters.
      -
      -If the `windowsPathsNoEscape` option is used, then square-brace
      -escapes are removed, but not backslash escapes. For example, it
      -will turn the string `'[*]'` into `*`, but it will not turn
      -`'\\*'` into `'*'`, because `\` is a path separator in
      -`windowsPathsNoEscape` mode.
      -
      -When `windowsPathsNoEscape` is not set, then both brace escapes
      -and backslash escapes are removed.
      -
      -Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot
      -be escaped or unescaped.
      -
      -## Class `Glob`
      -
      -An object that can perform glob pattern traversals.
      -
      -### `const g = new Glob(pattern: string | string[], options: GlobOptions)`
      -
      -Options object is required.
      -
      -See full options descriptions below.
      -
      -Note that a previous `Glob` object can be passed as the
      -`GlobOptions` to another `Glob` instantiation to re-use settings
      -and caches with a new pattern.
      -
      -Traversal functions can be called multiple times to run the walk
      -again.
      -
      -### `g.stream()`
      -
      -Stream results asynchronously,
      -
      -### `g.streamSync()`
      -
      -Stream results synchronously.
      -
      -### `g.iterate()`
      -
      -Default async iteration function. Returns an AsyncGenerator that
      -iterates over the results.
      -
      -### `g.iterateSync()`
      -
      -Default sync iteration function. Returns a Generator that
      -iterates over the results.
      -
      -### `g.walk()`
      -
      -Returns a Promise that resolves to the results array.
      -
      -### `g.walkSync()`
      -
      -Returns a results array.
      -
      -### Properties
      -
      -All options are stored as properties on the `Glob` object.
      -
      -- `opts` The options provided to the constructor.
      -- `patterns` An array of parsed immutable `Pattern` objects.
      -
      -## Options
      -
      -Exported as `GlobOptions` TypeScript interface. A `GlobOptions`
      -object may be provided to any of the exported methods, and must
      -be provided to the `Glob` constructor.
      -
      -All options are optional, boolean, and false by default, unless
      -otherwise noted.
      -
      -All resolved options are added to the Glob object as properties.
      -
      -If you are running many `glob` operations, you can pass a Glob
      -object as the `options` argument to a subsequent operation to
      -share the previously loaded cache.
      -
      -- `cwd` String path or `file://` string or URL object. The
      -  current working directory in which to search. Defaults to
      -  `process.cwd()`. See also: "Windows, CWDs, Drive Letters, and
      -  UNC Paths", below.
      -
      -  This option may be eiher a string path or a `file://` URL
      -  object or string.
      -
      -- `root` A string path resolved against the `cwd` option, which
      -  is used as the starting point for absolute patterns that start
      -  with `/`, (but not drive letters or UNC paths on Windows).
      -
      -  Note that this _doesn't_ necessarily limit the walk to the
      -  `root` directory, and doesn't affect the cwd starting point for
      -  non-absolute patterns. A pattern containing `..` will still be
      -  able to traverse out of the root directory, if it is not an
      -  actual root directory on the filesystem, and any non-absolute
      -  patterns will be matched in the `cwd`. For example, the
      -  pattern `/../*` with `{root:'/some/path'}` will return all
      -  files in `/some`, not all files in `/some/path`. The pattern
      -  `*` with `{root:'/some/path'}` will return all the entries in
      -  the cwd, not the entries in `/some/path`.
      -
      -  To start absolute and non-absolute patterns in the same
      -  path, you can use `{root:''}`. However, be aware that on
      -  Windows systems, a pattern like `x:/*` or `//host/share/*` will
      -  _always_ start in the `x:/` or `//host/share` directory,
      -  regardless of the `root` setting.
      -
      -- `windowsPathsNoEscape` Use `\\` as a path separator _only_, and
      -  _never_ as an escape character. If set, all `\\` characters are
      -  replaced with `/` in the pattern.
      -
      -  Note that this makes it **impossible** to match against paths
      -  containing literal glob pattern characters, but allows matching
      -  with patterns constructed using `path.join()` and
      -  `path.resolve()` on Windows platforms, mimicking the (buggy!)
      -  behavior of Glob v7 and before on Windows. Please use with
      -  caution, and be mindful of [the caveat below about Windows
      -  paths](#windows). (For legacy reasons, this is also set if
      -  `allowWindowsEscape` is set to the exact value `false`.)
      -
      -- `dot` Include `.dot` files in normal matches and `globstar`
      -  matches. Note that an explicit dot in a portion of the pattern
      -  will always match dot files.
      -
      -- `magicalBraces` Treat brace expansion like `{a,b}` as a "magic"
      -  pattern. Has no effect if {@link nobrace} is set.
      -
      -  Only has effect on the {@link hasMagic} function, no effect on
      -  glob pattern matching itself.
      -
      -- `dotRelative` Prepend all relative path strings with `./` (or
      -  `.\` on Windows).
      -
      -  Without this option, returned relative paths are "bare", so
      -  instead of returning `'./foo/bar'`, they are returned as
      -  `'foo/bar'`.
      -
      -  Relative patterns starting with `'../'` are not prepended with
      -  `./`, even if this option is set.
      -
      -- `mark` Add a `/` character to directory matches. Note that this
      -  requires additional stat calls.
      -
      -- `nobrace` Do not expand `{a,b}` and `{1..3}` brace sets.
      -
      -- `noglobstar` Do not match `**` against multiple filenames. (Ie,
      -  treat it as a normal `*` instead.)
      -
      -- `noext` Do not match "extglob" patterns such as `+(a|b)`.
      -
      -- `nocase` Perform a case-insensitive match. This defaults to
      -  `true` on macOS and Windows systems, and `false` on all others.
      -
      -  **Note** `nocase` should only be explicitly set when it is
      -  known that the filesystem's case sensitivity differs from the
      -  platform default. If set `true` on case-sensitive file
      -  systems, or `false` on case-insensitive file systems, then the
      -  walk may return more or less results than expected.
      -
      -- `maxDepth` Specify a number to limit the depth of the directory
      -  traversal to this many levels below the `cwd`.
      -
      -- `matchBase` Perform a basename-only match if the pattern does
      -  not contain any slash characters. That is, `*.js` would be
      -  treated as equivalent to `**/*.js`, matching all js files in
      -  all directories.
      -
      -- `nodir` Do not match directories, only files. (Note: to match
      -  _only_ directories, put a `/` at the end of the pattern.)
      -
      -- `stat` Call `lstat()` on all entries, whether required or not
      -  to determine whether it's a valid match. When used with
      -  `withFileTypes`, this means that matches will include data such
      -  as modified time, permissions, and so on. Note that this will
      -  incur a performance cost due to the added system calls.
      -
      -- `ignore` string or string[], or an object with `ignore` and
      -  `ignoreChildren` methods.
      -
      -  If a string or string[] is provided, then this is treated as a
      -  glob pattern or array of glob patterns to exclude from matches.
      -  To ignore all children within a directory, as well as the entry
      -  itself, append `'/**'` to the ignore pattern.
      -
      -  **Note** `ignore` patterns are _always_ in `dot:true` mode,
      -  regardless of any other settings.
      -
      -  If an object is provided that has `ignored(path)` and/or
      -  `childrenIgnored(path)` methods, then these methods will be
      -  called to determine whether any Path is a match or if its
      -  children should be traversed, respectively.
      -
      -- `follow` Follow symlinked directories when expanding `**`
      -  patterns. This can result in a lot of duplicate references in
      -  the presence of cyclic links, and make performance quite bad.
      -
      -  By default, a `**` in a pattern will follow 1 symbolic link if
      -  it is not the first item in the pattern, or none if it is the
      -  first item in the pattern, following the same behavior as Bash.
      -
      -- `realpath` Set to true to call `fs.realpath` on all of the
      -  results. In the case of an entry that cannot be resolved, the
      -  entry is omitted. This incurs a slight performance penalty, of
      -  course, because of the added system calls.
      -
      -- `absolute` Set to true to always receive absolute paths for
      -  matched files. Set to `false` to always receive relative paths
      -  for matched files.
      -
      -  By default, when this option is not set, absolute paths are
      -  returned for patterns that are absolute, and otherwise paths
      -  are returned that are relative to the `cwd` setting.
      -
      -  This does _not_ make an extra system call to get the realpath,
      -  it only does string path resolution.
      -
      -  `absolute` may not be used along with `withFileTypes`.
      -
      -- `posix` Set to true to use `/` as the path separator in
      -  returned results. On posix systems, this has no effect. On
      -  Windows systems, this will return `/` delimited path results,
      -  and absolute paths will be returned in their full resolved UNC
      -  path form, eg insted of `'C:\\foo\\bar'`, it will return
      -  `//?/C:/foo/bar`.
      -
      -- `platform` Defaults to value of `process.platform` if
      -  available, or `'linux'` if not. Setting `platform:'win32'` on
      -  non-Windows systems may cause strange behavior.
      -
      -- `withFileTypes` Return [PathScurry](http://npm.im/path-scurry)
      -  `Path` objects instead of strings. These are similar to a
      -  NodeJS `Dirent` object, but with additional methods and
      -  properties.
      -
      -  `withFileTypes` may not be used along with `absolute`.
      -
      -- `signal` An AbortSignal which will cancel the Glob walk when
      -  triggered.
      -
      -- `fs` An override object to pass in custom filesystem methods.
      -  See [PathScurry docs](http://npm.im/path-scurry) for what can
      -  be overridden.
      -
      -- `scurry` A [PathScurry](http://npm.im/path-scurry) object used
      -  to traverse the file system. If the `nocase` option is set
      -  explicitly, then any provided `scurry` object must match this
      -  setting.
      -
      -## Glob Primer
      -
      -Much more information about glob pattern expansion can be found
      -by running `man bash` and searching for `Pattern Matching`.
      -
      -"Globs" are the patterns you type when you do stuff like `ls
      -*.js` on the command line, or put `build/*` in a `.gitignore`
      -file.
      -
      -Before parsing the path part patterns, braced sections are
      -expanded into a set. Braced sections start with `{` and end with
      -`}`, with 2 or more comma-delimited sections within. Braced
      -sections may contain slash characters, so `a{/b/c,bcd}` would
      -expand into `a/b/c` and `abcd`.
      -
      -The following characters have special magic meaning when used in
      -a path portion. With the exception of `**`, none of these match
      -path separators (ie, `/` on all platforms, and `\` on Windows).
      -
      -- `*` Matches 0 or more characters in a single path portion.
      -  When alone in a path portion, it must match at least 1
      -  character. If `dot:true` is not specified, then `*` will not
      -  match against a `.` character at the start of a path portion.
      -- `?` Matches 1 character. If `dot:true` is not specified, then
      -  `?` will not match against a `.` character at the start of a
      -  path portion.
      -- `[...]` Matches a range of characters, similar to a RegExp
      -  range. If the first character of the range is `!` or `^` then
      -  it matches any character not in the range. If the first
      -  character is `]`, then it will be considered the same as `\]`,
      -  rather than the end of the character class.
      -- `!(pattern|pattern|pattern)` Matches anything that does not
      -  match any of the patterns provided. May _not_ contain `/`
      -  characters. Similar to `*`, if alone in a path portion, then
      -  the path portion must have at least one character.
      -- `?(pattern|pattern|pattern)` Matches zero or one occurrence of
      -  the patterns provided. May _not_ contain `/` characters.
      -- `+(pattern|pattern|pattern)` Matches one or more occurrences of
      -  the patterns provided. May _not_ contain `/` characters.
      -- `*(a|b|c)` Matches zero or more occurrences of the patterns
      -  provided. May _not_ contain `/` characters.
      -- `@(pattern|pat*|pat?erN)` Matches exactly one of the patterns
      -  provided. May _not_ contain `/` characters.
      -- `**` If a "globstar" is alone in a path portion, then it
      -  matches zero or more directories and subdirectories searching
      -  for matches. It does not crawl symlinked directories, unless
      -  `{follow:true}` is passed in the options object. A pattern
      -  like `a/b/**` will only match `a/b` if it is a directory.
      -  Follows 1 symbolic link if not the first item in the pattern,
      -  or 0 if it is the first item, unless `follow:true` is set, in
      -  which case it follows all symbolic links.
      -
      -`[:class:]` patterns are supported by this implementation, but
      -`[=c=]` and `[.symbol.]` style class patterns are not.
      -
      -### Dots
      -
      -If a file or directory path portion has a `.` as the first
      -character, then it will not match any glob pattern unless that
      -pattern's corresponding path part also has a `.` as its first
      -character.
      -
      -For example, the pattern `a/.*/c` would match the file at
      -`a/.b/c`. However the pattern `a/*/c` would not, because `*` does
      -not start with a dot character.
      -
      -You can make glob treat dots as normal characters by setting
      -`dot:true` in the options.
      -
      -### Basename Matching
      -
      -If you set `matchBase:true` in the options, and the pattern has
      -no slashes in it, then it will seek for any file anywhere in the
      -tree with a matching basename. For example, `*.js` would match
      -`test/simple/basic.js`.
      -
      -### Empty Sets
      -
      -If no matching files are found, then an empty array is returned.
      -This differs from the shell, where the pattern itself is
      -returned. For example:
      -
      -```sh
      -$ echo a*s*d*f
      -a*s*d*f
      -```
      -
      -## Comparisons to other fnmatch/glob implementations
      -
      -While strict compliance with the existing standards is a
      -worthwhile goal, some discrepancies exist between node-glob and
      -other implementations, and are intentional.
      -
      -The double-star character `**` is supported by default, unless
      -the `noglobstar` flag is set. This is supported in the manner of
      -bsdglob and bash 5, where `**` only has special significance if
      -it is the only thing in a path part. That is, `a/**/b` will match
      -`a/x/y/b`, but `a/**b` will not.
      -
      -Note that symlinked directories are not traversed as part of a
      -`**`, though their contents may match against subsequent portions
      -of the pattern. This prevents infinite loops and duplicates and
      -the like. You can force glob to traverse symlinks with `**` by
      -setting `{follow:true}` in the options.
      -
      -There is no equivalent of the `nonull` option. A pattern that
      -does not find any matches simply resolves to nothing. (An empty
      -array, immediately ended stream, etc.)
      -
      -If brace expansion is not disabled, then it is performed before
      -any other interpretation of the glob pattern. Thus, a pattern
      -like `+(a|{b),c)}`, which would not be valid in bash or zsh, is
      -expanded **first** into the set of `+(a|b)` and `+(a|c)`, and
      -those patterns are checked for validity. Since those two are
      -valid, matching proceeds.
      -
      -The character class patterns `[:class:]` (posix standard named
      -classes) style class patterns are supported and unicode-aware,
      -but `[=c=]` (locale-specific character collation weight), and
      -`[.symbol.]` (collating symbol), are not.
      -
      -### Repeated Slashes
      -
      -Unlike Bash and zsh, repeated `/` are always coalesced into a
      -single path separator.
      -
      -### Comments and Negation
      -
      -Previously, this module let you mark a pattern as a "comment" if
      -it started with a `#` character, or a "negated" pattern if it
      -started with a `!` character.
      -
      -These options were deprecated in version 5, and removed in
      -version 6.
      -
      -To specify things that should not match, use the `ignore` option.
      -
      -## Windows
      -
      -**Please only use forward-slashes in glob expressions.**
      -
      -Though windows uses either `/` or `\` as its path separator, only
      -`/` characters are used by this glob implementation. You must use
      -forward-slashes **only** in glob expressions. Back-slashes will
      -always be interpreted as escape characters, not path separators.
      -
      -Results from absolute patterns such as `/foo/*` are mounted onto
      -the root setting using `path.join`. On windows, this will by
      -default result in `/foo/*` matching `C:\foo\bar.txt`.
      -
      -To automatically coerce all `\` characters to `/` in pattern
      -strings, **thus making it impossible to escape literal glob
      -characters**, you may set the `windowsPathsNoEscape` option to
      -`true`.
      -
      -### Windows, CWDs, Drive Letters, and UNC Paths
      -
      -On posix systems, when a pattern starts with `/`, any `cwd`
      -option is ignored, and the traversal starts at `/`, plus any
      -non-magic path portions specified in the pattern.
      -
      -On Windows systems, the behavior is similar, but the concept of
      -an "absolute path" is somewhat more involved.
      -
      -#### UNC Paths
      -
      -A UNC path may be used as the start of a pattern on Windows
      -platforms. For example, a pattern like: `//?/x:/*` will return
      -all file entries in the root of the `x:` drive. A pattern like
      -`//ComputerName/Share/*` will return all files in the associated
      -share.
      -
      -UNC path roots are always compared case insensitively.
      -
      -#### Drive Letters
      -
      -A pattern starting with a drive letter, like `c:/*`, will search
      -in that drive, regardless of any `cwd` option provided.
      -
      -If the pattern starts with `/`, and is not a UNC path, and there
      -is an explicit `cwd` option set with a drive letter, then the
      -drive letter in the `cwd` is used as the root of the directory
      -traversal.
      -
      -For example, `glob('/tmp', { cwd: 'c:/any/thing' })` will return
      -`['c:/tmp']` as the result.
      -
      -If an explicit `cwd` option is not provided, and the pattern
      -starts with `/`, then the traversal will run on the root of the
      -drive provided as the `cwd` option. (That is, it is the result of
      -`path.resolve('/')`.)
      -
      -## Race Conditions
      -
      -Glob searching, by its very nature, is susceptible to race
      -conditions, since it relies on directory walking.
      -
      -As a result, it is possible that a file that exists when glob
      -looks for it may have been deleted or modified by the time it
      -returns the result.
      -
      -By design, this implementation caches all readdir calls that it
      -makes, in order to cut down on system overhead. However, this
      -also makes it even more susceptible to races, especially if the
      -cache object is reused between glob calls.
      -
      -Users are thus advised not to use a glob result as a guarantee of
      -filesystem state in the face of rapid changes. For the vast
      -majority of operations, this is never a problem.
      -
      -### See Also:
      -
      -- `man sh`
      -- `man bash` [Pattern
      -  Matching](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html)
      -- `man 3 fnmatch`
      -- `man 5 gitignore`
      -- [minimatch documentation](https://github.com/isaacs/minimatch)
      -
      -## Glob Logo
      -
      -Glob's logo was created by [Tanya
      -Brassie](http://tanyabrassie.com/). Logo files can be found
      -[here](https://github.com/isaacs/node-glob/tree/master/logo).
      -
      -The logo is licensed under a [Creative Commons
      -Attribution-ShareAlike 4.0 International
      -License](https://creativecommons.org/licenses/by-sa/4.0/).
      -
      -## Contributing
      -
      -Any change to behavior (including bugfixes) must come with a
      -test.
      -
      -Patches that fail tests or reduce performance will be rejected.
      -
      -```sh
      -# to run tests
      -npm test
      -
      -# to re-generate test fixtures
      -npm run test-regen
      -
      -# run the benchmarks
      -npm run bench
      -
      -# to profile javascript
      -npm run prof
      -```
      -
      -## Comparison to Other JavaScript Glob Implementations
      -
      -**tl;dr**
      -
      -- If you want glob matching that is as faithful as possible to
      -  Bash pattern expansion semantics, and as fast as possible
      -  within that constraint, _use this module_.
      -- If you are reasonably sure that the patterns you will encounter
      -  are relatively simple, and want the absolutely fastest glob
      -  matcher out there, _use [fast-glob](http://npm.im/fast-glob)_.
      -- If you are reasonably sure that the patterns you will encounter
      -  are relatively simple, and want the convenience of
      -  automatically respecting `.gitignore` files, _use
      -  [globby](http://npm.im/globby)_.
      -
      -There are some other glob matcher libraries on npm, but these
      -three are (in my opinion, as of 2023) the best.
      -
      ----
      -
      -**full explanation**
      -
      -Every library reflects a set of opinions and priorities in the
      -trade-offs it makes. Other than this library, I can personally
      -recommend both [globby](http://npm.im/globby) and
      -[fast-glob](http://npm.im/fast-glob), though they differ in their
      -benefits and drawbacks.
      -
      -Both have very nice APIs and are reasonably fast.
      -
      -`fast-glob` is, as far as I am aware, the fastest glob
      -implementation in JavaScript today. However, there are many
      -cases where the choices that `fast-glob` makes in pursuit of
      -speed mean that its results differ from the results returned by
      -Bash and other sh-like shells, which may be surprising.
      -
      -In my testing, `fast-glob` is around 10-20% faster than this
      -module when walking over 200k files nested 4 directories
      -deep[1](#fn-webscale). However, there are some inconsistencies
      -with Bash matching behavior that this module does not suffer
      -from:
      -
      -- `**` only matches files, not directories
      -- `..` path portions are not handled unless they appear at the
      -  start of the pattern
      -- `./!()` will not match any files that _start_ with
      -  ``, even if they do not match ``. For
      -  example, `!(9).txt` will not match `9999.txt`.
      -- Some brace patterns in the middle of a pattern will result in
      -  failing to find certain matches.
      -- Extglob patterns are allowed to contain `/` characters.
      -
      -Globby exhibits all of the same pattern semantics as fast-glob,
      -(as it is a wrapper around fast-glob) and is slightly slower than
      -node-glob (by about 10-20% in the benchmark test set, or in other
      -words, anywhere from 20-50% slower than fast-glob). However, it
      -adds some API conveniences that may be worth the costs.
      -
      -- Support for `.gitignore` and other ignore files.
      -- Support for negated globs (ie, patterns starting with `!`
      -  rather than using a separate `ignore` option).
      -
      -The priority of this module is "correctness" in the sense of
      -performing a glob pattern expansion as faithfully as possible to
      -the behavior of Bash and other sh-like shells, with as much speed
      -as possible.
      -
      -Note that prior versions of `node-glob` are _not_ on this list.
      -Former versions of this module are far too slow for any cases
      -where performance matters at all, and were designed with APIs
      -that are extremely dated by current JavaScript standards.
      -
      ----
      -
      -[1]: In the cases where this module
      -returns results and `fast-glob` doesn't, it's even faster, of
      -course.
      -
      -![lumpy space princess saying 'oh my GLOB'](https://github.com/isaacs/node-glob/raw/main/oh-my-glob.gif)
      -
      -### Benchmark Results
      -
      -First number is time, smaller is better.
      -
      -Second number is the count of results returned.
      -
      -```
      ---- pattern: '**' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.598s  200364
      -node globby sync                0m0.765s  200364
      -node current globSync mjs       0m0.683s  222656
      -node current glob syncStream    0m0.649s  222656
      -~~ async ~~
      -node fast-glob async            0m0.350s  200364
      -node globby async               0m0.509s  200364
      -node current glob async mjs     0m0.463s  222656
      -node current glob stream        0m0.411s  222656
      -
      ---- pattern: '**/..' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.486s  0
      -node globby sync                0m0.769s  200364
      -node current globSync mjs       0m0.564s  2242
      -node current glob syncStream    0m0.583s  2242
      -~~ async ~~
      -node fast-glob async            0m0.283s  0
      -node globby async               0m0.512s  200364
      -node current glob async mjs     0m0.299s  2242
      -node current glob stream        0m0.312s  2242
      -
      ---- pattern: './**/0/**/0/**/0/**/0/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.490s  10
      -node globby sync                0m0.517s  10
      -node current globSync mjs       0m0.540s  10
      -node current glob syncStream    0m0.550s  10
      -~~ async ~~
      -node fast-glob async            0m0.290s  10
      -node globby async               0m0.296s  10
      -node current glob async mjs     0m0.278s  10
      -node current glob stream        0m0.302s  10
      -
      ---- pattern: './**/[01]/**/[12]/**/[23]/**/[45]/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.500s  160
      -node globby sync                0m0.528s  160
      -node current globSync mjs       0m0.556s  160
      -node current glob syncStream    0m0.573s  160
      -~~ async ~~
      -node fast-glob async            0m0.283s  160
      -node globby async               0m0.301s  160
      -node current glob async mjs     0m0.306s  160
      -node current glob stream        0m0.322s  160
      -
      ---- pattern: './**/0/**/0/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.502s  5230
      -node globby sync                0m0.527s  5230
      -node current globSync mjs       0m0.544s  5230
      -node current glob syncStream    0m0.557s  5230
      -~~ async ~~
      -node fast-glob async            0m0.285s  5230
      -node globby async               0m0.305s  5230
      -node current glob async mjs     0m0.304s  5230
      -node current glob stream        0m0.310s  5230
      -
      ---- pattern: '**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.580s  200023
      -node globby sync                0m0.771s  200023
      -node current globSync mjs       0m0.685s  200023
      -node current glob syncStream    0m0.649s  200023
      -~~ async ~~
      -node fast-glob async            0m0.349s  200023
      -node globby async               0m0.509s  200023
      -node current glob async mjs     0m0.427s  200023
      -node current glob stream        0m0.388s  200023
      -
      ---- pattern: '{**/*.txt,**/?/**/*.txt,**/?/**/?/**/*.txt,**/?/**/?/**/?/**/*.txt,**/?/**/?/**/?/**/?/**/*.txt}' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.589s  200023
      -node globby sync                0m0.771s  200023
      -node current globSync mjs       0m0.716s  200023
      -node current glob syncStream    0m0.684s  200023
      -~~ async ~~
      -node fast-glob async            0m0.351s  200023
      -node globby async               0m0.518s  200023
      -node current glob async mjs     0m0.462s  200023
      -node current glob stream        0m0.468s  200023
      -
      ---- pattern: '**/5555/0000/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.496s  1000
      -node globby sync                0m0.519s  1000
      -node current globSync mjs       0m0.539s  1000
      -node current glob syncStream    0m0.567s  1000
      -~~ async ~~
      -node fast-glob async            0m0.285s  1000
      -node globby async               0m0.299s  1000
      -node current glob async mjs     0m0.305s  1000
      -node current glob stream        0m0.301s  1000
      -
      ---- pattern: './**/0/**/../[01]/**/0/../**/0/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.484s  0
      -node globby sync                0m0.507s  0
      -node current globSync mjs       0m0.577s  4880
      -node current glob syncStream    0m0.586s  4880
      -~~ async ~~
      -node fast-glob async            0m0.280s  0
      -node globby async               0m0.298s  0
      -node current glob async mjs     0m0.327s  4880
      -node current glob stream        0m0.324s  4880
      -
      ---- pattern: '**/????/????/????/????/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.547s  100000
      -node globby sync                0m0.673s  100000
      -node current globSync mjs       0m0.626s  100000
      -node current glob syncStream    0m0.618s  100000
      -~~ async ~~
      -node fast-glob async            0m0.315s  100000
      -node globby async               0m0.414s  100000
      -node current glob async mjs     0m0.366s  100000
      -node current glob stream        0m0.345s  100000
      -
      ---- pattern: './{**/?{/**/?{/**/?{/**/?,,,,},,,,},,,,},,,}/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.588s  100000
      -node globby sync                0m0.670s  100000
      -node current globSync mjs       0m0.717s  200023
      -node current glob syncStream    0m0.687s  200023
      -~~ async ~~
      -node fast-glob async            0m0.343s  100000
      -node globby async               0m0.418s  100000
      -node current glob async mjs     0m0.519s  200023
      -node current glob stream        0m0.451s  200023
      -
      ---- pattern: '**/!(0|9).txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.573s  160023
      -node globby sync                0m0.731s  160023
      -node current globSync mjs       0m0.680s  180023
      -node current glob syncStream    0m0.659s  180023
      -~~ async ~~
      -node fast-glob async            0m0.345s  160023
      -node globby async               0m0.476s  160023
      -node current glob async mjs     0m0.427s  180023
      -node current glob stream        0m0.388s  180023
      -
      ---- pattern: './{*/**/../{*/**/../{*/**/../{*/**/../{*/**,,,,},,,,},,,,},,,,},,,,}/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.483s  0
      -node globby sync                0m0.512s  0
      -node current globSync mjs       0m0.811s  200023
      -node current glob syncStream    0m0.773s  200023
      -~~ async ~~
      -node fast-glob async            0m0.280s  0
      -node globby async               0m0.299s  0
      -node current glob async mjs     0m0.617s  200023
      -node current glob stream        0m0.568s  200023
      -
      ---- pattern: './*/**/../*/**/../*/**/../*/**/../*/**/../*/**/../*/**/../*/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.485s  0
      -node globby sync                0m0.507s  0
      -node current globSync mjs       0m0.759s  200023
      -node current glob syncStream    0m0.740s  200023
      -~~ async ~~
      -node fast-glob async            0m0.281s  0
      -node globby async               0m0.297s  0
      -node current glob async mjs     0m0.544s  200023
      -node current glob stream        0m0.464s  200023
      -
      ---- pattern: './*/**/../*/**/../*/**/../*/**/../*/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.486s  0
      -node globby sync                0m0.513s  0
      -node current globSync mjs       0m0.734s  200023
      -node current glob syncStream    0m0.696s  200023
      -~~ async ~~
      -node fast-glob async            0m0.286s  0
      -node globby async               0m0.296s  0
      -node current glob async mjs     0m0.506s  200023
      -node current glob stream        0m0.483s  200023
      -
      ---- pattern: './0/**/../1/**/../2/**/../3/**/../4/**/../5/**/../6/**/../7/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.060s  0
      -node globby sync                0m0.074s  0
      -node current globSync mjs       0m0.067s  0
      -node current glob syncStream    0m0.066s  0
      -~~ async ~~
      -node fast-glob async            0m0.060s  0
      -node globby async               0m0.075s  0
      -node current glob async mjs     0m0.066s  0
      -node current glob stream        0m0.067s  0
      -
      ---- pattern: './**/?/**/?/**/?/**/?/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.568s  100000
      -node globby sync                0m0.651s  100000
      -node current globSync mjs       0m0.619s  100000
      -node current glob syncStream    0m0.617s  100000
      -~~ async ~~
      -node fast-glob async            0m0.332s  100000
      -node globby async               0m0.409s  100000
      -node current glob async mjs     0m0.372s  100000
      -node current glob stream        0m0.351s  100000
      -
      ---- pattern: '**/*/**/*/**/*/**/*/**' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.603s  200113
      -node globby sync                0m0.798s  200113
      -node current globSync mjs       0m0.730s  222137
      -node current glob syncStream    0m0.693s  222137
      -~~ async ~~
      -node fast-glob async            0m0.356s  200113
      -node globby async               0m0.525s  200113
      -node current glob async mjs     0m0.508s  222137
      -node current glob stream        0m0.455s  222137
      -
      ---- pattern: './**/*/**/*/**/*/**/*/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.622s  200000
      -node globby sync                0m0.792s  200000
      -node current globSync mjs       0m0.722s  200000
      -node current glob syncStream    0m0.695s  200000
      -~~ async ~~
      -node fast-glob async            0m0.369s  200000
      -node globby async               0m0.527s  200000
      -node current glob async mjs     0m0.502s  200000
      -node current glob stream        0m0.481s  200000
      -
      ---- pattern: '**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.588s  200023
      -node globby sync                0m0.771s  200023
      -node current globSync mjs       0m0.684s  200023
      -node current glob syncStream    0m0.658s  200023
      -~~ async ~~
      -node fast-glob async            0m0.352s  200023
      -node globby async               0m0.516s  200023
      -node current glob async mjs     0m0.432s  200023
      -node current glob stream        0m0.384s  200023
      -
      ---- pattern: './**/**/**/**/**/**/**/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.589s  200023
      -node globby sync                0m0.766s  200023
      -node current globSync mjs       0m0.682s  200023
      -node current glob syncStream    0m0.652s  200023
      -~~ async ~~
      -node fast-glob async            0m0.352s  200023
      -node globby async               0m0.523s  200023
      -node current glob async mjs     0m0.436s  200023
      -node current glob stream        0m0.380s  200023
      -
      ---- pattern: '**/*/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.592s  200023
      -node globby sync                0m0.776s  200023
      -node current globSync mjs       0m0.691s  200023
      -node current glob syncStream    0m0.659s  200023
      -~~ async ~~
      -node fast-glob async            0m0.357s  200023
      -node globby async               0m0.513s  200023
      -node current glob async mjs     0m0.471s  200023
      -node current glob stream        0m0.424s  200023
      -
      ---- pattern: '**/*/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.585s  200023
      -node globby sync                0m0.766s  200023
      -node current globSync mjs       0m0.694s  200023
      -node current glob syncStream    0m0.664s  200023
      -~~ async ~~
      -node fast-glob async            0m0.350s  200023
      -node globby async               0m0.514s  200023
      -node current glob async mjs     0m0.472s  200023
      -node current glob stream        0m0.424s  200023
      -
      ---- pattern: '**/[0-9]/**/*.txt' ---
      -~~ sync ~~
      -node fast-glob sync             0m0.544s  100000
      -node globby sync                0m0.636s  100000
      -node current globSync mjs       0m0.626s  100000
      -node current glob syncStream    0m0.621s  100000
      -~~ async ~~
      -node fast-glob async            0m0.322s  100000
      -node globby async               0m0.404s  100000
      -node current glob async mjs     0m0.360s  100000
      -node current glob stream        0m0.352s  100000
      -```
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/package.json
      deleted file mode 100644
      index c15df94a3582bf..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/package.json
      +++ /dev/null
      @@ -1,4 +0,0 @@
      -{
      -  "version": "10.3.3",
      -  "type": "commonjs"
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.d.ts
      deleted file mode 100644
      index 34e005228653c8..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.d.ts
      +++ /dev/null
      @@ -1,3 +0,0 @@
      -#!/usr/bin/env node
      -export {};
      -//# sourceMappingURL=bin.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.d.ts.map
      deleted file mode 100644
      index c10c656ec75109..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"bin.d.ts","sourceRoot":"","sources":["../../../src/bin.ts"],"names":[],"mappings":""}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.js
      deleted file mode 100755
      index 4a8a88f2734d2e..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.js
      +++ /dev/null
      @@ -1,270 +0,0 @@
      -#!/usr/bin/env node
      -"use strict";
      -Object.defineProperty(exports, "__esModule", { value: true });
      -const foreground_child_1 = require("foreground-child");
      -const fs_1 = require("fs");
      -const jackspeak_1 = require("jackspeak");
      -const package_json_1 = require("../package.json");
      -const index_js_1 = require("./index.js");
      -const j = (0, jackspeak_1.jack)({
      -    usage: 'glob [options] [ [ ...]]',
      -})
      -    .description(`
      -    Glob v${package_json_1.version}
      -
      -    Expand the positional glob expression arguments into any matching file
      -    system paths found.
      -  `)
      -    .opt({
      -    cmd: {
      -        short: 'c',
      -        hint: 'command',
      -        description: `Run the command provided, passing the glob expression
      -                    matches as arguments.`,
      -    },
      -})
      -    .opt({
      -    default: {
      -        short: 'p',
      -        hint: 'pattern',
      -        description: `If no positional arguments are provided, glob will use
      -                    this pattern`,
      -    },
      -})
      -    .flag({
      -    all: {
      -        short: 'A',
      -        description: `By default, the glob cli command will not expand any
      -                    arguments that are an exact match to a file on disk.
      -
      -                    This prevents double-expanding, in case the shell expands
      -                    an argument whose filename is a glob expression.
      -
      -                    For example, if 'app/*.ts' would match 'app/[id].ts', then
      -                    on Windows powershell or cmd.exe, 'glob app/*.ts' will
      -                    expand to 'app/[id].ts', as expected. However, in posix
      -                    shells such as bash or zsh, the shell will first expand
      -                    'app/*.ts' to a list of filenames. Then glob will look
      -                    for a file matching 'app/[id].ts' (ie, 'app/i.ts' or
      -                    'app/d.ts'), which is unexpected.
      -
      -                    Setting '--all' prevents this behavior, causing glob
      -                    to treat ALL patterns as glob expressions to be expanded,
      -                    even if they are an exact match to a file on disk.
      -
      -                    When setting this option, be sure to enquote arguments
      -                    so that the shell will not expand them prior to passing
      -                    them to the glob command process.
      -      `,
      -    },
      -    absolute: {
      -        short: 'a',
      -        description: 'Expand to absolute paths',
      -    },
      -    'dot-relative': {
      -        short: 'd',
      -        description: `Prepend './' on relative matches`,
      -    },
      -    mark: {
      -        short: 'm',
      -        description: `Append a / on any directories matched`,
      -    },
      -    posix: {
      -        short: 'x',
      -        description: `Always resolve to posix style paths, using '/' as the
      -                    directory separator, even on Windows. Drive letter
      -                    absolute matches on Windows will be expanded to their
      -                    full resolved UNC maths, eg instead of 'C:\\foo\\bar',
      -                    it will expand to '//?/C:/foo/bar'.
      -      `,
      -    },
      -    follow: {
      -        short: 'f',
      -        description: `Follow symlinked directories when expanding '**'`,
      -    },
      -    realpath: {
      -        short: 'R',
      -        description: `Call 'fs.realpath' on all of the results. In the case
      -                    of an entry that cannot be resolved, the entry is
      -                    omitted. This incurs a slight performance penalty, of
      -                    course, because of the added system calls.`,
      -    },
      -    stat: {
      -        short: 's',
      -        description: `Call 'fs.lstat' on all entries, whether required or not
      -                    to determine if it's a valid match.`,
      -    },
      -    'match-base': {
      -        short: 'b',
      -        description: `Perform a basename-only match if the pattern does not
      -                    contain any slash characters. That is, '*.js' would be
      -                    treated as equivalent to '**/*.js', matching js files
      -                    in all directories.
      -      `,
      -    },
      -    dot: {
      -        description: `Allow patterns to match files/directories that start
      -                    with '.', even if the pattern does not start with '.'
      -      `,
      -    },
      -    nobrace: {
      -        description: 'Do not expand {...} patterns',
      -    },
      -    nocase: {
      -        description: `Perform a case-insensitive match. This defaults to
      -                    'true' on macOS and Windows platforms, and false on
      -                    all others.
      -
      -                    Note: 'nocase' should only be explicitly set when it is
      -                    known that the filesystem's case sensitivity differs
      -                    from the platform default. If set 'true' on
      -                    case-insensitive file systems, then the walk may return
      -                    more or less results than expected.
      -      `,
      -    },
      -    nodir: {
      -        description: `Do not match directories, only files.
      -
      -                    Note: to *only* match directories, append a '/' at the
      -                    end of the pattern.
      -      `,
      -    },
      -    noext: {
      -        description: `Do not expand extglob patterns, such as '+(a|b)'`,
      -    },
      -    noglobstar: {
      -        description: `Do not expand '**' against multiple path portions.
      -                    Ie, treat it as a normal '*' instead.`,
      -    },
      -    'windows-path-no-escape': {
      -        description: `Use '\\' as a path separator *only*, and *never* as an
      -                    escape character. If set, all '\\' characters are
      -                    replaced with '/' in the pattern.`,
      -    },
      -})
      -    .num({
      -    'max-depth': {
      -        short: 'D',
      -        description: `Maximum depth to traverse from the current
      -                    working directory`,
      -    },
      -})
      -    .opt({
      -    cwd: {
      -        short: 'C',
      -        description: 'Current working directory to execute/match in',
      -        default: process.cwd(),
      -    },
      -    root: {
      -        short: 'r',
      -        description: `A string path resolved against the 'cwd', which is
      -                    used as the starting point for absolute patterns that
      -                    start with '/' (but not drive letters or UNC paths
      -                    on Windows).
      -
      -                    Note that this *doesn't* necessarily limit the walk to
      -                    the 'root' directory, and doesn't affect the cwd
      -                    starting point for non-absolute patterns. A pattern
      -                    containing '..' will still be able to traverse out of
      -                    the root directory, if it is not an actual root directory
      -                    on the filesystem, and any non-absolute patterns will
      -                    still be matched in the 'cwd'.
      -
      -                    To start absolute and non-absolute patterns in the same
      -                    path, you can use '--root=' to set it to the empty
      -                    string. However, be aware that on Windows systems, a
      -                    pattern like 'x:/*' or '//host/share/*' will *always*
      -                    start in the 'x:/' or '//host/share/' directory,
      -                    regardless of the --root setting.
      -      `,
      -    },
      -    platform: {
      -        description: `Defaults to the value of 'process.platform' if
      -                    available, or 'linux' if not. Setting --platform=win32
      -                    on non-Windows systems may cause strange behavior!`,
      -        validate: v => new Set([
      -            'aix',
      -            'android',
      -            'darwin',
      -            'freebsd',
      -            'haiku',
      -            'linux',
      -            'openbsd',
      -            'sunos',
      -            'win32',
      -            'cygwin',
      -            'netbsd',
      -        ]).has(v),
      -    },
      -})
      -    .optList({
      -    ignore: {
      -        short: 'i',
      -        description: `Glob patterns to ignore`,
      -    },
      -})
      -    .flag({
      -    debug: {
      -        short: 'v',
      -        description: `Output a huge amount of noisy debug information about
      -                    patterns as they are parsed and used to match files.`,
      -    },
      -})
      -    .flag({
      -    help: {
      -        short: 'h',
      -        description: 'Show this usage information',
      -    },
      -});
      -try {
      -    const { positionals, values } = j.parse();
      -    if (values.help) {
      -        console.log(j.usage());
      -        process.exit(0);
      -    }
      -    if (positionals.length === 0 && !values.default)
      -        throw 'No patterns provided';
      -    if (positionals.length === 0 && values.default)
      -        positionals.push(values.default);
      -    const patterns = values.all
      -        ? positionals
      -        : positionals.filter(p => !(0, fs_1.existsSync)(p));
      -    const matches = values.all ? [] : positionals.filter(p => (0, fs_1.existsSync)(p));
      -    const stream = (0, index_js_1.globStream)(patterns, {
      -        absolute: values.absolute,
      -        cwd: values.cwd,
      -        dot: values.dot,
      -        dotRelative: values['dot-relative'],
      -        follow: values.follow,
      -        ignore: values.ignore,
      -        mark: values.mark,
      -        matchBase: values['match-base'],
      -        maxDepth: values['max-depth'],
      -        nobrace: values.nobrace,
      -        nocase: values.nocase,
      -        nodir: values.nodir,
      -        noext: values.noext,
      -        noglobstar: values.noglobstar,
      -        platform: values.platform,
      -        realpath: values.realpath,
      -        root: values.root,
      -        stat: values.stat,
      -        debug: values.debug,
      -        posix: values.posix,
      -    });
      -    const cmd = values.cmd;
      -    if (!cmd) {
      -        matches.forEach(m => console.log(m));
      -        stream.on('data', f => console.log(f));
      -    }
      -    else {
      -        stream.on('data', f => matches.push(f));
      -        stream.on('end', () => (0, foreground_child_1.foregroundChild)(cmd, matches, { shell: true }));
      -    }
      -}
      -catch (e) {
      -    console.error(j.usage());
      -    console.error(e instanceof Error ? e.message : String(e));
      -    process.exit(1);
      -}
      -//# sourceMappingURL=bin.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.js.map
      deleted file mode 100644
      index e189acfd01b1a7..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/bin.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"bin.js","sourceRoot":"","sources":["../../../src/bin.ts"],"names":[],"mappings":";;;AACA,uDAAkD;AAClD,2BAA+B;AAC/B,yCAAgC;AAChC,kDAAyC;AACzC,yCAAuC;AAEvC,MAAM,CAAC,GAAG,IAAA,gBAAI,EAAC;IACb,KAAK,EAAE,4CAA4C;CACpD,CAAC;KACC,WAAW,CACV;YACQ,sBAAO;;;;GAIhB,CACA;KACA,GAAG,CAAC;IACH,GAAG,EAAE;QACH,KAAK,EAAE,GAAG;QACV,IAAI,EAAE,SAAS;QACf,WAAW,EAAE;0CACuB;KACrC;CACF,CAAC;KACD,GAAG,CAAC;IACH,OAAO,EAAE;QACP,KAAK,EAAE,GAAG;QACV,IAAI,EAAE,SAAS;QACf,WAAW,EAAE;iCACc;KAC5B;CACF,CAAC;KACD,IAAI,CAAC;IACJ,GAAG,EAAE;QACH,KAAK,EAAE,GAAG;QACV,WAAW,EAAE;;;;;;;;;;;;;;;;;;;;;OAqBZ;KACF;IACD,QAAQ,EAAE;QACR,KAAK,EAAE,GAAG;QACV,WAAW,EAAE,0BAA0B;KACxC;IACD,cAAc,EAAE;QACd,KAAK,EAAE,GAAG;QACV,WAAW,EAAE,kCAAkC;KAChD;IACD,IAAI,EAAE;QACJ,KAAK,EAAE,GAAG;QACV,WAAW,EAAE,uCAAuC;KACrD;IACD,KAAK,EAAE;QACL,KAAK,EAAE,GAAG;QACV,WAAW,EAAE;;;;;OAKZ;KACF;IAED,MAAM,EAAE;QACN,KAAK,EAAE,GAAG;QACV,WAAW,EAAE,kDAAkD;KAChE;IACD,QAAQ,EAAE;QACR,KAAK,EAAE,GAAG;QACV,WAAW,EAAE;;;+DAG4C;KAC1D;IACD,IAAI,EAAE;QACJ,KAAK,EAAE,GAAG;QACV,WAAW,EAAE;wDACqC;KACnD;IACD,YAAY,EAAE;QACZ,KAAK,EAAE,GAAG;QACV,WAAW,EAAE;;;;OAIZ;KACF;IAED,GAAG,EAAE;QACH,WAAW,EAAE;;OAEZ;KACF;IACD,OAAO,EAAE;QACP,WAAW,EAAE,8BAA8B;KAC5C;IACD,MAAM,EAAE;QACN,WAAW,EAAE;;;;;;;;;OASZ;KACF;IACD,KAAK,EAAE;QACL,WAAW,EAAE;;;;OAIZ;KACF;IACD,KAAK,EAAE;QACL,WAAW,EAAE,kDAAkD;KAChE;IACD,UAAU,EAAE;QACV,WAAW,EAAE;0DACuC;KACrD;IACD,wBAAwB,EAAE;QACxB,WAAW,EAAE;;sDAEmC;KACjD;CACF,CAAC;KACD,GAAG,CAAC;IACH,WAAW,EAAE;QACX,KAAK,EAAE,GAAG;QACV,WAAW,EAAE;sCACmB;KACjC;CACF,CAAC;KACD,GAAG,CAAC;IACH,GAAG,EAAE;QACH,KAAK,EAAE,GAAG;QACV,WAAW,EAAE,+CAA+C;QAC5D,OAAO,EAAE,OAAO,CAAC,GAAG,EAAE;KACvB;IACD,IAAI,EAAE;QACJ,KAAK,EAAE,GAAG;QACV,WAAW,EAAE;;;;;;;;;;;;;;;;;;;OAmBZ;KACF;IACD,QAAQ,EAAE;QACR,WAAW,EAAE;;uEAEoD;QACjE,QAAQ,EAAE,CAAC,CAAC,EAAE,CACZ,IAAI,GAAG,CAAC;YACN,KAAK;YACL,SAAS;YACT,QAAQ;YACR,SAAS;YACT,OAAO;YACP,OAAO;YACP,SAAS;YACT,OAAO;YACP,OAAO;YACP,QAAQ;YACR,QAAQ;SACT,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;KACZ;CACF,CAAC;KACD,OAAO,CAAC;IACP,MAAM,EAAE;QACN,KAAK,EAAE,GAAG;QACV,WAAW,EAAE,yBAAyB;KACvC;CACF,CAAC;KACD,IAAI,CAAC;IACJ,KAAK,EAAE;QACL,KAAK,EAAE,GAAG;QACV,WAAW,EAAE;yEACsD;KACpE;CACF,CAAC;KACD,IAAI,CAAC;IACJ,IAAI,EAAE;QACJ,KAAK,EAAE,GAAG;QACV,WAAW,EAAE,6BAA6B;KAC3C;CACF,CAAC,CAAA;AAEJ,IAAI;IACF,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,GAAG,CAAC,CAAC,KAAK,EAAE,CAAA;IACzC,IAAI,MAAM,CAAC,IAAI,EAAE;QACf,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAA;QACtB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;KAChB;IACD,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO;QAC7C,MAAM,sBAAsB,CAAA;IAC9B,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO;QAC5C,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;IAClC,MAAM,QAAQ,GAAG,MAAM,CAAC,GAAG;QACzB,CAAC,CAAC,WAAW;QACb,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAA,eAAU,EAAC,CAAC,CAAC,CAAC,CAAA;IAC3C,MAAM,OAAO,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,IAAA,eAAU,EAAC,CAAC,CAAC,CAAC,CAAA;IACxE,MAAM,MAAM,GAAG,IAAA,qBAAU,EAAC,QAAQ,EAAE;QAClC,QAAQ,EAAE,MAAM,CAAC,QAAQ;QACzB,GAAG,EAAE,MAAM,CAAC,GAAG;QACf,GAAG,EAAE,MAAM,CAAC,GAAG;QACf,WAAW,EAAE,MAAM,CAAC,cAAc,CAAC;QACnC,MAAM,EAAE,MAAM,CAAC,MAAM;QACrB,MAAM,EAAE,MAAM,CAAC,MAAM;QACrB,IAAI,EAAE,MAAM,CAAC,IAAI;QACjB,SAAS,EAAE,MAAM,CAAC,YAAY,CAAC;QAC/B,QAAQ,EAAE,MAAM,CAAC,WAAW,CAAC;QAC7B,OAAO,EAAE,MAAM,CAAC,OAAO;QACvB,MAAM,EAAE,MAAM,CAAC,MAAM;QACrB,KAAK,EAAE,MAAM,CAAC,KAAK;QACnB,KAAK,EAAE,MAAM,CAAC,KAAK;QACnB,UAAU,EAAE,MAAM,CAAC,UAAU;QAC7B,QAAQ,EAAE,MAAM,CAAC,QAAuC;QACxD,QAAQ,EAAE,MAAM,CAAC,QAAQ;QACzB,IAAI,EAAE,MAAM,CAAC,IAAI;QACjB,IAAI,EAAE,MAAM,CAAC,IAAI;QACjB,KAAK,EAAE,MAAM,CAAC,KAAK;QACnB,KAAK,EAAE,MAAM,CAAC,KAAK;KACpB,CAAC,CAAA;IAEF,MAAM,GAAG,GAAG,MAAM,CAAC,GAAG,CAAA;IACtB,IAAI,CAAC,GAAG,EAAE;QACR,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;QACpC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAA;KACvC;SAAM;QACL,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAA;QACvC,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,IAAA,kCAAe,EAAC,GAAG,EAAE,OAAO,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,CAAA;KACvE;CACF;AAAC,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAA;IACxB,OAAO,CAAC,KAAK,CAAC,CAAC,YAAY,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAA;IACzD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;CAChB","sourcesContent":["#!/usr/bin/env node\nimport { foregroundChild } from 'foreground-child'\nimport { existsSync } from 'fs'\nimport { jack } from 'jackspeak'\nimport { version } from '../package.json'\nimport { globStream } from './index.js'\n\nconst j = jack({\n  usage: 'glob [options] [ [ ...]]',\n})\n  .description(\n    `\n    Glob v${version}\n\n    Expand the positional glob expression arguments into any matching file\n    system paths found.\n  `\n  )\n  .opt({\n    cmd: {\n      short: 'c',\n      hint: 'command',\n      description: `Run the command provided, passing the glob expression\n                    matches as arguments.`,\n    },\n  })\n  .opt({\n    default: {\n      short: 'p',\n      hint: 'pattern',\n      description: `If no positional arguments are provided, glob will use\n                    this pattern`,\n    },\n  })\n  .flag({\n    all: {\n      short: 'A',\n      description: `By default, the glob cli command will not expand any\n                    arguments that are an exact match to a file on disk.\n\n                    This prevents double-expanding, in case the shell expands\n                    an argument whose filename is a glob expression.\n\n                    For example, if 'app/*.ts' would match 'app/[id].ts', then\n                    on Windows powershell or cmd.exe, 'glob app/*.ts' will\n                    expand to 'app/[id].ts', as expected. However, in posix\n                    shells such as bash or zsh, the shell will first expand\n                    'app/*.ts' to a list of filenames. Then glob will look\n                    for a file matching 'app/[id].ts' (ie, 'app/i.ts' or\n                    'app/d.ts'), which is unexpected.\n\n                    Setting '--all' prevents this behavior, causing glob\n                    to treat ALL patterns as glob expressions to be expanded,\n                    even if they are an exact match to a file on disk.\n\n                    When setting this option, be sure to enquote arguments\n                    so that the shell will not expand them prior to passing\n                    them to the glob command process.\n      `,\n    },\n    absolute: {\n      short: 'a',\n      description: 'Expand to absolute paths',\n    },\n    'dot-relative': {\n      short: 'd',\n      description: `Prepend './' on relative matches`,\n    },\n    mark: {\n      short: 'm',\n      description: `Append a / on any directories matched`,\n    },\n    posix: {\n      short: 'x',\n      description: `Always resolve to posix style paths, using '/' as the\n                    directory separator, even on Windows. Drive letter\n                    absolute matches on Windows will be expanded to their\n                    full resolved UNC maths, eg instead of 'C:\\\\foo\\\\bar',\n                    it will expand to '//?/C:/foo/bar'.\n      `,\n    },\n\n    follow: {\n      short: 'f',\n      description: `Follow symlinked directories when expanding '**'`,\n    },\n    realpath: {\n      short: 'R',\n      description: `Call 'fs.realpath' on all of the results. In the case\n                    of an entry that cannot be resolved, the entry is\n                    omitted. This incurs a slight performance penalty, of\n                    course, because of the added system calls.`,\n    },\n    stat: {\n      short: 's',\n      description: `Call 'fs.lstat' on all entries, whether required or not\n                    to determine if it's a valid match.`,\n    },\n    'match-base': {\n      short: 'b',\n      description: `Perform a basename-only match if the pattern does not\n                    contain any slash characters. That is, '*.js' would be\n                    treated as equivalent to '**/*.js', matching js files\n                    in all directories.\n      `,\n    },\n\n    dot: {\n      description: `Allow patterns to match files/directories that start\n                    with '.', even if the pattern does not start with '.'\n      `,\n    },\n    nobrace: {\n      description: 'Do not expand {...} patterns',\n    },\n    nocase: {\n      description: `Perform a case-insensitive match. This defaults to\n                    'true' on macOS and Windows platforms, and false on\n                    all others.\n\n                    Note: 'nocase' should only be explicitly set when it is\n                    known that the filesystem's case sensitivity differs\n                    from the platform default. If set 'true' on\n                    case-insensitive file systems, then the walk may return\n                    more or less results than expected.\n      `,\n    },\n    nodir: {\n      description: `Do not match directories, only files.\n\n                    Note: to *only* match directories, append a '/' at the\n                    end of the pattern.\n      `,\n    },\n    noext: {\n      description: `Do not expand extglob patterns, such as '+(a|b)'`,\n    },\n    noglobstar: {\n      description: `Do not expand '**' against multiple path portions.\n                    Ie, treat it as a normal '*' instead.`,\n    },\n    'windows-path-no-escape': {\n      description: `Use '\\\\' as a path separator *only*, and *never* as an\n                    escape character. If set, all '\\\\' characters are\n                    replaced with '/' in the pattern.`,\n    },\n  })\n  .num({\n    'max-depth': {\n      short: 'D',\n      description: `Maximum depth to traverse from the current\n                    working directory`,\n    },\n  })\n  .opt({\n    cwd: {\n      short: 'C',\n      description: 'Current working directory to execute/match in',\n      default: process.cwd(),\n    },\n    root: {\n      short: 'r',\n      description: `A string path resolved against the 'cwd', which is\n                    used as the starting point for absolute patterns that\n                    start with '/' (but not drive letters or UNC paths\n                    on Windows).\n\n                    Note that this *doesn't* necessarily limit the walk to\n                    the 'root' directory, and doesn't affect the cwd\n                    starting point for non-absolute patterns. A pattern\n                    containing '..' will still be able to traverse out of\n                    the root directory, if it is not an actual root directory\n                    on the filesystem, and any non-absolute patterns will\n                    still be matched in the 'cwd'.\n\n                    To start absolute and non-absolute patterns in the same\n                    path, you can use '--root=' to set it to the empty\n                    string. However, be aware that on Windows systems, a\n                    pattern like 'x:/*' or '//host/share/*' will *always*\n                    start in the 'x:/' or '//host/share/' directory,\n                    regardless of the --root setting.\n      `,\n    },\n    platform: {\n      description: `Defaults to the value of 'process.platform' if\n                    available, or 'linux' if not. Setting --platform=win32\n                    on non-Windows systems may cause strange behavior!`,\n      validate: v =>\n        new Set([\n          'aix',\n          'android',\n          'darwin',\n          'freebsd',\n          'haiku',\n          'linux',\n          'openbsd',\n          'sunos',\n          'win32',\n          'cygwin',\n          'netbsd',\n        ]).has(v),\n    },\n  })\n  .optList({\n    ignore: {\n      short: 'i',\n      description: `Glob patterns to ignore`,\n    },\n  })\n  .flag({\n    debug: {\n      short: 'v',\n      description: `Output a huge amount of noisy debug information about\n                    patterns as they are parsed and used to match files.`,\n    },\n  })\n  .flag({\n    help: {\n      short: 'h',\n      description: 'Show this usage information',\n    },\n  })\n\ntry {\n  const { positionals, values } = j.parse()\n  if (values.help) {\n    console.log(j.usage())\n    process.exit(0)\n  }\n  if (positionals.length === 0 && !values.default)\n    throw 'No patterns provided'\n  if (positionals.length === 0 && values.default)\n    positionals.push(values.default)\n  const patterns = values.all\n    ? positionals\n    : positionals.filter(p => !existsSync(p))\n  const matches = values.all ? [] : positionals.filter(p => existsSync(p))\n  const stream = globStream(patterns, {\n    absolute: values.absolute,\n    cwd: values.cwd,\n    dot: values.dot,\n    dotRelative: values['dot-relative'],\n    follow: values.follow,\n    ignore: values.ignore,\n    mark: values.mark,\n    matchBase: values['match-base'],\n    maxDepth: values['max-depth'],\n    nobrace: values.nobrace,\n    nocase: values.nocase,\n    nodir: values.nodir,\n    noext: values.noext,\n    noglobstar: values.noglobstar,\n    platform: values.platform as undefined | NodeJS.Platform,\n    realpath: values.realpath,\n    root: values.root,\n    stat: values.stat,\n    debug: values.debug,\n    posix: values.posix,\n  })\n\n  const cmd = values.cmd\n  if (!cmd) {\n    matches.forEach(m => console.log(m))\n    stream.on('data', f => console.log(f))\n  } else {\n    stream.on('data', f => matches.push(f))\n    stream.on('end', () => foregroundChild(cmd, matches, { shell: true }))\n  }\n} catch (e) {\n  console.error(j.usage())\n  console.error(e instanceof Error ? e.message : String(e))\n  process.exit(1)\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.d.ts
      deleted file mode 100644
      index a8b3da7722b652..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.d.ts
      +++ /dev/null
      @@ -1,344 +0,0 @@
      -/// 
      -import { Minimatch } from 'minimatch';
      -import { Minipass } from 'minipass';
      -import { FSOption, Path, PathScurry } from 'path-scurry';
      -import { IgnoreLike } from './ignore.js';
      -import { Pattern } from './pattern.js';
      -export type MatchSet = Minimatch['set'];
      -export type GlobParts = Exclude;
      -/**
      - * A `GlobOptions` object may be provided to any of the exported methods, and
      - * must be provided to the `Glob` constructor.
      - *
      - * All options are optional, boolean, and false by default, unless otherwise
      - * noted.
      - *
      - * All resolved options are added to the Glob object as properties.
      - *
      - * If you are running many `glob` operations, you can pass a Glob object as the
      - * `options` argument to a subsequent operation to share the previously loaded
      - * cache.
      - */
      -export interface GlobOptions {
      -    /**
      -     * Set to `true` to always receive absolute paths for
      -     * matched files. Set to `false` to always return relative paths.
      -     *
      -     * When this option is not set, absolute paths are returned for patterns
      -     * that are absolute, and otherwise paths are returned that are relative
      -     * to the `cwd` setting.
      -     *
      -     * This does _not_ make an extra system call to get
      -     * the realpath, it only does string path resolution.
      -     *
      -     * Conflicts with {@link withFileTypes}
      -     */
      -    absolute?: boolean;
      -    /**
      -     * Set to false to enable {@link windowsPathsNoEscape}
      -     *
      -     * @deprecated
      -     */
      -    allowWindowsEscape?: boolean;
      -    /**
      -     * The current working directory in which to search. Defaults to
      -     * `process.cwd()`.
      -     *
      -     * May be eiher a string path or a `file://` URL object or string.
      -     */
      -    cwd?: string | URL;
      -    /**
      -     * Include `.dot` files in normal matches and `globstar`
      -     * matches. Note that an explicit dot in a portion of the pattern
      -     * will always match dot files.
      -     */
      -    dot?: boolean;
      -    /**
      -     * Prepend all relative path strings with `./` (or `.\` on Windows).
      -     *
      -     * Without this option, returned relative paths are "bare", so instead of
      -     * returning `'./foo/bar'`, they are returned as `'foo/bar'`.
      -     *
      -     * Relative patterns starting with `'../'` are not prepended with `./`, even
      -     * if this option is set.
      -     */
      -    dotRelative?: boolean;
      -    /**
      -     * Follow symlinked directories when expanding `**`
      -     * patterns. This can result in a lot of duplicate references in
      -     * the presence of cyclic links, and make performance quite bad.
      -     *
      -     * By default, a `**` in a pattern will follow 1 symbolic link if
      -     * it is not the first item in the pattern, or none if it is the
      -     * first item in the pattern, following the same behavior as Bash.
      -     */
      -    follow?: boolean;
      -    /**
      -     * string or string[], or an object with `ignore` and `ignoreChildren`
      -     * methods.
      -     *
      -     * If a string or string[] is provided, then this is treated as a glob
      -     * pattern or array of glob patterns to exclude from matches. To ignore all
      -     * children within a directory, as well as the entry itself, append `'/**'`
      -     * to the ignore pattern.
      -     *
      -     * **Note** `ignore` patterns are _always_ in `dot:true` mode, regardless of
      -     * any other settings.
      -     *
      -     * If an object is provided that has `ignored(path)` and/or
      -     * `childrenIgnored(path)` methods, then these methods will be called to
      -     * determine whether any Path is a match or if its children should be
      -     * traversed, respectively.
      -     */
      -    ignore?: string | string[] | IgnoreLike;
      -    /**
      -     * Treat brace expansion like `{a,b}` as a "magic" pattern. Has no
      -     * effect if {@link nobrace} is set.
      -     *
      -     * Only has effect on the {@link hasMagic} function.
      -     */
      -    magicalBraces?: boolean;
      -    /**
      -     * Add a `/` character to directory matches. Note that this requires
      -     * additional stat calls in some cases.
      -     */
      -    mark?: boolean;
      -    /**
      -     * Perform a basename-only match if the pattern does not contain any slash
      -     * characters. That is, `*.js` would be treated as equivalent to
      -     * `**\/*.js`, matching all js files in all directories.
      -     */
      -    matchBase?: boolean;
      -    /**
      -     * Limit the directory traversal to a given depth below the cwd.
      -     * Note that this does NOT prevent traversal to sibling folders,
      -     * root patterns, and so on. It only limits the maximum folder depth
      -     * that the walk will descend, relative to the cwd.
      -     */
      -    maxDepth?: number;
      -    /**
      -     * Do not expand `{a,b}` and `{1..3}` brace sets.
      -     */
      -    nobrace?: boolean;
      -    /**
      -     * Perform a case-insensitive match. This defaults to `true` on macOS and
      -     * Windows systems, and `false` on all others.
      -     *
      -     * **Note** `nocase` should only be explicitly set when it is
      -     * known that the filesystem's case sensitivity differs from the
      -     * platform default. If set `true` on case-sensitive file
      -     * systems, or `false` on case-insensitive file systems, then the
      -     * walk may return more or less results than expected.
      -     */
      -    nocase?: boolean;
      -    /**
      -     * Do not match directories, only files. (Note: to match
      -     * _only_ directories, put a `/` at the end of the pattern.)
      -     */
      -    nodir?: boolean;
      -    /**
      -     * Do not match "extglob" patterns such as `+(a|b)`.
      -     */
      -    noext?: boolean;
      -    /**
      -     * Do not match `**` against multiple filenames. (Ie, treat it as a normal
      -     * `*` instead.)
      -     *
      -     * Conflicts with {@link matchBase}
      -     */
      -    noglobstar?: boolean;
      -    /**
      -     * Defaults to value of `process.platform` if available, or `'linux'` if
      -     * not. Setting `platform:'win32'` on non-Windows systems may cause strange
      -     * behavior.
      -     */
      -    platform?: NodeJS.Platform;
      -    /**
      -     * Set to true to call `fs.realpath` on all of the
      -     * results. In the case of an entry that cannot be resolved, the
      -     * entry is omitted. This incurs a slight performance penalty, of
      -     * course, because of the added system calls.
      -     */
      -    realpath?: boolean;
      -    /**
      -     *
      -     * A string path resolved against the `cwd` option, which
      -     * is used as the starting point for absolute patterns that start
      -     * with `/`, (but not drive letters or UNC paths on Windows).
      -     *
      -     * Note that this _doesn't_ necessarily limit the walk to the
      -     * `root` directory, and doesn't affect the cwd starting point for
      -     * non-absolute patterns. A pattern containing `..` will still be
      -     * able to traverse out of the root directory, if it is not an
      -     * actual root directory on the filesystem, and any non-absolute
      -     * patterns will be matched in the `cwd`. For example, the
      -     * pattern `/../*` with `{root:'/some/path'}` will return all
      -     * files in `/some`, not all files in `/some/path`. The pattern
      -     * `*` with `{root:'/some/path'}` will return all the entries in
      -     * the cwd, not the entries in `/some/path`.
      -     *
      -     * To start absolute and non-absolute patterns in the same
      -     * path, you can use `{root:''}`. However, be aware that on
      -     * Windows systems, a pattern like `x:/*` or `//host/share/*` will
      -     * _always_ start in the `x:/` or `//host/share` directory,
      -     * regardless of the `root` setting.
      -     */
      -    root?: string;
      -    /**
      -     * A [PathScurry](http://npm.im/path-scurry) object used
      -     * to traverse the file system. If the `nocase` option is set
      -     * explicitly, then any provided `scurry` object must match this
      -     * setting.
      -     */
      -    scurry?: PathScurry;
      -    /**
      -     * Call `lstat()` on all entries, whether required or not to determine
      -     * if it's a valid match. When used with {@link withFileTypes}, this means
      -     * that matches will include data such as modified time, permissions, and
      -     * so on.  Note that this will incur a performance cost due to the added
      -     * system calls.
      -     */
      -    stat?: boolean;
      -    /**
      -     * An AbortSignal which will cancel the Glob walk when
      -     * triggered.
      -     */
      -    signal?: AbortSignal;
      -    /**
      -     * Use `\\` as a path separator _only_, and
      -     *  _never_ as an escape character. If set, all `\\` characters are
      -     *  replaced with `/` in the pattern.
      -     *
      -     *  Note that this makes it **impossible** to match against paths
      -     *  containing literal glob pattern characters, but allows matching
      -     *  with patterns constructed using `path.join()` and
      -     *  `path.resolve()` on Windows platforms, mimicking the (buggy!)
      -     *  behavior of Glob v7 and before on Windows. Please use with
      -     *  caution, and be mindful of [the caveat below about Windows
      -     *  paths](#windows). (For legacy reasons, this is also set if
      -     *  `allowWindowsEscape` is set to the exact value `false`.)
      -     */
      -    windowsPathsNoEscape?: boolean;
      -    /**
      -     * Return [PathScurry](http://npm.im/path-scurry)
      -     * `Path` objects instead of strings. These are similar to a
      -     * NodeJS `Dirent` object, but with additional methods and
      -     * properties.
      -     *
      -     * Conflicts with {@link absolute}
      -     */
      -    withFileTypes?: boolean;
      -    /**
      -     * An fs implementation to override some or all of the defaults.  See
      -     * http://npm.im/path-scurry for details about what can be overridden.
      -     */
      -    fs?: FSOption;
      -    /**
      -     * Just passed along to Minimatch.  Note that this makes all pattern
      -     * matching operations slower and *extremely* noisy.
      -     */
      -    debug?: boolean;
      -    /**
      -     * Return `/` delimited paths, even on Windows.
      -     *
      -     * On posix systems, this has no effect.  But, on Windows, it means that
      -     * paths will be `/` delimited, and absolute paths will be their full
      -     * resolved UNC forms, eg instead of `'C:\\foo\\bar'`, it would return
      -     * `'//?/C:/foo/bar'`
      -     */
      -    posix?: boolean;
      -}
      -export type GlobOptionsWithFileTypesTrue = GlobOptions & {
      -    withFileTypes: true;
      -    absolute?: undefined;
      -    mark?: undefined;
      -    posix?: undefined;
      -};
      -export type GlobOptionsWithFileTypesFalse = GlobOptions & {
      -    withFileTypes?: false;
      -};
      -export type GlobOptionsWithFileTypesUnset = GlobOptions & {
      -    withFileTypes?: undefined;
      -};
      -export type Result = Opts extends GlobOptionsWithFileTypesTrue ? Path : Opts extends GlobOptionsWithFileTypesFalse ? string : Opts extends GlobOptionsWithFileTypesUnset ? string : string | Path;
      -export type Results = Result[];
      -export type FileTypes = Opts extends GlobOptionsWithFileTypesTrue ? true : Opts extends GlobOptionsWithFileTypesFalse ? false : Opts extends GlobOptionsWithFileTypesUnset ? false : boolean;
      -/**
      - * An object that can perform glob pattern traversals.
      - */
      -export declare class Glob implements GlobOptions {
      -    absolute?: boolean;
      -    cwd: string;
      -    root?: string;
      -    dot: boolean;
      -    dotRelative: boolean;
      -    follow: boolean;
      -    ignore?: string | string[] | IgnoreLike;
      -    magicalBraces: boolean;
      -    mark?: boolean;
      -    matchBase: boolean;
      -    maxDepth: number;
      -    nobrace: boolean;
      -    nocase: boolean;
      -    nodir: boolean;
      -    noext: boolean;
      -    noglobstar: boolean;
      -    pattern: string[];
      -    platform: NodeJS.Platform;
      -    realpath: boolean;
      -    scurry: PathScurry;
      -    stat: boolean;
      -    signal?: AbortSignal;
      -    windowsPathsNoEscape: boolean;
      -    withFileTypes: FileTypes;
      -    /**
      -     * The options provided to the constructor.
      -     */
      -    opts: Opts;
      -    /**
      -     * An array of parsed immutable {@link Pattern} objects.
      -     */
      -    patterns: Pattern[];
      -    /**
      -     * All options are stored as properties on the `Glob` object.
      -     *
      -     * See {@link GlobOptions} for full options descriptions.
      -     *
      -     * Note that a previous `Glob` object can be passed as the
      -     * `GlobOptions` to another `Glob` instantiation to re-use settings
      -     * and caches with a new pattern.
      -     *
      -     * Traversal functions can be called multiple times to run the walk
      -     * again.
      -     */
      -    constructor(pattern: string | string[], opts: Opts);
      -    /**
      -     * Returns a Promise that resolves to the results array.
      -     */
      -    walk(): Promise>;
      -    /**
      -     * synchronous {@link Glob.walk}
      -     */
      -    walkSync(): Results;
      -    /**
      -     * Stream results asynchronously.
      -     */
      -    stream(): Minipass, Result>;
      -    /**
      -     * Stream results synchronously.
      -     */
      -    streamSync(): Minipass, Result>;
      -    /**
      -     * Default sync iteration function. Returns a Generator that
      -     * iterates over the results.
      -     */
      -    iterateSync(): Generator, void, void>;
      -    [Symbol.iterator](): Generator, void, void>;
      -    /**
      -     * Default async iteration function. Returns an AsyncGenerator that
      -     * iterates over the results.
      -     */
      -    iterate(): AsyncGenerator, void, void>;
      -    [Symbol.asyncIterator](): AsyncGenerator, void, void>;
      -}
      -//# sourceMappingURL=glob.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.d.ts.map
      deleted file mode 100644
      index 6353d8b3c47126..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"glob.d.ts","sourceRoot":"","sources":["../../../src/glob.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAAoB,MAAM,WAAW,CAAA;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAA;AACnC,OAAO,EACL,QAAQ,EACR,IAAI,EACJ,UAAU,EAIX,MAAM,aAAa,CAAA;AAEpB,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAGtC,MAAM,MAAM,QAAQ,GAAG,SAAS,CAAC,KAAK,CAAC,CAAA;AACvC,MAAM,MAAM,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,SAAS,CAAC,CAAA;AAWlE;;;;;;;;;;;;GAYG;AACH,MAAM,WAAW,WAAW;IAC1B;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAE5B;;;;;OAKG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;IAElB;;;;OAIG;IACH,GAAG,CAAC,EAAE,OAAO,CAAA;IAEb;;;;;;;;OAQG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IAErB;;;;;;;;OAQG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;;;;;;;;;;;;;;OAgBG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,UAAU,CAAA;IAEvC;;;;;OAKG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;IAEvB;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;;;;;;OASG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;;;;OAKG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,QAAQ,CAAA;IAE1B;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;;OAKG;IACH,MAAM,CAAC,EAAE,UAAU,CAAA;IAEnB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;OAGG;IACH,MAAM,CAAC,EAAE,WAAW,CAAA;IAEpB;;;;;;;;;;;;;OAaG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAE9B;;;;;;;OAOG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;IAEvB;;;OAGG;IACH,EAAE,CAAC,EAAE,QAAQ,CAAA;IAEb;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED,MAAM,MAAM,4BAA4B,GAAG,WAAW,GAAG;IACvD,aAAa,EAAE,IAAI,CAAA;IAEnB,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,IAAI,CAAC,EAAE,SAAS,CAAA;IAChB,KAAK,CAAC,EAAE,SAAS,CAAA;CAClB,CAAA;AAED,MAAM,MAAM,6BAA6B,GAAG,WAAW,GAAG;IACxD,aAAa,CAAC,EAAE,KAAK,CAAA;CACtB,CAAA;AAED,MAAM,MAAM,6BAA6B,GAAG,WAAW,GAAG;IACxD,aAAa,CAAC,EAAE,SAAS,CAAA;CAC1B,CAAA;AAED,MAAM,MAAM,MAAM,CAAC,IAAI,IAAI,IAAI,SAAS,4BAA4B,GAChE,IAAI,GACJ,IAAI,SAAS,6BAA6B,GAC1C,MAAM,GACN,IAAI,SAAS,6BAA6B,GAC1C,MAAM,GACN,MAAM,GAAG,IAAI,CAAA;AACjB,MAAM,MAAM,OAAO,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,EAAE,CAAA;AAE1C,MAAM,MAAM,SAAS,CAAC,IAAI,IAAI,IAAI,SAAS,4BAA4B,GACnE,IAAI,GACJ,IAAI,SAAS,6BAA6B,GAC1C,KAAK,GACL,IAAI,SAAS,6BAA6B,GAC1C,KAAK,GACL,OAAO,CAAA;AAEX;;GAEG;AACH,qBAAa,IAAI,CAAC,IAAI,SAAS,WAAW,CAAE,YAAW,WAAW;IAChE,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,OAAO,CAAA;IACZ,WAAW,EAAE,OAAO,CAAA;IACpB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,UAAU,CAAA;IACvC,aAAa,EAAE,OAAO,CAAA;IACtB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,SAAS,EAAE,OAAO,CAAA;IAClB,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,OAAO,CAAA;IAChB,MAAM,EAAE,OAAO,CAAA;IACf,KAAK,EAAE,OAAO,CAAA;IACd,KAAK,EAAE,OAAO,CAAA;IACd,UAAU,EAAE,OAAO,CAAA;IACnB,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,QAAQ,EAAE,MAAM,CAAC,QAAQ,CAAA;IACzB,QAAQ,EAAE,OAAO,CAAA;IACjB,MAAM,EAAE,UAAU,CAAA;IAClB,IAAI,EAAE,OAAO,CAAA;IACb,MAAM,CAAC,EAAE,WAAW,CAAA;IACpB,oBAAoB,EAAE,OAAO,CAAA;IAC7B,aAAa,EAAE,SAAS,CAAC,IAAI,CAAC,CAAA;IAE9B;;OAEG;IACH,IAAI,EAAE,IAAI,CAAA;IAEV;;OAEG;IACH,QAAQ,EAAE,OAAO,EAAE,CAAA;IAEnB;;;;;;;;;;;OAWG;gBACS,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAAE,IAAI,EAAE,IAAI;IAwHlD;;OAEG;IACG,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAmBpC;;OAEG;IACH,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IAezB;;OAEG;IACH,MAAM,IAAI,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;IAa9C;;OAEG;IACH,UAAU,IAAI,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;IAalD;;;OAGG;IACH,WAAW,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC;IAGlD,CAAC,MAAM,CAAC,QAAQ,CAAC;IAIjB;;;OAGG;IACH,OAAO,IAAI,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC;IAGnD,CAAC,MAAM,CAAC,aAAa,CAAC;CAGvB"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.js
      deleted file mode 100644
      index eb37c6b9a6601e..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.js
      +++ /dev/null
      @@ -1,238 +0,0 @@
      -"use strict";
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.Glob = void 0;
      -const minimatch_1 = require("minimatch");
      -const path_scurry_1 = require("path-scurry");
      -const url_1 = require("url");
      -const pattern_js_1 = require("./pattern.js");
      -const walker_js_1 = require("./walker.js");
      -// if no process global, just call it linux.
      -// so we default to case-sensitive, / separators
      -const defaultPlatform = typeof process === 'object' &&
      -    process &&
      -    typeof process.platform === 'string'
      -    ? process.platform
      -    : 'linux';
      -/**
      - * An object that can perform glob pattern traversals.
      - */
      -class Glob {
      -    absolute;
      -    cwd;
      -    root;
      -    dot;
      -    dotRelative;
      -    follow;
      -    ignore;
      -    magicalBraces;
      -    mark;
      -    matchBase;
      -    maxDepth;
      -    nobrace;
      -    nocase;
      -    nodir;
      -    noext;
      -    noglobstar;
      -    pattern;
      -    platform;
      -    realpath;
      -    scurry;
      -    stat;
      -    signal;
      -    windowsPathsNoEscape;
      -    withFileTypes;
      -    /**
      -     * The options provided to the constructor.
      -     */
      -    opts;
      -    /**
      -     * An array of parsed immutable {@link Pattern} objects.
      -     */
      -    patterns;
      -    /**
      -     * All options are stored as properties on the `Glob` object.
      -     *
      -     * See {@link GlobOptions} for full options descriptions.
      -     *
      -     * Note that a previous `Glob` object can be passed as the
      -     * `GlobOptions` to another `Glob` instantiation to re-use settings
      -     * and caches with a new pattern.
      -     *
      -     * Traversal functions can be called multiple times to run the walk
      -     * again.
      -     */
      -    constructor(pattern, opts) {
      -        /* c8 ignore start */
      -        if (!opts)
      -            throw new TypeError('glob options required');
      -        /* c8 ignore stop */
      -        this.withFileTypes = !!opts.withFileTypes;
      -        this.signal = opts.signal;
      -        this.follow = !!opts.follow;
      -        this.dot = !!opts.dot;
      -        this.dotRelative = !!opts.dotRelative;
      -        this.nodir = !!opts.nodir;
      -        this.mark = !!opts.mark;
      -        if (!opts.cwd) {
      -            this.cwd = '';
      -        }
      -        else if (opts.cwd instanceof URL || opts.cwd.startsWith('file://')) {
      -            opts.cwd = (0, url_1.fileURLToPath)(opts.cwd);
      -        }
      -        this.cwd = opts.cwd || '';
      -        this.root = opts.root;
      -        this.magicalBraces = !!opts.magicalBraces;
      -        this.nobrace = !!opts.nobrace;
      -        this.noext = !!opts.noext;
      -        this.realpath = !!opts.realpath;
      -        this.absolute = opts.absolute;
      -        this.noglobstar = !!opts.noglobstar;
      -        this.matchBase = !!opts.matchBase;
      -        this.maxDepth =
      -            typeof opts.maxDepth === 'number' ? opts.maxDepth : Infinity;
      -        this.stat = !!opts.stat;
      -        this.ignore = opts.ignore;
      -        if (this.withFileTypes && this.absolute !== undefined) {
      -            throw new Error('cannot set absolute and withFileTypes:true');
      -        }
      -        if (typeof pattern === 'string') {
      -            pattern = [pattern];
      -        }
      -        this.windowsPathsNoEscape =
      -            !!opts.windowsPathsNoEscape ||
      -                opts.allowWindowsEscape === false;
      -        if (this.windowsPathsNoEscape) {
      -            pattern = pattern.map(p => p.replace(/\\/g, '/'));
      -        }
      -        if (this.matchBase) {
      -            if (opts.noglobstar) {
      -                throw new TypeError('base matching requires globstar');
      -            }
      -            pattern = pattern.map(p => (p.includes('/') ? p : `./**/${p}`));
      -        }
      -        this.pattern = pattern;
      -        this.platform = opts.platform || defaultPlatform;
      -        this.opts = { ...opts, platform: this.platform };
      -        if (opts.scurry) {
      -            this.scurry = opts.scurry;
      -            if (opts.nocase !== undefined &&
      -                opts.nocase !== opts.scurry.nocase) {
      -                throw new Error('nocase option contradicts provided scurry option');
      -            }
      -        }
      -        else {
      -            const Scurry = opts.platform === 'win32'
      -                ? path_scurry_1.PathScurryWin32
      -                : opts.platform === 'darwin'
      -                    ? path_scurry_1.PathScurryDarwin
      -                    : opts.platform
      -                        ? path_scurry_1.PathScurryPosix
      -                        : path_scurry_1.PathScurry;
      -            this.scurry = new Scurry(this.cwd, {
      -                nocase: opts.nocase,
      -                fs: opts.fs,
      -            });
      -        }
      -        this.nocase = this.scurry.nocase;
      -        // If you do nocase:true on a case-sensitive file system, then
      -        // we need to use regexps instead of strings for non-magic
      -        // path portions, because statting `aBc` won't return results
      -        // for the file `AbC` for example.
      -        const nocaseMagicOnly = this.platform === 'darwin' || this.platform === 'win32';
      -        const mmo = {
      -            // default nocase based on platform
      -            ...opts,
      -            dot: this.dot,
      -            matchBase: this.matchBase,
      -            nobrace: this.nobrace,
      -            nocase: this.nocase,
      -            nocaseMagicOnly,
      -            nocomment: true,
      -            noext: this.noext,
      -            nonegate: true,
      -            optimizationLevel: 2,
      -            platform: this.platform,
      -            windowsPathsNoEscape: this.windowsPathsNoEscape,
      -            debug: !!this.opts.debug,
      -        };
      -        const mms = this.pattern.map(p => new minimatch_1.Minimatch(p, mmo));
      -        const [matchSet, globParts] = mms.reduce((set, m) => {
      -            set[0].push(...m.set);
      -            set[1].push(...m.globParts);
      -            return set;
      -        }, [[], []]);
      -        this.patterns = matchSet.map((set, i) => {
      -            return new pattern_js_1.Pattern(set, globParts[i], 0, this.platform);
      -        });
      -    }
      -    async walk() {
      -        // Walkers always return array of Path objects, so we just have to
      -        // coerce them into the right shape.  It will have already called
      -        // realpath() if the option was set to do so, so we know that's cached.
      -        // start out knowing the cwd, at least
      -        return [
      -            ...(await new walker_js_1.GlobWalker(this.patterns, this.scurry.cwd, {
      -                ...this.opts,
      -                maxDepth: this.maxDepth !== Infinity
      -                    ? this.maxDepth + this.scurry.cwd.depth()
      -                    : Infinity,
      -                platform: this.platform,
      -                nocase: this.nocase,
      -            }).walk()),
      -        ];
      -    }
      -    walkSync() {
      -        return [
      -            ...new walker_js_1.GlobWalker(this.patterns, this.scurry.cwd, {
      -                ...this.opts,
      -                maxDepth: this.maxDepth !== Infinity
      -                    ? this.maxDepth + this.scurry.cwd.depth()
      -                    : Infinity,
      -                platform: this.platform,
      -                nocase: this.nocase,
      -            }).walkSync(),
      -        ];
      -    }
      -    stream() {
      -        return new walker_js_1.GlobStream(this.patterns, this.scurry.cwd, {
      -            ...this.opts,
      -            maxDepth: this.maxDepth !== Infinity
      -                ? this.maxDepth + this.scurry.cwd.depth()
      -                : Infinity,
      -            platform: this.platform,
      -            nocase: this.nocase,
      -        }).stream();
      -    }
      -    streamSync() {
      -        return new walker_js_1.GlobStream(this.patterns, this.scurry.cwd, {
      -            ...this.opts,
      -            maxDepth: this.maxDepth !== Infinity
      -                ? this.maxDepth + this.scurry.cwd.depth()
      -                : Infinity,
      -            platform: this.platform,
      -            nocase: this.nocase,
      -        }).streamSync();
      -    }
      -    /**
      -     * Default sync iteration function. Returns a Generator that
      -     * iterates over the results.
      -     */
      -    iterateSync() {
      -        return this.streamSync()[Symbol.iterator]();
      -    }
      -    [Symbol.iterator]() {
      -        return this.iterateSync();
      -    }
      -    /**
      -     * Default async iteration function. Returns an AsyncGenerator that
      -     * iterates over the results.
      -     */
      -    iterate() {
      -        return this.stream()[Symbol.asyncIterator]();
      -    }
      -    [Symbol.asyncIterator]() {
      -        return this.iterate();
      -    }
      -}
      -exports.Glob = Glob;
      -//# sourceMappingURL=glob.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.js.map
      deleted file mode 100644
      index 7a7a9b28627480..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/glob.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"glob.js","sourceRoot":"","sources":["../../../src/glob.ts"],"names":[],"mappings":";;;AAAA,yCAAuD;AAEvD,6CAOoB;AACpB,6BAAmC;AAEnC,6CAAsC;AACtC,2CAAoD;AAKpD,4CAA4C;AAC5C,gDAAgD;AAChD,MAAM,eAAe,GACnB,OAAO,OAAO,KAAK,QAAQ;IAC3B,OAAO;IACP,OAAO,OAAO,CAAC,QAAQ,KAAK,QAAQ;IAClC,CAAC,CAAC,OAAO,CAAC,QAAQ;IAClB,CAAC,CAAC,OAAO,CAAA;AAgTb;;GAEG;AACH,MAAa,IAAI;IACf,QAAQ,CAAU;IAClB,GAAG,CAAQ;IACX,IAAI,CAAS;IACb,GAAG,CAAS;IACZ,WAAW,CAAS;IACpB,MAAM,CAAS;IACf,MAAM,CAAiC;IACvC,aAAa,CAAS;IACtB,IAAI,CAAU;IACd,SAAS,CAAS;IAClB,QAAQ,CAAQ;IAChB,OAAO,CAAS;IAChB,MAAM,CAAS;IACf,KAAK,CAAS;IACd,KAAK,CAAS;IACd,UAAU,CAAS;IACnB,OAAO,CAAU;IACjB,QAAQ,CAAiB;IACzB,QAAQ,CAAS;IACjB,MAAM,CAAY;IAClB,IAAI,CAAS;IACb,MAAM,CAAc;IACpB,oBAAoB,CAAS;IAC7B,aAAa,CAAiB;IAE9B;;OAEG;IACH,IAAI,CAAM;IAEV;;OAEG;IACH,QAAQ,CAAW;IAEnB;;;;;;;;;;;OAWG;IACH,YAAY,OAA0B,EAAE,IAAU;QAChD,qBAAqB;QACrB,IAAI,CAAC,IAAI;YAAE,MAAM,IAAI,SAAS,CAAC,uBAAuB,CAAC,CAAA;QACvD,oBAAoB;QACpB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC,IAAI,CAAC,aAAgC,CAAA;QAC5D,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;QACzB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,CAAC,MAAM,CAAA;QAC3B,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAA;QACrB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,IAAI,CAAC,WAAW,CAAA;QACrC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,CAAA;QACzB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAA;QACvB,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;YACb,IAAI,CAAC,GAAG,GAAG,EAAE,CAAA;SACd;aAAM,IAAI,IAAI,CAAC,GAAG,YAAY,GAAG,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE;YACpE,IAAI,CAAC,GAAG,GAAG,IAAA,mBAAa,EAAC,IAAI,CAAC,GAAG,CAAC,CAAA;SACnC;QACD,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,IAAI,EAAE,CAAA;QACzB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAA;QACrB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC,IAAI,CAAC,aAAa,CAAA;QACzC,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC,IAAI,CAAC,OAAO,CAAA;QAC7B,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,CAAA;QACzB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAA;QAC/B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAA;QAE7B,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,IAAI,CAAC,UAAU,CAAA;QACnC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,CAAA;QACjC,IAAI,CAAC,QAAQ;YACX,OAAO,IAAI,CAAC,QAAQ,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAA;QAC9D,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAA;QACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;QAEzB,IAAI,IAAI,CAAC,aAAa,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,EAAE;YACrD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAA;SAC9D;QAED,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE;YAC/B,OAAO,GAAG,CAAC,OAAO,CAAC,CAAA;SACpB;QAED,IAAI,CAAC,oBAAoB;YACvB,CAAC,CAAC,IAAI,CAAC,oBAAoB;gBAC1B,IAAoB,CAAC,kBAAkB,KAAK,KAAK,CAAA;QAEpD,IAAI,IAAI,CAAC,oBAAoB,EAAE;YAC7B,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAA;SAClD;QAED,IAAI,IAAI,CAAC,SAAS,EAAE;YAClB,IAAI,IAAI,CAAC,UAAU,EAAE;gBACnB,MAAM,IAAI,SAAS,CAAC,iCAAiC,CAAC,CAAA;aACvD;YACD,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAA;SAChE;QAED,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QAEtB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,eAAe,CAAA;QAChD,IAAI,CAAC,IAAI,GAAG,EAAE,GAAG,IAAI,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE,CAAA;QAChD,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;YACzB,IACE,IAAI,CAAC,MAAM,KAAK,SAAS;gBACzB,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC,MAAM,CAAC,MAAM,EAClC;gBACA,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAA;aACpE;SACF;aAAM;YACL,MAAM,MAAM,GACV,IAAI,CAAC,QAAQ,KAAK,OAAO;gBACvB,CAAC,CAAC,6BAAe;gBACjB,CAAC,CAAC,IAAI,CAAC,QAAQ,KAAK,QAAQ;oBAC5B,CAAC,CAAC,8BAAgB;oBAClB,CAAC,CAAC,IAAI,CAAC,QAAQ;wBACf,CAAC,CAAC,6BAAe;wBACjB,CAAC,CAAC,wBAAU,CAAA;YAChB,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjC,MAAM,EAAE,IAAI,CAAC,MAAM;gBACnB,EAAE,EAAE,IAAI,CAAC,EAAE;aACZ,CAAC,CAAA;SACH;QACD,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAA;QAEhC,8DAA8D;QAC9D,0DAA0D;QAC1D,6DAA6D;QAC7D,kCAAkC;QAClC,MAAM,eAAe,GACnB,IAAI,CAAC,QAAQ,KAAK,QAAQ,IAAI,IAAI,CAAC,QAAQ,KAAK,OAAO,CAAA;QAEzD,MAAM,GAAG,GAAqB;YAC5B,mCAAmC;YACnC,GAAG,IAAI;YACP,GAAG,EAAE,IAAI,CAAC,GAAG;YACb,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,eAAe;YACf,SAAS,EAAE,IAAI;YACf,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,QAAQ,EAAE,IAAI;YACd,iBAAiB,EAAE,CAAC;YACpB,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,oBAAoB,EAAE,IAAI,CAAC,oBAAoB;YAC/C,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK;SACzB,CAAA;QAED,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,qBAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAA;QACxD,MAAM,CAAC,QAAQ,EAAE,SAAS,CAAC,GAAG,GAAG,CAAC,MAAM,CACtC,CAAC,GAA0B,EAAE,CAAC,EAAE,EAAE;YAChC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAA;YACrB,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,SAAS,CAAC,CAAA;YAC3B,OAAO,GAAG,CAAA;QACZ,CAAC,EACD,CAAC,EAAE,EAAE,EAAE,CAAC,CACT,CAAA;QACD,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE;YACtC,OAAO,IAAI,oBAAO,CAAC,GAAG,EAAE,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAA;QACzD,CAAC,CAAC,CAAA;IACJ,CAAC;IAMD,KAAK,CAAC,IAAI;QACR,kEAAkE;QAClE,iEAAiE;QACjE,uEAAuE;QACvE,sCAAsC;QACtC,OAAO;YACL,GAAG,CAAC,MAAM,IAAI,sBAAU,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE;gBACvD,GAAG,IAAI,CAAC,IAAI;gBACZ,QAAQ,EACN,IAAI,CAAC,QAAQ,KAAK,QAAQ;oBACxB,CAAC,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE;oBACzC,CAAC,CAAC,QAAQ;gBACd,QAAQ,EAAE,IAAI,CAAC,QAAQ;gBACvB,MAAM,EAAE,IAAI,CAAC,MAAM;aACpB,CAAC,CAAC,IAAI,EAAE,CAAC;SACX,CAAA;IACH,CAAC;IAMD,QAAQ;QACN,OAAO;YACL,GAAG,IAAI,sBAAU,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE;gBAChD,GAAG,IAAI,CAAC,IAAI;gBACZ,QAAQ,EACN,IAAI,CAAC,QAAQ,KAAK,QAAQ;oBACxB,CAAC,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE;oBACzC,CAAC,CAAC,QAAQ;gBACd,QAAQ,EAAE,IAAI,CAAC,QAAQ;gBACvB,MAAM,EAAE,IAAI,CAAC,MAAM;aACpB,CAAC,CAAC,QAAQ,EAAE;SACd,CAAA;IACH,CAAC;IAMD,MAAM;QACJ,OAAO,IAAI,sBAAU,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE;YACpD,GAAG,IAAI,CAAC,IAAI;YACZ,QAAQ,EACN,IAAI,CAAC,QAAQ,KAAK,QAAQ;gBACxB,CAAC,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE;gBACzC,CAAC,CAAC,QAAQ;YACd,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAC,CAAC,MAAM,EAAE,CAAA;IACb,CAAC;IAMD,UAAU;QACR,OAAO,IAAI,sBAAU,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE;YACpD,GAAG,IAAI,CAAC,IAAI;YACZ,QAAQ,EACN,IAAI,CAAC,QAAQ,KAAK,QAAQ;gBACxB,CAAC,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE;gBACzC,CAAC,CAAC,QAAQ;YACd,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAC,CAAC,UAAU,EAAE,CAAA;IACjB,CAAC;IAED;;;OAGG;IACH,WAAW;QACT,OAAO,IAAI,CAAC,UAAU,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAA;IAC7C,CAAC;IACD,CAAC,MAAM,CAAC,QAAQ,CAAC;QACf,OAAO,IAAI,CAAC,WAAW,EAAE,CAAA;IAC3B,CAAC;IAED;;;OAGG;IACH,OAAO;QACL,OAAO,IAAI,CAAC,MAAM,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE,CAAA;IAC9C,CAAC;IACD,CAAC,MAAM,CAAC,aAAa,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACvB,CAAC;CACF;AArQD,oBAqQC","sourcesContent":["import { Minimatch, MinimatchOptions } from 'minimatch'\nimport { Minipass } from 'minipass'\nimport {\n  FSOption,\n  Path,\n  PathScurry,\n  PathScurryDarwin,\n  PathScurryPosix,\n  PathScurryWin32,\n} from 'path-scurry'\nimport { fileURLToPath } from 'url'\nimport { IgnoreLike } from './ignore.js'\nimport { Pattern } from './pattern.js'\nimport { GlobStream, GlobWalker } from './walker.js'\n\nexport type MatchSet = Minimatch['set']\nexport type GlobParts = Exclude\n\n// if no process global, just call it linux.\n// so we default to case-sensitive, / separators\nconst defaultPlatform: NodeJS.Platform =\n  typeof process === 'object' &&\n  process &&\n  typeof process.platform === 'string'\n    ? process.platform\n    : 'linux'\n\n/**\n * A `GlobOptions` object may be provided to any of the exported methods, and\n * must be provided to the `Glob` constructor.\n *\n * All options are optional, boolean, and false by default, unless otherwise\n * noted.\n *\n * All resolved options are added to the Glob object as properties.\n *\n * If you are running many `glob` operations, you can pass a Glob object as the\n * `options` argument to a subsequent operation to share the previously loaded\n * cache.\n */\nexport interface GlobOptions {\n  /**\n   * Set to `true` to always receive absolute paths for\n   * matched files. Set to `false` to always return relative paths.\n   *\n   * When this option is not set, absolute paths are returned for patterns\n   * that are absolute, and otherwise paths are returned that are relative\n   * to the `cwd` setting.\n   *\n   * This does _not_ make an extra system call to get\n   * the realpath, it only does string path resolution.\n   *\n   * Conflicts with {@link withFileTypes}\n   */\n  absolute?: boolean\n\n  /**\n   * Set to false to enable {@link windowsPathsNoEscape}\n   *\n   * @deprecated\n   */\n  allowWindowsEscape?: boolean\n\n  /**\n   * The current working directory in which to search. Defaults to\n   * `process.cwd()`.\n   *\n   * May be eiher a string path or a `file://` URL object or string.\n   */\n  cwd?: string | URL\n\n  /**\n   * Include `.dot` files in normal matches and `globstar`\n   * matches. Note that an explicit dot in a portion of the pattern\n   * will always match dot files.\n   */\n  dot?: boolean\n\n  /**\n   * Prepend all relative path strings with `./` (or `.\\` on Windows).\n   *\n   * Without this option, returned relative paths are \"bare\", so instead of\n   * returning `'./foo/bar'`, they are returned as `'foo/bar'`.\n   *\n   * Relative patterns starting with `'../'` are not prepended with `./`, even\n   * if this option is set.\n   */\n  dotRelative?: boolean\n\n  /**\n   * Follow symlinked directories when expanding `**`\n   * patterns. This can result in a lot of duplicate references in\n   * the presence of cyclic links, and make performance quite bad.\n   *\n   * By default, a `**` in a pattern will follow 1 symbolic link if\n   * it is not the first item in the pattern, or none if it is the\n   * first item in the pattern, following the same behavior as Bash.\n   */\n  follow?: boolean\n\n  /**\n   * string or string[], or an object with `ignore` and `ignoreChildren`\n   * methods.\n   *\n   * If a string or string[] is provided, then this is treated as a glob\n   * pattern or array of glob patterns to exclude from matches. To ignore all\n   * children within a directory, as well as the entry itself, append `'/**'`\n   * to the ignore pattern.\n   *\n   * **Note** `ignore` patterns are _always_ in `dot:true` mode, regardless of\n   * any other settings.\n   *\n   * If an object is provided that has `ignored(path)` and/or\n   * `childrenIgnored(path)` methods, then these methods will be called to\n   * determine whether any Path is a match or if its children should be\n   * traversed, respectively.\n   */\n  ignore?: string | string[] | IgnoreLike\n\n  /**\n   * Treat brace expansion like `{a,b}` as a \"magic\" pattern. Has no\n   * effect if {@link nobrace} is set.\n   *\n   * Only has effect on the {@link hasMagic} function.\n   */\n  magicalBraces?: boolean\n\n  /**\n   * Add a `/` character to directory matches. Note that this requires\n   * additional stat calls in some cases.\n   */\n  mark?: boolean\n\n  /**\n   * Perform a basename-only match if the pattern does not contain any slash\n   * characters. That is, `*.js` would be treated as equivalent to\n   * `**\\/*.js`, matching all js files in all directories.\n   */\n  matchBase?: boolean\n\n  /**\n   * Limit the directory traversal to a given depth below the cwd.\n   * Note that this does NOT prevent traversal to sibling folders,\n   * root patterns, and so on. It only limits the maximum folder depth\n   * that the walk will descend, relative to the cwd.\n   */\n  maxDepth?: number\n\n  /**\n   * Do not expand `{a,b}` and `{1..3}` brace sets.\n   */\n  nobrace?: boolean\n\n  /**\n   * Perform a case-insensitive match. This defaults to `true` on macOS and\n   * Windows systems, and `false` on all others.\n   *\n   * **Note** `nocase` should only be explicitly set when it is\n   * known that the filesystem's case sensitivity differs from the\n   * platform default. If set `true` on case-sensitive file\n   * systems, or `false` on case-insensitive file systems, then the\n   * walk may return more or less results than expected.\n   */\n  nocase?: boolean\n\n  /**\n   * Do not match directories, only files. (Note: to match\n   * _only_ directories, put a `/` at the end of the pattern.)\n   */\n  nodir?: boolean\n\n  /**\n   * Do not match \"extglob\" patterns such as `+(a|b)`.\n   */\n  noext?: boolean\n\n  /**\n   * Do not match `**` against multiple filenames. (Ie, treat it as a normal\n   * `*` instead.)\n   *\n   * Conflicts with {@link matchBase}\n   */\n  noglobstar?: boolean\n\n  /**\n   * Defaults to value of `process.platform` if available, or `'linux'` if\n   * not. Setting `platform:'win32'` on non-Windows systems may cause strange\n   * behavior.\n   */\n  platform?: NodeJS.Platform\n\n  /**\n   * Set to true to call `fs.realpath` on all of the\n   * results. In the case of an entry that cannot be resolved, the\n   * entry is omitted. This incurs a slight performance penalty, of\n   * course, because of the added system calls.\n   */\n  realpath?: boolean\n\n  /**\n   *\n   * A string path resolved against the `cwd` option, which\n   * is used as the starting point for absolute patterns that start\n   * with `/`, (but not drive letters or UNC paths on Windows).\n   *\n   * Note that this _doesn't_ necessarily limit the walk to the\n   * `root` directory, and doesn't affect the cwd starting point for\n   * non-absolute patterns. A pattern containing `..` will still be\n   * able to traverse out of the root directory, if it is not an\n   * actual root directory on the filesystem, and any non-absolute\n   * patterns will be matched in the `cwd`. For example, the\n   * pattern `/../*` with `{root:'/some/path'}` will return all\n   * files in `/some`, not all files in `/some/path`. The pattern\n   * `*` with `{root:'/some/path'}` will return all the entries in\n   * the cwd, not the entries in `/some/path`.\n   *\n   * To start absolute and non-absolute patterns in the same\n   * path, you can use `{root:''}`. However, be aware that on\n   * Windows systems, a pattern like `x:/*` or `//host/share/*` will\n   * _always_ start in the `x:/` or `//host/share` directory,\n   * regardless of the `root` setting.\n   */\n  root?: string\n\n  /**\n   * A [PathScurry](http://npm.im/path-scurry) object used\n   * to traverse the file system. If the `nocase` option is set\n   * explicitly, then any provided `scurry` object must match this\n   * setting.\n   */\n  scurry?: PathScurry\n\n  /**\n   * Call `lstat()` on all entries, whether required or not to determine\n   * if it's a valid match. When used with {@link withFileTypes}, this means\n   * that matches will include data such as modified time, permissions, and\n   * so on.  Note that this will incur a performance cost due to the added\n   * system calls.\n   */\n  stat?: boolean\n\n  /**\n   * An AbortSignal which will cancel the Glob walk when\n   * triggered.\n   */\n  signal?: AbortSignal\n\n  /**\n   * Use `\\\\` as a path separator _only_, and\n   *  _never_ as an escape character. If set, all `\\\\` characters are\n   *  replaced with `/` in the pattern.\n   *\n   *  Note that this makes it **impossible** to match against paths\n   *  containing literal glob pattern characters, but allows matching\n   *  with patterns constructed using `path.join()` and\n   *  `path.resolve()` on Windows platforms, mimicking the (buggy!)\n   *  behavior of Glob v7 and before on Windows. Please use with\n   *  caution, and be mindful of [the caveat below about Windows\n   *  paths](#windows). (For legacy reasons, this is also set if\n   *  `allowWindowsEscape` is set to the exact value `false`.)\n   */\n  windowsPathsNoEscape?: boolean\n\n  /**\n   * Return [PathScurry](http://npm.im/path-scurry)\n   * `Path` objects instead of strings. These are similar to a\n   * NodeJS `Dirent` object, but with additional methods and\n   * properties.\n   *\n   * Conflicts with {@link absolute}\n   */\n  withFileTypes?: boolean\n\n  /**\n   * An fs implementation to override some or all of the defaults.  See\n   * http://npm.im/path-scurry for details about what can be overridden.\n   */\n  fs?: FSOption\n\n  /**\n   * Just passed along to Minimatch.  Note that this makes all pattern\n   * matching operations slower and *extremely* noisy.\n   */\n  debug?: boolean\n\n  /**\n   * Return `/` delimited paths, even on Windows.\n   *\n   * On posix systems, this has no effect.  But, on Windows, it means that\n   * paths will be `/` delimited, and absolute paths will be their full\n   * resolved UNC forms, eg instead of `'C:\\\\foo\\\\bar'`, it would return\n   * `'//?/C:/foo/bar'`\n   */\n  posix?: boolean\n}\n\nexport type GlobOptionsWithFileTypesTrue = GlobOptions & {\n  withFileTypes: true\n  // string options not relevant if returning Path objects.\n  absolute?: undefined\n  mark?: undefined\n  posix?: undefined\n}\n\nexport type GlobOptionsWithFileTypesFalse = GlobOptions & {\n  withFileTypes?: false\n}\n\nexport type GlobOptionsWithFileTypesUnset = GlobOptions & {\n  withFileTypes?: undefined\n}\n\nexport type Result = Opts extends GlobOptionsWithFileTypesTrue\n  ? Path\n  : Opts extends GlobOptionsWithFileTypesFalse\n  ? string\n  : Opts extends GlobOptionsWithFileTypesUnset\n  ? string\n  : string | Path\nexport type Results = Result[]\n\nexport type FileTypes = Opts extends GlobOptionsWithFileTypesTrue\n  ? true\n  : Opts extends GlobOptionsWithFileTypesFalse\n  ? false\n  : Opts extends GlobOptionsWithFileTypesUnset\n  ? false\n  : boolean\n\n/**\n * An object that can perform glob pattern traversals.\n */\nexport class Glob implements GlobOptions {\n  absolute?: boolean\n  cwd: string\n  root?: string\n  dot: boolean\n  dotRelative: boolean\n  follow: boolean\n  ignore?: string | string[] | IgnoreLike\n  magicalBraces: boolean\n  mark?: boolean\n  matchBase: boolean\n  maxDepth: number\n  nobrace: boolean\n  nocase: boolean\n  nodir: boolean\n  noext: boolean\n  noglobstar: boolean\n  pattern: string[]\n  platform: NodeJS.Platform\n  realpath: boolean\n  scurry: PathScurry\n  stat: boolean\n  signal?: AbortSignal\n  windowsPathsNoEscape: boolean\n  withFileTypes: FileTypes\n\n  /**\n   * The options provided to the constructor.\n   */\n  opts: Opts\n\n  /**\n   * An array of parsed immutable {@link Pattern} objects.\n   */\n  patterns: Pattern[]\n\n  /**\n   * All options are stored as properties on the `Glob` object.\n   *\n   * See {@link GlobOptions} for full options descriptions.\n   *\n   * Note that a previous `Glob` object can be passed as the\n   * `GlobOptions` to another `Glob` instantiation to re-use settings\n   * and caches with a new pattern.\n   *\n   * Traversal functions can be called multiple times to run the walk\n   * again.\n   */\n  constructor(pattern: string | string[], opts: Opts) {\n    /* c8 ignore start */\n    if (!opts) throw new TypeError('glob options required')\n    /* c8 ignore stop */\n    this.withFileTypes = !!opts.withFileTypes as FileTypes\n    this.signal = opts.signal\n    this.follow = !!opts.follow\n    this.dot = !!opts.dot\n    this.dotRelative = !!opts.dotRelative\n    this.nodir = !!opts.nodir\n    this.mark = !!opts.mark\n    if (!opts.cwd) {\n      this.cwd = ''\n    } else if (opts.cwd instanceof URL || opts.cwd.startsWith('file://')) {\n      opts.cwd = fileURLToPath(opts.cwd)\n    }\n    this.cwd = opts.cwd || ''\n    this.root = opts.root\n    this.magicalBraces = !!opts.magicalBraces\n    this.nobrace = !!opts.nobrace\n    this.noext = !!opts.noext\n    this.realpath = !!opts.realpath\n    this.absolute = opts.absolute\n\n    this.noglobstar = !!opts.noglobstar\n    this.matchBase = !!opts.matchBase\n    this.maxDepth =\n      typeof opts.maxDepth === 'number' ? opts.maxDepth : Infinity\n    this.stat = !!opts.stat\n    this.ignore = opts.ignore\n\n    if (this.withFileTypes && this.absolute !== undefined) {\n      throw new Error('cannot set absolute and withFileTypes:true')\n    }\n\n    if (typeof pattern === 'string') {\n      pattern = [pattern]\n    }\n\n    this.windowsPathsNoEscape =\n      !!opts.windowsPathsNoEscape ||\n      (opts as GlobOptions).allowWindowsEscape === false\n\n    if (this.windowsPathsNoEscape) {\n      pattern = pattern.map(p => p.replace(/\\\\/g, '/'))\n    }\n\n    if (this.matchBase) {\n      if (opts.noglobstar) {\n        throw new TypeError('base matching requires globstar')\n      }\n      pattern = pattern.map(p => (p.includes('/') ? p : `./**/${p}`))\n    }\n\n    this.pattern = pattern\n\n    this.platform = opts.platform || defaultPlatform\n    this.opts = { ...opts, platform: this.platform }\n    if (opts.scurry) {\n      this.scurry = opts.scurry\n      if (\n        opts.nocase !== undefined &&\n        opts.nocase !== opts.scurry.nocase\n      ) {\n        throw new Error('nocase option contradicts provided scurry option')\n      }\n    } else {\n      const Scurry =\n        opts.platform === 'win32'\n          ? PathScurryWin32\n          : opts.platform === 'darwin'\n          ? PathScurryDarwin\n          : opts.platform\n          ? PathScurryPosix\n          : PathScurry\n      this.scurry = new Scurry(this.cwd, {\n        nocase: opts.nocase,\n        fs: opts.fs,\n      })\n    }\n    this.nocase = this.scurry.nocase\n\n    // If you do nocase:true on a case-sensitive file system, then\n    // we need to use regexps instead of strings for non-magic\n    // path portions, because statting `aBc` won't return results\n    // for the file `AbC` for example.\n    const nocaseMagicOnly =\n      this.platform === 'darwin' || this.platform === 'win32'\n\n    const mmo: MinimatchOptions = {\n      // default nocase based on platform\n      ...opts,\n      dot: this.dot,\n      matchBase: this.matchBase,\n      nobrace: this.nobrace,\n      nocase: this.nocase,\n      nocaseMagicOnly,\n      nocomment: true,\n      noext: this.noext,\n      nonegate: true,\n      optimizationLevel: 2,\n      platform: this.platform,\n      windowsPathsNoEscape: this.windowsPathsNoEscape,\n      debug: !!this.opts.debug,\n    }\n\n    const mms = this.pattern.map(p => new Minimatch(p, mmo))\n    const [matchSet, globParts] = mms.reduce(\n      (set: [MatchSet, GlobParts], m) => {\n        set[0].push(...m.set)\n        set[1].push(...m.globParts)\n        return set\n      },\n      [[], []]\n    )\n    this.patterns = matchSet.map((set, i) => {\n      return new Pattern(set, globParts[i], 0, this.platform)\n    })\n  }\n\n  /**\n   * Returns a Promise that resolves to the results array.\n   */\n  async walk(): Promise>\n  async walk(): Promise<(string | Path)[]> {\n    // Walkers always return array of Path objects, so we just have to\n    // coerce them into the right shape.  It will have already called\n    // realpath() if the option was set to do so, so we know that's cached.\n    // start out knowing the cwd, at least\n    return [\n      ...(await new GlobWalker(this.patterns, this.scurry.cwd, {\n        ...this.opts,\n        maxDepth:\n          this.maxDepth !== Infinity\n            ? this.maxDepth + this.scurry.cwd.depth()\n            : Infinity,\n        platform: this.platform,\n        nocase: this.nocase,\n      }).walk()),\n    ]\n  }\n\n  /**\n   * synchronous {@link Glob.walk}\n   */\n  walkSync(): Results\n  walkSync(): (string | Path)[] {\n    return [\n      ...new GlobWalker(this.patterns, this.scurry.cwd, {\n        ...this.opts,\n        maxDepth:\n          this.maxDepth !== Infinity\n            ? this.maxDepth + this.scurry.cwd.depth()\n            : Infinity,\n        platform: this.platform,\n        nocase: this.nocase,\n      }).walkSync(),\n    ]\n  }\n\n  /**\n   * Stream results asynchronously.\n   */\n  stream(): Minipass, Result>\n  stream(): Minipass {\n    return new GlobStream(this.patterns, this.scurry.cwd, {\n      ...this.opts,\n      maxDepth:\n        this.maxDepth !== Infinity\n          ? this.maxDepth + this.scurry.cwd.depth()\n          : Infinity,\n      platform: this.platform,\n      nocase: this.nocase,\n    }).stream()\n  }\n\n  /**\n   * Stream results synchronously.\n   */\n  streamSync(): Minipass, Result>\n  streamSync(): Minipass {\n    return new GlobStream(this.patterns, this.scurry.cwd, {\n      ...this.opts,\n      maxDepth:\n        this.maxDepth !== Infinity\n          ? this.maxDepth + this.scurry.cwd.depth()\n          : Infinity,\n      platform: this.platform,\n      nocase: this.nocase,\n    }).streamSync()\n  }\n\n  /**\n   * Default sync iteration function. Returns a Generator that\n   * iterates over the results.\n   */\n  iterateSync(): Generator, void, void> {\n    return this.streamSync()[Symbol.iterator]()\n  }\n  [Symbol.iterator]() {\n    return this.iterateSync()\n  }\n\n  /**\n   * Default async iteration function. Returns an AsyncGenerator that\n   * iterates over the results.\n   */\n  iterate(): AsyncGenerator, void, void> {\n    return this.stream()[Symbol.asyncIterator]()\n  }\n  [Symbol.asyncIterator]() {\n    return this.iterate()\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.d.ts
      deleted file mode 100644
      index 8aec3bd9725175..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.d.ts
      +++ /dev/null
      @@ -1,14 +0,0 @@
      -import { GlobOptions } from './glob.js';
      -/**
      - * Return true if the patterns provided contain any magic glob characters,
      - * given the options provided.
      - *
      - * Brace expansion is not considered "magic" unless the `magicalBraces` option
      - * is set, as brace expansion just turns one string into an array of strings.
      - * So a pattern like `'x{a,b}y'` would return `false`, because `'xay'` and
      - * `'xby'` both do not contain any magic glob characters, and it's treated the
      - * same as if you had called it on `['xay', 'xby']`. When `magicalBraces:true`
      - * is in the options, brace expansion _is_ treated as a pattern having magic.
      - */
      -export declare const hasMagic: (pattern: string | string[], options?: GlobOptions) => boolean;
      -//# sourceMappingURL=has-magic.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.d.ts.map
      deleted file mode 100644
      index dd5053f80b44c3..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"has-magic.d.ts","sourceRoot":"","sources":["../../../src/has-magic.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAEvC;;;;;;;;;;GAUG;AACH,eAAO,MAAM,QAAQ,YACV,MAAM,GAAG,MAAM,EAAE,YACjB,WAAW,KACnB,OAQF,CAAA"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.js
      deleted file mode 100644
      index 0918bd57e0f1c2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.js
      +++ /dev/null
      @@ -1,27 +0,0 @@
      -"use strict";
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.hasMagic = void 0;
      -const minimatch_1 = require("minimatch");
      -/**
      - * Return true if the patterns provided contain any magic glob characters,
      - * given the options provided.
      - *
      - * Brace expansion is not considered "magic" unless the `magicalBraces` option
      - * is set, as brace expansion just turns one string into an array of strings.
      - * So a pattern like `'x{a,b}y'` would return `false`, because `'xay'` and
      - * `'xby'` both do not contain any magic glob characters, and it's treated the
      - * same as if you had called it on `['xay', 'xby']`. When `magicalBraces:true`
      - * is in the options, brace expansion _is_ treated as a pattern having magic.
      - */
      -const hasMagic = (pattern, options = {}) => {
      -    if (!Array.isArray(pattern)) {
      -        pattern = [pattern];
      -    }
      -    for (const p of pattern) {
      -        if (new minimatch_1.Minimatch(p, options).hasMagic())
      -            return true;
      -    }
      -    return false;
      -};
      -exports.hasMagic = hasMagic;
      -//# sourceMappingURL=has-magic.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.js.map
      deleted file mode 100644
      index 9b73cfad7d05e4..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/has-magic.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"has-magic.js","sourceRoot":"","sources":["../../../src/has-magic.ts"],"names":[],"mappings":";;;AAAA,yCAAqC;AAGrC;;;;;;;;;;GAUG;AACI,MAAM,QAAQ,GAAG,CACtB,OAA0B,EAC1B,UAAuB,EAAE,EAChB,EAAE;IACX,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;QAC3B,OAAO,GAAG,CAAC,OAAO,CAAC,CAAA;KACpB;IACD,KAAK,MAAM,CAAC,IAAI,OAAO,EAAE;QACvB,IAAI,IAAI,qBAAS,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAA;KACtD;IACD,OAAO,KAAK,CAAA;AACd,CAAC,CAAA;AAXY,QAAA,QAAQ,YAWpB","sourcesContent":["import { Minimatch } from 'minimatch'\nimport { GlobOptions } from './glob.js'\n\n/**\n * Return true if the patterns provided contain any magic glob characters,\n * given the options provided.\n *\n * Brace expansion is not considered \"magic\" unless the `magicalBraces` option\n * is set, as brace expansion just turns one string into an array of strings.\n * So a pattern like `'x{a,b}y'` would return `false`, because `'xay'` and\n * `'xby'` both do not contain any magic glob characters, and it's treated the\n * same as if you had called it on `['xay', 'xby']`. When `magicalBraces:true`\n * is in the options, brace expansion _is_ treated as a pattern having magic.\n */\nexport const hasMagic = (\n  pattern: string | string[],\n  options: GlobOptions = {}\n): boolean => {\n  if (!Array.isArray(pattern)) {\n    pattern = [pattern]\n  }\n  for (const p of pattern) {\n    if (new Minimatch(p, options).hasMagic()) return true\n  }\n  return false\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.d.ts
      deleted file mode 100644
      index e9d74f3b5e1291..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.d.ts
      +++ /dev/null
      @@ -1,20 +0,0 @@
      -import { Minimatch } from 'minimatch';
      -import { Path } from 'path-scurry';
      -import { GlobWalkerOpts } from './walker.js';
      -export interface IgnoreLike {
      -    ignored?: (p: Path) => boolean;
      -    childrenIgnored?: (p: Path) => boolean;
      -}
      -/**
      - * Class used to process ignored patterns
      - */
      -export declare class Ignore implements IgnoreLike {
      -    relative: Minimatch[];
      -    relativeChildren: Minimatch[];
      -    absolute: Minimatch[];
      -    absoluteChildren: Minimatch[];
      -    constructor(ignored: string[], { nobrace, nocase, noext, noglobstar, platform, }: GlobWalkerOpts);
      -    ignored(p: Path): boolean;
      -    childrenIgnored(p: Path): boolean;
      -}
      -//# sourceMappingURL=ignore.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.d.ts.map
      deleted file mode 100644
      index 3d604838d1eed2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"ignore.d.ts","sourceRoot":"","sources":["../../../src/ignore.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AACrC,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAElC,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAE5C,MAAM,WAAW,UAAU;IACzB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,KAAK,OAAO,CAAA;IAC9B,eAAe,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,KAAK,OAAO,CAAA;CACvC;AASD;;GAEG;AACH,qBAAa,MAAO,YAAW,UAAU;IACvC,QAAQ,EAAE,SAAS,EAAE,CAAA;IACrB,gBAAgB,EAAE,SAAS,EAAE,CAAA;IAC7B,QAAQ,EAAE,SAAS,EAAE,CAAA;IACrB,gBAAgB,EAAE,SAAS,EAAE,CAAA;gBAG3B,OAAO,EAAE,MAAM,EAAE,EACjB,EACE,OAAO,EACP,MAAM,EACN,KAAK,EACL,UAAU,EACV,QAA0B,GAC3B,EAAE,cAAc;IAiDnB,OAAO,CAAC,CAAC,EAAE,IAAI,GAAG,OAAO;IAczB,eAAe,CAAC,CAAC,EAAE,IAAI,GAAG,OAAO;CAWlC"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.js
      deleted file mode 100644
      index 0cbcca335e1cca..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.js
      +++ /dev/null
      @@ -1,103 +0,0 @@
      -"use strict";
      -// give it a pattern, and it'll be able to tell you if
      -// a given path should be ignored.
      -// Ignoring a path ignores its children if the pattern ends in /**
      -// Ignores are always parsed in dot:true mode
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.Ignore = void 0;
      -const minimatch_1 = require("minimatch");
      -const pattern_js_1 = require("./pattern.js");
      -const defaultPlatform = typeof process === 'object' &&
      -    process &&
      -    typeof process.platform === 'string'
      -    ? process.platform
      -    : 'linux';
      -/**
      - * Class used to process ignored patterns
      - */
      -class Ignore {
      -    relative;
      -    relativeChildren;
      -    absolute;
      -    absoluteChildren;
      -    constructor(ignored, { nobrace, nocase, noext, noglobstar, platform = defaultPlatform, }) {
      -        this.relative = [];
      -        this.absolute = [];
      -        this.relativeChildren = [];
      -        this.absoluteChildren = [];
      -        const mmopts = {
      -            dot: true,
      -            nobrace,
      -            nocase,
      -            noext,
      -            noglobstar,
      -            optimizationLevel: 2,
      -            platform,
      -            nocomment: true,
      -            nonegate: true,
      -        };
      -        // this is a little weird, but it gives us a clean set of optimized
      -        // minimatch matchers, without getting tripped up if one of them
      -        // ends in /** inside a brace section, and it's only inefficient at
      -        // the start of the walk, not along it.
      -        // It'd be nice if the Pattern class just had a .test() method, but
      -        // handling globstars is a bit of a pita, and that code already lives
      -        // in minimatch anyway.
      -        // Another way would be if maybe Minimatch could take its set/globParts
      -        // as an option, and then we could at least just use Pattern to test
      -        // for absolute-ness.
      -        // Yet another way, Minimatch could take an array of glob strings, and
      -        // a cwd option, and do the right thing.
      -        for (const ign of ignored) {
      -            const mm = new minimatch_1.Minimatch(ign, mmopts);
      -            for (let i = 0; i < mm.set.length; i++) {
      -                const parsed = mm.set[i];
      -                const globParts = mm.globParts[i];
      -                const p = new pattern_js_1.Pattern(parsed, globParts, 0, platform);
      -                const m = new minimatch_1.Minimatch(p.globString(), mmopts);
      -                const children = globParts[globParts.length - 1] === '**';
      -                const absolute = p.isAbsolute();
      -                if (absolute)
      -                    this.absolute.push(m);
      -                else
      -                    this.relative.push(m);
      -                if (children) {
      -                    if (absolute)
      -                        this.absoluteChildren.push(m);
      -                    else
      -                        this.relativeChildren.push(m);
      -                }
      -            }
      -        }
      -    }
      -    ignored(p) {
      -        const fullpath = p.fullpath();
      -        const fullpaths = `${fullpath}/`;
      -        const relative = p.relative() || '.';
      -        const relatives = `${relative}/`;
      -        for (const m of this.relative) {
      -            if (m.match(relative) || m.match(relatives))
      -                return true;
      -        }
      -        for (const m of this.absolute) {
      -            if (m.match(fullpath) || m.match(fullpaths))
      -                return true;
      -        }
      -        return false;
      -    }
      -    childrenIgnored(p) {
      -        const fullpath = p.fullpath() + '/';
      -        const relative = (p.relative() || '.') + '/';
      -        for (const m of this.relativeChildren) {
      -            if (m.match(relative))
      -                return true;
      -        }
      -        for (const m of this.absoluteChildren) {
      -            if (m.match(fullpath))
      -                true;
      -        }
      -        return false;
      -    }
      -}
      -exports.Ignore = Ignore;
      -//# sourceMappingURL=ignore.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.js.map
      deleted file mode 100644
      index 7595b4c68f79ed..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/ignore.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"ignore.js","sourceRoot":"","sources":["../../../src/ignore.ts"],"names":[],"mappings":";AAAA,sDAAsD;AACtD,kCAAkC;AAClC,kEAAkE;AAClE,6CAA6C;;;AAE7C,yCAAqC;AAErC,6CAAsC;AAQtC,MAAM,eAAe,GACnB,OAAO,OAAO,KAAK,QAAQ;IAC3B,OAAO;IACP,OAAO,OAAO,CAAC,QAAQ,KAAK,QAAQ;IAClC,CAAC,CAAC,OAAO,CAAC,QAAQ;IAClB,CAAC,CAAC,OAAO,CAAA;AAEb;;GAEG;AACH,MAAa,MAAM;IACjB,QAAQ,CAAa;IACrB,gBAAgB,CAAa;IAC7B,QAAQ,CAAa;IACrB,gBAAgB,CAAa;IAE7B,YACE,OAAiB,EACjB,EACE,OAAO,EACP,MAAM,EACN,KAAK,EACL,UAAU,EACV,QAAQ,GAAG,eAAe,GACX;QAEjB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAA;QAClB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAA;QAClB,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAA;QAC1B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAA;QAC1B,MAAM,MAAM,GAAG;YACb,GAAG,EAAE,IAAI;YACT,OAAO;YACP,MAAM;YACN,KAAK;YACL,UAAU;YACV,iBAAiB,EAAE,CAAC;YACpB,QAAQ;YACR,SAAS,EAAE,IAAI;YACf,QAAQ,EAAE,IAAI;SACf,CAAA;QAED,mEAAmE;QACnE,gEAAgE;QAChE,mEAAmE;QACnE,uCAAuC;QACvC,mEAAmE;QACnE,qEAAqE;QACrE,uBAAuB;QACvB,uEAAuE;QACvE,oEAAoE;QACpE,qBAAqB;QACrB,sEAAsE;QACtE,wCAAwC;QACxC,KAAK,MAAM,GAAG,IAAI,OAAO,EAAE;YACzB,MAAM,EAAE,GAAG,IAAI,qBAAS,CAAC,GAAG,EAAE,MAAM,CAAC,CAAA;YACrC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;gBACtC,MAAM,MAAM,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;gBACxB,MAAM,SAAS,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,CAAA;gBACjC,MAAM,CAAC,GAAG,IAAI,oBAAO,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,EAAE,QAAQ,CAAC,CAAA;gBACrD,MAAM,CAAC,GAAG,IAAI,qBAAS,CAAC,CAAC,CAAC,UAAU,EAAE,EAAE,MAAM,CAAC,CAAA;gBAC/C,MAAM,QAAQ,GAAG,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,IAAI,CAAA;gBACzD,MAAM,QAAQ,GAAG,CAAC,CAAC,UAAU,EAAE,CAAA;gBAC/B,IAAI,QAAQ;oBAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;;oBAC9B,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;gBAC1B,IAAI,QAAQ,EAAE;oBACZ,IAAI,QAAQ;wBAAE,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;;wBACtC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;iBACnC;aACF;SACF;IACH,CAAC;IAED,OAAO,CAAC,CAAO;QACb,MAAM,QAAQ,GAAG,CAAC,CAAC,QAAQ,EAAE,CAAA;QAC7B,MAAM,SAAS,GAAG,GAAG,QAAQ,GAAG,CAAA;QAChC,MAAM,QAAQ,GAAG,CAAC,CAAC,QAAQ,EAAE,IAAI,GAAG,CAAA;QACpC,MAAM,SAAS,GAAG,GAAG,QAAQ,GAAG,CAAA;QAChC,KAAK,MAAM,CAAC,IAAI,IAAI,CAAC,QAAQ,EAAE;YAC7B,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC;gBAAE,OAAO,IAAI,CAAA;SACzD;QACD,KAAK,MAAM,CAAC,IAAI,IAAI,CAAC,QAAQ,EAAE;YAC7B,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC;gBAAE,OAAO,IAAI,CAAA;SACzD;QACD,OAAO,KAAK,CAAA;IACd,CAAC;IAED,eAAe,CAAC,CAAO;QACrB,MAAM,QAAQ,GAAG,CAAC,CAAC,QAAQ,EAAE,GAAG,GAAG,CAAA;QACnC,MAAM,QAAQ,GAAG,CAAC,CAAC,CAAC,QAAQ,EAAE,IAAI,GAAG,CAAC,GAAG,GAAG,CAAA;QAC5C,KAAK,MAAM,CAAC,IAAI,IAAI,CAAC,gBAAgB,EAAE;YACrC,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC;gBAAE,OAAO,IAAI,CAAA;SACnC;QACD,KAAK,MAAM,CAAC,IAAI,IAAI,CAAC,gBAAgB,EAAE;YACrC,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC;gBAAE,IAAI,CAAA;SAC5B;QACD,OAAO,KAAK,CAAA;IACd,CAAC;CACF;AAxFD,wBAwFC","sourcesContent":["// give it a pattern, and it'll be able to tell you if\n// a given path should be ignored.\n// Ignoring a path ignores its children if the pattern ends in /**\n// Ignores are always parsed in dot:true mode\n\nimport { Minimatch } from 'minimatch'\nimport { Path } from 'path-scurry'\nimport { Pattern } from './pattern.js'\nimport { GlobWalkerOpts } from './walker.js'\n\nexport interface IgnoreLike {\n  ignored?: (p: Path) => boolean\n  childrenIgnored?: (p: Path) => boolean\n}\n\nconst defaultPlatform: NodeJS.Platform =\n  typeof process === 'object' &&\n  process &&\n  typeof process.platform === 'string'\n    ? process.platform\n    : 'linux'\n\n/**\n * Class used to process ignored patterns\n */\nexport class Ignore implements IgnoreLike {\n  relative: Minimatch[]\n  relativeChildren: Minimatch[]\n  absolute: Minimatch[]\n  absoluteChildren: Minimatch[]\n\n  constructor(\n    ignored: string[],\n    {\n      nobrace,\n      nocase,\n      noext,\n      noglobstar,\n      platform = defaultPlatform,\n    }: GlobWalkerOpts\n  ) {\n    this.relative = []\n    this.absolute = []\n    this.relativeChildren = []\n    this.absoluteChildren = []\n    const mmopts = {\n      dot: true,\n      nobrace,\n      nocase,\n      noext,\n      noglobstar,\n      optimizationLevel: 2,\n      platform,\n      nocomment: true,\n      nonegate: true,\n    }\n\n    // this is a little weird, but it gives us a clean set of optimized\n    // minimatch matchers, without getting tripped up if one of them\n    // ends in /** inside a brace section, and it's only inefficient at\n    // the start of the walk, not along it.\n    // It'd be nice if the Pattern class just had a .test() method, but\n    // handling globstars is a bit of a pita, and that code already lives\n    // in minimatch anyway.\n    // Another way would be if maybe Minimatch could take its set/globParts\n    // as an option, and then we could at least just use Pattern to test\n    // for absolute-ness.\n    // Yet another way, Minimatch could take an array of glob strings, and\n    // a cwd option, and do the right thing.\n    for (const ign of ignored) {\n      const mm = new Minimatch(ign, mmopts)\n      for (let i = 0; i < mm.set.length; i++) {\n        const parsed = mm.set[i]\n        const globParts = mm.globParts[i]\n        const p = new Pattern(parsed, globParts, 0, platform)\n        const m = new Minimatch(p.globString(), mmopts)\n        const children = globParts[globParts.length - 1] === '**'\n        const absolute = p.isAbsolute()\n        if (absolute) this.absolute.push(m)\n        else this.relative.push(m)\n        if (children) {\n          if (absolute) this.absoluteChildren.push(m)\n          else this.relativeChildren.push(m)\n        }\n      }\n    }\n  }\n\n  ignored(p: Path): boolean {\n    const fullpath = p.fullpath()\n    const fullpaths = `${fullpath}/`\n    const relative = p.relative() || '.'\n    const relatives = `${relative}/`\n    for (const m of this.relative) {\n      if (m.match(relative) || m.match(relatives)) return true\n    }\n    for (const m of this.absolute) {\n      if (m.match(fullpath) || m.match(fullpaths)) return true\n    }\n    return false\n  }\n\n  childrenIgnored(p: Path): boolean {\n    const fullpath = p.fullpath() + '/'\n    const relative = (p.relative() || '.') + '/'\n    for (const m of this.relativeChildren) {\n      if (m.match(relative)) return true\n    }\n    for (const m of this.absoluteChildren) {\n      if (m.match(fullpath)) true\n    }\n    return false\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.d.ts
      deleted file mode 100644
      index 669bf12e6d5916..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.d.ts
      +++ /dev/null
      @@ -1,95 +0,0 @@
      -import { Minipass } from 'minipass';
      -import { Path } from 'path-scurry';
      -import type { GlobOptions, GlobOptionsWithFileTypesFalse, GlobOptionsWithFileTypesTrue, GlobOptionsWithFileTypesUnset } from './glob.js';
      -import { Glob } from './glob.js';
      -/**
      - * Syncronous form of {@link globStream}. Will read all the matches as fast as
      - * you consume them, even all in a single tick if you consume them immediately,
      - * but will still respond to backpressure if they're not consumed immediately.
      - */
      -export declare function globStreamSync(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Minipass;
      -export declare function globStreamSync(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): Minipass;
      -export declare function globStreamSync(pattern: string | string[], options: GlobOptionsWithFileTypesUnset): Minipass;
      -export declare function globStreamSync(pattern: string | string[], options: GlobOptions): Minipass | Minipass;
      -/**
      - * Return a stream that emits all the strings or `Path` objects and
      - * then emits `end` when completed.
      - */
      -export declare function globStream(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): Minipass;
      -export declare function globStream(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Minipass;
      -export declare function globStream(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): Minipass;
      -export declare function globStream(pattern: string | string[], options: GlobOptions): Minipass | Minipass;
      -/**
      - * Synchronous form of {@link glob}
      - */
      -export declare function globSync(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): string[];
      -export declare function globSync(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Path[];
      -export declare function globSync(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): string[];
      -export declare function globSync(pattern: string | string[], options: GlobOptions): Path[] | string[];
      -/**
      - * Perform an asynchronous glob search for the pattern(s) specified. Returns
      - * [Path](https://isaacs.github.io/path-scurry/classes/PathBase) objects if the
      - * {@link withFileTypes} option is set to `true`. See {@link GlobOptions} for
      - * full option descriptions.
      - */
      -declare function glob_(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): Promise;
      -declare function glob_(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Promise;
      -declare function glob_(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): Promise;
      -declare function glob_(pattern: string | string[], options: GlobOptions): Promise;
      -/**
      - * Return a sync iterator for walking glob pattern matches.
      - */
      -export declare function globIterateSync(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): Generator;
      -export declare function globIterateSync(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Generator;
      -export declare function globIterateSync(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): Generator;
      -export declare function globIterateSync(pattern: string | string[], options: GlobOptions): Generator | Generator;
      -/**
      - * Return an async iterator for walking glob pattern matches.
      - */
      -export declare function globIterate(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): AsyncGenerator;
      -export declare function globIterate(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): AsyncGenerator;
      -export declare function globIterate(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): AsyncGenerator;
      -export declare function globIterate(pattern: string | string[], options: GlobOptions): AsyncGenerator | AsyncGenerator;
      -export declare const streamSync: typeof globStreamSync;
      -export declare const stream: typeof globStream & {
      -    sync: typeof globStreamSync;
      -};
      -export declare const iterateSync: typeof globIterateSync;
      -export declare const iterate: typeof globIterate & {
      -    sync: typeof globIterateSync;
      -};
      -export declare const sync: typeof globSync & {
      -    stream: typeof globStreamSync;
      -    iterate: typeof globIterateSync;
      -};
      -export { escape, unescape } from 'minimatch';
      -export { Glob } from './glob.js';
      -export type { GlobOptions, GlobOptionsWithFileTypesFalse, GlobOptionsWithFileTypesTrue, GlobOptionsWithFileTypesUnset, } from './glob.js';
      -export { hasMagic } from './has-magic.js';
      -export type { IgnoreLike } from './ignore.js';
      -export type { MatchStream } from './walker.js';
      -export declare const glob: typeof glob_ & {
      -    glob: typeof glob_;
      -    globSync: typeof globSync;
      -    sync: typeof globSync & {
      -        stream: typeof globStreamSync;
      -        iterate: typeof globIterateSync;
      -    };
      -    globStream: typeof globStream;
      -    stream: typeof globStream & {
      -        sync: typeof globStreamSync;
      -    };
      -    globStreamSync: typeof globStreamSync;
      -    streamSync: typeof globStreamSync;
      -    globIterate: typeof globIterate;
      -    iterate: typeof globIterate & {
      -        sync: typeof globIterateSync;
      -    };
      -    globIterateSync: typeof globIterateSync;
      -    iterateSync: typeof globIterateSync;
      -    Glob: typeof Glob;
      -    hasMagic: (pattern: string | string[], options?: GlobOptions) => boolean;
      -    escape: (s: string, { windowsPathsNoEscape, }?: Pick | undefined) => string;
      -    unescape: (s: string, { windowsPathsNoEscape, }?: Pick | undefined) => string;
      -};
      -//# sourceMappingURL=index.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.d.ts.map
      deleted file mode 100644
      index 4e9ba085ce45b2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAA;AACnC,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,OAAO,KAAK,EACV,WAAW,EACX,6BAA6B,EAC7B,4BAA4B,EAC5B,6BAA6B,EAC9B,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAGhC;;;;GAIG;AACH,wBAAgB,cAAc,CAC5B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;AACvB,wBAAgB,cAAc,CAC5B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAC3B,wBAAgB,cAAc,CAC5B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAC3B,wBAAgB,cAAc,CAC5B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAQlD;;;GAGG;AACH,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAC3B,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;AACvB,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAC3B,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAQlD;;GAEG;AACH,wBAAgB,QAAQ,CACtB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,MAAM,EAAE,CAAA;AACX,wBAAgB,QAAQ,CACtB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,IAAI,EAAE,CAAA;AACT,wBAAgB,QAAQ,CACtB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,MAAM,EAAE,CAAA;AACX,wBAAgB,QAAQ,CACtB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,IAAI,EAAE,GAAG,MAAM,EAAE,CAAA;AAQpB;;;;;GAKG;AACH,iBAAe,KAAK,CAClB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,OAAO,CAAC,MAAM,EAAE,CAAC,CAAA;AACpB,iBAAe,KAAK,CAClB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAA;AAClB,iBAAe,KAAK,CAClB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAA;AACpB,iBAAe,KAAK,CAClB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC,IAAI,EAAE,GAAG,MAAM,EAAE,CAAC,CAAA;AAQ7B;;GAEG;AACH,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AAChC,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AAC9B,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AAChC,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AAQ9D;;GAEG;AACH,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,cAAc,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AACrC,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AACnC,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,cAAc,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AACrC,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,GAAG,cAAc,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AASxE,eAAO,MAAM,UAAU,uBAAiB,CAAA;AACxC,eAAO,MAAM,MAAM;;CAAsD,CAAA;AACzE,eAAO,MAAM,WAAW,wBAAkB,CAAA;AAC1C,eAAO,MAAM,OAAO;;CAElB,CAAA;AACF,eAAO,MAAM,IAAI;;;CAGf,CAAA;AAGF,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAChC,YAAY,EACV,WAAW,EACX,6BAA6B,EAC7B,4BAA4B,EAC5B,6BAA6B,GAC9B,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACzC,YAAY,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAC7C,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAA;AAG9C,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;CAgBf,CAAA"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.js
      deleted file mode 100644
      index 71c31c03dd339b..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.js
      +++ /dev/null
      @@ -1,68 +0,0 @@
      -"use strict";
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.glob = exports.hasMagic = exports.Glob = exports.unescape = exports.escape = exports.sync = exports.iterate = exports.iterateSync = exports.stream = exports.streamSync = exports.globIterate = exports.globIterateSync = exports.globSync = exports.globStream = exports.globStreamSync = void 0;
      -const minimatch_1 = require("minimatch");
      -const glob_js_1 = require("./glob.js");
      -const has_magic_js_1 = require("./has-magic.js");
      -function globStreamSync(pattern, options = {}) {
      -    return new glob_js_1.Glob(pattern, options).streamSync();
      -}
      -exports.globStreamSync = globStreamSync;
      -function globStream(pattern, options = {}) {
      -    return new glob_js_1.Glob(pattern, options).stream();
      -}
      -exports.globStream = globStream;
      -function globSync(pattern, options = {}) {
      -    return new glob_js_1.Glob(pattern, options).walkSync();
      -}
      -exports.globSync = globSync;
      -async function glob_(pattern, options = {}) {
      -    return new glob_js_1.Glob(pattern, options).walk();
      -}
      -function globIterateSync(pattern, options = {}) {
      -    return new glob_js_1.Glob(pattern, options).iterateSync();
      -}
      -exports.globIterateSync = globIterateSync;
      -function globIterate(pattern, options = {}) {
      -    return new glob_js_1.Glob(pattern, options).iterate();
      -}
      -exports.globIterate = globIterate;
      -// aliases: glob.sync.stream() glob.stream.sync() glob.sync() etc
      -exports.streamSync = globStreamSync;
      -exports.stream = Object.assign(globStream, { sync: globStreamSync });
      -exports.iterateSync = globIterateSync;
      -exports.iterate = Object.assign(globIterate, {
      -    sync: globIterateSync,
      -});
      -exports.sync = Object.assign(globSync, {
      -    stream: globStreamSync,
      -    iterate: globIterateSync,
      -});
      -/* c8 ignore start */
      -var minimatch_2 = require("minimatch");
      -Object.defineProperty(exports, "escape", { enumerable: true, get: function () { return minimatch_2.escape; } });
      -Object.defineProperty(exports, "unescape", { enumerable: true, get: function () { return minimatch_2.unescape; } });
      -var glob_js_2 = require("./glob.js");
      -Object.defineProperty(exports, "Glob", { enumerable: true, get: function () { return glob_js_2.Glob; } });
      -var has_magic_js_2 = require("./has-magic.js");
      -Object.defineProperty(exports, "hasMagic", { enumerable: true, get: function () { return has_magic_js_2.hasMagic; } });
      -/* c8 ignore stop */
      -exports.glob = Object.assign(glob_, {
      -    glob: glob_,
      -    globSync,
      -    sync: exports.sync,
      -    globStream,
      -    stream: exports.stream,
      -    globStreamSync,
      -    streamSync: exports.streamSync,
      -    globIterate,
      -    iterate: exports.iterate,
      -    globIterateSync,
      -    iterateSync: exports.iterateSync,
      -    Glob: glob_js_1.Glob,
      -    hasMagic: has_magic_js_1.hasMagic,
      -    escape: minimatch_1.escape,
      -    unescape: minimatch_1.unescape,
      -});
      -exports.glob.glob = exports.glob;
      -//# sourceMappingURL=index.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.js.map
      deleted file mode 100644
      index 060338fbd1b94b..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/index.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":";;;AAAA,yCAA4C;AAS5C,uCAAgC;AAChC,iDAAyC;AAuBzC,SAAgB,cAAc,CAC5B,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,cAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,UAAU,EAAE,CAAA;AAChD,CAAC;AALD,wCAKC;AAsBD,SAAgB,UAAU,CACxB,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,cAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,MAAM,EAAE,CAAA;AAC5C,CAAC;AALD,gCAKC;AAqBD,SAAgB,QAAQ,CACtB,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,cAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,QAAQ,EAAE,CAAA;AAC9C,CAAC;AALD,4BAKC;AAwBD,KAAK,UAAU,KAAK,CAClB,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,cAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,EAAE,CAAA;AAC1C,CAAC;AAqBD,SAAgB,eAAe,CAC7B,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,cAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,WAAW,EAAE,CAAA;AACjD,CAAC;AALD,0CAKC;AAqBD,SAAgB,WAAW,CACzB,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,cAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,OAAO,EAAE,CAAA;AAC7C,CAAC;AALD,kCAKC;AAED,iEAAiE;AACpD,QAAA,UAAU,GAAG,cAAc,CAAA;AAC3B,QAAA,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE,CAAC,CAAA;AAC5D,QAAA,WAAW,GAAG,eAAe,CAAA;AAC7B,QAAA,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,EAAE;IAChD,IAAI,EAAE,eAAe;CACtB,CAAC,CAAA;AACW,QAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE;IAC1C,MAAM,EAAE,cAAc;IACtB,OAAO,EAAE,eAAe;CACzB,CAAC,CAAA;AAEF,qBAAqB;AACrB,uCAA4C;AAAnC,mGAAA,MAAM,OAAA;AAAE,qGAAA,QAAQ,OAAA;AACzB,qCAAgC;AAAvB,+FAAA,IAAI,OAAA;AAOb,+CAAyC;AAAhC,wGAAA,QAAQ,OAAA;AAGjB,oBAAoB;AAEP,QAAA,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE;IACvC,IAAI,EAAE,KAAK;IACX,QAAQ;IACR,IAAI,EAAJ,YAAI;IACJ,UAAU;IACV,MAAM,EAAN,cAAM;IACN,cAAc;IACd,UAAU,EAAV,kBAAU;IACV,WAAW;IACX,OAAO,EAAP,eAAO;IACP,eAAe;IACf,WAAW,EAAX,mBAAW;IACX,IAAI,EAAJ,cAAI;IACJ,QAAQ,EAAR,uBAAQ;IACR,MAAM,EAAN,kBAAM;IACN,QAAQ,EAAR,oBAAQ;CACT,CAAC,CAAA;AACF,YAAI,CAAC,IAAI,GAAG,YAAI,CAAA","sourcesContent":["import { escape, unescape } from 'minimatch'\nimport { Minipass } from 'minipass'\nimport { Path } from 'path-scurry'\nimport type {\n  GlobOptions,\n  GlobOptionsWithFileTypesFalse,\n  GlobOptionsWithFileTypesTrue,\n  GlobOptionsWithFileTypesUnset,\n} from './glob.js'\nimport { Glob } from './glob.js'\nimport { hasMagic } from './has-magic.js'\n\n/**\n * Syncronous form of {@link globStream}. Will read all the matches as fast as\n * you consume them, even all in a single tick if you consume them immediately,\n * but will still respond to backpressure if they're not consumed immediately.\n */\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Minipass\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): Minipass\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesUnset\n): Minipass\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptions\n): Minipass | Minipass\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).streamSync()\n}\n\n/**\n * Return a stream that emits all the strings or `Path` objects and\n * then emits `end` when completed.\n */\nexport function globStream(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): Minipass\nexport function globStream(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Minipass\nexport function globStream(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): Minipass\nexport function globStream(\n  pattern: string | string[],\n  options: GlobOptions\n): Minipass | Minipass\nexport function globStream(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).stream()\n}\n\n/**\n * Synchronous form of {@link glob}\n */\nexport function globSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): string[]\nexport function globSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Path[]\nexport function globSync(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): string[]\nexport function globSync(\n  pattern: string | string[],\n  options: GlobOptions\n): Path[] | string[]\nexport function globSync(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).walkSync()\n}\n\n/**\n * Perform an asynchronous glob search for the pattern(s) specified. Returns\n * [Path](https://isaacs.github.io/path-scurry/classes/PathBase) objects if the\n * {@link withFileTypes} option is set to `true`. See {@link GlobOptions} for\n * full option descriptions.\n */\nasync function glob_(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): Promise\nasync function glob_(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Promise\nasync function glob_(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): Promise\nasync function glob_(\n  pattern: string | string[],\n  options: GlobOptions\n): Promise\nasync function glob_(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).walk()\n}\n\n/**\n * Return a sync iterator for walking glob pattern matches.\n */\nexport function globIterateSync(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): Generator\nexport function globIterateSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Generator\nexport function globIterateSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): Generator\nexport function globIterateSync(\n  pattern: string | string[],\n  options: GlobOptions\n): Generator | Generator\nexport function globIterateSync(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).iterateSync()\n}\n\n/**\n * Return an async iterator for walking glob pattern matches.\n */\nexport function globIterate(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): AsyncGenerator\nexport function globIterate(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): AsyncGenerator\nexport function globIterate(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): AsyncGenerator\nexport function globIterate(\n  pattern: string | string[],\n  options: GlobOptions\n): AsyncGenerator | AsyncGenerator\nexport function globIterate(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).iterate()\n}\n\n// aliases: glob.sync.stream() glob.stream.sync() glob.sync() etc\nexport const streamSync = globStreamSync\nexport const stream = Object.assign(globStream, { sync: globStreamSync })\nexport const iterateSync = globIterateSync\nexport const iterate = Object.assign(globIterate, {\n  sync: globIterateSync,\n})\nexport const sync = Object.assign(globSync, {\n  stream: globStreamSync,\n  iterate: globIterateSync,\n})\n\n/* c8 ignore start */\nexport { escape, unescape } from 'minimatch'\nexport { Glob } from './glob.js'\nexport type {\n  GlobOptions,\n  GlobOptionsWithFileTypesFalse,\n  GlobOptionsWithFileTypesTrue,\n  GlobOptionsWithFileTypesUnset,\n} from './glob.js'\nexport { hasMagic } from './has-magic.js'\nexport type { IgnoreLike } from './ignore.js'\nexport type { MatchStream } from './walker.js'\n/* c8 ignore stop */\n\nexport const glob = Object.assign(glob_, {\n  glob: glob_,\n  globSync,\n  sync,\n  globStream,\n  stream,\n  globStreamSync,\n  streamSync,\n  globIterate,\n  iterate,\n  globIterateSync,\n  iterateSync,\n  Glob,\n  hasMagic,\n  escape,\n  unescape,\n})\nglob.glob = glob\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.d.ts
      deleted file mode 100644
      index 109cc4e7a5dae3..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.d.ts
      +++ /dev/null
      @@ -1,77 +0,0 @@
      -/// 
      -import { GLOBSTAR } from 'minimatch';
      -export type MMPattern = string | RegExp | typeof GLOBSTAR;
      -export type PatternList = [p: MMPattern, ...rest: MMPattern[]];
      -export type UNCPatternList = [
      -    p0: '',
      -    p1: '',
      -    p2: string,
      -    p3: string,
      -    ...rest: MMPattern[]
      -];
      -export type DrivePatternList = [p0: string, ...rest: MMPattern[]];
      -export type AbsolutePatternList = [p0: '', ...rest: MMPattern[]];
      -export type GlobList = [p: string, ...rest: string[]];
      -/**
      - * An immutable-ish view on an array of glob parts and their parsed
      - * results
      - */
      -export declare class Pattern {
      -    #private;
      -    readonly length: number;
      -    constructor(patternList: MMPattern[], globList: string[], index: number, platform: NodeJS.Platform);
      -    /**
      -     * The first entry in the parsed list of patterns
      -     */
      -    pattern(): MMPattern;
      -    /**
      -     * true of if pattern() returns a string
      -     */
      -    isString(): boolean;
      -    /**
      -     * true of if pattern() returns GLOBSTAR
      -     */
      -    isGlobstar(): boolean;
      -    /**
      -     * true if pattern() returns a regexp
      -     */
      -    isRegExp(): boolean;
      -    /**
      -     * The /-joined set of glob parts that make up this pattern
      -     */
      -    globString(): string;
      -    /**
      -     * true if there are more pattern parts after this one
      -     */
      -    hasMore(): boolean;
      -    /**
      -     * The rest of the pattern after this part, or null if this is the end
      -     */
      -    rest(): Pattern | null;
      -    /**
      -     * true if the pattern represents a //unc/path/ on windows
      -     */
      -    isUNC(): boolean;
      -    /**
      -     * True if the pattern starts with a drive letter on Windows
      -     */
      -    isDrive(): boolean;
      -    /**
      -     * True if the pattern is rooted on an absolute path
      -     */
      -    isAbsolute(): boolean;
      -    /**
      -     * consume the root of the pattern, and return it
      -     */
      -    root(): string;
      -    /**
      -     * Check to see if the current globstar pattern is allowed to follow
      -     * a symbolic link.
      -     */
      -    checkFollowGlobstar(): boolean;
      -    /**
      -     * Mark that the current globstar pattern is following a symbolic link
      -     */
      -    markFollowGlobstar(): boolean;
      -}
      -//# sourceMappingURL=pattern.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.d.ts.map
      deleted file mode 100644
      index 48430f63db0947..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"pattern.d.ts","sourceRoot":"","sources":["../../../src/pattern.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AACpC,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,QAAQ,CAAA;AAGzD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,SAAS,EAAE,CAAC,CAAA;AAC9D,MAAM,MAAM,cAAc,GAAG;IAC3B,EAAE,EAAE,EAAE;IACN,EAAE,EAAE,EAAE;IACN,EAAE,EAAE,MAAM;IACV,EAAE,EAAE,MAAM;IACV,GAAG,IAAI,EAAE,SAAS,EAAE;CACrB,CAAA;AACD,MAAM,MAAM,gBAAgB,GAAG,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,SAAS,EAAE,CAAC,CAAA;AACjE,MAAM,MAAM,mBAAmB,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,GAAG,IAAI,EAAE,SAAS,EAAE,CAAC,CAAA;AAChE,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,MAAM,EAAE,CAAC,CAAA;AAMrD;;;GAGG;AACH,qBAAa,OAAO;;IAIlB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;gBAUrB,WAAW,EAAE,SAAS,EAAE,EACxB,QAAQ,EAAE,MAAM,EAAE,EAClB,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,CAAC,QAAQ;IA6D3B;;OAEG;IACH,OAAO,IAAI,SAAS;IAIpB;;OAEG;IACH,QAAQ,IAAI,OAAO;IAGnB;;OAEG;IACH,UAAU,IAAI,OAAO;IAGrB;;OAEG;IACH,QAAQ,IAAI,OAAO;IAInB;;OAEG;IACH,UAAU,IAAI,MAAM;IAUpB;;OAEG;IACH,OAAO,IAAI,OAAO;IAIlB;;OAEG;IACH,IAAI,IAAI,OAAO,GAAG,IAAI;IAetB;;OAEG;IACH,KAAK,IAAI,OAAO;IAoBhB;;OAEG;IACH,OAAO,IAAI,OAAO;IAelB;;OAEG;IACH,UAAU,IAAI,OAAO;IAUrB;;OAEG;IACH,IAAI,IAAI,MAAM;IAOd;;;OAGG;IACH,mBAAmB,IAAI,OAAO;IAQ9B;;OAEG;IACH,kBAAkB,IAAI,OAAO;CAM9B"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.js
      deleted file mode 100644
      index 181371293d8605..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.js
      +++ /dev/null
      @@ -1,219 +0,0 @@
      -"use strict";
      -// this is just a very light wrapper around 2 arrays with an offset index
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.Pattern = void 0;
      -const minimatch_1 = require("minimatch");
      -const isPatternList = (pl) => pl.length >= 1;
      -const isGlobList = (gl) => gl.length >= 1;
      -/**
      - * An immutable-ish view on an array of glob parts and their parsed
      - * results
      - */
      -class Pattern {
      -    #patternList;
      -    #globList;
      -    #index;
      -    length;
      -    #platform;
      -    #rest;
      -    #globString;
      -    #isDrive;
      -    #isUNC;
      -    #isAbsolute;
      -    #followGlobstar = true;
      -    constructor(patternList, globList, index, platform) {
      -        if (!isPatternList(patternList)) {
      -            throw new TypeError('empty pattern list');
      -        }
      -        if (!isGlobList(globList)) {
      -            throw new TypeError('empty glob list');
      -        }
      -        if (globList.length !== patternList.length) {
      -            throw new TypeError('mismatched pattern list and glob list lengths');
      -        }
      -        this.length = patternList.length;
      -        if (index < 0 || index >= this.length) {
      -            throw new TypeError('index out of range');
      -        }
      -        this.#patternList = patternList;
      -        this.#globList = globList;
      -        this.#index = index;
      -        this.#platform = platform;
      -        // normalize root entries of absolute patterns on initial creation.
      -        if (this.#index === 0) {
      -            // c: => ['c:/']
      -            // C:/ => ['C:/']
      -            // C:/x => ['C:/', 'x']
      -            // //host/share => ['//host/share/']
      -            // //host/share/ => ['//host/share/']
      -            // //host/share/x => ['//host/share/', 'x']
      -            // /etc => ['/', 'etc']
      -            // / => ['/']
      -            if (this.isUNC()) {
      -                // '' / '' / 'host' / 'share'
      -                const [p0, p1, p2, p3, ...prest] = this.#patternList;
      -                const [g0, g1, g2, g3, ...grest] = this.#globList;
      -                if (prest[0] === '') {
      -                    // ends in /
      -                    prest.shift();
      -                    grest.shift();
      -                }
      -                const p = [p0, p1, p2, p3, ''].join('/');
      -                const g = [g0, g1, g2, g3, ''].join('/');
      -                this.#patternList = [p, ...prest];
      -                this.#globList = [g, ...grest];
      -                this.length = this.#patternList.length;
      -            }
      -            else if (this.isDrive() || this.isAbsolute()) {
      -                const [p1, ...prest] = this.#patternList;
      -                const [g1, ...grest] = this.#globList;
      -                if (prest[0] === '') {
      -                    // ends in /
      -                    prest.shift();
      -                    grest.shift();
      -                }
      -                const p = p1 + '/';
      -                const g = g1 + '/';
      -                this.#patternList = [p, ...prest];
      -                this.#globList = [g, ...grest];
      -                this.length = this.#patternList.length;
      -            }
      -        }
      -    }
      -    /**
      -     * The first entry in the parsed list of patterns
      -     */
      -    pattern() {
      -        return this.#patternList[this.#index];
      -    }
      -    /**
      -     * true of if pattern() returns a string
      -     */
      -    isString() {
      -        return typeof this.#patternList[this.#index] === 'string';
      -    }
      -    /**
      -     * true of if pattern() returns GLOBSTAR
      -     */
      -    isGlobstar() {
      -        return this.#patternList[this.#index] === minimatch_1.GLOBSTAR;
      -    }
      -    /**
      -     * true if pattern() returns a regexp
      -     */
      -    isRegExp() {
      -        return this.#patternList[this.#index] instanceof RegExp;
      -    }
      -    /**
      -     * The /-joined set of glob parts that make up this pattern
      -     */
      -    globString() {
      -        return (this.#globString =
      -            this.#globString ||
      -                (this.#index === 0
      -                    ? this.isAbsolute()
      -                        ? this.#globList[0] + this.#globList.slice(1).join('/')
      -                        : this.#globList.join('/')
      -                    : this.#globList.slice(this.#index).join('/')));
      -    }
      -    /**
      -     * true if there are more pattern parts after this one
      -     */
      -    hasMore() {
      -        return this.length > this.#index + 1;
      -    }
      -    /**
      -     * The rest of the pattern after this part, or null if this is the end
      -     */
      -    rest() {
      -        if (this.#rest !== undefined)
      -            return this.#rest;
      -        if (!this.hasMore())
      -            return (this.#rest = null);
      -        this.#rest = new Pattern(this.#patternList, this.#globList, this.#index + 1, this.#platform);
      -        this.#rest.#isAbsolute = this.#isAbsolute;
      -        this.#rest.#isUNC = this.#isUNC;
      -        this.#rest.#isDrive = this.#isDrive;
      -        return this.#rest;
      -    }
      -    /**
      -     * true if the pattern represents a //unc/path/ on windows
      -     */
      -    isUNC() {
      -        const pl = this.#patternList;
      -        return this.#isUNC !== undefined
      -            ? this.#isUNC
      -            : (this.#isUNC =
      -                this.#platform === 'win32' &&
      -                    this.#index === 0 &&
      -                    pl[0] === '' &&
      -                    pl[1] === '' &&
      -                    typeof pl[2] === 'string' &&
      -                    !!pl[2] &&
      -                    typeof pl[3] === 'string' &&
      -                    !!pl[3]);
      -    }
      -    // pattern like C:/...
      -    // split = ['C:', ...]
      -    // XXX: would be nice to handle patterns like `c:*` to test the cwd
      -    // in c: for *, but I don't know of a way to even figure out what that
      -    // cwd is without actually chdir'ing into it?
      -    /**
      -     * True if the pattern starts with a drive letter on Windows
      -     */
      -    isDrive() {
      -        const pl = this.#patternList;
      -        return this.#isDrive !== undefined
      -            ? this.#isDrive
      -            : (this.#isDrive =
      -                this.#platform === 'win32' &&
      -                    this.#index === 0 &&
      -                    this.length > 1 &&
      -                    typeof pl[0] === 'string' &&
      -                    /^[a-z]:$/i.test(pl[0]));
      -    }
      -    // pattern = '/' or '/...' or '/x/...'
      -    // split = ['', ''] or ['', ...] or ['', 'x', ...]
      -    // Drive and UNC both considered absolute on windows
      -    /**
      -     * True if the pattern is rooted on an absolute path
      -     */
      -    isAbsolute() {
      -        const pl = this.#patternList;
      -        return this.#isAbsolute !== undefined
      -            ? this.#isAbsolute
      -            : (this.#isAbsolute =
      -                (pl[0] === '' && pl.length > 1) ||
      -                    this.isDrive() ||
      -                    this.isUNC());
      -    }
      -    /**
      -     * consume the root of the pattern, and return it
      -     */
      -    root() {
      -        const p = this.#patternList[0];
      -        return typeof p === 'string' && this.isAbsolute() && this.#index === 0
      -            ? p
      -            : '';
      -    }
      -    /**
      -     * Check to see if the current globstar pattern is allowed to follow
      -     * a symbolic link.
      -     */
      -    checkFollowGlobstar() {
      -        return !(this.#index === 0 ||
      -            !this.isGlobstar() ||
      -            !this.#followGlobstar);
      -    }
      -    /**
      -     * Mark that the current globstar pattern is following a symbolic link
      -     */
      -    markFollowGlobstar() {
      -        if (this.#index === 0 || !this.isGlobstar() || !this.#followGlobstar)
      -            return false;
      -        this.#followGlobstar = false;
      -        return true;
      -    }
      -}
      -exports.Pattern = Pattern;
      -//# sourceMappingURL=pattern.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.js.map
      deleted file mode 100644
      index ba5293ff9f2489..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/pattern.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"pattern.js","sourceRoot":"","sources":["../../../src/pattern.ts"],"names":[],"mappings":";AAAA,yEAAyE;;;AAEzE,yCAAoC;AAgBpC,MAAM,aAAa,GAAG,CAAC,EAAe,EAAqB,EAAE,CAC3D,EAAE,CAAC,MAAM,IAAI,CAAC,CAAA;AAChB,MAAM,UAAU,GAAG,CAAC,EAAY,EAAkB,EAAE,CAAC,EAAE,CAAC,MAAM,IAAI,CAAC,CAAA;AAEnE;;;GAGG;AACH,MAAa,OAAO;IACT,YAAY,CAAa;IACzB,SAAS,CAAU;IACnB,MAAM,CAAQ;IACd,MAAM,CAAQ;IACd,SAAS,CAAiB;IACnC,KAAK,CAAiB;IACtB,WAAW,CAAS;IACpB,QAAQ,CAAU;IAClB,MAAM,CAAU;IAChB,WAAW,CAAU;IACrB,eAAe,GAAY,IAAI,CAAA;IAE/B,YACE,WAAwB,EACxB,QAAkB,EAClB,KAAa,EACb,QAAyB;QAEzB,IAAI,CAAC,aAAa,CAAC,WAAW,CAAC,EAAE;YAC/B,MAAM,IAAI,SAAS,CAAC,oBAAoB,CAAC,CAAA;SAC1C;QACD,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE;YACzB,MAAM,IAAI,SAAS,CAAC,iBAAiB,CAAC,CAAA;SACvC;QACD,IAAI,QAAQ,CAAC,MAAM,KAAK,WAAW,CAAC,MAAM,EAAE;YAC1C,MAAM,IAAI,SAAS,CAAC,+CAA+C,CAAC,CAAA;SACrE;QACD,IAAI,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAA;QAChC,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,MAAM,EAAE;YACrC,MAAM,IAAI,SAAS,CAAC,oBAAoB,CAAC,CAAA;SAC1C;QACD,IAAI,CAAC,YAAY,GAAG,WAAW,CAAA;QAC/B,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAA;QACzB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;QACnB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAA;QAEzB,mEAAmE;QACnE,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE;YACrB,gBAAgB;YAChB,iBAAiB;YACjB,uBAAuB;YACvB,oCAAoC;YACpC,qCAAqC;YACrC,2CAA2C;YAC3C,uBAAuB;YACvB,aAAa;YACb,IAAI,IAAI,CAAC,KAAK,EAAE,EAAE;gBAChB,6BAA6B;gBAC7B,MAAM,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,YAAY,CAAA;gBACpD,MAAM,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,SAAS,CAAA;gBACjD,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE;oBACnB,YAAY;oBACZ,KAAK,CAAC,KAAK,EAAE,CAAA;oBACb,KAAK,CAAC,KAAK,EAAE,CAAA;iBACd;gBACD,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;gBACxC,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;gBACxC,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,EAAE,GAAG,KAAK,CAAC,CAAA;gBACjC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,EAAE,GAAG,KAAK,CAAC,CAAA;gBAC9B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAA;aACvC;iBAAM,IAAI,IAAI,CAAC,OAAO,EAAE,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE;gBAC9C,MAAM,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,YAAY,CAAA;gBACxC,MAAM,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,SAAS,CAAA;gBACrC,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE;oBACnB,YAAY;oBACZ,KAAK,CAAC,KAAK,EAAE,CAAA;oBACb,KAAK,CAAC,KAAK,EAAE,CAAA;iBACd;gBACD,MAAM,CAAC,GAAI,EAAa,GAAG,GAAG,CAAA;gBAC9B,MAAM,CAAC,GAAG,EAAE,GAAG,GAAG,CAAA;gBAClB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,EAAE,GAAG,KAAK,CAAC,CAAA;gBACjC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,EAAE,GAAG,KAAK,CAAC,CAAA;gBAC9B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAA;aACvC;SACF;IACH,CAAC;IAED;;OAEG;IACH,OAAO;QACL,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACvC,CAAC;IAED;;OAEG;IACH,QAAQ;QACN,OAAO,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAA;IAC3D,CAAC;IACD;;OAEG;IACH,UAAU;QACR,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,oBAAQ,CAAA;IACpD,CAAC;IACD;;OAEG;IACH,QAAQ;QACN,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,YAAY,MAAM,CAAA;IACzD,CAAC;IAED;;OAEG;IACH,UAAU;QACR,OAAO,CAAC,IAAI,CAAC,WAAW;YACtB,IAAI,CAAC,WAAW;gBAChB,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC;oBAChB,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE;wBACjB,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;wBACvD,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC;oBAC5B,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACrD,CAAC;IAED;;OAEG;IACH,OAAO;QACL,OAAO,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,CAAA;IACtC,CAAC;IAED;;OAEG;IACH,IAAI;QACF,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS;YAAE,OAAO,IAAI,CAAC,KAAK,CAAA;QAC/C,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YAAE,OAAO,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,CAAA;QAC/C,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,CACtB,IAAI,CAAC,YAAY,EACjB,IAAI,CAAC,SAAS,EACd,IAAI,CAAC,MAAM,GAAG,CAAC,EACf,IAAI,CAAC,SAAS,CACf,CAAA;QACD,IAAI,CAAC,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAA;QACzC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;QAC/B,IAAI,CAAC,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAA;QACnC,OAAO,IAAI,CAAC,KAAK,CAAA;IACnB,CAAC;IAED;;OAEG;IACH,KAAK;QACH,MAAM,EAAE,GAAG,IAAI,CAAC,YAAY,CAAA;QAC5B,OAAO,IAAI,CAAC,MAAM,KAAK,SAAS;YAC9B,CAAC,CAAC,IAAI,CAAC,MAAM;YACb,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM;gBACV,IAAI,CAAC,SAAS,KAAK,OAAO;oBAC1B,IAAI,CAAC,MAAM,KAAK,CAAC;oBACjB,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE;oBACZ,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE;oBACZ,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,QAAQ;oBACzB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;oBACP,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,QAAQ;oBACzB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;IAChB,CAAC;IAED,sBAAsB;IACtB,sBAAsB;IACtB,mEAAmE;IACnE,sEAAsE;IACtE,6CAA6C;IAC7C;;OAEG;IACH,OAAO;QACL,MAAM,EAAE,GAAG,IAAI,CAAC,YAAY,CAAA;QAC5B,OAAO,IAAI,CAAC,QAAQ,KAAK,SAAS;YAChC,CAAC,CAAC,IAAI,CAAC,QAAQ;YACf,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ;gBACZ,IAAI,CAAC,SAAS,KAAK,OAAO;oBAC1B,IAAI,CAAC,MAAM,KAAK,CAAC;oBACjB,IAAI,CAAC,MAAM,GAAG,CAAC;oBACf,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,QAAQ;oBACzB,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAChC,CAAC;IAED,sCAAsC;IACtC,kDAAkD;IAClD,oDAAoD;IACpD;;OAEG;IACH,UAAU;QACR,MAAM,EAAE,GAAG,IAAI,CAAC,YAAY,CAAA;QAC5B,OAAO,IAAI,CAAC,WAAW,KAAK,SAAS;YACnC,CAAC,CAAC,IAAI,CAAC,WAAW;YAClB,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW;gBACf,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC;oBAC/B,IAAI,CAAC,OAAO,EAAE;oBACd,IAAI,CAAC,KAAK,EAAE,CAAC,CAAA;IACrB,CAAC;IAED;;OAEG;IACH,IAAI;QACF,MAAM,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAA;QAC9B,OAAO,OAAO,CAAC,KAAK,QAAQ,IAAI,IAAI,CAAC,UAAU,EAAE,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;YACpE,CAAC,CAAC,CAAC;YACH,CAAC,CAAC,EAAE,CAAA;IACR,CAAC;IAED;;;OAGG;IACH,mBAAmB;QACjB,OAAO,CAAC,CACN,IAAI,CAAC,MAAM,KAAK,CAAC;YACjB,CAAC,IAAI,CAAC,UAAU,EAAE;YAClB,CAAC,IAAI,CAAC,eAAe,CACtB,CAAA;IACH,CAAC;IAED;;OAEG;IACH,kBAAkB;QAChB,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,IAAI,CAAC,eAAe;YAClE,OAAO,KAAK,CAAA;QACd,IAAI,CAAC,eAAe,GAAG,KAAK,CAAA;QAC5B,OAAO,IAAI,CAAA;IACb,CAAC;CACF;AAnOD,0BAmOC","sourcesContent":["// this is just a very light wrapper around 2 arrays with an offset index\n\nimport { GLOBSTAR } from 'minimatch'\nexport type MMPattern = string | RegExp | typeof GLOBSTAR\n\n// an array of length >= 1\nexport type PatternList = [p: MMPattern, ...rest: MMPattern[]]\nexport type UNCPatternList = [\n  p0: '',\n  p1: '',\n  p2: string,\n  p3: string,\n  ...rest: MMPattern[]\n]\nexport type DrivePatternList = [p0: string, ...rest: MMPattern[]]\nexport type AbsolutePatternList = [p0: '', ...rest: MMPattern[]]\nexport type GlobList = [p: string, ...rest: string[]]\n\nconst isPatternList = (pl: MMPattern[]): pl is PatternList =>\n  pl.length >= 1\nconst isGlobList = (gl: string[]): gl is GlobList => gl.length >= 1\n\n/**\n * An immutable-ish view on an array of glob parts and their parsed\n * results\n */\nexport class Pattern {\n  readonly #patternList: PatternList\n  readonly #globList: GlobList\n  readonly #index: number\n  readonly length: number\n  readonly #platform: NodeJS.Platform\n  #rest?: Pattern | null\n  #globString?: string\n  #isDrive?: boolean\n  #isUNC?: boolean\n  #isAbsolute?: boolean\n  #followGlobstar: boolean = true\n\n  constructor(\n    patternList: MMPattern[],\n    globList: string[],\n    index: number,\n    platform: NodeJS.Platform\n  ) {\n    if (!isPatternList(patternList)) {\n      throw new TypeError('empty pattern list')\n    }\n    if (!isGlobList(globList)) {\n      throw new TypeError('empty glob list')\n    }\n    if (globList.length !== patternList.length) {\n      throw new TypeError('mismatched pattern list and glob list lengths')\n    }\n    this.length = patternList.length\n    if (index < 0 || index >= this.length) {\n      throw new TypeError('index out of range')\n    }\n    this.#patternList = patternList\n    this.#globList = globList\n    this.#index = index\n    this.#platform = platform\n\n    // normalize root entries of absolute patterns on initial creation.\n    if (this.#index === 0) {\n      // c: => ['c:/']\n      // C:/ => ['C:/']\n      // C:/x => ['C:/', 'x']\n      // //host/share => ['//host/share/']\n      // //host/share/ => ['//host/share/']\n      // //host/share/x => ['//host/share/', 'x']\n      // /etc => ['/', 'etc']\n      // / => ['/']\n      if (this.isUNC()) {\n        // '' / '' / 'host' / 'share'\n        const [p0, p1, p2, p3, ...prest] = this.#patternList\n        const [g0, g1, g2, g3, ...grest] = this.#globList\n        if (prest[0] === '') {\n          // ends in /\n          prest.shift()\n          grest.shift()\n        }\n        const p = [p0, p1, p2, p3, ''].join('/')\n        const g = [g0, g1, g2, g3, ''].join('/')\n        this.#patternList = [p, ...prest]\n        this.#globList = [g, ...grest]\n        this.length = this.#patternList.length\n      } else if (this.isDrive() || this.isAbsolute()) {\n        const [p1, ...prest] = this.#patternList\n        const [g1, ...grest] = this.#globList\n        if (prest[0] === '') {\n          // ends in /\n          prest.shift()\n          grest.shift()\n        }\n        const p = (p1 as string) + '/'\n        const g = g1 + '/'\n        this.#patternList = [p, ...prest]\n        this.#globList = [g, ...grest]\n        this.length = this.#patternList.length\n      }\n    }\n  }\n\n  /**\n   * The first entry in the parsed list of patterns\n   */\n  pattern(): MMPattern {\n    return this.#patternList[this.#index]\n  }\n\n  /**\n   * true of if pattern() returns a string\n   */\n  isString(): boolean {\n    return typeof this.#patternList[this.#index] === 'string'\n  }\n  /**\n   * true of if pattern() returns GLOBSTAR\n   */\n  isGlobstar(): boolean {\n    return this.#patternList[this.#index] === GLOBSTAR\n  }\n  /**\n   * true if pattern() returns a regexp\n   */\n  isRegExp(): boolean {\n    return this.#patternList[this.#index] instanceof RegExp\n  }\n\n  /**\n   * The /-joined set of glob parts that make up this pattern\n   */\n  globString(): string {\n    return (this.#globString =\n      this.#globString ||\n      (this.#index === 0\n        ? this.isAbsolute()\n          ? this.#globList[0] + this.#globList.slice(1).join('/')\n          : this.#globList.join('/')\n        : this.#globList.slice(this.#index).join('/')))\n  }\n\n  /**\n   * true if there are more pattern parts after this one\n   */\n  hasMore(): boolean {\n    return this.length > this.#index + 1\n  }\n\n  /**\n   * The rest of the pattern after this part, or null if this is the end\n   */\n  rest(): Pattern | null {\n    if (this.#rest !== undefined) return this.#rest\n    if (!this.hasMore()) return (this.#rest = null)\n    this.#rest = new Pattern(\n      this.#patternList,\n      this.#globList,\n      this.#index + 1,\n      this.#platform\n    )\n    this.#rest.#isAbsolute = this.#isAbsolute\n    this.#rest.#isUNC = this.#isUNC\n    this.#rest.#isDrive = this.#isDrive\n    return this.#rest\n  }\n\n  /**\n   * true if the pattern represents a //unc/path/ on windows\n   */\n  isUNC(): boolean {\n    const pl = this.#patternList\n    return this.#isUNC !== undefined\n      ? this.#isUNC\n      : (this.#isUNC =\n          this.#platform === 'win32' &&\n          this.#index === 0 &&\n          pl[0] === '' &&\n          pl[1] === '' &&\n          typeof pl[2] === 'string' &&\n          !!pl[2] &&\n          typeof pl[3] === 'string' &&\n          !!pl[3])\n  }\n\n  // pattern like C:/...\n  // split = ['C:', ...]\n  // XXX: would be nice to handle patterns like `c:*` to test the cwd\n  // in c: for *, but I don't know of a way to even figure out what that\n  // cwd is without actually chdir'ing into it?\n  /**\n   * True if the pattern starts with a drive letter on Windows\n   */\n  isDrive(): boolean {\n    const pl = this.#patternList\n    return this.#isDrive !== undefined\n      ? this.#isDrive\n      : (this.#isDrive =\n          this.#platform === 'win32' &&\n          this.#index === 0 &&\n          this.length > 1 &&\n          typeof pl[0] === 'string' &&\n          /^[a-z]:$/i.test(pl[0]))\n  }\n\n  // pattern = '/' or '/...' or '/x/...'\n  // split = ['', ''] or ['', ...] or ['', 'x', ...]\n  // Drive and UNC both considered absolute on windows\n  /**\n   * True if the pattern is rooted on an absolute path\n   */\n  isAbsolute(): boolean {\n    const pl = this.#patternList\n    return this.#isAbsolute !== undefined\n      ? this.#isAbsolute\n      : (this.#isAbsolute =\n          (pl[0] === '' && pl.length > 1) ||\n          this.isDrive() ||\n          this.isUNC())\n  }\n\n  /**\n   * consume the root of the pattern, and return it\n   */\n  root(): string {\n    const p = this.#patternList[0]\n    return typeof p === 'string' && this.isAbsolute() && this.#index === 0\n      ? p\n      : ''\n  }\n\n  /**\n   * Check to see if the current globstar pattern is allowed to follow\n   * a symbolic link.\n   */\n  checkFollowGlobstar(): boolean {\n    return !(\n      this.#index === 0 ||\n      !this.isGlobstar() ||\n      !this.#followGlobstar\n    )\n  }\n\n  /**\n   * Mark that the current globstar pattern is following a symbolic link\n   */\n  markFollowGlobstar(): boolean {\n    if (this.#index === 0 || !this.isGlobstar() || !this.#followGlobstar)\n      return false\n    this.#followGlobstar = false\n    return true\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.d.ts
      deleted file mode 100644
      index ccedfbf2820f7d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.d.ts
      +++ /dev/null
      @@ -1,59 +0,0 @@
      -import { MMRegExp } from 'minimatch';
      -import { Path } from 'path-scurry';
      -import { Pattern } from './pattern.js';
      -import { GlobWalkerOpts } from './walker.js';
      -/**
      - * A cache of which patterns have been processed for a given Path
      - */
      -export declare class HasWalkedCache {
      -    store: Map>;
      -    constructor(store?: Map>);
      -    copy(): HasWalkedCache;
      -    hasWalked(target: Path, pattern: Pattern): boolean | undefined;
      -    storeWalked(target: Path, pattern: Pattern): void;
      -}
      -/**
      - * A record of which paths have been matched in a given walk step,
      - * and whether they only are considered a match if they are a directory,
      - * and whether their absolute or relative path should be returned.
      - */
      -export declare class MatchRecord {
      -    store: Map;
      -    add(target: Path, absolute: boolean, ifDir: boolean): void;
      -    entries(): [Path, boolean, boolean][];
      -}
      -/**
      - * A collection of patterns that must be processed in a subsequent step
      - * for a given path.
      - */
      -export declare class SubWalks {
      -    store: Map;
      -    add(target: Path, pattern: Pattern): void;
      -    get(target: Path): Pattern[];
      -    entries(): [Path, Pattern[]][];
      -    keys(): Path[];
      -}
      -/**
      - * The class that processes patterns for a given path.
      - *
      - * Handles child entry filtering, and determining whether a path's
      - * directory contents must be read.
      - */
      -export declare class Processor {
      -    hasWalkedCache: HasWalkedCache;
      -    matches: MatchRecord;
      -    subwalks: SubWalks;
      -    patterns?: Pattern[];
      -    follow: boolean;
      -    dot: boolean;
      -    opts: GlobWalkerOpts;
      -    constructor(opts: GlobWalkerOpts, hasWalkedCache?: HasWalkedCache);
      -    processPatterns(target: Path, patterns: Pattern[]): this;
      -    subwalkTargets(): Path[];
      -    child(): Processor;
      -    filterEntries(parent: Path, entries: Path[]): Processor;
      -    testGlobstar(e: Path, pattern: Pattern, rest: Pattern | null, absolute: boolean): void;
      -    testRegExp(e: Path, p: MMRegExp, rest: Pattern | null, absolute: boolean): void;
      -    testString(e: Path, p: string, rest: Pattern | null, absolute: boolean): void;
      -}
      -//# sourceMappingURL=processor.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.d.ts.map
      deleted file mode 100644
      index ca6c63ca264b27..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"processor.d.ts","sourceRoot":"","sources":["../../../src/processor.ts"],"names":[],"mappings":"AAEA,OAAO,EAAY,QAAQ,EAAE,MAAM,WAAW,CAAA;AAC9C,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,OAAO,EAAa,OAAO,EAAE,MAAM,cAAc,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAE5C;;GAEG;AACH,qBAAa,cAAc;IACzB,KAAK,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAA;gBACnB,KAAK,GAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,CAAa;IAGvD,IAAI;IAGJ,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO;IAGxC,WAAW,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO;CAM3C;AAED;;;;GAIG;AACH,qBAAa,WAAW;IACtB,KAAK,EAAE,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAY;IACpC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO;IAMnD,OAAO,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE;CAOtC;AAED;;;GAGG;AACH,qBAAa,QAAQ;IACnB,KAAK,EAAE,GAAG,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC,CAAY;IACvC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO;IAWlC,GAAG,CAAC,MAAM,EAAE,IAAI,GAAG,OAAO,EAAE;IAS5B,OAAO,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC,EAAE;IAG9B,IAAI,IAAI,IAAI,EAAE;CAGf;AAED;;;;;GAKG;AACH,qBAAa,SAAS;IACpB,cAAc,EAAE,cAAc,CAAA;IAC9B,OAAO,cAAoB;IAC3B,QAAQ,WAAiB;IACzB,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAA;IACpB,MAAM,EAAE,OAAO,CAAA;IACf,GAAG,EAAE,OAAO,CAAA;IACZ,IAAI,EAAE,cAAc,CAAA;gBAER,IAAI,EAAE,cAAc,EAAE,cAAc,CAAC,EAAE,cAAc;IASjE,eAAe,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE;IAwGjD,cAAc,IAAI,IAAI,EAAE;IAIxB,KAAK;IAQL,aAAa,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,GAAG,SAAS;IAqBvD,YAAY,CACV,CAAC,EAAE,IAAI,EACP,OAAO,EAAE,OAAO,EAChB,IAAI,EAAE,OAAO,GAAG,IAAI,EACpB,QAAQ,EAAE,OAAO;IA8CnB,UAAU,CACR,CAAC,EAAE,IAAI,EACP,CAAC,EAAE,QAAQ,EACX,IAAI,EAAE,OAAO,GAAG,IAAI,EACpB,QAAQ,EAAE,OAAO;IAUnB,UAAU,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,GAAG,IAAI,EAAE,QAAQ,EAAE,OAAO;CASvE"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.js
      deleted file mode 100644
      index bd067e9b9033dc..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.js
      +++ /dev/null
      @@ -1,309 +0,0 @@
      -"use strict";
      -// synchronous utility for filtering entries and calculating subwalks
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.Processor = exports.SubWalks = exports.MatchRecord = exports.HasWalkedCache = void 0;
      -const minimatch_1 = require("minimatch");
      -/**
      - * A cache of which patterns have been processed for a given Path
      - */
      -class HasWalkedCache {
      -    store;
      -    constructor(store = new Map()) {
      -        this.store = store;
      -    }
      -    copy() {
      -        return new HasWalkedCache(new Map(this.store));
      -    }
      -    hasWalked(target, pattern) {
      -        return this.store.get(target.fullpath())?.has(pattern.globString());
      -    }
      -    storeWalked(target, pattern) {
      -        const fullpath = target.fullpath();
      -        const cached = this.store.get(fullpath);
      -        if (cached)
      -            cached.add(pattern.globString());
      -        else
      -            this.store.set(fullpath, new Set([pattern.globString()]));
      -    }
      -}
      -exports.HasWalkedCache = HasWalkedCache;
      -/**
      - * A record of which paths have been matched in a given walk step,
      - * and whether they only are considered a match if they are a directory,
      - * and whether their absolute or relative path should be returned.
      - */
      -class MatchRecord {
      -    store = new Map();
      -    add(target, absolute, ifDir) {
      -        const n = (absolute ? 2 : 0) | (ifDir ? 1 : 0);
      -        const current = this.store.get(target);
      -        this.store.set(target, current === undefined ? n : n & current);
      -    }
      -    // match, absolute, ifdir
      -    entries() {
      -        return [...this.store.entries()].map(([path, n]) => [
      -            path,
      -            !!(n & 2),
      -            !!(n & 1),
      -        ]);
      -    }
      -}
      -exports.MatchRecord = MatchRecord;
      -/**
      - * A collection of patterns that must be processed in a subsequent step
      - * for a given path.
      - */
      -class SubWalks {
      -    store = new Map();
      -    add(target, pattern) {
      -        if (!target.canReaddir()) {
      -            return;
      -        }
      -        const subs = this.store.get(target);
      -        if (subs) {
      -            if (!subs.find(p => p.globString() === pattern.globString())) {
      -                subs.push(pattern);
      -            }
      -        }
      -        else
      -            this.store.set(target, [pattern]);
      -    }
      -    get(target) {
      -        const subs = this.store.get(target);
      -        /* c8 ignore start */
      -        if (!subs) {
      -            throw new Error('attempting to walk unknown path');
      -        }
      -        /* c8 ignore stop */
      -        return subs;
      -    }
      -    entries() {
      -        return this.keys().map(k => [k, this.store.get(k)]);
      -    }
      -    keys() {
      -        return [...this.store.keys()].filter(t => t.canReaddir());
      -    }
      -}
      -exports.SubWalks = SubWalks;
      -/**
      - * The class that processes patterns for a given path.
      - *
      - * Handles child entry filtering, and determining whether a path's
      - * directory contents must be read.
      - */
      -class Processor {
      -    hasWalkedCache;
      -    matches = new MatchRecord();
      -    subwalks = new SubWalks();
      -    patterns;
      -    follow;
      -    dot;
      -    opts;
      -    constructor(opts, hasWalkedCache) {
      -        this.opts = opts;
      -        this.follow = !!opts.follow;
      -        this.dot = !!opts.dot;
      -        this.hasWalkedCache = hasWalkedCache
      -            ? hasWalkedCache.copy()
      -            : new HasWalkedCache();
      -    }
      -    processPatterns(target, patterns) {
      -        this.patterns = patterns;
      -        const processingSet = patterns.map(p => [target, p]);
      -        // map of paths to the magic-starting subwalks they need to walk
      -        // first item in patterns is the filter
      -        for (let [t, pattern] of processingSet) {
      -            this.hasWalkedCache.storeWalked(t, pattern);
      -            const root = pattern.root();
      -            const absolute = pattern.isAbsolute() && this.opts.absolute !== false;
      -            // start absolute patterns at root
      -            if (root) {
      -                t = t.resolve(root === '/' && this.opts.root !== undefined
      -                    ? this.opts.root
      -                    : root);
      -                const rest = pattern.rest();
      -                if (!rest) {
      -                    this.matches.add(t, true, false);
      -                    continue;
      -                }
      -                else {
      -                    pattern = rest;
      -                }
      -            }
      -            if (t.isENOENT())
      -                continue;
      -            let p;
      -            let rest;
      -            let changed = false;
      -            while (typeof (p = pattern.pattern()) === 'string' &&
      -                (rest = pattern.rest())) {
      -                const c = t.resolve(p);
      -                // we can be reasonably sure that .. is a readable dir
      -                if (c.isUnknown() && p !== '..')
      -                    break;
      -                t = c;
      -                pattern = rest;
      -                changed = true;
      -            }
      -            p = pattern.pattern();
      -            rest = pattern.rest();
      -            if (changed) {
      -                if (this.hasWalkedCache.hasWalked(t, pattern))
      -                    continue;
      -                this.hasWalkedCache.storeWalked(t, pattern);
      -            }
      -            // now we have either a final string for a known entry,
      -            // more strings for an unknown entry,
      -            // or a pattern starting with magic, mounted on t.
      -            if (typeof p === 'string') {
      -                // must be final entry
      -                if (!rest) {
      -                    const ifDir = p === '..' || p === '' || p === '.';
      -                    this.matches.add(t.resolve(p), absolute, ifDir);
      -                }
      -                else {
      -                    this.subwalks.add(t, pattern);
      -                }
      -                continue;
      -            }
      -            else if (p === minimatch_1.GLOBSTAR) {
      -                // if no rest, match and subwalk pattern
      -                // if rest, process rest and subwalk pattern
      -                // if it's a symlink, but we didn't get here by way of a
      -                // globstar match (meaning it's the first time THIS globstar
      -                // has traversed a symlink), then we follow it. Otherwise, stop.
      -                if (!t.isSymbolicLink() ||
      -                    this.follow ||
      -                    pattern.checkFollowGlobstar()) {
      -                    this.subwalks.add(t, pattern);
      -                }
      -                const rp = rest?.pattern();
      -                const rrest = rest?.rest();
      -                if (!rest || ((rp === '' || rp === '.') && !rrest)) {
      -                    // only HAS to be a dir if it ends in **/ or **/.
      -                    // but ending in ** will match files as well.
      -                    this.matches.add(t, absolute, rp === '' || rp === '.');
      -                }
      -                else {
      -                    if (rp === '..') {
      -                        // this would mean you're matching **/.. at the fs root,
      -                        // and no thanks, I'm not gonna test that specific case.
      -                        /* c8 ignore start */
      -                        const tp = t.parent || t;
      -                        /* c8 ignore stop */
      -                        if (!rrest)
      -                            this.matches.add(tp, absolute, true);
      -                        else if (!this.hasWalkedCache.hasWalked(tp, rrest)) {
      -                            this.subwalks.add(tp, rrest);
      -                        }
      -                    }
      -                }
      -            }
      -            else if (p instanceof RegExp) {
      -                this.subwalks.add(t, pattern);
      -            }
      -        }
      -        return this;
      -    }
      -    subwalkTargets() {
      -        return this.subwalks.keys();
      -    }
      -    child() {
      -        return new Processor(this.opts, this.hasWalkedCache);
      -    }
      -    // return a new Processor containing the subwalks for each
      -    // child entry, and a set of matches, and
      -    // a hasWalkedCache that's a copy of this one
      -    // then we're going to call
      -    filterEntries(parent, entries) {
      -        const patterns = this.subwalks.get(parent);
      -        // put matches and entry walks into the results processor
      -        const results = this.child();
      -        for (const e of entries) {
      -            for (const pattern of patterns) {
      -                const absolute = pattern.isAbsolute();
      -                const p = pattern.pattern();
      -                const rest = pattern.rest();
      -                if (p === minimatch_1.GLOBSTAR) {
      -                    results.testGlobstar(e, pattern, rest, absolute);
      -                }
      -                else if (p instanceof RegExp) {
      -                    results.testRegExp(e, p, rest, absolute);
      -                }
      -                else {
      -                    results.testString(e, p, rest, absolute);
      -                }
      -            }
      -        }
      -        return results;
      -    }
      -    testGlobstar(e, pattern, rest, absolute) {
      -        if (this.dot || !e.name.startsWith('.')) {
      -            if (!pattern.hasMore()) {
      -                this.matches.add(e, absolute, false);
      -            }
      -            if (e.canReaddir()) {
      -                // if we're in follow mode or it's not a symlink, just keep
      -                // testing the same pattern. If there's more after the globstar,
      -                // then this symlink consumes the globstar. If not, then we can
      -                // follow at most ONE symlink along the way, so we mark it, which
      -                // also checks to ensure that it wasn't already marked.
      -                if (this.follow || !e.isSymbolicLink()) {
      -                    this.subwalks.add(e, pattern);
      -                }
      -                else if (e.isSymbolicLink()) {
      -                    if (rest && pattern.checkFollowGlobstar()) {
      -                        this.subwalks.add(e, rest);
      -                    }
      -                    else if (pattern.markFollowGlobstar()) {
      -                        this.subwalks.add(e, pattern);
      -                    }
      -                }
      -            }
      -        }
      -        // if the NEXT thing matches this entry, then also add
      -        // the rest.
      -        if (rest) {
      -            const rp = rest.pattern();
      -            if (typeof rp === 'string' &&
      -                // dots and empty were handled already
      -                rp !== '..' &&
      -                rp !== '' &&
      -                rp !== '.') {
      -                this.testString(e, rp, rest.rest(), absolute);
      -            }
      -            else if (rp === '..') {
      -                /* c8 ignore start */
      -                const ep = e.parent || e;
      -                /* c8 ignore stop */
      -                this.subwalks.add(ep, rest);
      -            }
      -            else if (rp instanceof RegExp) {
      -                this.testRegExp(e, rp, rest.rest(), absolute);
      -            }
      -        }
      -    }
      -    testRegExp(e, p, rest, absolute) {
      -        if (!p.test(e.name))
      -            return;
      -        if (!rest) {
      -            this.matches.add(e, absolute, false);
      -        }
      -        else {
      -            this.subwalks.add(e, rest);
      -        }
      -    }
      -    testString(e, p, rest, absolute) {
      -        // should never happen?
      -        if (!e.isNamed(p))
      -            return;
      -        if (!rest) {
      -            this.matches.add(e, absolute, false);
      -        }
      -        else {
      -            this.subwalks.add(e, rest);
      -        }
      -    }
      -}
      -exports.Processor = Processor;
      -//# sourceMappingURL=processor.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.js.map
      deleted file mode 100644
      index bcbac1f723f983..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/processor.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"processor.js","sourceRoot":"","sources":["../../../src/processor.ts"],"names":[],"mappings":";AAAA,qEAAqE;;;AAErE,yCAA8C;AAK9C;;GAEG;AACH,MAAa,cAAc;IACzB,KAAK,CAA0B;IAC/B,YAAY,QAAkC,IAAI,GAAG,EAAE;QACrD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;IACpB,CAAC;IACD,IAAI;QACF,OAAO,IAAI,cAAc,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAA;IAChD,CAAC;IACD,SAAS,CAAC,MAAY,EAAE,OAAgB;QACtC,OAAO,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAA;IACrE,CAAC;IACD,WAAW,CAAC,MAAY,EAAE,OAAgB;QACxC,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAA;QAClC,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;QACvC,IAAI,MAAM;YAAE,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAA;;YACvC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,GAAG,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC,CAAA;IAChE,CAAC;CACF;AAjBD,wCAiBC;AAED;;;;GAIG;AACH,MAAa,WAAW;IACtB,KAAK,GAAsB,IAAI,GAAG,EAAE,CAAA;IACpC,GAAG,CAAC,MAAY,EAAE,QAAiB,EAAE,KAAc;QACjD,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QAC9C,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACtC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAA;IACjE,CAAC;IACD,yBAAyB;IACzB,OAAO;QACL,OAAO,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;YAClD,IAAI;YACJ,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACT,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;SACV,CAAC,CAAA;IACJ,CAAC;CACF;AAfD,kCAeC;AAED;;;GAGG;AACH,MAAa,QAAQ;IACnB,KAAK,GAAyB,IAAI,GAAG,EAAE,CAAA;IACvC,GAAG,CAAC,MAAY,EAAE,OAAgB;QAChC,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE;YACxB,OAAM;SACP;QACD,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACnC,IAAI,IAAI,EAAE;YACR,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,EAAE,KAAK,OAAO,CAAC,UAAU,EAAE,CAAC,EAAE;gBAC5D,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;aACnB;SACF;;YAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,CAAC,CAAA;IAC1C,CAAC;IACD,GAAG,CAAC,MAAY;QACd,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACnC,qBAAqB;QACrB,IAAI,CAAC,IAAI,EAAE;YACT,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAA;SACnD;QACD,oBAAoB;QACpB,OAAO,IAAI,CAAA;IACb,CAAC;IACD,OAAO;QACL,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAc,CAAC,CAAC,CAAA;IAClE,CAAC;IACD,IAAI;QACF,OAAO,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC,CAAA;IAC3D,CAAC;CACF;AA5BD,4BA4BC;AAED;;;;;GAKG;AACH,MAAa,SAAS;IACpB,cAAc,CAAgB;IAC9B,OAAO,GAAG,IAAI,WAAW,EAAE,CAAA;IAC3B,QAAQ,GAAG,IAAI,QAAQ,EAAE,CAAA;IACzB,QAAQ,CAAY;IACpB,MAAM,CAAS;IACf,GAAG,CAAS;IACZ,IAAI,CAAgB;IAEpB,YAAY,IAAoB,EAAE,cAA+B;QAC/D,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,CAAC,MAAM,CAAA;QAC3B,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAA;QACrB,IAAI,CAAC,cAAc,GAAG,cAAc;YAClC,CAAC,CAAC,cAAc,CAAC,IAAI,EAAE;YACvB,CAAC,CAAC,IAAI,cAAc,EAAE,CAAA;IAC1B,CAAC;IAED,eAAe,CAAC,MAAY,EAAE,QAAmB;QAC/C,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACxB,MAAM,aAAa,GAAsB,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA;QAEvE,gEAAgE;QAChE,uCAAuC;QAEvC,KAAK,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,IAAI,aAAa,EAAE;YACtC,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;YAE3C,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;YAC3B,MAAM,QAAQ,GAAG,OAAO,CAAC,UAAU,EAAE,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,KAAK,KAAK,CAAA;YAErE,kCAAkC;YAClC,IAAI,IAAI,EAAE;gBACR,CAAC,GAAG,CAAC,CAAC,OAAO,CACX,IAAI,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK,SAAS;oBAC1C,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI;oBAChB,CAAC,CAAC,IAAI,CACT,CAAA;gBACD,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;gBAC3B,IAAI,CAAC,IAAI,EAAE;oBACT,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,CAAA;oBAChC,SAAQ;iBACT;qBAAM;oBACL,OAAO,GAAG,IAAI,CAAA;iBACf;aACF;YAED,IAAI,CAAC,CAAC,QAAQ,EAAE;gBAAE,SAAQ;YAE1B,IAAI,CAAY,CAAA;YAChB,IAAI,IAAoB,CAAA;YACxB,IAAI,OAAO,GAAG,KAAK,CAAA;YACnB,OACE,OAAO,CAAC,CAAC,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC,KAAK,QAAQ;gBAC3C,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC,EACvB;gBACA,MAAM,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;gBACtB,sDAAsD;gBACtD,IAAI,CAAC,CAAC,SAAS,EAAE,IAAI,CAAC,KAAK,IAAI;oBAAE,MAAK;gBACtC,CAAC,GAAG,CAAC,CAAA;gBACL,OAAO,GAAG,IAAI,CAAA;gBACd,OAAO,GAAG,IAAI,CAAA;aACf;YACD,CAAC,GAAG,OAAO,CAAC,OAAO,EAAE,CAAA;YACrB,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;YACrB,IAAI,OAAO,EAAE;gBACX,IAAI,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC;oBAAE,SAAQ;gBACvD,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;aAC5C;YAED,uDAAuD;YACvD,qCAAqC;YACrC,kDAAkD;YAClD,IAAI,OAAO,CAAC,KAAK,QAAQ,EAAE;gBACzB,sBAAsB;gBACtB,IAAI,CAAC,IAAI,EAAE;oBACT,MAAM,KAAK,GAAG,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,GAAG,CAAA;oBACjD,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;iBAChD;qBAAM;oBACL,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;iBAC9B;gBACD,SAAQ;aACT;iBAAM,IAAI,CAAC,KAAK,oBAAQ,EAAE;gBACzB,wCAAwC;gBACxC,4CAA4C;gBAC5C,wDAAwD;gBACxD,4DAA4D;gBAC5D,gEAAgE;gBAChE,IACE,CAAC,CAAC,CAAC,cAAc,EAAE;oBACnB,IAAI,CAAC,MAAM;oBACX,OAAO,CAAC,mBAAmB,EAAE,EAC7B;oBACA,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;iBAC9B;gBACD,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,CAAA;gBAC1B,MAAM,KAAK,GAAG,IAAI,EAAE,IAAI,EAAE,CAAA;gBAC1B,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;oBAClD,iDAAiD;oBACjD,6CAA6C;oBAC7C,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,GAAG,CAAC,CAAA;iBACvD;qBAAM;oBACL,IAAI,EAAE,KAAK,IAAI,EAAE;wBACf,wDAAwD;wBACxD,wDAAwD;wBACxD,qBAAqB;wBACrB,MAAM,EAAE,GAAG,CAAC,CAAC,MAAM,IAAI,CAAC,CAAA;wBACxB,oBAAoB;wBACpB,IAAI,CAAC,KAAK;4BAAE,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAA;6BAC3C,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,EAAE,EAAE,KAAK,CAAC,EAAE;4BAClD,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,EAAE,KAAK,CAAC,CAAA;yBAC7B;qBACF;iBACF;aACF;iBAAM,IAAI,CAAC,YAAY,MAAM,EAAE;gBAC9B,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;aAC9B;SACF;QAED,OAAO,IAAI,CAAA;IACb,CAAC;IAED,cAAc;QACZ,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAA;IAC7B,CAAC;IAED,KAAK;QACH,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAA;IACtD,CAAC;IAED,0DAA0D;IAC1D,yCAAyC;IACzC,6CAA6C;IAC7C,2BAA2B;IAC3B,aAAa,CAAC,MAAY,EAAE,OAAe;QACzC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QAC1C,yDAAyD;QACzD,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,EAAE,CAAA;QAC5B,KAAK,MAAM,CAAC,IAAI,OAAO,EAAE;YACvB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC9B,MAAM,QAAQ,GAAG,OAAO,CAAC,UAAU,EAAE,CAAA;gBACrC,MAAM,CAAC,GAAG,OAAO,CAAC,OAAO,EAAE,CAAA;gBAC3B,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;gBAC3B,IAAI,CAAC,KAAK,oBAAQ,EAAE;oBAClB,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAA;iBACjD;qBAAM,IAAI,CAAC,YAAY,MAAM,EAAE;oBAC9B,OAAO,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAA;iBACzC;qBAAM;oBACL,OAAO,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAA;iBACzC;aACF;SACF;QACD,OAAO,OAAO,CAAA;IAChB,CAAC;IAED,YAAY,CACV,CAAO,EACP,OAAgB,EAChB,IAAoB,EACpB,QAAiB;QAEjB,IAAI,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;YACvC,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;gBACtB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;aACrC;YACD,IAAI,CAAC,CAAC,UAAU,EAAE,EAAE;gBAClB,2DAA2D;gBAC3D,gEAAgE;gBAChE,+DAA+D;gBAC/D,iEAAiE;gBACjE,uDAAuD;gBACvD,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC,CAAC,CAAC,cAAc,EAAE,EAAE;oBACtC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;iBAC9B;qBAAM,IAAI,CAAC,CAAC,cAAc,EAAE,EAAE;oBAC7B,IAAI,IAAI,IAAI,OAAO,CAAC,mBAAmB,EAAE,EAAE;wBACzC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;qBAC3B;yBAAM,IAAI,OAAO,CAAC,kBAAkB,EAAE,EAAE;wBACvC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;qBAC9B;iBACF;aACF;SACF;QACD,sDAAsD;QACtD,YAAY;QACZ,IAAI,IAAI,EAAE;YACR,MAAM,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,CAAA;YACzB,IACE,OAAO,EAAE,KAAK,QAAQ;gBACtB,sCAAsC;gBACtC,EAAE,KAAK,IAAI;gBACX,EAAE,KAAK,EAAE;gBACT,EAAE,KAAK,GAAG,EACV;gBACA,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,EAAE,QAAQ,CAAC,CAAA;aAC9C;iBAAM,IAAI,EAAE,KAAK,IAAI,EAAE;gBACtB,qBAAqB;gBACrB,MAAM,EAAE,GAAG,CAAC,CAAC,MAAM,IAAI,CAAC,CAAA;gBACxB,oBAAoB;gBACpB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,EAAE,IAAI,CAAC,CAAA;aAC5B;iBAAM,IAAI,EAAE,YAAY,MAAM,EAAE;gBAC/B,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,EAAE,QAAQ,CAAC,CAAA;aAC9C;SACF;IACH,CAAC;IAED,UAAU,CACR,CAAO,EACP,CAAW,EACX,IAAoB,EACpB,QAAiB;QAEjB,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC;YAAE,OAAM;QAC3B,IAAI,CAAC,IAAI,EAAE;YACT,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;SACrC;aAAM;YACL,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;SAC3B;IACH,CAAC;IAED,UAAU,CAAC,CAAO,EAAE,CAAS,EAAE,IAAoB,EAAE,QAAiB;QACpE,uBAAuB;QACvB,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;YAAE,OAAM;QACzB,IAAI,CAAC,IAAI,EAAE;YACT,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;SACrC;aAAM;YACL,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;SAC3B;IACH,CAAC;CACF;AApOD,8BAoOC","sourcesContent":["// synchronous utility for filtering entries and calculating subwalks\n\nimport { GLOBSTAR, MMRegExp } from 'minimatch'\nimport { Path } from 'path-scurry'\nimport { MMPattern, Pattern } from './pattern.js'\nimport { GlobWalkerOpts } from './walker.js'\n\n/**\n * A cache of which patterns have been processed for a given Path\n */\nexport class HasWalkedCache {\n  store: Map>\n  constructor(store: Map> = new Map()) {\n    this.store = store\n  }\n  copy() {\n    return new HasWalkedCache(new Map(this.store))\n  }\n  hasWalked(target: Path, pattern: Pattern) {\n    return this.store.get(target.fullpath())?.has(pattern.globString())\n  }\n  storeWalked(target: Path, pattern: Pattern) {\n    const fullpath = target.fullpath()\n    const cached = this.store.get(fullpath)\n    if (cached) cached.add(pattern.globString())\n    else this.store.set(fullpath, new Set([pattern.globString()]))\n  }\n}\n\n/**\n * A record of which paths have been matched in a given walk step,\n * and whether they only are considered a match if they are a directory,\n * and whether their absolute or relative path should be returned.\n */\nexport class MatchRecord {\n  store: Map = new Map()\n  add(target: Path, absolute: boolean, ifDir: boolean) {\n    const n = (absolute ? 2 : 0) | (ifDir ? 1 : 0)\n    const current = this.store.get(target)\n    this.store.set(target, current === undefined ? n : n & current)\n  }\n  // match, absolute, ifdir\n  entries(): [Path, boolean, boolean][] {\n    return [...this.store.entries()].map(([path, n]) => [\n      path,\n      !!(n & 2),\n      !!(n & 1),\n    ])\n  }\n}\n\n/**\n * A collection of patterns that must be processed in a subsequent step\n * for a given path.\n */\nexport class SubWalks {\n  store: Map = new Map()\n  add(target: Path, pattern: Pattern) {\n    if (!target.canReaddir()) {\n      return\n    }\n    const subs = this.store.get(target)\n    if (subs) {\n      if (!subs.find(p => p.globString() === pattern.globString())) {\n        subs.push(pattern)\n      }\n    } else this.store.set(target, [pattern])\n  }\n  get(target: Path): Pattern[] {\n    const subs = this.store.get(target)\n    /* c8 ignore start */\n    if (!subs) {\n      throw new Error('attempting to walk unknown path')\n    }\n    /* c8 ignore stop */\n    return subs\n  }\n  entries(): [Path, Pattern[]][] {\n    return this.keys().map(k => [k, this.store.get(k) as Pattern[]])\n  }\n  keys(): Path[] {\n    return [...this.store.keys()].filter(t => t.canReaddir())\n  }\n}\n\n/**\n * The class that processes patterns for a given path.\n *\n * Handles child entry filtering, and determining whether a path's\n * directory contents must be read.\n */\nexport class Processor {\n  hasWalkedCache: HasWalkedCache\n  matches = new MatchRecord()\n  subwalks = new SubWalks()\n  patterns?: Pattern[]\n  follow: boolean\n  dot: boolean\n  opts: GlobWalkerOpts\n\n  constructor(opts: GlobWalkerOpts, hasWalkedCache?: HasWalkedCache) {\n    this.opts = opts\n    this.follow = !!opts.follow\n    this.dot = !!opts.dot\n    this.hasWalkedCache = hasWalkedCache\n      ? hasWalkedCache.copy()\n      : new HasWalkedCache()\n  }\n\n  processPatterns(target: Path, patterns: Pattern[]) {\n    this.patterns = patterns\n    const processingSet: [Path, Pattern][] = patterns.map(p => [target, p])\n\n    // map of paths to the magic-starting subwalks they need to walk\n    // first item in patterns is the filter\n\n    for (let [t, pattern] of processingSet) {\n      this.hasWalkedCache.storeWalked(t, pattern)\n\n      const root = pattern.root()\n      const absolute = pattern.isAbsolute() && this.opts.absolute !== false\n\n      // start absolute patterns at root\n      if (root) {\n        t = t.resolve(\n          root === '/' && this.opts.root !== undefined\n            ? this.opts.root\n            : root\n        )\n        const rest = pattern.rest()\n        if (!rest) {\n          this.matches.add(t, true, false)\n          continue\n        } else {\n          pattern = rest\n        }\n      }\n\n      if (t.isENOENT()) continue\n\n      let p: MMPattern\n      let rest: Pattern | null\n      let changed = false\n      while (\n        typeof (p = pattern.pattern()) === 'string' &&\n        (rest = pattern.rest())\n      ) {\n        const c = t.resolve(p)\n        // we can be reasonably sure that .. is a readable dir\n        if (c.isUnknown() && p !== '..') break\n        t = c\n        pattern = rest\n        changed = true\n      }\n      p = pattern.pattern()\n      rest = pattern.rest()\n      if (changed) {\n        if (this.hasWalkedCache.hasWalked(t, pattern)) continue\n        this.hasWalkedCache.storeWalked(t, pattern)\n      }\n\n      // now we have either a final string for a known entry,\n      // more strings for an unknown entry,\n      // or a pattern starting with magic, mounted on t.\n      if (typeof p === 'string') {\n        // must be final entry\n        if (!rest) {\n          const ifDir = p === '..' || p === '' || p === '.'\n          this.matches.add(t.resolve(p), absolute, ifDir)\n        } else {\n          this.subwalks.add(t, pattern)\n        }\n        continue\n      } else if (p === GLOBSTAR) {\n        // if no rest, match and subwalk pattern\n        // if rest, process rest and subwalk pattern\n        // if it's a symlink, but we didn't get here by way of a\n        // globstar match (meaning it's the first time THIS globstar\n        // has traversed a symlink), then we follow it. Otherwise, stop.\n        if (\n          !t.isSymbolicLink() ||\n          this.follow ||\n          pattern.checkFollowGlobstar()\n        ) {\n          this.subwalks.add(t, pattern)\n        }\n        const rp = rest?.pattern()\n        const rrest = rest?.rest()\n        if (!rest || ((rp === '' || rp === '.') && !rrest)) {\n          // only HAS to be a dir if it ends in **/ or **/.\n          // but ending in ** will match files as well.\n          this.matches.add(t, absolute, rp === '' || rp === '.')\n        } else {\n          if (rp === '..') {\n            // this would mean you're matching **/.. at the fs root,\n            // and no thanks, I'm not gonna test that specific case.\n            /* c8 ignore start */\n            const tp = t.parent || t\n            /* c8 ignore stop */\n            if (!rrest) this.matches.add(tp, absolute, true)\n            else if (!this.hasWalkedCache.hasWalked(tp, rrest)) {\n              this.subwalks.add(tp, rrest)\n            }\n          }\n        }\n      } else if (p instanceof RegExp) {\n        this.subwalks.add(t, pattern)\n      }\n    }\n\n    return this\n  }\n\n  subwalkTargets(): Path[] {\n    return this.subwalks.keys()\n  }\n\n  child() {\n    return new Processor(this.opts, this.hasWalkedCache)\n  }\n\n  // return a new Processor containing the subwalks for each\n  // child entry, and a set of matches, and\n  // a hasWalkedCache that's a copy of this one\n  // then we're going to call\n  filterEntries(parent: Path, entries: Path[]): Processor {\n    const patterns = this.subwalks.get(parent)\n    // put matches and entry walks into the results processor\n    const results = this.child()\n    for (const e of entries) {\n      for (const pattern of patterns) {\n        const absolute = pattern.isAbsolute()\n        const p = pattern.pattern()\n        const rest = pattern.rest()\n        if (p === GLOBSTAR) {\n          results.testGlobstar(e, pattern, rest, absolute)\n        } else if (p instanceof RegExp) {\n          results.testRegExp(e, p, rest, absolute)\n        } else {\n          results.testString(e, p, rest, absolute)\n        }\n      }\n    }\n    return results\n  }\n\n  testGlobstar(\n    e: Path,\n    pattern: Pattern,\n    rest: Pattern | null,\n    absolute: boolean\n  ) {\n    if (this.dot || !e.name.startsWith('.')) {\n      if (!pattern.hasMore()) {\n        this.matches.add(e, absolute, false)\n      }\n      if (e.canReaddir()) {\n        // if we're in follow mode or it's not a symlink, just keep\n        // testing the same pattern. If there's more after the globstar,\n        // then this symlink consumes the globstar. If not, then we can\n        // follow at most ONE symlink along the way, so we mark it, which\n        // also checks to ensure that it wasn't already marked.\n        if (this.follow || !e.isSymbolicLink()) {\n          this.subwalks.add(e, pattern)\n        } else if (e.isSymbolicLink()) {\n          if (rest && pattern.checkFollowGlobstar()) {\n            this.subwalks.add(e, rest)\n          } else if (pattern.markFollowGlobstar()) {\n            this.subwalks.add(e, pattern)\n          }\n        }\n      }\n    }\n    // if the NEXT thing matches this entry, then also add\n    // the rest.\n    if (rest) {\n      const rp = rest.pattern()\n      if (\n        typeof rp === 'string' &&\n        // dots and empty were handled already\n        rp !== '..' &&\n        rp !== '' &&\n        rp !== '.'\n      ) {\n        this.testString(e, rp, rest.rest(), absolute)\n      } else if (rp === '..') {\n        /* c8 ignore start */\n        const ep = e.parent || e\n        /* c8 ignore stop */\n        this.subwalks.add(ep, rest)\n      } else if (rp instanceof RegExp) {\n        this.testRegExp(e, rp, rest.rest(), absolute)\n      }\n    }\n  }\n\n  testRegExp(\n    e: Path,\n    p: MMRegExp,\n    rest: Pattern | null,\n    absolute: boolean\n  ) {\n    if (!p.test(e.name)) return\n    if (!rest) {\n      this.matches.add(e, absolute, false)\n    } else {\n      this.subwalks.add(e, rest)\n    }\n  }\n\n  testString(e: Path, p: string, rest: Pattern | null, absolute: boolean) {\n    // should never happen?\n    if (!e.isNamed(p)) return\n    if (!rest) {\n      this.matches.add(e, absolute, false)\n    } else {\n      this.subwalks.add(e, rest)\n    }\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.d.ts
      deleted file mode 100644
      index 5c1a0414971b3a..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.d.ts
      +++ /dev/null
      @@ -1,96 +0,0 @@
      -/// 
      -/**
      - * Single-use utility classes to provide functionality to the {@link Glob}
      - * methods.
      - *
      - * @module
      - */
      -import { Minipass } from 'minipass';
      -import { Path } from 'path-scurry';
      -import { IgnoreLike } from './ignore.js';
      -import { Pattern } from './pattern.js';
      -import { Processor } from './processor.js';
      -export interface GlobWalkerOpts {
      -    absolute?: boolean;
      -    allowWindowsEscape?: boolean;
      -    cwd?: string | URL;
      -    dot?: boolean;
      -    dotRelative?: boolean;
      -    follow?: boolean;
      -    ignore?: string | string[] | IgnoreLike;
      -    mark?: boolean;
      -    matchBase?: boolean;
      -    maxDepth?: number;
      -    nobrace?: boolean;
      -    nocase?: boolean;
      -    nodir?: boolean;
      -    noext?: boolean;
      -    noglobstar?: boolean;
      -    platform?: NodeJS.Platform;
      -    posix?: boolean;
      -    realpath?: boolean;
      -    root?: string;
      -    stat?: boolean;
      -    signal?: AbortSignal;
      -    windowsPathsNoEscape?: boolean;
      -    withFileTypes?: boolean;
      -}
      -export type GWOFileTypesTrue = GlobWalkerOpts & {
      -    withFileTypes: true;
      -};
      -export type GWOFileTypesFalse = GlobWalkerOpts & {
      -    withFileTypes: false;
      -};
      -export type GWOFileTypesUnset = GlobWalkerOpts & {
      -    withFileTypes?: undefined;
      -};
      -export type Result = O extends GWOFileTypesTrue ? Path : O extends GWOFileTypesFalse ? string : O extends GWOFileTypesUnset ? string : Path | string;
      -export type Matches = O extends GWOFileTypesTrue ? Set : O extends GWOFileTypesFalse ? Set : O extends GWOFileTypesUnset ? Set : Set;
      -export type MatchStream = O extends GWOFileTypesTrue ? Minipass : O extends GWOFileTypesFalse ? Minipass : O extends GWOFileTypesUnset ? Minipass : Minipass;
      -/**
      - * basic walking utilities that all the glob walker types use
      - */
      -export declare abstract class GlobUtil {
      -    #private;
      -    path: Path;
      -    patterns: Pattern[];
      -    opts: O;
      -    seen: Set;
      -    paused: boolean;
      -    aborted: boolean;
      -    signal?: AbortSignal;
      -    maxDepth: number;
      -    constructor(patterns: Pattern[], path: Path, opts: O);
      -    pause(): void;
      -    resume(): void;
      -    onResume(fn: () => any): void;
      -    matchCheck(e: Path, ifDir: boolean): Promise;
      -    matchCheckTest(e: Path | undefined, ifDir: boolean): Path | undefined;
      -    matchCheckSync(e: Path, ifDir: boolean): Path | undefined;
      -    abstract matchEmit(p: Result): void;
      -    abstract matchEmit(p: string | Path): void;
      -    matchFinish(e: Path, absolute: boolean): void;
      -    match(e: Path, absolute: boolean, ifDir: boolean): Promise;
      -    matchSync(e: Path, absolute: boolean, ifDir: boolean): void;
      -    walkCB(target: Path, patterns: Pattern[], cb: () => any): void;
      -    walkCB2(target: Path, patterns: Pattern[], processor: Processor, cb: () => any): any;
      -    walkCB3(target: Path, entries: Path[], processor: Processor, cb: () => any): void;
      -    walkCBSync(target: Path, patterns: Pattern[], cb: () => any): void;
      -    walkCB2Sync(target: Path, patterns: Pattern[], processor: Processor, cb: () => any): any;
      -    walkCB3Sync(target: Path, entries: Path[], processor: Processor, cb: () => any): void;
      -}
      -export declare class GlobWalker extends GlobUtil {
      -    matches: O extends GWOFileTypesTrue ? Set : O extends GWOFileTypesFalse ? Set : O extends GWOFileTypesUnset ? Set : Set;
      -    constructor(patterns: Pattern[], path: Path, opts: O);
      -    matchEmit(e: Result): void;
      -    walk(): Promise>;
      -    walkSync(): Matches;
      -}
      -export declare class GlobStream extends GlobUtil {
      -    results: O extends GWOFileTypesTrue ? Minipass : O extends GWOFileTypesFalse ? Minipass : O extends GWOFileTypesUnset ? Minipass : Minipass;
      -    constructor(patterns: Pattern[], path: Path, opts: O);
      -    matchEmit(e: Result): void;
      -    stream(): MatchStream;
      -    streamSync(): MatchStream;
      -}
      -//# sourceMappingURL=walker.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.d.ts.map
      deleted file mode 100644
      index dda062358f1998..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"walker.d.ts","sourceRoot":"","sources":["../../../src/walker.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;AACH,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAA;AACnC,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,OAAO,EAAU,UAAU,EAAE,MAAM,aAAa,CAAA;AAOhD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAE1C,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,GAAG,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;IAClB,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,UAAU,CAAA;IACvC,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,SAAS,CAAC,EAAE,OAAO,CAAA;IAGnB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC,QAAQ,CAAA;IAC1B,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,MAAM,CAAC,EAAE,WAAW,CAAA;IACpB,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,aAAa,CAAC,EAAE,OAAO,CAAA;CACxB;AAED,MAAM,MAAM,gBAAgB,GAAG,cAAc,GAAG;IAC9C,aAAa,EAAE,IAAI,CAAA;CACpB,CAAA;AACD,MAAM,MAAM,iBAAiB,GAAG,cAAc,GAAG;IAC/C,aAAa,EAAE,KAAK,CAAA;CACrB,CAAA;AACD,MAAM,MAAM,iBAAiB,GAAG,cAAc,GAAG;IAC/C,aAAa,CAAC,EAAE,SAAS,CAAA;CAC1B,CAAA;AAED,MAAM,MAAM,MAAM,CAAC,CAAC,SAAS,cAAc,IAAI,CAAC,SAAS,gBAAgB,GACrE,IAAI,GACJ,CAAC,SAAS,iBAAiB,GAC3B,MAAM,GACN,CAAC,SAAS,iBAAiB,GAC3B,MAAM,GACN,IAAI,GAAG,MAAM,CAAA;AAEjB,MAAM,MAAM,OAAO,CAAC,CAAC,SAAS,cAAc,IAAI,CAAC,SAAS,gBAAgB,GACtE,GAAG,CAAC,IAAI,CAAC,GACT,CAAC,SAAS,iBAAiB,GAC3B,GAAG,CAAC,MAAM,CAAC,GACX,CAAC,SAAS,iBAAiB,GAC3B,GAAG,CAAC,MAAM,CAAC,GACX,GAAG,CAAC,IAAI,GAAG,MAAM,CAAC,CAAA;AAEtB,MAAM,MAAM,WAAW,CAAC,CAAC,SAAS,cAAc,IAC9C,CAAC,SAAS,gBAAgB,GACtB,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,GACpB,CAAC,SAAS,iBAAiB,GAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,GACxB,CAAC,SAAS,iBAAiB,GAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,GACxB,QAAQ,CAAC,IAAI,GAAG,MAAM,EAAE,IAAI,GAAG,MAAM,CAAC,CAAA;AAY5C;;GAEG;AACH,8BAAsB,QAAQ,CAAC,CAAC,SAAS,cAAc,GAAG,cAAc;;IACtE,IAAI,EAAE,IAAI,CAAA;IACV,QAAQ,EAAE,OAAO,EAAE,CAAA;IACnB,IAAI,EAAE,CAAC,CAAA;IACP,IAAI,EAAE,GAAG,CAAC,IAAI,CAAC,CAAkB;IACjC,MAAM,EAAE,OAAO,CAAQ;IACvB,OAAO,EAAE,OAAO,CAAQ;IAIxB,MAAM,CAAC,EAAE,WAAW,CAAA;IACpB,QAAQ,EAAE,MAAM,CAAA;gBAEJ,QAAQ,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IA8BpD,KAAK;IAGL,MAAM;IAUN,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG;IAahB,UAAU,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,GAAG,SAAS,CAAC;IAYpE,cAAc,CAAC,CAAC,EAAE,IAAI,GAAG,SAAS,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS;IAUrE,cAAc,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS;IAYzD,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI;IACtC,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAE1C,WAAW,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO;IAsBhC,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAKtE,SAAS,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI;IAK3D,MAAM,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG;IAOvD,OAAO,CACL,MAAM,EAAE,IAAI,EACZ,QAAQ,EAAE,OAAO,EAAE,EACnB,SAAS,EAAE,SAAS,EACpB,EAAE,EAAE,MAAM,GAAG;IA2Cf,OAAO,CACL,MAAM,EAAE,IAAI,EACZ,OAAO,EAAE,IAAI,EAAE,EACf,SAAS,EAAE,SAAS,EACpB,EAAE,EAAE,MAAM,GAAG;IAsBf,UAAU,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG;IAO3D,WAAW,CACT,MAAM,EAAE,IAAI,EACZ,QAAQ,EAAE,OAAO,EAAE,EACnB,SAAS,EAAE,SAAS,EACpB,EAAE,EAAE,MAAM,GAAG;IAqCf,WAAW,CACT,MAAM,EAAE,IAAI,EACZ,OAAO,EAAE,IAAI,EAAE,EACf,SAAS,EAAE,SAAS,EACpB,EAAE,EAAE,MAAM,GAAG;CAoBhB;AAED,qBAAa,UAAU,CACrB,CAAC,SAAS,cAAc,GAAG,cAAc,CACzC,SAAQ,QAAQ,CAAC,CAAC,CAAC;IACnB,OAAO,EAAE,CAAC,SAAS,gBAAgB,GAC/B,GAAG,CAAC,IAAI,CAAC,GACT,CAAC,SAAS,iBAAiB,GAC3B,GAAG,CAAC,MAAM,CAAC,GACX,CAAC,SAAS,iBAAiB,GAC3B,GAAG,CAAC,MAAM,CAAC,GACX,GAAG,CAAC,IAAI,GAAG,MAAM,CAAC,CAAA;gBAEV,QAAQ,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAKpD,SAAS,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI;IAKvB,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAiBjC,QAAQ,IAAI,OAAO,CAAC,CAAC,CAAC;CAWvB;AAED,qBAAa,UAAU,CACrB,CAAC,SAAS,cAAc,GAAG,cAAc,CACzC,SAAQ,QAAQ,CAAC,CAAC,CAAC;IACnB,OAAO,EAAE,CAAC,SAAS,gBAAgB,GAC/B,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,GACpB,CAAC,SAAS,iBAAiB,GAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,GACxB,CAAC,SAAS,iBAAiB,GAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,GACxB,QAAQ,CAAC,IAAI,GAAG,MAAM,EAAE,IAAI,GAAG,MAAM,CAAC,CAAA;gBAE9B,QAAQ,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAUpD,SAAS,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI;IAM7B,MAAM,IAAI,WAAW,CAAC,CAAC,CAAC;IAYxB,UAAU,IAAI,WAAW,CAAC,CAAC,CAAC;CAO7B"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.js
      deleted file mode 100644
      index 9651ce1164016c..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.js
      +++ /dev/null
      @@ -1,358 +0,0 @@
      -"use strict";
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.GlobStream = exports.GlobWalker = exports.GlobUtil = void 0;
      -/**
      - * Single-use utility classes to provide functionality to the {@link Glob}
      - * methods.
      - *
      - * @module
      - */
      -const minipass_1 = require("minipass");
      -const ignore_js_1 = require("./ignore.js");
      -const processor_js_1 = require("./processor.js");
      -const makeIgnore = (ignore, opts) => typeof ignore === 'string'
      -    ? new ignore_js_1.Ignore([ignore], opts)
      -    : Array.isArray(ignore)
      -        ? new ignore_js_1.Ignore(ignore, opts)
      -        : ignore;
      -/**
      - * basic walking utilities that all the glob walker types use
      - */
      -class GlobUtil {
      -    path;
      -    patterns;
      -    opts;
      -    seen = new Set();
      -    paused = false;
      -    aborted = false;
      -    #onResume = [];
      -    #ignore;
      -    #sep;
      -    signal;
      -    maxDepth;
      -    constructor(patterns, path, opts) {
      -        this.patterns = patterns;
      -        this.path = path;
      -        this.opts = opts;
      -        this.#sep = !opts.posix && opts.platform === 'win32' ? '\\' : '/';
      -        if (opts.ignore) {
      -            this.#ignore = makeIgnore(opts.ignore, opts);
      -        }
      -        // ignore, always set with maxDepth, but it's optional on the
      -        // GlobOptions type
      -        /* c8 ignore start */
      -        this.maxDepth = opts.maxDepth || Infinity;
      -        /* c8 ignore stop */
      -        if (opts.signal) {
      -            this.signal = opts.signal;
      -            this.signal.addEventListener('abort', () => {
      -                this.#onResume.length = 0;
      -            });
      -        }
      -    }
      -    #ignored(path) {
      -        return this.seen.has(path) || !!this.#ignore?.ignored?.(path);
      -    }
      -    #childrenIgnored(path) {
      -        return !!this.#ignore?.childrenIgnored?.(path);
      -    }
      -    // backpressure mechanism
      -    pause() {
      -        this.paused = true;
      -    }
      -    resume() {
      -        /* c8 ignore start */
      -        if (this.signal?.aborted)
      -            return;
      -        /* c8 ignore stop */
      -        this.paused = false;
      -        let fn = undefined;
      -        while (!this.paused && (fn = this.#onResume.shift())) {
      -            fn();
      -        }
      -    }
      -    onResume(fn) {
      -        if (this.signal?.aborted)
      -            return;
      -        /* c8 ignore start */
      -        if (!this.paused) {
      -            fn();
      -        }
      -        else {
      -            /* c8 ignore stop */
      -            this.#onResume.push(fn);
      -        }
      -    }
      -    // do the requisite realpath/stat checking, and return the path
      -    // to add or undefined to filter it out.
      -    async matchCheck(e, ifDir) {
      -        if (ifDir && this.opts.nodir)
      -            return undefined;
      -        let rpc;
      -        if (this.opts.realpath) {
      -            rpc = e.realpathCached() || (await e.realpath());
      -            if (!rpc)
      -                return undefined;
      -            e = rpc;
      -        }
      -        const needStat = e.isUnknown() || this.opts.stat;
      -        return this.matchCheckTest(needStat ? await e.lstat() : e, ifDir);
      -    }
      -    matchCheckTest(e, ifDir) {
      -        return e &&
      -            (this.maxDepth === Infinity || e.depth() <= this.maxDepth) &&
      -            (!ifDir || e.canReaddir()) &&
      -            (!this.opts.nodir || !e.isDirectory()) &&
      -            !this.#ignored(e)
      -            ? e
      -            : undefined;
      -    }
      -    matchCheckSync(e, ifDir) {
      -        if (ifDir && this.opts.nodir)
      -            return undefined;
      -        let rpc;
      -        if (this.opts.realpath) {
      -            rpc = e.realpathCached() || e.realpathSync();
      -            if (!rpc)
      -                return undefined;
      -            e = rpc;
      -        }
      -        const needStat = e.isUnknown() || this.opts.stat;
      -        return this.matchCheckTest(needStat ? e.lstatSync() : e, ifDir);
      -    }
      -    matchFinish(e, absolute) {
      -        if (this.#ignored(e))
      -            return;
      -        const abs = this.opts.absolute === undefined ? absolute : this.opts.absolute;
      -        this.seen.add(e);
      -        const mark = this.opts.mark && e.isDirectory() ? this.#sep : '';
      -        // ok, we have what we need!
      -        if (this.opts.withFileTypes) {
      -            this.matchEmit(e);
      -        }
      -        else if (abs) {
      -            const abs = this.opts.posix ? e.fullpathPosix() : e.fullpath();
      -            this.matchEmit(abs + mark);
      -        }
      -        else {
      -            const rel = this.opts.posix ? e.relativePosix() : e.relative();
      -            const pre = this.opts.dotRelative && !rel.startsWith('..' + this.#sep)
      -                ? '.' + this.#sep
      -                : '';
      -            this.matchEmit(!rel ? '.' + mark : pre + rel + mark);
      -        }
      -    }
      -    async match(e, absolute, ifDir) {
      -        const p = await this.matchCheck(e, ifDir);
      -        if (p)
      -            this.matchFinish(p, absolute);
      -    }
      -    matchSync(e, absolute, ifDir) {
      -        const p = this.matchCheckSync(e, ifDir);
      -        if (p)
      -            this.matchFinish(p, absolute);
      -    }
      -    walkCB(target, patterns, cb) {
      -        /* c8 ignore start */
      -        if (this.signal?.aborted)
      -            cb();
      -        /* c8 ignore stop */
      -        this.walkCB2(target, patterns, new processor_js_1.Processor(this.opts), cb);
      -    }
      -    walkCB2(target, patterns, processor, cb) {
      -        if (this.#childrenIgnored(target))
      -            return cb();
      -        if (this.signal?.aborted)
      -            cb();
      -        if (this.paused) {
      -            this.onResume(() => this.walkCB2(target, patterns, processor, cb));
      -            return;
      -        }
      -        processor.processPatterns(target, patterns);
      -        // done processing.  all of the above is sync, can be abstracted out.
      -        // subwalks is a map of paths to the entry filters they need
      -        // matches is a map of paths to [absolute, ifDir] tuples.
      -        let tasks = 1;
      -        const next = () => {
      -            if (--tasks === 0)
      -                cb();
      -        };
      -        for (const [m, absolute, ifDir] of processor.matches.entries()) {
      -            if (this.#ignored(m))
      -                continue;
      -            tasks++;
      -            this.match(m, absolute, ifDir).then(() => next());
      -        }
      -        for (const t of processor.subwalkTargets()) {
      -            if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {
      -                continue;
      -            }
      -            tasks++;
      -            const childrenCached = t.readdirCached();
      -            if (t.calledReaddir())
      -                this.walkCB3(t, childrenCached, processor, next);
      -            else {
      -                t.readdirCB((_, entries) => this.walkCB3(t, entries, processor, next), true);
      -            }
      -        }
      -        next();
      -    }
      -    walkCB3(target, entries, processor, cb) {
      -        processor = processor.filterEntries(target, entries);
      -        let tasks = 1;
      -        const next = () => {
      -            if (--tasks === 0)
      -                cb();
      -        };
      -        for (const [m, absolute, ifDir] of processor.matches.entries()) {
      -            if (this.#ignored(m))
      -                continue;
      -            tasks++;
      -            this.match(m, absolute, ifDir).then(() => next());
      -        }
      -        for (const [target, patterns] of processor.subwalks.entries()) {
      -            tasks++;
      -            this.walkCB2(target, patterns, processor.child(), next);
      -        }
      -        next();
      -    }
      -    walkCBSync(target, patterns, cb) {
      -        /* c8 ignore start */
      -        if (this.signal?.aborted)
      -            cb();
      -        /* c8 ignore stop */
      -        this.walkCB2Sync(target, patterns, new processor_js_1.Processor(this.opts), cb);
      -    }
      -    walkCB2Sync(target, patterns, processor, cb) {
      -        if (this.#childrenIgnored(target))
      -            return cb();
      -        if (this.signal?.aborted)
      -            cb();
      -        if (this.paused) {
      -            this.onResume(() => this.walkCB2Sync(target, patterns, processor, cb));
      -            return;
      -        }
      -        processor.processPatterns(target, patterns);
      -        // done processing.  all of the above is sync, can be abstracted out.
      -        // subwalks is a map of paths to the entry filters they need
      -        // matches is a map of paths to [absolute, ifDir] tuples.
      -        let tasks = 1;
      -        const next = () => {
      -            if (--tasks === 0)
      -                cb();
      -        };
      -        for (const [m, absolute, ifDir] of processor.matches.entries()) {
      -            if (this.#ignored(m))
      -                continue;
      -            this.matchSync(m, absolute, ifDir);
      -        }
      -        for (const t of processor.subwalkTargets()) {
      -            if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {
      -                continue;
      -            }
      -            tasks++;
      -            const children = t.readdirSync();
      -            this.walkCB3Sync(t, children, processor, next);
      -        }
      -        next();
      -    }
      -    walkCB3Sync(target, entries, processor, cb) {
      -        processor = processor.filterEntries(target, entries);
      -        let tasks = 1;
      -        const next = () => {
      -            if (--tasks === 0)
      -                cb();
      -        };
      -        for (const [m, absolute, ifDir] of processor.matches.entries()) {
      -            if (this.#ignored(m))
      -                continue;
      -            this.matchSync(m, absolute, ifDir);
      -        }
      -        for (const [target, patterns] of processor.subwalks.entries()) {
      -            tasks++;
      -            this.walkCB2Sync(target, patterns, processor.child(), next);
      -        }
      -        next();
      -    }
      -}
      -exports.GlobUtil = GlobUtil;
      -class GlobWalker extends GlobUtil {
      -    matches;
      -    constructor(patterns, path, opts) {
      -        super(patterns, path, opts);
      -        this.matches = new Set();
      -    }
      -    matchEmit(e) {
      -        this.matches.add(e);
      -    }
      -    async walk() {
      -        if (this.signal?.aborted)
      -            throw this.signal.reason;
      -        if (this.path.isUnknown()) {
      -            await this.path.lstat();
      -        }
      -        await new Promise((res, rej) => {
      -            this.walkCB(this.path, this.patterns, () => {
      -                if (this.signal?.aborted) {
      -                    rej(this.signal.reason);
      -                }
      -                else {
      -                    res(this.matches);
      -                }
      -            });
      -        });
      -        return this.matches;
      -    }
      -    walkSync() {
      -        if (this.signal?.aborted)
      -            throw this.signal.reason;
      -        if (this.path.isUnknown()) {
      -            this.path.lstatSync();
      -        }
      -        // nothing for the callback to do, because this never pauses
      -        this.walkCBSync(this.path, this.patterns, () => {
      -            if (this.signal?.aborted)
      -                throw this.signal.reason;
      -        });
      -        return this.matches;
      -    }
      -}
      -exports.GlobWalker = GlobWalker;
      -class GlobStream extends GlobUtil {
      -    results;
      -    constructor(patterns, path, opts) {
      -        super(patterns, path, opts);
      -        this.results = new minipass_1.Minipass({
      -            signal: this.signal,
      -            objectMode: true,
      -        });
      -        this.results.on('drain', () => this.resume());
      -        this.results.on('resume', () => this.resume());
      -    }
      -    matchEmit(e) {
      -        this.results.write(e);
      -        if (!this.results.flowing)
      -            this.pause();
      -    }
      -    stream() {
      -        const target = this.path;
      -        if (target.isUnknown()) {
      -            target.lstat().then(() => {
      -                this.walkCB(target, this.patterns, () => this.results.end());
      -            });
      -        }
      -        else {
      -            this.walkCB(target, this.patterns, () => this.results.end());
      -        }
      -        return this.results;
      -    }
      -    streamSync() {
      -        if (this.path.isUnknown()) {
      -            this.path.lstatSync();
      -        }
      -        this.walkCBSync(this.path, this.patterns, () => this.results.end());
      -        return this.results;
      -    }
      -}
      -exports.GlobStream = GlobStream;
      -//# sourceMappingURL=walker.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.js.map
      deleted file mode 100644
      index a7af398939ae48..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/cjs/src/walker.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"walker.js","sourceRoot":"","sources":["../../../src/walker.ts"],"names":[],"mappings":";;;AAAA;;;;;GAKG;AACH,uCAAmC;AAEnC,2CAAgD;AAQhD,iDAA0C;AAiE1C,MAAM,UAAU,GAAG,CACjB,MAAsC,EACtC,IAAoB,EACR,EAAE,CACd,OAAO,MAAM,KAAK,QAAQ;IACxB,CAAC,CAAC,IAAI,kBAAM,CAAC,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC;IAC5B,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;QACvB,CAAC,CAAC,IAAI,kBAAM,CAAC,MAAM,EAAE,IAAI,CAAC;QAC1B,CAAC,CAAC,MAAM,CAAA;AAEZ;;GAEG;AACH,MAAsB,QAAQ;IAC5B,IAAI,CAAM;IACV,QAAQ,CAAW;IACnB,IAAI,CAAG;IACP,IAAI,GAAc,IAAI,GAAG,EAAQ,CAAA;IACjC,MAAM,GAAY,KAAK,CAAA;IACvB,OAAO,GAAY,KAAK,CAAA;IACxB,SAAS,GAAkB,EAAE,CAAA;IAC7B,OAAO,CAAa;IACpB,IAAI,CAAY;IAChB,MAAM,CAAc;IACpB,QAAQ,CAAQ;IAGhB,YAAY,QAAmB,EAAE,IAAU,EAAE,IAAO;QAClD,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACxB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,IAAI,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAA;QACjE,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,OAAO,GAAG,UAAU,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;SAC7C;QACD,6DAA6D;QAC7D,mBAAmB;QACnB,qBAAqB;QACrB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,QAAQ,CAAA;QACzC,oBAAoB;QACpB,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;YACzB,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE;gBACzC,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAA;YAC3B,CAAC,CAAC,CAAA;SACH;IACH,CAAC;IAED,QAAQ,CAAC,IAAU;QACjB,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,CAAA;IAC/D,CAAC;IACD,gBAAgB,CAAC,IAAU;QACzB,OAAO,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,eAAe,EAAE,CAAC,IAAI,CAAC,CAAA;IAChD,CAAC;IAED,yBAAyB;IACzB,KAAK;QACH,IAAI,CAAC,MAAM,GAAG,IAAI,CAAA;IACpB,CAAC;IACD,MAAM;QACJ,qBAAqB;QACrB,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,OAAM;QAChC,oBAAoB;QACpB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;QACnB,IAAI,EAAE,GAA4B,SAAS,CAAA;QAC3C,OAAO,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,CAAC,EAAE;YACpD,EAAE,EAAE,CAAA;SACL;IACH,CAAC;IACD,QAAQ,CAAC,EAAa;QACpB,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,OAAM;QAChC,qBAAqB;QACrB,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE;YAChB,EAAE,EAAE,CAAA;SACL;aAAM;YACL,oBAAoB;YACpB,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;SACxB;IACH,CAAC;IAED,+DAA+D;IAC/D,wCAAwC;IACxC,KAAK,CAAC,UAAU,CAAC,CAAO,EAAE,KAAc;QACtC,IAAI,KAAK,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK;YAAE,OAAO,SAAS,CAAA;QAC9C,IAAI,GAAqB,CAAA;QACzB,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;YACtB,GAAG,GAAG,CAAC,CAAC,cAAc,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAA;YAChD,IAAI,CAAC,GAAG;gBAAE,OAAO,SAAS,CAAA;YAC1B,CAAC,GAAG,GAAG,CAAA;SACR;QACD,MAAM,QAAQ,GAAG,CAAC,CAAC,SAAS,EAAE,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;QAChD,OAAO,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;IACnE,CAAC;IAED,cAAc,CAAC,CAAmB,EAAE,KAAc;QAChD,OAAO,CAAC;YACN,CAAC,IAAI,CAAC,QAAQ,KAAK,QAAQ,IAAI,CAAC,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC,QAAQ,CAAC;YAC1D,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,UAAU,EAAE,CAAC;YAC1B,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YACtC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;YACjB,CAAC,CAAC,CAAC;YACH,CAAC,CAAC,SAAS,CAAA;IACf,CAAC;IAED,cAAc,CAAC,CAAO,EAAE,KAAc;QACpC,IAAI,KAAK,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK;YAAE,OAAO,SAAS,CAAA;QAC9C,IAAI,GAAqB,CAAA;QACzB,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;YACtB,GAAG,GAAG,CAAC,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC,YAAY,EAAE,CAAA;YAC5C,IAAI,CAAC,GAAG;gBAAE,OAAO,SAAS,CAAA;YAC1B,CAAC,GAAG,GAAG,CAAA;SACR;QACD,MAAM,QAAQ,GAAG,CAAC,CAAC,SAAS,EAAE,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;QAChD,OAAO,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;IACjE,CAAC;IAKD,WAAW,CAAC,CAAO,EAAE,QAAiB;QACpC,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;YAAE,OAAM;QAC5B,MAAM,GAAG,GACP,IAAI,CAAC,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAA;QAClE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;QAChB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAA;QAC/D,4BAA4B;QAC5B,IAAI,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;YAC3B,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAA;SAClB;aAAM,IAAI,GAAG,EAAE;YACd,MAAM,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAA;YAC9D,IAAI,CAAC,SAAS,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;SAC3B;aAAM;YACL,MAAM,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAA;YAC9D,MAAM,GAAG,GACP,IAAI,CAAC,IAAI,CAAC,WAAW,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;gBACxD,CAAC,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI;gBACjB,CAAC,CAAC,EAAE,CAAA;YACR,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,GAAG,IAAI,CAAC,CAAA;SACrD;IACH,CAAC;IAED,KAAK,CAAC,KAAK,CAAC,CAAO,EAAE,QAAiB,EAAE,KAAc;QACpD,MAAM,CAAC,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;QACzC,IAAI,CAAC;YAAE,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAA;IACtC,CAAC;IAED,SAAS,CAAC,CAAO,EAAE,QAAiB,EAAE,KAAc;QAClD,MAAM,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;QACvC,IAAI,CAAC;YAAE,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAA;IACtC,CAAC;IAED,MAAM,CAAC,MAAY,EAAE,QAAmB,EAAE,EAAa;QACrD,qBAAqB;QACrB,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,EAAE,EAAE,CAAA;QAC9B,oBAAoB;QACpB,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,wBAAS,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;IAC9D,CAAC;IAED,OAAO,CACL,MAAY,EACZ,QAAmB,EACnB,SAAoB,EACpB,EAAa;QAEb,IAAI,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;YAAE,OAAO,EAAE,EAAE,CAAA;QAC9C,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,EAAE,EAAE,CAAA;QAC9B,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC,CAAA;YAClE,OAAM;SACP;QACD,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;QAE3C,qEAAqE;QACrE,4DAA4D;QAC5D,yDAAyD;QACzD,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,MAAM,IAAI,GAAG,GAAG,EAAE;YAChB,IAAI,EAAE,KAAK,KAAK,CAAC;gBAAE,EAAE,EAAE,CAAA;QACzB,CAAC,CAAA;QAED,KAAK,MAAM,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAC9D,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAAE,SAAQ;YAC9B,KAAK,EAAE,CAAA;YACP,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,CAAA;SAClD;QAED,KAAK,MAAM,CAAC,IAAI,SAAS,CAAC,cAAc,EAAE,EAAE;YAC1C,IAAI,IAAI,CAAC,QAAQ,KAAK,QAAQ,IAAI,CAAC,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC,QAAQ,EAAE;gBAC5D,SAAQ;aACT;YACD,KAAK,EAAE,CAAA;YACP,MAAM,cAAc,GAAG,CAAC,CAAC,aAAa,EAAE,CAAA;YACxC,IAAI,CAAC,CAAC,aAAa,EAAE;gBACnB,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,cAAc,EAAE,SAAS,EAAE,IAAI,CAAC,CAAA;iBAC7C;gBACH,CAAC,CAAC,SAAS,CACT,CAAC,CAAC,EAAE,OAAO,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,IAAI,CAAC,EACzD,IAAI,CACL,CAAA;aACF;SACF;QAED,IAAI,EAAE,CAAA;IACR,CAAC;IAED,OAAO,CACL,MAAY,EACZ,OAAe,EACf,SAAoB,EACpB,EAAa;QAEb,SAAS,GAAG,SAAS,CAAC,aAAa,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;QAEpD,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,MAAM,IAAI,GAAG,GAAG,EAAE;YAChB,IAAI,EAAE,KAAK,KAAK,CAAC;gBAAE,EAAE,EAAE,CAAA;QACzB,CAAC,CAAA;QAED,KAAK,MAAM,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAC9D,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAAE,SAAQ;YAC9B,KAAK,EAAE,CAAA;YACP,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,CAAA;SAClD;QACD,KAAK,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE;YAC7D,KAAK,EAAE,CAAA;YACP,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,CAAC,KAAK,EAAE,EAAE,IAAI,CAAC,CAAA;SACxD;QAED,IAAI,EAAE,CAAA;IACR,CAAC;IAED,UAAU,CAAC,MAAY,EAAE,QAAmB,EAAE,EAAa;QACzD,qBAAqB;QACrB,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,EAAE,EAAE,CAAA;QAC9B,oBAAoB;QACpB,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,wBAAS,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;IAClE,CAAC;IAED,WAAW,CACT,MAAY,EACZ,QAAmB,EACnB,SAAoB,EACpB,EAAa;QAEb,IAAI,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;YAAE,OAAO,EAAE,EAAE,CAAA;QAC9C,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,EAAE,EAAE,CAAA;QAC9B,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CACjB,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,CAAC,CAClD,CAAA;YACD,OAAM;SACP;QACD,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;QAE3C,qEAAqE;QACrE,4DAA4D;QAC5D,yDAAyD;QACzD,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,MAAM,IAAI,GAAG,GAAG,EAAE;YAChB,IAAI,EAAE,KAAK,KAAK,CAAC;gBAAE,EAAE,EAAE,CAAA;QACzB,CAAC,CAAA;QAED,KAAK,MAAM,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAC9D,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAAE,SAAQ;YAC9B,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;SACnC;QAED,KAAK,MAAM,CAAC,IAAI,SAAS,CAAC,cAAc,EAAE,EAAE;YAC1C,IAAI,IAAI,CAAC,QAAQ,KAAK,QAAQ,IAAI,CAAC,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC,QAAQ,EAAE;gBAC5D,SAAQ;aACT;YACD,KAAK,EAAE,CAAA;YACP,MAAM,QAAQ,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;YAChC,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,IAAI,CAAC,CAAA;SAC/C;QAED,IAAI,EAAE,CAAA;IACR,CAAC;IAED,WAAW,CACT,MAAY,EACZ,OAAe,EACf,SAAoB,EACpB,EAAa;QAEb,SAAS,GAAG,SAAS,CAAC,aAAa,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;QAEpD,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,MAAM,IAAI,GAAG,GAAG,EAAE;YAChB,IAAI,EAAE,KAAK,KAAK,CAAC;gBAAE,EAAE,EAAE,CAAA;QACzB,CAAC,CAAA;QAED,KAAK,MAAM,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAC9D,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAAE,SAAQ;YAC9B,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;SACnC;QACD,KAAK,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE;YAC7D,KAAK,EAAE,CAAA;YACP,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,CAAC,KAAK,EAAE,EAAE,IAAI,CAAC,CAAA;SAC5D;QAED,IAAI,EAAE,CAAA;IACR,CAAC;CACF;AAlSD,4BAkSC;AAED,MAAa,UAEX,SAAQ,QAAW;IACnB,OAAO,CAMe;IAEtB,YAAY,QAAmB,EAAE,IAAU,EAAE,IAAO;QAClD,KAAK,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;QAC3B,IAAI,CAAC,OAAO,GAAG,IAAI,GAAG,EAAgB,CAAA;IACxC,CAAC;IAGD,SAAS,CAAC,CAAgB;QACxB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACrB,CAAC;IAED,KAAK,CAAC,IAAI;QACR,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAA;QAClD,IAAI,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE;YACzB,MAAM,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAA;SACxB;QACD,MAAM,IAAI,OAAO,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;YAC7B,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE;gBACzC,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO,EAAE;oBACxB,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;iBACxB;qBAAM;oBACL,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;iBAClB;YACH,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;IAED,QAAQ;QACN,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAA;QAClD,IAAI,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE;YACzB,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,CAAA;SACtB;QACD,4DAA4D;QAC5D,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE;YAC7C,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;gBAAE,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAA;QACpD,CAAC,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;CACF;AAjDD,gCAiDC;AAED,MAAa,UAEX,SAAQ,QAAW;IACnB,OAAO,CAMmC;IAE1C,YAAY,QAAmB,EAAE,IAAU,EAAE,IAAO;QAClD,KAAK,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;QAC3B,IAAI,CAAC,OAAO,GAAG,IAAI,mBAAQ,CAAC;YAC1B,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,UAAU,EAAE,IAAI;SACjB,CAAmB,CAAA;QACpB,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAA;QAC7C,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAA;IAChD,CAAC;IAGD,SAAS,CAAC,CAAgB;QACxB,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;QACrB,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO;YAAE,IAAI,CAAC,KAAK,EAAE,CAAA;IACzC,CAAC;IAED,MAAM;QACJ,MAAM,MAAM,GAAG,IAAI,CAAC,IAAI,CAAA;QACxB,IAAI,MAAM,CAAC,SAAS,EAAE,EAAE;YACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvB,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAA;YAC9D,CAAC,CAAC,CAAA;SACH;aAAM;YACL,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAA;SAC7D;QACD,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;IAED,UAAU;QACR,IAAI,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE;YACzB,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,CAAA;SACtB;QACD,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAA;QACnE,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;CACF;AA9CD,gCA8CC","sourcesContent":["/**\n * Single-use utility classes to provide functionality to the {@link Glob}\n * methods.\n *\n * @module\n */\nimport { Minipass } from 'minipass'\nimport { Path } from 'path-scurry'\nimport { Ignore, IgnoreLike } from './ignore.js'\n\n// XXX can we somehow make it so that it NEVER processes a given path more than\n// once, enough that the match set tracking is no longer needed?  that'd speed\n// things up a lot.  Or maybe bring back nounique, and skip it in that case?\n\n// a single minimatch set entry with 1 or more parts\nimport { Pattern } from './pattern.js'\nimport { Processor } from './processor.js'\n\nexport interface GlobWalkerOpts {\n  absolute?: boolean\n  allowWindowsEscape?: boolean\n  cwd?: string | URL\n  dot?: boolean\n  dotRelative?: boolean\n  follow?: boolean\n  ignore?: string | string[] | IgnoreLike\n  mark?: boolean\n  matchBase?: boolean\n  // Note: maxDepth here means \"maximum actual Path.depth()\",\n  // not \"maximum depth beyond cwd\"\n  maxDepth?: number\n  nobrace?: boolean\n  nocase?: boolean\n  nodir?: boolean\n  noext?: boolean\n  noglobstar?: boolean\n  platform?: NodeJS.Platform\n  posix?: boolean\n  realpath?: boolean\n  root?: string\n  stat?: boolean\n  signal?: AbortSignal\n  windowsPathsNoEscape?: boolean\n  withFileTypes?: boolean\n}\n\nexport type GWOFileTypesTrue = GlobWalkerOpts & {\n  withFileTypes: true\n}\nexport type GWOFileTypesFalse = GlobWalkerOpts & {\n  withFileTypes: false\n}\nexport type GWOFileTypesUnset = GlobWalkerOpts & {\n  withFileTypes?: undefined\n}\n\nexport type Result = O extends GWOFileTypesTrue\n  ? Path\n  : O extends GWOFileTypesFalse\n  ? string\n  : O extends GWOFileTypesUnset\n  ? string\n  : Path | string\n\nexport type Matches = O extends GWOFileTypesTrue\n  ? Set\n  : O extends GWOFileTypesFalse\n  ? Set\n  : O extends GWOFileTypesUnset\n  ? Set\n  : Set\n\nexport type MatchStream =\n  O extends GWOFileTypesTrue\n    ? Minipass\n    : O extends GWOFileTypesFalse\n    ? Minipass\n    : O extends GWOFileTypesUnset\n    ? Minipass\n    : Minipass\n\nconst makeIgnore = (\n  ignore: string | string[] | IgnoreLike,\n  opts: GlobWalkerOpts\n): IgnoreLike =>\n  typeof ignore === 'string'\n    ? new Ignore([ignore], opts)\n    : Array.isArray(ignore)\n    ? new Ignore(ignore, opts)\n    : ignore\n\n/**\n * basic walking utilities that all the glob walker types use\n */\nexport abstract class GlobUtil {\n  path: Path\n  patterns: Pattern[]\n  opts: O\n  seen: Set = new Set()\n  paused: boolean = false\n  aborted: boolean = false\n  #onResume: (() => any)[] = []\n  #ignore?: IgnoreLike\n  #sep: '\\\\' | '/'\n  signal?: AbortSignal\n  maxDepth: number\n\n  constructor(patterns: Pattern[], path: Path, opts: O)\n  constructor(patterns: Pattern[], path: Path, opts: O) {\n    this.patterns = patterns\n    this.path = path\n    this.opts = opts\n    this.#sep = !opts.posix && opts.platform === 'win32' ? '\\\\' : '/'\n    if (opts.ignore) {\n      this.#ignore = makeIgnore(opts.ignore, opts)\n    }\n    // ignore, always set with maxDepth, but it's optional on the\n    // GlobOptions type\n    /* c8 ignore start */\n    this.maxDepth = opts.maxDepth || Infinity\n    /* c8 ignore stop */\n    if (opts.signal) {\n      this.signal = opts.signal\n      this.signal.addEventListener('abort', () => {\n        this.#onResume.length = 0\n      })\n    }\n  }\n\n  #ignored(path: Path): boolean {\n    return this.seen.has(path) || !!this.#ignore?.ignored?.(path)\n  }\n  #childrenIgnored(path: Path): boolean {\n    return !!this.#ignore?.childrenIgnored?.(path)\n  }\n\n  // backpressure mechanism\n  pause() {\n    this.paused = true\n  }\n  resume() {\n    /* c8 ignore start */\n    if (this.signal?.aborted) return\n    /* c8 ignore stop */\n    this.paused = false\n    let fn: (() => any) | undefined = undefined\n    while (!this.paused && (fn = this.#onResume.shift())) {\n      fn()\n    }\n  }\n  onResume(fn: () => any) {\n    if (this.signal?.aborted) return\n    /* c8 ignore start */\n    if (!this.paused) {\n      fn()\n    } else {\n      /* c8 ignore stop */\n      this.#onResume.push(fn)\n    }\n  }\n\n  // do the requisite realpath/stat checking, and return the path\n  // to add or undefined to filter it out.\n  async matchCheck(e: Path, ifDir: boolean): Promise {\n    if (ifDir && this.opts.nodir) return undefined\n    let rpc: Path | undefined\n    if (this.opts.realpath) {\n      rpc = e.realpathCached() || (await e.realpath())\n      if (!rpc) return undefined\n      e = rpc\n    }\n    const needStat = e.isUnknown() || this.opts.stat\n    return this.matchCheckTest(needStat ? await e.lstat() : e, ifDir)\n  }\n\n  matchCheckTest(e: Path | undefined, ifDir: boolean): Path | undefined {\n    return e &&\n      (this.maxDepth === Infinity || e.depth() <= this.maxDepth) &&\n      (!ifDir || e.canReaddir()) &&\n      (!this.opts.nodir || !e.isDirectory()) &&\n      !this.#ignored(e)\n      ? e\n      : undefined\n  }\n\n  matchCheckSync(e: Path, ifDir: boolean): Path | undefined {\n    if (ifDir && this.opts.nodir) return undefined\n    let rpc: Path | undefined\n    if (this.opts.realpath) {\n      rpc = e.realpathCached() || e.realpathSync()\n      if (!rpc) return undefined\n      e = rpc\n    }\n    const needStat = e.isUnknown() || this.opts.stat\n    return this.matchCheckTest(needStat ? e.lstatSync() : e, ifDir)\n  }\n\n  abstract matchEmit(p: Result): void\n  abstract matchEmit(p: string | Path): void\n\n  matchFinish(e: Path, absolute: boolean) {\n    if (this.#ignored(e)) return\n    const abs =\n      this.opts.absolute === undefined ? absolute : this.opts.absolute\n    this.seen.add(e)\n    const mark = this.opts.mark && e.isDirectory() ? this.#sep : ''\n    // ok, we have what we need!\n    if (this.opts.withFileTypes) {\n      this.matchEmit(e)\n    } else if (abs) {\n      const abs = this.opts.posix ? e.fullpathPosix() : e.fullpath()\n      this.matchEmit(abs + mark)\n    } else {\n      const rel = this.opts.posix ? e.relativePosix() : e.relative()\n      const pre =\n        this.opts.dotRelative && !rel.startsWith('..' + this.#sep)\n          ? '.' + this.#sep\n          : ''\n      this.matchEmit(!rel ? '.' + mark : pre + rel + mark)\n    }\n  }\n\n  async match(e: Path, absolute: boolean, ifDir: boolean): Promise {\n    const p = await this.matchCheck(e, ifDir)\n    if (p) this.matchFinish(p, absolute)\n  }\n\n  matchSync(e: Path, absolute: boolean, ifDir: boolean): void {\n    const p = this.matchCheckSync(e, ifDir)\n    if (p) this.matchFinish(p, absolute)\n  }\n\n  walkCB(target: Path, patterns: Pattern[], cb: () => any) {\n    /* c8 ignore start */\n    if (this.signal?.aborted) cb()\n    /* c8 ignore stop */\n    this.walkCB2(target, patterns, new Processor(this.opts), cb)\n  }\n\n  walkCB2(\n    target: Path,\n    patterns: Pattern[],\n    processor: Processor,\n    cb: () => any\n  ) {\n    if (this.#childrenIgnored(target)) return cb()\n    if (this.signal?.aborted) cb()\n    if (this.paused) {\n      this.onResume(() => this.walkCB2(target, patterns, processor, cb))\n      return\n    }\n    processor.processPatterns(target, patterns)\n\n    // done processing.  all of the above is sync, can be abstracted out.\n    // subwalks is a map of paths to the entry filters they need\n    // matches is a map of paths to [absolute, ifDir] tuples.\n    let tasks = 1\n    const next = () => {\n      if (--tasks === 0) cb()\n    }\n\n    for (const [m, absolute, ifDir] of processor.matches.entries()) {\n      if (this.#ignored(m)) continue\n      tasks++\n      this.match(m, absolute, ifDir).then(() => next())\n    }\n\n    for (const t of processor.subwalkTargets()) {\n      if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {\n        continue\n      }\n      tasks++\n      const childrenCached = t.readdirCached()\n      if (t.calledReaddir())\n        this.walkCB3(t, childrenCached, processor, next)\n      else {\n        t.readdirCB(\n          (_, entries) => this.walkCB3(t, entries, processor, next),\n          true\n        )\n      }\n    }\n\n    next()\n  }\n\n  walkCB3(\n    target: Path,\n    entries: Path[],\n    processor: Processor,\n    cb: () => any\n  ) {\n    processor = processor.filterEntries(target, entries)\n\n    let tasks = 1\n    const next = () => {\n      if (--tasks === 0) cb()\n    }\n\n    for (const [m, absolute, ifDir] of processor.matches.entries()) {\n      if (this.#ignored(m)) continue\n      tasks++\n      this.match(m, absolute, ifDir).then(() => next())\n    }\n    for (const [target, patterns] of processor.subwalks.entries()) {\n      tasks++\n      this.walkCB2(target, patterns, processor.child(), next)\n    }\n\n    next()\n  }\n\n  walkCBSync(target: Path, patterns: Pattern[], cb: () => any) {\n    /* c8 ignore start */\n    if (this.signal?.aborted) cb()\n    /* c8 ignore stop */\n    this.walkCB2Sync(target, patterns, new Processor(this.opts), cb)\n  }\n\n  walkCB2Sync(\n    target: Path,\n    patterns: Pattern[],\n    processor: Processor,\n    cb: () => any\n  ) {\n    if (this.#childrenIgnored(target)) return cb()\n    if (this.signal?.aborted) cb()\n    if (this.paused) {\n      this.onResume(() =>\n        this.walkCB2Sync(target, patterns, processor, cb)\n      )\n      return\n    }\n    processor.processPatterns(target, patterns)\n\n    // done processing.  all of the above is sync, can be abstracted out.\n    // subwalks is a map of paths to the entry filters they need\n    // matches is a map of paths to [absolute, ifDir] tuples.\n    let tasks = 1\n    const next = () => {\n      if (--tasks === 0) cb()\n    }\n\n    for (const [m, absolute, ifDir] of processor.matches.entries()) {\n      if (this.#ignored(m)) continue\n      this.matchSync(m, absolute, ifDir)\n    }\n\n    for (const t of processor.subwalkTargets()) {\n      if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {\n        continue\n      }\n      tasks++\n      const children = t.readdirSync()\n      this.walkCB3Sync(t, children, processor, next)\n    }\n\n    next()\n  }\n\n  walkCB3Sync(\n    target: Path,\n    entries: Path[],\n    processor: Processor,\n    cb: () => any\n  ) {\n    processor = processor.filterEntries(target, entries)\n\n    let tasks = 1\n    const next = () => {\n      if (--tasks === 0) cb()\n    }\n\n    for (const [m, absolute, ifDir] of processor.matches.entries()) {\n      if (this.#ignored(m)) continue\n      this.matchSync(m, absolute, ifDir)\n    }\n    for (const [target, patterns] of processor.subwalks.entries()) {\n      tasks++\n      this.walkCB2Sync(target, patterns, processor.child(), next)\n    }\n\n    next()\n  }\n}\n\nexport class GlobWalker<\n  O extends GlobWalkerOpts = GlobWalkerOpts\n> extends GlobUtil {\n  matches: O extends GWOFileTypesTrue\n    ? Set\n    : O extends GWOFileTypesFalse\n    ? Set\n    : O extends GWOFileTypesUnset\n    ? Set\n    : Set\n\n  constructor(patterns: Pattern[], path: Path, opts: O) {\n    super(patterns, path, opts)\n    this.matches = new Set() as Matches\n  }\n\n  matchEmit(e: Result): void\n  matchEmit(e: Path | string): void {\n    this.matches.add(e)\n  }\n\n  async walk(): Promise> {\n    if (this.signal?.aborted) throw this.signal.reason\n    if (this.path.isUnknown()) {\n      await this.path.lstat()\n    }\n    await new Promise((res, rej) => {\n      this.walkCB(this.path, this.patterns, () => {\n        if (this.signal?.aborted) {\n          rej(this.signal.reason)\n        } else {\n          res(this.matches)\n        }\n      })\n    })\n    return this.matches\n  }\n\n  walkSync(): Matches {\n    if (this.signal?.aborted) throw this.signal.reason\n    if (this.path.isUnknown()) {\n      this.path.lstatSync()\n    }\n    // nothing for the callback to do, because this never pauses\n    this.walkCBSync(this.path, this.patterns, () => {\n      if (this.signal?.aborted) throw this.signal.reason\n    })\n    return this.matches\n  }\n}\n\nexport class GlobStream<\n  O extends GlobWalkerOpts = GlobWalkerOpts\n> extends GlobUtil {\n  results: O extends GWOFileTypesTrue\n    ? Minipass\n    : O extends GWOFileTypesFalse\n    ? Minipass\n    : O extends GWOFileTypesUnset\n    ? Minipass\n    : Minipass\n\n  constructor(patterns: Pattern[], path: Path, opts: O) {\n    super(patterns, path, opts)\n    this.results = new Minipass({\n      signal: this.signal,\n      objectMode: true,\n    }) as MatchStream\n    this.results.on('drain', () => this.resume())\n    this.results.on('resume', () => this.resume())\n  }\n\n  matchEmit(e: Result): void\n  matchEmit(e: Path | string): void {\n    this.results.write(e)\n    if (!this.results.flowing) this.pause()\n  }\n\n  stream(): MatchStream {\n    const target = this.path\n    if (target.isUnknown()) {\n      target.lstat().then(() => {\n        this.walkCB(target, this.patterns, () => this.results.end())\n      })\n    } else {\n      this.walkCB(target, this.patterns, () => this.results.end())\n    }\n    return this.results\n  }\n\n  streamSync(): MatchStream {\n    if (this.path.isUnknown()) {\n      this.path.lstatSync()\n    }\n    this.walkCBSync(this.path, this.patterns, () => this.results.end())\n    return this.results\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.d.ts
      deleted file mode 100644
      index a8b3da7722b652..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.d.ts
      +++ /dev/null
      @@ -1,344 +0,0 @@
      -/// 
      -import { Minimatch } from 'minimatch';
      -import { Minipass } from 'minipass';
      -import { FSOption, Path, PathScurry } from 'path-scurry';
      -import { IgnoreLike } from './ignore.js';
      -import { Pattern } from './pattern.js';
      -export type MatchSet = Minimatch['set'];
      -export type GlobParts = Exclude;
      -/**
      - * A `GlobOptions` object may be provided to any of the exported methods, and
      - * must be provided to the `Glob` constructor.
      - *
      - * All options are optional, boolean, and false by default, unless otherwise
      - * noted.
      - *
      - * All resolved options are added to the Glob object as properties.
      - *
      - * If you are running many `glob` operations, you can pass a Glob object as the
      - * `options` argument to a subsequent operation to share the previously loaded
      - * cache.
      - */
      -export interface GlobOptions {
      -    /**
      -     * Set to `true` to always receive absolute paths for
      -     * matched files. Set to `false` to always return relative paths.
      -     *
      -     * When this option is not set, absolute paths are returned for patterns
      -     * that are absolute, and otherwise paths are returned that are relative
      -     * to the `cwd` setting.
      -     *
      -     * This does _not_ make an extra system call to get
      -     * the realpath, it only does string path resolution.
      -     *
      -     * Conflicts with {@link withFileTypes}
      -     */
      -    absolute?: boolean;
      -    /**
      -     * Set to false to enable {@link windowsPathsNoEscape}
      -     *
      -     * @deprecated
      -     */
      -    allowWindowsEscape?: boolean;
      -    /**
      -     * The current working directory in which to search. Defaults to
      -     * `process.cwd()`.
      -     *
      -     * May be eiher a string path or a `file://` URL object or string.
      -     */
      -    cwd?: string | URL;
      -    /**
      -     * Include `.dot` files in normal matches and `globstar`
      -     * matches. Note that an explicit dot in a portion of the pattern
      -     * will always match dot files.
      -     */
      -    dot?: boolean;
      -    /**
      -     * Prepend all relative path strings with `./` (or `.\` on Windows).
      -     *
      -     * Without this option, returned relative paths are "bare", so instead of
      -     * returning `'./foo/bar'`, they are returned as `'foo/bar'`.
      -     *
      -     * Relative patterns starting with `'../'` are not prepended with `./`, even
      -     * if this option is set.
      -     */
      -    dotRelative?: boolean;
      -    /**
      -     * Follow symlinked directories when expanding `**`
      -     * patterns. This can result in a lot of duplicate references in
      -     * the presence of cyclic links, and make performance quite bad.
      -     *
      -     * By default, a `**` in a pattern will follow 1 symbolic link if
      -     * it is not the first item in the pattern, or none if it is the
      -     * first item in the pattern, following the same behavior as Bash.
      -     */
      -    follow?: boolean;
      -    /**
      -     * string or string[], or an object with `ignore` and `ignoreChildren`
      -     * methods.
      -     *
      -     * If a string or string[] is provided, then this is treated as a glob
      -     * pattern or array of glob patterns to exclude from matches. To ignore all
      -     * children within a directory, as well as the entry itself, append `'/**'`
      -     * to the ignore pattern.
      -     *
      -     * **Note** `ignore` patterns are _always_ in `dot:true` mode, regardless of
      -     * any other settings.
      -     *
      -     * If an object is provided that has `ignored(path)` and/or
      -     * `childrenIgnored(path)` methods, then these methods will be called to
      -     * determine whether any Path is a match or if its children should be
      -     * traversed, respectively.
      -     */
      -    ignore?: string | string[] | IgnoreLike;
      -    /**
      -     * Treat brace expansion like `{a,b}` as a "magic" pattern. Has no
      -     * effect if {@link nobrace} is set.
      -     *
      -     * Only has effect on the {@link hasMagic} function.
      -     */
      -    magicalBraces?: boolean;
      -    /**
      -     * Add a `/` character to directory matches. Note that this requires
      -     * additional stat calls in some cases.
      -     */
      -    mark?: boolean;
      -    /**
      -     * Perform a basename-only match if the pattern does not contain any slash
      -     * characters. That is, `*.js` would be treated as equivalent to
      -     * `**\/*.js`, matching all js files in all directories.
      -     */
      -    matchBase?: boolean;
      -    /**
      -     * Limit the directory traversal to a given depth below the cwd.
      -     * Note that this does NOT prevent traversal to sibling folders,
      -     * root patterns, and so on. It only limits the maximum folder depth
      -     * that the walk will descend, relative to the cwd.
      -     */
      -    maxDepth?: number;
      -    /**
      -     * Do not expand `{a,b}` and `{1..3}` brace sets.
      -     */
      -    nobrace?: boolean;
      -    /**
      -     * Perform a case-insensitive match. This defaults to `true` on macOS and
      -     * Windows systems, and `false` on all others.
      -     *
      -     * **Note** `nocase` should only be explicitly set when it is
      -     * known that the filesystem's case sensitivity differs from the
      -     * platform default. If set `true` on case-sensitive file
      -     * systems, or `false` on case-insensitive file systems, then the
      -     * walk may return more or less results than expected.
      -     */
      -    nocase?: boolean;
      -    /**
      -     * Do not match directories, only files. (Note: to match
      -     * _only_ directories, put a `/` at the end of the pattern.)
      -     */
      -    nodir?: boolean;
      -    /**
      -     * Do not match "extglob" patterns such as `+(a|b)`.
      -     */
      -    noext?: boolean;
      -    /**
      -     * Do not match `**` against multiple filenames. (Ie, treat it as a normal
      -     * `*` instead.)
      -     *
      -     * Conflicts with {@link matchBase}
      -     */
      -    noglobstar?: boolean;
      -    /**
      -     * Defaults to value of `process.platform` if available, or `'linux'` if
      -     * not. Setting `platform:'win32'` on non-Windows systems may cause strange
      -     * behavior.
      -     */
      -    platform?: NodeJS.Platform;
      -    /**
      -     * Set to true to call `fs.realpath` on all of the
      -     * results. In the case of an entry that cannot be resolved, the
      -     * entry is omitted. This incurs a slight performance penalty, of
      -     * course, because of the added system calls.
      -     */
      -    realpath?: boolean;
      -    /**
      -     *
      -     * A string path resolved against the `cwd` option, which
      -     * is used as the starting point for absolute patterns that start
      -     * with `/`, (but not drive letters or UNC paths on Windows).
      -     *
      -     * Note that this _doesn't_ necessarily limit the walk to the
      -     * `root` directory, and doesn't affect the cwd starting point for
      -     * non-absolute patterns. A pattern containing `..` will still be
      -     * able to traverse out of the root directory, if it is not an
      -     * actual root directory on the filesystem, and any non-absolute
      -     * patterns will be matched in the `cwd`. For example, the
      -     * pattern `/../*` with `{root:'/some/path'}` will return all
      -     * files in `/some`, not all files in `/some/path`. The pattern
      -     * `*` with `{root:'/some/path'}` will return all the entries in
      -     * the cwd, not the entries in `/some/path`.
      -     *
      -     * To start absolute and non-absolute patterns in the same
      -     * path, you can use `{root:''}`. However, be aware that on
      -     * Windows systems, a pattern like `x:/*` or `//host/share/*` will
      -     * _always_ start in the `x:/` or `//host/share` directory,
      -     * regardless of the `root` setting.
      -     */
      -    root?: string;
      -    /**
      -     * A [PathScurry](http://npm.im/path-scurry) object used
      -     * to traverse the file system. If the `nocase` option is set
      -     * explicitly, then any provided `scurry` object must match this
      -     * setting.
      -     */
      -    scurry?: PathScurry;
      -    /**
      -     * Call `lstat()` on all entries, whether required or not to determine
      -     * if it's a valid match. When used with {@link withFileTypes}, this means
      -     * that matches will include data such as modified time, permissions, and
      -     * so on.  Note that this will incur a performance cost due to the added
      -     * system calls.
      -     */
      -    stat?: boolean;
      -    /**
      -     * An AbortSignal which will cancel the Glob walk when
      -     * triggered.
      -     */
      -    signal?: AbortSignal;
      -    /**
      -     * Use `\\` as a path separator _only_, and
      -     *  _never_ as an escape character. If set, all `\\` characters are
      -     *  replaced with `/` in the pattern.
      -     *
      -     *  Note that this makes it **impossible** to match against paths
      -     *  containing literal glob pattern characters, but allows matching
      -     *  with patterns constructed using `path.join()` and
      -     *  `path.resolve()` on Windows platforms, mimicking the (buggy!)
      -     *  behavior of Glob v7 and before on Windows. Please use with
      -     *  caution, and be mindful of [the caveat below about Windows
      -     *  paths](#windows). (For legacy reasons, this is also set if
      -     *  `allowWindowsEscape` is set to the exact value `false`.)
      -     */
      -    windowsPathsNoEscape?: boolean;
      -    /**
      -     * Return [PathScurry](http://npm.im/path-scurry)
      -     * `Path` objects instead of strings. These are similar to a
      -     * NodeJS `Dirent` object, but with additional methods and
      -     * properties.
      -     *
      -     * Conflicts with {@link absolute}
      -     */
      -    withFileTypes?: boolean;
      -    /**
      -     * An fs implementation to override some or all of the defaults.  See
      -     * http://npm.im/path-scurry for details about what can be overridden.
      -     */
      -    fs?: FSOption;
      -    /**
      -     * Just passed along to Minimatch.  Note that this makes all pattern
      -     * matching operations slower and *extremely* noisy.
      -     */
      -    debug?: boolean;
      -    /**
      -     * Return `/` delimited paths, even on Windows.
      -     *
      -     * On posix systems, this has no effect.  But, on Windows, it means that
      -     * paths will be `/` delimited, and absolute paths will be their full
      -     * resolved UNC forms, eg instead of `'C:\\foo\\bar'`, it would return
      -     * `'//?/C:/foo/bar'`
      -     */
      -    posix?: boolean;
      -}
      -export type GlobOptionsWithFileTypesTrue = GlobOptions & {
      -    withFileTypes: true;
      -    absolute?: undefined;
      -    mark?: undefined;
      -    posix?: undefined;
      -};
      -export type GlobOptionsWithFileTypesFalse = GlobOptions & {
      -    withFileTypes?: false;
      -};
      -export type GlobOptionsWithFileTypesUnset = GlobOptions & {
      -    withFileTypes?: undefined;
      -};
      -export type Result = Opts extends GlobOptionsWithFileTypesTrue ? Path : Opts extends GlobOptionsWithFileTypesFalse ? string : Opts extends GlobOptionsWithFileTypesUnset ? string : string | Path;
      -export type Results = Result[];
      -export type FileTypes = Opts extends GlobOptionsWithFileTypesTrue ? true : Opts extends GlobOptionsWithFileTypesFalse ? false : Opts extends GlobOptionsWithFileTypesUnset ? false : boolean;
      -/**
      - * An object that can perform glob pattern traversals.
      - */
      -export declare class Glob implements GlobOptions {
      -    absolute?: boolean;
      -    cwd: string;
      -    root?: string;
      -    dot: boolean;
      -    dotRelative: boolean;
      -    follow: boolean;
      -    ignore?: string | string[] | IgnoreLike;
      -    magicalBraces: boolean;
      -    mark?: boolean;
      -    matchBase: boolean;
      -    maxDepth: number;
      -    nobrace: boolean;
      -    nocase: boolean;
      -    nodir: boolean;
      -    noext: boolean;
      -    noglobstar: boolean;
      -    pattern: string[];
      -    platform: NodeJS.Platform;
      -    realpath: boolean;
      -    scurry: PathScurry;
      -    stat: boolean;
      -    signal?: AbortSignal;
      -    windowsPathsNoEscape: boolean;
      -    withFileTypes: FileTypes;
      -    /**
      -     * The options provided to the constructor.
      -     */
      -    opts: Opts;
      -    /**
      -     * An array of parsed immutable {@link Pattern} objects.
      -     */
      -    patterns: Pattern[];
      -    /**
      -     * All options are stored as properties on the `Glob` object.
      -     *
      -     * See {@link GlobOptions} for full options descriptions.
      -     *
      -     * Note that a previous `Glob` object can be passed as the
      -     * `GlobOptions` to another `Glob` instantiation to re-use settings
      -     * and caches with a new pattern.
      -     *
      -     * Traversal functions can be called multiple times to run the walk
      -     * again.
      -     */
      -    constructor(pattern: string | string[], opts: Opts);
      -    /**
      -     * Returns a Promise that resolves to the results array.
      -     */
      -    walk(): Promise>;
      -    /**
      -     * synchronous {@link Glob.walk}
      -     */
      -    walkSync(): Results;
      -    /**
      -     * Stream results asynchronously.
      -     */
      -    stream(): Minipass, Result>;
      -    /**
      -     * Stream results synchronously.
      -     */
      -    streamSync(): Minipass, Result>;
      -    /**
      -     * Default sync iteration function. Returns a Generator that
      -     * iterates over the results.
      -     */
      -    iterateSync(): Generator, void, void>;
      -    [Symbol.iterator](): Generator, void, void>;
      -    /**
      -     * Default async iteration function. Returns an AsyncGenerator that
      -     * iterates over the results.
      -     */
      -    iterate(): AsyncGenerator, void, void>;
      -    [Symbol.asyncIterator](): AsyncGenerator, void, void>;
      -}
      -//# sourceMappingURL=glob.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.d.ts.map
      deleted file mode 100644
      index d45258ac24a580..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"glob.d.ts","sourceRoot":"","sources":["../../src/glob.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAAoB,MAAM,WAAW,CAAA;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAA;AACnC,OAAO,EACL,QAAQ,EACR,IAAI,EACJ,UAAU,EAIX,MAAM,aAAa,CAAA;AAEpB,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAGtC,MAAM,MAAM,QAAQ,GAAG,SAAS,CAAC,KAAK,CAAC,CAAA;AACvC,MAAM,MAAM,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,SAAS,CAAC,CAAA;AAWlE;;;;;;;;;;;;GAYG;AACH,MAAM,WAAW,WAAW;IAC1B;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAE5B;;;;;OAKG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;IAElB;;;;OAIG;IACH,GAAG,CAAC,EAAE,OAAO,CAAA;IAEb;;;;;;;;OAQG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IAErB;;;;;;;;OAQG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;;;;;;;;;;;;;;OAgBG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,UAAU,CAAA;IAEvC;;;;;OAKG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;IAEvB;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;;;;;;OASG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;;;;OAKG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,QAAQ,CAAA;IAE1B;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;;OAKG;IACH,MAAM,CAAC,EAAE,UAAU,CAAA;IAEnB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;OAGG;IACH,MAAM,CAAC,EAAE,WAAW,CAAA;IAEpB;;;;;;;;;;;;;OAaG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAE9B;;;;;;;OAOG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;IAEvB;;;OAGG;IACH,EAAE,CAAC,EAAE,QAAQ,CAAA;IAEb;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED,MAAM,MAAM,4BAA4B,GAAG,WAAW,GAAG;IACvD,aAAa,EAAE,IAAI,CAAA;IAEnB,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,IAAI,CAAC,EAAE,SAAS,CAAA;IAChB,KAAK,CAAC,EAAE,SAAS,CAAA;CAClB,CAAA;AAED,MAAM,MAAM,6BAA6B,GAAG,WAAW,GAAG;IACxD,aAAa,CAAC,EAAE,KAAK,CAAA;CACtB,CAAA;AAED,MAAM,MAAM,6BAA6B,GAAG,WAAW,GAAG;IACxD,aAAa,CAAC,EAAE,SAAS,CAAA;CAC1B,CAAA;AAED,MAAM,MAAM,MAAM,CAAC,IAAI,IAAI,IAAI,SAAS,4BAA4B,GAChE,IAAI,GACJ,IAAI,SAAS,6BAA6B,GAC1C,MAAM,GACN,IAAI,SAAS,6BAA6B,GAC1C,MAAM,GACN,MAAM,GAAG,IAAI,CAAA;AACjB,MAAM,MAAM,OAAO,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,EAAE,CAAA;AAE1C,MAAM,MAAM,SAAS,CAAC,IAAI,IAAI,IAAI,SAAS,4BAA4B,GACnE,IAAI,GACJ,IAAI,SAAS,6BAA6B,GAC1C,KAAK,GACL,IAAI,SAAS,6BAA6B,GAC1C,KAAK,GACL,OAAO,CAAA;AAEX;;GAEG;AACH,qBAAa,IAAI,CAAC,IAAI,SAAS,WAAW,CAAE,YAAW,WAAW;IAChE,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,OAAO,CAAA;IACZ,WAAW,EAAE,OAAO,CAAA;IACpB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,UAAU,CAAA;IACvC,aAAa,EAAE,OAAO,CAAA;IACtB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,SAAS,EAAE,OAAO,CAAA;IAClB,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,OAAO,CAAA;IAChB,MAAM,EAAE,OAAO,CAAA;IACf,KAAK,EAAE,OAAO,CAAA;IACd,KAAK,EAAE,OAAO,CAAA;IACd,UAAU,EAAE,OAAO,CAAA;IACnB,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,QAAQ,EAAE,MAAM,CAAC,QAAQ,CAAA;IACzB,QAAQ,EAAE,OAAO,CAAA;IACjB,MAAM,EAAE,UAAU,CAAA;IAClB,IAAI,EAAE,OAAO,CAAA;IACb,MAAM,CAAC,EAAE,WAAW,CAAA;IACpB,oBAAoB,EAAE,OAAO,CAAA;IAC7B,aAAa,EAAE,SAAS,CAAC,IAAI,CAAC,CAAA;IAE9B;;OAEG;IACH,IAAI,EAAE,IAAI,CAAA;IAEV;;OAEG;IACH,QAAQ,EAAE,OAAO,EAAE,CAAA;IAEnB;;;;;;;;;;;OAWG;gBACS,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAAE,IAAI,EAAE,IAAI;IAwHlD;;OAEG;IACG,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAmBpC;;OAEG;IACH,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IAezB;;OAEG;IACH,MAAM,IAAI,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;IAa9C;;OAEG;IACH,UAAU,IAAI,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;IAalD;;;OAGG;IACH,WAAW,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC;IAGlD,CAAC,MAAM,CAAC,QAAQ,CAAC;IAIjB;;;OAGG;IACH,OAAO,IAAI,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC;IAGnD,CAAC,MAAM,CAAC,aAAa,CAAC;CAGvB"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.js
      deleted file mode 100644
      index 8ff26154427be9..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.js
      +++ /dev/null
      @@ -1,234 +0,0 @@
      -import { Minimatch } from 'minimatch';
      -import { PathScurry, PathScurryDarwin, PathScurryPosix, PathScurryWin32, } from 'path-scurry';
      -import { fileURLToPath } from 'url';
      -import { Pattern } from './pattern.js';
      -import { GlobStream, GlobWalker } from './walker.js';
      -// if no process global, just call it linux.
      -// so we default to case-sensitive, / separators
      -const defaultPlatform = typeof process === 'object' &&
      -    process &&
      -    typeof process.platform === 'string'
      -    ? process.platform
      -    : 'linux';
      -/**
      - * An object that can perform glob pattern traversals.
      - */
      -export class Glob {
      -    absolute;
      -    cwd;
      -    root;
      -    dot;
      -    dotRelative;
      -    follow;
      -    ignore;
      -    magicalBraces;
      -    mark;
      -    matchBase;
      -    maxDepth;
      -    nobrace;
      -    nocase;
      -    nodir;
      -    noext;
      -    noglobstar;
      -    pattern;
      -    platform;
      -    realpath;
      -    scurry;
      -    stat;
      -    signal;
      -    windowsPathsNoEscape;
      -    withFileTypes;
      -    /**
      -     * The options provided to the constructor.
      -     */
      -    opts;
      -    /**
      -     * An array of parsed immutable {@link Pattern} objects.
      -     */
      -    patterns;
      -    /**
      -     * All options are stored as properties on the `Glob` object.
      -     *
      -     * See {@link GlobOptions} for full options descriptions.
      -     *
      -     * Note that a previous `Glob` object can be passed as the
      -     * `GlobOptions` to another `Glob` instantiation to re-use settings
      -     * and caches with a new pattern.
      -     *
      -     * Traversal functions can be called multiple times to run the walk
      -     * again.
      -     */
      -    constructor(pattern, opts) {
      -        /* c8 ignore start */
      -        if (!opts)
      -            throw new TypeError('glob options required');
      -        /* c8 ignore stop */
      -        this.withFileTypes = !!opts.withFileTypes;
      -        this.signal = opts.signal;
      -        this.follow = !!opts.follow;
      -        this.dot = !!opts.dot;
      -        this.dotRelative = !!opts.dotRelative;
      -        this.nodir = !!opts.nodir;
      -        this.mark = !!opts.mark;
      -        if (!opts.cwd) {
      -            this.cwd = '';
      -        }
      -        else if (opts.cwd instanceof URL || opts.cwd.startsWith('file://')) {
      -            opts.cwd = fileURLToPath(opts.cwd);
      -        }
      -        this.cwd = opts.cwd || '';
      -        this.root = opts.root;
      -        this.magicalBraces = !!opts.magicalBraces;
      -        this.nobrace = !!opts.nobrace;
      -        this.noext = !!opts.noext;
      -        this.realpath = !!opts.realpath;
      -        this.absolute = opts.absolute;
      -        this.noglobstar = !!opts.noglobstar;
      -        this.matchBase = !!opts.matchBase;
      -        this.maxDepth =
      -            typeof opts.maxDepth === 'number' ? opts.maxDepth : Infinity;
      -        this.stat = !!opts.stat;
      -        this.ignore = opts.ignore;
      -        if (this.withFileTypes && this.absolute !== undefined) {
      -            throw new Error('cannot set absolute and withFileTypes:true');
      -        }
      -        if (typeof pattern === 'string') {
      -            pattern = [pattern];
      -        }
      -        this.windowsPathsNoEscape =
      -            !!opts.windowsPathsNoEscape ||
      -                opts.allowWindowsEscape === false;
      -        if (this.windowsPathsNoEscape) {
      -            pattern = pattern.map(p => p.replace(/\\/g, '/'));
      -        }
      -        if (this.matchBase) {
      -            if (opts.noglobstar) {
      -                throw new TypeError('base matching requires globstar');
      -            }
      -            pattern = pattern.map(p => (p.includes('/') ? p : `./**/${p}`));
      -        }
      -        this.pattern = pattern;
      -        this.platform = opts.platform || defaultPlatform;
      -        this.opts = { ...opts, platform: this.platform };
      -        if (opts.scurry) {
      -            this.scurry = opts.scurry;
      -            if (opts.nocase !== undefined &&
      -                opts.nocase !== opts.scurry.nocase) {
      -                throw new Error('nocase option contradicts provided scurry option');
      -            }
      -        }
      -        else {
      -            const Scurry = opts.platform === 'win32'
      -                ? PathScurryWin32
      -                : opts.platform === 'darwin'
      -                    ? PathScurryDarwin
      -                    : opts.platform
      -                        ? PathScurryPosix
      -                        : PathScurry;
      -            this.scurry = new Scurry(this.cwd, {
      -                nocase: opts.nocase,
      -                fs: opts.fs,
      -            });
      -        }
      -        this.nocase = this.scurry.nocase;
      -        // If you do nocase:true on a case-sensitive file system, then
      -        // we need to use regexps instead of strings for non-magic
      -        // path portions, because statting `aBc` won't return results
      -        // for the file `AbC` for example.
      -        const nocaseMagicOnly = this.platform === 'darwin' || this.platform === 'win32';
      -        const mmo = {
      -            // default nocase based on platform
      -            ...opts,
      -            dot: this.dot,
      -            matchBase: this.matchBase,
      -            nobrace: this.nobrace,
      -            nocase: this.nocase,
      -            nocaseMagicOnly,
      -            nocomment: true,
      -            noext: this.noext,
      -            nonegate: true,
      -            optimizationLevel: 2,
      -            platform: this.platform,
      -            windowsPathsNoEscape: this.windowsPathsNoEscape,
      -            debug: !!this.opts.debug,
      -        };
      -        const mms = this.pattern.map(p => new Minimatch(p, mmo));
      -        const [matchSet, globParts] = mms.reduce((set, m) => {
      -            set[0].push(...m.set);
      -            set[1].push(...m.globParts);
      -            return set;
      -        }, [[], []]);
      -        this.patterns = matchSet.map((set, i) => {
      -            return new Pattern(set, globParts[i], 0, this.platform);
      -        });
      -    }
      -    async walk() {
      -        // Walkers always return array of Path objects, so we just have to
      -        // coerce them into the right shape.  It will have already called
      -        // realpath() if the option was set to do so, so we know that's cached.
      -        // start out knowing the cwd, at least
      -        return [
      -            ...(await new GlobWalker(this.patterns, this.scurry.cwd, {
      -                ...this.opts,
      -                maxDepth: this.maxDepth !== Infinity
      -                    ? this.maxDepth + this.scurry.cwd.depth()
      -                    : Infinity,
      -                platform: this.platform,
      -                nocase: this.nocase,
      -            }).walk()),
      -        ];
      -    }
      -    walkSync() {
      -        return [
      -            ...new GlobWalker(this.patterns, this.scurry.cwd, {
      -                ...this.opts,
      -                maxDepth: this.maxDepth !== Infinity
      -                    ? this.maxDepth + this.scurry.cwd.depth()
      -                    : Infinity,
      -                platform: this.platform,
      -                nocase: this.nocase,
      -            }).walkSync(),
      -        ];
      -    }
      -    stream() {
      -        return new GlobStream(this.patterns, this.scurry.cwd, {
      -            ...this.opts,
      -            maxDepth: this.maxDepth !== Infinity
      -                ? this.maxDepth + this.scurry.cwd.depth()
      -                : Infinity,
      -            platform: this.platform,
      -            nocase: this.nocase,
      -        }).stream();
      -    }
      -    streamSync() {
      -        return new GlobStream(this.patterns, this.scurry.cwd, {
      -            ...this.opts,
      -            maxDepth: this.maxDepth !== Infinity
      -                ? this.maxDepth + this.scurry.cwd.depth()
      -                : Infinity,
      -            platform: this.platform,
      -            nocase: this.nocase,
      -        }).streamSync();
      -    }
      -    /**
      -     * Default sync iteration function. Returns a Generator that
      -     * iterates over the results.
      -     */
      -    iterateSync() {
      -        return this.streamSync()[Symbol.iterator]();
      -    }
      -    [Symbol.iterator]() {
      -        return this.iterateSync();
      -    }
      -    /**
      -     * Default async iteration function. Returns an AsyncGenerator that
      -     * iterates over the results.
      -     */
      -    iterate() {
      -        return this.stream()[Symbol.asyncIterator]();
      -    }
      -    [Symbol.asyncIterator]() {
      -        return this.iterate();
      -    }
      -}
      -//# sourceMappingURL=glob.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.js.map
      deleted file mode 100644
      index 94558c1d2c66a4..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/glob.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"glob.js","sourceRoot":"","sources":["../../src/glob.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAoB,MAAM,WAAW,CAAA;AAEvD,OAAO,EAGL,UAAU,EACV,gBAAgB,EAChB,eAAe,EACf,eAAe,GAChB,MAAM,aAAa,CAAA;AACpB,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AACtC,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAKpD,4CAA4C;AAC5C,gDAAgD;AAChD,MAAM,eAAe,GACnB,OAAO,OAAO,KAAK,QAAQ;IAC3B,OAAO;IACP,OAAO,OAAO,CAAC,QAAQ,KAAK,QAAQ;IAClC,CAAC,CAAC,OAAO,CAAC,QAAQ;IAClB,CAAC,CAAC,OAAO,CAAA;AAgTb;;GAEG;AACH,MAAM,OAAO,IAAI;IACf,QAAQ,CAAU;IAClB,GAAG,CAAQ;IACX,IAAI,CAAS;IACb,GAAG,CAAS;IACZ,WAAW,CAAS;IACpB,MAAM,CAAS;IACf,MAAM,CAAiC;IACvC,aAAa,CAAS;IACtB,IAAI,CAAU;IACd,SAAS,CAAS;IAClB,QAAQ,CAAQ;IAChB,OAAO,CAAS;IAChB,MAAM,CAAS;IACf,KAAK,CAAS;IACd,KAAK,CAAS;IACd,UAAU,CAAS;IACnB,OAAO,CAAU;IACjB,QAAQ,CAAiB;IACzB,QAAQ,CAAS;IACjB,MAAM,CAAY;IAClB,IAAI,CAAS;IACb,MAAM,CAAc;IACpB,oBAAoB,CAAS;IAC7B,aAAa,CAAiB;IAE9B;;OAEG;IACH,IAAI,CAAM;IAEV;;OAEG;IACH,QAAQ,CAAW;IAEnB;;;;;;;;;;;OAWG;IACH,YAAY,OAA0B,EAAE,IAAU;QAChD,qBAAqB;QACrB,IAAI,CAAC,IAAI;YAAE,MAAM,IAAI,SAAS,CAAC,uBAAuB,CAAC,CAAA;QACvD,oBAAoB;QACpB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC,IAAI,CAAC,aAAgC,CAAA;QAC5D,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;QACzB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,CAAC,MAAM,CAAA;QAC3B,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAA;QACrB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,IAAI,CAAC,WAAW,CAAA;QACrC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,CAAA;QACzB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAA;QACvB,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;YACb,IAAI,CAAC,GAAG,GAAG,EAAE,CAAA;SACd;aAAM,IAAI,IAAI,CAAC,GAAG,YAAY,GAAG,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE;YACpE,IAAI,CAAC,GAAG,GAAG,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;SACnC;QACD,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,IAAI,EAAE,CAAA;QACzB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAA;QACrB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC,IAAI,CAAC,aAAa,CAAA;QACzC,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC,IAAI,CAAC,OAAO,CAAA;QAC7B,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,CAAA;QACzB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAA;QAC/B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAA;QAE7B,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,IAAI,CAAC,UAAU,CAAA;QACnC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,CAAA;QACjC,IAAI,CAAC,QAAQ;YACX,OAAO,IAAI,CAAC,QAAQ,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAA;QAC9D,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAA;QACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;QAEzB,IAAI,IAAI,CAAC,aAAa,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,EAAE;YACrD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAA;SAC9D;QAED,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE;YAC/B,OAAO,GAAG,CAAC,OAAO,CAAC,CAAA;SACpB;QAED,IAAI,CAAC,oBAAoB;YACvB,CAAC,CAAC,IAAI,CAAC,oBAAoB;gBAC1B,IAAoB,CAAC,kBAAkB,KAAK,KAAK,CAAA;QAEpD,IAAI,IAAI,CAAC,oBAAoB,EAAE;YAC7B,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAA;SAClD;QAED,IAAI,IAAI,CAAC,SAAS,EAAE;YAClB,IAAI,IAAI,CAAC,UAAU,EAAE;gBACnB,MAAM,IAAI,SAAS,CAAC,iCAAiC,CAAC,CAAA;aACvD;YACD,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAA;SAChE;QAED,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QAEtB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,eAAe,CAAA;QAChD,IAAI,CAAC,IAAI,GAAG,EAAE,GAAG,IAAI,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE,CAAA;QAChD,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;YACzB,IACE,IAAI,CAAC,MAAM,KAAK,SAAS;gBACzB,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC,MAAM,CAAC,MAAM,EAClC;gBACA,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAA;aACpE;SACF;aAAM;YACL,MAAM,MAAM,GACV,IAAI,CAAC,QAAQ,KAAK,OAAO;gBACvB,CAAC,CAAC,eAAe;gBACjB,CAAC,CAAC,IAAI,CAAC,QAAQ,KAAK,QAAQ;oBAC5B,CAAC,CAAC,gBAAgB;oBAClB,CAAC,CAAC,IAAI,CAAC,QAAQ;wBACf,CAAC,CAAC,eAAe;wBACjB,CAAC,CAAC,UAAU,CAAA;YAChB,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjC,MAAM,EAAE,IAAI,CAAC,MAAM;gBACnB,EAAE,EAAE,IAAI,CAAC,EAAE;aACZ,CAAC,CAAA;SACH;QACD,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAA;QAEhC,8DAA8D;QAC9D,0DAA0D;QAC1D,6DAA6D;QAC7D,kCAAkC;QAClC,MAAM,eAAe,GACnB,IAAI,CAAC,QAAQ,KAAK,QAAQ,IAAI,IAAI,CAAC,QAAQ,KAAK,OAAO,CAAA;QAEzD,MAAM,GAAG,GAAqB;YAC5B,mCAAmC;YACnC,GAAG,IAAI;YACP,GAAG,EAAE,IAAI,CAAC,GAAG;YACb,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,eAAe;YACf,SAAS,EAAE,IAAI;YACf,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,QAAQ,EAAE,IAAI;YACd,iBAAiB,EAAE,CAAC;YACpB,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,oBAAoB,EAAE,IAAI,CAAC,oBAAoB;YAC/C,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK;SACzB,CAAA;QAED,MAAM,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAA;QACxD,MAAM,CAAC,QAAQ,EAAE,SAAS,CAAC,GAAG,GAAG,CAAC,MAAM,CACtC,CAAC,GAA0B,EAAE,CAAC,EAAE,EAAE;YAChC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAA;YACrB,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,SAAS,CAAC,CAAA;YAC3B,OAAO,GAAG,CAAA;QACZ,CAAC,EACD,CAAC,EAAE,EAAE,EAAE,CAAC,CACT,CAAA;QACD,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE;YACtC,OAAO,IAAI,OAAO,CAAC,GAAG,EAAE,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAA;QACzD,CAAC,CAAC,CAAA;IACJ,CAAC;IAMD,KAAK,CAAC,IAAI;QACR,kEAAkE;QAClE,iEAAiE;QACjE,uEAAuE;QACvE,sCAAsC;QACtC,OAAO;YACL,GAAG,CAAC,MAAM,IAAI,UAAU,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE;gBACvD,GAAG,IAAI,CAAC,IAAI;gBACZ,QAAQ,EACN,IAAI,CAAC,QAAQ,KAAK,QAAQ;oBACxB,CAAC,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE;oBACzC,CAAC,CAAC,QAAQ;gBACd,QAAQ,EAAE,IAAI,CAAC,QAAQ;gBACvB,MAAM,EAAE,IAAI,CAAC,MAAM;aACpB,CAAC,CAAC,IAAI,EAAE,CAAC;SACX,CAAA;IACH,CAAC;IAMD,QAAQ;QACN,OAAO;YACL,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE;gBAChD,GAAG,IAAI,CAAC,IAAI;gBACZ,QAAQ,EACN,IAAI,CAAC,QAAQ,KAAK,QAAQ;oBACxB,CAAC,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE;oBACzC,CAAC,CAAC,QAAQ;gBACd,QAAQ,EAAE,IAAI,CAAC,QAAQ;gBACvB,MAAM,EAAE,IAAI,CAAC,MAAM;aACpB,CAAC,CAAC,QAAQ,EAAE;SACd,CAAA;IACH,CAAC;IAMD,MAAM;QACJ,OAAO,IAAI,UAAU,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE;YACpD,GAAG,IAAI,CAAC,IAAI;YACZ,QAAQ,EACN,IAAI,CAAC,QAAQ,KAAK,QAAQ;gBACxB,CAAC,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE;gBACzC,CAAC,CAAC,QAAQ;YACd,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAC,CAAC,MAAM,EAAE,CAAA;IACb,CAAC;IAMD,UAAU;QACR,OAAO,IAAI,UAAU,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE;YACpD,GAAG,IAAI,CAAC,IAAI;YACZ,QAAQ,EACN,IAAI,CAAC,QAAQ,KAAK,QAAQ;gBACxB,CAAC,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE;gBACzC,CAAC,CAAC,QAAQ;YACd,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAC,CAAC,UAAU,EAAE,CAAA;IACjB,CAAC;IAED;;;OAGG;IACH,WAAW;QACT,OAAO,IAAI,CAAC,UAAU,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAA;IAC7C,CAAC;IACD,CAAC,MAAM,CAAC,QAAQ,CAAC;QACf,OAAO,IAAI,CAAC,WAAW,EAAE,CAAA;IAC3B,CAAC;IAED;;;OAGG;IACH,OAAO;QACL,OAAO,IAAI,CAAC,MAAM,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE,CAAA;IAC9C,CAAC;IACD,CAAC,MAAM,CAAC,aAAa,CAAC;QACpB,OAAO,IAAI,CAAC,OAAO,EAAE,CAAA;IACvB,CAAC;CACF","sourcesContent":["import { Minimatch, MinimatchOptions } from 'minimatch'\nimport { Minipass } from 'minipass'\nimport {\n  FSOption,\n  Path,\n  PathScurry,\n  PathScurryDarwin,\n  PathScurryPosix,\n  PathScurryWin32,\n} from 'path-scurry'\nimport { fileURLToPath } from 'url'\nimport { IgnoreLike } from './ignore.js'\nimport { Pattern } from './pattern.js'\nimport { GlobStream, GlobWalker } from './walker.js'\n\nexport type MatchSet = Minimatch['set']\nexport type GlobParts = Exclude\n\n// if no process global, just call it linux.\n// so we default to case-sensitive, / separators\nconst defaultPlatform: NodeJS.Platform =\n  typeof process === 'object' &&\n  process &&\n  typeof process.platform === 'string'\n    ? process.platform\n    : 'linux'\n\n/**\n * A `GlobOptions` object may be provided to any of the exported methods, and\n * must be provided to the `Glob` constructor.\n *\n * All options are optional, boolean, and false by default, unless otherwise\n * noted.\n *\n * All resolved options are added to the Glob object as properties.\n *\n * If you are running many `glob` operations, you can pass a Glob object as the\n * `options` argument to a subsequent operation to share the previously loaded\n * cache.\n */\nexport interface GlobOptions {\n  /**\n   * Set to `true` to always receive absolute paths for\n   * matched files. Set to `false` to always return relative paths.\n   *\n   * When this option is not set, absolute paths are returned for patterns\n   * that are absolute, and otherwise paths are returned that are relative\n   * to the `cwd` setting.\n   *\n   * This does _not_ make an extra system call to get\n   * the realpath, it only does string path resolution.\n   *\n   * Conflicts with {@link withFileTypes}\n   */\n  absolute?: boolean\n\n  /**\n   * Set to false to enable {@link windowsPathsNoEscape}\n   *\n   * @deprecated\n   */\n  allowWindowsEscape?: boolean\n\n  /**\n   * The current working directory in which to search. Defaults to\n   * `process.cwd()`.\n   *\n   * May be eiher a string path or a `file://` URL object or string.\n   */\n  cwd?: string | URL\n\n  /**\n   * Include `.dot` files in normal matches and `globstar`\n   * matches. Note that an explicit dot in a portion of the pattern\n   * will always match dot files.\n   */\n  dot?: boolean\n\n  /**\n   * Prepend all relative path strings with `./` (or `.\\` on Windows).\n   *\n   * Without this option, returned relative paths are \"bare\", so instead of\n   * returning `'./foo/bar'`, they are returned as `'foo/bar'`.\n   *\n   * Relative patterns starting with `'../'` are not prepended with `./`, even\n   * if this option is set.\n   */\n  dotRelative?: boolean\n\n  /**\n   * Follow symlinked directories when expanding `**`\n   * patterns. This can result in a lot of duplicate references in\n   * the presence of cyclic links, and make performance quite bad.\n   *\n   * By default, a `**` in a pattern will follow 1 symbolic link if\n   * it is not the first item in the pattern, or none if it is the\n   * first item in the pattern, following the same behavior as Bash.\n   */\n  follow?: boolean\n\n  /**\n   * string or string[], or an object with `ignore` and `ignoreChildren`\n   * methods.\n   *\n   * If a string or string[] is provided, then this is treated as a glob\n   * pattern or array of glob patterns to exclude from matches. To ignore all\n   * children within a directory, as well as the entry itself, append `'/**'`\n   * to the ignore pattern.\n   *\n   * **Note** `ignore` patterns are _always_ in `dot:true` mode, regardless of\n   * any other settings.\n   *\n   * If an object is provided that has `ignored(path)` and/or\n   * `childrenIgnored(path)` methods, then these methods will be called to\n   * determine whether any Path is a match or if its children should be\n   * traversed, respectively.\n   */\n  ignore?: string | string[] | IgnoreLike\n\n  /**\n   * Treat brace expansion like `{a,b}` as a \"magic\" pattern. Has no\n   * effect if {@link nobrace} is set.\n   *\n   * Only has effect on the {@link hasMagic} function.\n   */\n  magicalBraces?: boolean\n\n  /**\n   * Add a `/` character to directory matches. Note that this requires\n   * additional stat calls in some cases.\n   */\n  mark?: boolean\n\n  /**\n   * Perform a basename-only match if the pattern does not contain any slash\n   * characters. That is, `*.js` would be treated as equivalent to\n   * `**\\/*.js`, matching all js files in all directories.\n   */\n  matchBase?: boolean\n\n  /**\n   * Limit the directory traversal to a given depth below the cwd.\n   * Note that this does NOT prevent traversal to sibling folders,\n   * root patterns, and so on. It only limits the maximum folder depth\n   * that the walk will descend, relative to the cwd.\n   */\n  maxDepth?: number\n\n  /**\n   * Do not expand `{a,b}` and `{1..3}` brace sets.\n   */\n  nobrace?: boolean\n\n  /**\n   * Perform a case-insensitive match. This defaults to `true` on macOS and\n   * Windows systems, and `false` on all others.\n   *\n   * **Note** `nocase` should only be explicitly set when it is\n   * known that the filesystem's case sensitivity differs from the\n   * platform default. If set `true` on case-sensitive file\n   * systems, or `false` on case-insensitive file systems, then the\n   * walk may return more or less results than expected.\n   */\n  nocase?: boolean\n\n  /**\n   * Do not match directories, only files. (Note: to match\n   * _only_ directories, put a `/` at the end of the pattern.)\n   */\n  nodir?: boolean\n\n  /**\n   * Do not match \"extglob\" patterns such as `+(a|b)`.\n   */\n  noext?: boolean\n\n  /**\n   * Do not match `**` against multiple filenames. (Ie, treat it as a normal\n   * `*` instead.)\n   *\n   * Conflicts with {@link matchBase}\n   */\n  noglobstar?: boolean\n\n  /**\n   * Defaults to value of `process.platform` if available, or `'linux'` if\n   * not. Setting `platform:'win32'` on non-Windows systems may cause strange\n   * behavior.\n   */\n  platform?: NodeJS.Platform\n\n  /**\n   * Set to true to call `fs.realpath` on all of the\n   * results. In the case of an entry that cannot be resolved, the\n   * entry is omitted. This incurs a slight performance penalty, of\n   * course, because of the added system calls.\n   */\n  realpath?: boolean\n\n  /**\n   *\n   * A string path resolved against the `cwd` option, which\n   * is used as the starting point for absolute patterns that start\n   * with `/`, (but not drive letters or UNC paths on Windows).\n   *\n   * Note that this _doesn't_ necessarily limit the walk to the\n   * `root` directory, and doesn't affect the cwd starting point for\n   * non-absolute patterns. A pattern containing `..` will still be\n   * able to traverse out of the root directory, if it is not an\n   * actual root directory on the filesystem, and any non-absolute\n   * patterns will be matched in the `cwd`. For example, the\n   * pattern `/../*` with `{root:'/some/path'}` will return all\n   * files in `/some`, not all files in `/some/path`. The pattern\n   * `*` with `{root:'/some/path'}` will return all the entries in\n   * the cwd, not the entries in `/some/path`.\n   *\n   * To start absolute and non-absolute patterns in the same\n   * path, you can use `{root:''}`. However, be aware that on\n   * Windows systems, a pattern like `x:/*` or `//host/share/*` will\n   * _always_ start in the `x:/` or `//host/share` directory,\n   * regardless of the `root` setting.\n   */\n  root?: string\n\n  /**\n   * A [PathScurry](http://npm.im/path-scurry) object used\n   * to traverse the file system. If the `nocase` option is set\n   * explicitly, then any provided `scurry` object must match this\n   * setting.\n   */\n  scurry?: PathScurry\n\n  /**\n   * Call `lstat()` on all entries, whether required or not to determine\n   * if it's a valid match. When used with {@link withFileTypes}, this means\n   * that matches will include data such as modified time, permissions, and\n   * so on.  Note that this will incur a performance cost due to the added\n   * system calls.\n   */\n  stat?: boolean\n\n  /**\n   * An AbortSignal which will cancel the Glob walk when\n   * triggered.\n   */\n  signal?: AbortSignal\n\n  /**\n   * Use `\\\\` as a path separator _only_, and\n   *  _never_ as an escape character. If set, all `\\\\` characters are\n   *  replaced with `/` in the pattern.\n   *\n   *  Note that this makes it **impossible** to match against paths\n   *  containing literal glob pattern characters, but allows matching\n   *  with patterns constructed using `path.join()` and\n   *  `path.resolve()` on Windows platforms, mimicking the (buggy!)\n   *  behavior of Glob v7 and before on Windows. Please use with\n   *  caution, and be mindful of [the caveat below about Windows\n   *  paths](#windows). (For legacy reasons, this is also set if\n   *  `allowWindowsEscape` is set to the exact value `false`.)\n   */\n  windowsPathsNoEscape?: boolean\n\n  /**\n   * Return [PathScurry](http://npm.im/path-scurry)\n   * `Path` objects instead of strings. These are similar to a\n   * NodeJS `Dirent` object, but with additional methods and\n   * properties.\n   *\n   * Conflicts with {@link absolute}\n   */\n  withFileTypes?: boolean\n\n  /**\n   * An fs implementation to override some or all of the defaults.  See\n   * http://npm.im/path-scurry for details about what can be overridden.\n   */\n  fs?: FSOption\n\n  /**\n   * Just passed along to Minimatch.  Note that this makes all pattern\n   * matching operations slower and *extremely* noisy.\n   */\n  debug?: boolean\n\n  /**\n   * Return `/` delimited paths, even on Windows.\n   *\n   * On posix systems, this has no effect.  But, on Windows, it means that\n   * paths will be `/` delimited, and absolute paths will be their full\n   * resolved UNC forms, eg instead of `'C:\\\\foo\\\\bar'`, it would return\n   * `'//?/C:/foo/bar'`\n   */\n  posix?: boolean\n}\n\nexport type GlobOptionsWithFileTypesTrue = GlobOptions & {\n  withFileTypes: true\n  // string options not relevant if returning Path objects.\n  absolute?: undefined\n  mark?: undefined\n  posix?: undefined\n}\n\nexport type GlobOptionsWithFileTypesFalse = GlobOptions & {\n  withFileTypes?: false\n}\n\nexport type GlobOptionsWithFileTypesUnset = GlobOptions & {\n  withFileTypes?: undefined\n}\n\nexport type Result = Opts extends GlobOptionsWithFileTypesTrue\n  ? Path\n  : Opts extends GlobOptionsWithFileTypesFalse\n  ? string\n  : Opts extends GlobOptionsWithFileTypesUnset\n  ? string\n  : string | Path\nexport type Results = Result[]\n\nexport type FileTypes = Opts extends GlobOptionsWithFileTypesTrue\n  ? true\n  : Opts extends GlobOptionsWithFileTypesFalse\n  ? false\n  : Opts extends GlobOptionsWithFileTypesUnset\n  ? false\n  : boolean\n\n/**\n * An object that can perform glob pattern traversals.\n */\nexport class Glob implements GlobOptions {\n  absolute?: boolean\n  cwd: string\n  root?: string\n  dot: boolean\n  dotRelative: boolean\n  follow: boolean\n  ignore?: string | string[] | IgnoreLike\n  magicalBraces: boolean\n  mark?: boolean\n  matchBase: boolean\n  maxDepth: number\n  nobrace: boolean\n  nocase: boolean\n  nodir: boolean\n  noext: boolean\n  noglobstar: boolean\n  pattern: string[]\n  platform: NodeJS.Platform\n  realpath: boolean\n  scurry: PathScurry\n  stat: boolean\n  signal?: AbortSignal\n  windowsPathsNoEscape: boolean\n  withFileTypes: FileTypes\n\n  /**\n   * The options provided to the constructor.\n   */\n  opts: Opts\n\n  /**\n   * An array of parsed immutable {@link Pattern} objects.\n   */\n  patterns: Pattern[]\n\n  /**\n   * All options are stored as properties on the `Glob` object.\n   *\n   * See {@link GlobOptions} for full options descriptions.\n   *\n   * Note that a previous `Glob` object can be passed as the\n   * `GlobOptions` to another `Glob` instantiation to re-use settings\n   * and caches with a new pattern.\n   *\n   * Traversal functions can be called multiple times to run the walk\n   * again.\n   */\n  constructor(pattern: string | string[], opts: Opts) {\n    /* c8 ignore start */\n    if (!opts) throw new TypeError('glob options required')\n    /* c8 ignore stop */\n    this.withFileTypes = !!opts.withFileTypes as FileTypes\n    this.signal = opts.signal\n    this.follow = !!opts.follow\n    this.dot = !!opts.dot\n    this.dotRelative = !!opts.dotRelative\n    this.nodir = !!opts.nodir\n    this.mark = !!opts.mark\n    if (!opts.cwd) {\n      this.cwd = ''\n    } else if (opts.cwd instanceof URL || opts.cwd.startsWith('file://')) {\n      opts.cwd = fileURLToPath(opts.cwd)\n    }\n    this.cwd = opts.cwd || ''\n    this.root = opts.root\n    this.magicalBraces = !!opts.magicalBraces\n    this.nobrace = !!opts.nobrace\n    this.noext = !!opts.noext\n    this.realpath = !!opts.realpath\n    this.absolute = opts.absolute\n\n    this.noglobstar = !!opts.noglobstar\n    this.matchBase = !!opts.matchBase\n    this.maxDepth =\n      typeof opts.maxDepth === 'number' ? opts.maxDepth : Infinity\n    this.stat = !!opts.stat\n    this.ignore = opts.ignore\n\n    if (this.withFileTypes && this.absolute !== undefined) {\n      throw new Error('cannot set absolute and withFileTypes:true')\n    }\n\n    if (typeof pattern === 'string') {\n      pattern = [pattern]\n    }\n\n    this.windowsPathsNoEscape =\n      !!opts.windowsPathsNoEscape ||\n      (opts as GlobOptions).allowWindowsEscape === false\n\n    if (this.windowsPathsNoEscape) {\n      pattern = pattern.map(p => p.replace(/\\\\/g, '/'))\n    }\n\n    if (this.matchBase) {\n      if (opts.noglobstar) {\n        throw new TypeError('base matching requires globstar')\n      }\n      pattern = pattern.map(p => (p.includes('/') ? p : `./**/${p}`))\n    }\n\n    this.pattern = pattern\n\n    this.platform = opts.platform || defaultPlatform\n    this.opts = { ...opts, platform: this.platform }\n    if (opts.scurry) {\n      this.scurry = opts.scurry\n      if (\n        opts.nocase !== undefined &&\n        opts.nocase !== opts.scurry.nocase\n      ) {\n        throw new Error('nocase option contradicts provided scurry option')\n      }\n    } else {\n      const Scurry =\n        opts.platform === 'win32'\n          ? PathScurryWin32\n          : opts.platform === 'darwin'\n          ? PathScurryDarwin\n          : opts.platform\n          ? PathScurryPosix\n          : PathScurry\n      this.scurry = new Scurry(this.cwd, {\n        nocase: opts.nocase,\n        fs: opts.fs,\n      })\n    }\n    this.nocase = this.scurry.nocase\n\n    // If you do nocase:true on a case-sensitive file system, then\n    // we need to use regexps instead of strings for non-magic\n    // path portions, because statting `aBc` won't return results\n    // for the file `AbC` for example.\n    const nocaseMagicOnly =\n      this.platform === 'darwin' || this.platform === 'win32'\n\n    const mmo: MinimatchOptions = {\n      // default nocase based on platform\n      ...opts,\n      dot: this.dot,\n      matchBase: this.matchBase,\n      nobrace: this.nobrace,\n      nocase: this.nocase,\n      nocaseMagicOnly,\n      nocomment: true,\n      noext: this.noext,\n      nonegate: true,\n      optimizationLevel: 2,\n      platform: this.platform,\n      windowsPathsNoEscape: this.windowsPathsNoEscape,\n      debug: !!this.opts.debug,\n    }\n\n    const mms = this.pattern.map(p => new Minimatch(p, mmo))\n    const [matchSet, globParts] = mms.reduce(\n      (set: [MatchSet, GlobParts], m) => {\n        set[0].push(...m.set)\n        set[1].push(...m.globParts)\n        return set\n      },\n      [[], []]\n    )\n    this.patterns = matchSet.map((set, i) => {\n      return new Pattern(set, globParts[i], 0, this.platform)\n    })\n  }\n\n  /**\n   * Returns a Promise that resolves to the results array.\n   */\n  async walk(): Promise>\n  async walk(): Promise<(string | Path)[]> {\n    // Walkers always return array of Path objects, so we just have to\n    // coerce them into the right shape.  It will have already called\n    // realpath() if the option was set to do so, so we know that's cached.\n    // start out knowing the cwd, at least\n    return [\n      ...(await new GlobWalker(this.patterns, this.scurry.cwd, {\n        ...this.opts,\n        maxDepth:\n          this.maxDepth !== Infinity\n            ? this.maxDepth + this.scurry.cwd.depth()\n            : Infinity,\n        platform: this.platform,\n        nocase: this.nocase,\n      }).walk()),\n    ]\n  }\n\n  /**\n   * synchronous {@link Glob.walk}\n   */\n  walkSync(): Results\n  walkSync(): (string | Path)[] {\n    return [\n      ...new GlobWalker(this.patterns, this.scurry.cwd, {\n        ...this.opts,\n        maxDepth:\n          this.maxDepth !== Infinity\n            ? this.maxDepth + this.scurry.cwd.depth()\n            : Infinity,\n        platform: this.platform,\n        nocase: this.nocase,\n      }).walkSync(),\n    ]\n  }\n\n  /**\n   * Stream results asynchronously.\n   */\n  stream(): Minipass, Result>\n  stream(): Minipass {\n    return new GlobStream(this.patterns, this.scurry.cwd, {\n      ...this.opts,\n      maxDepth:\n        this.maxDepth !== Infinity\n          ? this.maxDepth + this.scurry.cwd.depth()\n          : Infinity,\n      platform: this.platform,\n      nocase: this.nocase,\n    }).stream()\n  }\n\n  /**\n   * Stream results synchronously.\n   */\n  streamSync(): Minipass, Result>\n  streamSync(): Minipass {\n    return new GlobStream(this.patterns, this.scurry.cwd, {\n      ...this.opts,\n      maxDepth:\n        this.maxDepth !== Infinity\n          ? this.maxDepth + this.scurry.cwd.depth()\n          : Infinity,\n      platform: this.platform,\n      nocase: this.nocase,\n    }).streamSync()\n  }\n\n  /**\n   * Default sync iteration function. Returns a Generator that\n   * iterates over the results.\n   */\n  iterateSync(): Generator, void, void> {\n    return this.streamSync()[Symbol.iterator]()\n  }\n  [Symbol.iterator]() {\n    return this.iterateSync()\n  }\n\n  /**\n   * Default async iteration function. Returns an AsyncGenerator that\n   * iterates over the results.\n   */\n  iterate(): AsyncGenerator, void, void> {\n    return this.stream()[Symbol.asyncIterator]()\n  }\n  [Symbol.asyncIterator]() {\n    return this.iterate()\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.d.ts
      deleted file mode 100644
      index 8aec3bd9725175..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.d.ts
      +++ /dev/null
      @@ -1,14 +0,0 @@
      -import { GlobOptions } from './glob.js';
      -/**
      - * Return true if the patterns provided contain any magic glob characters,
      - * given the options provided.
      - *
      - * Brace expansion is not considered "magic" unless the `magicalBraces` option
      - * is set, as brace expansion just turns one string into an array of strings.
      - * So a pattern like `'x{a,b}y'` would return `false`, because `'xay'` and
      - * `'xby'` both do not contain any magic glob characters, and it's treated the
      - * same as if you had called it on `['xay', 'xby']`. When `magicalBraces:true`
      - * is in the options, brace expansion _is_ treated as a pattern having magic.
      - */
      -export declare const hasMagic: (pattern: string | string[], options?: GlobOptions) => boolean;
      -//# sourceMappingURL=has-magic.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.d.ts.map
      deleted file mode 100644
      index b24dd4ec47e0bb..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"has-magic.d.ts","sourceRoot":"","sources":["../../src/has-magic.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAEvC;;;;;;;;;;GAUG;AACH,eAAO,MAAM,QAAQ,YACV,MAAM,GAAG,MAAM,EAAE,YACjB,WAAW,KACnB,OAQF,CAAA"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.js
      deleted file mode 100644
      index ba2321ab868d02..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.js
      +++ /dev/null
      @@ -1,23 +0,0 @@
      -import { Minimatch } from 'minimatch';
      -/**
      - * Return true if the patterns provided contain any magic glob characters,
      - * given the options provided.
      - *
      - * Brace expansion is not considered "magic" unless the `magicalBraces` option
      - * is set, as brace expansion just turns one string into an array of strings.
      - * So a pattern like `'x{a,b}y'` would return `false`, because `'xay'` and
      - * `'xby'` both do not contain any magic glob characters, and it's treated the
      - * same as if you had called it on `['xay', 'xby']`. When `magicalBraces:true`
      - * is in the options, brace expansion _is_ treated as a pattern having magic.
      - */
      -export const hasMagic = (pattern, options = {}) => {
      -    if (!Array.isArray(pattern)) {
      -        pattern = [pattern];
      -    }
      -    for (const p of pattern) {
      -        if (new Minimatch(p, options).hasMagic())
      -            return true;
      -    }
      -    return false;
      -};
      -//# sourceMappingURL=has-magic.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.js.map
      deleted file mode 100644
      index 27fd78dbae62cf..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/has-magic.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"has-magic.js","sourceRoot":"","sources":["../../src/has-magic.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAGrC;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,QAAQ,GAAG,CACtB,OAA0B,EAC1B,UAAuB,EAAE,EAChB,EAAE;IACX,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;QAC3B,OAAO,GAAG,CAAC,OAAO,CAAC,CAAA;KACpB;IACD,KAAK,MAAM,CAAC,IAAI,OAAO,EAAE;QACvB,IAAI,IAAI,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,QAAQ,EAAE;YAAE,OAAO,IAAI,CAAA;KACtD;IACD,OAAO,KAAK,CAAA;AACd,CAAC,CAAA","sourcesContent":["import { Minimatch } from 'minimatch'\nimport { GlobOptions } from './glob.js'\n\n/**\n * Return true if the patterns provided contain any magic glob characters,\n * given the options provided.\n *\n * Brace expansion is not considered \"magic\" unless the `magicalBraces` option\n * is set, as brace expansion just turns one string into an array of strings.\n * So a pattern like `'x{a,b}y'` would return `false`, because `'xay'` and\n * `'xby'` both do not contain any magic glob characters, and it's treated the\n * same as if you had called it on `['xay', 'xby']`. When `magicalBraces:true`\n * is in the options, brace expansion _is_ treated as a pattern having magic.\n */\nexport const hasMagic = (\n  pattern: string | string[],\n  options: GlobOptions = {}\n): boolean => {\n  if (!Array.isArray(pattern)) {\n    pattern = [pattern]\n  }\n  for (const p of pattern) {\n    if (new Minimatch(p, options).hasMagic()) return true\n  }\n  return false\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.d.ts
      deleted file mode 100644
      index e9d74f3b5e1291..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.d.ts
      +++ /dev/null
      @@ -1,20 +0,0 @@
      -import { Minimatch } from 'minimatch';
      -import { Path } from 'path-scurry';
      -import { GlobWalkerOpts } from './walker.js';
      -export interface IgnoreLike {
      -    ignored?: (p: Path) => boolean;
      -    childrenIgnored?: (p: Path) => boolean;
      -}
      -/**
      - * Class used to process ignored patterns
      - */
      -export declare class Ignore implements IgnoreLike {
      -    relative: Minimatch[];
      -    relativeChildren: Minimatch[];
      -    absolute: Minimatch[];
      -    absoluteChildren: Minimatch[];
      -    constructor(ignored: string[], { nobrace, nocase, noext, noglobstar, platform, }: GlobWalkerOpts);
      -    ignored(p: Path): boolean;
      -    childrenIgnored(p: Path): boolean;
      -}
      -//# sourceMappingURL=ignore.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.d.ts.map
      deleted file mode 100644
      index e0018cf935b046..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"ignore.d.ts","sourceRoot":"","sources":["../../src/ignore.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AACrC,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAElC,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAE5C,MAAM,WAAW,UAAU;IACzB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,KAAK,OAAO,CAAA;IAC9B,eAAe,CAAC,EAAE,CAAC,CAAC,EAAE,IAAI,KAAK,OAAO,CAAA;CACvC;AASD;;GAEG;AACH,qBAAa,MAAO,YAAW,UAAU;IACvC,QAAQ,EAAE,SAAS,EAAE,CAAA;IACrB,gBAAgB,EAAE,SAAS,EAAE,CAAA;IAC7B,QAAQ,EAAE,SAAS,EAAE,CAAA;IACrB,gBAAgB,EAAE,SAAS,EAAE,CAAA;gBAG3B,OAAO,EAAE,MAAM,EAAE,EACjB,EACE,OAAO,EACP,MAAM,EACN,KAAK,EACL,UAAU,EACV,QAA0B,GAC3B,EAAE,cAAc;IAiDnB,OAAO,CAAC,CAAC,EAAE,IAAI,GAAG,OAAO;IAczB,eAAe,CAAC,CAAC,EAAE,IAAI,GAAG,OAAO;CAWlC"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.js
      deleted file mode 100644
      index 2dbaa16a11460e..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.js
      +++ /dev/null
      @@ -1,99 +0,0 @@
      -// give it a pattern, and it'll be able to tell you if
      -// a given path should be ignored.
      -// Ignoring a path ignores its children if the pattern ends in /**
      -// Ignores are always parsed in dot:true mode
      -import { Minimatch } from 'minimatch';
      -import { Pattern } from './pattern.js';
      -const defaultPlatform = typeof process === 'object' &&
      -    process &&
      -    typeof process.platform === 'string'
      -    ? process.platform
      -    : 'linux';
      -/**
      - * Class used to process ignored patterns
      - */
      -export class Ignore {
      -    relative;
      -    relativeChildren;
      -    absolute;
      -    absoluteChildren;
      -    constructor(ignored, { nobrace, nocase, noext, noglobstar, platform = defaultPlatform, }) {
      -        this.relative = [];
      -        this.absolute = [];
      -        this.relativeChildren = [];
      -        this.absoluteChildren = [];
      -        const mmopts = {
      -            dot: true,
      -            nobrace,
      -            nocase,
      -            noext,
      -            noglobstar,
      -            optimizationLevel: 2,
      -            platform,
      -            nocomment: true,
      -            nonegate: true,
      -        };
      -        // this is a little weird, but it gives us a clean set of optimized
      -        // minimatch matchers, without getting tripped up if one of them
      -        // ends in /** inside a brace section, and it's only inefficient at
      -        // the start of the walk, not along it.
      -        // It'd be nice if the Pattern class just had a .test() method, but
      -        // handling globstars is a bit of a pita, and that code already lives
      -        // in minimatch anyway.
      -        // Another way would be if maybe Minimatch could take its set/globParts
      -        // as an option, and then we could at least just use Pattern to test
      -        // for absolute-ness.
      -        // Yet another way, Minimatch could take an array of glob strings, and
      -        // a cwd option, and do the right thing.
      -        for (const ign of ignored) {
      -            const mm = new Minimatch(ign, mmopts);
      -            for (let i = 0; i < mm.set.length; i++) {
      -                const parsed = mm.set[i];
      -                const globParts = mm.globParts[i];
      -                const p = new Pattern(parsed, globParts, 0, platform);
      -                const m = new Minimatch(p.globString(), mmopts);
      -                const children = globParts[globParts.length - 1] === '**';
      -                const absolute = p.isAbsolute();
      -                if (absolute)
      -                    this.absolute.push(m);
      -                else
      -                    this.relative.push(m);
      -                if (children) {
      -                    if (absolute)
      -                        this.absoluteChildren.push(m);
      -                    else
      -                        this.relativeChildren.push(m);
      -                }
      -            }
      -        }
      -    }
      -    ignored(p) {
      -        const fullpath = p.fullpath();
      -        const fullpaths = `${fullpath}/`;
      -        const relative = p.relative() || '.';
      -        const relatives = `${relative}/`;
      -        for (const m of this.relative) {
      -            if (m.match(relative) || m.match(relatives))
      -                return true;
      -        }
      -        for (const m of this.absolute) {
      -            if (m.match(fullpath) || m.match(fullpaths))
      -                return true;
      -        }
      -        return false;
      -    }
      -    childrenIgnored(p) {
      -        const fullpath = p.fullpath() + '/';
      -        const relative = (p.relative() || '.') + '/';
      -        for (const m of this.relativeChildren) {
      -            if (m.match(relative))
      -                return true;
      -        }
      -        for (const m of this.absoluteChildren) {
      -            if (m.match(fullpath))
      -                true;
      -        }
      -        return false;
      -    }
      -}
      -//# sourceMappingURL=ignore.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.js.map
      deleted file mode 100644
      index 1038b712396eaf..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/ignore.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"ignore.js","sourceRoot":"","sources":["../../src/ignore.ts"],"names":[],"mappings":"AAAA,sDAAsD;AACtD,kCAAkC;AAClC,kEAAkE;AAClE,6CAA6C;AAE7C,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAErC,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAQtC,MAAM,eAAe,GACnB,OAAO,OAAO,KAAK,QAAQ;IAC3B,OAAO;IACP,OAAO,OAAO,CAAC,QAAQ,KAAK,QAAQ;IAClC,CAAC,CAAC,OAAO,CAAC,QAAQ;IAClB,CAAC,CAAC,OAAO,CAAA;AAEb;;GAEG;AACH,MAAM,OAAO,MAAM;IACjB,QAAQ,CAAa;IACrB,gBAAgB,CAAa;IAC7B,QAAQ,CAAa;IACrB,gBAAgB,CAAa;IAE7B,YACE,OAAiB,EACjB,EACE,OAAO,EACP,MAAM,EACN,KAAK,EACL,UAAU,EACV,QAAQ,GAAG,eAAe,GACX;QAEjB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAA;QAClB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAA;QAClB,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAA;QAC1B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAA;QAC1B,MAAM,MAAM,GAAG;YACb,GAAG,EAAE,IAAI;YACT,OAAO;YACP,MAAM;YACN,KAAK;YACL,UAAU;YACV,iBAAiB,EAAE,CAAC;YACpB,QAAQ;YACR,SAAS,EAAE,IAAI;YACf,QAAQ,EAAE,IAAI;SACf,CAAA;QAED,mEAAmE;QACnE,gEAAgE;QAChE,mEAAmE;QACnE,uCAAuC;QACvC,mEAAmE;QACnE,qEAAqE;QACrE,uBAAuB;QACvB,uEAAuE;QACvE,oEAAoE;QACpE,qBAAqB;QACrB,sEAAsE;QACtE,wCAAwC;QACxC,KAAK,MAAM,GAAG,IAAI,OAAO,EAAE;YACzB,MAAM,EAAE,GAAG,IAAI,SAAS,CAAC,GAAG,EAAE,MAAM,CAAC,CAAA;YACrC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;gBACtC,MAAM,MAAM,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;gBACxB,MAAM,SAAS,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,CAAA;gBACjC,MAAM,CAAC,GAAG,IAAI,OAAO,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,EAAE,QAAQ,CAAC,CAAA;gBACrD,MAAM,CAAC,GAAG,IAAI,SAAS,CAAC,CAAC,CAAC,UAAU,EAAE,EAAE,MAAM,CAAC,CAAA;gBAC/C,MAAM,QAAQ,GAAG,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,IAAI,CAAA;gBACzD,MAAM,QAAQ,GAAG,CAAC,CAAC,UAAU,EAAE,CAAA;gBAC/B,IAAI,QAAQ;oBAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;;oBAC9B,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;gBAC1B,IAAI,QAAQ,EAAE;oBACZ,IAAI,QAAQ;wBAAE,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;;wBACtC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;iBACnC;aACF;SACF;IACH,CAAC;IAED,OAAO,CAAC,CAAO;QACb,MAAM,QAAQ,GAAG,CAAC,CAAC,QAAQ,EAAE,CAAA;QAC7B,MAAM,SAAS,GAAG,GAAG,QAAQ,GAAG,CAAA;QAChC,MAAM,QAAQ,GAAG,CAAC,CAAC,QAAQ,EAAE,IAAI,GAAG,CAAA;QACpC,MAAM,SAAS,GAAG,GAAG,QAAQ,GAAG,CAAA;QAChC,KAAK,MAAM,CAAC,IAAI,IAAI,CAAC,QAAQ,EAAE;YAC7B,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC;gBAAE,OAAO,IAAI,CAAA;SACzD;QACD,KAAK,MAAM,CAAC,IAAI,IAAI,CAAC,QAAQ,EAAE;YAC7B,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC;gBAAE,OAAO,IAAI,CAAA;SACzD;QACD,OAAO,KAAK,CAAA;IACd,CAAC;IAED,eAAe,CAAC,CAAO;QACrB,MAAM,QAAQ,GAAG,CAAC,CAAC,QAAQ,EAAE,GAAG,GAAG,CAAA;QACnC,MAAM,QAAQ,GAAG,CAAC,CAAC,CAAC,QAAQ,EAAE,IAAI,GAAG,CAAC,GAAG,GAAG,CAAA;QAC5C,KAAK,MAAM,CAAC,IAAI,IAAI,CAAC,gBAAgB,EAAE;YACrC,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC;gBAAE,OAAO,IAAI,CAAA;SACnC;QACD,KAAK,MAAM,CAAC,IAAI,IAAI,CAAC,gBAAgB,EAAE;YACrC,IAAI,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC;gBAAE,IAAI,CAAA;SAC5B;QACD,OAAO,KAAK,CAAA;IACd,CAAC;CACF","sourcesContent":["// give it a pattern, and it'll be able to tell you if\n// a given path should be ignored.\n// Ignoring a path ignores its children if the pattern ends in /**\n// Ignores are always parsed in dot:true mode\n\nimport { Minimatch } from 'minimatch'\nimport { Path } from 'path-scurry'\nimport { Pattern } from './pattern.js'\nimport { GlobWalkerOpts } from './walker.js'\n\nexport interface IgnoreLike {\n  ignored?: (p: Path) => boolean\n  childrenIgnored?: (p: Path) => boolean\n}\n\nconst defaultPlatform: NodeJS.Platform =\n  typeof process === 'object' &&\n  process &&\n  typeof process.platform === 'string'\n    ? process.platform\n    : 'linux'\n\n/**\n * Class used to process ignored patterns\n */\nexport class Ignore implements IgnoreLike {\n  relative: Minimatch[]\n  relativeChildren: Minimatch[]\n  absolute: Minimatch[]\n  absoluteChildren: Minimatch[]\n\n  constructor(\n    ignored: string[],\n    {\n      nobrace,\n      nocase,\n      noext,\n      noglobstar,\n      platform = defaultPlatform,\n    }: GlobWalkerOpts\n  ) {\n    this.relative = []\n    this.absolute = []\n    this.relativeChildren = []\n    this.absoluteChildren = []\n    const mmopts = {\n      dot: true,\n      nobrace,\n      nocase,\n      noext,\n      noglobstar,\n      optimizationLevel: 2,\n      platform,\n      nocomment: true,\n      nonegate: true,\n    }\n\n    // this is a little weird, but it gives us a clean set of optimized\n    // minimatch matchers, without getting tripped up if one of them\n    // ends in /** inside a brace section, and it's only inefficient at\n    // the start of the walk, not along it.\n    // It'd be nice if the Pattern class just had a .test() method, but\n    // handling globstars is a bit of a pita, and that code already lives\n    // in minimatch anyway.\n    // Another way would be if maybe Minimatch could take its set/globParts\n    // as an option, and then we could at least just use Pattern to test\n    // for absolute-ness.\n    // Yet another way, Minimatch could take an array of glob strings, and\n    // a cwd option, and do the right thing.\n    for (const ign of ignored) {\n      const mm = new Minimatch(ign, mmopts)\n      for (let i = 0; i < mm.set.length; i++) {\n        const parsed = mm.set[i]\n        const globParts = mm.globParts[i]\n        const p = new Pattern(parsed, globParts, 0, platform)\n        const m = new Minimatch(p.globString(), mmopts)\n        const children = globParts[globParts.length - 1] === '**'\n        const absolute = p.isAbsolute()\n        if (absolute) this.absolute.push(m)\n        else this.relative.push(m)\n        if (children) {\n          if (absolute) this.absoluteChildren.push(m)\n          else this.relativeChildren.push(m)\n        }\n      }\n    }\n  }\n\n  ignored(p: Path): boolean {\n    const fullpath = p.fullpath()\n    const fullpaths = `${fullpath}/`\n    const relative = p.relative() || '.'\n    const relatives = `${relative}/`\n    for (const m of this.relative) {\n      if (m.match(relative) || m.match(relatives)) return true\n    }\n    for (const m of this.absolute) {\n      if (m.match(fullpath) || m.match(fullpaths)) return true\n    }\n    return false\n  }\n\n  childrenIgnored(p: Path): boolean {\n    const fullpath = p.fullpath() + '/'\n    const relative = (p.relative() || '.') + '/'\n    for (const m of this.relativeChildren) {\n      if (m.match(relative)) return true\n    }\n    for (const m of this.absoluteChildren) {\n      if (m.match(fullpath)) true\n    }\n    return false\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.d.ts
      deleted file mode 100644
      index 669bf12e6d5916..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.d.ts
      +++ /dev/null
      @@ -1,95 +0,0 @@
      -import { Minipass } from 'minipass';
      -import { Path } from 'path-scurry';
      -import type { GlobOptions, GlobOptionsWithFileTypesFalse, GlobOptionsWithFileTypesTrue, GlobOptionsWithFileTypesUnset } from './glob.js';
      -import { Glob } from './glob.js';
      -/**
      - * Syncronous form of {@link globStream}. Will read all the matches as fast as
      - * you consume them, even all in a single tick if you consume them immediately,
      - * but will still respond to backpressure if they're not consumed immediately.
      - */
      -export declare function globStreamSync(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Minipass;
      -export declare function globStreamSync(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): Minipass;
      -export declare function globStreamSync(pattern: string | string[], options: GlobOptionsWithFileTypesUnset): Minipass;
      -export declare function globStreamSync(pattern: string | string[], options: GlobOptions): Minipass | Minipass;
      -/**
      - * Return a stream that emits all the strings or `Path` objects and
      - * then emits `end` when completed.
      - */
      -export declare function globStream(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): Minipass;
      -export declare function globStream(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Minipass;
      -export declare function globStream(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): Minipass;
      -export declare function globStream(pattern: string | string[], options: GlobOptions): Minipass | Minipass;
      -/**
      - * Synchronous form of {@link glob}
      - */
      -export declare function globSync(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): string[];
      -export declare function globSync(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Path[];
      -export declare function globSync(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): string[];
      -export declare function globSync(pattern: string | string[], options: GlobOptions): Path[] | string[];
      -/**
      - * Perform an asynchronous glob search for the pattern(s) specified. Returns
      - * [Path](https://isaacs.github.io/path-scurry/classes/PathBase) objects if the
      - * {@link withFileTypes} option is set to `true`. See {@link GlobOptions} for
      - * full option descriptions.
      - */
      -declare function glob_(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): Promise;
      -declare function glob_(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Promise;
      -declare function glob_(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): Promise;
      -declare function glob_(pattern: string | string[], options: GlobOptions): Promise;
      -/**
      - * Return a sync iterator for walking glob pattern matches.
      - */
      -export declare function globIterateSync(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): Generator;
      -export declare function globIterateSync(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): Generator;
      -export declare function globIterateSync(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): Generator;
      -export declare function globIterateSync(pattern: string | string[], options: GlobOptions): Generator | Generator;
      -/**
      - * Return an async iterator for walking glob pattern matches.
      - */
      -export declare function globIterate(pattern: string | string[], options?: GlobOptionsWithFileTypesUnset | undefined): AsyncGenerator;
      -export declare function globIterate(pattern: string | string[], options: GlobOptionsWithFileTypesTrue): AsyncGenerator;
      -export declare function globIterate(pattern: string | string[], options: GlobOptionsWithFileTypesFalse): AsyncGenerator;
      -export declare function globIterate(pattern: string | string[], options: GlobOptions): AsyncGenerator | AsyncGenerator;
      -export declare const streamSync: typeof globStreamSync;
      -export declare const stream: typeof globStream & {
      -    sync: typeof globStreamSync;
      -};
      -export declare const iterateSync: typeof globIterateSync;
      -export declare const iterate: typeof globIterate & {
      -    sync: typeof globIterateSync;
      -};
      -export declare const sync: typeof globSync & {
      -    stream: typeof globStreamSync;
      -    iterate: typeof globIterateSync;
      -};
      -export { escape, unescape } from 'minimatch';
      -export { Glob } from './glob.js';
      -export type { GlobOptions, GlobOptionsWithFileTypesFalse, GlobOptionsWithFileTypesTrue, GlobOptionsWithFileTypesUnset, } from './glob.js';
      -export { hasMagic } from './has-magic.js';
      -export type { IgnoreLike } from './ignore.js';
      -export type { MatchStream } from './walker.js';
      -export declare const glob: typeof glob_ & {
      -    glob: typeof glob_;
      -    globSync: typeof globSync;
      -    sync: typeof globSync & {
      -        stream: typeof globStreamSync;
      -        iterate: typeof globIterateSync;
      -    };
      -    globStream: typeof globStream;
      -    stream: typeof globStream & {
      -        sync: typeof globStreamSync;
      -    };
      -    globStreamSync: typeof globStreamSync;
      -    streamSync: typeof globStreamSync;
      -    globIterate: typeof globIterate;
      -    iterate: typeof globIterate & {
      -        sync: typeof globIterateSync;
      -    };
      -    globIterateSync: typeof globIterateSync;
      -    iterateSync: typeof globIterateSync;
      -    Glob: typeof Glob;
      -    hasMagic: (pattern: string | string[], options?: GlobOptions) => boolean;
      -    escape: (s: string, { windowsPathsNoEscape, }?: Pick | undefined) => string;
      -    unescape: (s: string, { windowsPathsNoEscape, }?: Pick | undefined) => string;
      -};
      -//# sourceMappingURL=index.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.d.ts.map
      deleted file mode 100644
      index c60290eb118a91..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAA;AACnC,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,OAAO,KAAK,EACV,WAAW,EACX,6BAA6B,EAC7B,4BAA4B,EAC5B,6BAA6B,EAC9B,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAGhC;;;;GAIG;AACH,wBAAgB,cAAc,CAC5B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;AACvB,wBAAgB,cAAc,CAC5B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAC3B,wBAAgB,cAAc,CAC5B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAC3B,wBAAgB,cAAc,CAC5B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAQlD;;;GAGG;AACH,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAC3B,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;AACvB,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAC3B,wBAAgB,UAAU,CACxB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;AAQlD;;GAEG;AACH,wBAAgB,QAAQ,CACtB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,MAAM,EAAE,CAAA;AACX,wBAAgB,QAAQ,CACtB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,IAAI,EAAE,CAAA;AACT,wBAAgB,QAAQ,CACtB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,MAAM,EAAE,CAAA;AACX,wBAAgB,QAAQ,CACtB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,IAAI,EAAE,GAAG,MAAM,EAAE,CAAA;AAQpB;;;;;GAKG;AACH,iBAAe,KAAK,CAClB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,OAAO,CAAC,MAAM,EAAE,CAAC,CAAA;AACpB,iBAAe,KAAK,CAClB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAA;AAClB,iBAAe,KAAK,CAClB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAA;AACpB,iBAAe,KAAK,CAClB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC,IAAI,EAAE,GAAG,MAAM,EAAE,CAAC,CAAA;AAQ7B;;GAEG;AACH,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AAChC,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AAC9B,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AAChC,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AAQ9D;;GAEG;AACH,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GAAG,SAAS,GAClD,cAAc,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AACrC,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,4BAA4B,GACpC,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AACnC,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,6BAA6B,GACrC,cAAc,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AACrC,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,EAC1B,OAAO,EAAE,WAAW,GACnB,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,GAAG,cAAc,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;AASxE,eAAO,MAAM,UAAU,uBAAiB,CAAA;AACxC,eAAO,MAAM,MAAM;;CAAsD,CAAA;AACzE,eAAO,MAAM,WAAW,wBAAkB,CAAA;AAC1C,eAAO,MAAM,OAAO;;CAElB,CAAA;AACF,eAAO,MAAM,IAAI;;;CAGf,CAAA;AAGF,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAChC,YAAY,EACV,WAAW,EACX,6BAA6B,EAC7B,4BAA4B,EAC5B,6BAA6B,GAC9B,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACzC,YAAY,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAC7C,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAA;AAG9C,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;CAgBf,CAAA"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.js
      deleted file mode 100644
      index 7b270117e740ad..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.js
      +++ /dev/null
      @@ -1,56 +0,0 @@
      -import { escape, unescape } from 'minimatch';
      -import { Glob } from './glob.js';
      -import { hasMagic } from './has-magic.js';
      -export function globStreamSync(pattern, options = {}) {
      -    return new Glob(pattern, options).streamSync();
      -}
      -export function globStream(pattern, options = {}) {
      -    return new Glob(pattern, options).stream();
      -}
      -export function globSync(pattern, options = {}) {
      -    return new Glob(pattern, options).walkSync();
      -}
      -async function glob_(pattern, options = {}) {
      -    return new Glob(pattern, options).walk();
      -}
      -export function globIterateSync(pattern, options = {}) {
      -    return new Glob(pattern, options).iterateSync();
      -}
      -export function globIterate(pattern, options = {}) {
      -    return new Glob(pattern, options).iterate();
      -}
      -// aliases: glob.sync.stream() glob.stream.sync() glob.sync() etc
      -export const streamSync = globStreamSync;
      -export const stream = Object.assign(globStream, { sync: globStreamSync });
      -export const iterateSync = globIterateSync;
      -export const iterate = Object.assign(globIterate, {
      -    sync: globIterateSync,
      -});
      -export const sync = Object.assign(globSync, {
      -    stream: globStreamSync,
      -    iterate: globIterateSync,
      -});
      -/* c8 ignore start */
      -export { escape, unescape } from 'minimatch';
      -export { Glob } from './glob.js';
      -export { hasMagic } from './has-magic.js';
      -/* c8 ignore stop */
      -export const glob = Object.assign(glob_, {
      -    glob: glob_,
      -    globSync,
      -    sync,
      -    globStream,
      -    stream,
      -    globStreamSync,
      -    streamSync,
      -    globIterate,
      -    iterate,
      -    globIterateSync,
      -    iterateSync,
      -    Glob,
      -    hasMagic,
      -    escape,
      -    unescape,
      -});
      -glob.glob = glob;
      -//# sourceMappingURL=index.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.js.map
      deleted file mode 100644
      index 2d4fc077271b15..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/index.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAS5C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAuBzC,MAAM,UAAU,cAAc,CAC5B,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,UAAU,EAAE,CAAA;AAChD,CAAC;AAsBD,MAAM,UAAU,UAAU,CACxB,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,MAAM,EAAE,CAAA;AAC5C,CAAC;AAqBD,MAAM,UAAU,QAAQ,CACtB,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,QAAQ,EAAE,CAAA;AAC9C,CAAC;AAwBD,KAAK,UAAU,KAAK,CAClB,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,EAAE,CAAA;AAC1C,CAAC;AAqBD,MAAM,UAAU,eAAe,CAC7B,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,WAAW,EAAE,CAAA;AACjD,CAAC;AAqBD,MAAM,UAAU,WAAW,CACzB,OAA0B,EAC1B,UAAuB,EAAE;IAEzB,OAAO,IAAI,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,OAAO,EAAE,CAAA;AAC7C,CAAC;AAED,iEAAiE;AACjE,MAAM,CAAC,MAAM,UAAU,GAAG,cAAc,CAAA;AACxC,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE,CAAC,CAAA;AACzE,MAAM,CAAC,MAAM,WAAW,GAAG,eAAe,CAAA;AAC1C,MAAM,CAAC,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,EAAE;IAChD,IAAI,EAAE,eAAe;CACtB,CAAC,CAAA;AACF,MAAM,CAAC,MAAM,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE;IAC1C,MAAM,EAAE,cAAc;IACtB,OAAO,EAAE,eAAe;CACzB,CAAC,CAAA;AAEF,qBAAqB;AACrB,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAOhC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAGzC,oBAAoB;AAEpB,MAAM,CAAC,MAAM,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE;IACvC,IAAI,EAAE,KAAK;IACX,QAAQ;IACR,IAAI;IACJ,UAAU;IACV,MAAM;IACN,cAAc;IACd,UAAU;IACV,WAAW;IACX,OAAO;IACP,eAAe;IACf,WAAW;IACX,IAAI;IACJ,QAAQ;IACR,MAAM;IACN,QAAQ;CACT,CAAC,CAAA;AACF,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA","sourcesContent":["import { escape, unescape } from 'minimatch'\nimport { Minipass } from 'minipass'\nimport { Path } from 'path-scurry'\nimport type {\n  GlobOptions,\n  GlobOptionsWithFileTypesFalse,\n  GlobOptionsWithFileTypesTrue,\n  GlobOptionsWithFileTypesUnset,\n} from './glob.js'\nimport { Glob } from './glob.js'\nimport { hasMagic } from './has-magic.js'\n\n/**\n * Syncronous form of {@link globStream}. Will read all the matches as fast as\n * you consume them, even all in a single tick if you consume them immediately,\n * but will still respond to backpressure if they're not consumed immediately.\n */\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Minipass\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): Minipass\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesUnset\n): Minipass\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptions\n): Minipass | Minipass\nexport function globStreamSync(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).streamSync()\n}\n\n/**\n * Return a stream that emits all the strings or `Path` objects and\n * then emits `end` when completed.\n */\nexport function globStream(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): Minipass\nexport function globStream(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Minipass\nexport function globStream(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): Minipass\nexport function globStream(\n  pattern: string | string[],\n  options: GlobOptions\n): Minipass | Minipass\nexport function globStream(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).stream()\n}\n\n/**\n * Synchronous form of {@link glob}\n */\nexport function globSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): string[]\nexport function globSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Path[]\nexport function globSync(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): string[]\nexport function globSync(\n  pattern: string | string[],\n  options: GlobOptions\n): Path[] | string[]\nexport function globSync(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).walkSync()\n}\n\n/**\n * Perform an asynchronous glob search for the pattern(s) specified. Returns\n * [Path](https://isaacs.github.io/path-scurry/classes/PathBase) objects if the\n * {@link withFileTypes} option is set to `true`. See {@link GlobOptions} for\n * full option descriptions.\n */\nasync function glob_(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): Promise\nasync function glob_(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Promise\nasync function glob_(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): Promise\nasync function glob_(\n  pattern: string | string[],\n  options: GlobOptions\n): Promise\nasync function glob_(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).walk()\n}\n\n/**\n * Return a sync iterator for walking glob pattern matches.\n */\nexport function globIterateSync(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): Generator\nexport function globIterateSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): Generator\nexport function globIterateSync(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): Generator\nexport function globIterateSync(\n  pattern: string | string[],\n  options: GlobOptions\n): Generator | Generator\nexport function globIterateSync(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).iterateSync()\n}\n\n/**\n * Return an async iterator for walking glob pattern matches.\n */\nexport function globIterate(\n  pattern: string | string[],\n  options?: GlobOptionsWithFileTypesUnset | undefined\n): AsyncGenerator\nexport function globIterate(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesTrue\n): AsyncGenerator\nexport function globIterate(\n  pattern: string | string[],\n  options: GlobOptionsWithFileTypesFalse\n): AsyncGenerator\nexport function globIterate(\n  pattern: string | string[],\n  options: GlobOptions\n): AsyncGenerator | AsyncGenerator\nexport function globIterate(\n  pattern: string | string[],\n  options: GlobOptions = {}\n) {\n  return new Glob(pattern, options).iterate()\n}\n\n// aliases: glob.sync.stream() glob.stream.sync() glob.sync() etc\nexport const streamSync = globStreamSync\nexport const stream = Object.assign(globStream, { sync: globStreamSync })\nexport const iterateSync = globIterateSync\nexport const iterate = Object.assign(globIterate, {\n  sync: globIterateSync,\n})\nexport const sync = Object.assign(globSync, {\n  stream: globStreamSync,\n  iterate: globIterateSync,\n})\n\n/* c8 ignore start */\nexport { escape, unescape } from 'minimatch'\nexport { Glob } from './glob.js'\nexport type {\n  GlobOptions,\n  GlobOptionsWithFileTypesFalse,\n  GlobOptionsWithFileTypesTrue,\n  GlobOptionsWithFileTypesUnset,\n} from './glob.js'\nexport { hasMagic } from './has-magic.js'\nexport type { IgnoreLike } from './ignore.js'\nexport type { MatchStream } from './walker.js'\n/* c8 ignore stop */\n\nexport const glob = Object.assign(glob_, {\n  glob: glob_,\n  globSync,\n  sync,\n  globStream,\n  stream,\n  globStreamSync,\n  streamSync,\n  globIterate,\n  iterate,\n  globIterateSync,\n  iterateSync,\n  Glob,\n  hasMagic,\n  escape,\n  unescape,\n})\nglob.glob = glob\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/package.json
      deleted file mode 100644
      index 5cc80943d565b7..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/package.json
      +++ /dev/null
      @@ -1,4 +0,0 @@
      -{
      -  "version": "10.3.3",
      -  "type": "module"
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.d.ts
      deleted file mode 100644
      index 109cc4e7a5dae3..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.d.ts
      +++ /dev/null
      @@ -1,77 +0,0 @@
      -/// 
      -import { GLOBSTAR } from 'minimatch';
      -export type MMPattern = string | RegExp | typeof GLOBSTAR;
      -export type PatternList = [p: MMPattern, ...rest: MMPattern[]];
      -export type UNCPatternList = [
      -    p0: '',
      -    p1: '',
      -    p2: string,
      -    p3: string,
      -    ...rest: MMPattern[]
      -];
      -export type DrivePatternList = [p0: string, ...rest: MMPattern[]];
      -export type AbsolutePatternList = [p0: '', ...rest: MMPattern[]];
      -export type GlobList = [p: string, ...rest: string[]];
      -/**
      - * An immutable-ish view on an array of glob parts and their parsed
      - * results
      - */
      -export declare class Pattern {
      -    #private;
      -    readonly length: number;
      -    constructor(patternList: MMPattern[], globList: string[], index: number, platform: NodeJS.Platform);
      -    /**
      -     * The first entry in the parsed list of patterns
      -     */
      -    pattern(): MMPattern;
      -    /**
      -     * true of if pattern() returns a string
      -     */
      -    isString(): boolean;
      -    /**
      -     * true of if pattern() returns GLOBSTAR
      -     */
      -    isGlobstar(): boolean;
      -    /**
      -     * true if pattern() returns a regexp
      -     */
      -    isRegExp(): boolean;
      -    /**
      -     * The /-joined set of glob parts that make up this pattern
      -     */
      -    globString(): string;
      -    /**
      -     * true if there are more pattern parts after this one
      -     */
      -    hasMore(): boolean;
      -    /**
      -     * The rest of the pattern after this part, or null if this is the end
      -     */
      -    rest(): Pattern | null;
      -    /**
      -     * true if the pattern represents a //unc/path/ on windows
      -     */
      -    isUNC(): boolean;
      -    /**
      -     * True if the pattern starts with a drive letter on Windows
      -     */
      -    isDrive(): boolean;
      -    /**
      -     * True if the pattern is rooted on an absolute path
      -     */
      -    isAbsolute(): boolean;
      -    /**
      -     * consume the root of the pattern, and return it
      -     */
      -    root(): string;
      -    /**
      -     * Check to see if the current globstar pattern is allowed to follow
      -     * a symbolic link.
      -     */
      -    checkFollowGlobstar(): boolean;
      -    /**
      -     * Mark that the current globstar pattern is following a symbolic link
      -     */
      -    markFollowGlobstar(): boolean;
      -}
      -//# sourceMappingURL=pattern.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.d.ts.map
      deleted file mode 100644
      index 1430a77dadbbe4..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"pattern.d.ts","sourceRoot":"","sources":["../../src/pattern.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AACpC,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,QAAQ,CAAA;AAGzD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,SAAS,EAAE,CAAC,CAAA;AAC9D,MAAM,MAAM,cAAc,GAAG;IAC3B,EAAE,EAAE,EAAE;IACN,EAAE,EAAE,EAAE;IACN,EAAE,EAAE,MAAM;IACV,EAAE,EAAE,MAAM;IACV,GAAG,IAAI,EAAE,SAAS,EAAE;CACrB,CAAA;AACD,MAAM,MAAM,gBAAgB,GAAG,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,SAAS,EAAE,CAAC,CAAA;AACjE,MAAM,MAAM,mBAAmB,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,GAAG,IAAI,EAAE,SAAS,EAAE,CAAC,CAAA;AAChE,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,MAAM,EAAE,CAAC,CAAA;AAMrD;;;GAGG;AACH,qBAAa,OAAO;;IAIlB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;gBAUrB,WAAW,EAAE,SAAS,EAAE,EACxB,QAAQ,EAAE,MAAM,EAAE,EAClB,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,CAAC,QAAQ;IA6D3B;;OAEG;IACH,OAAO,IAAI,SAAS;IAIpB;;OAEG;IACH,QAAQ,IAAI,OAAO;IAGnB;;OAEG;IACH,UAAU,IAAI,OAAO;IAGrB;;OAEG;IACH,QAAQ,IAAI,OAAO;IAInB;;OAEG;IACH,UAAU,IAAI,MAAM;IAUpB;;OAEG;IACH,OAAO,IAAI,OAAO;IAIlB;;OAEG;IACH,IAAI,IAAI,OAAO,GAAG,IAAI;IAetB;;OAEG;IACH,KAAK,IAAI,OAAO;IAoBhB;;OAEG;IACH,OAAO,IAAI,OAAO;IAelB;;OAEG;IACH,UAAU,IAAI,OAAO;IAUrB;;OAEG;IACH,IAAI,IAAI,MAAM;IAOd;;;OAGG;IACH,mBAAmB,IAAI,OAAO;IAQ9B;;OAEG;IACH,kBAAkB,IAAI,OAAO;CAM9B"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.js
      deleted file mode 100644
      index 60aa415d92fd12..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.js
      +++ /dev/null
      @@ -1,215 +0,0 @@
      -// this is just a very light wrapper around 2 arrays with an offset index
      -import { GLOBSTAR } from 'minimatch';
      -const isPatternList = (pl) => pl.length >= 1;
      -const isGlobList = (gl) => gl.length >= 1;
      -/**
      - * An immutable-ish view on an array of glob parts and their parsed
      - * results
      - */
      -export class Pattern {
      -    #patternList;
      -    #globList;
      -    #index;
      -    length;
      -    #platform;
      -    #rest;
      -    #globString;
      -    #isDrive;
      -    #isUNC;
      -    #isAbsolute;
      -    #followGlobstar = true;
      -    constructor(patternList, globList, index, platform) {
      -        if (!isPatternList(patternList)) {
      -            throw new TypeError('empty pattern list');
      -        }
      -        if (!isGlobList(globList)) {
      -            throw new TypeError('empty glob list');
      -        }
      -        if (globList.length !== patternList.length) {
      -            throw new TypeError('mismatched pattern list and glob list lengths');
      -        }
      -        this.length = patternList.length;
      -        if (index < 0 || index >= this.length) {
      -            throw new TypeError('index out of range');
      -        }
      -        this.#patternList = patternList;
      -        this.#globList = globList;
      -        this.#index = index;
      -        this.#platform = platform;
      -        // normalize root entries of absolute patterns on initial creation.
      -        if (this.#index === 0) {
      -            // c: => ['c:/']
      -            // C:/ => ['C:/']
      -            // C:/x => ['C:/', 'x']
      -            // //host/share => ['//host/share/']
      -            // //host/share/ => ['//host/share/']
      -            // //host/share/x => ['//host/share/', 'x']
      -            // /etc => ['/', 'etc']
      -            // / => ['/']
      -            if (this.isUNC()) {
      -                // '' / '' / 'host' / 'share'
      -                const [p0, p1, p2, p3, ...prest] = this.#patternList;
      -                const [g0, g1, g2, g3, ...grest] = this.#globList;
      -                if (prest[0] === '') {
      -                    // ends in /
      -                    prest.shift();
      -                    grest.shift();
      -                }
      -                const p = [p0, p1, p2, p3, ''].join('/');
      -                const g = [g0, g1, g2, g3, ''].join('/');
      -                this.#patternList = [p, ...prest];
      -                this.#globList = [g, ...grest];
      -                this.length = this.#patternList.length;
      -            }
      -            else if (this.isDrive() || this.isAbsolute()) {
      -                const [p1, ...prest] = this.#patternList;
      -                const [g1, ...grest] = this.#globList;
      -                if (prest[0] === '') {
      -                    // ends in /
      -                    prest.shift();
      -                    grest.shift();
      -                }
      -                const p = p1 + '/';
      -                const g = g1 + '/';
      -                this.#patternList = [p, ...prest];
      -                this.#globList = [g, ...grest];
      -                this.length = this.#patternList.length;
      -            }
      -        }
      -    }
      -    /**
      -     * The first entry in the parsed list of patterns
      -     */
      -    pattern() {
      -        return this.#patternList[this.#index];
      -    }
      -    /**
      -     * true of if pattern() returns a string
      -     */
      -    isString() {
      -        return typeof this.#patternList[this.#index] === 'string';
      -    }
      -    /**
      -     * true of if pattern() returns GLOBSTAR
      -     */
      -    isGlobstar() {
      -        return this.#patternList[this.#index] === GLOBSTAR;
      -    }
      -    /**
      -     * true if pattern() returns a regexp
      -     */
      -    isRegExp() {
      -        return this.#patternList[this.#index] instanceof RegExp;
      -    }
      -    /**
      -     * The /-joined set of glob parts that make up this pattern
      -     */
      -    globString() {
      -        return (this.#globString =
      -            this.#globString ||
      -                (this.#index === 0
      -                    ? this.isAbsolute()
      -                        ? this.#globList[0] + this.#globList.slice(1).join('/')
      -                        : this.#globList.join('/')
      -                    : this.#globList.slice(this.#index).join('/')));
      -    }
      -    /**
      -     * true if there are more pattern parts after this one
      -     */
      -    hasMore() {
      -        return this.length > this.#index + 1;
      -    }
      -    /**
      -     * The rest of the pattern after this part, or null if this is the end
      -     */
      -    rest() {
      -        if (this.#rest !== undefined)
      -            return this.#rest;
      -        if (!this.hasMore())
      -            return (this.#rest = null);
      -        this.#rest = new Pattern(this.#patternList, this.#globList, this.#index + 1, this.#platform);
      -        this.#rest.#isAbsolute = this.#isAbsolute;
      -        this.#rest.#isUNC = this.#isUNC;
      -        this.#rest.#isDrive = this.#isDrive;
      -        return this.#rest;
      -    }
      -    /**
      -     * true if the pattern represents a //unc/path/ on windows
      -     */
      -    isUNC() {
      -        const pl = this.#patternList;
      -        return this.#isUNC !== undefined
      -            ? this.#isUNC
      -            : (this.#isUNC =
      -                this.#platform === 'win32' &&
      -                    this.#index === 0 &&
      -                    pl[0] === '' &&
      -                    pl[1] === '' &&
      -                    typeof pl[2] === 'string' &&
      -                    !!pl[2] &&
      -                    typeof pl[3] === 'string' &&
      -                    !!pl[3]);
      -    }
      -    // pattern like C:/...
      -    // split = ['C:', ...]
      -    // XXX: would be nice to handle patterns like `c:*` to test the cwd
      -    // in c: for *, but I don't know of a way to even figure out what that
      -    // cwd is without actually chdir'ing into it?
      -    /**
      -     * True if the pattern starts with a drive letter on Windows
      -     */
      -    isDrive() {
      -        const pl = this.#patternList;
      -        return this.#isDrive !== undefined
      -            ? this.#isDrive
      -            : (this.#isDrive =
      -                this.#platform === 'win32' &&
      -                    this.#index === 0 &&
      -                    this.length > 1 &&
      -                    typeof pl[0] === 'string' &&
      -                    /^[a-z]:$/i.test(pl[0]));
      -    }
      -    // pattern = '/' or '/...' or '/x/...'
      -    // split = ['', ''] or ['', ...] or ['', 'x', ...]
      -    // Drive and UNC both considered absolute on windows
      -    /**
      -     * True if the pattern is rooted on an absolute path
      -     */
      -    isAbsolute() {
      -        const pl = this.#patternList;
      -        return this.#isAbsolute !== undefined
      -            ? this.#isAbsolute
      -            : (this.#isAbsolute =
      -                (pl[0] === '' && pl.length > 1) ||
      -                    this.isDrive() ||
      -                    this.isUNC());
      -    }
      -    /**
      -     * consume the root of the pattern, and return it
      -     */
      -    root() {
      -        const p = this.#patternList[0];
      -        return typeof p === 'string' && this.isAbsolute() && this.#index === 0
      -            ? p
      -            : '';
      -    }
      -    /**
      -     * Check to see if the current globstar pattern is allowed to follow
      -     * a symbolic link.
      -     */
      -    checkFollowGlobstar() {
      -        return !(this.#index === 0 ||
      -            !this.isGlobstar() ||
      -            !this.#followGlobstar);
      -    }
      -    /**
      -     * Mark that the current globstar pattern is following a symbolic link
      -     */
      -    markFollowGlobstar() {
      -        if (this.#index === 0 || !this.isGlobstar() || !this.#followGlobstar)
      -            return false;
      -        this.#followGlobstar = false;
      -        return true;
      -    }
      -}
      -//# sourceMappingURL=pattern.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.js.map
      deleted file mode 100644
      index bb039c142107fc..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/pattern.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"pattern.js","sourceRoot":"","sources":["../../src/pattern.ts"],"names":[],"mappings":"AAAA,yEAAyE;AAEzE,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAgBpC,MAAM,aAAa,GAAG,CAAC,EAAe,EAAqB,EAAE,CAC3D,EAAE,CAAC,MAAM,IAAI,CAAC,CAAA;AAChB,MAAM,UAAU,GAAG,CAAC,EAAY,EAAkB,EAAE,CAAC,EAAE,CAAC,MAAM,IAAI,CAAC,CAAA;AAEnE;;;GAGG;AACH,MAAM,OAAO,OAAO;IACT,YAAY,CAAa;IACzB,SAAS,CAAU;IACnB,MAAM,CAAQ;IACd,MAAM,CAAQ;IACd,SAAS,CAAiB;IACnC,KAAK,CAAiB;IACtB,WAAW,CAAS;IACpB,QAAQ,CAAU;IAClB,MAAM,CAAU;IAChB,WAAW,CAAU;IACrB,eAAe,GAAY,IAAI,CAAA;IAE/B,YACE,WAAwB,EACxB,QAAkB,EAClB,KAAa,EACb,QAAyB;QAEzB,IAAI,CAAC,aAAa,CAAC,WAAW,CAAC,EAAE;YAC/B,MAAM,IAAI,SAAS,CAAC,oBAAoB,CAAC,CAAA;SAC1C;QACD,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE;YACzB,MAAM,IAAI,SAAS,CAAC,iBAAiB,CAAC,CAAA;SACvC;QACD,IAAI,QAAQ,CAAC,MAAM,KAAK,WAAW,CAAC,MAAM,EAAE;YAC1C,MAAM,IAAI,SAAS,CAAC,+CAA+C,CAAC,CAAA;SACrE;QACD,IAAI,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAA;QAChC,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,MAAM,EAAE;YACrC,MAAM,IAAI,SAAS,CAAC,oBAAoB,CAAC,CAAA;SAC1C;QACD,IAAI,CAAC,YAAY,GAAG,WAAW,CAAA;QAC/B,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAA;QACzB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;QACnB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAA;QAEzB,mEAAmE;QACnE,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE;YACrB,gBAAgB;YAChB,iBAAiB;YACjB,uBAAuB;YACvB,oCAAoC;YACpC,qCAAqC;YACrC,2CAA2C;YAC3C,uBAAuB;YACvB,aAAa;YACb,IAAI,IAAI,CAAC,KAAK,EAAE,EAAE;gBAChB,6BAA6B;gBAC7B,MAAM,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,YAAY,CAAA;gBACpD,MAAM,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,SAAS,CAAA;gBACjD,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE;oBACnB,YAAY;oBACZ,KAAK,CAAC,KAAK,EAAE,CAAA;oBACb,KAAK,CAAC,KAAK,EAAE,CAAA;iBACd;gBACD,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;gBACxC,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;gBACxC,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,EAAE,GAAG,KAAK,CAAC,CAAA;gBACjC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,EAAE,GAAG,KAAK,CAAC,CAAA;gBAC9B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAA;aACvC;iBAAM,IAAI,IAAI,CAAC,OAAO,EAAE,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE;gBAC9C,MAAM,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,YAAY,CAAA;gBACxC,MAAM,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,SAAS,CAAA;gBACrC,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE;oBACnB,YAAY;oBACZ,KAAK,CAAC,KAAK,EAAE,CAAA;oBACb,KAAK,CAAC,KAAK,EAAE,CAAA;iBACd;gBACD,MAAM,CAAC,GAAI,EAAa,GAAG,GAAG,CAAA;gBAC9B,MAAM,CAAC,GAAG,EAAE,GAAG,GAAG,CAAA;gBAClB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,EAAE,GAAG,KAAK,CAAC,CAAA;gBACjC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,EAAE,GAAG,KAAK,CAAC,CAAA;gBAC9B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAA;aACvC;SACF;IACH,CAAC;IAED;;OAEG;IACH,OAAO;QACL,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACvC,CAAC;IAED;;OAEG;IACH,QAAQ;QACN,OAAO,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAA;IAC3D,CAAC;IACD;;OAEG;IACH,UAAU;QACR,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,QAAQ,CAAA;IACpD,CAAC;IACD;;OAEG;IACH,QAAQ;QACN,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,YAAY,MAAM,CAAA;IACzD,CAAC;IAED;;OAEG;IACH,UAAU;QACR,OAAO,CAAC,IAAI,CAAC,WAAW;YACtB,IAAI,CAAC,WAAW;gBAChB,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC;oBAChB,CAAC,CAAC,IAAI,CAAC,UAAU,EAAE;wBACjB,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;wBACvD,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC;oBAC5B,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACrD,CAAC;IAED;;OAEG;IACH,OAAO;QACL,OAAO,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,CAAA;IACtC,CAAC;IAED;;OAEG;IACH,IAAI;QACF,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS;YAAE,OAAO,IAAI,CAAC,KAAK,CAAA;QAC/C,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YAAE,OAAO,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,CAAA;QAC/C,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,CACtB,IAAI,CAAC,YAAY,EACjB,IAAI,CAAC,SAAS,EACd,IAAI,CAAC,MAAM,GAAG,CAAC,EACf,IAAI,CAAC,SAAS,CACf,CAAA;QACD,IAAI,CAAC,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAA;QACzC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;QAC/B,IAAI,CAAC,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAA;QACnC,OAAO,IAAI,CAAC,KAAK,CAAA;IACnB,CAAC;IAED;;OAEG;IACH,KAAK;QACH,MAAM,EAAE,GAAG,IAAI,CAAC,YAAY,CAAA;QAC5B,OAAO,IAAI,CAAC,MAAM,KAAK,SAAS;YAC9B,CAAC,CAAC,IAAI,CAAC,MAAM;YACb,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM;gBACV,IAAI,CAAC,SAAS,KAAK,OAAO;oBAC1B,IAAI,CAAC,MAAM,KAAK,CAAC;oBACjB,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE;oBACZ,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE;oBACZ,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,QAAQ;oBACzB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;oBACP,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,QAAQ;oBACzB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;IAChB,CAAC;IAED,sBAAsB;IACtB,sBAAsB;IACtB,mEAAmE;IACnE,sEAAsE;IACtE,6CAA6C;IAC7C;;OAEG;IACH,OAAO;QACL,MAAM,EAAE,GAAG,IAAI,CAAC,YAAY,CAAA;QAC5B,OAAO,IAAI,CAAC,QAAQ,KAAK,SAAS;YAChC,CAAC,CAAC,IAAI,CAAC,QAAQ;YACf,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ;gBACZ,IAAI,CAAC,SAAS,KAAK,OAAO;oBAC1B,IAAI,CAAC,MAAM,KAAK,CAAC;oBACjB,IAAI,CAAC,MAAM,GAAG,CAAC;oBACf,OAAO,EAAE,CAAC,CAAC,CAAC,KAAK,QAAQ;oBACzB,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;IAChC,CAAC;IAED,sCAAsC;IACtC,kDAAkD;IAClD,oDAAoD;IACpD;;OAEG;IACH,UAAU;QACR,MAAM,EAAE,GAAG,IAAI,CAAC,YAAY,CAAA;QAC5B,OAAO,IAAI,CAAC,WAAW,KAAK,SAAS;YACnC,CAAC,CAAC,IAAI,CAAC,WAAW;YAClB,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW;gBACf,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC;oBAC/B,IAAI,CAAC,OAAO,EAAE;oBACd,IAAI,CAAC,KAAK,EAAE,CAAC,CAAA;IACrB,CAAC;IAED;;OAEG;IACH,IAAI;QACF,MAAM,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAA;QAC9B,OAAO,OAAO,CAAC,KAAK,QAAQ,IAAI,IAAI,CAAC,UAAU,EAAE,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;YACpE,CAAC,CAAC,CAAC;YACH,CAAC,CAAC,EAAE,CAAA;IACR,CAAC;IAED;;;OAGG;IACH,mBAAmB;QACjB,OAAO,CAAC,CACN,IAAI,CAAC,MAAM,KAAK,CAAC;YACjB,CAAC,IAAI,CAAC,UAAU,EAAE;YAClB,CAAC,IAAI,CAAC,eAAe,CACtB,CAAA;IACH,CAAC;IAED;;OAEG;IACH,kBAAkB;QAChB,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,IAAI,CAAC,eAAe;YAClE,OAAO,KAAK,CAAA;QACd,IAAI,CAAC,eAAe,GAAG,KAAK,CAAA;QAC5B,OAAO,IAAI,CAAA;IACb,CAAC;CACF","sourcesContent":["// this is just a very light wrapper around 2 arrays with an offset index\n\nimport { GLOBSTAR } from 'minimatch'\nexport type MMPattern = string | RegExp | typeof GLOBSTAR\n\n// an array of length >= 1\nexport type PatternList = [p: MMPattern, ...rest: MMPattern[]]\nexport type UNCPatternList = [\n  p0: '',\n  p1: '',\n  p2: string,\n  p3: string,\n  ...rest: MMPattern[]\n]\nexport type DrivePatternList = [p0: string, ...rest: MMPattern[]]\nexport type AbsolutePatternList = [p0: '', ...rest: MMPattern[]]\nexport type GlobList = [p: string, ...rest: string[]]\n\nconst isPatternList = (pl: MMPattern[]): pl is PatternList =>\n  pl.length >= 1\nconst isGlobList = (gl: string[]): gl is GlobList => gl.length >= 1\n\n/**\n * An immutable-ish view on an array of glob parts and their parsed\n * results\n */\nexport class Pattern {\n  readonly #patternList: PatternList\n  readonly #globList: GlobList\n  readonly #index: number\n  readonly length: number\n  readonly #platform: NodeJS.Platform\n  #rest?: Pattern | null\n  #globString?: string\n  #isDrive?: boolean\n  #isUNC?: boolean\n  #isAbsolute?: boolean\n  #followGlobstar: boolean = true\n\n  constructor(\n    patternList: MMPattern[],\n    globList: string[],\n    index: number,\n    platform: NodeJS.Platform\n  ) {\n    if (!isPatternList(patternList)) {\n      throw new TypeError('empty pattern list')\n    }\n    if (!isGlobList(globList)) {\n      throw new TypeError('empty glob list')\n    }\n    if (globList.length !== patternList.length) {\n      throw new TypeError('mismatched pattern list and glob list lengths')\n    }\n    this.length = patternList.length\n    if (index < 0 || index >= this.length) {\n      throw new TypeError('index out of range')\n    }\n    this.#patternList = patternList\n    this.#globList = globList\n    this.#index = index\n    this.#platform = platform\n\n    // normalize root entries of absolute patterns on initial creation.\n    if (this.#index === 0) {\n      // c: => ['c:/']\n      // C:/ => ['C:/']\n      // C:/x => ['C:/', 'x']\n      // //host/share => ['//host/share/']\n      // //host/share/ => ['//host/share/']\n      // //host/share/x => ['//host/share/', 'x']\n      // /etc => ['/', 'etc']\n      // / => ['/']\n      if (this.isUNC()) {\n        // '' / '' / 'host' / 'share'\n        const [p0, p1, p2, p3, ...prest] = this.#patternList\n        const [g0, g1, g2, g3, ...grest] = this.#globList\n        if (prest[0] === '') {\n          // ends in /\n          prest.shift()\n          grest.shift()\n        }\n        const p = [p0, p1, p2, p3, ''].join('/')\n        const g = [g0, g1, g2, g3, ''].join('/')\n        this.#patternList = [p, ...prest]\n        this.#globList = [g, ...grest]\n        this.length = this.#patternList.length\n      } else if (this.isDrive() || this.isAbsolute()) {\n        const [p1, ...prest] = this.#patternList\n        const [g1, ...grest] = this.#globList\n        if (prest[0] === '') {\n          // ends in /\n          prest.shift()\n          grest.shift()\n        }\n        const p = (p1 as string) + '/'\n        const g = g1 + '/'\n        this.#patternList = [p, ...prest]\n        this.#globList = [g, ...grest]\n        this.length = this.#patternList.length\n      }\n    }\n  }\n\n  /**\n   * The first entry in the parsed list of patterns\n   */\n  pattern(): MMPattern {\n    return this.#patternList[this.#index]\n  }\n\n  /**\n   * true of if pattern() returns a string\n   */\n  isString(): boolean {\n    return typeof this.#patternList[this.#index] === 'string'\n  }\n  /**\n   * true of if pattern() returns GLOBSTAR\n   */\n  isGlobstar(): boolean {\n    return this.#patternList[this.#index] === GLOBSTAR\n  }\n  /**\n   * true if pattern() returns a regexp\n   */\n  isRegExp(): boolean {\n    return this.#patternList[this.#index] instanceof RegExp\n  }\n\n  /**\n   * The /-joined set of glob parts that make up this pattern\n   */\n  globString(): string {\n    return (this.#globString =\n      this.#globString ||\n      (this.#index === 0\n        ? this.isAbsolute()\n          ? this.#globList[0] + this.#globList.slice(1).join('/')\n          : this.#globList.join('/')\n        : this.#globList.slice(this.#index).join('/')))\n  }\n\n  /**\n   * true if there are more pattern parts after this one\n   */\n  hasMore(): boolean {\n    return this.length > this.#index + 1\n  }\n\n  /**\n   * The rest of the pattern after this part, or null if this is the end\n   */\n  rest(): Pattern | null {\n    if (this.#rest !== undefined) return this.#rest\n    if (!this.hasMore()) return (this.#rest = null)\n    this.#rest = new Pattern(\n      this.#patternList,\n      this.#globList,\n      this.#index + 1,\n      this.#platform\n    )\n    this.#rest.#isAbsolute = this.#isAbsolute\n    this.#rest.#isUNC = this.#isUNC\n    this.#rest.#isDrive = this.#isDrive\n    return this.#rest\n  }\n\n  /**\n   * true if the pattern represents a //unc/path/ on windows\n   */\n  isUNC(): boolean {\n    const pl = this.#patternList\n    return this.#isUNC !== undefined\n      ? this.#isUNC\n      : (this.#isUNC =\n          this.#platform === 'win32' &&\n          this.#index === 0 &&\n          pl[0] === '' &&\n          pl[1] === '' &&\n          typeof pl[2] === 'string' &&\n          !!pl[2] &&\n          typeof pl[3] === 'string' &&\n          !!pl[3])\n  }\n\n  // pattern like C:/...\n  // split = ['C:', ...]\n  // XXX: would be nice to handle patterns like `c:*` to test the cwd\n  // in c: for *, but I don't know of a way to even figure out what that\n  // cwd is without actually chdir'ing into it?\n  /**\n   * True if the pattern starts with a drive letter on Windows\n   */\n  isDrive(): boolean {\n    const pl = this.#patternList\n    return this.#isDrive !== undefined\n      ? this.#isDrive\n      : (this.#isDrive =\n          this.#platform === 'win32' &&\n          this.#index === 0 &&\n          this.length > 1 &&\n          typeof pl[0] === 'string' &&\n          /^[a-z]:$/i.test(pl[0]))\n  }\n\n  // pattern = '/' or '/...' or '/x/...'\n  // split = ['', ''] or ['', ...] or ['', 'x', ...]\n  // Drive and UNC both considered absolute on windows\n  /**\n   * True if the pattern is rooted on an absolute path\n   */\n  isAbsolute(): boolean {\n    const pl = this.#patternList\n    return this.#isAbsolute !== undefined\n      ? this.#isAbsolute\n      : (this.#isAbsolute =\n          (pl[0] === '' && pl.length > 1) ||\n          this.isDrive() ||\n          this.isUNC())\n  }\n\n  /**\n   * consume the root of the pattern, and return it\n   */\n  root(): string {\n    const p = this.#patternList[0]\n    return typeof p === 'string' && this.isAbsolute() && this.#index === 0\n      ? p\n      : ''\n  }\n\n  /**\n   * Check to see if the current globstar pattern is allowed to follow\n   * a symbolic link.\n   */\n  checkFollowGlobstar(): boolean {\n    return !(\n      this.#index === 0 ||\n      !this.isGlobstar() ||\n      !this.#followGlobstar\n    )\n  }\n\n  /**\n   * Mark that the current globstar pattern is following a symbolic link\n   */\n  markFollowGlobstar(): boolean {\n    if (this.#index === 0 || !this.isGlobstar() || !this.#followGlobstar)\n      return false\n    this.#followGlobstar = false\n    return true\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.d.ts
      deleted file mode 100644
      index ccedfbf2820f7d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.d.ts
      +++ /dev/null
      @@ -1,59 +0,0 @@
      -import { MMRegExp } from 'minimatch';
      -import { Path } from 'path-scurry';
      -import { Pattern } from './pattern.js';
      -import { GlobWalkerOpts } from './walker.js';
      -/**
      - * A cache of which patterns have been processed for a given Path
      - */
      -export declare class HasWalkedCache {
      -    store: Map>;
      -    constructor(store?: Map>);
      -    copy(): HasWalkedCache;
      -    hasWalked(target: Path, pattern: Pattern): boolean | undefined;
      -    storeWalked(target: Path, pattern: Pattern): void;
      -}
      -/**
      - * A record of which paths have been matched in a given walk step,
      - * and whether they only are considered a match if they are a directory,
      - * and whether their absolute or relative path should be returned.
      - */
      -export declare class MatchRecord {
      -    store: Map;
      -    add(target: Path, absolute: boolean, ifDir: boolean): void;
      -    entries(): [Path, boolean, boolean][];
      -}
      -/**
      - * A collection of patterns that must be processed in a subsequent step
      - * for a given path.
      - */
      -export declare class SubWalks {
      -    store: Map;
      -    add(target: Path, pattern: Pattern): void;
      -    get(target: Path): Pattern[];
      -    entries(): [Path, Pattern[]][];
      -    keys(): Path[];
      -}
      -/**
      - * The class that processes patterns for a given path.
      - *
      - * Handles child entry filtering, and determining whether a path's
      - * directory contents must be read.
      - */
      -export declare class Processor {
      -    hasWalkedCache: HasWalkedCache;
      -    matches: MatchRecord;
      -    subwalks: SubWalks;
      -    patterns?: Pattern[];
      -    follow: boolean;
      -    dot: boolean;
      -    opts: GlobWalkerOpts;
      -    constructor(opts: GlobWalkerOpts, hasWalkedCache?: HasWalkedCache);
      -    processPatterns(target: Path, patterns: Pattern[]): this;
      -    subwalkTargets(): Path[];
      -    child(): Processor;
      -    filterEntries(parent: Path, entries: Path[]): Processor;
      -    testGlobstar(e: Path, pattern: Pattern, rest: Pattern | null, absolute: boolean): void;
      -    testRegExp(e: Path, p: MMRegExp, rest: Pattern | null, absolute: boolean): void;
      -    testString(e: Path, p: string, rest: Pattern | null, absolute: boolean): void;
      -}
      -//# sourceMappingURL=processor.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.d.ts.map
      deleted file mode 100644
      index 75d92efe28cb1d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"processor.d.ts","sourceRoot":"","sources":["../../src/processor.ts"],"names":[],"mappings":"AAEA,OAAO,EAAY,QAAQ,EAAE,MAAM,WAAW,CAAA;AAC9C,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,OAAO,EAAa,OAAO,EAAE,MAAM,cAAc,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAE5C;;GAEG;AACH,qBAAa,cAAc;IACzB,KAAK,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAA;gBACnB,KAAK,GAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,CAAa;IAGvD,IAAI;IAGJ,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO;IAGxC,WAAW,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO;CAM3C;AAED;;;;GAIG;AACH,qBAAa,WAAW;IACtB,KAAK,EAAE,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAY;IACpC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO;IAMnD,OAAO,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE;CAOtC;AAED;;;GAGG;AACH,qBAAa,QAAQ;IACnB,KAAK,EAAE,GAAG,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC,CAAY;IACvC,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO;IAWlC,GAAG,CAAC,MAAM,EAAE,IAAI,GAAG,OAAO,EAAE;IAS5B,OAAO,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC,EAAE;IAG9B,IAAI,IAAI,IAAI,EAAE;CAGf;AAED;;;;;GAKG;AACH,qBAAa,SAAS;IACpB,cAAc,EAAE,cAAc,CAAA;IAC9B,OAAO,cAAoB;IAC3B,QAAQ,WAAiB;IACzB,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAA;IACpB,MAAM,EAAE,OAAO,CAAA;IACf,GAAG,EAAE,OAAO,CAAA;IACZ,IAAI,EAAE,cAAc,CAAA;gBAER,IAAI,EAAE,cAAc,EAAE,cAAc,CAAC,EAAE,cAAc;IASjE,eAAe,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE;IAwGjD,cAAc,IAAI,IAAI,EAAE;IAIxB,KAAK;IAQL,aAAa,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,GAAG,SAAS;IAqBvD,YAAY,CACV,CAAC,EAAE,IAAI,EACP,OAAO,EAAE,OAAO,EAChB,IAAI,EAAE,OAAO,GAAG,IAAI,EACpB,QAAQ,EAAE,OAAO;IA8CnB,UAAU,CACR,CAAC,EAAE,IAAI,EACP,CAAC,EAAE,QAAQ,EACX,IAAI,EAAE,OAAO,GAAG,IAAI,EACpB,QAAQ,EAAE,OAAO;IAUnB,UAAU,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,GAAG,IAAI,EAAE,QAAQ,EAAE,OAAO;CASvE"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.js
      deleted file mode 100644
      index dd2228ad6761a5..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.js
      +++ /dev/null
      @@ -1,302 +0,0 @@
      -// synchronous utility for filtering entries and calculating subwalks
      -import { GLOBSTAR } from 'minimatch';
      -/**
      - * A cache of which patterns have been processed for a given Path
      - */
      -export class HasWalkedCache {
      -    store;
      -    constructor(store = new Map()) {
      -        this.store = store;
      -    }
      -    copy() {
      -        return new HasWalkedCache(new Map(this.store));
      -    }
      -    hasWalked(target, pattern) {
      -        return this.store.get(target.fullpath())?.has(pattern.globString());
      -    }
      -    storeWalked(target, pattern) {
      -        const fullpath = target.fullpath();
      -        const cached = this.store.get(fullpath);
      -        if (cached)
      -            cached.add(pattern.globString());
      -        else
      -            this.store.set(fullpath, new Set([pattern.globString()]));
      -    }
      -}
      -/**
      - * A record of which paths have been matched in a given walk step,
      - * and whether they only are considered a match if they are a directory,
      - * and whether their absolute or relative path should be returned.
      - */
      -export class MatchRecord {
      -    store = new Map();
      -    add(target, absolute, ifDir) {
      -        const n = (absolute ? 2 : 0) | (ifDir ? 1 : 0);
      -        const current = this.store.get(target);
      -        this.store.set(target, current === undefined ? n : n & current);
      -    }
      -    // match, absolute, ifdir
      -    entries() {
      -        return [...this.store.entries()].map(([path, n]) => [
      -            path,
      -            !!(n & 2),
      -            !!(n & 1),
      -        ]);
      -    }
      -}
      -/**
      - * A collection of patterns that must be processed in a subsequent step
      - * for a given path.
      - */
      -export class SubWalks {
      -    store = new Map();
      -    add(target, pattern) {
      -        if (!target.canReaddir()) {
      -            return;
      -        }
      -        const subs = this.store.get(target);
      -        if (subs) {
      -            if (!subs.find(p => p.globString() === pattern.globString())) {
      -                subs.push(pattern);
      -            }
      -        }
      -        else
      -            this.store.set(target, [pattern]);
      -    }
      -    get(target) {
      -        const subs = this.store.get(target);
      -        /* c8 ignore start */
      -        if (!subs) {
      -            throw new Error('attempting to walk unknown path');
      -        }
      -        /* c8 ignore stop */
      -        return subs;
      -    }
      -    entries() {
      -        return this.keys().map(k => [k, this.store.get(k)]);
      -    }
      -    keys() {
      -        return [...this.store.keys()].filter(t => t.canReaddir());
      -    }
      -}
      -/**
      - * The class that processes patterns for a given path.
      - *
      - * Handles child entry filtering, and determining whether a path's
      - * directory contents must be read.
      - */
      -export class Processor {
      -    hasWalkedCache;
      -    matches = new MatchRecord();
      -    subwalks = new SubWalks();
      -    patterns;
      -    follow;
      -    dot;
      -    opts;
      -    constructor(opts, hasWalkedCache) {
      -        this.opts = opts;
      -        this.follow = !!opts.follow;
      -        this.dot = !!opts.dot;
      -        this.hasWalkedCache = hasWalkedCache
      -            ? hasWalkedCache.copy()
      -            : new HasWalkedCache();
      -    }
      -    processPatterns(target, patterns) {
      -        this.patterns = patterns;
      -        const processingSet = patterns.map(p => [target, p]);
      -        // map of paths to the magic-starting subwalks they need to walk
      -        // first item in patterns is the filter
      -        for (let [t, pattern] of processingSet) {
      -            this.hasWalkedCache.storeWalked(t, pattern);
      -            const root = pattern.root();
      -            const absolute = pattern.isAbsolute() && this.opts.absolute !== false;
      -            // start absolute patterns at root
      -            if (root) {
      -                t = t.resolve(root === '/' && this.opts.root !== undefined
      -                    ? this.opts.root
      -                    : root);
      -                const rest = pattern.rest();
      -                if (!rest) {
      -                    this.matches.add(t, true, false);
      -                    continue;
      -                }
      -                else {
      -                    pattern = rest;
      -                }
      -            }
      -            if (t.isENOENT())
      -                continue;
      -            let p;
      -            let rest;
      -            let changed = false;
      -            while (typeof (p = pattern.pattern()) === 'string' &&
      -                (rest = pattern.rest())) {
      -                const c = t.resolve(p);
      -                // we can be reasonably sure that .. is a readable dir
      -                if (c.isUnknown() && p !== '..')
      -                    break;
      -                t = c;
      -                pattern = rest;
      -                changed = true;
      -            }
      -            p = pattern.pattern();
      -            rest = pattern.rest();
      -            if (changed) {
      -                if (this.hasWalkedCache.hasWalked(t, pattern))
      -                    continue;
      -                this.hasWalkedCache.storeWalked(t, pattern);
      -            }
      -            // now we have either a final string for a known entry,
      -            // more strings for an unknown entry,
      -            // or a pattern starting with magic, mounted on t.
      -            if (typeof p === 'string') {
      -                // must be final entry
      -                if (!rest) {
      -                    const ifDir = p === '..' || p === '' || p === '.';
      -                    this.matches.add(t.resolve(p), absolute, ifDir);
      -                }
      -                else {
      -                    this.subwalks.add(t, pattern);
      -                }
      -                continue;
      -            }
      -            else if (p === GLOBSTAR) {
      -                // if no rest, match and subwalk pattern
      -                // if rest, process rest and subwalk pattern
      -                // if it's a symlink, but we didn't get here by way of a
      -                // globstar match (meaning it's the first time THIS globstar
      -                // has traversed a symlink), then we follow it. Otherwise, stop.
      -                if (!t.isSymbolicLink() ||
      -                    this.follow ||
      -                    pattern.checkFollowGlobstar()) {
      -                    this.subwalks.add(t, pattern);
      -                }
      -                const rp = rest?.pattern();
      -                const rrest = rest?.rest();
      -                if (!rest || ((rp === '' || rp === '.') && !rrest)) {
      -                    // only HAS to be a dir if it ends in **/ or **/.
      -                    // but ending in ** will match files as well.
      -                    this.matches.add(t, absolute, rp === '' || rp === '.');
      -                }
      -                else {
      -                    if (rp === '..') {
      -                        // this would mean you're matching **/.. at the fs root,
      -                        // and no thanks, I'm not gonna test that specific case.
      -                        /* c8 ignore start */
      -                        const tp = t.parent || t;
      -                        /* c8 ignore stop */
      -                        if (!rrest)
      -                            this.matches.add(tp, absolute, true);
      -                        else if (!this.hasWalkedCache.hasWalked(tp, rrest)) {
      -                            this.subwalks.add(tp, rrest);
      -                        }
      -                    }
      -                }
      -            }
      -            else if (p instanceof RegExp) {
      -                this.subwalks.add(t, pattern);
      -            }
      -        }
      -        return this;
      -    }
      -    subwalkTargets() {
      -        return this.subwalks.keys();
      -    }
      -    child() {
      -        return new Processor(this.opts, this.hasWalkedCache);
      -    }
      -    // return a new Processor containing the subwalks for each
      -    // child entry, and a set of matches, and
      -    // a hasWalkedCache that's a copy of this one
      -    // then we're going to call
      -    filterEntries(parent, entries) {
      -        const patterns = this.subwalks.get(parent);
      -        // put matches and entry walks into the results processor
      -        const results = this.child();
      -        for (const e of entries) {
      -            for (const pattern of patterns) {
      -                const absolute = pattern.isAbsolute();
      -                const p = pattern.pattern();
      -                const rest = pattern.rest();
      -                if (p === GLOBSTAR) {
      -                    results.testGlobstar(e, pattern, rest, absolute);
      -                }
      -                else if (p instanceof RegExp) {
      -                    results.testRegExp(e, p, rest, absolute);
      -                }
      -                else {
      -                    results.testString(e, p, rest, absolute);
      -                }
      -            }
      -        }
      -        return results;
      -    }
      -    testGlobstar(e, pattern, rest, absolute) {
      -        if (this.dot || !e.name.startsWith('.')) {
      -            if (!pattern.hasMore()) {
      -                this.matches.add(e, absolute, false);
      -            }
      -            if (e.canReaddir()) {
      -                // if we're in follow mode or it's not a symlink, just keep
      -                // testing the same pattern. If there's more after the globstar,
      -                // then this symlink consumes the globstar. If not, then we can
      -                // follow at most ONE symlink along the way, so we mark it, which
      -                // also checks to ensure that it wasn't already marked.
      -                if (this.follow || !e.isSymbolicLink()) {
      -                    this.subwalks.add(e, pattern);
      -                }
      -                else if (e.isSymbolicLink()) {
      -                    if (rest && pattern.checkFollowGlobstar()) {
      -                        this.subwalks.add(e, rest);
      -                    }
      -                    else if (pattern.markFollowGlobstar()) {
      -                        this.subwalks.add(e, pattern);
      -                    }
      -                }
      -            }
      -        }
      -        // if the NEXT thing matches this entry, then also add
      -        // the rest.
      -        if (rest) {
      -            const rp = rest.pattern();
      -            if (typeof rp === 'string' &&
      -                // dots and empty were handled already
      -                rp !== '..' &&
      -                rp !== '' &&
      -                rp !== '.') {
      -                this.testString(e, rp, rest.rest(), absolute);
      -            }
      -            else if (rp === '..') {
      -                /* c8 ignore start */
      -                const ep = e.parent || e;
      -                /* c8 ignore stop */
      -                this.subwalks.add(ep, rest);
      -            }
      -            else if (rp instanceof RegExp) {
      -                this.testRegExp(e, rp, rest.rest(), absolute);
      -            }
      -        }
      -    }
      -    testRegExp(e, p, rest, absolute) {
      -        if (!p.test(e.name))
      -            return;
      -        if (!rest) {
      -            this.matches.add(e, absolute, false);
      -        }
      -        else {
      -            this.subwalks.add(e, rest);
      -        }
      -    }
      -    testString(e, p, rest, absolute) {
      -        // should never happen?
      -        if (!e.isNamed(p))
      -            return;
      -        if (!rest) {
      -            this.matches.add(e, absolute, false);
      -        }
      -        else {
      -            this.subwalks.add(e, rest);
      -        }
      -    }
      -}
      -//# sourceMappingURL=processor.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.js.map
      deleted file mode 100644
      index bf17d8e99b04a6..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/processor.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"processor.js","sourceRoot":"","sources":["../../src/processor.ts"],"names":[],"mappings":"AAAA,qEAAqE;AAErE,OAAO,EAAE,QAAQ,EAAY,MAAM,WAAW,CAAA;AAK9C;;GAEG;AACH,MAAM,OAAO,cAAc;IACzB,KAAK,CAA0B;IAC/B,YAAY,QAAkC,IAAI,GAAG,EAAE;QACrD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;IACpB,CAAC;IACD,IAAI;QACF,OAAO,IAAI,cAAc,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAA;IAChD,CAAC;IACD,SAAS,CAAC,MAAY,EAAE,OAAgB;QACtC,OAAO,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAA;IACrE,CAAC;IACD,WAAW,CAAC,MAAY,EAAE,OAAgB;QACxC,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAA;QAClC,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;QACvC,IAAI,MAAM;YAAE,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAA;;YACvC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,GAAG,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC,CAAA;IAChE,CAAC;CACF;AAED;;;;GAIG;AACH,MAAM,OAAO,WAAW;IACtB,KAAK,GAAsB,IAAI,GAAG,EAAE,CAAA;IACpC,GAAG,CAAC,MAAY,EAAE,QAAiB,EAAE,KAAc;QACjD,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;QAC9C,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACtC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAA;IACjE,CAAC;IACD,yBAAyB;IACzB,OAAO;QACL,OAAO,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;YAClD,IAAI;YACJ,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACT,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;SACV,CAAC,CAAA;IACJ,CAAC;CACF;AAED;;;GAGG;AACH,MAAM,OAAO,QAAQ;IACnB,KAAK,GAAyB,IAAI,GAAG,EAAE,CAAA;IACvC,GAAG,CAAC,MAAY,EAAE,OAAgB;QAChC,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE;YACxB,OAAM;SACP;QACD,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACnC,IAAI,IAAI,EAAE;YACR,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,EAAE,KAAK,OAAO,CAAC,UAAU,EAAE,CAAC,EAAE;gBAC5D,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;aACnB;SACF;;YAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,CAAC,CAAA;IAC1C,CAAC;IACD,GAAG,CAAC,MAAY;QACd,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACnC,qBAAqB;QACrB,IAAI,CAAC,IAAI,EAAE;YACT,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAA;SACnD;QACD,oBAAoB;QACpB,OAAO,IAAI,CAAA;IACb,CAAC;IACD,OAAO;QACL,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAc,CAAC,CAAC,CAAA;IAClE,CAAC;IACD,IAAI;QACF,OAAO,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC,CAAA;IAC3D,CAAC;CACF;AAED;;;;;GAKG;AACH,MAAM,OAAO,SAAS;IACpB,cAAc,CAAgB;IAC9B,OAAO,GAAG,IAAI,WAAW,EAAE,CAAA;IAC3B,QAAQ,GAAG,IAAI,QAAQ,EAAE,CAAA;IACzB,QAAQ,CAAY;IACpB,MAAM,CAAS;IACf,GAAG,CAAS;IACZ,IAAI,CAAgB;IAEpB,YAAY,IAAoB,EAAE,cAA+B;QAC/D,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,CAAC,MAAM,CAAA;QAC3B,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAA;QACrB,IAAI,CAAC,cAAc,GAAG,cAAc;YAClC,CAAC,CAAC,cAAc,CAAC,IAAI,EAAE;YACvB,CAAC,CAAC,IAAI,cAAc,EAAE,CAAA;IAC1B,CAAC;IAED,eAAe,CAAC,MAAY,EAAE,QAAmB;QAC/C,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACxB,MAAM,aAAa,GAAsB,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA;QAEvE,gEAAgE;QAChE,uCAAuC;QAEvC,KAAK,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,IAAI,aAAa,EAAE;YACtC,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;YAE3C,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;YAC3B,MAAM,QAAQ,GAAG,OAAO,CAAC,UAAU,EAAE,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,KAAK,KAAK,CAAA;YAErE,kCAAkC;YAClC,IAAI,IAAI,EAAE;gBACR,CAAC,GAAG,CAAC,CAAC,OAAO,CACX,IAAI,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK,SAAS;oBAC1C,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI;oBAChB,CAAC,CAAC,IAAI,CACT,CAAA;gBACD,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;gBAC3B,IAAI,CAAC,IAAI,EAAE;oBACT,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,CAAA;oBAChC,SAAQ;iBACT;qBAAM;oBACL,OAAO,GAAG,IAAI,CAAA;iBACf;aACF;YAED,IAAI,CAAC,CAAC,QAAQ,EAAE;gBAAE,SAAQ;YAE1B,IAAI,CAAY,CAAA;YAChB,IAAI,IAAoB,CAAA;YACxB,IAAI,OAAO,GAAG,KAAK,CAAA;YACnB,OACE,OAAO,CAAC,CAAC,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC,KAAK,QAAQ;gBAC3C,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC,EACvB;gBACA,MAAM,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAA;gBACtB,sDAAsD;gBACtD,IAAI,CAAC,CAAC,SAAS,EAAE,IAAI,CAAC,KAAK,IAAI;oBAAE,MAAK;gBACtC,CAAC,GAAG,CAAC,CAAA;gBACL,OAAO,GAAG,IAAI,CAAA;gBACd,OAAO,GAAG,IAAI,CAAA;aACf;YACD,CAAC,GAAG,OAAO,CAAC,OAAO,EAAE,CAAA;YACrB,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;YACrB,IAAI,OAAO,EAAE;gBACX,IAAI,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC;oBAAE,SAAQ;gBACvD,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;aAC5C;YAED,uDAAuD;YACvD,qCAAqC;YACrC,kDAAkD;YAClD,IAAI,OAAO,CAAC,KAAK,QAAQ,EAAE;gBACzB,sBAAsB;gBACtB,IAAI,CAAC,IAAI,EAAE;oBACT,MAAM,KAAK,GAAG,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,GAAG,CAAA;oBACjD,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;iBAChD;qBAAM;oBACL,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;iBAC9B;gBACD,SAAQ;aACT;iBAAM,IAAI,CAAC,KAAK,QAAQ,EAAE;gBACzB,wCAAwC;gBACxC,4CAA4C;gBAC5C,wDAAwD;gBACxD,4DAA4D;gBAC5D,gEAAgE;gBAChE,IACE,CAAC,CAAC,CAAC,cAAc,EAAE;oBACnB,IAAI,CAAC,MAAM;oBACX,OAAO,CAAC,mBAAmB,EAAE,EAC7B;oBACA,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;iBAC9B;gBACD,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,CAAA;gBAC1B,MAAM,KAAK,GAAG,IAAI,EAAE,IAAI,EAAE,CAAA;gBAC1B,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;oBAClD,iDAAiD;oBACjD,6CAA6C;oBAC7C,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,GAAG,CAAC,CAAA;iBACvD;qBAAM;oBACL,IAAI,EAAE,KAAK,IAAI,EAAE;wBACf,wDAAwD;wBACxD,wDAAwD;wBACxD,qBAAqB;wBACrB,MAAM,EAAE,GAAG,CAAC,CAAC,MAAM,IAAI,CAAC,CAAA;wBACxB,oBAAoB;wBACpB,IAAI,CAAC,KAAK;4BAAE,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAA;6BAC3C,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,EAAE,EAAE,KAAK,CAAC,EAAE;4BAClD,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,EAAE,KAAK,CAAC,CAAA;yBAC7B;qBACF;iBACF;aACF;iBAAM,IAAI,CAAC,YAAY,MAAM,EAAE;gBAC9B,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;aAC9B;SACF;QAED,OAAO,IAAI,CAAA;IACb,CAAC;IAED,cAAc;QACZ,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAA;IAC7B,CAAC;IAED,KAAK;QACH,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAA;IACtD,CAAC;IAED,0DAA0D;IAC1D,yCAAyC;IACzC,6CAA6C;IAC7C,2BAA2B;IAC3B,aAAa,CAAC,MAAY,EAAE,OAAe;QACzC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QAC1C,yDAAyD;QACzD,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,EAAE,CAAA;QAC5B,KAAK,MAAM,CAAC,IAAI,OAAO,EAAE;YACvB,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE;gBAC9B,MAAM,QAAQ,GAAG,OAAO,CAAC,UAAU,EAAE,CAAA;gBACrC,MAAM,CAAC,GAAG,OAAO,CAAC,OAAO,EAAE,CAAA;gBAC3B,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;gBAC3B,IAAI,CAAC,KAAK,QAAQ,EAAE;oBAClB,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAA;iBACjD;qBAAM,IAAI,CAAC,YAAY,MAAM,EAAE;oBAC9B,OAAO,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAA;iBACzC;qBAAM;oBACL,OAAO,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAA;iBACzC;aACF;SACF;QACD,OAAO,OAAO,CAAA;IAChB,CAAC;IAED,YAAY,CACV,CAAO,EACP,OAAgB,EAChB,IAAoB,EACpB,QAAiB;QAEjB,IAAI,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;YACvC,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;gBACtB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;aACrC;YACD,IAAI,CAAC,CAAC,UAAU,EAAE,EAAE;gBAClB,2DAA2D;gBAC3D,gEAAgE;gBAChE,+DAA+D;gBAC/D,iEAAiE;gBACjE,uDAAuD;gBACvD,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC,CAAC,CAAC,cAAc,EAAE,EAAE;oBACtC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;iBAC9B;qBAAM,IAAI,CAAC,CAAC,cAAc,EAAE,EAAE;oBAC7B,IAAI,IAAI,IAAI,OAAO,CAAC,mBAAmB,EAAE,EAAE;wBACzC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;qBAC3B;yBAAM,IAAI,OAAO,CAAC,kBAAkB,EAAE,EAAE;wBACvC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,OAAO,CAAC,CAAA;qBAC9B;iBACF;aACF;SACF;QACD,sDAAsD;QACtD,YAAY;QACZ,IAAI,IAAI,EAAE;YACR,MAAM,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,CAAA;YACzB,IACE,OAAO,EAAE,KAAK,QAAQ;gBACtB,sCAAsC;gBACtC,EAAE,KAAK,IAAI;gBACX,EAAE,KAAK,EAAE;gBACT,EAAE,KAAK,GAAG,EACV;gBACA,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,EAAE,QAAQ,CAAC,CAAA;aAC9C;iBAAM,IAAI,EAAE,KAAK,IAAI,EAAE;gBACtB,qBAAqB;gBACrB,MAAM,EAAE,GAAG,CAAC,CAAC,MAAM,IAAI,CAAC,CAAA;gBACxB,oBAAoB;gBACpB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,EAAE,IAAI,CAAC,CAAA;aAC5B;iBAAM,IAAI,EAAE,YAAY,MAAM,EAAE;gBAC/B,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,EAAE,QAAQ,CAAC,CAAA;aAC9C;SACF;IACH,CAAC;IAED,UAAU,CACR,CAAO,EACP,CAAW,EACX,IAAoB,EACpB,QAAiB;QAEjB,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC;YAAE,OAAM;QAC3B,IAAI,CAAC,IAAI,EAAE;YACT,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;SACrC;aAAM;YACL,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;SAC3B;IACH,CAAC;IAED,UAAU,CAAC,CAAO,EAAE,CAAS,EAAE,IAAoB,EAAE,QAAiB;QACpE,uBAAuB;QACvB,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;YAAE,OAAM;QACzB,IAAI,CAAC,IAAI,EAAE;YACT,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;SACrC;aAAM;YACL,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAA;SAC3B;IACH,CAAC;CACF","sourcesContent":["// synchronous utility for filtering entries and calculating subwalks\n\nimport { GLOBSTAR, MMRegExp } from 'minimatch'\nimport { Path } from 'path-scurry'\nimport { MMPattern, Pattern } from './pattern.js'\nimport { GlobWalkerOpts } from './walker.js'\n\n/**\n * A cache of which patterns have been processed for a given Path\n */\nexport class HasWalkedCache {\n  store: Map>\n  constructor(store: Map> = new Map()) {\n    this.store = store\n  }\n  copy() {\n    return new HasWalkedCache(new Map(this.store))\n  }\n  hasWalked(target: Path, pattern: Pattern) {\n    return this.store.get(target.fullpath())?.has(pattern.globString())\n  }\n  storeWalked(target: Path, pattern: Pattern) {\n    const fullpath = target.fullpath()\n    const cached = this.store.get(fullpath)\n    if (cached) cached.add(pattern.globString())\n    else this.store.set(fullpath, new Set([pattern.globString()]))\n  }\n}\n\n/**\n * A record of which paths have been matched in a given walk step,\n * and whether they only are considered a match if they are a directory,\n * and whether their absolute or relative path should be returned.\n */\nexport class MatchRecord {\n  store: Map = new Map()\n  add(target: Path, absolute: boolean, ifDir: boolean) {\n    const n = (absolute ? 2 : 0) | (ifDir ? 1 : 0)\n    const current = this.store.get(target)\n    this.store.set(target, current === undefined ? n : n & current)\n  }\n  // match, absolute, ifdir\n  entries(): [Path, boolean, boolean][] {\n    return [...this.store.entries()].map(([path, n]) => [\n      path,\n      !!(n & 2),\n      !!(n & 1),\n    ])\n  }\n}\n\n/**\n * A collection of patterns that must be processed in a subsequent step\n * for a given path.\n */\nexport class SubWalks {\n  store: Map = new Map()\n  add(target: Path, pattern: Pattern) {\n    if (!target.canReaddir()) {\n      return\n    }\n    const subs = this.store.get(target)\n    if (subs) {\n      if (!subs.find(p => p.globString() === pattern.globString())) {\n        subs.push(pattern)\n      }\n    } else this.store.set(target, [pattern])\n  }\n  get(target: Path): Pattern[] {\n    const subs = this.store.get(target)\n    /* c8 ignore start */\n    if (!subs) {\n      throw new Error('attempting to walk unknown path')\n    }\n    /* c8 ignore stop */\n    return subs\n  }\n  entries(): [Path, Pattern[]][] {\n    return this.keys().map(k => [k, this.store.get(k) as Pattern[]])\n  }\n  keys(): Path[] {\n    return [...this.store.keys()].filter(t => t.canReaddir())\n  }\n}\n\n/**\n * The class that processes patterns for a given path.\n *\n * Handles child entry filtering, and determining whether a path's\n * directory contents must be read.\n */\nexport class Processor {\n  hasWalkedCache: HasWalkedCache\n  matches = new MatchRecord()\n  subwalks = new SubWalks()\n  patterns?: Pattern[]\n  follow: boolean\n  dot: boolean\n  opts: GlobWalkerOpts\n\n  constructor(opts: GlobWalkerOpts, hasWalkedCache?: HasWalkedCache) {\n    this.opts = opts\n    this.follow = !!opts.follow\n    this.dot = !!opts.dot\n    this.hasWalkedCache = hasWalkedCache\n      ? hasWalkedCache.copy()\n      : new HasWalkedCache()\n  }\n\n  processPatterns(target: Path, patterns: Pattern[]) {\n    this.patterns = patterns\n    const processingSet: [Path, Pattern][] = patterns.map(p => [target, p])\n\n    // map of paths to the magic-starting subwalks they need to walk\n    // first item in patterns is the filter\n\n    for (let [t, pattern] of processingSet) {\n      this.hasWalkedCache.storeWalked(t, pattern)\n\n      const root = pattern.root()\n      const absolute = pattern.isAbsolute() && this.opts.absolute !== false\n\n      // start absolute patterns at root\n      if (root) {\n        t = t.resolve(\n          root === '/' && this.opts.root !== undefined\n            ? this.opts.root\n            : root\n        )\n        const rest = pattern.rest()\n        if (!rest) {\n          this.matches.add(t, true, false)\n          continue\n        } else {\n          pattern = rest\n        }\n      }\n\n      if (t.isENOENT()) continue\n\n      let p: MMPattern\n      let rest: Pattern | null\n      let changed = false\n      while (\n        typeof (p = pattern.pattern()) === 'string' &&\n        (rest = pattern.rest())\n      ) {\n        const c = t.resolve(p)\n        // we can be reasonably sure that .. is a readable dir\n        if (c.isUnknown() && p !== '..') break\n        t = c\n        pattern = rest\n        changed = true\n      }\n      p = pattern.pattern()\n      rest = pattern.rest()\n      if (changed) {\n        if (this.hasWalkedCache.hasWalked(t, pattern)) continue\n        this.hasWalkedCache.storeWalked(t, pattern)\n      }\n\n      // now we have either a final string for a known entry,\n      // more strings for an unknown entry,\n      // or a pattern starting with magic, mounted on t.\n      if (typeof p === 'string') {\n        // must be final entry\n        if (!rest) {\n          const ifDir = p === '..' || p === '' || p === '.'\n          this.matches.add(t.resolve(p), absolute, ifDir)\n        } else {\n          this.subwalks.add(t, pattern)\n        }\n        continue\n      } else if (p === GLOBSTAR) {\n        // if no rest, match and subwalk pattern\n        // if rest, process rest and subwalk pattern\n        // if it's a symlink, but we didn't get here by way of a\n        // globstar match (meaning it's the first time THIS globstar\n        // has traversed a symlink), then we follow it. Otherwise, stop.\n        if (\n          !t.isSymbolicLink() ||\n          this.follow ||\n          pattern.checkFollowGlobstar()\n        ) {\n          this.subwalks.add(t, pattern)\n        }\n        const rp = rest?.pattern()\n        const rrest = rest?.rest()\n        if (!rest || ((rp === '' || rp === '.') && !rrest)) {\n          // only HAS to be a dir if it ends in **/ or **/.\n          // but ending in ** will match files as well.\n          this.matches.add(t, absolute, rp === '' || rp === '.')\n        } else {\n          if (rp === '..') {\n            // this would mean you're matching **/.. at the fs root,\n            // and no thanks, I'm not gonna test that specific case.\n            /* c8 ignore start */\n            const tp = t.parent || t\n            /* c8 ignore stop */\n            if (!rrest) this.matches.add(tp, absolute, true)\n            else if (!this.hasWalkedCache.hasWalked(tp, rrest)) {\n              this.subwalks.add(tp, rrest)\n            }\n          }\n        }\n      } else if (p instanceof RegExp) {\n        this.subwalks.add(t, pattern)\n      }\n    }\n\n    return this\n  }\n\n  subwalkTargets(): Path[] {\n    return this.subwalks.keys()\n  }\n\n  child() {\n    return new Processor(this.opts, this.hasWalkedCache)\n  }\n\n  // return a new Processor containing the subwalks for each\n  // child entry, and a set of matches, and\n  // a hasWalkedCache that's a copy of this one\n  // then we're going to call\n  filterEntries(parent: Path, entries: Path[]): Processor {\n    const patterns = this.subwalks.get(parent)\n    // put matches and entry walks into the results processor\n    const results = this.child()\n    for (const e of entries) {\n      for (const pattern of patterns) {\n        const absolute = pattern.isAbsolute()\n        const p = pattern.pattern()\n        const rest = pattern.rest()\n        if (p === GLOBSTAR) {\n          results.testGlobstar(e, pattern, rest, absolute)\n        } else if (p instanceof RegExp) {\n          results.testRegExp(e, p, rest, absolute)\n        } else {\n          results.testString(e, p, rest, absolute)\n        }\n      }\n    }\n    return results\n  }\n\n  testGlobstar(\n    e: Path,\n    pattern: Pattern,\n    rest: Pattern | null,\n    absolute: boolean\n  ) {\n    if (this.dot || !e.name.startsWith('.')) {\n      if (!pattern.hasMore()) {\n        this.matches.add(e, absolute, false)\n      }\n      if (e.canReaddir()) {\n        // if we're in follow mode or it's not a symlink, just keep\n        // testing the same pattern. If there's more after the globstar,\n        // then this symlink consumes the globstar. If not, then we can\n        // follow at most ONE symlink along the way, so we mark it, which\n        // also checks to ensure that it wasn't already marked.\n        if (this.follow || !e.isSymbolicLink()) {\n          this.subwalks.add(e, pattern)\n        } else if (e.isSymbolicLink()) {\n          if (rest && pattern.checkFollowGlobstar()) {\n            this.subwalks.add(e, rest)\n          } else if (pattern.markFollowGlobstar()) {\n            this.subwalks.add(e, pattern)\n          }\n        }\n      }\n    }\n    // if the NEXT thing matches this entry, then also add\n    // the rest.\n    if (rest) {\n      const rp = rest.pattern()\n      if (\n        typeof rp === 'string' &&\n        // dots and empty were handled already\n        rp !== '..' &&\n        rp !== '' &&\n        rp !== '.'\n      ) {\n        this.testString(e, rp, rest.rest(), absolute)\n      } else if (rp === '..') {\n        /* c8 ignore start */\n        const ep = e.parent || e\n        /* c8 ignore stop */\n        this.subwalks.add(ep, rest)\n      } else if (rp instanceof RegExp) {\n        this.testRegExp(e, rp, rest.rest(), absolute)\n      }\n    }\n  }\n\n  testRegExp(\n    e: Path,\n    p: MMRegExp,\n    rest: Pattern | null,\n    absolute: boolean\n  ) {\n    if (!p.test(e.name)) return\n    if (!rest) {\n      this.matches.add(e, absolute, false)\n    } else {\n      this.subwalks.add(e, rest)\n    }\n  }\n\n  testString(e: Path, p: string, rest: Pattern | null, absolute: boolean) {\n    // should never happen?\n    if (!e.isNamed(p)) return\n    if (!rest) {\n      this.matches.add(e, absolute, false)\n    } else {\n      this.subwalks.add(e, rest)\n    }\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.d.ts b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.d.ts
      deleted file mode 100644
      index 5c1a0414971b3a..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.d.ts
      +++ /dev/null
      @@ -1,96 +0,0 @@
      -/// 
      -/**
      - * Single-use utility classes to provide functionality to the {@link Glob}
      - * methods.
      - *
      - * @module
      - */
      -import { Minipass } from 'minipass';
      -import { Path } from 'path-scurry';
      -import { IgnoreLike } from './ignore.js';
      -import { Pattern } from './pattern.js';
      -import { Processor } from './processor.js';
      -export interface GlobWalkerOpts {
      -    absolute?: boolean;
      -    allowWindowsEscape?: boolean;
      -    cwd?: string | URL;
      -    dot?: boolean;
      -    dotRelative?: boolean;
      -    follow?: boolean;
      -    ignore?: string | string[] | IgnoreLike;
      -    mark?: boolean;
      -    matchBase?: boolean;
      -    maxDepth?: number;
      -    nobrace?: boolean;
      -    nocase?: boolean;
      -    nodir?: boolean;
      -    noext?: boolean;
      -    noglobstar?: boolean;
      -    platform?: NodeJS.Platform;
      -    posix?: boolean;
      -    realpath?: boolean;
      -    root?: string;
      -    stat?: boolean;
      -    signal?: AbortSignal;
      -    windowsPathsNoEscape?: boolean;
      -    withFileTypes?: boolean;
      -}
      -export type GWOFileTypesTrue = GlobWalkerOpts & {
      -    withFileTypes: true;
      -};
      -export type GWOFileTypesFalse = GlobWalkerOpts & {
      -    withFileTypes: false;
      -};
      -export type GWOFileTypesUnset = GlobWalkerOpts & {
      -    withFileTypes?: undefined;
      -};
      -export type Result = O extends GWOFileTypesTrue ? Path : O extends GWOFileTypesFalse ? string : O extends GWOFileTypesUnset ? string : Path | string;
      -export type Matches = O extends GWOFileTypesTrue ? Set : O extends GWOFileTypesFalse ? Set : O extends GWOFileTypesUnset ? Set : Set;
      -export type MatchStream = O extends GWOFileTypesTrue ? Minipass : O extends GWOFileTypesFalse ? Minipass : O extends GWOFileTypesUnset ? Minipass : Minipass;
      -/**
      - * basic walking utilities that all the glob walker types use
      - */
      -export declare abstract class GlobUtil {
      -    #private;
      -    path: Path;
      -    patterns: Pattern[];
      -    opts: O;
      -    seen: Set;
      -    paused: boolean;
      -    aborted: boolean;
      -    signal?: AbortSignal;
      -    maxDepth: number;
      -    constructor(patterns: Pattern[], path: Path, opts: O);
      -    pause(): void;
      -    resume(): void;
      -    onResume(fn: () => any): void;
      -    matchCheck(e: Path, ifDir: boolean): Promise;
      -    matchCheckTest(e: Path | undefined, ifDir: boolean): Path | undefined;
      -    matchCheckSync(e: Path, ifDir: boolean): Path | undefined;
      -    abstract matchEmit(p: Result): void;
      -    abstract matchEmit(p: string | Path): void;
      -    matchFinish(e: Path, absolute: boolean): void;
      -    match(e: Path, absolute: boolean, ifDir: boolean): Promise;
      -    matchSync(e: Path, absolute: boolean, ifDir: boolean): void;
      -    walkCB(target: Path, patterns: Pattern[], cb: () => any): void;
      -    walkCB2(target: Path, patterns: Pattern[], processor: Processor, cb: () => any): any;
      -    walkCB3(target: Path, entries: Path[], processor: Processor, cb: () => any): void;
      -    walkCBSync(target: Path, patterns: Pattern[], cb: () => any): void;
      -    walkCB2Sync(target: Path, patterns: Pattern[], processor: Processor, cb: () => any): any;
      -    walkCB3Sync(target: Path, entries: Path[], processor: Processor, cb: () => any): void;
      -}
      -export declare class GlobWalker extends GlobUtil {
      -    matches: O extends GWOFileTypesTrue ? Set : O extends GWOFileTypesFalse ? Set : O extends GWOFileTypesUnset ? Set : Set;
      -    constructor(patterns: Pattern[], path: Path, opts: O);
      -    matchEmit(e: Result): void;
      -    walk(): Promise>;
      -    walkSync(): Matches;
      -}
      -export declare class GlobStream extends GlobUtil {
      -    results: O extends GWOFileTypesTrue ? Minipass : O extends GWOFileTypesFalse ? Minipass : O extends GWOFileTypesUnset ? Minipass : Minipass;
      -    constructor(patterns: Pattern[], path: Path, opts: O);
      -    matchEmit(e: Result): void;
      -    stream(): MatchStream;
      -    streamSync(): MatchStream;
      -}
      -//# sourceMappingURL=walker.d.ts.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.d.ts.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.d.ts.map
      deleted file mode 100644
      index 7c8df20b2f323c..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.d.ts.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"walker.d.ts","sourceRoot":"","sources":["../../src/walker.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;AACH,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAA;AACnC,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,OAAO,EAAU,UAAU,EAAE,MAAM,aAAa,CAAA;AAOhD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAE1C,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,GAAG,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;IAClB,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,UAAU,CAAA;IACvC,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,SAAS,CAAC,EAAE,OAAO,CAAA;IAGnB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC,QAAQ,CAAA;IAC1B,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,MAAM,CAAC,EAAE,WAAW,CAAA;IACpB,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,aAAa,CAAC,EAAE,OAAO,CAAA;CACxB;AAED,MAAM,MAAM,gBAAgB,GAAG,cAAc,GAAG;IAC9C,aAAa,EAAE,IAAI,CAAA;CACpB,CAAA;AACD,MAAM,MAAM,iBAAiB,GAAG,cAAc,GAAG;IAC/C,aAAa,EAAE,KAAK,CAAA;CACrB,CAAA;AACD,MAAM,MAAM,iBAAiB,GAAG,cAAc,GAAG;IAC/C,aAAa,CAAC,EAAE,SAAS,CAAA;CAC1B,CAAA;AAED,MAAM,MAAM,MAAM,CAAC,CAAC,SAAS,cAAc,IAAI,CAAC,SAAS,gBAAgB,GACrE,IAAI,GACJ,CAAC,SAAS,iBAAiB,GAC3B,MAAM,GACN,CAAC,SAAS,iBAAiB,GAC3B,MAAM,GACN,IAAI,GAAG,MAAM,CAAA;AAEjB,MAAM,MAAM,OAAO,CAAC,CAAC,SAAS,cAAc,IAAI,CAAC,SAAS,gBAAgB,GACtE,GAAG,CAAC,IAAI,CAAC,GACT,CAAC,SAAS,iBAAiB,GAC3B,GAAG,CAAC,MAAM,CAAC,GACX,CAAC,SAAS,iBAAiB,GAC3B,GAAG,CAAC,MAAM,CAAC,GACX,GAAG,CAAC,IAAI,GAAG,MAAM,CAAC,CAAA;AAEtB,MAAM,MAAM,WAAW,CAAC,CAAC,SAAS,cAAc,IAC9C,CAAC,SAAS,gBAAgB,GACtB,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,GACpB,CAAC,SAAS,iBAAiB,GAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,GACxB,CAAC,SAAS,iBAAiB,GAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,GACxB,QAAQ,CAAC,IAAI,GAAG,MAAM,EAAE,IAAI,GAAG,MAAM,CAAC,CAAA;AAY5C;;GAEG;AACH,8BAAsB,QAAQ,CAAC,CAAC,SAAS,cAAc,GAAG,cAAc;;IACtE,IAAI,EAAE,IAAI,CAAA;IACV,QAAQ,EAAE,OAAO,EAAE,CAAA;IACnB,IAAI,EAAE,CAAC,CAAA;IACP,IAAI,EAAE,GAAG,CAAC,IAAI,CAAC,CAAkB;IACjC,MAAM,EAAE,OAAO,CAAQ;IACvB,OAAO,EAAE,OAAO,CAAQ;IAIxB,MAAM,CAAC,EAAE,WAAW,CAAA;IACpB,QAAQ,EAAE,MAAM,CAAA;gBAEJ,QAAQ,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IA8BpD,KAAK;IAGL,MAAM;IAUN,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG;IAahB,UAAU,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,GAAG,SAAS,CAAC;IAYpE,cAAc,CAAC,CAAC,EAAE,IAAI,GAAG,SAAS,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS;IAUrE,cAAc,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS;IAYzD,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI;IACtC,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAE1C,WAAW,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO;IAsBhC,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAKtE,SAAS,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI;IAK3D,MAAM,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG;IAOvD,OAAO,CACL,MAAM,EAAE,IAAI,EACZ,QAAQ,EAAE,OAAO,EAAE,EACnB,SAAS,EAAE,SAAS,EACpB,EAAE,EAAE,MAAM,GAAG;IA2Cf,OAAO,CACL,MAAM,EAAE,IAAI,EACZ,OAAO,EAAE,IAAI,EAAE,EACf,SAAS,EAAE,SAAS,EACpB,EAAE,EAAE,MAAM,GAAG;IAsBf,UAAU,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG;IAO3D,WAAW,CACT,MAAM,EAAE,IAAI,EACZ,QAAQ,EAAE,OAAO,EAAE,EACnB,SAAS,EAAE,SAAS,EACpB,EAAE,EAAE,MAAM,GAAG;IAqCf,WAAW,CACT,MAAM,EAAE,IAAI,EACZ,OAAO,EAAE,IAAI,EAAE,EACf,SAAS,EAAE,SAAS,EACpB,EAAE,EAAE,MAAM,GAAG;CAoBhB;AAED,qBAAa,UAAU,CACrB,CAAC,SAAS,cAAc,GAAG,cAAc,CACzC,SAAQ,QAAQ,CAAC,CAAC,CAAC;IACnB,OAAO,EAAE,CAAC,SAAS,gBAAgB,GAC/B,GAAG,CAAC,IAAI,CAAC,GACT,CAAC,SAAS,iBAAiB,GAC3B,GAAG,CAAC,MAAM,CAAC,GACX,CAAC,SAAS,iBAAiB,GAC3B,GAAG,CAAC,MAAM,CAAC,GACX,GAAG,CAAC,IAAI,GAAG,MAAM,CAAC,CAAA;gBAEV,QAAQ,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAKpD,SAAS,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI;IAKvB,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAiBjC,QAAQ,IAAI,OAAO,CAAC,CAAC,CAAC;CAWvB;AAED,qBAAa,UAAU,CACrB,CAAC,SAAS,cAAc,GAAG,cAAc,CACzC,SAAQ,QAAQ,CAAC,CAAC,CAAC;IACnB,OAAO,EAAE,CAAC,SAAS,gBAAgB,GAC/B,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,GACpB,CAAC,SAAS,iBAAiB,GAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,GACxB,CAAC,SAAS,iBAAiB,GAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,GACxB,QAAQ,CAAC,IAAI,GAAG,MAAM,EAAE,IAAI,GAAG,MAAM,CAAC,CAAA;gBAE9B,QAAQ,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAUpD,SAAS,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI;IAM7B,MAAM,IAAI,WAAW,CAAC,CAAC,CAAC;IAYxB,UAAU,IAAI,WAAW,CAAC,CAAC,CAAC;CAO7B"}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.js
      deleted file mode 100644
      index 6f3358b0c39a32..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.js
      +++ /dev/null
      @@ -1,352 +0,0 @@
      -/**
      - * Single-use utility classes to provide functionality to the {@link Glob}
      - * methods.
      - *
      - * @module
      - */
      -import { Minipass } from 'minipass';
      -import { Ignore } from './ignore.js';
      -import { Processor } from './processor.js';
      -const makeIgnore = (ignore, opts) => typeof ignore === 'string'
      -    ? new Ignore([ignore], opts)
      -    : Array.isArray(ignore)
      -        ? new Ignore(ignore, opts)
      -        : ignore;
      -/**
      - * basic walking utilities that all the glob walker types use
      - */
      -export class GlobUtil {
      -    path;
      -    patterns;
      -    opts;
      -    seen = new Set();
      -    paused = false;
      -    aborted = false;
      -    #onResume = [];
      -    #ignore;
      -    #sep;
      -    signal;
      -    maxDepth;
      -    constructor(patterns, path, opts) {
      -        this.patterns = patterns;
      -        this.path = path;
      -        this.opts = opts;
      -        this.#sep = !opts.posix && opts.platform === 'win32' ? '\\' : '/';
      -        if (opts.ignore) {
      -            this.#ignore = makeIgnore(opts.ignore, opts);
      -        }
      -        // ignore, always set with maxDepth, but it's optional on the
      -        // GlobOptions type
      -        /* c8 ignore start */
      -        this.maxDepth = opts.maxDepth || Infinity;
      -        /* c8 ignore stop */
      -        if (opts.signal) {
      -            this.signal = opts.signal;
      -            this.signal.addEventListener('abort', () => {
      -                this.#onResume.length = 0;
      -            });
      -        }
      -    }
      -    #ignored(path) {
      -        return this.seen.has(path) || !!this.#ignore?.ignored?.(path);
      -    }
      -    #childrenIgnored(path) {
      -        return !!this.#ignore?.childrenIgnored?.(path);
      -    }
      -    // backpressure mechanism
      -    pause() {
      -        this.paused = true;
      -    }
      -    resume() {
      -        /* c8 ignore start */
      -        if (this.signal?.aborted)
      -            return;
      -        /* c8 ignore stop */
      -        this.paused = false;
      -        let fn = undefined;
      -        while (!this.paused && (fn = this.#onResume.shift())) {
      -            fn();
      -        }
      -    }
      -    onResume(fn) {
      -        if (this.signal?.aborted)
      -            return;
      -        /* c8 ignore start */
      -        if (!this.paused) {
      -            fn();
      -        }
      -        else {
      -            /* c8 ignore stop */
      -            this.#onResume.push(fn);
      -        }
      -    }
      -    // do the requisite realpath/stat checking, and return the path
      -    // to add or undefined to filter it out.
      -    async matchCheck(e, ifDir) {
      -        if (ifDir && this.opts.nodir)
      -            return undefined;
      -        let rpc;
      -        if (this.opts.realpath) {
      -            rpc = e.realpathCached() || (await e.realpath());
      -            if (!rpc)
      -                return undefined;
      -            e = rpc;
      -        }
      -        const needStat = e.isUnknown() || this.opts.stat;
      -        return this.matchCheckTest(needStat ? await e.lstat() : e, ifDir);
      -    }
      -    matchCheckTest(e, ifDir) {
      -        return e &&
      -            (this.maxDepth === Infinity || e.depth() <= this.maxDepth) &&
      -            (!ifDir || e.canReaddir()) &&
      -            (!this.opts.nodir || !e.isDirectory()) &&
      -            !this.#ignored(e)
      -            ? e
      -            : undefined;
      -    }
      -    matchCheckSync(e, ifDir) {
      -        if (ifDir && this.opts.nodir)
      -            return undefined;
      -        let rpc;
      -        if (this.opts.realpath) {
      -            rpc = e.realpathCached() || e.realpathSync();
      -            if (!rpc)
      -                return undefined;
      -            e = rpc;
      -        }
      -        const needStat = e.isUnknown() || this.opts.stat;
      -        return this.matchCheckTest(needStat ? e.lstatSync() : e, ifDir);
      -    }
      -    matchFinish(e, absolute) {
      -        if (this.#ignored(e))
      -            return;
      -        const abs = this.opts.absolute === undefined ? absolute : this.opts.absolute;
      -        this.seen.add(e);
      -        const mark = this.opts.mark && e.isDirectory() ? this.#sep : '';
      -        // ok, we have what we need!
      -        if (this.opts.withFileTypes) {
      -            this.matchEmit(e);
      -        }
      -        else if (abs) {
      -            const abs = this.opts.posix ? e.fullpathPosix() : e.fullpath();
      -            this.matchEmit(abs + mark);
      -        }
      -        else {
      -            const rel = this.opts.posix ? e.relativePosix() : e.relative();
      -            const pre = this.opts.dotRelative && !rel.startsWith('..' + this.#sep)
      -                ? '.' + this.#sep
      -                : '';
      -            this.matchEmit(!rel ? '.' + mark : pre + rel + mark);
      -        }
      -    }
      -    async match(e, absolute, ifDir) {
      -        const p = await this.matchCheck(e, ifDir);
      -        if (p)
      -            this.matchFinish(p, absolute);
      -    }
      -    matchSync(e, absolute, ifDir) {
      -        const p = this.matchCheckSync(e, ifDir);
      -        if (p)
      -            this.matchFinish(p, absolute);
      -    }
      -    walkCB(target, patterns, cb) {
      -        /* c8 ignore start */
      -        if (this.signal?.aborted)
      -            cb();
      -        /* c8 ignore stop */
      -        this.walkCB2(target, patterns, new Processor(this.opts), cb);
      -    }
      -    walkCB2(target, patterns, processor, cb) {
      -        if (this.#childrenIgnored(target))
      -            return cb();
      -        if (this.signal?.aborted)
      -            cb();
      -        if (this.paused) {
      -            this.onResume(() => this.walkCB2(target, patterns, processor, cb));
      -            return;
      -        }
      -        processor.processPatterns(target, patterns);
      -        // done processing.  all of the above is sync, can be abstracted out.
      -        // subwalks is a map of paths to the entry filters they need
      -        // matches is a map of paths to [absolute, ifDir] tuples.
      -        let tasks = 1;
      -        const next = () => {
      -            if (--tasks === 0)
      -                cb();
      -        };
      -        for (const [m, absolute, ifDir] of processor.matches.entries()) {
      -            if (this.#ignored(m))
      -                continue;
      -            tasks++;
      -            this.match(m, absolute, ifDir).then(() => next());
      -        }
      -        for (const t of processor.subwalkTargets()) {
      -            if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {
      -                continue;
      -            }
      -            tasks++;
      -            const childrenCached = t.readdirCached();
      -            if (t.calledReaddir())
      -                this.walkCB3(t, childrenCached, processor, next);
      -            else {
      -                t.readdirCB((_, entries) => this.walkCB3(t, entries, processor, next), true);
      -            }
      -        }
      -        next();
      -    }
      -    walkCB3(target, entries, processor, cb) {
      -        processor = processor.filterEntries(target, entries);
      -        let tasks = 1;
      -        const next = () => {
      -            if (--tasks === 0)
      -                cb();
      -        };
      -        for (const [m, absolute, ifDir] of processor.matches.entries()) {
      -            if (this.#ignored(m))
      -                continue;
      -            tasks++;
      -            this.match(m, absolute, ifDir).then(() => next());
      -        }
      -        for (const [target, patterns] of processor.subwalks.entries()) {
      -            tasks++;
      -            this.walkCB2(target, patterns, processor.child(), next);
      -        }
      -        next();
      -    }
      -    walkCBSync(target, patterns, cb) {
      -        /* c8 ignore start */
      -        if (this.signal?.aborted)
      -            cb();
      -        /* c8 ignore stop */
      -        this.walkCB2Sync(target, patterns, new Processor(this.opts), cb);
      -    }
      -    walkCB2Sync(target, patterns, processor, cb) {
      -        if (this.#childrenIgnored(target))
      -            return cb();
      -        if (this.signal?.aborted)
      -            cb();
      -        if (this.paused) {
      -            this.onResume(() => this.walkCB2Sync(target, patterns, processor, cb));
      -            return;
      -        }
      -        processor.processPatterns(target, patterns);
      -        // done processing.  all of the above is sync, can be abstracted out.
      -        // subwalks is a map of paths to the entry filters they need
      -        // matches is a map of paths to [absolute, ifDir] tuples.
      -        let tasks = 1;
      -        const next = () => {
      -            if (--tasks === 0)
      -                cb();
      -        };
      -        for (const [m, absolute, ifDir] of processor.matches.entries()) {
      -            if (this.#ignored(m))
      -                continue;
      -            this.matchSync(m, absolute, ifDir);
      -        }
      -        for (const t of processor.subwalkTargets()) {
      -            if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {
      -                continue;
      -            }
      -            tasks++;
      -            const children = t.readdirSync();
      -            this.walkCB3Sync(t, children, processor, next);
      -        }
      -        next();
      -    }
      -    walkCB3Sync(target, entries, processor, cb) {
      -        processor = processor.filterEntries(target, entries);
      -        let tasks = 1;
      -        const next = () => {
      -            if (--tasks === 0)
      -                cb();
      -        };
      -        for (const [m, absolute, ifDir] of processor.matches.entries()) {
      -            if (this.#ignored(m))
      -                continue;
      -            this.matchSync(m, absolute, ifDir);
      -        }
      -        for (const [target, patterns] of processor.subwalks.entries()) {
      -            tasks++;
      -            this.walkCB2Sync(target, patterns, processor.child(), next);
      -        }
      -        next();
      -    }
      -}
      -export class GlobWalker extends GlobUtil {
      -    matches;
      -    constructor(patterns, path, opts) {
      -        super(patterns, path, opts);
      -        this.matches = new Set();
      -    }
      -    matchEmit(e) {
      -        this.matches.add(e);
      -    }
      -    async walk() {
      -        if (this.signal?.aborted)
      -            throw this.signal.reason;
      -        if (this.path.isUnknown()) {
      -            await this.path.lstat();
      -        }
      -        await new Promise((res, rej) => {
      -            this.walkCB(this.path, this.patterns, () => {
      -                if (this.signal?.aborted) {
      -                    rej(this.signal.reason);
      -                }
      -                else {
      -                    res(this.matches);
      -                }
      -            });
      -        });
      -        return this.matches;
      -    }
      -    walkSync() {
      -        if (this.signal?.aborted)
      -            throw this.signal.reason;
      -        if (this.path.isUnknown()) {
      -            this.path.lstatSync();
      -        }
      -        // nothing for the callback to do, because this never pauses
      -        this.walkCBSync(this.path, this.patterns, () => {
      -            if (this.signal?.aborted)
      -                throw this.signal.reason;
      -        });
      -        return this.matches;
      -    }
      -}
      -export class GlobStream extends GlobUtil {
      -    results;
      -    constructor(patterns, path, opts) {
      -        super(patterns, path, opts);
      -        this.results = new Minipass({
      -            signal: this.signal,
      -            objectMode: true,
      -        });
      -        this.results.on('drain', () => this.resume());
      -        this.results.on('resume', () => this.resume());
      -    }
      -    matchEmit(e) {
      -        this.results.write(e);
      -        if (!this.results.flowing)
      -            this.pause();
      -    }
      -    stream() {
      -        const target = this.path;
      -        if (target.isUnknown()) {
      -            target.lstat().then(() => {
      -                this.walkCB(target, this.patterns, () => this.results.end());
      -            });
      -        }
      -        else {
      -            this.walkCB(target, this.patterns, () => this.results.end());
      -        }
      -        return this.results;
      -    }
      -    streamSync() {
      -        if (this.path.isUnknown()) {
      -            this.path.lstatSync();
      -        }
      -        this.walkCBSync(this.path, this.patterns, () => this.results.end());
      -        return this.results;
      -    }
      -}
      -//# sourceMappingURL=walker.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.js.map b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.js.map
      deleted file mode 100644
      index 8756bfca294503..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/dist/mjs/walker.js.map
      +++ /dev/null
      @@ -1 +0,0 @@
      -{"version":3,"file":"walker.js","sourceRoot":"","sources":["../../src/walker.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAA;AAEnC,OAAO,EAAE,MAAM,EAAc,MAAM,aAAa,CAAA;AAQhD,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAiE1C,MAAM,UAAU,GAAG,CACjB,MAAsC,EACtC,IAAoB,EACR,EAAE,CACd,OAAO,MAAM,KAAK,QAAQ;IACxB,CAAC,CAAC,IAAI,MAAM,CAAC,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC;IAC5B,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;QACvB,CAAC,CAAC,IAAI,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC;QAC1B,CAAC,CAAC,MAAM,CAAA;AAEZ;;GAEG;AACH,MAAM,OAAgB,QAAQ;IAC5B,IAAI,CAAM;IACV,QAAQ,CAAW;IACnB,IAAI,CAAG;IACP,IAAI,GAAc,IAAI,GAAG,EAAQ,CAAA;IACjC,MAAM,GAAY,KAAK,CAAA;IACvB,OAAO,GAAY,KAAK,CAAA;IACxB,SAAS,GAAkB,EAAE,CAAA;IAC7B,OAAO,CAAa;IACpB,IAAI,CAAY;IAChB,MAAM,CAAc;IACpB,QAAQ,CAAQ;IAGhB,YAAY,QAAmB,EAAE,IAAU,EAAE,IAAO;QAClD,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACxB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,IAAI,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAA;QACjE,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,OAAO,GAAG,UAAU,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;SAC7C;QACD,6DAA6D;QAC7D,mBAAmB;QACnB,qBAAqB;QACrB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,QAAQ,CAAA;QACzC,oBAAoB;QACpB,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;YACzB,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE;gBACzC,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAA;YAC3B,CAAC,CAAC,CAAA;SACH;IACH,CAAC;IAED,QAAQ,CAAC,IAAU;QACjB,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,CAAC,IAAI,CAAC,CAAA;IAC/D,CAAC;IACD,gBAAgB,CAAC,IAAU;QACzB,OAAO,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,eAAe,EAAE,CAAC,IAAI,CAAC,CAAA;IAChD,CAAC;IAED,yBAAyB;IACzB,KAAK;QACH,IAAI,CAAC,MAAM,GAAG,IAAI,CAAA;IACpB,CAAC;IACD,MAAM;QACJ,qBAAqB;QACrB,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,OAAM;QAChC,oBAAoB;QACpB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;QACnB,IAAI,EAAE,GAA4B,SAAS,CAAA;QAC3C,OAAO,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,CAAC,EAAE;YACpD,EAAE,EAAE,CAAA;SACL;IACH,CAAC;IACD,QAAQ,CAAC,EAAa;QACpB,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,OAAM;QAChC,qBAAqB;QACrB,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE;YAChB,EAAE,EAAE,CAAA;SACL;aAAM;YACL,oBAAoB;YACpB,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;SACxB;IACH,CAAC;IAED,+DAA+D;IAC/D,wCAAwC;IACxC,KAAK,CAAC,UAAU,CAAC,CAAO,EAAE,KAAc;QACtC,IAAI,KAAK,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK;YAAE,OAAO,SAAS,CAAA;QAC9C,IAAI,GAAqB,CAAA;QACzB,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;YACtB,GAAG,GAAG,CAAC,CAAC,cAAc,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAA;YAChD,IAAI,CAAC,GAAG;gBAAE,OAAO,SAAS,CAAA;YAC1B,CAAC,GAAG,GAAG,CAAA;SACR;QACD,MAAM,QAAQ,GAAG,CAAC,CAAC,SAAS,EAAE,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;QAChD,OAAO,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;IACnE,CAAC;IAED,cAAc,CAAC,CAAmB,EAAE,KAAc;QAChD,OAAO,CAAC;YACN,CAAC,IAAI,CAAC,QAAQ,KAAK,QAAQ,IAAI,CAAC,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC,QAAQ,CAAC;YAC1D,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,UAAU,EAAE,CAAC;YAC1B,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;YACtC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;YACjB,CAAC,CAAC,CAAC;YACH,CAAC,CAAC,SAAS,CAAA;IACf,CAAC;IAED,cAAc,CAAC,CAAO,EAAE,KAAc;QACpC,IAAI,KAAK,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK;YAAE,OAAO,SAAS,CAAA;QAC9C,IAAI,GAAqB,CAAA;QACzB,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;YACtB,GAAG,GAAG,CAAC,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC,YAAY,EAAE,CAAA;YAC5C,IAAI,CAAC,GAAG;gBAAE,OAAO,SAAS,CAAA;YAC1B,CAAC,GAAG,GAAG,CAAA;SACR;QACD,MAAM,QAAQ,GAAG,CAAC,CAAC,SAAS,EAAE,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAA;QAChD,OAAO,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;IACjE,CAAC;IAKD,WAAW,CAAC,CAAO,EAAE,QAAiB;QACpC,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;YAAE,OAAM;QAC5B,MAAM,GAAG,GACP,IAAI,CAAC,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAA;QAClE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;QAChB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAA;QAC/D,4BAA4B;QAC5B,IAAI,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;YAC3B,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAA;SAClB;aAAM,IAAI,GAAG,EAAE;YACd,MAAM,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAA;YAC9D,IAAI,CAAC,SAAS,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;SAC3B;aAAM;YACL,MAAM,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAA;YAC9D,MAAM,GAAG,GACP,IAAI,CAAC,IAAI,CAAC,WAAW,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;gBACxD,CAAC,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI;gBACjB,CAAC,CAAC,EAAE,CAAA;YACR,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,GAAG,IAAI,CAAC,CAAA;SACrD;IACH,CAAC;IAED,KAAK,CAAC,KAAK,CAAC,CAAO,EAAE,QAAiB,EAAE,KAAc;QACpD,MAAM,CAAC,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;QACzC,IAAI,CAAC;YAAE,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAA;IACtC,CAAC;IAED,SAAS,CAAC,CAAO,EAAE,QAAiB,EAAE,KAAc;QAClD,MAAM,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;QACvC,IAAI,CAAC;YAAE,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAA;IACtC,CAAC;IAED,MAAM,CAAC,MAAY,EAAE,QAAmB,EAAE,EAAa;QACrD,qBAAqB;QACrB,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,EAAE,EAAE,CAAA;QAC9B,oBAAoB;QACpB,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;IAC9D,CAAC;IAED,OAAO,CACL,MAAY,EACZ,QAAmB,EACnB,SAAoB,EACpB,EAAa;QAEb,IAAI,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;YAAE,OAAO,EAAE,EAAE,CAAA;QAC9C,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,EAAE,EAAE,CAAA;QAC9B,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC,CAAA;YAClE,OAAM;SACP;QACD,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;QAE3C,qEAAqE;QACrE,4DAA4D;QAC5D,yDAAyD;QACzD,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,MAAM,IAAI,GAAG,GAAG,EAAE;YAChB,IAAI,EAAE,KAAK,KAAK,CAAC;gBAAE,EAAE,EAAE,CAAA;QACzB,CAAC,CAAA;QAED,KAAK,MAAM,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAC9D,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAAE,SAAQ;YAC9B,KAAK,EAAE,CAAA;YACP,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,CAAA;SAClD;QAED,KAAK,MAAM,CAAC,IAAI,SAAS,CAAC,cAAc,EAAE,EAAE;YAC1C,IAAI,IAAI,CAAC,QAAQ,KAAK,QAAQ,IAAI,CAAC,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC,QAAQ,EAAE;gBAC5D,SAAQ;aACT;YACD,KAAK,EAAE,CAAA;YACP,MAAM,cAAc,GAAG,CAAC,CAAC,aAAa,EAAE,CAAA;YACxC,IAAI,CAAC,CAAC,aAAa,EAAE;gBACnB,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,cAAc,EAAE,SAAS,EAAE,IAAI,CAAC,CAAA;iBAC7C;gBACH,CAAC,CAAC,SAAS,CACT,CAAC,CAAC,EAAE,OAAO,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,IAAI,CAAC,EACzD,IAAI,CACL,CAAA;aACF;SACF;QAED,IAAI,EAAE,CAAA;IACR,CAAC;IAED,OAAO,CACL,MAAY,EACZ,OAAe,EACf,SAAoB,EACpB,EAAa;QAEb,SAAS,GAAG,SAAS,CAAC,aAAa,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;QAEpD,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,MAAM,IAAI,GAAG,GAAG,EAAE;YAChB,IAAI,EAAE,KAAK,KAAK,CAAC;gBAAE,EAAE,EAAE,CAAA;QACzB,CAAC,CAAA;QAED,KAAK,MAAM,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAC9D,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAAE,SAAQ;YAC9B,KAAK,EAAE,CAAA;YACP,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,CAAA;SAClD;QACD,KAAK,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE;YAC7D,KAAK,EAAE,CAAA;YACP,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,CAAC,KAAK,EAAE,EAAE,IAAI,CAAC,CAAA;SACxD;QAED,IAAI,EAAE,CAAA;IACR,CAAC;IAED,UAAU,CAAC,MAAY,EAAE,QAAmB,EAAE,EAAa;QACzD,qBAAqB;QACrB,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,EAAE,EAAE,CAAA;QAC9B,oBAAoB;QACpB,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAA;IAClE,CAAC;IAED,WAAW,CACT,MAAY,EACZ,QAAmB,EACnB,SAAoB,EACpB,EAAa;QAEb,IAAI,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;YAAE,OAAO,EAAE,EAAE,CAAA;QAC9C,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,EAAE,EAAE,CAAA;QAC9B,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CACjB,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,CAAC,CAClD,CAAA;YACD,OAAM;SACP;QACD,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;QAE3C,qEAAqE;QACrE,4DAA4D;QAC5D,yDAAyD;QACzD,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,MAAM,IAAI,GAAG,GAAG,EAAE;YAChB,IAAI,EAAE,KAAK,KAAK,CAAC;gBAAE,EAAE,EAAE,CAAA;QACzB,CAAC,CAAA;QAED,KAAK,MAAM,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAC9D,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAAE,SAAQ;YAC9B,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;SACnC;QAED,KAAK,MAAM,CAAC,IAAI,SAAS,CAAC,cAAc,EAAE,EAAE;YAC1C,IAAI,IAAI,CAAC,QAAQ,KAAK,QAAQ,IAAI,CAAC,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC,QAAQ,EAAE;gBAC5D,SAAQ;aACT;YACD,KAAK,EAAE,CAAA;YACP,MAAM,QAAQ,GAAG,CAAC,CAAC,WAAW,EAAE,CAAA;YAChC,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,IAAI,CAAC,CAAA;SAC/C;QAED,IAAI,EAAE,CAAA;IACR,CAAC;IAED,WAAW,CACT,MAAY,EACZ,OAAe,EACf,SAAoB,EACpB,EAAa;QAEb,SAAS,GAAG,SAAS,CAAC,aAAa,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;QAEpD,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,MAAM,IAAI,GAAG,GAAG,EAAE;YAChB,IAAI,EAAE,KAAK,KAAK,CAAC;gBAAE,EAAE,EAAE,CAAA;QACzB,CAAC,CAAA;QAED,KAAK,MAAM,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE;YAC9D,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBAAE,SAAQ;YAC9B,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAA;SACnC;QACD,KAAK,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,EAAE;YAC7D,KAAK,EAAE,CAAA;YACP,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,CAAC,KAAK,EAAE,EAAE,IAAI,CAAC,CAAA;SAC5D;QAED,IAAI,EAAE,CAAA;IACR,CAAC;CACF;AAED,MAAM,OAAO,UAEX,SAAQ,QAAW;IACnB,OAAO,CAMe;IAEtB,YAAY,QAAmB,EAAE,IAAU,EAAE,IAAO;QAClD,KAAK,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;QAC3B,IAAI,CAAC,OAAO,GAAG,IAAI,GAAG,EAAgB,CAAA;IACxC,CAAC;IAGD,SAAS,CAAC,CAAgB;QACxB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;IACrB,CAAC;IAED,KAAK,CAAC,IAAI;QACR,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAA;QAClD,IAAI,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE;YACzB,MAAM,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAA;SACxB;QACD,MAAM,IAAI,OAAO,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;YAC7B,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE;gBACzC,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO,EAAE;oBACxB,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;iBACxB;qBAAM;oBACL,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;iBAClB;YACH,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;IAED,QAAQ;QACN,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;YAAE,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAA;QAClD,IAAI,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE;YACzB,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,CAAA;SACtB;QACD,4DAA4D;QAC5D,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE;YAC7C,IAAI,IAAI,CAAC,MAAM,EAAE,OAAO;gBAAE,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAA;QACpD,CAAC,CAAC,CAAA;QACF,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;CACF;AAED,MAAM,OAAO,UAEX,SAAQ,QAAW;IACnB,OAAO,CAMmC;IAE1C,YAAY,QAAmB,EAAE,IAAU,EAAE,IAAO;QAClD,KAAK,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,CAAA;QAC3B,IAAI,CAAC,OAAO,GAAG,IAAI,QAAQ,CAAC;YAC1B,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,UAAU,EAAE,IAAI;SACjB,CAAmB,CAAA;QACpB,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAA;QAC7C,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAA;IAChD,CAAC;IAGD,SAAS,CAAC,CAAgB;QACxB,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;QACrB,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO;YAAE,IAAI,CAAC,KAAK,EAAE,CAAA;IACzC,CAAC;IAED,MAAM;QACJ,MAAM,MAAM,GAAG,IAAI,CAAC,IAAI,CAAA;QACxB,IAAI,MAAM,CAAC,SAAS,EAAE,EAAE;YACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvB,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAA;YAC9D,CAAC,CAAC,CAAA;SACH;aAAM;YACL,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAA;SAC7D;QACD,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;IAED,UAAU;QACR,IAAI,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE;YACzB,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,CAAA;SACtB;QACD,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAA;QACnE,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;CACF","sourcesContent":["/**\n * Single-use utility classes to provide functionality to the {@link Glob}\n * methods.\n *\n * @module\n */\nimport { Minipass } from 'minipass'\nimport { Path } from 'path-scurry'\nimport { Ignore, IgnoreLike } from './ignore.js'\n\n// XXX can we somehow make it so that it NEVER processes a given path more than\n// once, enough that the match set tracking is no longer needed?  that'd speed\n// things up a lot.  Or maybe bring back nounique, and skip it in that case?\n\n// a single minimatch set entry with 1 or more parts\nimport { Pattern } from './pattern.js'\nimport { Processor } from './processor.js'\n\nexport interface GlobWalkerOpts {\n  absolute?: boolean\n  allowWindowsEscape?: boolean\n  cwd?: string | URL\n  dot?: boolean\n  dotRelative?: boolean\n  follow?: boolean\n  ignore?: string | string[] | IgnoreLike\n  mark?: boolean\n  matchBase?: boolean\n  // Note: maxDepth here means \"maximum actual Path.depth()\",\n  // not \"maximum depth beyond cwd\"\n  maxDepth?: number\n  nobrace?: boolean\n  nocase?: boolean\n  nodir?: boolean\n  noext?: boolean\n  noglobstar?: boolean\n  platform?: NodeJS.Platform\n  posix?: boolean\n  realpath?: boolean\n  root?: string\n  stat?: boolean\n  signal?: AbortSignal\n  windowsPathsNoEscape?: boolean\n  withFileTypes?: boolean\n}\n\nexport type GWOFileTypesTrue = GlobWalkerOpts & {\n  withFileTypes: true\n}\nexport type GWOFileTypesFalse = GlobWalkerOpts & {\n  withFileTypes: false\n}\nexport type GWOFileTypesUnset = GlobWalkerOpts & {\n  withFileTypes?: undefined\n}\n\nexport type Result = O extends GWOFileTypesTrue\n  ? Path\n  : O extends GWOFileTypesFalse\n  ? string\n  : O extends GWOFileTypesUnset\n  ? string\n  : Path | string\n\nexport type Matches = O extends GWOFileTypesTrue\n  ? Set\n  : O extends GWOFileTypesFalse\n  ? Set\n  : O extends GWOFileTypesUnset\n  ? Set\n  : Set\n\nexport type MatchStream =\n  O extends GWOFileTypesTrue\n    ? Minipass\n    : O extends GWOFileTypesFalse\n    ? Minipass\n    : O extends GWOFileTypesUnset\n    ? Minipass\n    : Minipass\n\nconst makeIgnore = (\n  ignore: string | string[] | IgnoreLike,\n  opts: GlobWalkerOpts\n): IgnoreLike =>\n  typeof ignore === 'string'\n    ? new Ignore([ignore], opts)\n    : Array.isArray(ignore)\n    ? new Ignore(ignore, opts)\n    : ignore\n\n/**\n * basic walking utilities that all the glob walker types use\n */\nexport abstract class GlobUtil {\n  path: Path\n  patterns: Pattern[]\n  opts: O\n  seen: Set = new Set()\n  paused: boolean = false\n  aborted: boolean = false\n  #onResume: (() => any)[] = []\n  #ignore?: IgnoreLike\n  #sep: '\\\\' | '/'\n  signal?: AbortSignal\n  maxDepth: number\n\n  constructor(patterns: Pattern[], path: Path, opts: O)\n  constructor(patterns: Pattern[], path: Path, opts: O) {\n    this.patterns = patterns\n    this.path = path\n    this.opts = opts\n    this.#sep = !opts.posix && opts.platform === 'win32' ? '\\\\' : '/'\n    if (opts.ignore) {\n      this.#ignore = makeIgnore(opts.ignore, opts)\n    }\n    // ignore, always set with maxDepth, but it's optional on the\n    // GlobOptions type\n    /* c8 ignore start */\n    this.maxDepth = opts.maxDepth || Infinity\n    /* c8 ignore stop */\n    if (opts.signal) {\n      this.signal = opts.signal\n      this.signal.addEventListener('abort', () => {\n        this.#onResume.length = 0\n      })\n    }\n  }\n\n  #ignored(path: Path): boolean {\n    return this.seen.has(path) || !!this.#ignore?.ignored?.(path)\n  }\n  #childrenIgnored(path: Path): boolean {\n    return !!this.#ignore?.childrenIgnored?.(path)\n  }\n\n  // backpressure mechanism\n  pause() {\n    this.paused = true\n  }\n  resume() {\n    /* c8 ignore start */\n    if (this.signal?.aborted) return\n    /* c8 ignore stop */\n    this.paused = false\n    let fn: (() => any) | undefined = undefined\n    while (!this.paused && (fn = this.#onResume.shift())) {\n      fn()\n    }\n  }\n  onResume(fn: () => any) {\n    if (this.signal?.aborted) return\n    /* c8 ignore start */\n    if (!this.paused) {\n      fn()\n    } else {\n      /* c8 ignore stop */\n      this.#onResume.push(fn)\n    }\n  }\n\n  // do the requisite realpath/stat checking, and return the path\n  // to add or undefined to filter it out.\n  async matchCheck(e: Path, ifDir: boolean): Promise {\n    if (ifDir && this.opts.nodir) return undefined\n    let rpc: Path | undefined\n    if (this.opts.realpath) {\n      rpc = e.realpathCached() || (await e.realpath())\n      if (!rpc) return undefined\n      e = rpc\n    }\n    const needStat = e.isUnknown() || this.opts.stat\n    return this.matchCheckTest(needStat ? await e.lstat() : e, ifDir)\n  }\n\n  matchCheckTest(e: Path | undefined, ifDir: boolean): Path | undefined {\n    return e &&\n      (this.maxDepth === Infinity || e.depth() <= this.maxDepth) &&\n      (!ifDir || e.canReaddir()) &&\n      (!this.opts.nodir || !e.isDirectory()) &&\n      !this.#ignored(e)\n      ? e\n      : undefined\n  }\n\n  matchCheckSync(e: Path, ifDir: boolean): Path | undefined {\n    if (ifDir && this.opts.nodir) return undefined\n    let rpc: Path | undefined\n    if (this.opts.realpath) {\n      rpc = e.realpathCached() || e.realpathSync()\n      if (!rpc) return undefined\n      e = rpc\n    }\n    const needStat = e.isUnknown() || this.opts.stat\n    return this.matchCheckTest(needStat ? e.lstatSync() : e, ifDir)\n  }\n\n  abstract matchEmit(p: Result): void\n  abstract matchEmit(p: string | Path): void\n\n  matchFinish(e: Path, absolute: boolean) {\n    if (this.#ignored(e)) return\n    const abs =\n      this.opts.absolute === undefined ? absolute : this.opts.absolute\n    this.seen.add(e)\n    const mark = this.opts.mark && e.isDirectory() ? this.#sep : ''\n    // ok, we have what we need!\n    if (this.opts.withFileTypes) {\n      this.matchEmit(e)\n    } else if (abs) {\n      const abs = this.opts.posix ? e.fullpathPosix() : e.fullpath()\n      this.matchEmit(abs + mark)\n    } else {\n      const rel = this.opts.posix ? e.relativePosix() : e.relative()\n      const pre =\n        this.opts.dotRelative && !rel.startsWith('..' + this.#sep)\n          ? '.' + this.#sep\n          : ''\n      this.matchEmit(!rel ? '.' + mark : pre + rel + mark)\n    }\n  }\n\n  async match(e: Path, absolute: boolean, ifDir: boolean): Promise {\n    const p = await this.matchCheck(e, ifDir)\n    if (p) this.matchFinish(p, absolute)\n  }\n\n  matchSync(e: Path, absolute: boolean, ifDir: boolean): void {\n    const p = this.matchCheckSync(e, ifDir)\n    if (p) this.matchFinish(p, absolute)\n  }\n\n  walkCB(target: Path, patterns: Pattern[], cb: () => any) {\n    /* c8 ignore start */\n    if (this.signal?.aborted) cb()\n    /* c8 ignore stop */\n    this.walkCB2(target, patterns, new Processor(this.opts), cb)\n  }\n\n  walkCB2(\n    target: Path,\n    patterns: Pattern[],\n    processor: Processor,\n    cb: () => any\n  ) {\n    if (this.#childrenIgnored(target)) return cb()\n    if (this.signal?.aborted) cb()\n    if (this.paused) {\n      this.onResume(() => this.walkCB2(target, patterns, processor, cb))\n      return\n    }\n    processor.processPatterns(target, patterns)\n\n    // done processing.  all of the above is sync, can be abstracted out.\n    // subwalks is a map of paths to the entry filters they need\n    // matches is a map of paths to [absolute, ifDir] tuples.\n    let tasks = 1\n    const next = () => {\n      if (--tasks === 0) cb()\n    }\n\n    for (const [m, absolute, ifDir] of processor.matches.entries()) {\n      if (this.#ignored(m)) continue\n      tasks++\n      this.match(m, absolute, ifDir).then(() => next())\n    }\n\n    for (const t of processor.subwalkTargets()) {\n      if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {\n        continue\n      }\n      tasks++\n      const childrenCached = t.readdirCached()\n      if (t.calledReaddir())\n        this.walkCB3(t, childrenCached, processor, next)\n      else {\n        t.readdirCB(\n          (_, entries) => this.walkCB3(t, entries, processor, next),\n          true\n        )\n      }\n    }\n\n    next()\n  }\n\n  walkCB3(\n    target: Path,\n    entries: Path[],\n    processor: Processor,\n    cb: () => any\n  ) {\n    processor = processor.filterEntries(target, entries)\n\n    let tasks = 1\n    const next = () => {\n      if (--tasks === 0) cb()\n    }\n\n    for (const [m, absolute, ifDir] of processor.matches.entries()) {\n      if (this.#ignored(m)) continue\n      tasks++\n      this.match(m, absolute, ifDir).then(() => next())\n    }\n    for (const [target, patterns] of processor.subwalks.entries()) {\n      tasks++\n      this.walkCB2(target, patterns, processor.child(), next)\n    }\n\n    next()\n  }\n\n  walkCBSync(target: Path, patterns: Pattern[], cb: () => any) {\n    /* c8 ignore start */\n    if (this.signal?.aborted) cb()\n    /* c8 ignore stop */\n    this.walkCB2Sync(target, patterns, new Processor(this.opts), cb)\n  }\n\n  walkCB2Sync(\n    target: Path,\n    patterns: Pattern[],\n    processor: Processor,\n    cb: () => any\n  ) {\n    if (this.#childrenIgnored(target)) return cb()\n    if (this.signal?.aborted) cb()\n    if (this.paused) {\n      this.onResume(() =>\n        this.walkCB2Sync(target, patterns, processor, cb)\n      )\n      return\n    }\n    processor.processPatterns(target, patterns)\n\n    // done processing.  all of the above is sync, can be abstracted out.\n    // subwalks is a map of paths to the entry filters they need\n    // matches is a map of paths to [absolute, ifDir] tuples.\n    let tasks = 1\n    const next = () => {\n      if (--tasks === 0) cb()\n    }\n\n    for (const [m, absolute, ifDir] of processor.matches.entries()) {\n      if (this.#ignored(m)) continue\n      this.matchSync(m, absolute, ifDir)\n    }\n\n    for (const t of processor.subwalkTargets()) {\n      if (this.maxDepth !== Infinity && t.depth() >= this.maxDepth) {\n        continue\n      }\n      tasks++\n      const children = t.readdirSync()\n      this.walkCB3Sync(t, children, processor, next)\n    }\n\n    next()\n  }\n\n  walkCB3Sync(\n    target: Path,\n    entries: Path[],\n    processor: Processor,\n    cb: () => any\n  ) {\n    processor = processor.filterEntries(target, entries)\n\n    let tasks = 1\n    const next = () => {\n      if (--tasks === 0) cb()\n    }\n\n    for (const [m, absolute, ifDir] of processor.matches.entries()) {\n      if (this.#ignored(m)) continue\n      this.matchSync(m, absolute, ifDir)\n    }\n    for (const [target, patterns] of processor.subwalks.entries()) {\n      tasks++\n      this.walkCB2Sync(target, patterns, processor.child(), next)\n    }\n\n    next()\n  }\n}\n\nexport class GlobWalker<\n  O extends GlobWalkerOpts = GlobWalkerOpts\n> extends GlobUtil {\n  matches: O extends GWOFileTypesTrue\n    ? Set\n    : O extends GWOFileTypesFalse\n    ? Set\n    : O extends GWOFileTypesUnset\n    ? Set\n    : Set\n\n  constructor(patterns: Pattern[], path: Path, opts: O) {\n    super(patterns, path, opts)\n    this.matches = new Set() as Matches\n  }\n\n  matchEmit(e: Result): void\n  matchEmit(e: Path | string): void {\n    this.matches.add(e)\n  }\n\n  async walk(): Promise> {\n    if (this.signal?.aborted) throw this.signal.reason\n    if (this.path.isUnknown()) {\n      await this.path.lstat()\n    }\n    await new Promise((res, rej) => {\n      this.walkCB(this.path, this.patterns, () => {\n        if (this.signal?.aborted) {\n          rej(this.signal.reason)\n        } else {\n          res(this.matches)\n        }\n      })\n    })\n    return this.matches\n  }\n\n  walkSync(): Matches {\n    if (this.signal?.aborted) throw this.signal.reason\n    if (this.path.isUnknown()) {\n      this.path.lstatSync()\n    }\n    // nothing for the callback to do, because this never pauses\n    this.walkCBSync(this.path, this.patterns, () => {\n      if (this.signal?.aborted) throw this.signal.reason\n    })\n    return this.matches\n  }\n}\n\nexport class GlobStream<\n  O extends GlobWalkerOpts = GlobWalkerOpts\n> extends GlobUtil {\n  results: O extends GWOFileTypesTrue\n    ? Minipass\n    : O extends GWOFileTypesFalse\n    ? Minipass\n    : O extends GWOFileTypesUnset\n    ? Minipass\n    : Minipass\n\n  constructor(patterns: Pattern[], path: Path, opts: O) {\n    super(patterns, path, opts)\n    this.results = new Minipass({\n      signal: this.signal,\n      objectMode: true,\n    }) as MatchStream\n    this.results.on('drain', () => this.resume())\n    this.results.on('resume', () => this.resume())\n  }\n\n  matchEmit(e: Result): void\n  matchEmit(e: Path | string): void {\n    this.results.write(e)\n    if (!this.results.flowing) this.pause()\n  }\n\n  stream(): MatchStream {\n    const target = this.path\n    if (target.isUnknown()) {\n      target.lstat().then(() => {\n        this.walkCB(target, this.patterns, () => this.results.end())\n      })\n    } else {\n      this.walkCB(target, this.patterns, () => this.results.end())\n    }\n    return this.results\n  }\n\n  streamSync(): MatchStream {\n    if (this.path.isUnknown()) {\n      this.path.lstatSync()\n    }\n    this.walkCBSync(this.path, this.patterns, () => this.results.end())\n    return this.results\n  }\n}\n"]}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/package.json
      deleted file mode 100644
      index 2d25985d2bbb5d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob/package.json
      +++ /dev/null
      @@ -1,98 +0,0 @@
      -{
      -  "author": "Isaac Z. Schlueter  (https://blog.izs.me/)",
      -  "name": "glob",
      -  "description": "the most correct and second fastest glob implementation in JavaScript",
      -  "version": "10.3.3",
      -  "bin": "./dist/cjs/src/bin.js",
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/isaacs/node-glob.git"
      -  },
      -  "main": "./dist/cjs/src/index.js",
      -  "module": "./dist/mjs/index.js",
      -  "types": "./dist/mjs/index.d.ts",
      -  "exports": {
      -    ".": {
      -      "import": {
      -        "types": "./dist/mjs/index.d.ts",
      -        "default": "./dist/mjs/index.js"
      -      },
      -      "require": {
      -        "types": "./dist/cjs/src/index.d.ts",
      -        "default": "./dist/cjs/src/index.js"
      -      }
      -    }
      -  },
      -  "files": [
      -    "dist"
      -  ],
      -  "scripts": {
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "prepublishOnly": "git push origin --follow-tags",
      -    "preprepare": "rm -rf dist",
      -    "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && bash fixup.sh",
      -    "pretest": "npm run prepare",
      -    "presnap": "npm run prepare",
      -    "test": "c8 tap",
      -    "snap": "c8 tap",
      -    "format": "prettier --write . --loglevel warn",
      -    "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts",
      -    "prepublish": "npm run benchclean",
      -    "profclean": "rm -f v8.log profile.txt",
      -    "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts",
      -    "prebench": "npm run prepare",
      -    "bench": "bash benchmark.sh",
      -    "preprof": "npm run prepare",
      -    "prof": "bash prof.sh",
      -    "benchclean": "node benchclean.js"
      -  },
      -  "prettier": {
      -    "semi": false,
      -    "printWidth": 75,
      -    "tabWidth": 2,
      -    "useTabs": false,
      -    "singleQuote": true,
      -    "jsxSingleQuote": false,
      -    "bracketSameLine": true,
      -    "arrowParens": "avoid",
      -    "endOfLine": "lf"
      -  },
      -  "dependencies": {
      -    "foreground-child": "^3.1.0",
      -    "jackspeak": "^2.0.3",
      -    "minimatch": "^9.0.1",
      -    "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
      -    "path-scurry": "^1.10.1"
      -  },
      -  "devDependencies": {
      -    "@types/node": "^20.3.2",
      -    "@types/tap": "^15.0.7",
      -    "c8": "^7.12.0",
      -    "memfs": "^3.4.13",
      -    "mkdirp": "^2.1.4",
      -    "prettier": "^2.8.3",
      -    "rimraf": "^4.1.3",
      -    "tap": "^16.3.4",
      -    "ts-node": "^10.9.1",
      -    "typedoc": "^0.23.24",
      -    "typescript": "^4.9.4"
      -  },
      -  "tap": {
      -    "before": "test/00-setup.ts",
      -    "coverage": false,
      -    "node-arg": [
      -      "--no-warnings",
      -      "--loader",
      -      "ts-node/esm"
      -    ],
      -    "ts": false
      -  },
      -  "license": "ISC",
      -  "funding": {
      -    "url": "https://github.com/sponsors/isaacs"
      -  },
      -  "engines": {
      -    "node": ">=16 || 14 >=14.17"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/LICENSE
      deleted file mode 100644
      index 1493534e60dce4..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) 2011-2023 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/cacache/node_modules/minimatch/dist/cjs/assert-valid-pattern.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/assert-valid-pattern.js
      deleted file mode 100644
      index 5fc86bbd0116c9..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/assert-valid-pattern.js
      +++ /dev/null
      @@ -1,14 +0,0 @@
      -"use strict";
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.assertValidPattern = void 0;
      -const MAX_PATTERN_LENGTH = 1024 * 64;
      -const assertValidPattern = (pattern) => {
      -    if (typeof pattern !== 'string') {
      -        throw new TypeError('invalid pattern');
      -    }
      -    if (pattern.length > MAX_PATTERN_LENGTH) {
      -        throw new TypeError('pattern is too long');
      -    }
      -};
      -exports.assertValidPattern = assertValidPattern;
      -//# sourceMappingURL=assert-valid-pattern.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/ast.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/ast.js
      deleted file mode 100644
      index 0b0cc8f3c50b3d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/ast.js
      +++ /dev/null
      @@ -1,589 +0,0 @@
      -"use strict";
      -// parse a single path portion
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.AST = void 0;
      -const brace_expressions_js_1 = require("./brace-expressions.js");
      -const unescape_js_1 = require("./unescape.js");
      -const types = new Set(['!', '?', '+', '*', '@']);
      -const isExtglobType = (c) => types.has(c);
      -// Patterns that get prepended to bind to the start of either the
      -// entire string, or just a single path portion, to prevent dots
      -// and/or traversal patterns, when needed.
      -// Exts don't need the ^ or / bit, because the root binds that already.
      -const startNoTraversal = '(?!(?:^|/)\\.\\.?(?:$|/))';
      -const startNoDot = '(?!\\.)';
      -// characters that indicate a start of pattern needs the "no dots" bit,
      -// because a dot *might* be matched. ( is not in the list, because in
      -// the case of a child extglob, it will handle the prevention itself.
      -const addPatternStart = new Set(['[', '.']);
      -// cases where traversal is A-OK, no dot prevention needed
      -const justDots = new Set(['..', '.']);
      -const reSpecials = new Set('().*{}+?[]^$\\!');
      -const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
      -// any single thing other than /
      -const qmark = '[^/]';
      -// * => any number of characters
      -const star = qmark + '*?';
      -// use + when we need to ensure that *something* matches, because the * is
      -// the only thing in the path portion.
      -const starNoEmpty = qmark + '+?';
      -// remove the \ chars that we added if we end up doing a nonmagic compare
      -// const deslash = (s: string) => s.replace(/\\(.)/g, '$1')
      -class AST {
      -    type;
      -    #root;
      -    #hasMagic;
      -    #uflag = false;
      -    #parts = [];
      -    #parent;
      -    #parentIndex;
      -    #negs;
      -    #filledNegs = false;
      -    #options;
      -    #toString;
      -    // set to true if it's an extglob with no children
      -    // (which really means one child of '')
      -    #emptyExt = false;
      -    constructor(type, parent, options = {}) {
      -        this.type = type;
      -        // extglobs are inherently magical
      -        if (type)
      -            this.#hasMagic = true;
      -        this.#parent = parent;
      -        this.#root = this.#parent ? this.#parent.#root : this;
      -        this.#options = this.#root === this ? options : this.#root.#options;
      -        this.#negs = this.#root === this ? [] : this.#root.#negs;
      -        if (type === '!' && !this.#root.#filledNegs)
      -            this.#negs.push(this);
      -        this.#parentIndex = this.#parent ? this.#parent.#parts.length : 0;
      -    }
      -    get hasMagic() {
      -        /* c8 ignore start */
      -        if (this.#hasMagic !== undefined)
      -            return this.#hasMagic;
      -        /* c8 ignore stop */
      -        for (const p of this.#parts) {
      -            if (typeof p === 'string')
      -                continue;
      -            if (p.type || p.hasMagic)
      -                return (this.#hasMagic = true);
      -        }
      -        // note: will be undefined until we generate the regexp src and find out
      -        return this.#hasMagic;
      -    }
      -    // reconstructs the pattern
      -    toString() {
      -        if (this.#toString !== undefined)
      -            return this.#toString;
      -        if (!this.type) {
      -            return (this.#toString = this.#parts.map(p => String(p)).join(''));
      -        }
      -        else {
      -            return (this.#toString =
      -                this.type + '(' + this.#parts.map(p => String(p)).join('|') + ')');
      -        }
      -    }
      -    #fillNegs() {
      -        /* c8 ignore start */
      -        if (this !== this.#root)
      -            throw new Error('should only call on root');
      -        if (this.#filledNegs)
      -            return this;
      -        /* c8 ignore stop */
      -        // call toString() once to fill this out
      -        this.toString();
      -        this.#filledNegs = true;
      -        let n;
      -        while ((n = this.#negs.pop())) {
      -            if (n.type !== '!')
      -                continue;
      -            // walk up the tree, appending everthing that comes AFTER parentIndex
      -            let p = n;
      -            let pp = p.#parent;
      -            while (pp) {
      -                for (let i = p.#parentIndex + 1; !pp.type && i < pp.#parts.length; i++) {
      -                    for (const part of n.#parts) {
      -                        /* c8 ignore start */
      -                        if (typeof part === 'string') {
      -                            throw new Error('string part in extglob AST??');
      -                        }
      -                        /* c8 ignore stop */
      -                        part.copyIn(pp.#parts[i]);
      -                    }
      -                }
      -                p = pp;
      -                pp = p.#parent;
      -            }
      -        }
      -        return this;
      -    }
      -    push(...parts) {
      -        for (const p of parts) {
      -            if (p === '')
      -                continue;
      -            /* c8 ignore start */
      -            if (typeof p !== 'string' && !(p instanceof AST && p.#parent === this)) {
      -                throw new Error('invalid part: ' + p);
      -            }
      -            /* c8 ignore stop */
      -            this.#parts.push(p);
      -        }
      -    }
      -    toJSON() {
      -        const ret = this.type === null
      -            ? this.#parts.slice().map(p => (typeof p === 'string' ? p : p.toJSON()))
      -            : [this.type, ...this.#parts.map(p => p.toJSON())];
      -        if (this.isStart() && !this.type)
      -            ret.unshift([]);
      -        if (this.isEnd() &&
      -            (this === this.#root ||
      -                (this.#root.#filledNegs && this.#parent?.type === '!'))) {
      -            ret.push({});
      -        }
      -        return ret;
      -    }
      -    isStart() {
      -        if (this.#root === this)
      -            return true;
      -        // if (this.type) return !!this.#parent?.isStart()
      -        if (!this.#parent?.isStart())
      -            return false;
      -        if (this.#parentIndex === 0)
      -            return true;
      -        // if everything AHEAD of this is a negation, then it's still the "start"
      -        const p = this.#parent;
      -        for (let i = 0; i < this.#parentIndex; i++) {
      -            const pp = p.#parts[i];
      -            if (!(pp instanceof AST && pp.type === '!')) {
      -                return false;
      -            }
      -        }
      -        return true;
      -    }
      -    isEnd() {
      -        if (this.#root === this)
      -            return true;
      -        if (this.#parent?.type === '!')
      -            return true;
      -        if (!this.#parent?.isEnd())
      -            return false;
      -        if (!this.type)
      -            return this.#parent?.isEnd();
      -        // if not root, it'll always have a parent
      -        /* c8 ignore start */
      -        const pl = this.#parent ? this.#parent.#parts.length : 0;
      -        /* c8 ignore stop */
      -        return this.#parentIndex === pl - 1;
      -    }
      -    copyIn(part) {
      -        if (typeof part === 'string')
      -            this.push(part);
      -        else
      -            this.push(part.clone(this));
      -    }
      -    clone(parent) {
      -        const c = new AST(this.type, parent);
      -        for (const p of this.#parts) {
      -            c.copyIn(p);
      -        }
      -        return c;
      -    }
      -    static #parseAST(str, ast, pos, opt) {
      -        let escaping = false;
      -        let inBrace = false;
      -        let braceStart = -1;
      -        let braceNeg = false;
      -        if (ast.type === null) {
      -            // outside of a extglob, append until we find a start
      -            let i = pos;
      -            let acc = '';
      -            while (i < str.length) {
      -                const c = str.charAt(i++);
      -                // still accumulate escapes at this point, but we do ignore
      -                // starts that are escaped
      -                if (escaping || c === '\\') {
      -                    escaping = !escaping;
      -                    acc += c;
      -                    continue;
      -                }
      -                if (inBrace) {
      -                    if (i === braceStart + 1) {
      -                        if (c === '^' || c === '!') {
      -                            braceNeg = true;
      -                        }
      -                    }
      -                    else if (c === ']' && !(i === braceStart + 2 && braceNeg)) {
      -                        inBrace = false;
      -                    }
      -                    acc += c;
      -                    continue;
      -                }
      -                else if (c === '[') {
      -                    inBrace = true;
      -                    braceStart = i;
      -                    braceNeg = false;
      -                    acc += c;
      -                    continue;
      -                }
      -                if (!opt.noext && isExtglobType(c) && str.charAt(i) === '(') {
      -                    ast.push(acc);
      -                    acc = '';
      -                    const ext = new AST(c, ast);
      -                    i = AST.#parseAST(str, ext, i, opt);
      -                    ast.push(ext);
      -                    continue;
      -                }
      -                acc += c;
      -            }
      -            ast.push(acc);
      -            return i;
      -        }
      -        // some kind of extglob, pos is at the (
      -        // find the next | or )
      -        let i = pos + 1;
      -        let part = new AST(null, ast);
      -        const parts = [];
      -        let acc = '';
      -        while (i < str.length) {
      -            const c = str.charAt(i++);
      -            // still accumulate escapes at this point, but we do ignore
      -            // starts that are escaped
      -            if (escaping || c === '\\') {
      -                escaping = !escaping;
      -                acc += c;
      -                continue;
      -            }
      -            if (inBrace) {
      -                if (i === braceStart + 1) {
      -                    if (c === '^' || c === '!') {
      -                        braceNeg = true;
      -                    }
      -                }
      -                else if (c === ']' && !(i === braceStart + 2 && braceNeg)) {
      -                    inBrace = false;
      -                }
      -                acc += c;
      -                continue;
      -            }
      -            else if (c === '[') {
      -                inBrace = true;
      -                braceStart = i;
      -                braceNeg = false;
      -                acc += c;
      -                continue;
      -            }
      -            if (isExtglobType(c) && str.charAt(i) === '(') {
      -                part.push(acc);
      -                acc = '';
      -                const ext = new AST(c, part);
      -                part.push(ext);
      -                i = AST.#parseAST(str, ext, i, opt);
      -                continue;
      -            }
      -            if (c === '|') {
      -                part.push(acc);
      -                acc = '';
      -                parts.push(part);
      -                part = new AST(null, ast);
      -                continue;
      -            }
      -            if (c === ')') {
      -                if (acc === '' && ast.#parts.length === 0) {
      -                    ast.#emptyExt = true;
      -                }
      -                part.push(acc);
      -                acc = '';
      -                ast.push(...parts, part);
      -                return i;
      -            }
      -            acc += c;
      -        }
      -        // unfinished extglob
      -        // if we got here, it was a malformed extglob! not an extglob, but
      -        // maybe something else in there.
      -        ast.type = null;
      -        ast.#hasMagic = undefined;
      -        ast.#parts = [str.substring(pos - 1)];
      -        return i;
      -    }
      -    static fromGlob(pattern, options = {}) {
      -        const ast = new AST(null, undefined, options);
      -        AST.#parseAST(pattern, ast, 0, options);
      -        return ast;
      -    }
      -    // returns the regular expression if there's magic, or the unescaped
      -    // string if not.
      -    toMMPattern() {
      -        // should only be called on root
      -        /* c8 ignore start */
      -        if (this !== this.#root)
      -            return this.#root.toMMPattern();
      -        /* c8 ignore stop */
      -        const glob = this.toString();
      -        const [re, body, hasMagic, uflag] = this.toRegExpSource();
      -        // if we're in nocase mode, and not nocaseMagicOnly, then we do
      -        // still need a regular expression if we have to case-insensitively
      -        // match capital/lowercase characters.
      -        const anyMagic = hasMagic ||
      -            this.#hasMagic ||
      -            (this.#options.nocase &&
      -                !this.#options.nocaseMagicOnly &&
      -                glob.toUpperCase() !== glob.toLowerCase());
      -        if (!anyMagic) {
      -            return body;
      -        }
      -        const flags = (this.#options.nocase ? 'i' : '') + (uflag ? 'u' : '');
      -        return Object.assign(new RegExp(`^${re}$`, flags), {
      -            _src: re,
      -            _glob: glob,
      -        });
      -    }
      -    // returns the string match, the regexp source, whether there's magic
      -    // in the regexp (so a regular expression is required) and whether or
      -    // not the uflag is needed for the regular expression (for posix classes)
      -    // TODO: instead of injecting the start/end at this point, just return
      -    // the BODY of the regexp, along with the start/end portions suitable
      -    // for binding the start/end in either a joined full-path makeRe context
      -    // (where we bind to (^|/), or a standalone matchPart context (where
      -    // we bind to ^, and not /).  Otherwise slashes get duped!
      -    //
      -    // In part-matching mode, the start is:
      -    // - if not isStart: nothing
      -    // - if traversal possible, but not allowed: ^(?!\.\.?$)
      -    // - if dots allowed or not possible: ^
      -    // - if dots possible and not allowed: ^(?!\.)
      -    // end is:
      -    // - if not isEnd(): nothing
      -    // - else: $
      -    //
      -    // In full-path matching mode, we put the slash at the START of the
      -    // pattern, so start is:
      -    // - if first pattern: same as part-matching mode
      -    // - if not isStart(): nothing
      -    // - if traversal possible, but not allowed: /(?!\.\.?(?:$|/))
      -    // - if dots allowed or not possible: /
      -    // - if dots possible and not allowed: /(?!\.)
      -    // end is:
      -    // - if last pattern, same as part-matching mode
      -    // - else nothing
      -    //
      -    // Always put the (?:$|/) on negated tails, though, because that has to be
      -    // there to bind the end of the negated pattern portion, and it's easier to
      -    // just stick it in now rather than try to inject it later in the middle of
      -    // the pattern.
      -    //
      -    // We can just always return the same end, and leave it up to the caller
      -    // to know whether it's going to be used joined or in parts.
      -    // And, if the start is adjusted slightly, can do the same there:
      -    // - if not isStart: nothing
      -    // - if traversal possible, but not allowed: (?:/|^)(?!\.\.?$)
      -    // - if dots allowed or not possible: (?:/|^)
      -    // - if dots possible and not allowed: (?:/|^)(?!\.)
      -    //
      -    // But it's better to have a simpler binding without a conditional, for
      -    // performance, so probably better to return both start options.
      -    //
      -    // Then the caller just ignores the end if it's not the first pattern,
      -    // and the start always gets applied.
      -    //
      -    // But that's always going to be $ if it's the ending pattern, or nothing,
      -    // so the caller can just attach $ at the end of the pattern when building.
      -    //
      -    // So the todo is:
      -    // - better detect what kind of start is needed
      -    // - return both flavors of starting pattern
      -    // - attach $ at the end of the pattern when creating the actual RegExp
      -    //
      -    // Ah, but wait, no, that all only applies to the root when the first pattern
      -    // is not an extglob. If the first pattern IS an extglob, then we need all
      -    // that dot prevention biz to live in the extglob portions, because eg
      -    // +(*|.x*) can match .xy but not .yx.
      -    //
      -    // So, return the two flavors if it's #root and the first child is not an
      -    // AST, otherwise leave it to the child AST to handle it, and there,
      -    // use the (?:^|/) style of start binding.
      -    //
      -    // Even simplified further:
      -    // - Since the start for a join is eg /(?!\.) and the start for a part
      -    // is ^(?!\.), we can just prepend (?!\.) to the pattern (either root
      -    // or start or whatever) and prepend ^ or / at the Regexp construction.
      -    toRegExpSource(allowDot) {
      -        const dot = allowDot ?? !!this.#options.dot;
      -        if (this.#root === this)
      -            this.#fillNegs();
      -        if (!this.type) {
      -            const noEmpty = this.isStart() && this.isEnd();
      -            const src = this.#parts
      -                .map(p => {
      -                const [re, _, hasMagic, uflag] = typeof p === 'string'
      -                    ? AST.#parseGlob(p, this.#hasMagic, noEmpty)
      -                    : p.toRegExpSource(allowDot);
      -                this.#hasMagic = this.#hasMagic || hasMagic;
      -                this.#uflag = this.#uflag || uflag;
      -                return re;
      -            })
      -                .join('');
      -            let start = '';
      -            if (this.isStart()) {
      -                if (typeof this.#parts[0] === 'string') {
      -                    // this is the string that will match the start of the pattern,
      -                    // so we need to protect against dots and such.
      -                    // '.' and '..' cannot match unless the pattern is that exactly,
      -                    // even if it starts with . or dot:true is set.
      -                    const dotTravAllowed = this.#parts.length === 1 && justDots.has(this.#parts[0]);
      -                    if (!dotTravAllowed) {
      -                        const aps = addPatternStart;
      -                        // check if we have a possibility of matching . or ..,
      -                        // and prevent that.
      -                        const needNoTrav =
      -                        // dots are allowed, and the pattern starts with [ or .
      -                        (dot && aps.has(src.charAt(0))) ||
      -                            // the pattern starts with \., and then [ or .
      -                            (src.startsWith('\\.') && aps.has(src.charAt(2))) ||
      -                            // the pattern starts with \.\., and then [ or .
      -                            (src.startsWith('\\.\\.') && aps.has(src.charAt(4)));
      -                        // no need to prevent dots if it can't match a dot, or if a
      -                        // sub-pattern will be preventing it anyway.
      -                        const needNoDot = !dot && !allowDot && aps.has(src.charAt(0));
      -                        start = needNoTrav ? startNoTraversal : needNoDot ? startNoDot : '';
      -                    }
      -                }
      -            }
      -            // append the "end of path portion" pattern to negation tails
      -            let end = '';
      -            if (this.isEnd() &&
      -                this.#root.#filledNegs &&
      -                this.#parent?.type === '!') {
      -                end = '(?:$|\\/)';
      -            }
      -            const final = start + src + end;
      -            return [
      -                final,
      -                (0, unescape_js_1.unescape)(src),
      -                (this.#hasMagic = !!this.#hasMagic),
      -                this.#uflag,
      -            ];
      -        }
      -        // We need to calculate the body *twice* if it's a repeat pattern
      -        // at the start, once in nodot mode, then again in dot mode, so a
      -        // pattern like *(?) can match 'x.y'
      -        const repeated = this.type === '*' || this.type === '+';
      -        // some kind of extglob
      -        const start = this.type === '!' ? '(?:(?!(?:' : '(?:';
      -        let body = this.#partsToRegExp(dot);
      -        if (this.isStart() && this.isEnd() && !body && this.type !== '!') {
      -            // invalid extglob, has to at least be *something* present, if it's
      -            // the entire path portion.
      -            const s = this.toString();
      -            this.#parts = [s];
      -            this.type = null;
      -            this.#hasMagic = undefined;
      -            return [s, (0, unescape_js_1.unescape)(this.toString()), false, false];
      -        }
      -        // XXX abstract out this map method
      -        let bodyDotAllowed = !repeated || allowDot || dot || !startNoDot
      -            ? ''
      -            : this.#partsToRegExp(true);
      -        if (bodyDotAllowed === body) {
      -            bodyDotAllowed = '';
      -        }
      -        if (bodyDotAllowed) {
      -            body = `(?:${body})(?:${bodyDotAllowed})*?`;
      -        }
      -        // an empty !() is exactly equivalent to a starNoEmpty
      -        let final = '';
      -        if (this.type === '!' && this.#emptyExt) {
      -            final = (this.isStart() && !dot ? startNoDot : '') + starNoEmpty;
      -        }
      -        else {
      -            const close = this.type === '!'
      -                ? // !() must match something,but !(x) can match ''
      -                    '))' +
      -                        (this.isStart() && !dot && !allowDot ? startNoDot : '') +
      -                        star +
      -                        ')'
      -                : this.type === '@'
      -                    ? ')'
      -                    : this.type === '?'
      -                        ? ')?'
      -                        : this.type === '+' && bodyDotAllowed
      -                            ? ')'
      -                            : this.type === '*' && bodyDotAllowed
      -                                ? `)?`
      -                                : `)${this.type}`;
      -            final = start + body + close;
      -        }
      -        return [
      -            final,
      -            (0, unescape_js_1.unescape)(body),
      -            (this.#hasMagic = !!this.#hasMagic),
      -            this.#uflag,
      -        ];
      -    }
      -    #partsToRegExp(dot) {
      -        return this.#parts
      -            .map(p => {
      -            // extglob ASTs should only contain parent ASTs
      -            /* c8 ignore start */
      -            if (typeof p === 'string') {
      -                throw new Error('string type in extglob ast??');
      -            }
      -            /* c8 ignore stop */
      -            // can ignore hasMagic, because extglobs are already always magic
      -            const [re, _, _hasMagic, uflag] = p.toRegExpSource(dot);
      -            this.#uflag = this.#uflag || uflag;
      -            return re;
      -        })
      -            .filter(p => !(this.isStart() && this.isEnd()) || !!p)
      -            .join('|');
      -    }
      -    static #parseGlob(glob, hasMagic, noEmpty = false) {
      -        let escaping = false;
      -        let re = '';
      -        let uflag = false;
      -        for (let i = 0; i < glob.length; i++) {
      -            const c = glob.charAt(i);
      -            if (escaping) {
      -                escaping = false;
      -                re += (reSpecials.has(c) ? '\\' : '') + c;
      -                continue;
      -            }
      -            if (c === '\\') {
      -                if (i === glob.length - 1) {
      -                    re += '\\\\';
      -                }
      -                else {
      -                    escaping = true;
      -                }
      -                continue;
      -            }
      -            if (c === '[') {
      -                const [src, needUflag, consumed, magic] = (0, brace_expressions_js_1.parseClass)(glob, i);
      -                if (consumed) {
      -                    re += src;
      -                    uflag = uflag || needUflag;
      -                    i += consumed - 1;
      -                    hasMagic = hasMagic || magic;
      -                    continue;
      -                }
      -            }
      -            if (c === '*') {
      -                if (noEmpty && glob === '*')
      -                    re += starNoEmpty;
      -                else
      -                    re += star;
      -                hasMagic = true;
      -                continue;
      -            }
      -            if (c === '?') {
      -                re += qmark;
      -                hasMagic = true;
      -                continue;
      -            }
      -            re += regExpEscape(c);
      -        }
      -        return [re, (0, unescape_js_1.unescape)(glob), !!hasMagic, uflag];
      -    }
      -}
      -exports.AST = AST;
      -//# sourceMappingURL=ast.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/brace-expressions.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/brace-expressions.js
      deleted file mode 100644
      index 0e13eefc4cfee2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/brace-expressions.js
      +++ /dev/null
      @@ -1,152 +0,0 @@
      -"use strict";
      -// translate the various posix character classes into unicode properties
      -// this works across all unicode locales
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.parseClass = void 0;
      -// { : [, /u flag required, negated]
      -const posixClasses = {
      -    '[:alnum:]': ['\\p{L}\\p{Nl}\\p{Nd}', true],
      -    '[:alpha:]': ['\\p{L}\\p{Nl}', true],
      -    '[:ascii:]': ['\\x' + '00-\\x' + '7f', false],
      -    '[:blank:]': ['\\p{Zs}\\t', true],
      -    '[:cntrl:]': ['\\p{Cc}', true],
      -    '[:digit:]': ['\\p{Nd}', true],
      -    '[:graph:]': ['\\p{Z}\\p{C}', true, true],
      -    '[:lower:]': ['\\p{Ll}', true],
      -    '[:print:]': ['\\p{C}', true],
      -    '[:punct:]': ['\\p{P}', true],
      -    '[:space:]': ['\\p{Z}\\t\\r\\n\\v\\f', true],
      -    '[:upper:]': ['\\p{Lu}', true],
      -    '[:word:]': ['\\p{L}\\p{Nl}\\p{Nd}\\p{Pc}', true],
      -    '[:xdigit:]': ['A-Fa-f0-9', false],
      -};
      -// only need to escape a few things inside of brace expressions
      -// escapes: [ \ ] -
      -const braceEscape = (s) => s.replace(/[[\]\\-]/g, '\\$&');
      -// escape all regexp magic characters
      -const regexpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
      -// everything has already been escaped, we just have to join
      -const rangesToString = (ranges) => ranges.join('');
      -// takes a glob string at a posix brace expression, and returns
      -// an equivalent regular expression source, and boolean indicating
      -// whether the /u flag needs to be applied, and the number of chars
      -// consumed to parse the character class.
      -// This also removes out of order ranges, and returns ($.) if the
      -// entire class just no good.
      -const parseClass = (glob, position) => {
      -    const pos = position;
      -    /* c8 ignore start */
      -    if (glob.charAt(pos) !== '[') {
      -        throw new Error('not in a brace expression');
      -    }
      -    /* c8 ignore stop */
      -    const ranges = [];
      -    const negs = [];
      -    let i = pos + 1;
      -    let sawStart = false;
      -    let uflag = false;
      -    let escaping = false;
      -    let negate = false;
      -    let endPos = pos;
      -    let rangeStart = '';
      -    WHILE: while (i < glob.length) {
      -        const c = glob.charAt(i);
      -        if ((c === '!' || c === '^') && i === pos + 1) {
      -            negate = true;
      -            i++;
      -            continue;
      -        }
      -        if (c === ']' && sawStart && !escaping) {
      -            endPos = i + 1;
      -            break;
      -        }
      -        sawStart = true;
      -        if (c === '\\') {
      -            if (!escaping) {
      -                escaping = true;
      -                i++;
      -                continue;
      -            }
      -            // escaped \ char, fall through and treat like normal char
      -        }
      -        if (c === '[' && !escaping) {
      -            // either a posix class, a collation equivalent, or just a [
      -            for (const [cls, [unip, u, neg]] of Object.entries(posixClasses)) {
      -                if (glob.startsWith(cls, i)) {
      -                    // invalid, [a-[] is fine, but not [a-[:alpha]]
      -                    if (rangeStart) {
      -                        return ['$.', false, glob.length - pos, true];
      -                    }
      -                    i += cls.length;
      -                    if (neg)
      -                        negs.push(unip);
      -                    else
      -                        ranges.push(unip);
      -                    uflag = uflag || u;
      -                    continue WHILE;
      -                }
      -            }
      -        }
      -        // now it's just a normal character, effectively
      -        escaping = false;
      -        if (rangeStart) {
      -            // throw this range away if it's not valid, but others
      -            // can still match.
      -            if (c > rangeStart) {
      -                ranges.push(braceEscape(rangeStart) + '-' + braceEscape(c));
      -            }
      -            else if (c === rangeStart) {
      -                ranges.push(braceEscape(c));
      -            }
      -            rangeStart = '';
      -            i++;
      -            continue;
      -        }
      -        // now might be the start of a range.
      -        // can be either c-d or c-] or c] or c] at this point
      -        if (glob.startsWith('-]', i + 1)) {
      -            ranges.push(braceEscape(c + '-'));
      -            i += 2;
      -            continue;
      -        }
      -        if (glob.startsWith('-', i + 1)) {
      -            rangeStart = c;
      -            i += 2;
      -            continue;
      -        }
      -        // not the start of a range, just a single character
      -        ranges.push(braceEscape(c));
      -        i++;
      -    }
      -    if (endPos < i) {
      -        // didn't see the end of the class, not a valid class,
      -        // but might still be valid as a literal match.
      -        return ['', false, 0, false];
      -    }
      -    // if we got no ranges and no negates, then we have a range that
      -    // cannot possibly match anything, and that poisons the whole glob
      -    if (!ranges.length && !negs.length) {
      -        return ['$.', false, glob.length - pos, true];
      -    }
      -    // if we got one positive range, and it's a single character, then that's
      -    // not actually a magic pattern, it's just that one literal character.
      -    // we should not treat that as "magic", we should just return the literal
      -    // character. [_] is a perfectly valid way to escape glob magic chars.
      -    if (negs.length === 0 &&
      -        ranges.length === 1 &&
      -        /^\\?.$/.test(ranges[0]) &&
      -        !negate) {
      -        const r = ranges[0].length === 2 ? ranges[0].slice(-1) : ranges[0];
      -        return [regexpEscape(r), false, endPos - pos, false];
      -    }
      -    const sranges = '[' + (negate ? '^' : '') + rangesToString(ranges) + ']';
      -    const snegs = '[' + (negate ? '' : '^') + rangesToString(negs) + ']';
      -    const comb = ranges.length && negs.length
      -        ? '(' + sranges + '|' + snegs + ')'
      -        : ranges.length
      -            ? sranges
      -            : snegs;
      -    return [comb, uflag, endPos - pos, true];
      -};
      -exports.parseClass = parseClass;
      -//# sourceMappingURL=brace-expressions.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/escape.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/escape.js
      deleted file mode 100644
      index 02a4f8a8e0a588..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/escape.js
      +++ /dev/null
      @@ -1,22 +0,0 @@
      -"use strict";
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.escape = void 0;
      -/**
      - * Escape all magic characters in a glob pattern.
      - *
      - * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
      - * option is used, then characters are escaped by wrapping in `[]`, because
      - * a magic character wrapped in a character class can only be satisfied by
      - * that exact character.  In this mode, `\` is _not_ escaped, because it is
      - * not interpreted as a magic character, but instead as a path separator.
      - */
      -const escape = (s, { windowsPathsNoEscape = false, } = {}) => {
      -    // don't need to escape +@! because we escape the parens
      -    // that make those magic, and escaping ! as [!] isn't valid,
      -    // because [!]] is a valid glob class meaning not ']'.
      -    return windowsPathsNoEscape
      -        ? s.replace(/[?*()[\]]/g, '[$&]')
      -        : s.replace(/[?*()[\]\\]/g, '\\$&');
      -};
      -exports.escape = escape;
      -//# sourceMappingURL=escape.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/index.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/index.js
      deleted file mode 100644
      index d70e681fef5d7d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/index.js
      +++ /dev/null
      @@ -1,1011 +0,0 @@
      -"use strict";
      -var __importDefault = (this && this.__importDefault) || function (mod) {
      -    return (mod && mod.__esModule) ? mod : { "default": mod };
      -};
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.unescape = exports.escape = exports.AST = exports.Minimatch = exports.match = exports.makeRe = exports.braceExpand = exports.defaults = exports.filter = exports.GLOBSTAR = exports.sep = exports.minimatch = void 0;
      -const brace_expansion_1 = __importDefault(require("brace-expansion"));
      -const assert_valid_pattern_js_1 = require("./assert-valid-pattern.js");
      -const ast_js_1 = require("./ast.js");
      -const escape_js_1 = require("./escape.js");
      -const unescape_js_1 = require("./unescape.js");
      -const minimatch = (p, pattern, options = {}) => {
      -    (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);
      -    // shortcut: comments match nothing.
      -    if (!options.nocomment && pattern.charAt(0) === '#') {
      -        return false;
      -    }
      -    return new Minimatch(pattern, options).match(p);
      -};
      -exports.minimatch = minimatch;
      -// Optimized checking for the most common glob patterns.
      -const starDotExtRE = /^\*+([^+@!?\*\[\(]*)$/;
      -const starDotExtTest = (ext) => (f) => !f.startsWith('.') && f.endsWith(ext);
      -const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
      -const starDotExtTestNocase = (ext) => {
      -    ext = ext.toLowerCase();
      -    return (f) => !f.startsWith('.') && f.toLowerCase().endsWith(ext);
      -};
      -const starDotExtTestNocaseDot = (ext) => {
      -    ext = ext.toLowerCase();
      -    return (f) => f.toLowerCase().endsWith(ext);
      -};
      -const starDotStarRE = /^\*+\.\*+$/;
      -const starDotStarTest = (f) => !f.startsWith('.') && f.includes('.');
      -const starDotStarTestDot = (f) => f !== '.' && f !== '..' && f.includes('.');
      -const dotStarRE = /^\.\*+$/;
      -const dotStarTest = (f) => f !== '.' && f !== '..' && f.startsWith('.');
      -const starRE = /^\*+$/;
      -const starTest = (f) => f.length !== 0 && !f.startsWith('.');
      -const starTestDot = (f) => f.length !== 0 && f !== '.' && f !== '..';
      -const qmarksRE = /^\?+([^+@!?\*\[\(]*)?$/;
      -const qmarksTestNocase = ([$0, ext = '']) => {
      -    const noext = qmarksTestNoExt([$0]);
      -    if (!ext)
      -        return noext;
      -    ext = ext.toLowerCase();
      -    return (f) => noext(f) && f.toLowerCase().endsWith(ext);
      -};
      -const qmarksTestNocaseDot = ([$0, ext = '']) => {
      -    const noext = qmarksTestNoExtDot([$0]);
      -    if (!ext)
      -        return noext;
      -    ext = ext.toLowerCase();
      -    return (f) => noext(f) && f.toLowerCase().endsWith(ext);
      -};
      -const qmarksTestDot = ([$0, ext = '']) => {
      -    const noext = qmarksTestNoExtDot([$0]);
      -    return !ext ? noext : (f) => noext(f) && f.endsWith(ext);
      -};
      -const qmarksTest = ([$0, ext = '']) => {
      -    const noext = qmarksTestNoExt([$0]);
      -    return !ext ? noext : (f) => noext(f) && f.endsWith(ext);
      -};
      -const qmarksTestNoExt = ([$0]) => {
      -    const len = $0.length;
      -    return (f) => f.length === len && !f.startsWith('.');
      -};
      -const qmarksTestNoExtDot = ([$0]) => {
      -    const len = $0.length;
      -    return (f) => f.length === len && f !== '.' && f !== '..';
      -};
      -/* c8 ignore start */
      -const defaultPlatform = (typeof process === 'object' && process
      -    ? (typeof process.env === 'object' &&
      -        process.env &&
      -        process.env.__MINIMATCH_TESTING_PLATFORM__) ||
      -        process.platform
      -    : 'posix');
      -const path = {
      -    win32: { sep: '\\' },
      -    posix: { sep: '/' },
      -};
      -/* c8 ignore stop */
      -exports.sep = defaultPlatform === 'win32' ? path.win32.sep : path.posix.sep;
      -exports.minimatch.sep = exports.sep;
      -exports.GLOBSTAR = Symbol('globstar **');
      -exports.minimatch.GLOBSTAR = exports.GLOBSTAR;
      -// any single thing other than /
      -// don't need to escape / when using new RegExp()
      -const qmark = '[^/]';
      -// * => any number of characters
      -const star = qmark + '*?';
      -// ** when dots are allowed.  Anything goes, except .. and .
      -// not (^ or / followed by one or two dots followed by $ or /),
      -// followed by anything, any number of times.
      -const twoStarDot = '(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?';
      -// not a ^ or / followed by a dot,
      -// followed by anything, any number of times.
      -const twoStarNoDot = '(?:(?!(?:\\/|^)\\.).)*?';
      -const filter = (pattern, options = {}) => (p) => (0, exports.minimatch)(p, pattern, options);
      -exports.filter = filter;
      -exports.minimatch.filter = exports.filter;
      -const ext = (a, b = {}) => Object.assign({}, a, b);
      -const defaults = (def) => {
      -    if (!def || typeof def !== 'object' || !Object.keys(def).length) {
      -        return exports.minimatch;
      -    }
      -    const orig = exports.minimatch;
      -    const m = (p, pattern, options = {}) => orig(p, pattern, ext(def, options));
      -    return Object.assign(m, {
      -        Minimatch: class Minimatch extends orig.Minimatch {
      -            constructor(pattern, options = {}) {
      -                super(pattern, ext(def, options));
      -            }
      -            static defaults(options) {
      -                return orig.defaults(ext(def, options)).Minimatch;
      -            }
      -        },
      -        AST: class AST extends orig.AST {
      -            /* c8 ignore start */
      -            constructor(type, parent, options = {}) {
      -                super(type, parent, ext(def, options));
      -            }
      -            /* c8 ignore stop */
      -            static fromGlob(pattern, options = {}) {
      -                return orig.AST.fromGlob(pattern, ext(def, options));
      -            }
      -        },
      -        unescape: (s, options = {}) => orig.unescape(s, ext(def, options)),
      -        escape: (s, options = {}) => orig.escape(s, ext(def, options)),
      -        filter: (pattern, options = {}) => orig.filter(pattern, ext(def, options)),
      -        defaults: (options) => orig.defaults(ext(def, options)),
      -        makeRe: (pattern, options = {}) => orig.makeRe(pattern, ext(def, options)),
      -        braceExpand: (pattern, options = {}) => orig.braceExpand(pattern, ext(def, options)),
      -        match: (list, pattern, options = {}) => orig.match(list, pattern, ext(def, options)),
      -        sep: orig.sep,
      -        GLOBSTAR: exports.GLOBSTAR,
      -    });
      -};
      -exports.defaults = defaults;
      -exports.minimatch.defaults = exports.defaults;
      -// Brace expansion:
      -// a{b,c}d -> abd acd
      -// a{b,}c -> abc ac
      -// a{0..3}d -> a0d a1d a2d a3d
      -// a{b,c{d,e}f}g -> abg acdfg acefg
      -// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg
      -//
      -// Invalid sets are not expanded.
      -// a{2..}b -> a{2..}b
      -// a{b}c -> a{b}c
      -const braceExpand = (pattern, options = {}) => {
      -    (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);
      -    // Thanks to Yeting Li  for
      -    // improving this regexp to avoid a ReDOS vulnerability.
      -    if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
      -        // shortcut. no need to expand.
      -        return [pattern];
      -    }
      -    return (0, brace_expansion_1.default)(pattern);
      -};
      -exports.braceExpand = braceExpand;
      -exports.minimatch.braceExpand = exports.braceExpand;
      -// parse a component of the expanded set.
      -// At this point, no pattern may contain "/" in it
      -// so we're going to return a 2d array, where each entry is the full
      -// pattern, split on '/', and then turned into a regular expression.
      -// A regexp is made at the end which joins each array with an
      -// escaped /, and another full one which joins each regexp with |.
      -//
      -// Following the lead of Bash 4.1, note that "**" only has special meaning
      -// when it is the *only* thing in a path portion.  Otherwise, any series
      -// of * is equivalent to a single *.  Globstar behavior is enabled by
      -// default, and can be disabled by setting options.noglobstar.
      -const makeRe = (pattern, options = {}) => new Minimatch(pattern, options).makeRe();
      -exports.makeRe = makeRe;
      -exports.minimatch.makeRe = exports.makeRe;
      -const match = (list, pattern, options = {}) => {
      -    const mm = new Minimatch(pattern, options);
      -    list = list.filter(f => mm.match(f));
      -    if (mm.options.nonull && !list.length) {
      -        list.push(pattern);
      -    }
      -    return list;
      -};
      -exports.match = match;
      -exports.minimatch.match = exports.match;
      -// replace stuff like \* with *
      -const globMagic = /[?*]|[+@!]\(.*?\)|\[|\]/;
      -const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
      -class Minimatch {
      -    options;
      -    set;
      -    pattern;
      -    windowsPathsNoEscape;
      -    nonegate;
      -    negate;
      -    comment;
      -    empty;
      -    preserveMultipleSlashes;
      -    partial;
      -    globSet;
      -    globParts;
      -    nocase;
      -    isWindows;
      -    platform;
      -    windowsNoMagicRoot;
      -    regexp;
      -    constructor(pattern, options = {}) {
      -        (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);
      -        options = options || {};
      -        this.options = options;
      -        this.pattern = pattern;
      -        this.platform = options.platform || defaultPlatform;
      -        this.isWindows = this.platform === 'win32';
      -        this.windowsPathsNoEscape =
      -            !!options.windowsPathsNoEscape || options.allowWindowsEscape === false;
      -        if (this.windowsPathsNoEscape) {
      -            this.pattern = this.pattern.replace(/\\/g, '/');
      -        }
      -        this.preserveMultipleSlashes = !!options.preserveMultipleSlashes;
      -        this.regexp = null;
      -        this.negate = false;
      -        this.nonegate = !!options.nonegate;
      -        this.comment = false;
      -        this.empty = false;
      -        this.partial = !!options.partial;
      -        this.nocase = !!this.options.nocase;
      -        this.windowsNoMagicRoot =
      -            options.windowsNoMagicRoot !== undefined
      -                ? options.windowsNoMagicRoot
      -                : !!(this.isWindows && this.nocase);
      -        this.globSet = [];
      -        this.globParts = [];
      -        this.set = [];
      -        // make the set of regexps etc.
      -        this.make();
      -    }
      -    hasMagic() {
      -        if (this.options.magicalBraces && this.set.length > 1) {
      -            return true;
      -        }
      -        for (const pattern of this.set) {
      -            for (const part of pattern) {
      -                if (typeof part !== 'string')
      -                    return true;
      -            }
      -        }
      -        return false;
      -    }
      -    debug(..._) { }
      -    make() {
      -        const pattern = this.pattern;
      -        const options = this.options;
      -        // empty patterns and comments match nothing.
      -        if (!options.nocomment && pattern.charAt(0) === '#') {
      -            this.comment = true;
      -            return;
      -        }
      -        if (!pattern) {
      -            this.empty = true;
      -            return;
      -        }
      -        // step 1: figure out negation, etc.
      -        this.parseNegate();
      -        // step 2: expand braces
      -        this.globSet = [...new Set(this.braceExpand())];
      -        if (options.debug) {
      -            this.debug = (...args) => console.error(...args);
      -        }
      -        this.debug(this.pattern, this.globSet);
      -        // step 3: now we have a set, so turn each one into a series of
      -        // path-portion matching patterns.
      -        // These will be regexps, except in the case of "**", which is
      -        // set to the GLOBSTAR object for globstar behavior,
      -        // and will not contain any / characters
      -        //
      -        // First, we preprocess to make the glob pattern sets a bit simpler
      -        // and deduped.  There are some perf-killing patterns that can cause
      -        // problems with a glob walk, but we can simplify them down a bit.
      -        const rawGlobParts = this.globSet.map(s => this.slashSplit(s));
      -        this.globParts = this.preprocess(rawGlobParts);
      -        this.debug(this.pattern, this.globParts);
      -        // glob --> regexps
      -        let set = this.globParts.map((s, _, __) => {
      -            if (this.isWindows && this.windowsNoMagicRoot) {
      -                // check if it's a drive or unc path.
      -                const isUNC = s[0] === '' &&
      -                    s[1] === '' &&
      -                    (s[2] === '?' || !globMagic.test(s[2])) &&
      -                    !globMagic.test(s[3]);
      -                const isDrive = /^[a-z]:/i.test(s[0]);
      -                if (isUNC) {
      -                    return [...s.slice(0, 4), ...s.slice(4).map(ss => this.parse(ss))];
      -                }
      -                else if (isDrive) {
      -                    return [s[0], ...s.slice(1).map(ss => this.parse(ss))];
      -                }
      -            }
      -            return s.map(ss => this.parse(ss));
      -        });
      -        this.debug(this.pattern, set);
      -        // filter out everything that didn't compile properly.
      -        this.set = set.filter(s => s.indexOf(false) === -1);
      -        // do not treat the ? in UNC paths as magic
      -        if (this.isWindows) {
      -            for (let i = 0; i < this.set.length; i++) {
      -                const p = this.set[i];
      -                if (p[0] === '' &&
      -                    p[1] === '' &&
      -                    this.globParts[i][2] === '?' &&
      -                    typeof p[3] === 'string' &&
      -                    /^[a-z]:$/i.test(p[3])) {
      -                    p[2] = '?';
      -                }
      -            }
      -        }
      -        this.debug(this.pattern, this.set);
      -    }
      -    // various transforms to equivalent pattern sets that are
      -    // faster to process in a filesystem walk.  The goal is to
      -    // eliminate what we can, and push all ** patterns as far
      -    // to the right as possible, even if it increases the number
      -    // of patterns that we have to process.
      -    preprocess(globParts) {
      -        // if we're not in globstar mode, then turn all ** into *
      -        if (this.options.noglobstar) {
      -            for (let i = 0; i < globParts.length; i++) {
      -                for (let j = 0; j < globParts[i].length; j++) {
      -                    if (globParts[i][j] === '**') {
      -                        globParts[i][j] = '*';
      -                    }
      -                }
      -            }
      -        }
      -        const { optimizationLevel = 1 } = this.options;
      -        if (optimizationLevel >= 2) {
      -            // aggressive optimization for the purpose of fs walking
      -            globParts = this.firstPhasePreProcess(globParts);
      -            globParts = this.secondPhasePreProcess(globParts);
      -        }
      -        else if (optimizationLevel >= 1) {
      -            // just basic optimizations to remove some .. parts
      -            globParts = this.levelOneOptimize(globParts);
      -        }
      -        else {
      -            globParts = this.adjascentGlobstarOptimize(globParts);
      -        }
      -        return globParts;
      -    }
      -    // just get rid of adjascent ** portions
      -    adjascentGlobstarOptimize(globParts) {
      -        return globParts.map(parts => {
      -            let gs = -1;
      -            while (-1 !== (gs = parts.indexOf('**', gs + 1))) {
      -                let i = gs;
      -                while (parts[i + 1] === '**') {
      -                    i++;
      -                }
      -                if (i !== gs) {
      -                    parts.splice(gs, i - gs);
      -                }
      -            }
      -            return parts;
      -        });
      -    }
      -    // get rid of adjascent ** and resolve .. portions
      -    levelOneOptimize(globParts) {
      -        return globParts.map(parts => {
      -            parts = parts.reduce((set, part) => {
      -                const prev = set[set.length - 1];
      -                if (part === '**' && prev === '**') {
      -                    return set;
      -                }
      -                if (part === '..') {
      -                    if (prev && prev !== '..' && prev !== '.' && prev !== '**') {
      -                        set.pop();
      -                        return set;
      -                    }
      -                }
      -                set.push(part);
      -                return set;
      -            }, []);
      -            return parts.length === 0 ? [''] : parts;
      -        });
      -    }
      -    levelTwoFileOptimize(parts) {
      -        if (!Array.isArray(parts)) {
      -            parts = this.slashSplit(parts);
      -        }
      -        let didSomething = false;
      -        do {
      -            didSomething = false;
      -            // 
      // -> 
      /
      -            if (!this.preserveMultipleSlashes) {
      -                for (let i = 1; i < parts.length - 1; i++) {
      -                    const p = parts[i];
      -                    // don't squeeze out UNC patterns
      -                    if (i === 1 && p === '' && parts[0] === '')
      -                        continue;
      -                    if (p === '.' || p === '') {
      -                        didSomething = true;
      -                        parts.splice(i, 1);
      -                        i--;
      -                    }
      -                }
      -                if (parts[0] === '.' &&
      -                    parts.length === 2 &&
      -                    (parts[1] === '.' || parts[1] === '')) {
      -                    didSomething = true;
      -                    parts.pop();
      -                }
      -            }
      -            // 
      /

      /../ ->

      /
      -            let dd = 0;
      -            while (-1 !== (dd = parts.indexOf('..', dd + 1))) {
      -                const p = parts[dd - 1];
      -                if (p && p !== '.' && p !== '..' && p !== '**') {
      -                    didSomething = true;
      -                    parts.splice(dd - 1, 2);
      -                    dd -= 2;
      -                }
      -            }
      -        } while (didSomething);
      -        return parts.length === 0 ? [''] : parts;
      -    }
      -    // First phase: single-pattern processing
      -    // 
       is 1 or more portions
      -    //  is 1 or more portions
      -    // 

      is any portion other than ., .., '', or ** - // is . or '' - // - // **/.. is *brutal* for filesystem walking performance, because - // it effectively resets the recursive walk each time it occurs, - // and ** cannot be reduced out by a .. pattern part like a regexp - // or most strings (other than .., ., and '') can be. - // - //

      /**/../

      /

      / -> {

      /../

      /

      /,

      /**/

      /

      /} - //

      // -> 
      /
      -    // 
      /

      /../ ->

      /
      -    // **/**/ -> **/
      -    //
      -    // **/*/ -> */**/ <== not valid because ** doesn't follow
      -    // this WOULD be allowed if ** did follow symlinks, or * didn't
      -    firstPhasePreProcess(globParts) {
      -        let didSomething = false;
      -        do {
      -            didSomething = false;
      -            // 
      /**/../

      /

      / -> {

      /../

      /

      /,

      /**/

      /

      /} - for (let parts of globParts) { - let gs = -1; - while (-1 !== (gs = parts.indexOf('**', gs + 1))) { - let gss = gs; - while (parts[gss + 1] === '**') { - //

      /**/**/ -> 
      /**/
      -                        gss++;
      -                    }
      -                    // eg, if gs is 2 and gss is 4, that means we have 3 **
      -                    // parts, and can remove 2 of them.
      -                    if (gss > gs) {
      -                        parts.splice(gs + 1, gss - gs);
      -                    }
      -                    let next = parts[gs + 1];
      -                    const p = parts[gs + 2];
      -                    const p2 = parts[gs + 3];
      -                    if (next !== '..')
      -                        continue;
      -                    if (!p ||
      -                        p === '.' ||
      -                        p === '..' ||
      -                        !p2 ||
      -                        p2 === '.' ||
      -                        p2 === '..') {
      -                        continue;
      -                    }
      -                    didSomething = true;
      -                    // edit parts in place, and push the new one
      -                    parts.splice(gs, 1);
      -                    const other = parts.slice(0);
      -                    other[gs] = '**';
      -                    globParts.push(other);
      -                    gs--;
      -                }
      -                // 
      // -> 
      /
      -                if (!this.preserveMultipleSlashes) {
      -                    for (let i = 1; i < parts.length - 1; i++) {
      -                        const p = parts[i];
      -                        // don't squeeze out UNC patterns
      -                        if (i === 1 && p === '' && parts[0] === '')
      -                            continue;
      -                        if (p === '.' || p === '') {
      -                            didSomething = true;
      -                            parts.splice(i, 1);
      -                            i--;
      -                        }
      -                    }
      -                    if (parts[0] === '.' &&
      -                        parts.length === 2 &&
      -                        (parts[1] === '.' || parts[1] === '')) {
      -                        didSomething = true;
      -                        parts.pop();
      -                    }
      -                }
      -                // 
      /

      /../ ->

      /
      -                let dd = 0;
      -                while (-1 !== (dd = parts.indexOf('..', dd + 1))) {
      -                    const p = parts[dd - 1];
      -                    if (p && p !== '.' && p !== '..' && p !== '**') {
      -                        didSomething = true;
      -                        const needDot = dd === 1 && parts[dd + 1] === '**';
      -                        const splin = needDot ? ['.'] : [];
      -                        parts.splice(dd - 1, 2, ...splin);
      -                        if (parts.length === 0)
      -                            parts.push('');
      -                        dd -= 2;
      -                    }
      -                }
      -            }
      -        } while (didSomething);
      -        return globParts;
      -    }
      -    // second phase: multi-pattern dedupes
      -    // {
      /*/,
      /

      /} ->

      /*/
      -    // {
      /,
      /} -> 
      /
      -    // {
      /**/,
      /} -> 
      /**/
      -    //
      -    // {
      /**/,
      /**/

      /} ->

      /**/
      -    // ^-- not valid because ** doens't follow symlinks
      -    secondPhasePreProcess(globParts) {
      -        for (let i = 0; i < globParts.length - 1; i++) {
      -            for (let j = i + 1; j < globParts.length; j++) {
      -                const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);
      -                if (!matched)
      -                    continue;
      -                globParts[i] = matched;
      -                globParts[j] = [];
      -            }
      -        }
      -        return globParts.filter(gs => gs.length);
      -    }
      -    partsMatch(a, b, emptyGSMatch = false) {
      -        let ai = 0;
      -        let bi = 0;
      -        let result = [];
      -        let which = '';
      -        while (ai < a.length && bi < b.length) {
      -            if (a[ai] === b[bi]) {
      -                result.push(which === 'b' ? b[bi] : a[ai]);
      -                ai++;
      -                bi++;
      -            }
      -            else if (emptyGSMatch && a[ai] === '**' && b[bi] === a[ai + 1]) {
      -                result.push(a[ai]);
      -                ai++;
      -            }
      -            else if (emptyGSMatch && b[bi] === '**' && a[ai] === b[bi + 1]) {
      -                result.push(b[bi]);
      -                bi++;
      -            }
      -            else if (a[ai] === '*' &&
      -                b[bi] &&
      -                (this.options.dot || !b[bi].startsWith('.')) &&
      -                b[bi] !== '**') {
      -                if (which === 'b')
      -                    return false;
      -                which = 'a';
      -                result.push(a[ai]);
      -                ai++;
      -                bi++;
      -            }
      -            else if (b[bi] === '*' &&
      -                a[ai] &&
      -                (this.options.dot || !a[ai].startsWith('.')) &&
      -                a[ai] !== '**') {
      -                if (which === 'a')
      -                    return false;
      -                which = 'b';
      -                result.push(b[bi]);
      -                ai++;
      -                bi++;
      -            }
      -            else {
      -                return false;
      -            }
      -        }
      -        // if we fall out of the loop, it means they two are identical
      -        // as long as their lengths match
      -        return a.length === b.length && result;
      -    }
      -    parseNegate() {
      -        if (this.nonegate)
      -            return;
      -        const pattern = this.pattern;
      -        let negate = false;
      -        let negateOffset = 0;
      -        for (let i = 0; i < pattern.length && pattern.charAt(i) === '!'; i++) {
      -            negate = !negate;
      -            negateOffset++;
      -        }
      -        if (negateOffset)
      -            this.pattern = pattern.slice(negateOffset);
      -        this.negate = negate;
      -    }
      -    // set partial to true to test if, for example,
      -    // "/a/b" matches the start of "/*/b/*/d"
      -    // Partial means, if you run out of file before you run
      -    // out of pattern, then that's fine, as long as all
      -    // the parts match.
      -    matchOne(file, pattern, partial = false) {
      -        const options = this.options;
      -        // UNC paths like //?/X:/... can match X:/... and vice versa
      -        // Drive letters in absolute drive or unc paths are always compared
      -        // case-insensitively.
      -        if (this.isWindows) {
      -            const fileDrive = typeof file[0] === 'string' && /^[a-z]:$/i.test(file[0]);
      -            const fileUNC = !fileDrive &&
      -                file[0] === '' &&
      -                file[1] === '' &&
      -                file[2] === '?' &&
      -                /^[a-z]:$/i.test(file[3]);
      -            const patternDrive = typeof pattern[0] === 'string' && /^[a-z]:$/i.test(pattern[0]);
      -            const patternUNC = !patternDrive &&
      -                pattern[0] === '' &&
      -                pattern[1] === '' &&
      -                pattern[2] === '?' &&
      -                typeof pattern[3] === 'string' &&
      -                /^[a-z]:$/i.test(pattern[3]);
      -            const fdi = fileUNC ? 3 : fileDrive ? 0 : undefined;
      -            const pdi = patternUNC ? 3 : patternDrive ? 0 : undefined;
      -            if (typeof fdi === 'number' && typeof pdi === 'number') {
      -                const [fd, pd] = [file[fdi], pattern[pdi]];
      -                if (fd.toLowerCase() === pd.toLowerCase()) {
      -                    pattern[pdi] = fd;
      -                    if (pdi > fdi) {
      -                        pattern = pattern.slice(pdi);
      -                    }
      -                    else if (fdi > pdi) {
      -                        file = file.slice(fdi);
      -                    }
      -                }
      -            }
      -        }
      -        // resolve and reduce . and .. portions in the file as well.
      -        // dont' need to do the second phase, because it's only one string[]
      -        const { optimizationLevel = 1 } = this.options;
      -        if (optimizationLevel >= 2) {
      -            file = this.levelTwoFileOptimize(file);
      -        }
      -        this.debug('matchOne', this, { file, pattern });
      -        this.debug('matchOne', file.length, pattern.length);
      -        for (var fi = 0, pi = 0, fl = file.length, pl = pattern.length; fi < fl && pi < pl; fi++, pi++) {
      -            this.debug('matchOne loop');
      -            var p = pattern[pi];
      -            var f = file[fi];
      -            this.debug(pattern, p, f);
      -            // should be impossible.
      -            // some invalid regexp stuff in the set.
      -            /* c8 ignore start */
      -            if (p === false) {
      -                return false;
      -            }
      -            /* c8 ignore stop */
      -            if (p === exports.GLOBSTAR) {
      -                this.debug('GLOBSTAR', [pattern, p, f]);
      -                // "**"
      -                // a/**/b/**/c would match the following:
      -                // a/b/x/y/z/c
      -                // a/x/y/z/b/c
      -                // a/b/x/b/x/c
      -                // a/b/c
      -                // To do this, take the rest of the pattern after
      -                // the **, and see if it would match the file remainder.
      -                // If so, return success.
      -                // If not, the ** "swallows" a segment, and try again.
      -                // This is recursively awful.
      -                //
      -                // a/**/b/**/c matching a/b/x/y/z/c
      -                // - a matches a
      -                // - doublestar
      -                //   - matchOne(b/x/y/z/c, b/**/c)
      -                //     - b matches b
      -                //     - doublestar
      -                //       - matchOne(x/y/z/c, c) -> no
      -                //       - matchOne(y/z/c, c) -> no
      -                //       - matchOne(z/c, c) -> no
      -                //       - matchOne(c, c) yes, hit
      -                var fr = fi;
      -                var pr = pi + 1;
      -                if (pr === pl) {
      -                    this.debug('** at the end');
      -                    // a ** at the end will just swallow the rest.
      -                    // We have found a match.
      -                    // however, it will not swallow /.x, unless
      -                    // options.dot is set.
      -                    // . and .. are *never* matched by **, for explosively
      -                    // exponential reasons.
      -                    for (; fi < fl; fi++) {
      -                        if (file[fi] === '.' ||
      -                            file[fi] === '..' ||
      -                            (!options.dot && file[fi].charAt(0) === '.'))
      -                            return false;
      -                    }
      -                    return true;
      -                }
      -                // ok, let's see if we can swallow whatever we can.
      -                while (fr < fl) {
      -                    var swallowee = file[fr];
      -                    this.debug('\nglobstar while', file, fr, pattern, pr, swallowee);
      -                    // XXX remove this slice.  Just pass the start index.
      -                    if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {
      -                        this.debug('globstar found match!', fr, fl, swallowee);
      -                        // found a match.
      -                        return true;
      -                    }
      -                    else {
      -                        // can't swallow "." or ".." ever.
      -                        // can only swallow ".foo" when explicitly asked.
      -                        if (swallowee === '.' ||
      -                            swallowee === '..' ||
      -                            (!options.dot && swallowee.charAt(0) === '.')) {
      -                            this.debug('dot detected!', file, fr, pattern, pr);
      -                            break;
      -                        }
      -                        // ** swallows a segment, and continue.
      -                        this.debug('globstar swallow a segment, and continue');
      -                        fr++;
      -                    }
      -                }
      -                // no match was found.
      -                // However, in partial mode, we can't say this is necessarily over.
      -                /* c8 ignore start */
      -                if (partial) {
      -                    // ran out of file
      -                    this.debug('\n>>> no match, partial?', file, fr, pattern, pr);
      -                    if (fr === fl) {
      -                        return true;
      -                    }
      -                }
      -                /* c8 ignore stop */
      -                return false;
      -            }
      -            // something other than **
      -            // non-magic patterns just have to match exactly
      -            // patterns with magic have been turned into regexps.
      -            let hit;
      -            if (typeof p === 'string') {
      -                hit = f === p;
      -                this.debug('string match', p, f, hit);
      -            }
      -            else {
      -                hit = p.test(f);
      -                this.debug('pattern match', p, f, hit);
      -            }
      -            if (!hit)
      -                return false;
      -        }
      -        // Note: ending in / means that we'll get a final ""
      -        // at the end of the pattern.  This can only match a
      -        // corresponding "" at the end of the file.
      -        // If the file ends in /, then it can only match a
      -        // a pattern that ends in /, unless the pattern just
      -        // doesn't have any more for it. But, a/b/ should *not*
      -        // match "a/b/*", even though "" matches against the
      -        // [^/]*? pattern, except in partial mode, where it might
      -        // simply not be reached yet.
      -        // However, a/b/ should still satisfy a/*
      -        // now either we fell off the end of the pattern, or we're done.
      -        if (fi === fl && pi === pl) {
      -            // ran out of pattern and filename at the same time.
      -            // an exact hit!
      -            return true;
      -        }
      -        else if (fi === fl) {
      -            // ran out of file, but still had pattern left.
      -            // this is ok if we're doing the match as part of
      -            // a glob fs traversal.
      -            return partial;
      -        }
      -        else if (pi === pl) {
      -            // ran out of pattern, still have file left.
      -            // this is only acceptable if we're on the very last
      -            // empty segment of a file with a trailing slash.
      -            // a/* should match a/b/
      -            return fi === fl - 1 && file[fi] === '';
      -            /* c8 ignore start */
      -        }
      -        else {
      -            // should be unreachable.
      -            throw new Error('wtf?');
      -        }
      -        /* c8 ignore stop */
      -    }
      -    braceExpand() {
      -        return (0, exports.braceExpand)(this.pattern, this.options);
      -    }
      -    parse(pattern) {
      -        (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);
      -        const options = this.options;
      -        // shortcuts
      -        if (pattern === '**')
      -            return exports.GLOBSTAR;
      -        if (pattern === '')
      -            return '';
      -        // far and away, the most common glob pattern parts are
      -        // *, *.*, and *.  Add a fast check method for those.
      -        let m;
      -        let fastTest = null;
      -        if ((m = pattern.match(starRE))) {
      -            fastTest = options.dot ? starTestDot : starTest;
      -        }
      -        else if ((m = pattern.match(starDotExtRE))) {
      -            fastTest = (options.nocase
      -                ? options.dot
      -                    ? starDotExtTestNocaseDot
      -                    : starDotExtTestNocase
      -                : options.dot
      -                    ? starDotExtTestDot
      -                    : starDotExtTest)(m[1]);
      -        }
      -        else if ((m = pattern.match(qmarksRE))) {
      -            fastTest = (options.nocase
      -                ? options.dot
      -                    ? qmarksTestNocaseDot
      -                    : qmarksTestNocase
      -                : options.dot
      -                    ? qmarksTestDot
      -                    : qmarksTest)(m);
      -        }
      -        else if ((m = pattern.match(starDotStarRE))) {
      -            fastTest = options.dot ? starDotStarTestDot : starDotStarTest;
      -        }
      -        else if ((m = pattern.match(dotStarRE))) {
      -            fastTest = dotStarTest;
      -        }
      -        const re = ast_js_1.AST.fromGlob(pattern, this.options).toMMPattern();
      -        return fastTest ? Object.assign(re, { test: fastTest }) : re;
      -    }
      -    makeRe() {
      -        if (this.regexp || this.regexp === false)
      -            return this.regexp;
      -        // at this point, this.set is a 2d array of partial
      -        // pattern strings, or "**".
      -        //
      -        // It's better to use .match().  This function shouldn't
      -        // be used, really, but it's pretty convenient sometimes,
      -        // when you just want to work with a regex.
      -        const set = this.set;
      -        if (!set.length) {
      -            this.regexp = false;
      -            return this.regexp;
      -        }
      -        const options = this.options;
      -        const twoStar = options.noglobstar
      -            ? star
      -            : options.dot
      -                ? twoStarDot
      -                : twoStarNoDot;
      -        const flags = new Set(options.nocase ? ['i'] : []);
      -        // regexpify non-globstar patterns
      -        // if ** is only item, then we just do one twoStar
      -        // if ** is first, and there are more, prepend (\/|twoStar\/)? to next
      -        // if ** is last, append (\/twoStar|) to previous
      -        // if ** is in the middle, append (\/|\/twoStar\/) to previous
      -        // then filter out GLOBSTAR symbols
      -        let re = set
      -            .map(pattern => {
      -            const pp = pattern.map(p => {
      -                if (p instanceof RegExp) {
      -                    for (const f of p.flags.split(''))
      -                        flags.add(f);
      -                }
      -                return typeof p === 'string'
      -                    ? regExpEscape(p)
      -                    : p === exports.GLOBSTAR
      -                        ? exports.GLOBSTAR
      -                        : p._src;
      -            });
      -            pp.forEach((p, i) => {
      -                const next = pp[i + 1];
      -                const prev = pp[i - 1];
      -                if (p !== exports.GLOBSTAR || prev === exports.GLOBSTAR) {
      -                    return;
      -                }
      -                if (prev === undefined) {
      -                    if (next !== undefined && next !== exports.GLOBSTAR) {
      -                        pp[i + 1] = '(?:\\/|' + twoStar + '\\/)?' + next;
      -                    }
      -                    else {
      -                        pp[i] = twoStar;
      -                    }
      -                }
      -                else if (next === undefined) {
      -                    pp[i - 1] = prev + '(?:\\/|' + twoStar + ')?';
      -                }
      -                else if (next !== exports.GLOBSTAR) {
      -                    pp[i - 1] = prev + '(?:\\/|\\/' + twoStar + '\\/)' + next;
      -                    pp[i + 1] = exports.GLOBSTAR;
      -                }
      -            });
      -            return pp.filter(p => p !== exports.GLOBSTAR).join('/');
      -        })
      -            .join('|');
      -        // need to wrap in parens if we had more than one thing with |,
      -        // otherwise only the first will be anchored to ^ and the last to $
      -        const [open, close] = set.length > 1 ? ['(?:', ')'] : ['', ''];
      -        // must match entire pattern
      -        // ending in a * or ** will make it less strict.
      -        re = '^' + open + re + close + '$';
      -        // can match anything, as long as it's not this.
      -        if (this.negate)
      -            re = '^(?!' + re + ').+$';
      -        try {
      -            this.regexp = new RegExp(re, [...flags].join(''));
      -            /* c8 ignore start */
      -        }
      -        catch (ex) {
      -            // should be impossible
      -            this.regexp = false;
      -        }
      -        /* c8 ignore stop */
      -        return this.regexp;
      -    }
      -    slashSplit(p) {
      -        // if p starts with // on windows, we preserve that
      -        // so that UNC paths aren't broken.  Otherwise, any number of
      -        // / characters are coalesced into one, unless
      -        // preserveMultipleSlashes is set to true.
      -        if (this.preserveMultipleSlashes) {
      -            return p.split('/');
      -        }
      -        else if (this.isWindows && /^\/\/[^\/]+/.test(p)) {
      -            // add an extra '' for the one we lose
      -            return ['', ...p.split(/\/+/)];
      -        }
      -        else {
      -            return p.split(/\/+/);
      -        }
      -    }
      -    match(f, partial = this.partial) {
      -        this.debug('match', f, this.pattern);
      -        // short-circuit in the case of busted things.
      -        // comments, etc.
      -        if (this.comment) {
      -            return false;
      -        }
      -        if (this.empty) {
      -            return f === '';
      -        }
      -        if (f === '/' && partial) {
      -            return true;
      -        }
      -        const options = this.options;
      -        // windows: need to use /, not \
      -        if (this.isWindows) {
      -            f = f.split('\\').join('/');
      -        }
      -        // treat the test path as a set of pathparts.
      -        const ff = this.slashSplit(f);
      -        this.debug(this.pattern, 'split', ff);
      -        // just ONE of the pattern sets in this.set needs to match
      -        // in order for it to be valid.  If negating, then just one
      -        // match means that we have failed.
      -        // Either way, return on the first hit.
      -        const set = this.set;
      -        this.debug(this.pattern, 'set', set);
      -        // Find the basename of the path by looking for the last non-empty segment
      -        let filename = ff[ff.length - 1];
      -        if (!filename) {
      -            for (let i = ff.length - 2; !filename && i >= 0; i--) {
      -                filename = ff[i];
      -            }
      -        }
      -        for (let i = 0; i < set.length; i++) {
      -            const pattern = set[i];
      -            let file = ff;
      -            if (options.matchBase && pattern.length === 1) {
      -                file = [filename];
      -            }
      -            const hit = this.matchOne(file, pattern, partial);
      -            if (hit) {
      -                if (options.flipNegate) {
      -                    return true;
      -                }
      -                return !this.negate;
      -            }
      -        }
      -        // didn't get any hits.  this is success if it's a negative
      -        // pattern, failure otherwise.
      -        if (options.flipNegate) {
      -            return false;
      -        }
      -        return this.negate;
      -    }
      -    static defaults(def) {
      -        return exports.minimatch.defaults(def).Minimatch;
      -    }
      -}
      -exports.Minimatch = Minimatch;
      -/* c8 ignore start */
      -var ast_js_2 = require("./ast.js");
      -Object.defineProperty(exports, "AST", { enumerable: true, get: function () { return ast_js_2.AST; } });
      -var escape_js_2 = require("./escape.js");
      -Object.defineProperty(exports, "escape", { enumerable: true, get: function () { return escape_js_2.escape; } });
      -var unescape_js_2 = require("./unescape.js");
      -Object.defineProperty(exports, "unescape", { enumerable: true, get: function () { return unescape_js_2.unescape; } });
      -/* c8 ignore stop */
      -exports.minimatch.AST = ast_js_1.AST;
      -exports.minimatch.Minimatch = Minimatch;
      -exports.minimatch.escape = escape_js_1.escape;
      -exports.minimatch.unescape = unescape_js_1.unescape;
      -//# sourceMappingURL=index.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/package.json
      deleted file mode 100644
      index 5bbefffbabee39..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/package.json
      +++ /dev/null
      @@ -1,3 +0,0 @@
      -{
      -  "type": "commonjs"
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/unescape.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/unescape.js
      deleted file mode 100644
      index 47c36bcee5a02a..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/cjs/unescape.js
      +++ /dev/null
      @@ -1,24 +0,0 @@
      -"use strict";
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.unescape = void 0;
      -/**
      - * Un-escape a string that has been escaped with {@link escape}.
      - *
      - * If the {@link windowsPathsNoEscape} option is used, then square-brace
      - * escapes are removed, but not backslash escapes.  For example, it will turn
      - * the string `'[*]'` into `*`, but it will not turn `'\\*'` into `'*'`,
      - * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
      - *
      - * When `windowsPathsNoEscape` is not set, then both brace escapes and
      - * backslash escapes are removed.
      - *
      - * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
      - * or unescaped.
      - */
      -const unescape = (s, { windowsPathsNoEscape = false, } = {}) => {
      -    return windowsPathsNoEscape
      -        ? s.replace(/\[([^\/\\])\]/g, '$1')
      -        : s.replace(/((?!\\).|^)\[([^\/\\])\]/g, '$1$2').replace(/\\([^\/])/g, '$1');
      -};
      -exports.unescape = unescape;
      -//# sourceMappingURL=unescape.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/assert-valid-pattern.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/assert-valid-pattern.js
      deleted file mode 100644
      index 7b534fc30200bb..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/assert-valid-pattern.js
      +++ /dev/null
      @@ -1,10 +0,0 @@
      -const MAX_PATTERN_LENGTH = 1024 * 64;
      -export const assertValidPattern = (pattern) => {
      -    if (typeof pattern !== 'string') {
      -        throw new TypeError('invalid pattern');
      -    }
      -    if (pattern.length > MAX_PATTERN_LENGTH) {
      -        throw new TypeError('pattern is too long');
      -    }
      -};
      -//# sourceMappingURL=assert-valid-pattern.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/ast.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/ast.js
      deleted file mode 100644
      index 7fb1f83e6182a0..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/ast.js
      +++ /dev/null
      @@ -1,585 +0,0 @@
      -// parse a single path portion
      -import { parseClass } from './brace-expressions.js';
      -import { unescape } from './unescape.js';
      -const types = new Set(['!', '?', '+', '*', '@']);
      -const isExtglobType = (c) => types.has(c);
      -// Patterns that get prepended to bind to the start of either the
      -// entire string, or just a single path portion, to prevent dots
      -// and/or traversal patterns, when needed.
      -// Exts don't need the ^ or / bit, because the root binds that already.
      -const startNoTraversal = '(?!(?:^|/)\\.\\.?(?:$|/))';
      -const startNoDot = '(?!\\.)';
      -// characters that indicate a start of pattern needs the "no dots" bit,
      -// because a dot *might* be matched. ( is not in the list, because in
      -// the case of a child extglob, it will handle the prevention itself.
      -const addPatternStart = new Set(['[', '.']);
      -// cases where traversal is A-OK, no dot prevention needed
      -const justDots = new Set(['..', '.']);
      -const reSpecials = new Set('().*{}+?[]^$\\!');
      -const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
      -// any single thing other than /
      -const qmark = '[^/]';
      -// * => any number of characters
      -const star = qmark + '*?';
      -// use + when we need to ensure that *something* matches, because the * is
      -// the only thing in the path portion.
      -const starNoEmpty = qmark + '+?';
      -// remove the \ chars that we added if we end up doing a nonmagic compare
      -// const deslash = (s: string) => s.replace(/\\(.)/g, '$1')
      -export class AST {
      -    type;
      -    #root;
      -    #hasMagic;
      -    #uflag = false;
      -    #parts = [];
      -    #parent;
      -    #parentIndex;
      -    #negs;
      -    #filledNegs = false;
      -    #options;
      -    #toString;
      -    // set to true if it's an extglob with no children
      -    // (which really means one child of '')
      -    #emptyExt = false;
      -    constructor(type, parent, options = {}) {
      -        this.type = type;
      -        // extglobs are inherently magical
      -        if (type)
      -            this.#hasMagic = true;
      -        this.#parent = parent;
      -        this.#root = this.#parent ? this.#parent.#root : this;
      -        this.#options = this.#root === this ? options : this.#root.#options;
      -        this.#negs = this.#root === this ? [] : this.#root.#negs;
      -        if (type === '!' && !this.#root.#filledNegs)
      -            this.#negs.push(this);
      -        this.#parentIndex = this.#parent ? this.#parent.#parts.length : 0;
      -    }
      -    get hasMagic() {
      -        /* c8 ignore start */
      -        if (this.#hasMagic !== undefined)
      -            return this.#hasMagic;
      -        /* c8 ignore stop */
      -        for (const p of this.#parts) {
      -            if (typeof p === 'string')
      -                continue;
      -            if (p.type || p.hasMagic)
      -                return (this.#hasMagic = true);
      -        }
      -        // note: will be undefined until we generate the regexp src and find out
      -        return this.#hasMagic;
      -    }
      -    // reconstructs the pattern
      -    toString() {
      -        if (this.#toString !== undefined)
      -            return this.#toString;
      -        if (!this.type) {
      -            return (this.#toString = this.#parts.map(p => String(p)).join(''));
      -        }
      -        else {
      -            return (this.#toString =
      -                this.type + '(' + this.#parts.map(p => String(p)).join('|') + ')');
      -        }
      -    }
      -    #fillNegs() {
      -        /* c8 ignore start */
      -        if (this !== this.#root)
      -            throw new Error('should only call on root');
      -        if (this.#filledNegs)
      -            return this;
      -        /* c8 ignore stop */
      -        // call toString() once to fill this out
      -        this.toString();
      -        this.#filledNegs = true;
      -        let n;
      -        while ((n = this.#negs.pop())) {
      -            if (n.type !== '!')
      -                continue;
      -            // walk up the tree, appending everthing that comes AFTER parentIndex
      -            let p = n;
      -            let pp = p.#parent;
      -            while (pp) {
      -                for (let i = p.#parentIndex + 1; !pp.type && i < pp.#parts.length; i++) {
      -                    for (const part of n.#parts) {
      -                        /* c8 ignore start */
      -                        if (typeof part === 'string') {
      -                            throw new Error('string part in extglob AST??');
      -                        }
      -                        /* c8 ignore stop */
      -                        part.copyIn(pp.#parts[i]);
      -                    }
      -                }
      -                p = pp;
      -                pp = p.#parent;
      -            }
      -        }
      -        return this;
      -    }
      -    push(...parts) {
      -        for (const p of parts) {
      -            if (p === '')
      -                continue;
      -            /* c8 ignore start */
      -            if (typeof p !== 'string' && !(p instanceof AST && p.#parent === this)) {
      -                throw new Error('invalid part: ' + p);
      -            }
      -            /* c8 ignore stop */
      -            this.#parts.push(p);
      -        }
      -    }
      -    toJSON() {
      -        const ret = this.type === null
      -            ? this.#parts.slice().map(p => (typeof p === 'string' ? p : p.toJSON()))
      -            : [this.type, ...this.#parts.map(p => p.toJSON())];
      -        if (this.isStart() && !this.type)
      -            ret.unshift([]);
      -        if (this.isEnd() &&
      -            (this === this.#root ||
      -                (this.#root.#filledNegs && this.#parent?.type === '!'))) {
      -            ret.push({});
      -        }
      -        return ret;
      -    }
      -    isStart() {
      -        if (this.#root === this)
      -            return true;
      -        // if (this.type) return !!this.#parent?.isStart()
      -        if (!this.#parent?.isStart())
      -            return false;
      -        if (this.#parentIndex === 0)
      -            return true;
      -        // if everything AHEAD of this is a negation, then it's still the "start"
      -        const p = this.#parent;
      -        for (let i = 0; i < this.#parentIndex; i++) {
      -            const pp = p.#parts[i];
      -            if (!(pp instanceof AST && pp.type === '!')) {
      -                return false;
      -            }
      -        }
      -        return true;
      -    }
      -    isEnd() {
      -        if (this.#root === this)
      -            return true;
      -        if (this.#parent?.type === '!')
      -            return true;
      -        if (!this.#parent?.isEnd())
      -            return false;
      -        if (!this.type)
      -            return this.#parent?.isEnd();
      -        // if not root, it'll always have a parent
      -        /* c8 ignore start */
      -        const pl = this.#parent ? this.#parent.#parts.length : 0;
      -        /* c8 ignore stop */
      -        return this.#parentIndex === pl - 1;
      -    }
      -    copyIn(part) {
      -        if (typeof part === 'string')
      -            this.push(part);
      -        else
      -            this.push(part.clone(this));
      -    }
      -    clone(parent) {
      -        const c = new AST(this.type, parent);
      -        for (const p of this.#parts) {
      -            c.copyIn(p);
      -        }
      -        return c;
      -    }
      -    static #parseAST(str, ast, pos, opt) {
      -        let escaping = false;
      -        let inBrace = false;
      -        let braceStart = -1;
      -        let braceNeg = false;
      -        if (ast.type === null) {
      -            // outside of a extglob, append until we find a start
      -            let i = pos;
      -            let acc = '';
      -            while (i < str.length) {
      -                const c = str.charAt(i++);
      -                // still accumulate escapes at this point, but we do ignore
      -                // starts that are escaped
      -                if (escaping || c === '\\') {
      -                    escaping = !escaping;
      -                    acc += c;
      -                    continue;
      -                }
      -                if (inBrace) {
      -                    if (i === braceStart + 1) {
      -                        if (c === '^' || c === '!') {
      -                            braceNeg = true;
      -                        }
      -                    }
      -                    else if (c === ']' && !(i === braceStart + 2 && braceNeg)) {
      -                        inBrace = false;
      -                    }
      -                    acc += c;
      -                    continue;
      -                }
      -                else if (c === '[') {
      -                    inBrace = true;
      -                    braceStart = i;
      -                    braceNeg = false;
      -                    acc += c;
      -                    continue;
      -                }
      -                if (!opt.noext && isExtglobType(c) && str.charAt(i) === '(') {
      -                    ast.push(acc);
      -                    acc = '';
      -                    const ext = new AST(c, ast);
      -                    i = AST.#parseAST(str, ext, i, opt);
      -                    ast.push(ext);
      -                    continue;
      -                }
      -                acc += c;
      -            }
      -            ast.push(acc);
      -            return i;
      -        }
      -        // some kind of extglob, pos is at the (
      -        // find the next | or )
      -        let i = pos + 1;
      -        let part = new AST(null, ast);
      -        const parts = [];
      -        let acc = '';
      -        while (i < str.length) {
      -            const c = str.charAt(i++);
      -            // still accumulate escapes at this point, but we do ignore
      -            // starts that are escaped
      -            if (escaping || c === '\\') {
      -                escaping = !escaping;
      -                acc += c;
      -                continue;
      -            }
      -            if (inBrace) {
      -                if (i === braceStart + 1) {
      -                    if (c === '^' || c === '!') {
      -                        braceNeg = true;
      -                    }
      -                }
      -                else if (c === ']' && !(i === braceStart + 2 && braceNeg)) {
      -                    inBrace = false;
      -                }
      -                acc += c;
      -                continue;
      -            }
      -            else if (c === '[') {
      -                inBrace = true;
      -                braceStart = i;
      -                braceNeg = false;
      -                acc += c;
      -                continue;
      -            }
      -            if (isExtglobType(c) && str.charAt(i) === '(') {
      -                part.push(acc);
      -                acc = '';
      -                const ext = new AST(c, part);
      -                part.push(ext);
      -                i = AST.#parseAST(str, ext, i, opt);
      -                continue;
      -            }
      -            if (c === '|') {
      -                part.push(acc);
      -                acc = '';
      -                parts.push(part);
      -                part = new AST(null, ast);
      -                continue;
      -            }
      -            if (c === ')') {
      -                if (acc === '' && ast.#parts.length === 0) {
      -                    ast.#emptyExt = true;
      -                }
      -                part.push(acc);
      -                acc = '';
      -                ast.push(...parts, part);
      -                return i;
      -            }
      -            acc += c;
      -        }
      -        // unfinished extglob
      -        // if we got here, it was a malformed extglob! not an extglob, but
      -        // maybe something else in there.
      -        ast.type = null;
      -        ast.#hasMagic = undefined;
      -        ast.#parts = [str.substring(pos - 1)];
      -        return i;
      -    }
      -    static fromGlob(pattern, options = {}) {
      -        const ast = new AST(null, undefined, options);
      -        AST.#parseAST(pattern, ast, 0, options);
      -        return ast;
      -    }
      -    // returns the regular expression if there's magic, or the unescaped
      -    // string if not.
      -    toMMPattern() {
      -        // should only be called on root
      -        /* c8 ignore start */
      -        if (this !== this.#root)
      -            return this.#root.toMMPattern();
      -        /* c8 ignore stop */
      -        const glob = this.toString();
      -        const [re, body, hasMagic, uflag] = this.toRegExpSource();
      -        // if we're in nocase mode, and not nocaseMagicOnly, then we do
      -        // still need a regular expression if we have to case-insensitively
      -        // match capital/lowercase characters.
      -        const anyMagic = hasMagic ||
      -            this.#hasMagic ||
      -            (this.#options.nocase &&
      -                !this.#options.nocaseMagicOnly &&
      -                glob.toUpperCase() !== glob.toLowerCase());
      -        if (!anyMagic) {
      -            return body;
      -        }
      -        const flags = (this.#options.nocase ? 'i' : '') + (uflag ? 'u' : '');
      -        return Object.assign(new RegExp(`^${re}$`, flags), {
      -            _src: re,
      -            _glob: glob,
      -        });
      -    }
      -    // returns the string match, the regexp source, whether there's magic
      -    // in the regexp (so a regular expression is required) and whether or
      -    // not the uflag is needed for the regular expression (for posix classes)
      -    // TODO: instead of injecting the start/end at this point, just return
      -    // the BODY of the regexp, along with the start/end portions suitable
      -    // for binding the start/end in either a joined full-path makeRe context
      -    // (where we bind to (^|/), or a standalone matchPart context (where
      -    // we bind to ^, and not /).  Otherwise slashes get duped!
      -    //
      -    // In part-matching mode, the start is:
      -    // - if not isStart: nothing
      -    // - if traversal possible, but not allowed: ^(?!\.\.?$)
      -    // - if dots allowed or not possible: ^
      -    // - if dots possible and not allowed: ^(?!\.)
      -    // end is:
      -    // - if not isEnd(): nothing
      -    // - else: $
      -    //
      -    // In full-path matching mode, we put the slash at the START of the
      -    // pattern, so start is:
      -    // - if first pattern: same as part-matching mode
      -    // - if not isStart(): nothing
      -    // - if traversal possible, but not allowed: /(?!\.\.?(?:$|/))
      -    // - if dots allowed or not possible: /
      -    // - if dots possible and not allowed: /(?!\.)
      -    // end is:
      -    // - if last pattern, same as part-matching mode
      -    // - else nothing
      -    //
      -    // Always put the (?:$|/) on negated tails, though, because that has to be
      -    // there to bind the end of the negated pattern portion, and it's easier to
      -    // just stick it in now rather than try to inject it later in the middle of
      -    // the pattern.
      -    //
      -    // We can just always return the same end, and leave it up to the caller
      -    // to know whether it's going to be used joined or in parts.
      -    // And, if the start is adjusted slightly, can do the same there:
      -    // - if not isStart: nothing
      -    // - if traversal possible, but not allowed: (?:/|^)(?!\.\.?$)
      -    // - if dots allowed or not possible: (?:/|^)
      -    // - if dots possible and not allowed: (?:/|^)(?!\.)
      -    //
      -    // But it's better to have a simpler binding without a conditional, for
      -    // performance, so probably better to return both start options.
      -    //
      -    // Then the caller just ignores the end if it's not the first pattern,
      -    // and the start always gets applied.
      -    //
      -    // But that's always going to be $ if it's the ending pattern, or nothing,
      -    // so the caller can just attach $ at the end of the pattern when building.
      -    //
      -    // So the todo is:
      -    // - better detect what kind of start is needed
      -    // - return both flavors of starting pattern
      -    // - attach $ at the end of the pattern when creating the actual RegExp
      -    //
      -    // Ah, but wait, no, that all only applies to the root when the first pattern
      -    // is not an extglob. If the first pattern IS an extglob, then we need all
      -    // that dot prevention biz to live in the extglob portions, because eg
      -    // +(*|.x*) can match .xy but not .yx.
      -    //
      -    // So, return the two flavors if it's #root and the first child is not an
      -    // AST, otherwise leave it to the child AST to handle it, and there,
      -    // use the (?:^|/) style of start binding.
      -    //
      -    // Even simplified further:
      -    // - Since the start for a join is eg /(?!\.) and the start for a part
      -    // is ^(?!\.), we can just prepend (?!\.) to the pattern (either root
      -    // or start or whatever) and prepend ^ or / at the Regexp construction.
      -    toRegExpSource(allowDot) {
      -        const dot = allowDot ?? !!this.#options.dot;
      -        if (this.#root === this)
      -            this.#fillNegs();
      -        if (!this.type) {
      -            const noEmpty = this.isStart() && this.isEnd();
      -            const src = this.#parts
      -                .map(p => {
      -                const [re, _, hasMagic, uflag] = typeof p === 'string'
      -                    ? AST.#parseGlob(p, this.#hasMagic, noEmpty)
      -                    : p.toRegExpSource(allowDot);
      -                this.#hasMagic = this.#hasMagic || hasMagic;
      -                this.#uflag = this.#uflag || uflag;
      -                return re;
      -            })
      -                .join('');
      -            let start = '';
      -            if (this.isStart()) {
      -                if (typeof this.#parts[0] === 'string') {
      -                    // this is the string that will match the start of the pattern,
      -                    // so we need to protect against dots and such.
      -                    // '.' and '..' cannot match unless the pattern is that exactly,
      -                    // even if it starts with . or dot:true is set.
      -                    const dotTravAllowed = this.#parts.length === 1 && justDots.has(this.#parts[0]);
      -                    if (!dotTravAllowed) {
      -                        const aps = addPatternStart;
      -                        // check if we have a possibility of matching . or ..,
      -                        // and prevent that.
      -                        const needNoTrav =
      -                        // dots are allowed, and the pattern starts with [ or .
      -                        (dot && aps.has(src.charAt(0))) ||
      -                            // the pattern starts with \., and then [ or .
      -                            (src.startsWith('\\.') && aps.has(src.charAt(2))) ||
      -                            // the pattern starts with \.\., and then [ or .
      -                            (src.startsWith('\\.\\.') && aps.has(src.charAt(4)));
      -                        // no need to prevent dots if it can't match a dot, or if a
      -                        // sub-pattern will be preventing it anyway.
      -                        const needNoDot = !dot && !allowDot && aps.has(src.charAt(0));
      -                        start = needNoTrav ? startNoTraversal : needNoDot ? startNoDot : '';
      -                    }
      -                }
      -            }
      -            // append the "end of path portion" pattern to negation tails
      -            let end = '';
      -            if (this.isEnd() &&
      -                this.#root.#filledNegs &&
      -                this.#parent?.type === '!') {
      -                end = '(?:$|\\/)';
      -            }
      -            const final = start + src + end;
      -            return [
      -                final,
      -                unescape(src),
      -                (this.#hasMagic = !!this.#hasMagic),
      -                this.#uflag,
      -            ];
      -        }
      -        // We need to calculate the body *twice* if it's a repeat pattern
      -        // at the start, once in nodot mode, then again in dot mode, so a
      -        // pattern like *(?) can match 'x.y'
      -        const repeated = this.type === '*' || this.type === '+';
      -        // some kind of extglob
      -        const start = this.type === '!' ? '(?:(?!(?:' : '(?:';
      -        let body = this.#partsToRegExp(dot);
      -        if (this.isStart() && this.isEnd() && !body && this.type !== '!') {
      -            // invalid extglob, has to at least be *something* present, if it's
      -            // the entire path portion.
      -            const s = this.toString();
      -            this.#parts = [s];
      -            this.type = null;
      -            this.#hasMagic = undefined;
      -            return [s, unescape(this.toString()), false, false];
      -        }
      -        // XXX abstract out this map method
      -        let bodyDotAllowed = !repeated || allowDot || dot || !startNoDot
      -            ? ''
      -            : this.#partsToRegExp(true);
      -        if (bodyDotAllowed === body) {
      -            bodyDotAllowed = '';
      -        }
      -        if (bodyDotAllowed) {
      -            body = `(?:${body})(?:${bodyDotAllowed})*?`;
      -        }
      -        // an empty !() is exactly equivalent to a starNoEmpty
      -        let final = '';
      -        if (this.type === '!' && this.#emptyExt) {
      -            final = (this.isStart() && !dot ? startNoDot : '') + starNoEmpty;
      -        }
      -        else {
      -            const close = this.type === '!'
      -                ? // !() must match something,but !(x) can match ''
      -                    '))' +
      -                        (this.isStart() && !dot && !allowDot ? startNoDot : '') +
      -                        star +
      -                        ')'
      -                : this.type === '@'
      -                    ? ')'
      -                    : this.type === '?'
      -                        ? ')?'
      -                        : this.type === '+' && bodyDotAllowed
      -                            ? ')'
      -                            : this.type === '*' && bodyDotAllowed
      -                                ? `)?`
      -                                : `)${this.type}`;
      -            final = start + body + close;
      -        }
      -        return [
      -            final,
      -            unescape(body),
      -            (this.#hasMagic = !!this.#hasMagic),
      -            this.#uflag,
      -        ];
      -    }
      -    #partsToRegExp(dot) {
      -        return this.#parts
      -            .map(p => {
      -            // extglob ASTs should only contain parent ASTs
      -            /* c8 ignore start */
      -            if (typeof p === 'string') {
      -                throw new Error('string type in extglob ast??');
      -            }
      -            /* c8 ignore stop */
      -            // can ignore hasMagic, because extglobs are already always magic
      -            const [re, _, _hasMagic, uflag] = p.toRegExpSource(dot);
      -            this.#uflag = this.#uflag || uflag;
      -            return re;
      -        })
      -            .filter(p => !(this.isStart() && this.isEnd()) || !!p)
      -            .join('|');
      -    }
      -    static #parseGlob(glob, hasMagic, noEmpty = false) {
      -        let escaping = false;
      -        let re = '';
      -        let uflag = false;
      -        for (let i = 0; i < glob.length; i++) {
      -            const c = glob.charAt(i);
      -            if (escaping) {
      -                escaping = false;
      -                re += (reSpecials.has(c) ? '\\' : '') + c;
      -                continue;
      -            }
      -            if (c === '\\') {
      -                if (i === glob.length - 1) {
      -                    re += '\\\\';
      -                }
      -                else {
      -                    escaping = true;
      -                }
      -                continue;
      -            }
      -            if (c === '[') {
      -                const [src, needUflag, consumed, magic] = parseClass(glob, i);
      -                if (consumed) {
      -                    re += src;
      -                    uflag = uflag || needUflag;
      -                    i += consumed - 1;
      -                    hasMagic = hasMagic || magic;
      -                    continue;
      -                }
      -            }
      -            if (c === '*') {
      -                if (noEmpty && glob === '*')
      -                    re += starNoEmpty;
      -                else
      -                    re += star;
      -                hasMagic = true;
      -                continue;
      -            }
      -            if (c === '?') {
      -                re += qmark;
      -                hasMagic = true;
      -                continue;
      -            }
      -            re += regExpEscape(c);
      -        }
      -        return [re, unescape(glob), !!hasMagic, uflag];
      -    }
      -}
      -//# sourceMappingURL=ast.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/brace-expressions.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/brace-expressions.js
      deleted file mode 100644
      index c629d6ae816e27..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/brace-expressions.js
      +++ /dev/null
      @@ -1,148 +0,0 @@
      -// translate the various posix character classes into unicode properties
      -// this works across all unicode locales
      -// { : [, /u flag required, negated]
      -const posixClasses = {
      -    '[:alnum:]': ['\\p{L}\\p{Nl}\\p{Nd}', true],
      -    '[:alpha:]': ['\\p{L}\\p{Nl}', true],
      -    '[:ascii:]': ['\\x' + '00-\\x' + '7f', false],
      -    '[:blank:]': ['\\p{Zs}\\t', true],
      -    '[:cntrl:]': ['\\p{Cc}', true],
      -    '[:digit:]': ['\\p{Nd}', true],
      -    '[:graph:]': ['\\p{Z}\\p{C}', true, true],
      -    '[:lower:]': ['\\p{Ll}', true],
      -    '[:print:]': ['\\p{C}', true],
      -    '[:punct:]': ['\\p{P}', true],
      -    '[:space:]': ['\\p{Z}\\t\\r\\n\\v\\f', true],
      -    '[:upper:]': ['\\p{Lu}', true],
      -    '[:word:]': ['\\p{L}\\p{Nl}\\p{Nd}\\p{Pc}', true],
      -    '[:xdigit:]': ['A-Fa-f0-9', false],
      -};
      -// only need to escape a few things inside of brace expressions
      -// escapes: [ \ ] -
      -const braceEscape = (s) => s.replace(/[[\]\\-]/g, '\\$&');
      -// escape all regexp magic characters
      -const regexpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
      -// everything has already been escaped, we just have to join
      -const rangesToString = (ranges) => ranges.join('');
      -// takes a glob string at a posix brace expression, and returns
      -// an equivalent regular expression source, and boolean indicating
      -// whether the /u flag needs to be applied, and the number of chars
      -// consumed to parse the character class.
      -// This also removes out of order ranges, and returns ($.) if the
      -// entire class just no good.
      -export const parseClass = (glob, position) => {
      -    const pos = position;
      -    /* c8 ignore start */
      -    if (glob.charAt(pos) !== '[') {
      -        throw new Error('not in a brace expression');
      -    }
      -    /* c8 ignore stop */
      -    const ranges = [];
      -    const negs = [];
      -    let i = pos + 1;
      -    let sawStart = false;
      -    let uflag = false;
      -    let escaping = false;
      -    let negate = false;
      -    let endPos = pos;
      -    let rangeStart = '';
      -    WHILE: while (i < glob.length) {
      -        const c = glob.charAt(i);
      -        if ((c === '!' || c === '^') && i === pos + 1) {
      -            negate = true;
      -            i++;
      -            continue;
      -        }
      -        if (c === ']' && sawStart && !escaping) {
      -            endPos = i + 1;
      -            break;
      -        }
      -        sawStart = true;
      -        if (c === '\\') {
      -            if (!escaping) {
      -                escaping = true;
      -                i++;
      -                continue;
      -            }
      -            // escaped \ char, fall through and treat like normal char
      -        }
      -        if (c === '[' && !escaping) {
      -            // either a posix class, a collation equivalent, or just a [
      -            for (const [cls, [unip, u, neg]] of Object.entries(posixClasses)) {
      -                if (glob.startsWith(cls, i)) {
      -                    // invalid, [a-[] is fine, but not [a-[:alpha]]
      -                    if (rangeStart) {
      -                        return ['$.', false, glob.length - pos, true];
      -                    }
      -                    i += cls.length;
      -                    if (neg)
      -                        negs.push(unip);
      -                    else
      -                        ranges.push(unip);
      -                    uflag = uflag || u;
      -                    continue WHILE;
      -                }
      -            }
      -        }
      -        // now it's just a normal character, effectively
      -        escaping = false;
      -        if (rangeStart) {
      -            // throw this range away if it's not valid, but others
      -            // can still match.
      -            if (c > rangeStart) {
      -                ranges.push(braceEscape(rangeStart) + '-' + braceEscape(c));
      -            }
      -            else if (c === rangeStart) {
      -                ranges.push(braceEscape(c));
      -            }
      -            rangeStart = '';
      -            i++;
      -            continue;
      -        }
      -        // now might be the start of a range.
      -        // can be either c-d or c-] or c] or c] at this point
      -        if (glob.startsWith('-]', i + 1)) {
      -            ranges.push(braceEscape(c + '-'));
      -            i += 2;
      -            continue;
      -        }
      -        if (glob.startsWith('-', i + 1)) {
      -            rangeStart = c;
      -            i += 2;
      -            continue;
      -        }
      -        // not the start of a range, just a single character
      -        ranges.push(braceEscape(c));
      -        i++;
      -    }
      -    if (endPos < i) {
      -        // didn't see the end of the class, not a valid class,
      -        // but might still be valid as a literal match.
      -        return ['', false, 0, false];
      -    }
      -    // if we got no ranges and no negates, then we have a range that
      -    // cannot possibly match anything, and that poisons the whole glob
      -    if (!ranges.length && !negs.length) {
      -        return ['$.', false, glob.length - pos, true];
      -    }
      -    // if we got one positive range, and it's a single character, then that's
      -    // not actually a magic pattern, it's just that one literal character.
      -    // we should not treat that as "magic", we should just return the literal
      -    // character. [_] is a perfectly valid way to escape glob magic chars.
      -    if (negs.length === 0 &&
      -        ranges.length === 1 &&
      -        /^\\?.$/.test(ranges[0]) &&
      -        !negate) {
      -        const r = ranges[0].length === 2 ? ranges[0].slice(-1) : ranges[0];
      -        return [regexpEscape(r), false, endPos - pos, false];
      -    }
      -    const sranges = '[' + (negate ? '^' : '') + rangesToString(ranges) + ']';
      -    const snegs = '[' + (negate ? '' : '^') + rangesToString(negs) + ']';
      -    const comb = ranges.length && negs.length
      -        ? '(' + sranges + '|' + snegs + ')'
      -        : ranges.length
      -            ? sranges
      -            : snegs;
      -    return [comb, uflag, endPos - pos, true];
      -};
      -//# sourceMappingURL=brace-expressions.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/escape.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/escape.js
      deleted file mode 100644
      index 16f7c8c7bdc646..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/escape.js
      +++ /dev/null
      @@ -1,18 +0,0 @@
      -/**
      - * Escape all magic characters in a glob pattern.
      - *
      - * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
      - * option is used, then characters are escaped by wrapping in `[]`, because
      - * a magic character wrapped in a character class can only be satisfied by
      - * that exact character.  In this mode, `\` is _not_ escaped, because it is
      - * not interpreted as a magic character, but instead as a path separator.
      - */
      -export const escape = (s, { windowsPathsNoEscape = false, } = {}) => {
      -    // don't need to escape +@! because we escape the parens
      -    // that make those magic, and escaping ! as [!] isn't valid,
      -    // because [!]] is a valid glob class meaning not ']'.
      -    return windowsPathsNoEscape
      -        ? s.replace(/[?*()[\]]/g, '[$&]')
      -        : s.replace(/[?*()[\]\\]/g, '\\$&');
      -};
      -//# sourceMappingURL=escape.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/index.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/index.js
      deleted file mode 100644
      index 831b6a67f63fb4..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/index.js
      +++ /dev/null
      @@ -1,995 +0,0 @@
      -import expand from 'brace-expansion';
      -import { assertValidPattern } from './assert-valid-pattern.js';
      -import { AST } from './ast.js';
      -import { escape } from './escape.js';
      -import { unescape } from './unescape.js';
      -export const minimatch = (p, pattern, options = {}) => {
      -    assertValidPattern(pattern);
      -    // shortcut: comments match nothing.
      -    if (!options.nocomment && pattern.charAt(0) === '#') {
      -        return false;
      -    }
      -    return new Minimatch(pattern, options).match(p);
      -};
      -// Optimized checking for the most common glob patterns.
      -const starDotExtRE = /^\*+([^+@!?\*\[\(]*)$/;
      -const starDotExtTest = (ext) => (f) => !f.startsWith('.') && f.endsWith(ext);
      -const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
      -const starDotExtTestNocase = (ext) => {
      -    ext = ext.toLowerCase();
      -    return (f) => !f.startsWith('.') && f.toLowerCase().endsWith(ext);
      -};
      -const starDotExtTestNocaseDot = (ext) => {
      -    ext = ext.toLowerCase();
      -    return (f) => f.toLowerCase().endsWith(ext);
      -};
      -const starDotStarRE = /^\*+\.\*+$/;
      -const starDotStarTest = (f) => !f.startsWith('.') && f.includes('.');
      -const starDotStarTestDot = (f) => f !== '.' && f !== '..' && f.includes('.');
      -const dotStarRE = /^\.\*+$/;
      -const dotStarTest = (f) => f !== '.' && f !== '..' && f.startsWith('.');
      -const starRE = /^\*+$/;
      -const starTest = (f) => f.length !== 0 && !f.startsWith('.');
      -const starTestDot = (f) => f.length !== 0 && f !== '.' && f !== '..';
      -const qmarksRE = /^\?+([^+@!?\*\[\(]*)?$/;
      -const qmarksTestNocase = ([$0, ext = '']) => {
      -    const noext = qmarksTestNoExt([$0]);
      -    if (!ext)
      -        return noext;
      -    ext = ext.toLowerCase();
      -    return (f) => noext(f) && f.toLowerCase().endsWith(ext);
      -};
      -const qmarksTestNocaseDot = ([$0, ext = '']) => {
      -    const noext = qmarksTestNoExtDot([$0]);
      -    if (!ext)
      -        return noext;
      -    ext = ext.toLowerCase();
      -    return (f) => noext(f) && f.toLowerCase().endsWith(ext);
      -};
      -const qmarksTestDot = ([$0, ext = '']) => {
      -    const noext = qmarksTestNoExtDot([$0]);
      -    return !ext ? noext : (f) => noext(f) && f.endsWith(ext);
      -};
      -const qmarksTest = ([$0, ext = '']) => {
      -    const noext = qmarksTestNoExt([$0]);
      -    return !ext ? noext : (f) => noext(f) && f.endsWith(ext);
      -};
      -const qmarksTestNoExt = ([$0]) => {
      -    const len = $0.length;
      -    return (f) => f.length === len && !f.startsWith('.');
      -};
      -const qmarksTestNoExtDot = ([$0]) => {
      -    const len = $0.length;
      -    return (f) => f.length === len && f !== '.' && f !== '..';
      -};
      -/* c8 ignore start */
      -const defaultPlatform = (typeof process === 'object' && process
      -    ? (typeof process.env === 'object' &&
      -        process.env &&
      -        process.env.__MINIMATCH_TESTING_PLATFORM__) ||
      -        process.platform
      -    : 'posix');
      -const path = {
      -    win32: { sep: '\\' },
      -    posix: { sep: '/' },
      -};
      -/* c8 ignore stop */
      -export const sep = defaultPlatform === 'win32' ? path.win32.sep : path.posix.sep;
      -minimatch.sep = sep;
      -export const GLOBSTAR = Symbol('globstar **');
      -minimatch.GLOBSTAR = GLOBSTAR;
      -// any single thing other than /
      -// don't need to escape / when using new RegExp()
      -const qmark = '[^/]';
      -// * => any number of characters
      -const star = qmark + '*?';
      -// ** when dots are allowed.  Anything goes, except .. and .
      -// not (^ or / followed by one or two dots followed by $ or /),
      -// followed by anything, any number of times.
      -const twoStarDot = '(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?';
      -// not a ^ or / followed by a dot,
      -// followed by anything, any number of times.
      -const twoStarNoDot = '(?:(?!(?:\\/|^)\\.).)*?';
      -export const filter = (pattern, options = {}) => (p) => minimatch(p, pattern, options);
      -minimatch.filter = filter;
      -const ext = (a, b = {}) => Object.assign({}, a, b);
      -export const defaults = (def) => {
      -    if (!def || typeof def !== 'object' || !Object.keys(def).length) {
      -        return minimatch;
      -    }
      -    const orig = minimatch;
      -    const m = (p, pattern, options = {}) => orig(p, pattern, ext(def, options));
      -    return Object.assign(m, {
      -        Minimatch: class Minimatch extends orig.Minimatch {
      -            constructor(pattern, options = {}) {
      -                super(pattern, ext(def, options));
      -            }
      -            static defaults(options) {
      -                return orig.defaults(ext(def, options)).Minimatch;
      -            }
      -        },
      -        AST: class AST extends orig.AST {
      -            /* c8 ignore start */
      -            constructor(type, parent, options = {}) {
      -                super(type, parent, ext(def, options));
      -            }
      -            /* c8 ignore stop */
      -            static fromGlob(pattern, options = {}) {
      -                return orig.AST.fromGlob(pattern, ext(def, options));
      -            }
      -        },
      -        unescape: (s, options = {}) => orig.unescape(s, ext(def, options)),
      -        escape: (s, options = {}) => orig.escape(s, ext(def, options)),
      -        filter: (pattern, options = {}) => orig.filter(pattern, ext(def, options)),
      -        defaults: (options) => orig.defaults(ext(def, options)),
      -        makeRe: (pattern, options = {}) => orig.makeRe(pattern, ext(def, options)),
      -        braceExpand: (pattern, options = {}) => orig.braceExpand(pattern, ext(def, options)),
      -        match: (list, pattern, options = {}) => orig.match(list, pattern, ext(def, options)),
      -        sep: orig.sep,
      -        GLOBSTAR: GLOBSTAR,
      -    });
      -};
      -minimatch.defaults = defaults;
      -// Brace expansion:
      -// a{b,c}d -> abd acd
      -// a{b,}c -> abc ac
      -// a{0..3}d -> a0d a1d a2d a3d
      -// a{b,c{d,e}f}g -> abg acdfg acefg
      -// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg
      -//
      -// Invalid sets are not expanded.
      -// a{2..}b -> a{2..}b
      -// a{b}c -> a{b}c
      -export const braceExpand = (pattern, options = {}) => {
      -    assertValidPattern(pattern);
      -    // Thanks to Yeting Li  for
      -    // improving this regexp to avoid a ReDOS vulnerability.
      -    if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
      -        // shortcut. no need to expand.
      -        return [pattern];
      -    }
      -    return expand(pattern);
      -};
      -minimatch.braceExpand = braceExpand;
      -// parse a component of the expanded set.
      -// At this point, no pattern may contain "/" in it
      -// so we're going to return a 2d array, where each entry is the full
      -// pattern, split on '/', and then turned into a regular expression.
      -// A regexp is made at the end which joins each array with an
      -// escaped /, and another full one which joins each regexp with |.
      -//
      -// Following the lead of Bash 4.1, note that "**" only has special meaning
      -// when it is the *only* thing in a path portion.  Otherwise, any series
      -// of * is equivalent to a single *.  Globstar behavior is enabled by
      -// default, and can be disabled by setting options.noglobstar.
      -export const makeRe = (pattern, options = {}) => new Minimatch(pattern, options).makeRe();
      -minimatch.makeRe = makeRe;
      -export const match = (list, pattern, options = {}) => {
      -    const mm = new Minimatch(pattern, options);
      -    list = list.filter(f => mm.match(f));
      -    if (mm.options.nonull && !list.length) {
      -        list.push(pattern);
      -    }
      -    return list;
      -};
      -minimatch.match = match;
      -// replace stuff like \* with *
      -const globMagic = /[?*]|[+@!]\(.*?\)|\[|\]/;
      -const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
      -export class Minimatch {
      -    options;
      -    set;
      -    pattern;
      -    windowsPathsNoEscape;
      -    nonegate;
      -    negate;
      -    comment;
      -    empty;
      -    preserveMultipleSlashes;
      -    partial;
      -    globSet;
      -    globParts;
      -    nocase;
      -    isWindows;
      -    platform;
      -    windowsNoMagicRoot;
      -    regexp;
      -    constructor(pattern, options = {}) {
      -        assertValidPattern(pattern);
      -        options = options || {};
      -        this.options = options;
      -        this.pattern = pattern;
      -        this.platform = options.platform || defaultPlatform;
      -        this.isWindows = this.platform === 'win32';
      -        this.windowsPathsNoEscape =
      -            !!options.windowsPathsNoEscape || options.allowWindowsEscape === false;
      -        if (this.windowsPathsNoEscape) {
      -            this.pattern = this.pattern.replace(/\\/g, '/');
      -        }
      -        this.preserveMultipleSlashes = !!options.preserveMultipleSlashes;
      -        this.regexp = null;
      -        this.negate = false;
      -        this.nonegate = !!options.nonegate;
      -        this.comment = false;
      -        this.empty = false;
      -        this.partial = !!options.partial;
      -        this.nocase = !!this.options.nocase;
      -        this.windowsNoMagicRoot =
      -            options.windowsNoMagicRoot !== undefined
      -                ? options.windowsNoMagicRoot
      -                : !!(this.isWindows && this.nocase);
      -        this.globSet = [];
      -        this.globParts = [];
      -        this.set = [];
      -        // make the set of regexps etc.
      -        this.make();
      -    }
      -    hasMagic() {
      -        if (this.options.magicalBraces && this.set.length > 1) {
      -            return true;
      -        }
      -        for (const pattern of this.set) {
      -            for (const part of pattern) {
      -                if (typeof part !== 'string')
      -                    return true;
      -            }
      -        }
      -        return false;
      -    }
      -    debug(..._) { }
      -    make() {
      -        const pattern = this.pattern;
      -        const options = this.options;
      -        // empty patterns and comments match nothing.
      -        if (!options.nocomment && pattern.charAt(0) === '#') {
      -            this.comment = true;
      -            return;
      -        }
      -        if (!pattern) {
      -            this.empty = true;
      -            return;
      -        }
      -        // step 1: figure out negation, etc.
      -        this.parseNegate();
      -        // step 2: expand braces
      -        this.globSet = [...new Set(this.braceExpand())];
      -        if (options.debug) {
      -            this.debug = (...args) => console.error(...args);
      -        }
      -        this.debug(this.pattern, this.globSet);
      -        // step 3: now we have a set, so turn each one into a series of
      -        // path-portion matching patterns.
      -        // These will be regexps, except in the case of "**", which is
      -        // set to the GLOBSTAR object for globstar behavior,
      -        // and will not contain any / characters
      -        //
      -        // First, we preprocess to make the glob pattern sets a bit simpler
      -        // and deduped.  There are some perf-killing patterns that can cause
      -        // problems with a glob walk, but we can simplify them down a bit.
      -        const rawGlobParts = this.globSet.map(s => this.slashSplit(s));
      -        this.globParts = this.preprocess(rawGlobParts);
      -        this.debug(this.pattern, this.globParts);
      -        // glob --> regexps
      -        let set = this.globParts.map((s, _, __) => {
      -            if (this.isWindows && this.windowsNoMagicRoot) {
      -                // check if it's a drive or unc path.
      -                const isUNC = s[0] === '' &&
      -                    s[1] === '' &&
      -                    (s[2] === '?' || !globMagic.test(s[2])) &&
      -                    !globMagic.test(s[3]);
      -                const isDrive = /^[a-z]:/i.test(s[0]);
      -                if (isUNC) {
      -                    return [...s.slice(0, 4), ...s.slice(4).map(ss => this.parse(ss))];
      -                }
      -                else if (isDrive) {
      -                    return [s[0], ...s.slice(1).map(ss => this.parse(ss))];
      -                }
      -            }
      -            return s.map(ss => this.parse(ss));
      -        });
      -        this.debug(this.pattern, set);
      -        // filter out everything that didn't compile properly.
      -        this.set = set.filter(s => s.indexOf(false) === -1);
      -        // do not treat the ? in UNC paths as magic
      -        if (this.isWindows) {
      -            for (let i = 0; i < this.set.length; i++) {
      -                const p = this.set[i];
      -                if (p[0] === '' &&
      -                    p[1] === '' &&
      -                    this.globParts[i][2] === '?' &&
      -                    typeof p[3] === 'string' &&
      -                    /^[a-z]:$/i.test(p[3])) {
      -                    p[2] = '?';
      -                }
      -            }
      -        }
      -        this.debug(this.pattern, this.set);
      -    }
      -    // various transforms to equivalent pattern sets that are
      -    // faster to process in a filesystem walk.  The goal is to
      -    // eliminate what we can, and push all ** patterns as far
      -    // to the right as possible, even if it increases the number
      -    // of patterns that we have to process.
      -    preprocess(globParts) {
      -        // if we're not in globstar mode, then turn all ** into *
      -        if (this.options.noglobstar) {
      -            for (let i = 0; i < globParts.length; i++) {
      -                for (let j = 0; j < globParts[i].length; j++) {
      -                    if (globParts[i][j] === '**') {
      -                        globParts[i][j] = '*';
      -                    }
      -                }
      -            }
      -        }
      -        const { optimizationLevel = 1 } = this.options;
      -        if (optimizationLevel >= 2) {
      -            // aggressive optimization for the purpose of fs walking
      -            globParts = this.firstPhasePreProcess(globParts);
      -            globParts = this.secondPhasePreProcess(globParts);
      -        }
      -        else if (optimizationLevel >= 1) {
      -            // just basic optimizations to remove some .. parts
      -            globParts = this.levelOneOptimize(globParts);
      -        }
      -        else {
      -            globParts = this.adjascentGlobstarOptimize(globParts);
      -        }
      -        return globParts;
      -    }
      -    // just get rid of adjascent ** portions
      -    adjascentGlobstarOptimize(globParts) {
      -        return globParts.map(parts => {
      -            let gs = -1;
      -            while (-1 !== (gs = parts.indexOf('**', gs + 1))) {
      -                let i = gs;
      -                while (parts[i + 1] === '**') {
      -                    i++;
      -                }
      -                if (i !== gs) {
      -                    parts.splice(gs, i - gs);
      -                }
      -            }
      -            return parts;
      -        });
      -    }
      -    // get rid of adjascent ** and resolve .. portions
      -    levelOneOptimize(globParts) {
      -        return globParts.map(parts => {
      -            parts = parts.reduce((set, part) => {
      -                const prev = set[set.length - 1];
      -                if (part === '**' && prev === '**') {
      -                    return set;
      -                }
      -                if (part === '..') {
      -                    if (prev && prev !== '..' && prev !== '.' && prev !== '**') {
      -                        set.pop();
      -                        return set;
      -                    }
      -                }
      -                set.push(part);
      -                return set;
      -            }, []);
      -            return parts.length === 0 ? [''] : parts;
      -        });
      -    }
      -    levelTwoFileOptimize(parts) {
      -        if (!Array.isArray(parts)) {
      -            parts = this.slashSplit(parts);
      -        }
      -        let didSomething = false;
      -        do {
      -            didSomething = false;
      -            // 
      // -> 
      /
      -            if (!this.preserveMultipleSlashes) {
      -                for (let i = 1; i < parts.length - 1; i++) {
      -                    const p = parts[i];
      -                    // don't squeeze out UNC patterns
      -                    if (i === 1 && p === '' && parts[0] === '')
      -                        continue;
      -                    if (p === '.' || p === '') {
      -                        didSomething = true;
      -                        parts.splice(i, 1);
      -                        i--;
      -                    }
      -                }
      -                if (parts[0] === '.' &&
      -                    parts.length === 2 &&
      -                    (parts[1] === '.' || parts[1] === '')) {
      -                    didSomething = true;
      -                    parts.pop();
      -                }
      -            }
      -            // 
      /

      /../ ->

      /
      -            let dd = 0;
      -            while (-1 !== (dd = parts.indexOf('..', dd + 1))) {
      -                const p = parts[dd - 1];
      -                if (p && p !== '.' && p !== '..' && p !== '**') {
      -                    didSomething = true;
      -                    parts.splice(dd - 1, 2);
      -                    dd -= 2;
      -                }
      -            }
      -        } while (didSomething);
      -        return parts.length === 0 ? [''] : parts;
      -    }
      -    // First phase: single-pattern processing
      -    // 
       is 1 or more portions
      -    //  is 1 or more portions
      -    // 

      is any portion other than ., .., '', or ** - // is . or '' - // - // **/.. is *brutal* for filesystem walking performance, because - // it effectively resets the recursive walk each time it occurs, - // and ** cannot be reduced out by a .. pattern part like a regexp - // or most strings (other than .., ., and '') can be. - // - //

      /**/../

      /

      / -> {

      /../

      /

      /,

      /**/

      /

      /} - //

      // -> 
      /
      -    // 
      /

      /../ ->

      /
      -    // **/**/ -> **/
      -    //
      -    // **/*/ -> */**/ <== not valid because ** doesn't follow
      -    // this WOULD be allowed if ** did follow symlinks, or * didn't
      -    firstPhasePreProcess(globParts) {
      -        let didSomething = false;
      -        do {
      -            didSomething = false;
      -            // 
      /**/../

      /

      / -> {

      /../

      /

      /,

      /**/

      /

      /} - for (let parts of globParts) { - let gs = -1; - while (-1 !== (gs = parts.indexOf('**', gs + 1))) { - let gss = gs; - while (parts[gss + 1] === '**') { - //

      /**/**/ -> 
      /**/
      -                        gss++;
      -                    }
      -                    // eg, if gs is 2 and gss is 4, that means we have 3 **
      -                    // parts, and can remove 2 of them.
      -                    if (gss > gs) {
      -                        parts.splice(gs + 1, gss - gs);
      -                    }
      -                    let next = parts[gs + 1];
      -                    const p = parts[gs + 2];
      -                    const p2 = parts[gs + 3];
      -                    if (next !== '..')
      -                        continue;
      -                    if (!p ||
      -                        p === '.' ||
      -                        p === '..' ||
      -                        !p2 ||
      -                        p2 === '.' ||
      -                        p2 === '..') {
      -                        continue;
      -                    }
      -                    didSomething = true;
      -                    // edit parts in place, and push the new one
      -                    parts.splice(gs, 1);
      -                    const other = parts.slice(0);
      -                    other[gs] = '**';
      -                    globParts.push(other);
      -                    gs--;
      -                }
      -                // 
      // -> 
      /
      -                if (!this.preserveMultipleSlashes) {
      -                    for (let i = 1; i < parts.length - 1; i++) {
      -                        const p = parts[i];
      -                        // don't squeeze out UNC patterns
      -                        if (i === 1 && p === '' && parts[0] === '')
      -                            continue;
      -                        if (p === '.' || p === '') {
      -                            didSomething = true;
      -                            parts.splice(i, 1);
      -                            i--;
      -                        }
      -                    }
      -                    if (parts[0] === '.' &&
      -                        parts.length === 2 &&
      -                        (parts[1] === '.' || parts[1] === '')) {
      -                        didSomething = true;
      -                        parts.pop();
      -                    }
      -                }
      -                // 
      /

      /../ ->

      /
      -                let dd = 0;
      -                while (-1 !== (dd = parts.indexOf('..', dd + 1))) {
      -                    const p = parts[dd - 1];
      -                    if (p && p !== '.' && p !== '..' && p !== '**') {
      -                        didSomething = true;
      -                        const needDot = dd === 1 && parts[dd + 1] === '**';
      -                        const splin = needDot ? ['.'] : [];
      -                        parts.splice(dd - 1, 2, ...splin);
      -                        if (parts.length === 0)
      -                            parts.push('');
      -                        dd -= 2;
      -                    }
      -                }
      -            }
      -        } while (didSomething);
      -        return globParts;
      -    }
      -    // second phase: multi-pattern dedupes
      -    // {
      /*/,
      /

      /} ->

      /*/
      -    // {
      /,
      /} -> 
      /
      -    // {
      /**/,
      /} -> 
      /**/
      -    //
      -    // {
      /**/,
      /**/

      /} ->

      /**/
      -    // ^-- not valid because ** doens't follow symlinks
      -    secondPhasePreProcess(globParts) {
      -        for (let i = 0; i < globParts.length - 1; i++) {
      -            for (let j = i + 1; j < globParts.length; j++) {
      -                const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);
      -                if (!matched)
      -                    continue;
      -                globParts[i] = matched;
      -                globParts[j] = [];
      -            }
      -        }
      -        return globParts.filter(gs => gs.length);
      -    }
      -    partsMatch(a, b, emptyGSMatch = false) {
      -        let ai = 0;
      -        let bi = 0;
      -        let result = [];
      -        let which = '';
      -        while (ai < a.length && bi < b.length) {
      -            if (a[ai] === b[bi]) {
      -                result.push(which === 'b' ? b[bi] : a[ai]);
      -                ai++;
      -                bi++;
      -            }
      -            else if (emptyGSMatch && a[ai] === '**' && b[bi] === a[ai + 1]) {
      -                result.push(a[ai]);
      -                ai++;
      -            }
      -            else if (emptyGSMatch && b[bi] === '**' && a[ai] === b[bi + 1]) {
      -                result.push(b[bi]);
      -                bi++;
      -            }
      -            else if (a[ai] === '*' &&
      -                b[bi] &&
      -                (this.options.dot || !b[bi].startsWith('.')) &&
      -                b[bi] !== '**') {
      -                if (which === 'b')
      -                    return false;
      -                which = 'a';
      -                result.push(a[ai]);
      -                ai++;
      -                bi++;
      -            }
      -            else if (b[bi] === '*' &&
      -                a[ai] &&
      -                (this.options.dot || !a[ai].startsWith('.')) &&
      -                a[ai] !== '**') {
      -                if (which === 'a')
      -                    return false;
      -                which = 'b';
      -                result.push(b[bi]);
      -                ai++;
      -                bi++;
      -            }
      -            else {
      -                return false;
      -            }
      -        }
      -        // if we fall out of the loop, it means they two are identical
      -        // as long as their lengths match
      -        return a.length === b.length && result;
      -    }
      -    parseNegate() {
      -        if (this.nonegate)
      -            return;
      -        const pattern = this.pattern;
      -        let negate = false;
      -        let negateOffset = 0;
      -        for (let i = 0; i < pattern.length && pattern.charAt(i) === '!'; i++) {
      -            negate = !negate;
      -            negateOffset++;
      -        }
      -        if (negateOffset)
      -            this.pattern = pattern.slice(negateOffset);
      -        this.negate = negate;
      -    }
      -    // set partial to true to test if, for example,
      -    // "/a/b" matches the start of "/*/b/*/d"
      -    // Partial means, if you run out of file before you run
      -    // out of pattern, then that's fine, as long as all
      -    // the parts match.
      -    matchOne(file, pattern, partial = false) {
      -        const options = this.options;
      -        // UNC paths like //?/X:/... can match X:/... and vice versa
      -        // Drive letters in absolute drive or unc paths are always compared
      -        // case-insensitively.
      -        if (this.isWindows) {
      -            const fileDrive = typeof file[0] === 'string' && /^[a-z]:$/i.test(file[0]);
      -            const fileUNC = !fileDrive &&
      -                file[0] === '' &&
      -                file[1] === '' &&
      -                file[2] === '?' &&
      -                /^[a-z]:$/i.test(file[3]);
      -            const patternDrive = typeof pattern[0] === 'string' && /^[a-z]:$/i.test(pattern[0]);
      -            const patternUNC = !patternDrive &&
      -                pattern[0] === '' &&
      -                pattern[1] === '' &&
      -                pattern[2] === '?' &&
      -                typeof pattern[3] === 'string' &&
      -                /^[a-z]:$/i.test(pattern[3]);
      -            const fdi = fileUNC ? 3 : fileDrive ? 0 : undefined;
      -            const pdi = patternUNC ? 3 : patternDrive ? 0 : undefined;
      -            if (typeof fdi === 'number' && typeof pdi === 'number') {
      -                const [fd, pd] = [file[fdi], pattern[pdi]];
      -                if (fd.toLowerCase() === pd.toLowerCase()) {
      -                    pattern[pdi] = fd;
      -                    if (pdi > fdi) {
      -                        pattern = pattern.slice(pdi);
      -                    }
      -                    else if (fdi > pdi) {
      -                        file = file.slice(fdi);
      -                    }
      -                }
      -            }
      -        }
      -        // resolve and reduce . and .. portions in the file as well.
      -        // dont' need to do the second phase, because it's only one string[]
      -        const { optimizationLevel = 1 } = this.options;
      -        if (optimizationLevel >= 2) {
      -            file = this.levelTwoFileOptimize(file);
      -        }
      -        this.debug('matchOne', this, { file, pattern });
      -        this.debug('matchOne', file.length, pattern.length);
      -        for (var fi = 0, pi = 0, fl = file.length, pl = pattern.length; fi < fl && pi < pl; fi++, pi++) {
      -            this.debug('matchOne loop');
      -            var p = pattern[pi];
      -            var f = file[fi];
      -            this.debug(pattern, p, f);
      -            // should be impossible.
      -            // some invalid regexp stuff in the set.
      -            /* c8 ignore start */
      -            if (p === false) {
      -                return false;
      -            }
      -            /* c8 ignore stop */
      -            if (p === GLOBSTAR) {
      -                this.debug('GLOBSTAR', [pattern, p, f]);
      -                // "**"
      -                // a/**/b/**/c would match the following:
      -                // a/b/x/y/z/c
      -                // a/x/y/z/b/c
      -                // a/b/x/b/x/c
      -                // a/b/c
      -                // To do this, take the rest of the pattern after
      -                // the **, and see if it would match the file remainder.
      -                // If so, return success.
      -                // If not, the ** "swallows" a segment, and try again.
      -                // This is recursively awful.
      -                //
      -                // a/**/b/**/c matching a/b/x/y/z/c
      -                // - a matches a
      -                // - doublestar
      -                //   - matchOne(b/x/y/z/c, b/**/c)
      -                //     - b matches b
      -                //     - doublestar
      -                //       - matchOne(x/y/z/c, c) -> no
      -                //       - matchOne(y/z/c, c) -> no
      -                //       - matchOne(z/c, c) -> no
      -                //       - matchOne(c, c) yes, hit
      -                var fr = fi;
      -                var pr = pi + 1;
      -                if (pr === pl) {
      -                    this.debug('** at the end');
      -                    // a ** at the end will just swallow the rest.
      -                    // We have found a match.
      -                    // however, it will not swallow /.x, unless
      -                    // options.dot is set.
      -                    // . and .. are *never* matched by **, for explosively
      -                    // exponential reasons.
      -                    for (; fi < fl; fi++) {
      -                        if (file[fi] === '.' ||
      -                            file[fi] === '..' ||
      -                            (!options.dot && file[fi].charAt(0) === '.'))
      -                            return false;
      -                    }
      -                    return true;
      -                }
      -                // ok, let's see if we can swallow whatever we can.
      -                while (fr < fl) {
      -                    var swallowee = file[fr];
      -                    this.debug('\nglobstar while', file, fr, pattern, pr, swallowee);
      -                    // XXX remove this slice.  Just pass the start index.
      -                    if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {
      -                        this.debug('globstar found match!', fr, fl, swallowee);
      -                        // found a match.
      -                        return true;
      -                    }
      -                    else {
      -                        // can't swallow "." or ".." ever.
      -                        // can only swallow ".foo" when explicitly asked.
      -                        if (swallowee === '.' ||
      -                            swallowee === '..' ||
      -                            (!options.dot && swallowee.charAt(0) === '.')) {
      -                            this.debug('dot detected!', file, fr, pattern, pr);
      -                            break;
      -                        }
      -                        // ** swallows a segment, and continue.
      -                        this.debug('globstar swallow a segment, and continue');
      -                        fr++;
      -                    }
      -                }
      -                // no match was found.
      -                // However, in partial mode, we can't say this is necessarily over.
      -                /* c8 ignore start */
      -                if (partial) {
      -                    // ran out of file
      -                    this.debug('\n>>> no match, partial?', file, fr, pattern, pr);
      -                    if (fr === fl) {
      -                        return true;
      -                    }
      -                }
      -                /* c8 ignore stop */
      -                return false;
      -            }
      -            // something other than **
      -            // non-magic patterns just have to match exactly
      -            // patterns with magic have been turned into regexps.
      -            let hit;
      -            if (typeof p === 'string') {
      -                hit = f === p;
      -                this.debug('string match', p, f, hit);
      -            }
      -            else {
      -                hit = p.test(f);
      -                this.debug('pattern match', p, f, hit);
      -            }
      -            if (!hit)
      -                return false;
      -        }
      -        // Note: ending in / means that we'll get a final ""
      -        // at the end of the pattern.  This can only match a
      -        // corresponding "" at the end of the file.
      -        // If the file ends in /, then it can only match a
      -        // a pattern that ends in /, unless the pattern just
      -        // doesn't have any more for it. But, a/b/ should *not*
      -        // match "a/b/*", even though "" matches against the
      -        // [^/]*? pattern, except in partial mode, where it might
      -        // simply not be reached yet.
      -        // However, a/b/ should still satisfy a/*
      -        // now either we fell off the end of the pattern, or we're done.
      -        if (fi === fl && pi === pl) {
      -            // ran out of pattern and filename at the same time.
      -            // an exact hit!
      -            return true;
      -        }
      -        else if (fi === fl) {
      -            // ran out of file, but still had pattern left.
      -            // this is ok if we're doing the match as part of
      -            // a glob fs traversal.
      -            return partial;
      -        }
      -        else if (pi === pl) {
      -            // ran out of pattern, still have file left.
      -            // this is only acceptable if we're on the very last
      -            // empty segment of a file with a trailing slash.
      -            // a/* should match a/b/
      -            return fi === fl - 1 && file[fi] === '';
      -            /* c8 ignore start */
      -        }
      -        else {
      -            // should be unreachable.
      -            throw new Error('wtf?');
      -        }
      -        /* c8 ignore stop */
      -    }
      -    braceExpand() {
      -        return braceExpand(this.pattern, this.options);
      -    }
      -    parse(pattern) {
      -        assertValidPattern(pattern);
      -        const options = this.options;
      -        // shortcuts
      -        if (pattern === '**')
      -            return GLOBSTAR;
      -        if (pattern === '')
      -            return '';
      -        // far and away, the most common glob pattern parts are
      -        // *, *.*, and *.  Add a fast check method for those.
      -        let m;
      -        let fastTest = null;
      -        if ((m = pattern.match(starRE))) {
      -            fastTest = options.dot ? starTestDot : starTest;
      -        }
      -        else if ((m = pattern.match(starDotExtRE))) {
      -            fastTest = (options.nocase
      -                ? options.dot
      -                    ? starDotExtTestNocaseDot
      -                    : starDotExtTestNocase
      -                : options.dot
      -                    ? starDotExtTestDot
      -                    : starDotExtTest)(m[1]);
      -        }
      -        else if ((m = pattern.match(qmarksRE))) {
      -            fastTest = (options.nocase
      -                ? options.dot
      -                    ? qmarksTestNocaseDot
      -                    : qmarksTestNocase
      -                : options.dot
      -                    ? qmarksTestDot
      -                    : qmarksTest)(m);
      -        }
      -        else if ((m = pattern.match(starDotStarRE))) {
      -            fastTest = options.dot ? starDotStarTestDot : starDotStarTest;
      -        }
      -        else if ((m = pattern.match(dotStarRE))) {
      -            fastTest = dotStarTest;
      -        }
      -        const re = AST.fromGlob(pattern, this.options).toMMPattern();
      -        return fastTest ? Object.assign(re, { test: fastTest }) : re;
      -    }
      -    makeRe() {
      -        if (this.regexp || this.regexp === false)
      -            return this.regexp;
      -        // at this point, this.set is a 2d array of partial
      -        // pattern strings, or "**".
      -        //
      -        // It's better to use .match().  This function shouldn't
      -        // be used, really, but it's pretty convenient sometimes,
      -        // when you just want to work with a regex.
      -        const set = this.set;
      -        if (!set.length) {
      -            this.regexp = false;
      -            return this.regexp;
      -        }
      -        const options = this.options;
      -        const twoStar = options.noglobstar
      -            ? star
      -            : options.dot
      -                ? twoStarDot
      -                : twoStarNoDot;
      -        const flags = new Set(options.nocase ? ['i'] : []);
      -        // regexpify non-globstar patterns
      -        // if ** is only item, then we just do one twoStar
      -        // if ** is first, and there are more, prepend (\/|twoStar\/)? to next
      -        // if ** is last, append (\/twoStar|) to previous
      -        // if ** is in the middle, append (\/|\/twoStar\/) to previous
      -        // then filter out GLOBSTAR symbols
      -        let re = set
      -            .map(pattern => {
      -            const pp = pattern.map(p => {
      -                if (p instanceof RegExp) {
      -                    for (const f of p.flags.split(''))
      -                        flags.add(f);
      -                }
      -                return typeof p === 'string'
      -                    ? regExpEscape(p)
      -                    : p === GLOBSTAR
      -                        ? GLOBSTAR
      -                        : p._src;
      -            });
      -            pp.forEach((p, i) => {
      -                const next = pp[i + 1];
      -                const prev = pp[i - 1];
      -                if (p !== GLOBSTAR || prev === GLOBSTAR) {
      -                    return;
      -                }
      -                if (prev === undefined) {
      -                    if (next !== undefined && next !== GLOBSTAR) {
      -                        pp[i + 1] = '(?:\\/|' + twoStar + '\\/)?' + next;
      -                    }
      -                    else {
      -                        pp[i] = twoStar;
      -                    }
      -                }
      -                else if (next === undefined) {
      -                    pp[i - 1] = prev + '(?:\\/|' + twoStar + ')?';
      -                }
      -                else if (next !== GLOBSTAR) {
      -                    pp[i - 1] = prev + '(?:\\/|\\/' + twoStar + '\\/)' + next;
      -                    pp[i + 1] = GLOBSTAR;
      -                }
      -            });
      -            return pp.filter(p => p !== GLOBSTAR).join('/');
      -        })
      -            .join('|');
      -        // need to wrap in parens if we had more than one thing with |,
      -        // otherwise only the first will be anchored to ^ and the last to $
      -        const [open, close] = set.length > 1 ? ['(?:', ')'] : ['', ''];
      -        // must match entire pattern
      -        // ending in a * or ** will make it less strict.
      -        re = '^' + open + re + close + '$';
      -        // can match anything, as long as it's not this.
      -        if (this.negate)
      -            re = '^(?!' + re + ').+$';
      -        try {
      -            this.regexp = new RegExp(re, [...flags].join(''));
      -            /* c8 ignore start */
      -        }
      -        catch (ex) {
      -            // should be impossible
      -            this.regexp = false;
      -        }
      -        /* c8 ignore stop */
      -        return this.regexp;
      -    }
      -    slashSplit(p) {
      -        // if p starts with // on windows, we preserve that
      -        // so that UNC paths aren't broken.  Otherwise, any number of
      -        // / characters are coalesced into one, unless
      -        // preserveMultipleSlashes is set to true.
      -        if (this.preserveMultipleSlashes) {
      -            return p.split('/');
      -        }
      -        else if (this.isWindows && /^\/\/[^\/]+/.test(p)) {
      -            // add an extra '' for the one we lose
      -            return ['', ...p.split(/\/+/)];
      -        }
      -        else {
      -            return p.split(/\/+/);
      -        }
      -    }
      -    match(f, partial = this.partial) {
      -        this.debug('match', f, this.pattern);
      -        // short-circuit in the case of busted things.
      -        // comments, etc.
      -        if (this.comment) {
      -            return false;
      -        }
      -        if (this.empty) {
      -            return f === '';
      -        }
      -        if (f === '/' && partial) {
      -            return true;
      -        }
      -        const options = this.options;
      -        // windows: need to use /, not \
      -        if (this.isWindows) {
      -            f = f.split('\\').join('/');
      -        }
      -        // treat the test path as a set of pathparts.
      -        const ff = this.slashSplit(f);
      -        this.debug(this.pattern, 'split', ff);
      -        // just ONE of the pattern sets in this.set needs to match
      -        // in order for it to be valid.  If negating, then just one
      -        // match means that we have failed.
      -        // Either way, return on the first hit.
      -        const set = this.set;
      -        this.debug(this.pattern, 'set', set);
      -        // Find the basename of the path by looking for the last non-empty segment
      -        let filename = ff[ff.length - 1];
      -        if (!filename) {
      -            for (let i = ff.length - 2; !filename && i >= 0; i--) {
      -                filename = ff[i];
      -            }
      -        }
      -        for (let i = 0; i < set.length; i++) {
      -            const pattern = set[i];
      -            let file = ff;
      -            if (options.matchBase && pattern.length === 1) {
      -                file = [filename];
      -            }
      -            const hit = this.matchOne(file, pattern, partial);
      -            if (hit) {
      -                if (options.flipNegate) {
      -                    return true;
      -                }
      -                return !this.negate;
      -            }
      -        }
      -        // didn't get any hits.  this is success if it's a negative
      -        // pattern, failure otherwise.
      -        if (options.flipNegate) {
      -            return false;
      -        }
      -        return this.negate;
      -    }
      -    static defaults(def) {
      -        return minimatch.defaults(def).Minimatch;
      -    }
      -}
      -/* c8 ignore start */
      -export { AST } from './ast.js';
      -export { escape } from './escape.js';
      -export { unescape } from './unescape.js';
      -/* c8 ignore stop */
      -minimatch.AST = AST;
      -minimatch.Minimatch = Minimatch;
      -minimatch.escape = escape;
      -minimatch.unescape = unescape;
      -//# sourceMappingURL=index.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/package.json
      deleted file mode 100644
      index 3dbc1ca591c055..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/package.json
      +++ /dev/null
      @@ -1,3 +0,0 @@
      -{
      -  "type": "module"
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/unescape.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/unescape.js
      deleted file mode 100644
      index 0faf9a2b7306f7..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/dist/mjs/unescape.js
      +++ /dev/null
      @@ -1,20 +0,0 @@
      -/**
      - * Un-escape a string that has been escaped with {@link escape}.
      - *
      - * If the {@link windowsPathsNoEscape} option is used, then square-brace
      - * escapes are removed, but not backslash escapes.  For example, it will turn
      - * the string `'[*]'` into `*`, but it will not turn `'\\*'` into `'*'`,
      - * becuase `\` is a path separator in `windowsPathsNoEscape` mode.
      - *
      - * When `windowsPathsNoEscape` is not set, then both brace escapes and
      - * backslash escapes are removed.
      - *
      - * Slashes (and backslashes in `windowsPathsNoEscape` mode) cannot be escaped
      - * or unescaped.
      - */
      -export const unescape = (s, { windowsPathsNoEscape = false, } = {}) => {
      -    return windowsPathsNoEscape
      -        ? s.replace(/\[([^\/\\])\]/g, '$1')
      -        : s.replace(/((?!\\).|^)\[([^\/\\])\]/g, '$1$2').replace(/\\([^\/])/g, '$1');
      -};
      -//# sourceMappingURL=unescape.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/package.json
      deleted file mode 100644
      index 061c3b9f343306..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch/package.json
      +++ /dev/null
      @@ -1,86 +0,0 @@
      -{
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me)",
      -  "name": "minimatch",
      -  "description": "a glob matcher in javascript",
      -  "version": "9.0.3",
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/isaacs/minimatch.git"
      -  },
      -  "main": "./dist/cjs/index.js",
      -  "module": "./dist/mjs/index.js",
      -  "types": "./dist/cjs/index.d.ts",
      -  "exports": {
      -    ".": {
      -      "import": {
      -        "types": "./dist/mjs/index.d.ts",
      -        "default": "./dist/mjs/index.js"
      -      },
      -      "require": {
      -        "types": "./dist/cjs/index.d.ts",
      -        "default": "./dist/cjs/index.js"
      -      }
      -    }
      -  },
      -  "files": [
      -    "dist"
      -  ],
      -  "scripts": {
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "prepublishOnly": "git push origin --follow-tags",
      -    "preprepare": "rm -rf dist",
      -    "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json",
      -    "postprepare": "bash fixup.sh",
      -    "pretest": "npm run prepare",
      -    "presnap": "npm run prepare",
      -    "test": "c8 tap",
      -    "snap": "c8 tap",
      -    "format": "prettier --write . --loglevel warn",
      -    "benchmark": "node benchmark/index.js",
      -    "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts"
      -  },
      -  "prettier": {
      -    "semi": false,
      -    "printWidth": 80,
      -    "tabWidth": 2,
      -    "useTabs": false,
      -    "singleQuote": true,
      -    "jsxSingleQuote": false,
      -    "bracketSameLine": true,
      -    "arrowParens": "avoid",
      -    "endOfLine": "lf"
      -  },
      -  "engines": {
      -    "node": ">=16 || 14 >=14.17"
      -  },
      -  "dependencies": {
      -    "brace-expansion": "^2.0.1"
      -  },
      -  "devDependencies": {
      -    "@types/brace-expansion": "^1.1.0",
      -    "@types/node": "^18.15.11",
      -    "@types/tap": "^15.0.8",
      -    "c8": "^7.12.0",
      -    "eslint-config-prettier": "^8.6.0",
      -    "mkdirp": "1",
      -    "prettier": "^2.8.2",
      -    "tap": "^16.3.7",
      -    "ts-node": "^10.9.1",
      -    "typedoc": "^0.23.21",
      -    "typescript": "^4.9.3"
      -  },
      -  "tap": {
      -    "coverage": false,
      -    "node-arg": [
      -      "--no-warnings",
      -      "--loader",
      -      "ts-node/esm"
      -    ],
      -    "ts": false
      -  },
      -  "funding": {
      -    "url": "https://github.com/sponsors/isaacs"
      -  },
      -  "license": "ISC"
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/LICENSE
      deleted file mode 100644
      index 97f8e32ed82e4c..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) 2017-2023 npm, Inc., 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/cacache/node_modules/minipass/dist/cjs/index.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/cjs/index.js
      deleted file mode 100644
      index b6cdae8eb514b8..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/cjs/index.js
      +++ /dev/null
      @@ -1,1028 +0,0 @@
      -"use strict";
      -var __importDefault = (this && this.__importDefault) || function (mod) {
      -    return (mod && mod.__esModule) ? mod : { "default": mod };
      -};
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.Minipass = exports.isWritable = exports.isReadable = exports.isStream = void 0;
      -const proc = typeof process === 'object' && process
      -    ? process
      -    : {
      -        stdout: null,
      -        stderr: null,
      -    };
      -const events_1 = require("events");
      -const stream_1 = __importDefault(require("stream"));
      -const string_decoder_1 = require("string_decoder");
      -/**
      - * Return true if the argument is a Minipass stream, Node stream, or something
      - * else that Minipass can interact with.
      - */
      -const isStream = (s) => !!s &&
      -    typeof s === 'object' &&
      -    (s instanceof Minipass ||
      -        s instanceof stream_1.default ||
      -        (0, exports.isReadable)(s) ||
      -        (0, exports.isWritable)(s));
      -exports.isStream = isStream;
      -/**
      - * Return true if the argument is a valid {@link Minipass.Readable}
      - */
      -const isReadable = (s) => !!s &&
      -    typeof s === 'object' &&
      -    s instanceof events_1.EventEmitter &&
      -    typeof s.pipe === 'function' &&
      -    // node core Writable streams have a pipe() method, but it throws
      -    s.pipe !== stream_1.default.Writable.prototype.pipe;
      -exports.isReadable = isReadable;
      -/**
      - * Return true if the argument is a valid {@link Minipass.Writable}
      - */
      -const isWritable = (s) => !!s &&
      -    typeof s === 'object' &&
      -    s instanceof events_1.EventEmitter &&
      -    typeof s.write === 'function' &&
      -    typeof s.end === 'function';
      -exports.isWritable = isWritable;
      -const EOF = Symbol('EOF');
      -const MAYBE_EMIT_END = Symbol('maybeEmitEnd');
      -const EMITTED_END = Symbol('emittedEnd');
      -const EMITTING_END = Symbol('emittingEnd');
      -const EMITTED_ERROR = Symbol('emittedError');
      -const CLOSED = Symbol('closed');
      -const READ = Symbol('read');
      -const FLUSH = Symbol('flush');
      -const FLUSHCHUNK = Symbol('flushChunk');
      -const ENCODING = Symbol('encoding');
      -const DECODER = Symbol('decoder');
      -const FLOWING = Symbol('flowing');
      -const PAUSED = Symbol('paused');
      -const RESUME = Symbol('resume');
      -const BUFFER = Symbol('buffer');
      -const PIPES = Symbol('pipes');
      -const BUFFERLENGTH = Symbol('bufferLength');
      -const BUFFERPUSH = Symbol('bufferPush');
      -const BUFFERSHIFT = Symbol('bufferShift');
      -const OBJECTMODE = Symbol('objectMode');
      -// internal event when stream is destroyed
      -const DESTROYED = Symbol('destroyed');
      -// internal event when stream has an error
      -const ERROR = Symbol('error');
      -const EMITDATA = Symbol('emitData');
      -const EMITEND = Symbol('emitEnd');
      -const EMITEND2 = Symbol('emitEnd2');
      -const ASYNC = Symbol('async');
      -const ABORT = Symbol('abort');
      -const ABORTED = Symbol('aborted');
      -const SIGNAL = Symbol('signal');
      -const DATALISTENERS = Symbol('dataListeners');
      -const DISCARDED = Symbol('discarded');
      -const defer = (fn) => Promise.resolve().then(fn);
      -const nodefer = (fn) => fn();
      -const isEndish = (ev) => ev === 'end' || ev === 'finish' || ev === 'prefinish';
      -const isArrayBufferLike = (b) => b instanceof ArrayBuffer ||
      -    (!!b &&
      -        typeof b === 'object' &&
      -        b.constructor &&
      -        b.constructor.name === 'ArrayBuffer' &&
      -        b.byteLength >= 0);
      -const isArrayBufferView = (b) => !Buffer.isBuffer(b) && ArrayBuffer.isView(b);
      -/**
      - * Internal class representing a pipe to a destination stream.
      - *
      - * @internal
      - */
      -class Pipe {
      -    src;
      -    dest;
      -    opts;
      -    ondrain;
      -    constructor(src, dest, opts) {
      -        this.src = src;
      -        this.dest = dest;
      -        this.opts = opts;
      -        this.ondrain = () => src[RESUME]();
      -        this.dest.on('drain', this.ondrain);
      -    }
      -    unpipe() {
      -        this.dest.removeListener('drain', this.ondrain);
      -    }
      -    // only here for the prototype
      -    /* c8 ignore start */
      -    proxyErrors(_er) { }
      -    /* c8 ignore stop */
      -    end() {
      -        this.unpipe();
      -        if (this.opts.end)
      -            this.dest.end();
      -    }
      -}
      -/**
      - * Internal class representing a pipe to a destination stream where
      - * errors are proxied.
      - *
      - * @internal
      - */
      -class PipeProxyErrors extends Pipe {
      -    unpipe() {
      -        this.src.removeListener('error', this.proxyErrors);
      -        super.unpipe();
      -    }
      -    constructor(src, dest, opts) {
      -        super(src, dest, opts);
      -        this.proxyErrors = er => dest.emit('error', er);
      -        src.on('error', this.proxyErrors);
      -    }
      -}
      -const isObjectModeOptions = (o) => !!o.objectMode;
      -const isEncodingOptions = (o) => !o.objectMode && !!o.encoding && o.encoding !== 'buffer';
      -/**
      - * Main export, the Minipass class
      - *
      - * `RType` is the type of data emitted, defaults to Buffer
      - *
      - * `WType` is the type of data to be written, if RType is buffer or string,
      - * then any {@link Minipass.ContiguousData} is allowed.
      - *
      - * `Events` is the set of event handler signatures that this object
      - * will emit, see {@link Minipass.Events}
      - */
      -class Minipass extends events_1.EventEmitter {
      -    [FLOWING] = false;
      -    [PAUSED] = false;
      -    [PIPES] = [];
      -    [BUFFER] = [];
      -    [OBJECTMODE];
      -    [ENCODING];
      -    [ASYNC];
      -    [DECODER];
      -    [EOF] = false;
      -    [EMITTED_END] = false;
      -    [EMITTING_END] = false;
      -    [CLOSED] = false;
      -    [EMITTED_ERROR] = null;
      -    [BUFFERLENGTH] = 0;
      -    [DESTROYED] = false;
      -    [SIGNAL];
      -    [ABORTED] = false;
      -    [DATALISTENERS] = 0;
      -    [DISCARDED] = false;
      -    /**
      -     * true if the stream can be written
      -     */
      -    writable = true;
      -    /**
      -     * true if the stream can be read
      -     */
      -    readable = true;
      -    /**
      -     * If `RType` is Buffer, then options do not need to be provided.
      -     * Otherwise, an options object must be provided to specify either
      -     * {@link Minipass.SharedOptions.objectMode} or
      -     * {@link Minipass.SharedOptions.encoding}, as appropriate.
      -     */
      -    constructor(...args) {
      -        const options = (args[0] ||
      -            {});
      -        super();
      -        if (options.objectMode && typeof options.encoding === 'string') {
      -            throw new TypeError('Encoding and objectMode may not be used together');
      -        }
      -        if (isObjectModeOptions(options)) {
      -            this[OBJECTMODE] = true;
      -            this[ENCODING] = null;
      -        }
      -        else if (isEncodingOptions(options)) {
      -            this[ENCODING] = options.encoding;
      -            this[OBJECTMODE] = false;
      -        }
      -        else {
      -            this[OBJECTMODE] = false;
      -            this[ENCODING] = null;
      -        }
      -        this[ASYNC] = !!options.async;
      -        this[DECODER] = this[ENCODING]
      -            ? new string_decoder_1.StringDecoder(this[ENCODING])
      -            : null;
      -        //@ts-ignore - private option for debugging and testing
      -        if (options && options.debugExposeBuffer === true) {
      -            Object.defineProperty(this, 'buffer', { get: () => this[BUFFER] });
      -        }
      -        //@ts-ignore - private option for debugging and testing
      -        if (options && options.debugExposePipes === true) {
      -            Object.defineProperty(this, 'pipes', { get: () => this[PIPES] });
      -        }
      -        const { signal } = options;
      -        if (signal) {
      -            this[SIGNAL] = signal;
      -            if (signal.aborted) {
      -                this[ABORT]();
      -            }
      -            else {
      -                signal.addEventListener('abort', () => this[ABORT]());
      -            }
      -        }
      -    }
      -    /**
      -     * The amount of data stored in the buffer waiting to be read.
      -     *
      -     * For Buffer strings, this will be the total byte length.
      -     * For string encoding streams, this will be the string character length,
      -     * according to JavaScript's `string.length` logic.
      -     * For objectMode streams, this is a count of the items waiting to be
      -     * emitted.
      -     */
      -    get bufferLength() {
      -        return this[BUFFERLENGTH];
      -    }
      -    /**
      -     * The `BufferEncoding` currently in use, or `null`
      -     */
      -    get encoding() {
      -        return this[ENCODING];
      -    }
      -    /**
      -     * @deprecated - This is a read only property
      -     */
      -    set encoding(_enc) {
      -        throw new Error('Encoding must be set at instantiation time');
      -    }
      -    /**
      -     * @deprecated - Encoding may only be set at instantiation time
      -     */
      -    setEncoding(_enc) {
      -        throw new Error('Encoding must be set at instantiation time');
      -    }
      -    /**
      -     * True if this is an objectMode stream
      -     */
      -    get objectMode() {
      -        return this[OBJECTMODE];
      -    }
      -    /**
      -     * @deprecated - This is a read-only property
      -     */
      -    set objectMode(_om) {
      -        throw new Error('objectMode must be set at instantiation time');
      -    }
      -    /**
      -     * true if this is an async stream
      -     */
      -    get ['async']() {
      -        return this[ASYNC];
      -    }
      -    /**
      -     * Set to true to make this stream async.
      -     *
      -     * Once set, it cannot be unset, as this would potentially cause incorrect
      -     * behavior.  Ie, a sync stream can be made async, but an async stream
      -     * cannot be safely made sync.
      -     */
      -    set ['async'](a) {
      -        this[ASYNC] = this[ASYNC] || !!a;
      -    }
      -    // drop everything and get out of the flow completely
      -    [ABORT]() {
      -        this[ABORTED] = true;
      -        this.emit('abort', this[SIGNAL]?.reason);
      -        this.destroy(this[SIGNAL]?.reason);
      -    }
      -    /**
      -     * True if the stream has been aborted.
      -     */
      -    get aborted() {
      -        return this[ABORTED];
      -    }
      -    /**
      -     * No-op setter. Stream aborted status is set via the AbortSignal provided
      -     * in the constructor options.
      -     */
      -    set aborted(_) { }
      -    write(chunk, encoding, cb) {
      -        if (this[ABORTED])
      -            return false;
      -        if (this[EOF])
      -            throw new Error('write after end');
      -        if (this[DESTROYED]) {
      -            this.emit('error', Object.assign(new Error('Cannot call write after a stream was destroyed'), { code: 'ERR_STREAM_DESTROYED' }));
      -            return true;
      -        }
      -        if (typeof encoding === 'function') {
      -            cb = encoding;
      -            encoding = 'utf8';
      -        }
      -        if (!encoding)
      -            encoding = 'utf8';
      -        const fn = this[ASYNC] ? defer : nodefer;
      -        // convert array buffers and typed array views into buffers
      -        // at some point in the future, we may want to do the opposite!
      -        // leave strings and buffers as-is
      -        // anything is only allowed if in object mode, so throw
      -        if (!this[OBJECTMODE] && !Buffer.isBuffer(chunk)) {
      -            if (isArrayBufferView(chunk)) {
      -                //@ts-ignore - sinful unsafe type changing
      -                chunk = Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength);
      -            }
      -            else if (isArrayBufferLike(chunk)) {
      -                //@ts-ignore - sinful unsafe type changing
      -                chunk = Buffer.from(chunk);
      -            }
      -            else if (typeof chunk !== 'string') {
      -                throw new Error('Non-contiguous data written to non-objectMode stream');
      -            }
      -        }
      -        // handle object mode up front, since it's simpler
      -        // this yields better performance, fewer checks later.
      -        if (this[OBJECTMODE]) {
      -            // maybe impossible?
      -            /* c8 ignore start */
      -            if (this[FLOWING] && this[BUFFERLENGTH] !== 0)
      -                this[FLUSH](true);
      -            /* c8 ignore stop */
      -            if (this[FLOWING])
      -                this.emit('data', chunk);
      -            else
      -                this[BUFFERPUSH](chunk);
      -            if (this[BUFFERLENGTH] !== 0)
      -                this.emit('readable');
      -            if (cb)
      -                fn(cb);
      -            return this[FLOWING];
      -        }
      -        // at this point the chunk is a buffer or string
      -        // don't buffer it up or send it to the decoder
      -        if (!chunk.length) {
      -            if (this[BUFFERLENGTH] !== 0)
      -                this.emit('readable');
      -            if (cb)
      -                fn(cb);
      -            return this[FLOWING];
      -        }
      -        // fast-path writing strings of same encoding to a stream with
      -        // an empty buffer, skipping the buffer/decoder dance
      -        if (typeof chunk === 'string' &&
      -            // unless it is a string already ready for us to use
      -            !(encoding === this[ENCODING] && !this[DECODER]?.lastNeed)) {
      -            //@ts-ignore - sinful unsafe type change
      -            chunk = Buffer.from(chunk, encoding);
      -        }
      -        if (Buffer.isBuffer(chunk) && this[ENCODING]) {
      -            //@ts-ignore - sinful unsafe type change
      -            chunk = this[DECODER].write(chunk);
      -        }
      -        // Note: flushing CAN potentially switch us into not-flowing mode
      -        if (this[FLOWING] && this[BUFFERLENGTH] !== 0)
      -            this[FLUSH](true);
      -        if (this[FLOWING])
      -            this.emit('data', chunk);
      -        else
      -            this[BUFFERPUSH](chunk);
      -        if (this[BUFFERLENGTH] !== 0)
      -            this.emit('readable');
      -        if (cb)
      -            fn(cb);
      -        return this[FLOWING];
      -    }
      -    /**
      -     * Low-level explicit read method.
      -     *
      -     * In objectMode, the argument is ignored, and one item is returned if
      -     * available.
      -     *
      -     * `n` is the number of bytes (or in the case of encoding streams,
      -     * characters) to consume. If `n` is not provided, then the entire buffer
      -     * is returned, or `null` is returned if no data is available.
      -     *
      -     * If `n` is greater that the amount of data in the internal buffer,
      -     * then `null` is returned.
      -     */
      -    read(n) {
      -        if (this[DESTROYED])
      -            return null;
      -        this[DISCARDED] = false;
      -        if (this[BUFFERLENGTH] === 0 ||
      -            n === 0 ||
      -            (n && n > this[BUFFERLENGTH])) {
      -            this[MAYBE_EMIT_END]();
      -            return null;
      -        }
      -        if (this[OBJECTMODE])
      -            n = null;
      -        if (this[BUFFER].length > 1 && !this[OBJECTMODE]) {
      -            // not object mode, so if we have an encoding, then RType is string
      -            // otherwise, must be Buffer
      -            this[BUFFER] = [
      -                (this[ENCODING]
      -                    ? this[BUFFER].join('')
      -                    : Buffer.concat(this[BUFFER], this[BUFFERLENGTH])),
      -            ];
      -        }
      -        const ret = this[READ](n || null, this[BUFFER][0]);
      -        this[MAYBE_EMIT_END]();
      -        return ret;
      -    }
      -    [READ](n, chunk) {
      -        if (this[OBJECTMODE])
      -            this[BUFFERSHIFT]();
      -        else {
      -            const c = chunk;
      -            if (n === c.length || n === null)
      -                this[BUFFERSHIFT]();
      -            else if (typeof c === 'string') {
      -                this[BUFFER][0] = c.slice(n);
      -                chunk = c.slice(0, n);
      -                this[BUFFERLENGTH] -= n;
      -            }
      -            else {
      -                this[BUFFER][0] = c.subarray(n);
      -                chunk = c.subarray(0, n);
      -                this[BUFFERLENGTH] -= n;
      -            }
      -        }
      -        this.emit('data', chunk);
      -        if (!this[BUFFER].length && !this[EOF])
      -            this.emit('drain');
      -        return chunk;
      -    }
      -    end(chunk, encoding, cb) {
      -        if (typeof chunk === 'function') {
      -            cb = chunk;
      -            chunk = undefined;
      -        }
      -        if (typeof encoding === 'function') {
      -            cb = encoding;
      -            encoding = 'utf8';
      -        }
      -        if (chunk !== undefined)
      -            this.write(chunk, encoding);
      -        if (cb)
      -            this.once('end', cb);
      -        this[EOF] = true;
      -        this.writable = false;
      -        // if we haven't written anything, then go ahead and emit,
      -        // even if we're not reading.
      -        // we'll re-emit if a new 'end' listener is added anyway.
      -        // This makes MP more suitable to write-only use cases.
      -        if (this[FLOWING] || !this[PAUSED])
      -            this[MAYBE_EMIT_END]();
      -        return this;
      -    }
      -    // don't let the internal resume be overwritten
      -    [RESUME]() {
      -        if (this[DESTROYED])
      -            return;
      -        if (!this[DATALISTENERS] && !this[PIPES].length) {
      -            this[DISCARDED] = true;
      -        }
      -        this[PAUSED] = false;
      -        this[FLOWING] = true;
      -        this.emit('resume');
      -        if (this[BUFFER].length)
      -            this[FLUSH]();
      -        else if (this[EOF])
      -            this[MAYBE_EMIT_END]();
      -        else
      -            this.emit('drain');
      -    }
      -    /**
      -     * Resume the stream if it is currently in a paused state
      -     *
      -     * If called when there are no pipe destinations or `data` event listeners,
      -     * this will place the stream in a "discarded" state, where all data will
      -     * be thrown away. The discarded state is removed if a pipe destination or
      -     * data handler is added, if pause() is called, or if any synchronous or
      -     * asynchronous iteration is started.
      -     */
      -    resume() {
      -        return this[RESUME]();
      -    }
      -    /**
      -     * Pause the stream
      -     */
      -    pause() {
      -        this[FLOWING] = false;
      -        this[PAUSED] = true;
      -        this[DISCARDED] = false;
      -    }
      -    /**
      -     * true if the stream has been forcibly destroyed
      -     */
      -    get destroyed() {
      -        return this[DESTROYED];
      -    }
      -    /**
      -     * true if the stream is currently in a flowing state, meaning that
      -     * any writes will be immediately emitted.
      -     */
      -    get flowing() {
      -        return this[FLOWING];
      -    }
      -    /**
      -     * true if the stream is currently in a paused state
      -     */
      -    get paused() {
      -        return this[PAUSED];
      -    }
      -    [BUFFERPUSH](chunk) {
      -        if (this[OBJECTMODE])
      -            this[BUFFERLENGTH] += 1;
      -        else
      -            this[BUFFERLENGTH] += chunk.length;
      -        this[BUFFER].push(chunk);
      -    }
      -    [BUFFERSHIFT]() {
      -        if (this[OBJECTMODE])
      -            this[BUFFERLENGTH] -= 1;
      -        else
      -            this[BUFFERLENGTH] -= this[BUFFER][0].length;
      -        return this[BUFFER].shift();
      -    }
      -    [FLUSH](noDrain = false) {
      -        do { } while (this[FLUSHCHUNK](this[BUFFERSHIFT]()) &&
      -            this[BUFFER].length);
      -        if (!noDrain && !this[BUFFER].length && !this[EOF])
      -            this.emit('drain');
      -    }
      -    [FLUSHCHUNK](chunk) {
      -        this.emit('data', chunk);
      -        return this[FLOWING];
      -    }
      -    /**
      -     * Pipe all data emitted by this stream into the destination provided.
      -     *
      -     * Triggers the flow of data.
      -     */
      -    pipe(dest, opts) {
      -        if (this[DESTROYED])
      -            return dest;
      -        this[DISCARDED] = false;
      -        const ended = this[EMITTED_END];
      -        opts = opts || {};
      -        if (dest === proc.stdout || dest === proc.stderr)
      -            opts.end = false;
      -        else
      -            opts.end = opts.end !== false;
      -        opts.proxyErrors = !!opts.proxyErrors;
      -        // piping an ended stream ends immediately
      -        if (ended) {
      -            if (opts.end)
      -                dest.end();
      -        }
      -        else {
      -            // "as" here just ignores the WType, which pipes don't care about,
      -            // since they're only consuming from us, and writing to the dest
      -            this[PIPES].push(!opts.proxyErrors
      -                ? new Pipe(this, dest, opts)
      -                : new PipeProxyErrors(this, dest, opts));
      -            if (this[ASYNC])
      -                defer(() => this[RESUME]());
      -            else
      -                this[RESUME]();
      -        }
      -        return dest;
      -    }
      -    /**
      -     * Fully unhook a piped destination stream.
      -     *
      -     * If the destination stream was the only consumer of this stream (ie,
      -     * there are no other piped destinations or `'data'` event listeners)
      -     * then the flow of data will stop until there is another consumer or
      -     * {@link Minipass#resume} is explicitly called.
      -     */
      -    unpipe(dest) {
      -        const p = this[PIPES].find(p => p.dest === dest);
      -        if (p) {
      -            if (this[PIPES].length === 1) {
      -                if (this[FLOWING] && this[DATALISTENERS] === 0) {
      -                    this[FLOWING] = false;
      -                }
      -                this[PIPES] = [];
      -            }
      -            else
      -                this[PIPES].splice(this[PIPES].indexOf(p), 1);
      -            p.unpipe();
      -        }
      -    }
      -    /**
      -     * Alias for {@link Minipass#on}
      -     */
      -    addListener(ev, handler) {
      -        return this.on(ev, handler);
      -    }
      -    /**
      -     * Mostly identical to `EventEmitter.on`, with the following
      -     * behavior differences to prevent data loss and unnecessary hangs:
      -     *
      -     * - Adding a 'data' event handler will trigger the flow of data
      -     *
      -     * - Adding a 'readable' event handler when there is data waiting to be read
      -     *   will cause 'readable' to be emitted immediately.
      -     *
      -     * - Adding an 'endish' event handler ('end', 'finish', etc.) which has
      -     *   already passed will cause the event to be emitted immediately and all
      -     *   handlers removed.
      -     *
      -     * - Adding an 'error' event handler after an error has been emitted will
      -     *   cause the event to be re-emitted immediately with the error previously
      -     *   raised.
      -     */
      -    on(ev, handler) {
      -        const ret = super.on(ev, handler);
      -        if (ev === 'data') {
      -            this[DISCARDED] = false;
      -            this[DATALISTENERS]++;
      -            if (!this[PIPES].length && !this[FLOWING]) {
      -                this[RESUME]();
      -            }
      -        }
      -        else if (ev === 'readable' && this[BUFFERLENGTH] !== 0) {
      -            super.emit('readable');
      -        }
      -        else if (isEndish(ev) && this[EMITTED_END]) {
      -            super.emit(ev);
      -            this.removeAllListeners(ev);
      -        }
      -        else if (ev === 'error' && this[EMITTED_ERROR]) {
      -            const h = handler;
      -            if (this[ASYNC])
      -                defer(() => h.call(this, this[EMITTED_ERROR]));
      -            else
      -                h.call(this, this[EMITTED_ERROR]);
      -        }
      -        return ret;
      -    }
      -    /**
      -     * Alias for {@link Minipass#off}
      -     */
      -    removeListener(ev, handler) {
      -        return this.off(ev, handler);
      -    }
      -    /**
      -     * Mostly identical to `EventEmitter.off`
      -     *
      -     * If a 'data' event handler is removed, and it was the last consumer
      -     * (ie, there are no pipe destinations or other 'data' event listeners),
      -     * then the flow of data will stop until there is another consumer or
      -     * {@link Minipass#resume} is explicitly called.
      -     */
      -    off(ev, handler) {
      -        const ret = super.off(ev, handler);
      -        // if we previously had listeners, and now we don't, and we don't
      -        // have any pipes, then stop the flow, unless it's been explicitly
      -        // put in a discarded flowing state via stream.resume().
      -        if (ev === 'data') {
      -            this[DATALISTENERS] = this.listeners('data').length;
      -            if (this[DATALISTENERS] === 0 &&
      -                !this[DISCARDED] &&
      -                !this[PIPES].length) {
      -                this[FLOWING] = false;
      -            }
      -        }
      -        return ret;
      -    }
      -    /**
      -     * Mostly identical to `EventEmitter.removeAllListeners`
      -     *
      -     * If all 'data' event handlers are removed, and they were the last consumer
      -     * (ie, there are no pipe destinations), then the flow of data will stop
      -     * until there is another consumer or {@link Minipass#resume} is explicitly
      -     * called.
      -     */
      -    removeAllListeners(ev) {
      -        const ret = super.removeAllListeners(ev);
      -        if (ev === 'data' || ev === undefined) {
      -            this[DATALISTENERS] = 0;
      -            if (!this[DISCARDED] && !this[PIPES].length) {
      -                this[FLOWING] = false;
      -            }
      -        }
      -        return ret;
      -    }
      -    /**
      -     * true if the 'end' event has been emitted
      -     */
      -    get emittedEnd() {
      -        return this[EMITTED_END];
      -    }
      -    [MAYBE_EMIT_END]() {
      -        if (!this[EMITTING_END] &&
      -            !this[EMITTED_END] &&
      -            !this[DESTROYED] &&
      -            this[BUFFER].length === 0 &&
      -            this[EOF]) {
      -            this[EMITTING_END] = true;
      -            this.emit('end');
      -            this.emit('prefinish');
      -            this.emit('finish');
      -            if (this[CLOSED])
      -                this.emit('close');
      -            this[EMITTING_END] = false;
      -        }
      -    }
      -    /**
      -     * Mostly identical to `EventEmitter.emit`, with the following
      -     * behavior differences to prevent data loss and unnecessary hangs:
      -     *
      -     * If the stream has been destroyed, and the event is something other
      -     * than 'close' or 'error', then `false` is returned and no handlers
      -     * are called.
      -     *
      -     * If the event is 'end', and has already been emitted, then the event
      -     * is ignored. If the stream is in a paused or non-flowing state, then
      -     * the event will be deferred until data flow resumes. If the stream is
      -     * async, then handlers will be called on the next tick rather than
      -     * immediately.
      -     *
      -     * If the event is 'close', and 'end' has not yet been emitted, then
      -     * the event will be deferred until after 'end' is emitted.
      -     *
      -     * If the event is 'error', and an AbortSignal was provided for the stream,
      -     * and there are no listeners, then the event is ignored, matching the
      -     * behavior of node core streams in the presense of an AbortSignal.
      -     *
      -     * If the event is 'finish' or 'prefinish', then all listeners will be
      -     * removed after emitting the event, to prevent double-firing.
      -     */
      -    emit(ev, ...args) {
      -        const data = args[0];
      -        // error and close are only events allowed after calling destroy()
      -        if (ev !== 'error' &&
      -            ev !== 'close' &&
      -            ev !== DESTROYED &&
      -            this[DESTROYED]) {
      -            return false;
      -        }
      -        else if (ev === 'data') {
      -            return !this[OBJECTMODE] && !data
      -                ? false
      -                : this[ASYNC]
      -                    ? (defer(() => this[EMITDATA](data)), true)
      -                    : this[EMITDATA](data);
      -        }
      -        else if (ev === 'end') {
      -            return this[EMITEND]();
      -        }
      -        else if (ev === 'close') {
      -            this[CLOSED] = true;
      -            // don't emit close before 'end' and 'finish'
      -            if (!this[EMITTED_END] && !this[DESTROYED])
      -                return false;
      -            const ret = super.emit('close');
      -            this.removeAllListeners('close');
      -            return ret;
      -        }
      -        else if (ev === 'error') {
      -            this[EMITTED_ERROR] = data;
      -            super.emit(ERROR, data);
      -            const ret = !this[SIGNAL] || this.listeners('error').length
      -                ? super.emit('error', data)
      -                : false;
      -            this[MAYBE_EMIT_END]();
      -            return ret;
      -        }
      -        else if (ev === 'resume') {
      -            const ret = super.emit('resume');
      -            this[MAYBE_EMIT_END]();
      -            return ret;
      -        }
      -        else if (ev === 'finish' || ev === 'prefinish') {
      -            const ret = super.emit(ev);
      -            this.removeAllListeners(ev);
      -            return ret;
      -        }
      -        // Some other unknown event
      -        const ret = super.emit(ev, ...args);
      -        this[MAYBE_EMIT_END]();
      -        return ret;
      -    }
      -    [EMITDATA](data) {
      -        for (const p of this[PIPES]) {
      -            if (p.dest.write(data) === false)
      -                this.pause();
      -        }
      -        const ret = this[DISCARDED] ? false : super.emit('data', data);
      -        this[MAYBE_EMIT_END]();
      -        return ret;
      -    }
      -    [EMITEND]() {
      -        if (this[EMITTED_END])
      -            return false;
      -        this[EMITTED_END] = true;
      -        this.readable = false;
      -        return this[ASYNC]
      -            ? (defer(() => this[EMITEND2]()), true)
      -            : this[EMITEND2]();
      -    }
      -    [EMITEND2]() {
      -        if (this[DECODER]) {
      -            const data = this[DECODER].end();
      -            if (data) {
      -                for (const p of this[PIPES]) {
      -                    p.dest.write(data);
      -                }
      -                if (!this[DISCARDED])
      -                    super.emit('data', data);
      -            }
      -        }
      -        for (const p of this[PIPES]) {
      -            p.end();
      -        }
      -        const ret = super.emit('end');
      -        this.removeAllListeners('end');
      -        return ret;
      -    }
      -    /**
      -     * Return a Promise that resolves to an array of all emitted data once
      -     * the stream ends.
      -     */
      -    async collect() {
      -        const buf = Object.assign([], {
      -            dataLength: 0,
      -        });
      -        if (!this[OBJECTMODE])
      -            buf.dataLength = 0;
      -        // set the promise first, in case an error is raised
      -        // by triggering the flow here.
      -        const p = this.promise();
      -        this.on('data', c => {
      -            buf.push(c);
      -            if (!this[OBJECTMODE])
      -                buf.dataLength += c.length;
      -        });
      -        await p;
      -        return buf;
      -    }
      -    /**
      -     * Return a Promise that resolves to the concatenation of all emitted data
      -     * once the stream ends.
      -     *
      -     * Not allowed on objectMode streams.
      -     */
      -    async concat() {
      -        if (this[OBJECTMODE]) {
      -            throw new Error('cannot concat in objectMode');
      -        }
      -        const buf = await this.collect();
      -        return (this[ENCODING]
      -            ? buf.join('')
      -            : Buffer.concat(buf, buf.dataLength));
      -    }
      -    /**
      -     * Return a void Promise that resolves once the stream ends.
      -     */
      -    async promise() {
      -        return new Promise((resolve, reject) => {
      -            this.on(DESTROYED, () => reject(new Error('stream destroyed')));
      -            this.on('error', er => reject(er));
      -            this.on('end', () => resolve());
      -        });
      -    }
      -    /**
      -     * Asynchronous `for await of` iteration.
      -     *
      -     * This will continue emitting all chunks until the stream terminates.
      -     */
      -    [Symbol.asyncIterator]() {
      -        // set this up front, in case the consumer doesn't call next()
      -        // right away.
      -        this[DISCARDED] = false;
      -        let stopped = false;
      -        const stop = async () => {
      -            this.pause();
      -            stopped = true;
      -            return { value: undefined, done: true };
      -        };
      -        const next = () => {
      -            if (stopped)
      -                return stop();
      -            const res = this.read();
      -            if (res !== null)
      -                return Promise.resolve({ done: false, value: res });
      -            if (this[EOF])
      -                return stop();
      -            let resolve;
      -            let reject;
      -            const onerr = (er) => {
      -                this.off('data', ondata);
      -                this.off('end', onend);
      -                this.off(DESTROYED, ondestroy);
      -                stop();
      -                reject(er);
      -            };
      -            const ondata = (value) => {
      -                this.off('error', onerr);
      -                this.off('end', onend);
      -                this.off(DESTROYED, ondestroy);
      -                this.pause();
      -                resolve({ value, done: !!this[EOF] });
      -            };
      -            const onend = () => {
      -                this.off('error', onerr);
      -                this.off('data', ondata);
      -                this.off(DESTROYED, ondestroy);
      -                stop();
      -                resolve({ done: true, value: undefined });
      -            };
      -            const ondestroy = () => onerr(new Error('stream destroyed'));
      -            return new Promise((res, rej) => {
      -                reject = rej;
      -                resolve = res;
      -                this.once(DESTROYED, ondestroy);
      -                this.once('error', onerr);
      -                this.once('end', onend);
      -                this.once('data', ondata);
      -            });
      -        };
      -        return {
      -            next,
      -            throw: stop,
      -            return: stop,
      -            [Symbol.asyncIterator]() {
      -                return this;
      -            },
      -        };
      -    }
      -    /**
      -     * Synchronous `for of` iteration.
      -     *
      -     * The iteration will terminate when the internal buffer runs out, even
      -     * if the stream has not yet terminated.
      -     */
      -    [Symbol.iterator]() {
      -        // set this up front, in case the consumer doesn't call next()
      -        // right away.
      -        this[DISCARDED] = false;
      -        let stopped = false;
      -        const stop = () => {
      -            this.pause();
      -            this.off(ERROR, stop);
      -            this.off(DESTROYED, stop);
      -            this.off('end', stop);
      -            stopped = true;
      -            return { done: true, value: undefined };
      -        };
      -        const next = () => {
      -            if (stopped)
      -                return stop();
      -            const value = this.read();
      -            return value === null ? stop() : { done: false, value };
      -        };
      -        this.once('end', stop);
      -        this.once(ERROR, stop);
      -        this.once(DESTROYED, stop);
      -        return {
      -            next,
      -            throw: stop,
      -            return: stop,
      -            [Symbol.iterator]() {
      -                return this;
      -            },
      -        };
      -    }
      -    /**
      -     * Destroy a stream, preventing it from being used for any further purpose.
      -     *
      -     * If the stream has a `close()` method, then it will be called on
      -     * destruction.
      -     *
      -     * After destruction, any attempt to write data, read data, or emit most
      -     * events will be ignored.
      -     *
      -     * If an error argument is provided, then it will be emitted in an
      -     * 'error' event.
      -     */
      -    destroy(er) {
      -        if (this[DESTROYED]) {
      -            if (er)
      -                this.emit('error', er);
      -            else
      -                this.emit(DESTROYED);
      -            return this;
      -        }
      -        this[DESTROYED] = true;
      -        this[DISCARDED] = true;
      -        // throw away all buffered data, it's never coming out
      -        this[BUFFER].length = 0;
      -        this[BUFFERLENGTH] = 0;
      -        const wc = this;
      -        if (typeof wc.close === 'function' && !this[CLOSED])
      -            wc.close();
      -        if (er)
      -            this.emit('error', er);
      -        // if no error to emit, still reject pending promises
      -        else
      -            this.emit(DESTROYED);
      -        return this;
      -    }
      -    /**
      -     * Alias for {@link isStream}
      -     *
      -     * Former export location, maintained for backwards compatibility.
      -     *
      -     * @deprecated
      -     */
      -    static get isStream() {
      -        return exports.isStream;
      -    }
      -}
      -exports.Minipass = Minipass;
      -//# sourceMappingURL=index.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/cjs/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/cjs/package.json
      deleted file mode 100644
      index 5bbefffbabee39..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/cjs/package.json
      +++ /dev/null
      @@ -1,3 +0,0 @@
      -{
      -  "type": "commonjs"
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/mjs/index.js b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/mjs/index.js
      deleted file mode 100644
      index b65fafbae43a4e..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/mjs/index.js
      +++ /dev/null
      @@ -1,1018 +0,0 @@
      -const proc = typeof process === 'object' && process
      -    ? process
      -    : {
      -        stdout: null,
      -        stderr: null,
      -    };
      -import { EventEmitter } from 'events';
      -import Stream from 'stream';
      -import { StringDecoder } from 'string_decoder';
      -/**
      - * Return true if the argument is a Minipass stream, Node stream, or something
      - * else that Minipass can interact with.
      - */
      -export const isStream = (s) => !!s &&
      -    typeof s === 'object' &&
      -    (s instanceof Minipass ||
      -        s instanceof Stream ||
      -        isReadable(s) ||
      -        isWritable(s));
      -/**
      - * Return true if the argument is a valid {@link Minipass.Readable}
      - */
      -export const isReadable = (s) => !!s &&
      -    typeof s === 'object' &&
      -    s instanceof EventEmitter &&
      -    typeof s.pipe === 'function' &&
      -    // node core Writable streams have a pipe() method, but it throws
      -    s.pipe !== Stream.Writable.prototype.pipe;
      -/**
      - * Return true if the argument is a valid {@link Minipass.Writable}
      - */
      -export const isWritable = (s) => !!s &&
      -    typeof s === 'object' &&
      -    s instanceof EventEmitter &&
      -    typeof s.write === 'function' &&
      -    typeof s.end === 'function';
      -const EOF = Symbol('EOF');
      -const MAYBE_EMIT_END = Symbol('maybeEmitEnd');
      -const EMITTED_END = Symbol('emittedEnd');
      -const EMITTING_END = Symbol('emittingEnd');
      -const EMITTED_ERROR = Symbol('emittedError');
      -const CLOSED = Symbol('closed');
      -const READ = Symbol('read');
      -const FLUSH = Symbol('flush');
      -const FLUSHCHUNK = Symbol('flushChunk');
      -const ENCODING = Symbol('encoding');
      -const DECODER = Symbol('decoder');
      -const FLOWING = Symbol('flowing');
      -const PAUSED = Symbol('paused');
      -const RESUME = Symbol('resume');
      -const BUFFER = Symbol('buffer');
      -const PIPES = Symbol('pipes');
      -const BUFFERLENGTH = Symbol('bufferLength');
      -const BUFFERPUSH = Symbol('bufferPush');
      -const BUFFERSHIFT = Symbol('bufferShift');
      -const OBJECTMODE = Symbol('objectMode');
      -// internal event when stream is destroyed
      -const DESTROYED = Symbol('destroyed');
      -// internal event when stream has an error
      -const ERROR = Symbol('error');
      -const EMITDATA = Symbol('emitData');
      -const EMITEND = Symbol('emitEnd');
      -const EMITEND2 = Symbol('emitEnd2');
      -const ASYNC = Symbol('async');
      -const ABORT = Symbol('abort');
      -const ABORTED = Symbol('aborted');
      -const SIGNAL = Symbol('signal');
      -const DATALISTENERS = Symbol('dataListeners');
      -const DISCARDED = Symbol('discarded');
      -const defer = (fn) => Promise.resolve().then(fn);
      -const nodefer = (fn) => fn();
      -const isEndish = (ev) => ev === 'end' || ev === 'finish' || ev === 'prefinish';
      -const isArrayBufferLike = (b) => b instanceof ArrayBuffer ||
      -    (!!b &&
      -        typeof b === 'object' &&
      -        b.constructor &&
      -        b.constructor.name === 'ArrayBuffer' &&
      -        b.byteLength >= 0);
      -const isArrayBufferView = (b) => !Buffer.isBuffer(b) && ArrayBuffer.isView(b);
      -/**
      - * Internal class representing a pipe to a destination stream.
      - *
      - * @internal
      - */
      -class Pipe {
      -    src;
      -    dest;
      -    opts;
      -    ondrain;
      -    constructor(src, dest, opts) {
      -        this.src = src;
      -        this.dest = dest;
      -        this.opts = opts;
      -        this.ondrain = () => src[RESUME]();
      -        this.dest.on('drain', this.ondrain);
      -    }
      -    unpipe() {
      -        this.dest.removeListener('drain', this.ondrain);
      -    }
      -    // only here for the prototype
      -    /* c8 ignore start */
      -    proxyErrors(_er) { }
      -    /* c8 ignore stop */
      -    end() {
      -        this.unpipe();
      -        if (this.opts.end)
      -            this.dest.end();
      -    }
      -}
      -/**
      - * Internal class representing a pipe to a destination stream where
      - * errors are proxied.
      - *
      - * @internal
      - */
      -class PipeProxyErrors extends Pipe {
      -    unpipe() {
      -        this.src.removeListener('error', this.proxyErrors);
      -        super.unpipe();
      -    }
      -    constructor(src, dest, opts) {
      -        super(src, dest, opts);
      -        this.proxyErrors = er => dest.emit('error', er);
      -        src.on('error', this.proxyErrors);
      -    }
      -}
      -const isObjectModeOptions = (o) => !!o.objectMode;
      -const isEncodingOptions = (o) => !o.objectMode && !!o.encoding && o.encoding !== 'buffer';
      -/**
      - * Main export, the Minipass class
      - *
      - * `RType` is the type of data emitted, defaults to Buffer
      - *
      - * `WType` is the type of data to be written, if RType is buffer or string,
      - * then any {@link Minipass.ContiguousData} is allowed.
      - *
      - * `Events` is the set of event handler signatures that this object
      - * will emit, see {@link Minipass.Events}
      - */
      -export class Minipass extends EventEmitter {
      -    [FLOWING] = false;
      -    [PAUSED] = false;
      -    [PIPES] = [];
      -    [BUFFER] = [];
      -    [OBJECTMODE];
      -    [ENCODING];
      -    [ASYNC];
      -    [DECODER];
      -    [EOF] = false;
      -    [EMITTED_END] = false;
      -    [EMITTING_END] = false;
      -    [CLOSED] = false;
      -    [EMITTED_ERROR] = null;
      -    [BUFFERLENGTH] = 0;
      -    [DESTROYED] = false;
      -    [SIGNAL];
      -    [ABORTED] = false;
      -    [DATALISTENERS] = 0;
      -    [DISCARDED] = false;
      -    /**
      -     * true if the stream can be written
      -     */
      -    writable = true;
      -    /**
      -     * true if the stream can be read
      -     */
      -    readable = true;
      -    /**
      -     * If `RType` is Buffer, then options do not need to be provided.
      -     * Otherwise, an options object must be provided to specify either
      -     * {@link Minipass.SharedOptions.objectMode} or
      -     * {@link Minipass.SharedOptions.encoding}, as appropriate.
      -     */
      -    constructor(...args) {
      -        const options = (args[0] ||
      -            {});
      -        super();
      -        if (options.objectMode && typeof options.encoding === 'string') {
      -            throw new TypeError('Encoding and objectMode may not be used together');
      -        }
      -        if (isObjectModeOptions(options)) {
      -            this[OBJECTMODE] = true;
      -            this[ENCODING] = null;
      -        }
      -        else if (isEncodingOptions(options)) {
      -            this[ENCODING] = options.encoding;
      -            this[OBJECTMODE] = false;
      -        }
      -        else {
      -            this[OBJECTMODE] = false;
      -            this[ENCODING] = null;
      -        }
      -        this[ASYNC] = !!options.async;
      -        this[DECODER] = this[ENCODING]
      -            ? new StringDecoder(this[ENCODING])
      -            : null;
      -        //@ts-ignore - private option for debugging and testing
      -        if (options && options.debugExposeBuffer === true) {
      -            Object.defineProperty(this, 'buffer', { get: () => this[BUFFER] });
      -        }
      -        //@ts-ignore - private option for debugging and testing
      -        if (options && options.debugExposePipes === true) {
      -            Object.defineProperty(this, 'pipes', { get: () => this[PIPES] });
      -        }
      -        const { signal } = options;
      -        if (signal) {
      -            this[SIGNAL] = signal;
      -            if (signal.aborted) {
      -                this[ABORT]();
      -            }
      -            else {
      -                signal.addEventListener('abort', () => this[ABORT]());
      -            }
      -        }
      -    }
      -    /**
      -     * The amount of data stored in the buffer waiting to be read.
      -     *
      -     * For Buffer strings, this will be the total byte length.
      -     * For string encoding streams, this will be the string character length,
      -     * according to JavaScript's `string.length` logic.
      -     * For objectMode streams, this is a count of the items waiting to be
      -     * emitted.
      -     */
      -    get bufferLength() {
      -        return this[BUFFERLENGTH];
      -    }
      -    /**
      -     * The `BufferEncoding` currently in use, or `null`
      -     */
      -    get encoding() {
      -        return this[ENCODING];
      -    }
      -    /**
      -     * @deprecated - This is a read only property
      -     */
      -    set encoding(_enc) {
      -        throw new Error('Encoding must be set at instantiation time');
      -    }
      -    /**
      -     * @deprecated - Encoding may only be set at instantiation time
      -     */
      -    setEncoding(_enc) {
      -        throw new Error('Encoding must be set at instantiation time');
      -    }
      -    /**
      -     * True if this is an objectMode stream
      -     */
      -    get objectMode() {
      -        return this[OBJECTMODE];
      -    }
      -    /**
      -     * @deprecated - This is a read-only property
      -     */
      -    set objectMode(_om) {
      -        throw new Error('objectMode must be set at instantiation time');
      -    }
      -    /**
      -     * true if this is an async stream
      -     */
      -    get ['async']() {
      -        return this[ASYNC];
      -    }
      -    /**
      -     * Set to true to make this stream async.
      -     *
      -     * Once set, it cannot be unset, as this would potentially cause incorrect
      -     * behavior.  Ie, a sync stream can be made async, but an async stream
      -     * cannot be safely made sync.
      -     */
      -    set ['async'](a) {
      -        this[ASYNC] = this[ASYNC] || !!a;
      -    }
      -    // drop everything and get out of the flow completely
      -    [ABORT]() {
      -        this[ABORTED] = true;
      -        this.emit('abort', this[SIGNAL]?.reason);
      -        this.destroy(this[SIGNAL]?.reason);
      -    }
      -    /**
      -     * True if the stream has been aborted.
      -     */
      -    get aborted() {
      -        return this[ABORTED];
      -    }
      -    /**
      -     * No-op setter. Stream aborted status is set via the AbortSignal provided
      -     * in the constructor options.
      -     */
      -    set aborted(_) { }
      -    write(chunk, encoding, cb) {
      -        if (this[ABORTED])
      -            return false;
      -        if (this[EOF])
      -            throw new Error('write after end');
      -        if (this[DESTROYED]) {
      -            this.emit('error', Object.assign(new Error('Cannot call write after a stream was destroyed'), { code: 'ERR_STREAM_DESTROYED' }));
      -            return true;
      -        }
      -        if (typeof encoding === 'function') {
      -            cb = encoding;
      -            encoding = 'utf8';
      -        }
      -        if (!encoding)
      -            encoding = 'utf8';
      -        const fn = this[ASYNC] ? defer : nodefer;
      -        // convert array buffers and typed array views into buffers
      -        // at some point in the future, we may want to do the opposite!
      -        // leave strings and buffers as-is
      -        // anything is only allowed if in object mode, so throw
      -        if (!this[OBJECTMODE] && !Buffer.isBuffer(chunk)) {
      -            if (isArrayBufferView(chunk)) {
      -                //@ts-ignore - sinful unsafe type changing
      -                chunk = Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength);
      -            }
      -            else if (isArrayBufferLike(chunk)) {
      -                //@ts-ignore - sinful unsafe type changing
      -                chunk = Buffer.from(chunk);
      -            }
      -            else if (typeof chunk !== 'string') {
      -                throw new Error('Non-contiguous data written to non-objectMode stream');
      -            }
      -        }
      -        // handle object mode up front, since it's simpler
      -        // this yields better performance, fewer checks later.
      -        if (this[OBJECTMODE]) {
      -            // maybe impossible?
      -            /* c8 ignore start */
      -            if (this[FLOWING] && this[BUFFERLENGTH] !== 0)
      -                this[FLUSH](true);
      -            /* c8 ignore stop */
      -            if (this[FLOWING])
      -                this.emit('data', chunk);
      -            else
      -                this[BUFFERPUSH](chunk);
      -            if (this[BUFFERLENGTH] !== 0)
      -                this.emit('readable');
      -            if (cb)
      -                fn(cb);
      -            return this[FLOWING];
      -        }
      -        // at this point the chunk is a buffer or string
      -        // don't buffer it up or send it to the decoder
      -        if (!chunk.length) {
      -            if (this[BUFFERLENGTH] !== 0)
      -                this.emit('readable');
      -            if (cb)
      -                fn(cb);
      -            return this[FLOWING];
      -        }
      -        // fast-path writing strings of same encoding to a stream with
      -        // an empty buffer, skipping the buffer/decoder dance
      -        if (typeof chunk === 'string' &&
      -            // unless it is a string already ready for us to use
      -            !(encoding === this[ENCODING] && !this[DECODER]?.lastNeed)) {
      -            //@ts-ignore - sinful unsafe type change
      -            chunk = Buffer.from(chunk, encoding);
      -        }
      -        if (Buffer.isBuffer(chunk) && this[ENCODING]) {
      -            //@ts-ignore - sinful unsafe type change
      -            chunk = this[DECODER].write(chunk);
      -        }
      -        // Note: flushing CAN potentially switch us into not-flowing mode
      -        if (this[FLOWING] && this[BUFFERLENGTH] !== 0)
      -            this[FLUSH](true);
      -        if (this[FLOWING])
      -            this.emit('data', chunk);
      -        else
      -            this[BUFFERPUSH](chunk);
      -        if (this[BUFFERLENGTH] !== 0)
      -            this.emit('readable');
      -        if (cb)
      -            fn(cb);
      -        return this[FLOWING];
      -    }
      -    /**
      -     * Low-level explicit read method.
      -     *
      -     * In objectMode, the argument is ignored, and one item is returned if
      -     * available.
      -     *
      -     * `n` is the number of bytes (or in the case of encoding streams,
      -     * characters) to consume. If `n` is not provided, then the entire buffer
      -     * is returned, or `null` is returned if no data is available.
      -     *
      -     * If `n` is greater that the amount of data in the internal buffer,
      -     * then `null` is returned.
      -     */
      -    read(n) {
      -        if (this[DESTROYED])
      -            return null;
      -        this[DISCARDED] = false;
      -        if (this[BUFFERLENGTH] === 0 ||
      -            n === 0 ||
      -            (n && n > this[BUFFERLENGTH])) {
      -            this[MAYBE_EMIT_END]();
      -            return null;
      -        }
      -        if (this[OBJECTMODE])
      -            n = null;
      -        if (this[BUFFER].length > 1 && !this[OBJECTMODE]) {
      -            // not object mode, so if we have an encoding, then RType is string
      -            // otherwise, must be Buffer
      -            this[BUFFER] = [
      -                (this[ENCODING]
      -                    ? this[BUFFER].join('')
      -                    : Buffer.concat(this[BUFFER], this[BUFFERLENGTH])),
      -            ];
      -        }
      -        const ret = this[READ](n || null, this[BUFFER][0]);
      -        this[MAYBE_EMIT_END]();
      -        return ret;
      -    }
      -    [READ](n, chunk) {
      -        if (this[OBJECTMODE])
      -            this[BUFFERSHIFT]();
      -        else {
      -            const c = chunk;
      -            if (n === c.length || n === null)
      -                this[BUFFERSHIFT]();
      -            else if (typeof c === 'string') {
      -                this[BUFFER][0] = c.slice(n);
      -                chunk = c.slice(0, n);
      -                this[BUFFERLENGTH] -= n;
      -            }
      -            else {
      -                this[BUFFER][0] = c.subarray(n);
      -                chunk = c.subarray(0, n);
      -                this[BUFFERLENGTH] -= n;
      -            }
      -        }
      -        this.emit('data', chunk);
      -        if (!this[BUFFER].length && !this[EOF])
      -            this.emit('drain');
      -        return chunk;
      -    }
      -    end(chunk, encoding, cb) {
      -        if (typeof chunk === 'function') {
      -            cb = chunk;
      -            chunk = undefined;
      -        }
      -        if (typeof encoding === 'function') {
      -            cb = encoding;
      -            encoding = 'utf8';
      -        }
      -        if (chunk !== undefined)
      -            this.write(chunk, encoding);
      -        if (cb)
      -            this.once('end', cb);
      -        this[EOF] = true;
      -        this.writable = false;
      -        // if we haven't written anything, then go ahead and emit,
      -        // even if we're not reading.
      -        // we'll re-emit if a new 'end' listener is added anyway.
      -        // This makes MP more suitable to write-only use cases.
      -        if (this[FLOWING] || !this[PAUSED])
      -            this[MAYBE_EMIT_END]();
      -        return this;
      -    }
      -    // don't let the internal resume be overwritten
      -    [RESUME]() {
      -        if (this[DESTROYED])
      -            return;
      -        if (!this[DATALISTENERS] && !this[PIPES].length) {
      -            this[DISCARDED] = true;
      -        }
      -        this[PAUSED] = false;
      -        this[FLOWING] = true;
      -        this.emit('resume');
      -        if (this[BUFFER].length)
      -            this[FLUSH]();
      -        else if (this[EOF])
      -            this[MAYBE_EMIT_END]();
      -        else
      -            this.emit('drain');
      -    }
      -    /**
      -     * Resume the stream if it is currently in a paused state
      -     *
      -     * If called when there are no pipe destinations or `data` event listeners,
      -     * this will place the stream in a "discarded" state, where all data will
      -     * be thrown away. The discarded state is removed if a pipe destination or
      -     * data handler is added, if pause() is called, or if any synchronous or
      -     * asynchronous iteration is started.
      -     */
      -    resume() {
      -        return this[RESUME]();
      -    }
      -    /**
      -     * Pause the stream
      -     */
      -    pause() {
      -        this[FLOWING] = false;
      -        this[PAUSED] = true;
      -        this[DISCARDED] = false;
      -    }
      -    /**
      -     * true if the stream has been forcibly destroyed
      -     */
      -    get destroyed() {
      -        return this[DESTROYED];
      -    }
      -    /**
      -     * true if the stream is currently in a flowing state, meaning that
      -     * any writes will be immediately emitted.
      -     */
      -    get flowing() {
      -        return this[FLOWING];
      -    }
      -    /**
      -     * true if the stream is currently in a paused state
      -     */
      -    get paused() {
      -        return this[PAUSED];
      -    }
      -    [BUFFERPUSH](chunk) {
      -        if (this[OBJECTMODE])
      -            this[BUFFERLENGTH] += 1;
      -        else
      -            this[BUFFERLENGTH] += chunk.length;
      -        this[BUFFER].push(chunk);
      -    }
      -    [BUFFERSHIFT]() {
      -        if (this[OBJECTMODE])
      -            this[BUFFERLENGTH] -= 1;
      -        else
      -            this[BUFFERLENGTH] -= this[BUFFER][0].length;
      -        return this[BUFFER].shift();
      -    }
      -    [FLUSH](noDrain = false) {
      -        do { } while (this[FLUSHCHUNK](this[BUFFERSHIFT]()) &&
      -            this[BUFFER].length);
      -        if (!noDrain && !this[BUFFER].length && !this[EOF])
      -            this.emit('drain');
      -    }
      -    [FLUSHCHUNK](chunk) {
      -        this.emit('data', chunk);
      -        return this[FLOWING];
      -    }
      -    /**
      -     * Pipe all data emitted by this stream into the destination provided.
      -     *
      -     * Triggers the flow of data.
      -     */
      -    pipe(dest, opts) {
      -        if (this[DESTROYED])
      -            return dest;
      -        this[DISCARDED] = false;
      -        const ended = this[EMITTED_END];
      -        opts = opts || {};
      -        if (dest === proc.stdout || dest === proc.stderr)
      -            opts.end = false;
      -        else
      -            opts.end = opts.end !== false;
      -        opts.proxyErrors = !!opts.proxyErrors;
      -        // piping an ended stream ends immediately
      -        if (ended) {
      -            if (opts.end)
      -                dest.end();
      -        }
      -        else {
      -            // "as" here just ignores the WType, which pipes don't care about,
      -            // since they're only consuming from us, and writing to the dest
      -            this[PIPES].push(!opts.proxyErrors
      -                ? new Pipe(this, dest, opts)
      -                : new PipeProxyErrors(this, dest, opts));
      -            if (this[ASYNC])
      -                defer(() => this[RESUME]());
      -            else
      -                this[RESUME]();
      -        }
      -        return dest;
      -    }
      -    /**
      -     * Fully unhook a piped destination stream.
      -     *
      -     * If the destination stream was the only consumer of this stream (ie,
      -     * there are no other piped destinations or `'data'` event listeners)
      -     * then the flow of data will stop until there is another consumer or
      -     * {@link Minipass#resume} is explicitly called.
      -     */
      -    unpipe(dest) {
      -        const p = this[PIPES].find(p => p.dest === dest);
      -        if (p) {
      -            if (this[PIPES].length === 1) {
      -                if (this[FLOWING] && this[DATALISTENERS] === 0) {
      -                    this[FLOWING] = false;
      -                }
      -                this[PIPES] = [];
      -            }
      -            else
      -                this[PIPES].splice(this[PIPES].indexOf(p), 1);
      -            p.unpipe();
      -        }
      -    }
      -    /**
      -     * Alias for {@link Minipass#on}
      -     */
      -    addListener(ev, handler) {
      -        return this.on(ev, handler);
      -    }
      -    /**
      -     * Mostly identical to `EventEmitter.on`, with the following
      -     * behavior differences to prevent data loss and unnecessary hangs:
      -     *
      -     * - Adding a 'data' event handler will trigger the flow of data
      -     *
      -     * - Adding a 'readable' event handler when there is data waiting to be read
      -     *   will cause 'readable' to be emitted immediately.
      -     *
      -     * - Adding an 'endish' event handler ('end', 'finish', etc.) which has
      -     *   already passed will cause the event to be emitted immediately and all
      -     *   handlers removed.
      -     *
      -     * - Adding an 'error' event handler after an error has been emitted will
      -     *   cause the event to be re-emitted immediately with the error previously
      -     *   raised.
      -     */
      -    on(ev, handler) {
      -        const ret = super.on(ev, handler);
      -        if (ev === 'data') {
      -            this[DISCARDED] = false;
      -            this[DATALISTENERS]++;
      -            if (!this[PIPES].length && !this[FLOWING]) {
      -                this[RESUME]();
      -            }
      -        }
      -        else if (ev === 'readable' && this[BUFFERLENGTH] !== 0) {
      -            super.emit('readable');
      -        }
      -        else if (isEndish(ev) && this[EMITTED_END]) {
      -            super.emit(ev);
      -            this.removeAllListeners(ev);
      -        }
      -        else if (ev === 'error' && this[EMITTED_ERROR]) {
      -            const h = handler;
      -            if (this[ASYNC])
      -                defer(() => h.call(this, this[EMITTED_ERROR]));
      -            else
      -                h.call(this, this[EMITTED_ERROR]);
      -        }
      -        return ret;
      -    }
      -    /**
      -     * Alias for {@link Minipass#off}
      -     */
      -    removeListener(ev, handler) {
      -        return this.off(ev, handler);
      -    }
      -    /**
      -     * Mostly identical to `EventEmitter.off`
      -     *
      -     * If a 'data' event handler is removed, and it was the last consumer
      -     * (ie, there are no pipe destinations or other 'data' event listeners),
      -     * then the flow of data will stop until there is another consumer or
      -     * {@link Minipass#resume} is explicitly called.
      -     */
      -    off(ev, handler) {
      -        const ret = super.off(ev, handler);
      -        // if we previously had listeners, and now we don't, and we don't
      -        // have any pipes, then stop the flow, unless it's been explicitly
      -        // put in a discarded flowing state via stream.resume().
      -        if (ev === 'data') {
      -            this[DATALISTENERS] = this.listeners('data').length;
      -            if (this[DATALISTENERS] === 0 &&
      -                !this[DISCARDED] &&
      -                !this[PIPES].length) {
      -                this[FLOWING] = false;
      -            }
      -        }
      -        return ret;
      -    }
      -    /**
      -     * Mostly identical to `EventEmitter.removeAllListeners`
      -     *
      -     * If all 'data' event handlers are removed, and they were the last consumer
      -     * (ie, there are no pipe destinations), then the flow of data will stop
      -     * until there is another consumer or {@link Minipass#resume} is explicitly
      -     * called.
      -     */
      -    removeAllListeners(ev) {
      -        const ret = super.removeAllListeners(ev);
      -        if (ev === 'data' || ev === undefined) {
      -            this[DATALISTENERS] = 0;
      -            if (!this[DISCARDED] && !this[PIPES].length) {
      -                this[FLOWING] = false;
      -            }
      -        }
      -        return ret;
      -    }
      -    /**
      -     * true if the 'end' event has been emitted
      -     */
      -    get emittedEnd() {
      -        return this[EMITTED_END];
      -    }
      -    [MAYBE_EMIT_END]() {
      -        if (!this[EMITTING_END] &&
      -            !this[EMITTED_END] &&
      -            !this[DESTROYED] &&
      -            this[BUFFER].length === 0 &&
      -            this[EOF]) {
      -            this[EMITTING_END] = true;
      -            this.emit('end');
      -            this.emit('prefinish');
      -            this.emit('finish');
      -            if (this[CLOSED])
      -                this.emit('close');
      -            this[EMITTING_END] = false;
      -        }
      -    }
      -    /**
      -     * Mostly identical to `EventEmitter.emit`, with the following
      -     * behavior differences to prevent data loss and unnecessary hangs:
      -     *
      -     * If the stream has been destroyed, and the event is something other
      -     * than 'close' or 'error', then `false` is returned and no handlers
      -     * are called.
      -     *
      -     * If the event is 'end', and has already been emitted, then the event
      -     * is ignored. If the stream is in a paused or non-flowing state, then
      -     * the event will be deferred until data flow resumes. If the stream is
      -     * async, then handlers will be called on the next tick rather than
      -     * immediately.
      -     *
      -     * If the event is 'close', and 'end' has not yet been emitted, then
      -     * the event will be deferred until after 'end' is emitted.
      -     *
      -     * If the event is 'error', and an AbortSignal was provided for the stream,
      -     * and there are no listeners, then the event is ignored, matching the
      -     * behavior of node core streams in the presense of an AbortSignal.
      -     *
      -     * If the event is 'finish' or 'prefinish', then all listeners will be
      -     * removed after emitting the event, to prevent double-firing.
      -     */
      -    emit(ev, ...args) {
      -        const data = args[0];
      -        // error and close are only events allowed after calling destroy()
      -        if (ev !== 'error' &&
      -            ev !== 'close' &&
      -            ev !== DESTROYED &&
      -            this[DESTROYED]) {
      -            return false;
      -        }
      -        else if (ev === 'data') {
      -            return !this[OBJECTMODE] && !data
      -                ? false
      -                : this[ASYNC]
      -                    ? (defer(() => this[EMITDATA](data)), true)
      -                    : this[EMITDATA](data);
      -        }
      -        else if (ev === 'end') {
      -            return this[EMITEND]();
      -        }
      -        else if (ev === 'close') {
      -            this[CLOSED] = true;
      -            // don't emit close before 'end' and 'finish'
      -            if (!this[EMITTED_END] && !this[DESTROYED])
      -                return false;
      -            const ret = super.emit('close');
      -            this.removeAllListeners('close');
      -            return ret;
      -        }
      -        else if (ev === 'error') {
      -            this[EMITTED_ERROR] = data;
      -            super.emit(ERROR, data);
      -            const ret = !this[SIGNAL] || this.listeners('error').length
      -                ? super.emit('error', data)
      -                : false;
      -            this[MAYBE_EMIT_END]();
      -            return ret;
      -        }
      -        else if (ev === 'resume') {
      -            const ret = super.emit('resume');
      -            this[MAYBE_EMIT_END]();
      -            return ret;
      -        }
      -        else if (ev === 'finish' || ev === 'prefinish') {
      -            const ret = super.emit(ev);
      -            this.removeAllListeners(ev);
      -            return ret;
      -        }
      -        // Some other unknown event
      -        const ret = super.emit(ev, ...args);
      -        this[MAYBE_EMIT_END]();
      -        return ret;
      -    }
      -    [EMITDATA](data) {
      -        for (const p of this[PIPES]) {
      -            if (p.dest.write(data) === false)
      -                this.pause();
      -        }
      -        const ret = this[DISCARDED] ? false : super.emit('data', data);
      -        this[MAYBE_EMIT_END]();
      -        return ret;
      -    }
      -    [EMITEND]() {
      -        if (this[EMITTED_END])
      -            return false;
      -        this[EMITTED_END] = true;
      -        this.readable = false;
      -        return this[ASYNC]
      -            ? (defer(() => this[EMITEND2]()), true)
      -            : this[EMITEND2]();
      -    }
      -    [EMITEND2]() {
      -        if (this[DECODER]) {
      -            const data = this[DECODER].end();
      -            if (data) {
      -                for (const p of this[PIPES]) {
      -                    p.dest.write(data);
      -                }
      -                if (!this[DISCARDED])
      -                    super.emit('data', data);
      -            }
      -        }
      -        for (const p of this[PIPES]) {
      -            p.end();
      -        }
      -        const ret = super.emit('end');
      -        this.removeAllListeners('end');
      -        return ret;
      -    }
      -    /**
      -     * Return a Promise that resolves to an array of all emitted data once
      -     * the stream ends.
      -     */
      -    async collect() {
      -        const buf = Object.assign([], {
      -            dataLength: 0,
      -        });
      -        if (!this[OBJECTMODE])
      -            buf.dataLength = 0;
      -        // set the promise first, in case an error is raised
      -        // by triggering the flow here.
      -        const p = this.promise();
      -        this.on('data', c => {
      -            buf.push(c);
      -            if (!this[OBJECTMODE])
      -                buf.dataLength += c.length;
      -        });
      -        await p;
      -        return buf;
      -    }
      -    /**
      -     * Return a Promise that resolves to the concatenation of all emitted data
      -     * once the stream ends.
      -     *
      -     * Not allowed on objectMode streams.
      -     */
      -    async concat() {
      -        if (this[OBJECTMODE]) {
      -            throw new Error('cannot concat in objectMode');
      -        }
      -        const buf = await this.collect();
      -        return (this[ENCODING]
      -            ? buf.join('')
      -            : Buffer.concat(buf, buf.dataLength));
      -    }
      -    /**
      -     * Return a void Promise that resolves once the stream ends.
      -     */
      -    async promise() {
      -        return new Promise((resolve, reject) => {
      -            this.on(DESTROYED, () => reject(new Error('stream destroyed')));
      -            this.on('error', er => reject(er));
      -            this.on('end', () => resolve());
      -        });
      -    }
      -    /**
      -     * Asynchronous `for await of` iteration.
      -     *
      -     * This will continue emitting all chunks until the stream terminates.
      -     */
      -    [Symbol.asyncIterator]() {
      -        // set this up front, in case the consumer doesn't call next()
      -        // right away.
      -        this[DISCARDED] = false;
      -        let stopped = false;
      -        const stop = async () => {
      -            this.pause();
      -            stopped = true;
      -            return { value: undefined, done: true };
      -        };
      -        const next = () => {
      -            if (stopped)
      -                return stop();
      -            const res = this.read();
      -            if (res !== null)
      -                return Promise.resolve({ done: false, value: res });
      -            if (this[EOF])
      -                return stop();
      -            let resolve;
      -            let reject;
      -            const onerr = (er) => {
      -                this.off('data', ondata);
      -                this.off('end', onend);
      -                this.off(DESTROYED, ondestroy);
      -                stop();
      -                reject(er);
      -            };
      -            const ondata = (value) => {
      -                this.off('error', onerr);
      -                this.off('end', onend);
      -                this.off(DESTROYED, ondestroy);
      -                this.pause();
      -                resolve({ value, done: !!this[EOF] });
      -            };
      -            const onend = () => {
      -                this.off('error', onerr);
      -                this.off('data', ondata);
      -                this.off(DESTROYED, ondestroy);
      -                stop();
      -                resolve({ done: true, value: undefined });
      -            };
      -            const ondestroy = () => onerr(new Error('stream destroyed'));
      -            return new Promise((res, rej) => {
      -                reject = rej;
      -                resolve = res;
      -                this.once(DESTROYED, ondestroy);
      -                this.once('error', onerr);
      -                this.once('end', onend);
      -                this.once('data', ondata);
      -            });
      -        };
      -        return {
      -            next,
      -            throw: stop,
      -            return: stop,
      -            [Symbol.asyncIterator]() {
      -                return this;
      -            },
      -        };
      -    }
      -    /**
      -     * Synchronous `for of` iteration.
      -     *
      -     * The iteration will terminate when the internal buffer runs out, even
      -     * if the stream has not yet terminated.
      -     */
      -    [Symbol.iterator]() {
      -        // set this up front, in case the consumer doesn't call next()
      -        // right away.
      -        this[DISCARDED] = false;
      -        let stopped = false;
      -        const stop = () => {
      -            this.pause();
      -            this.off(ERROR, stop);
      -            this.off(DESTROYED, stop);
      -            this.off('end', stop);
      -            stopped = true;
      -            return { done: true, value: undefined };
      -        };
      -        const next = () => {
      -            if (stopped)
      -                return stop();
      -            const value = this.read();
      -            return value === null ? stop() : { done: false, value };
      -        };
      -        this.once('end', stop);
      -        this.once(ERROR, stop);
      -        this.once(DESTROYED, stop);
      -        return {
      -            next,
      -            throw: stop,
      -            return: stop,
      -            [Symbol.iterator]() {
      -                return this;
      -            },
      -        };
      -    }
      -    /**
      -     * Destroy a stream, preventing it from being used for any further purpose.
      -     *
      -     * If the stream has a `close()` method, then it will be called on
      -     * destruction.
      -     *
      -     * After destruction, any attempt to write data, read data, or emit most
      -     * events will be ignored.
      -     *
      -     * If an error argument is provided, then it will be emitted in an
      -     * 'error' event.
      -     */
      -    destroy(er) {
      -        if (this[DESTROYED]) {
      -            if (er)
      -                this.emit('error', er);
      -            else
      -                this.emit(DESTROYED);
      -            return this;
      -        }
      -        this[DESTROYED] = true;
      -        this[DISCARDED] = true;
      -        // throw away all buffered data, it's never coming out
      -        this[BUFFER].length = 0;
      -        this[BUFFERLENGTH] = 0;
      -        const wc = this;
      -        if (typeof wc.close === 'function' && !this[CLOSED])
      -            wc.close();
      -        if (er)
      -            this.emit('error', er);
      -        // if no error to emit, still reject pending promises
      -        else
      -            this.emit(DESTROYED);
      -        return this;
      -    }
      -    /**
      -     * Alias for {@link isStream}
      -     *
      -     * Former export location, maintained for backwards compatibility.
      -     *
      -     * @deprecated
      -     */
      -    static get isStream() {
      -        return isStream;
      -    }
      -}
      -//# sourceMappingURL=index.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/mjs/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/mjs/package.json
      deleted file mode 100644
      index 3dbc1ca591c055..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/dist/mjs/package.json
      +++ /dev/null
      @@ -1,3 +0,0 @@
      -{
      -  "type": "module"
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/package.json
      deleted file mode 100644
      index 6faaa247a5bc66..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass/package.json
      +++ /dev/null
      @@ -1,82 +0,0 @@
      -{
      -  "name": "minipass",
      -  "version": "7.0.3",
      -  "description": "minimal implementation of a PassThrough stream",
      -  "main": "./dist/cjs/index.js",
      -  "module": "./dist/mjs/index.js",
      -  "types": "./dist/cjs/index.js",
      -  "exports": {
      -    ".": {
      -      "import": {
      -        "types": "./dist/mjs/index.d.ts",
      -        "default": "./dist/mjs/index.js"
      -      },
      -      "require": {
      -        "types": "./dist/cjs/index.d.ts",
      -        "default": "./dist/cjs/index.js"
      -      }
      -    },
      -    "./package.json": "./package.json"
      -  },
      -  "files": [
      -    "dist"
      -  ],
      -  "scripts": {
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "prepublishOnly": "git push origin --follow-tags",
      -    "preprepare": "rm -rf dist",
      -    "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && bash ./scripts/fixup.sh",
      -    "pretest": "npm run prepare",
      -    "presnap": "npm run prepare",
      -    "test": "c8 tap",
      -    "snap": "c8 tap",
      -    "format": "prettier --write . --loglevel warn",
      -    "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts"
      -  },
      -  "tap": {
      -    "coverage": false,
      -    "node-arg": [
      -      "--enable-source-maps",
      -      "--no-warnings",
      -      "--loader",
      -      "ts-node/esm"
      -    ],
      -    "ts": false
      -  },
      -  "prettier": {
      -    "semi": false,
      -    "printWidth": 75,
      -    "tabWidth": 2,
      -    "useTabs": false,
      -    "singleQuote": true,
      -    "jsxSingleQuote": false,
      -    "bracketSameLine": true,
      -    "arrowParens": "avoid",
      -    "endOfLine": "lf"
      -  },
      -  "devDependencies": {
      -    "@types/node": "^20.1.2",
      -    "@types/tap": "^15.0.8",
      -    "c8": "^7.13.0",
      -    "prettier": "^2.6.2",
      -    "tap": "^16.3.0",
      -    "ts-node": "^10.9.1",
      -    "typedoc": "^0.24.8",
      -    "typescript": "^5.1.3",
      -    "end-of-stream": "^1.4.0",
      -    "node-abort-controller": "^3.1.1",
      -    "sync-content": "^1.0.2",
      -    "through2": "^2.0.3"
      -  },
      -  "repository": "https://github.com/isaacs/minipass",
      -  "keywords": [
      -    "passthrough",
      -    "stream"
      -  ],
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me/)",
      -  "license": "ISC",
      -  "engines": {
      -    "node": ">=16 || 14 >=14.17"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/cacache/package.json b/deps/npm/node_modules/node-gyp/node_modules/cacache/package.json
      deleted file mode 100644
      index ab58cb8b7c50f4..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/cacache/package.json
      +++ /dev/null
      @@ -1,82 +0,0 @@
      -{
      -  "name": "cacache",
      -  "version": "17.1.4",
      -  "cache-version": {
      -    "content": "2",
      -    "index": "5"
      -  },
      -  "description": "Fast, fault-tolerant, cross-platform, disk-based, data-agnostic, content-addressable cache.",
      -  "main": "lib/index.js",
      -  "files": [
      -    "bin/",
      -    "lib/"
      -  ],
      -  "scripts": {
      -    "test": "tap",
      -    "snap": "tap",
      -    "coverage": "tap",
      -    "test-docker": "docker run -it --rm --name pacotest -v \"$PWD\":/tmp -w /tmp node:latest npm test",
      -    "lint": "eslint \"**/*.js\"",
      -    "npmclilint": "npmcli-lint",
      -    "lintfix": "npm run lint -- --fix",
      -    "postsnap": "npm run lintfix --",
      -    "postlint": "template-oss-check",
      -    "posttest": "npm run lint",
      -    "template-oss-apply": "template-oss-apply --force"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "https://github.com/npm/cacache.git"
      -  },
      -  "keywords": [
      -    "cache",
      -    "caching",
      -    "content-addressable",
      -    "sri",
      -    "sri hash",
      -    "subresource integrity",
      -    "cache",
      -    "storage",
      -    "store",
      -    "file store",
      -    "filesystem",
      -    "disk cache",
      -    "disk storage"
      -  ],
      -  "license": "ISC",
      -  "dependencies": {
      -    "@npmcli/fs": "^3.1.0",
      -    "fs-minipass": "^3.0.0",
      -    "glob": "^10.2.2",
      -    "lru-cache": "^7.7.1",
      -    "minipass": "^7.0.3",
      -    "minipass-collect": "^1.0.2",
      -    "minipass-flush": "^1.0.5",
      -    "minipass-pipeline": "^1.2.4",
      -    "p-map": "^4.0.0",
      -    "ssri": "^10.0.0",
      -    "tar": "^6.1.11",
      -    "unique-filename": "^3.0.0"
      -  },
      -  "devDependencies": {
      -    "@npmcli/eslint-config": "^4.0.0",
      -    "@npmcli/template-oss": "4.18.0",
      -    "tap": "^16.0.0"
      -  },
      -  "engines": {
      -    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
      -  },
      -  "templateOSS": {
      -    "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
      -    "windowsCI": false,
      -    "version": "4.18.0",
      -    "publish": "true"
      -  },
      -  "author": "GitHub Inc.",
      -  "tap": {
      -    "nyc-arg": [
      -      "--exclude",
      -      "tap-snapshots/**"
      -    ]
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/LICENSE.md b/deps/npm/node_modules/node-gyp/node_modules/gauge/LICENSE.md
      deleted file mode 100644
      index 5fc208ff122e08..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/LICENSE.md
      +++ /dev/null
      @@ -1,20 +0,0 @@
      -
      -
      -ISC License
      -
      -Copyright 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 NPM DISCLAIMS ALL
      -WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
      -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
      -EVENT SHALL NPM 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/gauge/lib/base-theme.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/base-theme.js
      deleted file mode 100644
      index 00bf5684cddab8..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/base-theme.js
      +++ /dev/null
      @@ -1,18 +0,0 @@
      -'use strict'
      -var spin = require('./spin.js')
      -var progressBar = require('./progress-bar.js')
      -
      -module.exports = {
      -  activityIndicator: function (values, theme, width) {
      -    if (values.spun == null) {
      -      return
      -    }
      -    return spin(theme, values.spun)
      -  },
      -  progressbar: function (values, theme, width) {
      -    if (values.completed == null) {
      -      return
      -    }
      -    return progressBar(theme, width, values.completed)
      -  },
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/error.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/error.js
      deleted file mode 100644
      index d9914ba5335d25..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/error.js
      +++ /dev/null
      @@ -1,24 +0,0 @@
      -'use strict'
      -var util = require('util')
      -
      -var User = exports.User = function User (msg) {
      -  var err = new Error(msg)
      -  Error.captureStackTrace(err, User)
      -  err.code = 'EGAUGE'
      -  return err
      -}
      -
      -exports.MissingTemplateValue = function MissingTemplateValue (item, values) {
      -  var err = new User(util.format('Missing template value "%s"', item.type))
      -  Error.captureStackTrace(err, MissingTemplateValue)
      -  err.template = item
      -  err.values = values
      -  return err
      -}
      -
      -exports.Internal = function Internal (msg) {
      -  var err = new Error(msg)
      -  Error.captureStackTrace(err, Internal)
      -  err.code = 'EGAUGEINTERNAL'
      -  return err
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/has-color.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/has-color.js
      deleted file mode 100644
      index 16cba0eb47d332..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/has-color.js
      +++ /dev/null
      @@ -1,4 +0,0 @@
      -'use strict'
      -var colorSupport = require('color-support')
      -
      -module.exports = colorSupport().hasBasic
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/index.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/index.js
      deleted file mode 100644
      index 37fc5ac60a16fd..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/index.js
      +++ /dev/null
      @@ -1,289 +0,0 @@
      -'use strict'
      -var Plumbing = require('./plumbing.js')
      -var hasUnicode = require('has-unicode')
      -var hasColor = require('./has-color.js')
      -var onExit = require('signal-exit')
      -var defaultThemes = require('./themes')
      -var setInterval = require('./set-interval.js')
      -var process = require('./process.js')
      -var setImmediate = require('./set-immediate')
      -
      -module.exports = Gauge
      -
      -function callWith (obj, method) {
      -  return function () {
      -    return method.call(obj)
      -  }
      -}
      -
      -function Gauge (arg1, arg2) {
      -  var options, writeTo
      -  if (arg1 && arg1.write) {
      -    writeTo = arg1
      -    options = arg2 || {}
      -  } else if (arg2 && arg2.write) {
      -    writeTo = arg2
      -    options = arg1 || {}
      -  } else {
      -    writeTo = process.stderr
      -    options = arg1 || arg2 || {}
      -  }
      -
      -  this._status = {
      -    spun: 0,
      -    section: '',
      -    subsection: '',
      -  }
      -  this._paused = false // are we paused for back pressure?
      -  this._disabled = true // are all progress bar updates disabled?
      -  this._showing = false // do we WANT the progress bar on screen
      -  this._onScreen = false // IS the progress bar on screen
      -  this._needsRedraw = false // should we print something at next tick?
      -  this._hideCursor = options.hideCursor == null ? true : options.hideCursor
      -  this._fixedFramerate = options.fixedFramerate == null
      -    ? !(/^v0\.8\./.test(process.version))
      -    : options.fixedFramerate
      -  this._lastUpdateAt = null
      -  this._updateInterval = options.updateInterval == null ? 50 : options.updateInterval
      -
      -  this._themes = options.themes || defaultThemes
      -  this._theme = options.theme
      -  var theme = this._computeTheme(options.theme)
      -  var template = options.template || [
      -    { type: 'progressbar', length: 20 },
      -    { type: 'activityIndicator', kerning: 1, length: 1 },
      -    { type: 'section', kerning: 1, default: '' },
      -    { type: 'subsection', kerning: 1, default: '' },
      -  ]
      -  this.setWriteTo(writeTo, options.tty)
      -  var PlumbingClass = options.Plumbing || Plumbing
      -  this._gauge = new PlumbingClass(theme, template, this.getWidth())
      -
      -  this._$$doRedraw = callWith(this, this._doRedraw)
      -  this._$$handleSizeChange = callWith(this, this._handleSizeChange)
      -
      -  this._cleanupOnExit = options.cleanupOnExit == null || options.cleanupOnExit
      -  this._removeOnExit = null
      -
      -  if (options.enabled || (options.enabled == null && this._tty && this._tty.isTTY)) {
      -    this.enable()
      -  } else {
      -    this.disable()
      -  }
      -}
      -Gauge.prototype = {}
      -
      -Gauge.prototype.isEnabled = function () {
      -  return !this._disabled
      -}
      -
      -Gauge.prototype.setTemplate = function (template) {
      -  this._gauge.setTemplate(template)
      -  if (this._showing) {
      -    this._requestRedraw()
      -  }
      -}
      -
      -Gauge.prototype._computeTheme = function (theme) {
      -  if (!theme) {
      -    theme = {}
      -  }
      -  if (typeof theme === 'string') {
      -    theme = this._themes.getTheme(theme)
      -  } else if (
      -    Object.keys(theme).length === 0 || theme.hasUnicode != null || theme.hasColor != null
      -  ) {
      -    var useUnicode = theme.hasUnicode == null ? hasUnicode() : theme.hasUnicode
      -    var useColor = theme.hasColor == null ? hasColor : theme.hasColor
      -    theme = this._themes.getDefault({
      -      hasUnicode: useUnicode,
      -      hasColor: useColor,
      -      platform: theme.platform,
      -    })
      -  }
      -  return theme
      -}
      -
      -Gauge.prototype.setThemeset = function (themes) {
      -  this._themes = themes
      -  this.setTheme(this._theme)
      -}
      -
      -Gauge.prototype.setTheme = function (theme) {
      -  this._gauge.setTheme(this._computeTheme(theme))
      -  if (this._showing) {
      -    this._requestRedraw()
      -  }
      -  this._theme = theme
      -}
      -
      -Gauge.prototype._requestRedraw = function () {
      -  this._needsRedraw = true
      -  if (!this._fixedFramerate) {
      -    this._doRedraw()
      -  }
      -}
      -
      -Gauge.prototype.getWidth = function () {
      -  return ((this._tty && this._tty.columns) || 80) - 1
      -}
      -
      -Gauge.prototype.setWriteTo = function (writeTo, tty) {
      -  var enabled = !this._disabled
      -  if (enabled) {
      -    this.disable()
      -  }
      -  this._writeTo = writeTo
      -  this._tty = tty ||
      -    (writeTo === process.stderr && process.stdout.isTTY && process.stdout) ||
      -    (writeTo.isTTY && writeTo) ||
      -    this._tty
      -  if (this._gauge) {
      -    this._gauge.setWidth(this.getWidth())
      -  }
      -  if (enabled) {
      -    this.enable()
      -  }
      -}
      -
      -Gauge.prototype.enable = function () {
      -  if (!this._disabled) {
      -    return
      -  }
      -  this._disabled = false
      -  if (this._tty) {
      -    this._enableEvents()
      -  }
      -  if (this._showing) {
      -    this.show()
      -  }
      -}
      -
      -Gauge.prototype.disable = function () {
      -  if (this._disabled) {
      -    return
      -  }
      -  if (this._showing) {
      -    this._lastUpdateAt = null
      -    this._showing = false
      -    this._doRedraw()
      -    this._showing = true
      -  }
      -  this._disabled = true
      -  if (this._tty) {
      -    this._disableEvents()
      -  }
      -}
      -
      -Gauge.prototype._enableEvents = function () {
      -  if (this._cleanupOnExit) {
      -    this._removeOnExit = onExit(callWith(this, this.disable))
      -  }
      -  this._tty.on('resize', this._$$handleSizeChange)
      -  if (this._fixedFramerate) {
      -    this.redrawTracker = setInterval(this._$$doRedraw, this._updateInterval)
      -    if (this.redrawTracker.unref) {
      -      this.redrawTracker.unref()
      -    }
      -  }
      -}
      -
      -Gauge.prototype._disableEvents = function () {
      -  this._tty.removeListener('resize', this._$$handleSizeChange)
      -  if (this._fixedFramerate) {
      -    clearInterval(this.redrawTracker)
      -  }
      -  if (this._removeOnExit) {
      -    this._removeOnExit()
      -  }
      -}
      -
      -Gauge.prototype.hide = function (cb) {
      -  if (this._disabled) {
      -    return cb && process.nextTick(cb)
      -  }
      -  if (!this._showing) {
      -    return cb && process.nextTick(cb)
      -  }
      -  this._showing = false
      -  this._doRedraw()
      -  cb && setImmediate(cb)
      -}
      -
      -Gauge.prototype.show = function (section, completed) {
      -  this._showing = true
      -  if (typeof section === 'string') {
      -    this._status.section = section
      -  } else if (typeof section === 'object') {
      -    var sectionKeys = Object.keys(section)
      -    for (var ii = 0; ii < sectionKeys.length; ++ii) {
      -      var key = sectionKeys[ii]
      -      this._status[key] = section[key]
      -    }
      -  }
      -  if (completed != null) {
      -    this._status.completed = completed
      -  }
      -  if (this._disabled) {
      -    return
      -  }
      -  this._requestRedraw()
      -}
      -
      -Gauge.prototype.pulse = function (subsection) {
      -  this._status.subsection = subsection || ''
      -  this._status.spun++
      -  if (this._disabled) {
      -    return
      -  }
      -  if (!this._showing) {
      -    return
      -  }
      -  this._requestRedraw()
      -}
      -
      -Gauge.prototype._handleSizeChange = function () {
      -  this._gauge.setWidth(this._tty.columns - 1)
      -  this._requestRedraw()
      -}
      -
      -Gauge.prototype._doRedraw = function () {
      -  if (this._disabled || this._paused) {
      -    return
      -  }
      -  if (!this._fixedFramerate) {
      -    var now = Date.now()
      -    if (this._lastUpdateAt && now - this._lastUpdateAt < this._updateInterval) {
      -      return
      -    }
      -    this._lastUpdateAt = now
      -  }
      -  if (!this._showing && this._onScreen) {
      -    this._onScreen = false
      -    var result = this._gauge.hide()
      -    if (this._hideCursor) {
      -      result += this._gauge.showCursor()
      -    }
      -    return this._writeTo.write(result)
      -  }
      -  if (!this._showing && !this._onScreen) {
      -    return
      -  }
      -  if (this._showing && !this._onScreen) {
      -    this._onScreen = true
      -    this._needsRedraw = true
      -    if (this._hideCursor) {
      -      this._writeTo.write(this._gauge.hideCursor())
      -    }
      -  }
      -  if (!this._needsRedraw) {
      -    return
      -  }
      -  if (!this._writeTo.write(this._gauge.show(this._status))) {
      -    this._paused = true
      -    this._writeTo.on('drain', callWith(this, function () {
      -      this._paused = false
      -      this._doRedraw()
      -    }))
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/plumbing.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/plumbing.js
      deleted file mode 100644
      index c4dc3e074b95e8..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/plumbing.js
      +++ /dev/null
      @@ -1,50 +0,0 @@
      -'use strict'
      -var consoleControl = require('console-control-strings')
      -var renderTemplate = require('./render-template.js')
      -var validate = require('aproba')
      -
      -var Plumbing = module.exports = function (theme, template, width) {
      -  if (!width) {
      -    width = 80
      -  }
      -  validate('OAN', [theme, template, width])
      -  this.showing = false
      -  this.theme = theme
      -  this.width = width
      -  this.template = template
      -}
      -Plumbing.prototype = {}
      -
      -Plumbing.prototype.setTheme = function (theme) {
      -  validate('O', [theme])
      -  this.theme = theme
      -}
      -
      -Plumbing.prototype.setTemplate = function (template) {
      -  validate('A', [template])
      -  this.template = template
      -}
      -
      -Plumbing.prototype.setWidth = function (width) {
      -  validate('N', [width])
      -  this.width = width
      -}
      -
      -Plumbing.prototype.hide = function () {
      -  return consoleControl.gotoSOL() + consoleControl.eraseLine()
      -}
      -
      -Plumbing.prototype.hideCursor = consoleControl.hideCursor
      -
      -Plumbing.prototype.showCursor = consoleControl.showCursor
      -
      -Plumbing.prototype.show = function (status) {
      -  var values = Object.create(this.theme)
      -  for (var key in status) {
      -    values[key] = status[key]
      -  }
      -
      -  return renderTemplate(this.width, this.template, values).trim() +
      -         consoleControl.color('reset') +
      -         consoleControl.eraseLine() + consoleControl.gotoSOL()
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/process.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/process.js
      deleted file mode 100644
      index 05e85694d755b6..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/process.js
      +++ /dev/null
      @@ -1,3 +0,0 @@
      -'use strict'
      -// this exists so we can replace it during testing
      -module.exports = process
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/progress-bar.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/progress-bar.js
      deleted file mode 100644
      index 184ff2500aae4d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/progress-bar.js
      +++ /dev/null
      @@ -1,41 +0,0 @@
      -'use strict'
      -var validate = require('aproba')
      -var renderTemplate = require('./render-template.js')
      -var wideTruncate = require('./wide-truncate')
      -var stringWidth = require('string-width')
      -
      -module.exports = function (theme, width, completed) {
      -  validate('ONN', [theme, width, completed])
      -  if (completed < 0) {
      -    completed = 0
      -  }
      -  if (completed > 1) {
      -    completed = 1
      -  }
      -  if (width <= 0) {
      -    return ''
      -  }
      -  var sofar = Math.round(width * completed)
      -  var rest = width - sofar
      -  var template = [
      -    { type: 'complete', value: repeat(theme.complete, sofar), length: sofar },
      -    { type: 'remaining', value: repeat(theme.remaining, rest), length: rest },
      -  ]
      -  return renderTemplate(width, template, theme)
      -}
      -
      -// lodash's way of repeating
      -function repeat (string, width) {
      -  var result = ''
      -  var n = width
      -  do {
      -    if (n % 2) {
      -      result += string
      -    }
      -    n = Math.floor(n / 2)
      -    /* eslint no-self-assign: 0 */
      -    string += string
      -  } while (n && stringWidth(result) < width)
      -
      -  return wideTruncate(result, width)
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/render-template.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/render-template.js
      deleted file mode 100644
      index d1b52c0f48095a..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/render-template.js
      +++ /dev/null
      @@ -1,222 +0,0 @@
      -'use strict'
      -var align = require('wide-align')
      -var validate = require('aproba')
      -var wideTruncate = require('./wide-truncate')
      -var error = require('./error')
      -var TemplateItem = require('./template-item')
      -
      -function renderValueWithValues (values) {
      -  return function (item) {
      -    return renderValue(item, values)
      -  }
      -}
      -
      -var renderTemplate = module.exports = function (width, template, values) {
      -  var items = prepareItems(width, template, values)
      -  var rendered = items.map(renderValueWithValues(values)).join('')
      -  return align.left(wideTruncate(rendered, width), width)
      -}
      -
      -function preType (item) {
      -  var cappedTypeName = item.type[0].toUpperCase() + item.type.slice(1)
      -  return 'pre' + cappedTypeName
      -}
      -
      -function postType (item) {
      -  var cappedTypeName = item.type[0].toUpperCase() + item.type.slice(1)
      -  return 'post' + cappedTypeName
      -}
      -
      -function hasPreOrPost (item, values) {
      -  if (!item.type) {
      -    return
      -  }
      -  return values[preType(item)] || values[postType(item)]
      -}
      -
      -function generatePreAndPost (baseItem, parentValues) {
      -  var item = Object.assign({}, baseItem)
      -  var values = Object.create(parentValues)
      -  var template = []
      -  var pre = preType(item)
      -  var post = postType(item)
      -  if (values[pre]) {
      -    template.push({ value: values[pre] })
      -    values[pre] = null
      -  }
      -  item.minLength = null
      -  item.length = null
      -  item.maxLength = null
      -  template.push(item)
      -  values[item.type] = values[item.type]
      -  if (values[post]) {
      -    template.push({ value: values[post] })
      -    values[post] = null
      -  }
      -  return function ($1, $2, length) {
      -    return renderTemplate(length, template, values)
      -  }
      -}
      -
      -function prepareItems (width, template, values) {
      -  function cloneAndObjectify (item, index, arr) {
      -    var cloned = new TemplateItem(item, width)
      -    var type = cloned.type
      -    if (cloned.value == null) {
      -      if (!(type in values)) {
      -        if (cloned.default == null) {
      -          throw new error.MissingTemplateValue(cloned, values)
      -        } else {
      -          cloned.value = cloned.default
      -        }
      -      } else {
      -        cloned.value = values[type]
      -      }
      -    }
      -    if (cloned.value == null || cloned.value === '') {
      -      return null
      -    }
      -    cloned.index = index
      -    cloned.first = index === 0
      -    cloned.last = index === arr.length - 1
      -    if (hasPreOrPost(cloned, values)) {
      -      cloned.value = generatePreAndPost(cloned, values)
      -    }
      -    return cloned
      -  }
      -
      -  var output = template.map(cloneAndObjectify).filter(function (item) {
      -    return item != null
      -  })
      -
      -  var remainingSpace = width
      -  var variableCount = output.length
      -
      -  function consumeSpace (length) {
      -    if (length > remainingSpace) {
      -      length = remainingSpace
      -    }
      -    remainingSpace -= length
      -  }
      -
      -  function finishSizing (item, length) {
      -    if (item.finished) {
      -      throw new error.Internal('Tried to finish template item that was already finished')
      -    }
      -    if (length === Infinity) {
      -      throw new error.Internal('Length of template item cannot be infinity')
      -    }
      -    if (length != null) {
      -      item.length = length
      -    }
      -    item.minLength = null
      -    item.maxLength = null
      -    --variableCount
      -    item.finished = true
      -    if (item.length == null) {
      -      item.length = item.getBaseLength()
      -    }
      -    if (item.length == null) {
      -      throw new error.Internal('Finished template items must have a length')
      -    }
      -    consumeSpace(item.getLength())
      -  }
      -
      -  output.forEach(function (item) {
      -    if (!item.kerning) {
      -      return
      -    }
      -    var prevPadRight = item.first ? 0 : output[item.index - 1].padRight
      -    if (!item.first && prevPadRight < item.kerning) {
      -      item.padLeft = item.kerning - prevPadRight
      -    }
      -    if (!item.last) {
      -      item.padRight = item.kerning
      -    }
      -  })
      -
      -  // Finish any that have a fixed (literal or intuited) length
      -  output.forEach(function (item) {
      -    if (item.getBaseLength() == null) {
      -      return
      -    }
      -    finishSizing(item)
      -  })
      -
      -  var resized = 0
      -  var resizing
      -  var hunkSize
      -  do {
      -    resizing = false
      -    hunkSize = Math.round(remainingSpace / variableCount)
      -    output.forEach(function (item) {
      -      if (item.finished) {
      -        return
      -      }
      -      if (!item.maxLength) {
      -        return
      -      }
      -      if (item.getMaxLength() < hunkSize) {
      -        finishSizing(item, item.maxLength)
      -        resizing = true
      -      }
      -    })
      -  } while (resizing && resized++ < output.length)
      -  if (resizing) {
      -    throw new error.Internal('Resize loop iterated too many times while determining maxLength')
      -  }
      -
      -  resized = 0
      -  do {
      -    resizing = false
      -    hunkSize = Math.round(remainingSpace / variableCount)
      -    output.forEach(function (item) {
      -      if (item.finished) {
      -        return
      -      }
      -      if (!item.minLength) {
      -        return
      -      }
      -      if (item.getMinLength() >= hunkSize) {
      -        finishSizing(item, item.minLength)
      -        resizing = true
      -      }
      -    })
      -  } while (resizing && resized++ < output.length)
      -  if (resizing) {
      -    throw new error.Internal('Resize loop iterated too many times while determining minLength')
      -  }
      -
      -  hunkSize = Math.round(remainingSpace / variableCount)
      -  output.forEach(function (item) {
      -    if (item.finished) {
      -      return
      -    }
      -    finishSizing(item, hunkSize)
      -  })
      -
      -  return output
      -}
      -
      -function renderFunction (item, values, length) {
      -  validate('OON', arguments)
      -  if (item.type) {
      -    return item.value(values, values[item.type + 'Theme'] || {}, length)
      -  } else {
      -    return item.value(values, {}, length)
      -  }
      -}
      -
      -function renderValue (item, values) {
      -  var length = item.getBaseLength()
      -  var value = typeof item.value === 'function' ? renderFunction(item, values, length) : item.value
      -  if (value == null || value === '') {
      -    return ''
      -  }
      -  var alignWith = align[item.align] || align.left
      -  var leftPadding = item.padLeft ? align.left('', item.padLeft) : ''
      -  var rightPadding = item.padRight ? align.right('', item.padRight) : ''
      -  var truncated = wideTruncate(String(value), length)
      -  var aligned = alignWith(truncated, length)
      -  return leftPadding + aligned + rightPadding
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/set-immediate.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/set-immediate.js
      deleted file mode 100644
      index 6650a485c49933..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/set-immediate.js
      +++ /dev/null
      @@ -1,7 +0,0 @@
      -'use strict'
      -var process = require('./process')
      -try {
      -  module.exports = setImmediate
      -} catch (ex) {
      -  module.exports = process.nextTick
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/set-interval.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/set-interval.js
      deleted file mode 100644
      index 576198793c5504..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/set-interval.js
      +++ /dev/null
      @@ -1,3 +0,0 @@
      -'use strict'
      -// this exists so we can replace it during testing
      -module.exports = setInterval
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/spin.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/spin.js
      deleted file mode 100644
      index 34142ee31acc7c..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/spin.js
      +++ /dev/null
      @@ -1,5 +0,0 @@
      -'use strict'
      -
      -module.exports = function spin (spinstr, spun) {
      -  return spinstr[spun % spinstr.length]
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/template-item.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/template-item.js
      deleted file mode 100644
      index e307e9b7421e73..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/template-item.js
      +++ /dev/null
      @@ -1,87 +0,0 @@
      -'use strict'
      -var stringWidth = require('string-width')
      -
      -module.exports = TemplateItem
      -
      -function isPercent (num) {
      -  if (typeof num !== 'string') {
      -    return false
      -  }
      -  return num.slice(-1) === '%'
      -}
      -
      -function percent (num) {
      -  return Number(num.slice(0, -1)) / 100
      -}
      -
      -function TemplateItem (values, outputLength) {
      -  this.overallOutputLength = outputLength
      -  this.finished = false
      -  this.type = null
      -  this.value = null
      -  this.length = null
      -  this.maxLength = null
      -  this.minLength = null
      -  this.kerning = null
      -  this.align = 'left'
      -  this.padLeft = 0
      -  this.padRight = 0
      -  this.index = null
      -  this.first = null
      -  this.last = null
      -  if (typeof values === 'string') {
      -    this.value = values
      -  } else {
      -    for (var prop in values) {
      -      this[prop] = values[prop]
      -    }
      -  }
      -  // Realize percents
      -  if (isPercent(this.length)) {
      -    this.length = Math.round(this.overallOutputLength * percent(this.length))
      -  }
      -  if (isPercent(this.minLength)) {
      -    this.minLength = Math.round(this.overallOutputLength * percent(this.minLength))
      -  }
      -  if (isPercent(this.maxLength)) {
      -    this.maxLength = Math.round(this.overallOutputLength * percent(this.maxLength))
      -  }
      -  return this
      -}
      -
      -TemplateItem.prototype = {}
      -
      -TemplateItem.prototype.getBaseLength = function () {
      -  var length = this.length
      -  if (
      -    length == null &&
      -    typeof this.value === 'string' &&
      -    this.maxLength == null &&
      -    this.minLength == null
      -  ) {
      -    length = stringWidth(this.value)
      -  }
      -  return length
      -}
      -
      -TemplateItem.prototype.getLength = function () {
      -  var length = this.getBaseLength()
      -  if (length == null) {
      -    return null
      -  }
      -  return length + this.padLeft + this.padRight
      -}
      -
      -TemplateItem.prototype.getMaxLength = function () {
      -  if (this.maxLength == null) {
      -    return null
      -  }
      -  return this.maxLength + this.padLeft + this.padRight
      -}
      -
      -TemplateItem.prototype.getMinLength = function () {
      -  if (this.minLength == null) {
      -    return null
      -  }
      -  return this.minLength + this.padLeft + this.padRight
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/theme-set.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/theme-set.js
      deleted file mode 100644
      index 643d7dbb1da346..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/theme-set.js
      +++ /dev/null
      @@ -1,122 +0,0 @@
      -'use strict'
      -
      -module.exports = function () {
      -  return ThemeSetProto.newThemeSet()
      -}
      -
      -var ThemeSetProto = {}
      -
      -ThemeSetProto.baseTheme = require('./base-theme.js')
      -
      -ThemeSetProto.newTheme = function (parent, theme) {
      -  if (!theme) {
      -    theme = parent
      -    parent = this.baseTheme
      -  }
      -  return Object.assign({}, parent, theme)
      -}
      -
      -ThemeSetProto.getThemeNames = function () {
      -  return Object.keys(this.themes)
      -}
      -
      -ThemeSetProto.addTheme = function (name, parent, theme) {
      -  this.themes[name] = this.newTheme(parent, theme)
      -}
      -
      -ThemeSetProto.addToAllThemes = function (theme) {
      -  var themes = this.themes
      -  Object.keys(themes).forEach(function (name) {
      -    Object.assign(themes[name], theme)
      -  })
      -  Object.assign(this.baseTheme, theme)
      -}
      -
      -ThemeSetProto.getTheme = function (name) {
      -  if (!this.themes[name]) {
      -    throw this.newMissingThemeError(name)
      -  }
      -  return this.themes[name]
      -}
      -
      -ThemeSetProto.setDefault = function (opts, name) {
      -  if (name == null) {
      -    name = opts
      -    opts = {}
      -  }
      -  var platform = opts.platform == null ? 'fallback' : opts.platform
      -  var hasUnicode = !!opts.hasUnicode
      -  var hasColor = !!opts.hasColor
      -  if (!this.defaults[platform]) {
      -    this.defaults[platform] = { true: {}, false: {} }
      -  }
      -  this.defaults[platform][hasUnicode][hasColor] = name
      -}
      -
      -ThemeSetProto.getDefault = function (opts) {
      -  if (!opts) {
      -    opts = {}
      -  }
      -  var platformName = opts.platform || process.platform
      -  var platform = this.defaults[platformName] || this.defaults.fallback
      -  var hasUnicode = !!opts.hasUnicode
      -  var hasColor = !!opts.hasColor
      -  if (!platform) {
      -    throw this.newMissingDefaultThemeError(platformName, hasUnicode, hasColor)
      -  }
      -  if (!platform[hasUnicode][hasColor]) {
      -    if (hasUnicode && hasColor && platform[!hasUnicode][hasColor]) {
      -      hasUnicode = false
      -    } else if (hasUnicode && hasColor && platform[hasUnicode][!hasColor]) {
      -      hasColor = false
      -    } else if (hasUnicode && hasColor && platform[!hasUnicode][!hasColor]) {
      -      hasUnicode = false
      -      hasColor = false
      -    } else if (hasUnicode && !hasColor && platform[!hasUnicode][hasColor]) {
      -      hasUnicode = false
      -    } else if (!hasUnicode && hasColor && platform[hasUnicode][!hasColor]) {
      -      hasColor = false
      -    } else if (platform === this.defaults.fallback) {
      -      throw this.newMissingDefaultThemeError(platformName, hasUnicode, hasColor)
      -    }
      -  }
      -  if (platform[hasUnicode][hasColor]) {
      -    return this.getTheme(platform[hasUnicode][hasColor])
      -  } else {
      -    return this.getDefault(Object.assign({}, opts, { platform: 'fallback' }))
      -  }
      -}
      -
      -ThemeSetProto.newMissingThemeError = function newMissingThemeError (name) {
      -  var err = new Error('Could not find a gauge theme named "' + name + '"')
      -  Error.captureStackTrace.call(err, newMissingThemeError)
      -  err.theme = name
      -  err.code = 'EMISSINGTHEME'
      -  return err
      -}
      -
      -ThemeSetProto.newMissingDefaultThemeError =
      -  function newMissingDefaultThemeError (platformName, hasUnicode, hasColor) {
      -    var err = new Error(
      -      'Could not find a gauge theme for your platform/unicode/color use combo:\n' +
      -    '    platform = ' + platformName + '\n' +
      -    '    hasUnicode = ' + hasUnicode + '\n' +
      -    '    hasColor = ' + hasColor)
      -    Error.captureStackTrace.call(err, newMissingDefaultThemeError)
      -    err.platform = platformName
      -    err.hasUnicode = hasUnicode
      -    err.hasColor = hasColor
      -    err.code = 'EMISSINGTHEME'
      -    return err
      -  }
      -
      -ThemeSetProto.newThemeSet = function () {
      -  var themeset = function (opts) {
      -    return themeset.getDefault(opts)
      -  }
      -  return Object.assign(themeset, ThemeSetProto, {
      -    themes: Object.assign({}, this.themes),
      -    baseTheme: Object.assign({}, this.baseTheme),
      -    defaults: JSON.parse(JSON.stringify(this.defaults || {})),
      -  })
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/themes.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/themes.js
      deleted file mode 100644
      index d2e62bbccb3d82..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/themes.js
      +++ /dev/null
      @@ -1,56 +0,0 @@
      -'use strict'
      -var color = require('console-control-strings').color
      -var ThemeSet = require('./theme-set.js')
      -
      -var themes = module.exports = new ThemeSet()
      -
      -themes.addTheme('ASCII', {
      -  preProgressbar: '[',
      -  postProgressbar: ']',
      -  progressbarTheme: {
      -    complete: '#',
      -    remaining: '.',
      -  },
      -  activityIndicatorTheme: '-\\|/',
      -  preSubsection: '>',
      -})
      -
      -themes.addTheme('colorASCII', themes.getTheme('ASCII'), {
      -  progressbarTheme: {
      -    preComplete: color('bgBrightWhite', 'brightWhite'),
      -    complete: '#',
      -    postComplete: color('reset'),
      -    preRemaining: color('bgBrightBlack', 'brightBlack'),
      -    remaining: '.',
      -    postRemaining: color('reset'),
      -  },
      -})
      -
      -themes.addTheme('brailleSpinner', {
      -  preProgressbar: '(',
      -  postProgressbar: ')',
      -  progressbarTheme: {
      -    complete: '#',
      -    remaining: '⠂',
      -  },
      -  activityIndicatorTheme: '⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏',
      -  preSubsection: '>',
      -})
      -
      -themes.addTheme('colorBrailleSpinner', themes.getTheme('brailleSpinner'), {
      -  progressbarTheme: {
      -    preComplete: color('bgBrightWhite', 'brightWhite'),
      -    complete: '#',
      -    postComplete: color('reset'),
      -    preRemaining: color('bgBrightBlack', 'brightBlack'),
      -    remaining: '⠂',
      -    postRemaining: color('reset'),
      -  },
      -})
      -
      -themes.setDefault({}, 'ASCII')
      -themes.setDefault({ hasColor: true }, 'colorASCII')
      -themes.setDefault({ platform: 'darwin', hasUnicode: true }, 'brailleSpinner')
      -themes.setDefault({ platform: 'darwin', hasUnicode: true, hasColor: true }, 'colorBrailleSpinner')
      -themes.setDefault({ platform: 'linux', hasUnicode: true }, 'brailleSpinner')
      -themes.setDefault({ platform: 'linux', hasUnicode: true, hasColor: true }, 'colorBrailleSpinner')
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/wide-truncate.js b/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/wide-truncate.js
      deleted file mode 100644
      index 5284a699ac3fb5..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/lib/wide-truncate.js
      +++ /dev/null
      @@ -1,31 +0,0 @@
      -'use strict'
      -var stringWidth = require('string-width')
      -var stripAnsi = require('strip-ansi')
      -
      -module.exports = wideTruncate
      -
      -function wideTruncate (str, target) {
      -  if (stringWidth(str) === 0) {
      -    return str
      -  }
      -  if (target <= 0) {
      -    return ''
      -  }
      -  if (stringWidth(str) <= target) {
      -    return str
      -  }
      -
      -  // We compute the number of bytes of ansi sequences here and add
      -  // that to our initial truncation to ensure that we don't slice one
      -  // that we want to keep in half.
      -  var noAnsi = stripAnsi(str)
      -  var ansiSize = str.length + noAnsi.length
      -  var truncated = str.slice(0, target + ansiSize)
      -
      -  // we have to shrink the result to account for our ansi sequence buffer
      -  // (if an ansi sequence was truncated) and double width characters.
      -  while (stringWidth(truncated) > target) {
      -    truncated = truncated.slice(0, -1)
      -  }
      -  return truncated
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/gauge/package.json b/deps/npm/node_modules/node-gyp/node_modules/gauge/package.json
      deleted file mode 100644
      index bce3e68a33f699..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/gauge/package.json
      +++ /dev/null
      @@ -1,66 +0,0 @@
      -{
      -  "name": "gauge",
      -  "version": "4.0.4",
      -  "description": "A terminal based horizontal gauge",
      -  "main": "lib",
      -  "scripts": {
      -    "test": "tap",
      -    "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"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "https://github.com/npm/gauge.git"
      -  },
      -  "keywords": [
      -    "progressbar",
      -    "progress",
      -    "gauge"
      -  ],
      -  "author": "GitHub Inc.",
      -  "license": "ISC",
      -  "bugs": {
      -    "url": "https://github.com/npm/gauge/issues"
      -  },
      -  "homepage": "https://github.com/npm/gauge",
      -  "dependencies": {
      -    "aproba": "^1.0.3 || ^2.0.0",
      -    "color-support": "^1.1.3",
      -    "console-control-strings": "^1.1.0",
      -    "has-unicode": "^2.0.1",
      -    "signal-exit": "^3.0.7",
      -    "string-width": "^4.2.3",
      -    "strip-ansi": "^6.0.1",
      -    "wide-align": "^1.1.5"
      -  },
      -  "devDependencies": {
      -    "@npmcli/eslint-config": "^3.0.1",
      -    "@npmcli/template-oss": "3.2.0",
      -    "readable-stream": "^3.6.0",
      -    "tap": "^16.0.1"
      -  },
      -  "files": [
      -    "bin/",
      -    "lib/"
      -  ],
      -  "engines": {
      -    "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
      -  },
      -  "tap": {
      -    "branches": 79,
      -    "statements": 89,
      -    "functions": 92,
      -    "lines": 90
      -  },
      -  "templateOSS": {
      -    "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
      -    "version": "3.2.0"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/glob/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/glob/LICENSE
      deleted file mode 100644
      index 42ca266df1d523..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/glob/LICENSE
      +++ /dev/null
      @@ -1,21 +0,0 @@
      -The ISC License
      -
      -Copyright (c) Isaac Z. Schlueter and Contributors
      -
      -Permission to use, copy, modify, and/or distribute this software for any
      -purpose with or without fee is hereby granted, provided that the above
      -copyright notice and this permission notice appear in all copies.
      -
      -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
      -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      -
      -## Glob Logo
      -
      -Glob's logo created by Tanya Brassie , licensed
      -under a Creative Commons Attribution-ShareAlike 4.0 International License
      -https://creativecommons.org/licenses/by-sa/4.0/
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/glob/common.js b/deps/npm/node_modules/node-gyp/node_modules/glob/common.js
      deleted file mode 100644
      index 424c46e1dab1be..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/glob/common.js
      +++ /dev/null
      @@ -1,238 +0,0 @@
      -exports.setopts = setopts
      -exports.ownProp = ownProp
      -exports.makeAbs = makeAbs
      -exports.finish = finish
      -exports.mark = mark
      -exports.isIgnored = isIgnored
      -exports.childrenIgnored = childrenIgnored
      -
      -function ownProp (obj, field) {
      -  return Object.prototype.hasOwnProperty.call(obj, field)
      -}
      -
      -var fs = require("fs")
      -var path = require("path")
      -var minimatch = require("minimatch")
      -var isAbsolute = require("path-is-absolute")
      -var Minimatch = minimatch.Minimatch
      -
      -function alphasort (a, b) {
      -  return a.localeCompare(b, 'en')
      -}
      -
      -function setupIgnores (self, options) {
      -  self.ignore = options.ignore || []
      -
      -  if (!Array.isArray(self.ignore))
      -    self.ignore = [self.ignore]
      -
      -  if (self.ignore.length) {
      -    self.ignore = self.ignore.map(ignoreMap)
      -  }
      -}
      -
      -// ignore patterns are always in dot:true mode.
      -function ignoreMap (pattern) {
      -  var gmatcher = null
      -  if (pattern.slice(-3) === '/**') {
      -    var gpattern = pattern.replace(/(\/\*\*)+$/, '')
      -    gmatcher = new Minimatch(gpattern, { dot: true })
      -  }
      -
      -  return {
      -    matcher: new Minimatch(pattern, { dot: true }),
      -    gmatcher: gmatcher
      -  }
      -}
      -
      -function setopts (self, pattern, options) {
      -  if (!options)
      -    options = {}
      -
      -  // base-matching: just use globstar for that.
      -  if (options.matchBase && -1 === pattern.indexOf("/")) {
      -    if (options.noglobstar) {
      -      throw new Error("base matching requires globstar")
      -    }
      -    pattern = "**/" + pattern
      -  }
      -
      -  self.silent = !!options.silent
      -  self.pattern = pattern
      -  self.strict = options.strict !== false
      -  self.realpath = !!options.realpath
      -  self.realpathCache = options.realpathCache || Object.create(null)
      -  self.follow = !!options.follow
      -  self.dot = !!options.dot
      -  self.mark = !!options.mark
      -  self.nodir = !!options.nodir
      -  if (self.nodir)
      -    self.mark = true
      -  self.sync = !!options.sync
      -  self.nounique = !!options.nounique
      -  self.nonull = !!options.nonull
      -  self.nosort = !!options.nosort
      -  self.nocase = !!options.nocase
      -  self.stat = !!options.stat
      -  self.noprocess = !!options.noprocess
      -  self.absolute = !!options.absolute
      -  self.fs = options.fs || fs
      -
      -  self.maxLength = options.maxLength || Infinity
      -  self.cache = options.cache || Object.create(null)
      -  self.statCache = options.statCache || Object.create(null)
      -  self.symlinks = options.symlinks || Object.create(null)
      -
      -  setupIgnores(self, options)
      -
      -  self.changedCwd = false
      -  var cwd = process.cwd()
      -  if (!ownProp(options, "cwd"))
      -    self.cwd = cwd
      -  else {
      -    self.cwd = path.resolve(options.cwd)
      -    self.changedCwd = self.cwd !== cwd
      -  }
      -
      -  self.root = options.root || path.resolve(self.cwd, "/")
      -  self.root = path.resolve(self.root)
      -  if (process.platform === "win32")
      -    self.root = self.root.replace(/\\/g, "/")
      -
      -  // TODO: is an absolute `cwd` supposed to be resolved against `root`?
      -  // e.g. { cwd: '/test', root: __dirname } === path.join(__dirname, '/test')
      -  self.cwdAbs = isAbsolute(self.cwd) ? self.cwd : makeAbs(self, self.cwd)
      -  if (process.platform === "win32")
      -    self.cwdAbs = self.cwdAbs.replace(/\\/g, "/")
      -  self.nomount = !!options.nomount
      -
      -  // disable comments and negation in Minimatch.
      -  // Note that they are not supported in Glob itself anyway.
      -  options.nonegate = true
      -  options.nocomment = true
      -  // always treat \ in patterns as escapes, not path separators
      -  options.allowWindowsEscape = false
      -
      -  self.minimatch = new Minimatch(pattern, options)
      -  self.options = self.minimatch.options
      -}
      -
      -function finish (self) {
      -  var nou = self.nounique
      -  var all = nou ? [] : Object.create(null)
      -
      -  for (var i = 0, l = self.matches.length; i < l; i ++) {
      -    var matches = self.matches[i]
      -    if (!matches || Object.keys(matches).length === 0) {
      -      if (self.nonull) {
      -        // do like the shell, and spit out the literal glob
      -        var literal = self.minimatch.globSet[i]
      -        if (nou)
      -          all.push(literal)
      -        else
      -          all[literal] = true
      -      }
      -    } else {
      -      // had matches
      -      var m = Object.keys(matches)
      -      if (nou)
      -        all.push.apply(all, m)
      -      else
      -        m.forEach(function (m) {
      -          all[m] = true
      -        })
      -    }
      -  }
      -
      -  if (!nou)
      -    all = Object.keys(all)
      -
      -  if (!self.nosort)
      -    all = all.sort(alphasort)
      -
      -  // at *some* point we statted all of these
      -  if (self.mark) {
      -    for (var i = 0; i < all.length; i++) {
      -      all[i] = self._mark(all[i])
      -    }
      -    if (self.nodir) {
      -      all = all.filter(function (e) {
      -        var notDir = !(/\/$/.test(e))
      -        var c = self.cache[e] || self.cache[makeAbs(self, e)]
      -        if (notDir && c)
      -          notDir = c !== 'DIR' && !Array.isArray(c)
      -        return notDir
      -      })
      -    }
      -  }
      -
      -  if (self.ignore.length)
      -    all = all.filter(function(m) {
      -      return !isIgnored(self, m)
      -    })
      -
      -  self.found = all
      -}
      -
      -function mark (self, p) {
      -  var abs = makeAbs(self, p)
      -  var c = self.cache[abs]
      -  var m = p
      -  if (c) {
      -    var isDir = c === 'DIR' || Array.isArray(c)
      -    var slash = p.slice(-1) === '/'
      -
      -    if (isDir && !slash)
      -      m += '/'
      -    else if (!isDir && slash)
      -      m = m.slice(0, -1)
      -
      -    if (m !== p) {
      -      var mabs = makeAbs(self, m)
      -      self.statCache[mabs] = self.statCache[abs]
      -      self.cache[mabs] = self.cache[abs]
      -    }
      -  }
      -
      -  return m
      -}
      -
      -// lotta situps...
      -function makeAbs (self, f) {
      -  var abs = f
      -  if (f.charAt(0) === '/') {
      -    abs = path.join(self.root, f)
      -  } else if (isAbsolute(f) || f === '') {
      -    abs = f
      -  } else if (self.changedCwd) {
      -    abs = path.resolve(self.cwd, f)
      -  } else {
      -    abs = path.resolve(f)
      -  }
      -
      -  if (process.platform === 'win32')
      -    abs = abs.replace(/\\/g, '/')
      -
      -  return abs
      -}
      -
      -
      -// Return true, if pattern ends with globstar '**', for the accompanying parent directory.
      -// Ex:- If node_modules/** is the pattern, add 'node_modules' to ignore list along with it's contents
      -function isIgnored (self, path) {
      -  if (!self.ignore.length)
      -    return false
      -
      -  return self.ignore.some(function(item) {
      -    return item.matcher.match(path) || !!(item.gmatcher && item.gmatcher.match(path))
      -  })
      -}
      -
      -function childrenIgnored (self, path) {
      -  if (!self.ignore.length)
      -    return false
      -
      -  return self.ignore.some(function(item) {
      -    return !!(item.gmatcher && item.gmatcher.match(path))
      -  })
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/glob/glob.js b/deps/npm/node_modules/node-gyp/node_modules/glob/glob.js
      deleted file mode 100644
      index 37a4d7e60775a3..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/glob/glob.js
      +++ /dev/null
      @@ -1,790 +0,0 @@
      -// Approach:
      -//
      -// 1. Get the minimatch set
      -// 2. For each pattern in the set, PROCESS(pattern, false)
      -// 3. Store matches per-set, then uniq them
      -//
      -// PROCESS(pattern, inGlobStar)
      -// Get the first [n] items from pattern that are all strings
      -// Join these together.  This is PREFIX.
      -//   If there is no more remaining, then stat(PREFIX) and
      -//   add to matches if it succeeds.  END.
      -//
      -// If inGlobStar and PREFIX is symlink and points to dir
      -//   set ENTRIES = []
      -// else readdir(PREFIX) as ENTRIES
      -//   If fail, END
      -//
      -// with ENTRIES
      -//   If pattern[n] is GLOBSTAR
      -//     // handle the case where the globstar match is empty
      -//     // by pruning it out, and testing the resulting pattern
      -//     PROCESS(pattern[0..n] + pattern[n+1 .. $], false)
      -//     // handle other cases.
      -//     for ENTRY in ENTRIES (not dotfiles)
      -//       // attach globstar + tail onto the entry
      -//       // Mark that this entry is a globstar match
      -//       PROCESS(pattern[0..n] + ENTRY + pattern[n .. $], true)
      -//
      -//   else // not globstar
      -//     for ENTRY in ENTRIES (not dotfiles, unless pattern[n] is dot)
      -//       Test ENTRY against pattern[n]
      -//       If fails, continue
      -//       If passes, PROCESS(pattern[0..n] + item + pattern[n+1 .. $])
      -//
      -// Caveat:
      -//   Cache all stats and readdirs results to minimize syscall.  Since all
      -//   we ever care about is existence and directory-ness, we can just keep
      -//   `true` for files, and [children,...] for directories, or `false` for
      -//   things that don't exist.
      -
      -module.exports = glob
      -
      -var rp = require('fs.realpath')
      -var minimatch = require('minimatch')
      -var Minimatch = minimatch.Minimatch
      -var inherits = require('inherits')
      -var EE = require('events').EventEmitter
      -var path = require('path')
      -var assert = require('assert')
      -var isAbsolute = require('path-is-absolute')
      -var globSync = require('./sync.js')
      -var common = require('./common.js')
      -var setopts = common.setopts
      -var ownProp = common.ownProp
      -var inflight = require('inflight')
      -var util = require('util')
      -var childrenIgnored = common.childrenIgnored
      -var isIgnored = common.isIgnored
      -
      -var once = require('once')
      -
      -function glob (pattern, options, cb) {
      -  if (typeof options === 'function') cb = options, options = {}
      -  if (!options) options = {}
      -
      -  if (options.sync) {
      -    if (cb)
      -      throw new TypeError('callback provided to sync glob')
      -    return globSync(pattern, options)
      -  }
      -
      -  return new Glob(pattern, options, cb)
      -}
      -
      -glob.sync = globSync
      -var GlobSync = glob.GlobSync = globSync.GlobSync
      -
      -// old api surface
      -glob.glob = glob
      -
      -function extend (origin, add) {
      -  if (add === null || typeof add !== 'object') {
      -    return origin
      -  }
      -
      -  var keys = Object.keys(add)
      -  var i = keys.length
      -  while (i--) {
      -    origin[keys[i]] = add[keys[i]]
      -  }
      -  return origin
      -}
      -
      -glob.hasMagic = function (pattern, options_) {
      -  var options = extend({}, options_)
      -  options.noprocess = true
      -
      -  var g = new Glob(pattern, options)
      -  var set = g.minimatch.set
      -
      -  if (!pattern)
      -    return false
      -
      -  if (set.length > 1)
      -    return true
      -
      -  for (var j = 0; j < set[0].length; j++) {
      -    if (typeof set[0][j] !== 'string')
      -      return true
      -  }
      -
      -  return false
      -}
      -
      -glob.Glob = Glob
      -inherits(Glob, EE)
      -function Glob (pattern, options, cb) {
      -  if (typeof options === 'function') {
      -    cb = options
      -    options = null
      -  }
      -
      -  if (options && options.sync) {
      -    if (cb)
      -      throw new TypeError('callback provided to sync glob')
      -    return new GlobSync(pattern, options)
      -  }
      -
      -  if (!(this instanceof Glob))
      -    return new Glob(pattern, options, cb)
      -
      -  setopts(this, pattern, options)
      -  this._didRealPath = false
      -
      -  // process each pattern in the minimatch set
      -  var n = this.minimatch.set.length
      -
      -  // The matches are stored as {: true,...} so that
      -  // duplicates are automagically pruned.
      -  // Later, we do an Object.keys() on these.
      -  // Keep them as a list so we can fill in when nonull is set.
      -  this.matches = new Array(n)
      -
      -  if (typeof cb === 'function') {
      -    cb = once(cb)
      -    this.on('error', cb)
      -    this.on('end', function (matches) {
      -      cb(null, matches)
      -    })
      -  }
      -
      -  var self = this
      -  this._processing = 0
      -
      -  this._emitQueue = []
      -  this._processQueue = []
      -  this.paused = false
      -
      -  if (this.noprocess)
      -    return this
      -
      -  if (n === 0)
      -    return done()
      -
      -  var sync = true
      -  for (var i = 0; i < n; i ++) {
      -    this._process(this.minimatch.set[i], i, false, done)
      -  }
      -  sync = false
      -
      -  function done () {
      -    --self._processing
      -    if (self._processing <= 0) {
      -      if (sync) {
      -        process.nextTick(function () {
      -          self._finish()
      -        })
      -      } else {
      -        self._finish()
      -      }
      -    }
      -  }
      -}
      -
      -Glob.prototype._finish = function () {
      -  assert(this instanceof Glob)
      -  if (this.aborted)
      -    return
      -
      -  if (this.realpath && !this._didRealpath)
      -    return this._realpath()
      -
      -  common.finish(this)
      -  this.emit('end', this.found)
      -}
      -
      -Glob.prototype._realpath = function () {
      -  if (this._didRealpath)
      -    return
      -
      -  this._didRealpath = true
      -
      -  var n = this.matches.length
      -  if (n === 0)
      -    return this._finish()
      -
      -  var self = this
      -  for (var i = 0; i < this.matches.length; i++)
      -    this._realpathSet(i, next)
      -
      -  function next () {
      -    if (--n === 0)
      -      self._finish()
      -  }
      -}
      -
      -Glob.prototype._realpathSet = function (index, cb) {
      -  var matchset = this.matches[index]
      -  if (!matchset)
      -    return cb()
      -
      -  var found = Object.keys(matchset)
      -  var self = this
      -  var n = found.length
      -
      -  if (n === 0)
      -    return cb()
      -
      -  var set = this.matches[index] = Object.create(null)
      -  found.forEach(function (p, i) {
      -    // If there's a problem with the stat, then it means that
      -    // one or more of the links in the realpath couldn't be
      -    // resolved.  just return the abs value in that case.
      -    p = self._makeAbs(p)
      -    rp.realpath(p, self.realpathCache, function (er, real) {
      -      if (!er)
      -        set[real] = true
      -      else if (er.syscall === 'stat')
      -        set[p] = true
      -      else
      -        self.emit('error', er) // srsly wtf right here
      -
      -      if (--n === 0) {
      -        self.matches[index] = set
      -        cb()
      -      }
      -    })
      -  })
      -}
      -
      -Glob.prototype._mark = function (p) {
      -  return common.mark(this, p)
      -}
      -
      -Glob.prototype._makeAbs = function (f) {
      -  return common.makeAbs(this, f)
      -}
      -
      -Glob.prototype.abort = function () {
      -  this.aborted = true
      -  this.emit('abort')
      -}
      -
      -Glob.prototype.pause = function () {
      -  if (!this.paused) {
      -    this.paused = true
      -    this.emit('pause')
      -  }
      -}
      -
      -Glob.prototype.resume = function () {
      -  if (this.paused) {
      -    this.emit('resume')
      -    this.paused = false
      -    if (this._emitQueue.length) {
      -      var eq = this._emitQueue.slice(0)
      -      this._emitQueue.length = 0
      -      for (var i = 0; i < eq.length; i ++) {
      -        var e = eq[i]
      -        this._emitMatch(e[0], e[1])
      -      }
      -    }
      -    if (this._processQueue.length) {
      -      var pq = this._processQueue.slice(0)
      -      this._processQueue.length = 0
      -      for (var i = 0; i < pq.length; i ++) {
      -        var p = pq[i]
      -        this._processing--
      -        this._process(p[0], p[1], p[2], p[3])
      -      }
      -    }
      -  }
      -}
      -
      -Glob.prototype._process = function (pattern, index, inGlobStar, cb) {
      -  assert(this instanceof Glob)
      -  assert(typeof cb === 'function')
      -
      -  if (this.aborted)
      -    return
      -
      -  this._processing++
      -  if (this.paused) {
      -    this._processQueue.push([pattern, index, inGlobStar, cb])
      -    return
      -  }
      -
      -  //console.error('PROCESS %d', this._processing, pattern)
      -
      -  // Get the first [n] parts of pattern that are all strings.
      -  var n = 0
      -  while (typeof pattern[n] === 'string') {
      -    n ++
      -  }
      -  // now n is the index of the first one that is *not* a string.
      -
      -  // see if there's anything else
      -  var prefix
      -  switch (n) {
      -    // if not, then this is rather simple
      -    case pattern.length:
      -      this._processSimple(pattern.join('/'), index, cb)
      -      return
      -
      -    case 0:
      -      // pattern *starts* with some non-trivial item.
      -      // going to readdir(cwd), but not include the prefix in matches.
      -      prefix = null
      -      break
      -
      -    default:
      -      // pattern has some string bits in the front.
      -      // whatever it starts with, whether that's 'absolute' like /foo/bar,
      -      // or 'relative' like '../baz'
      -      prefix = pattern.slice(0, n).join('/')
      -      break
      -  }
      -
      -  var remain = pattern.slice(n)
      -
      -  // get the list of entries.
      -  var read
      -  if (prefix === null)
      -    read = '.'
      -  else if (isAbsolute(prefix) ||
      -      isAbsolute(pattern.map(function (p) {
      -        return typeof p === 'string' ? p : '[*]'
      -      }).join('/'))) {
      -    if (!prefix || !isAbsolute(prefix))
      -      prefix = '/' + prefix
      -    read = prefix
      -  } else
      -    read = prefix
      -
      -  var abs = this._makeAbs(read)
      -
      -  //if ignored, skip _processing
      -  if (childrenIgnored(this, read))
      -    return cb()
      -
      -  var isGlobStar = remain[0] === minimatch.GLOBSTAR
      -  if (isGlobStar)
      -    this._processGlobStar(prefix, read, abs, remain, index, inGlobStar, cb)
      -  else
      -    this._processReaddir(prefix, read, abs, remain, index, inGlobStar, cb)
      -}
      -
      -Glob.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar, cb) {
      -  var self = this
      -  this._readdir(abs, inGlobStar, function (er, entries) {
      -    return self._processReaddir2(prefix, read, abs, remain, index, inGlobStar, entries, cb)
      -  })
      -}
      -
      -Glob.prototype._processReaddir2 = function (prefix, read, abs, remain, index, inGlobStar, entries, cb) {
      -
      -  // if the abs isn't a dir, then nothing can match!
      -  if (!entries)
      -    return cb()
      -
      -  // It will only match dot entries if it starts with a dot, or if
      -  // dot is set.  Stuff like @(.foo|.bar) isn't allowed.
      -  var pn = remain[0]
      -  var negate = !!this.minimatch.negate
      -  var rawGlob = pn._glob
      -  var dotOk = this.dot || rawGlob.charAt(0) === '.'
      -
      -  var matchedEntries = []
      -  for (var i = 0; i < entries.length; i++) {
      -    var e = entries[i]
      -    if (e.charAt(0) !== '.' || dotOk) {
      -      var m
      -      if (negate && !prefix) {
      -        m = !e.match(pn)
      -      } else {
      -        m = e.match(pn)
      -      }
      -      if (m)
      -        matchedEntries.push(e)
      -    }
      -  }
      -
      -  //console.error('prd2', prefix, entries, remain[0]._glob, matchedEntries)
      -
      -  var len = matchedEntries.length
      -  // If there are no matched entries, then nothing matches.
      -  if (len === 0)
      -    return cb()
      -
      -  // if this is the last remaining pattern bit, then no need for
      -  // an additional stat *unless* the user has specified mark or
      -  // stat explicitly.  We know they exist, since readdir returned
      -  // them.
      -
      -  if (remain.length === 1 && !this.mark && !this.stat) {
      -    if (!this.matches[index])
      -      this.matches[index] = Object.create(null)
      -
      -    for (var i = 0; i < len; i ++) {
      -      var e = matchedEntries[i]
      -      if (prefix) {
      -        if (prefix !== '/')
      -          e = prefix + '/' + e
      -        else
      -          e = prefix + e
      -      }
      -
      -      if (e.charAt(0) === '/' && !this.nomount) {
      -        e = path.join(this.root, e)
      -      }
      -      this._emitMatch(index, e)
      -    }
      -    // This was the last one, and no stats were needed
      -    return cb()
      -  }
      -
      -  // now test all matched entries as stand-ins for that part
      -  // of the pattern.
      -  remain.shift()
      -  for (var i = 0; i < len; i ++) {
      -    var e = matchedEntries[i]
      -    var newPattern
      -    if (prefix) {
      -      if (prefix !== '/')
      -        e = prefix + '/' + e
      -      else
      -        e = prefix + e
      -    }
      -    this._process([e].concat(remain), index, inGlobStar, cb)
      -  }
      -  cb()
      -}
      -
      -Glob.prototype._emitMatch = function (index, e) {
      -  if (this.aborted)
      -    return
      -
      -  if (isIgnored(this, e))
      -    return
      -
      -  if (this.paused) {
      -    this._emitQueue.push([index, e])
      -    return
      -  }
      -
      -  var abs = isAbsolute(e) ? e : this._makeAbs(e)
      -
      -  if (this.mark)
      -    e = this._mark(e)
      -
      -  if (this.absolute)
      -    e = abs
      -
      -  if (this.matches[index][e])
      -    return
      -
      -  if (this.nodir) {
      -    var c = this.cache[abs]
      -    if (c === 'DIR' || Array.isArray(c))
      -      return
      -  }
      -
      -  this.matches[index][e] = true
      -
      -  var st = this.statCache[abs]
      -  if (st)
      -    this.emit('stat', e, st)
      -
      -  this.emit('match', e)
      -}
      -
      -Glob.prototype._readdirInGlobStar = function (abs, cb) {
      -  if (this.aborted)
      -    return
      -
      -  // follow all symlinked directories forever
      -  // just proceed as if this is a non-globstar situation
      -  if (this.follow)
      -    return this._readdir(abs, false, cb)
      -
      -  var lstatkey = 'lstat\0' + abs
      -  var self = this
      -  var lstatcb = inflight(lstatkey, lstatcb_)
      -
      -  if (lstatcb)
      -    self.fs.lstat(abs, lstatcb)
      -
      -  function lstatcb_ (er, lstat) {
      -    if (er && er.code === 'ENOENT')
      -      return cb()
      -
      -    var isSym = lstat && lstat.isSymbolicLink()
      -    self.symlinks[abs] = isSym
      -
      -    // If it's not a symlink or a dir, then it's definitely a regular file.
      -    // don't bother doing a readdir in that case.
      -    if (!isSym && lstat && !lstat.isDirectory()) {
      -      self.cache[abs] = 'FILE'
      -      cb()
      -    } else
      -      self._readdir(abs, false, cb)
      -  }
      -}
      -
      -Glob.prototype._readdir = function (abs, inGlobStar, cb) {
      -  if (this.aborted)
      -    return
      -
      -  cb = inflight('readdir\0'+abs+'\0'+inGlobStar, cb)
      -  if (!cb)
      -    return
      -
      -  //console.error('RD %j %j', +inGlobStar, abs)
      -  if (inGlobStar && !ownProp(this.symlinks, abs))
      -    return this._readdirInGlobStar(abs, cb)
      -
      -  if (ownProp(this.cache, abs)) {
      -    var c = this.cache[abs]
      -    if (!c || c === 'FILE')
      -      return cb()
      -
      -    if (Array.isArray(c))
      -      return cb(null, c)
      -  }
      -
      -  var self = this
      -  self.fs.readdir(abs, readdirCb(this, abs, cb))
      -}
      -
      -function readdirCb (self, abs, cb) {
      -  return function (er, entries) {
      -    if (er)
      -      self._readdirError(abs, er, cb)
      -    else
      -      self._readdirEntries(abs, entries, cb)
      -  }
      -}
      -
      -Glob.prototype._readdirEntries = function (abs, entries, cb) {
      -  if (this.aborted)
      -    return
      -
      -  // if we haven't asked to stat everything, then just
      -  // assume that everything in there exists, so we can avoid
      -  // having to stat it a second time.
      -  if (!this.mark && !this.stat) {
      -    for (var i = 0; i < entries.length; i ++) {
      -      var e = entries[i]
      -      if (abs === '/')
      -        e = abs + e
      -      else
      -        e = abs + '/' + e
      -      this.cache[e] = true
      -    }
      -  }
      -
      -  this.cache[abs] = entries
      -  return cb(null, entries)
      -}
      -
      -Glob.prototype._readdirError = function (f, er, cb) {
      -  if (this.aborted)
      -    return
      -
      -  // handle errors, and cache the information
      -  switch (er.code) {
      -    case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205
      -    case 'ENOTDIR': // totally normal. means it *does* exist.
      -      var abs = this._makeAbs(f)
      -      this.cache[abs] = 'FILE'
      -      if (abs === this.cwdAbs) {
      -        var error = new Error(er.code + ' invalid cwd ' + this.cwd)
      -        error.path = this.cwd
      -        error.code = er.code
      -        this.emit('error', error)
      -        this.abort()
      -      }
      -      break
      -
      -    case 'ENOENT': // not terribly unusual
      -    case 'ELOOP':
      -    case 'ENAMETOOLONG':
      -    case 'UNKNOWN':
      -      this.cache[this._makeAbs(f)] = false
      -      break
      -
      -    default: // some unusual error.  Treat as failure.
      -      this.cache[this._makeAbs(f)] = false
      -      if (this.strict) {
      -        this.emit('error', er)
      -        // If the error is handled, then we abort
      -        // if not, we threw out of here
      -        this.abort()
      -      }
      -      if (!this.silent)
      -        console.error('glob error', er)
      -      break
      -  }
      -
      -  return cb()
      -}
      -
      -Glob.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar, cb) {
      -  var self = this
      -  this._readdir(abs, inGlobStar, function (er, entries) {
      -    self._processGlobStar2(prefix, read, abs, remain, index, inGlobStar, entries, cb)
      -  })
      -}
      -
      -
      -Glob.prototype._processGlobStar2 = function (prefix, read, abs, remain, index, inGlobStar, entries, cb) {
      -  //console.error('pgs2', prefix, remain[0], entries)
      -
      -  // no entries means not a dir, so it can never have matches
      -  // foo.txt/** doesn't match foo.txt
      -  if (!entries)
      -    return cb()
      -
      -  // test without the globstar, and with every child both below
      -  // and replacing the globstar.
      -  var remainWithoutGlobStar = remain.slice(1)
      -  var gspref = prefix ? [ prefix ] : []
      -  var noGlobStar = gspref.concat(remainWithoutGlobStar)
      -
      -  // the noGlobStar pattern exits the inGlobStar state
      -  this._process(noGlobStar, index, false, cb)
      -
      -  var isSym = this.symlinks[abs]
      -  var len = entries.length
      -
      -  // If it's a symlink, and we're in a globstar, then stop
      -  if (isSym && inGlobStar)
      -    return cb()
      -
      -  for (var i = 0; i < len; i++) {
      -    var e = entries[i]
      -    if (e.charAt(0) === '.' && !this.dot)
      -      continue
      -
      -    // these two cases enter the inGlobStar state
      -    var instead = gspref.concat(entries[i], remainWithoutGlobStar)
      -    this._process(instead, index, true, cb)
      -
      -    var below = gspref.concat(entries[i], remain)
      -    this._process(below, index, true, cb)
      -  }
      -
      -  cb()
      -}
      -
      -Glob.prototype._processSimple = function (prefix, index, cb) {
      -  // XXX review this.  Shouldn't it be doing the mounting etc
      -  // before doing stat?  kinda weird?
      -  var self = this
      -  this._stat(prefix, function (er, exists) {
      -    self._processSimple2(prefix, index, er, exists, cb)
      -  })
      -}
      -Glob.prototype._processSimple2 = function (prefix, index, er, exists, cb) {
      -
      -  //console.error('ps2', prefix, exists)
      -
      -  if (!this.matches[index])
      -    this.matches[index] = Object.create(null)
      -
      -  // If it doesn't exist, then just mark the lack of results
      -  if (!exists)
      -    return cb()
      -
      -  if (prefix && isAbsolute(prefix) && !this.nomount) {
      -    var trail = /[\/\\]$/.test(prefix)
      -    if (prefix.charAt(0) === '/') {
      -      prefix = path.join(this.root, prefix)
      -    } else {
      -      prefix = path.resolve(this.root, prefix)
      -      if (trail)
      -        prefix += '/'
      -    }
      -  }
      -
      -  if (process.platform === 'win32')
      -    prefix = prefix.replace(/\\/g, '/')
      -
      -  // Mark this as a match
      -  this._emitMatch(index, prefix)
      -  cb()
      -}
      -
      -// Returns either 'DIR', 'FILE', or false
      -Glob.prototype._stat = function (f, cb) {
      -  var abs = this._makeAbs(f)
      -  var needDir = f.slice(-1) === '/'
      -
      -  if (f.length > this.maxLength)
      -    return cb()
      -
      -  if (!this.stat && ownProp(this.cache, abs)) {
      -    var c = this.cache[abs]
      -
      -    if (Array.isArray(c))
      -      c = 'DIR'
      -
      -    // It exists, but maybe not how we need it
      -    if (!needDir || c === 'DIR')
      -      return cb(null, c)
      -
      -    if (needDir && c === 'FILE')
      -      return cb()
      -
      -    // otherwise we have to stat, because maybe c=true
      -    // if we know it exists, but not what it is.
      -  }
      -
      -  var exists
      -  var stat = this.statCache[abs]
      -  if (stat !== undefined) {
      -    if (stat === false)
      -      return cb(null, stat)
      -    else {
      -      var type = stat.isDirectory() ? 'DIR' : 'FILE'
      -      if (needDir && type === 'FILE')
      -        return cb()
      -      else
      -        return cb(null, type, stat)
      -    }
      -  }
      -
      -  var self = this
      -  var statcb = inflight('stat\0' + abs, lstatcb_)
      -  if (statcb)
      -    self.fs.lstat(abs, statcb)
      -
      -  function lstatcb_ (er, lstat) {
      -    if (lstat && lstat.isSymbolicLink()) {
      -      // If it's a symlink, then treat it as the target, unless
      -      // the target does not exist, then treat it as a file.
      -      return self.fs.stat(abs, function (er, stat) {
      -        if (er)
      -          self._stat2(f, abs, null, lstat, cb)
      -        else
      -          self._stat2(f, abs, er, stat, cb)
      -      })
      -    } else {
      -      self._stat2(f, abs, er, lstat, cb)
      -    }
      -  }
      -}
      -
      -Glob.prototype._stat2 = function (f, abs, er, stat, cb) {
      -  if (er && (er.code === 'ENOENT' || er.code === 'ENOTDIR')) {
      -    this.statCache[abs] = false
      -    return cb()
      -  }
      -
      -  var needDir = f.slice(-1) === '/'
      -  this.statCache[abs] = stat
      -
      -  if (abs.slice(-1) === '/' && stat && !stat.isDirectory())
      -    return cb(null, false, stat)
      -
      -  var c = true
      -  if (stat)
      -    c = stat.isDirectory() ? 'DIR' : 'FILE'
      -  this.cache[abs] = this.cache[abs] || c
      -
      -  if (needDir && c === 'FILE')
      -    return cb()
      -
      -  return cb(null, c, stat)
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/glob/package.json b/deps/npm/node_modules/node-gyp/node_modules/glob/package.json
      deleted file mode 100644
      index 5940b649b7e65a..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/glob/package.json
      +++ /dev/null
      @@ -1,55 +0,0 @@
      -{
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me/)",
      -  "name": "glob",
      -  "description": "a little globber",
      -  "version": "7.2.3",
      -  "publishConfig": {
      -    "tag": "v7-legacy"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/isaacs/node-glob.git"
      -  },
      -  "main": "glob.js",
      -  "files": [
      -    "glob.js",
      -    "sync.js",
      -    "common.js"
      -  ],
      -  "engines": {
      -    "node": "*"
      -  },
      -  "dependencies": {
      -    "fs.realpath": "^1.0.0",
      -    "inflight": "^1.0.4",
      -    "inherits": "2",
      -    "minimatch": "^3.1.1",
      -    "once": "^1.3.0",
      -    "path-is-absolute": "^1.0.0"
      -  },
      -  "devDependencies": {
      -    "memfs": "^3.2.0",
      -    "mkdirp": "0",
      -    "rimraf": "^2.2.8",
      -    "tap": "^15.0.6",
      -    "tick": "0.0.6"
      -  },
      -  "tap": {
      -    "before": "test/00-setup.js",
      -    "after": "test/zz-cleanup.js",
      -    "jobs": 1
      -  },
      -  "scripts": {
      -    "prepublish": "npm run benchclean",
      -    "profclean": "rm -f v8.log profile.txt",
      -    "test": "tap",
      -    "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
      -    "bench": "bash benchmark.sh",
      -    "prof": "bash prof.sh && cat profile.txt",
      -    "benchclean": "node benchclean.js"
      -  },
      -  "license": "ISC",
      -  "funding": {
      -    "url": "https://github.com/sponsors/isaacs"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/glob/sync.js b/deps/npm/node_modules/node-gyp/node_modules/glob/sync.js
      deleted file mode 100644
      index 2c4f480192d28d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/glob/sync.js
      +++ /dev/null
      @@ -1,486 +0,0 @@
      -module.exports = globSync
      -globSync.GlobSync = GlobSync
      -
      -var rp = require('fs.realpath')
      -var minimatch = require('minimatch')
      -var Minimatch = minimatch.Minimatch
      -var Glob = require('./glob.js').Glob
      -var util = require('util')
      -var path = require('path')
      -var assert = require('assert')
      -var isAbsolute = require('path-is-absolute')
      -var common = require('./common.js')
      -var setopts = common.setopts
      -var ownProp = common.ownProp
      -var childrenIgnored = common.childrenIgnored
      -var isIgnored = common.isIgnored
      -
      -function globSync (pattern, options) {
      -  if (typeof options === 'function' || arguments.length === 3)
      -    throw new TypeError('callback provided to sync glob\n'+
      -                        'See: https://github.com/isaacs/node-glob/issues/167')
      -
      -  return new GlobSync(pattern, options).found
      -}
      -
      -function GlobSync (pattern, options) {
      -  if (!pattern)
      -    throw new Error('must provide pattern')
      -
      -  if (typeof options === 'function' || arguments.length === 3)
      -    throw new TypeError('callback provided to sync glob\n'+
      -                        'See: https://github.com/isaacs/node-glob/issues/167')
      -
      -  if (!(this instanceof GlobSync))
      -    return new GlobSync(pattern, options)
      -
      -  setopts(this, pattern, options)
      -
      -  if (this.noprocess)
      -    return this
      -
      -  var n = this.minimatch.set.length
      -  this.matches = new Array(n)
      -  for (var i = 0; i < n; i ++) {
      -    this._process(this.minimatch.set[i], i, false)
      -  }
      -  this._finish()
      -}
      -
      -GlobSync.prototype._finish = function () {
      -  assert.ok(this instanceof GlobSync)
      -  if (this.realpath) {
      -    var self = this
      -    this.matches.forEach(function (matchset, index) {
      -      var set = self.matches[index] = Object.create(null)
      -      for (var p in matchset) {
      -        try {
      -          p = self._makeAbs(p)
      -          var real = rp.realpathSync(p, self.realpathCache)
      -          set[real] = true
      -        } catch (er) {
      -          if (er.syscall === 'stat')
      -            set[self._makeAbs(p)] = true
      -          else
      -            throw er
      -        }
      -      }
      -    })
      -  }
      -  common.finish(this)
      -}
      -
      -
      -GlobSync.prototype._process = function (pattern, index, inGlobStar) {
      -  assert.ok(this instanceof GlobSync)
      -
      -  // Get the first [n] parts of pattern that are all strings.
      -  var n = 0
      -  while (typeof pattern[n] === 'string') {
      -    n ++
      -  }
      -  // now n is the index of the first one that is *not* a string.
      -
      -  // See if there's anything else
      -  var prefix
      -  switch (n) {
      -    // if not, then this is rather simple
      -    case pattern.length:
      -      this._processSimple(pattern.join('/'), index)
      -      return
      -
      -    case 0:
      -      // pattern *starts* with some non-trivial item.
      -      // going to readdir(cwd), but not include the prefix in matches.
      -      prefix = null
      -      break
      -
      -    default:
      -      // pattern has some string bits in the front.
      -      // whatever it starts with, whether that's 'absolute' like /foo/bar,
      -      // or 'relative' like '../baz'
      -      prefix = pattern.slice(0, n).join('/')
      -      break
      -  }
      -
      -  var remain = pattern.slice(n)
      -
      -  // get the list of entries.
      -  var read
      -  if (prefix === null)
      -    read = '.'
      -  else if (isAbsolute(prefix) ||
      -      isAbsolute(pattern.map(function (p) {
      -        return typeof p === 'string' ? p : '[*]'
      -      }).join('/'))) {
      -    if (!prefix || !isAbsolute(prefix))
      -      prefix = '/' + prefix
      -    read = prefix
      -  } else
      -    read = prefix
      -
      -  var abs = this._makeAbs(read)
      -
      -  //if ignored, skip processing
      -  if (childrenIgnored(this, read))
      -    return
      -
      -  var isGlobStar = remain[0] === minimatch.GLOBSTAR
      -  if (isGlobStar)
      -    this._processGlobStar(prefix, read, abs, remain, index, inGlobStar)
      -  else
      -    this._processReaddir(prefix, read, abs, remain, index, inGlobStar)
      -}
      -
      -
      -GlobSync.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar) {
      -  var entries = this._readdir(abs, inGlobStar)
      -
      -  // if the abs isn't a dir, then nothing can match!
      -  if (!entries)
      -    return
      -
      -  // It will only match dot entries if it starts with a dot, or if
      -  // dot is set.  Stuff like @(.foo|.bar) isn't allowed.
      -  var pn = remain[0]
      -  var negate = !!this.minimatch.negate
      -  var rawGlob = pn._glob
      -  var dotOk = this.dot || rawGlob.charAt(0) === '.'
      -
      -  var matchedEntries = []
      -  for (var i = 0; i < entries.length; i++) {
      -    var e = entries[i]
      -    if (e.charAt(0) !== '.' || dotOk) {
      -      var m
      -      if (negate && !prefix) {
      -        m = !e.match(pn)
      -      } else {
      -        m = e.match(pn)
      -      }
      -      if (m)
      -        matchedEntries.push(e)
      -    }
      -  }
      -
      -  var len = matchedEntries.length
      -  // If there are no matched entries, then nothing matches.
      -  if (len === 0)
      -    return
      -
      -  // if this is the last remaining pattern bit, then no need for
      -  // an additional stat *unless* the user has specified mark or
      -  // stat explicitly.  We know they exist, since readdir returned
      -  // them.
      -
      -  if (remain.length === 1 && !this.mark && !this.stat) {
      -    if (!this.matches[index])
      -      this.matches[index] = Object.create(null)
      -
      -    for (var i = 0; i < len; i ++) {
      -      var e = matchedEntries[i]
      -      if (prefix) {
      -        if (prefix.slice(-1) !== '/')
      -          e = prefix + '/' + e
      -        else
      -          e = prefix + e
      -      }
      -
      -      if (e.charAt(0) === '/' && !this.nomount) {
      -        e = path.join(this.root, e)
      -      }
      -      this._emitMatch(index, e)
      -    }
      -    // This was the last one, and no stats were needed
      -    return
      -  }
      -
      -  // now test all matched entries as stand-ins for that part
      -  // of the pattern.
      -  remain.shift()
      -  for (var i = 0; i < len; i ++) {
      -    var e = matchedEntries[i]
      -    var newPattern
      -    if (prefix)
      -      newPattern = [prefix, e]
      -    else
      -      newPattern = [e]
      -    this._process(newPattern.concat(remain), index, inGlobStar)
      -  }
      -}
      -
      -
      -GlobSync.prototype._emitMatch = function (index, e) {
      -  if (isIgnored(this, e))
      -    return
      -
      -  var abs = this._makeAbs(e)
      -
      -  if (this.mark)
      -    e = this._mark(e)
      -
      -  if (this.absolute) {
      -    e = abs
      -  }
      -
      -  if (this.matches[index][e])
      -    return
      -
      -  if (this.nodir) {
      -    var c = this.cache[abs]
      -    if (c === 'DIR' || Array.isArray(c))
      -      return
      -  }
      -
      -  this.matches[index][e] = true
      -
      -  if (this.stat)
      -    this._stat(e)
      -}
      -
      -
      -GlobSync.prototype._readdirInGlobStar = function (abs) {
      -  // follow all symlinked directories forever
      -  // just proceed as if this is a non-globstar situation
      -  if (this.follow)
      -    return this._readdir(abs, false)
      -
      -  var entries
      -  var lstat
      -  var stat
      -  try {
      -    lstat = this.fs.lstatSync(abs)
      -  } catch (er) {
      -    if (er.code === 'ENOENT') {
      -      // lstat failed, doesn't exist
      -      return null
      -    }
      -  }
      -
      -  var isSym = lstat && lstat.isSymbolicLink()
      -  this.symlinks[abs] = isSym
      -
      -  // If it's not a symlink or a dir, then it's definitely a regular file.
      -  // don't bother doing a readdir in that case.
      -  if (!isSym && lstat && !lstat.isDirectory())
      -    this.cache[abs] = 'FILE'
      -  else
      -    entries = this._readdir(abs, false)
      -
      -  return entries
      -}
      -
      -GlobSync.prototype._readdir = function (abs, inGlobStar) {
      -  var entries
      -
      -  if (inGlobStar && !ownProp(this.symlinks, abs))
      -    return this._readdirInGlobStar(abs)
      -
      -  if (ownProp(this.cache, abs)) {
      -    var c = this.cache[abs]
      -    if (!c || c === 'FILE')
      -      return null
      -
      -    if (Array.isArray(c))
      -      return c
      -  }
      -
      -  try {
      -    return this._readdirEntries(abs, this.fs.readdirSync(abs))
      -  } catch (er) {
      -    this._readdirError(abs, er)
      -    return null
      -  }
      -}
      -
      -GlobSync.prototype._readdirEntries = function (abs, entries) {
      -  // if we haven't asked to stat everything, then just
      -  // assume that everything in there exists, so we can avoid
      -  // having to stat it a second time.
      -  if (!this.mark && !this.stat) {
      -    for (var i = 0; i < entries.length; i ++) {
      -      var e = entries[i]
      -      if (abs === '/')
      -        e = abs + e
      -      else
      -        e = abs + '/' + e
      -      this.cache[e] = true
      -    }
      -  }
      -
      -  this.cache[abs] = entries
      -
      -  // mark and cache dir-ness
      -  return entries
      -}
      -
      -GlobSync.prototype._readdirError = function (f, er) {
      -  // handle errors, and cache the information
      -  switch (er.code) {
      -    case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205
      -    case 'ENOTDIR': // totally normal. means it *does* exist.
      -      var abs = this._makeAbs(f)
      -      this.cache[abs] = 'FILE'
      -      if (abs === this.cwdAbs) {
      -        var error = new Error(er.code + ' invalid cwd ' + this.cwd)
      -        error.path = this.cwd
      -        error.code = er.code
      -        throw error
      -      }
      -      break
      -
      -    case 'ENOENT': // not terribly unusual
      -    case 'ELOOP':
      -    case 'ENAMETOOLONG':
      -    case 'UNKNOWN':
      -      this.cache[this._makeAbs(f)] = false
      -      break
      -
      -    default: // some unusual error.  Treat as failure.
      -      this.cache[this._makeAbs(f)] = false
      -      if (this.strict)
      -        throw er
      -      if (!this.silent)
      -        console.error('glob error', er)
      -      break
      -  }
      -}
      -
      -GlobSync.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar) {
      -
      -  var entries = this._readdir(abs, inGlobStar)
      -
      -  // no entries means not a dir, so it can never have matches
      -  // foo.txt/** doesn't match foo.txt
      -  if (!entries)
      -    return
      -
      -  // test without the globstar, and with every child both below
      -  // and replacing the globstar.
      -  var remainWithoutGlobStar = remain.slice(1)
      -  var gspref = prefix ? [ prefix ] : []
      -  var noGlobStar = gspref.concat(remainWithoutGlobStar)
      -
      -  // the noGlobStar pattern exits the inGlobStar state
      -  this._process(noGlobStar, index, false)
      -
      -  var len = entries.length
      -  var isSym = this.symlinks[abs]
      -
      -  // If it's a symlink, and we're in a globstar, then stop
      -  if (isSym && inGlobStar)
      -    return
      -
      -  for (var i = 0; i < len; i++) {
      -    var e = entries[i]
      -    if (e.charAt(0) === '.' && !this.dot)
      -      continue
      -
      -    // these two cases enter the inGlobStar state
      -    var instead = gspref.concat(entries[i], remainWithoutGlobStar)
      -    this._process(instead, index, true)
      -
      -    var below = gspref.concat(entries[i], remain)
      -    this._process(below, index, true)
      -  }
      -}
      -
      -GlobSync.prototype._processSimple = function (prefix, index) {
      -  // XXX review this.  Shouldn't it be doing the mounting etc
      -  // before doing stat?  kinda weird?
      -  var exists = this._stat(prefix)
      -
      -  if (!this.matches[index])
      -    this.matches[index] = Object.create(null)
      -
      -  // If it doesn't exist, then just mark the lack of results
      -  if (!exists)
      -    return
      -
      -  if (prefix && isAbsolute(prefix) && !this.nomount) {
      -    var trail = /[\/\\]$/.test(prefix)
      -    if (prefix.charAt(0) === '/') {
      -      prefix = path.join(this.root, prefix)
      -    } else {
      -      prefix = path.resolve(this.root, prefix)
      -      if (trail)
      -        prefix += '/'
      -    }
      -  }
      -
      -  if (process.platform === 'win32')
      -    prefix = prefix.replace(/\\/g, '/')
      -
      -  // Mark this as a match
      -  this._emitMatch(index, prefix)
      -}
      -
      -// Returns either 'DIR', 'FILE', or false
      -GlobSync.prototype._stat = function (f) {
      -  var abs = this._makeAbs(f)
      -  var needDir = f.slice(-1) === '/'
      -
      -  if (f.length > this.maxLength)
      -    return false
      -
      -  if (!this.stat && ownProp(this.cache, abs)) {
      -    var c = this.cache[abs]
      -
      -    if (Array.isArray(c))
      -      c = 'DIR'
      -
      -    // It exists, but maybe not how we need it
      -    if (!needDir || c === 'DIR')
      -      return c
      -
      -    if (needDir && c === 'FILE')
      -      return false
      -
      -    // otherwise we have to stat, because maybe c=true
      -    // if we know it exists, but not what it is.
      -  }
      -
      -  var exists
      -  var stat = this.statCache[abs]
      -  if (!stat) {
      -    var lstat
      -    try {
      -      lstat = this.fs.lstatSync(abs)
      -    } catch (er) {
      -      if (er && (er.code === 'ENOENT' || er.code === 'ENOTDIR')) {
      -        this.statCache[abs] = false
      -        return false
      -      }
      -    }
      -
      -    if (lstat && lstat.isSymbolicLink()) {
      -      try {
      -        stat = this.fs.statSync(abs)
      -      } catch (er) {
      -        stat = lstat
      -      }
      -    } else {
      -      stat = lstat
      -    }
      -  }
      -
      -  this.statCache[abs] = stat
      -
      -  var c = true
      -  if (stat)
      -    c = stat.isDirectory() ? 'DIR' : 'FILE'
      -
      -  this.cache[abs] = this.cache[abs] || c
      -
      -  if (needDir && c === 'FILE')
      -    return false
      -
      -  return c
      -}
      -
      -GlobSync.prototype._mark = function (p) {
      -  return common.mark(this, p)
      -}
      -
      -GlobSync.prototype._makeAbs = function (f) {
      -  return common.makeAbs(this, f)
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/lru-cache/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/lru-cache/LICENSE
      deleted file mode 100644
      index f785757cd63f86..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/lru-cache/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) 2010-2023 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/lru-cache/index.js b/deps/npm/node_modules/node-gyp/node_modules/lru-cache/index.js
      deleted file mode 100644
      index 48e99fe5e5a70c..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/lru-cache/index.js
      +++ /dev/null
      @@ -1,1227 +0,0 @@
      -const perf =
      -  typeof performance === 'object' &&
      -  performance &&
      -  typeof performance.now === 'function'
      -    ? performance
      -    : Date
      -
      -const hasAbortController = typeof AbortController === 'function'
      -
      -// minimal backwards-compatibility polyfill
      -// this doesn't have nearly all the checks and whatnot that
      -// actual AbortController/Signal has, but it's enough for
      -// our purposes, and if used properly, behaves the same.
      -const AC = hasAbortController
      -  ? AbortController
      -  : class AbortController {
      -      constructor() {
      -        this.signal = new AS()
      -      }
      -      abort(reason = new Error('This operation was aborted')) {
      -        this.signal.reason = this.signal.reason || reason
      -        this.signal.aborted = true
      -        this.signal.dispatchEvent({
      -          type: 'abort',
      -          target: this.signal,
      -        })
      -      }
      -    }
      -
      -const hasAbortSignal = typeof AbortSignal === 'function'
      -// Some polyfills put this on the AC class, not global
      -const hasACAbortSignal = typeof AC.AbortSignal === 'function'
      -const AS = hasAbortSignal
      -  ? AbortSignal
      -  : hasACAbortSignal
      -  ? AC.AbortController
      -  : class AbortSignal {
      -      constructor() {
      -        this.reason = undefined
      -        this.aborted = false
      -        this._listeners = []
      -      }
      -      dispatchEvent(e) {
      -        if (e.type === 'abort') {
      -          this.aborted = true
      -          this.onabort(e)
      -          this._listeners.forEach(f => f(e), this)
      -        }
      -      }
      -      onabort() {}
      -      addEventListener(ev, fn) {
      -        if (ev === 'abort') {
      -          this._listeners.push(fn)
      -        }
      -      }
      -      removeEventListener(ev, fn) {
      -        if (ev === 'abort') {
      -          this._listeners = this._listeners.filter(f => f !== fn)
      -        }
      -      }
      -    }
      -
      -const warned = new Set()
      -const deprecatedOption = (opt, instead) => {
      -  const code = `LRU_CACHE_OPTION_${opt}`
      -  if (shouldWarn(code)) {
      -    warn(code, `${opt} option`, `options.${instead}`, LRUCache)
      -  }
      -}
      -const deprecatedMethod = (method, instead) => {
      -  const code = `LRU_CACHE_METHOD_${method}`
      -  if (shouldWarn(code)) {
      -    const { prototype } = LRUCache
      -    const { get } = Object.getOwnPropertyDescriptor(prototype, method)
      -    warn(code, `${method} method`, `cache.${instead}()`, get)
      -  }
      -}
      -const deprecatedProperty = (field, instead) => {
      -  const code = `LRU_CACHE_PROPERTY_${field}`
      -  if (shouldWarn(code)) {
      -    const { prototype } = LRUCache
      -    const { get } = Object.getOwnPropertyDescriptor(prototype, field)
      -    warn(code, `${field} property`, `cache.${instead}`, get)
      -  }
      -}
      -
      -const emitWarning = (...a) => {
      -  typeof process === 'object' &&
      -  process &&
      -  typeof process.emitWarning === 'function'
      -    ? process.emitWarning(...a)
      -    : console.error(...a)
      -}
      -
      -const shouldWarn = code => !warned.has(code)
      -
      -const warn = (code, what, instead, fn) => {
      -  warned.add(code)
      -  const msg = `The ${what} is deprecated. Please use ${instead} instead.`
      -  emitWarning(msg, 'DeprecationWarning', code, fn)
      -}
      -
      -const isPosInt = n => n && n === Math.floor(n) && n > 0 && isFinite(n)
      -
      -/* istanbul ignore next - This is a little bit ridiculous, tbh.
      - * The maximum array length is 2^32-1 or thereabouts on most JS impls.
      - * And well before that point, you're caching the entire world, I mean,
      - * that's ~32GB of just integers for the next/prev links, plus whatever
      - * else to hold that many keys and values.  Just filling the memory with
      - * zeroes at init time is brutal when you get that big.
      - * But why not be complete?
      - * Maybe in the future, these limits will have expanded. */
      -const getUintArray = max =>
      -  !isPosInt(max)
      -    ? null
      -    : max <= Math.pow(2, 8)
      -    ? Uint8Array
      -    : max <= Math.pow(2, 16)
      -    ? Uint16Array
      -    : max <= Math.pow(2, 32)
      -    ? Uint32Array
      -    : max <= Number.MAX_SAFE_INTEGER
      -    ? ZeroArray
      -    : null
      -
      -class ZeroArray extends Array {
      -  constructor(size) {
      -    super(size)
      -    this.fill(0)
      -  }
      -}
      -
      -class Stack {
      -  constructor(max) {
      -    if (max === 0) {
      -      return []
      -    }
      -    const UintArray = getUintArray(max)
      -    this.heap = new UintArray(max)
      -    this.length = 0
      -  }
      -  push(n) {
      -    this.heap[this.length++] = n
      -  }
      -  pop() {
      -    return this.heap[--this.length]
      -  }
      -}
      -
      -class LRUCache {
      -  constructor(options = {}) {
      -    const {
      -      max = 0,
      -      ttl,
      -      ttlResolution = 1,
      -      ttlAutopurge,
      -      updateAgeOnGet,
      -      updateAgeOnHas,
      -      allowStale,
      -      dispose,
      -      disposeAfter,
      -      noDisposeOnSet,
      -      noUpdateTTL,
      -      maxSize = 0,
      -      maxEntrySize = 0,
      -      sizeCalculation,
      -      fetchMethod,
      -      fetchContext,
      -      noDeleteOnFetchRejection,
      -      noDeleteOnStaleGet,
      -      allowStaleOnFetchRejection,
      -      allowStaleOnFetchAbort,
      -      ignoreFetchAbort,
      -    } = options
      -
      -    // deprecated options, don't trigger a warning for getting them if
      -    // the thing being passed in is another LRUCache we're copying.
      -    const { length, maxAge, stale } =
      -      options instanceof LRUCache ? {} : options
      -
      -    if (max !== 0 && !isPosInt(max)) {
      -      throw new TypeError('max option must be a nonnegative integer')
      -    }
      -
      -    const UintArray = max ? getUintArray(max) : Array
      -    if (!UintArray) {
      -      throw new Error('invalid max value: ' + max)
      -    }
      -
      -    this.max = max
      -    this.maxSize = maxSize
      -    this.maxEntrySize = maxEntrySize || this.maxSize
      -    this.sizeCalculation = sizeCalculation || length
      -    if (this.sizeCalculation) {
      -      if (!this.maxSize && !this.maxEntrySize) {
      -        throw new TypeError(
      -          'cannot set sizeCalculation without setting maxSize or maxEntrySize'
      -        )
      -      }
      -      if (typeof this.sizeCalculation !== 'function') {
      -        throw new TypeError('sizeCalculation set to non-function')
      -      }
      -    }
      -
      -    this.fetchMethod = fetchMethod || null
      -    if (this.fetchMethod && typeof this.fetchMethod !== 'function') {
      -      throw new TypeError(
      -        'fetchMethod must be a function if specified'
      -      )
      -    }
      -
      -    this.fetchContext = fetchContext
      -    if (!this.fetchMethod && fetchContext !== undefined) {
      -      throw new TypeError(
      -        'cannot set fetchContext without fetchMethod'
      -      )
      -    }
      -
      -    this.keyMap = new Map()
      -    this.keyList = new Array(max).fill(null)
      -    this.valList = new Array(max).fill(null)
      -    this.next = new UintArray(max)
      -    this.prev = new UintArray(max)
      -    this.head = 0
      -    this.tail = 0
      -    this.free = new Stack(max)
      -    this.initialFill = 1
      -    this.size = 0
      -
      -    if (typeof dispose === 'function') {
      -      this.dispose = dispose
      -    }
      -    if (typeof disposeAfter === 'function') {
      -      this.disposeAfter = disposeAfter
      -      this.disposed = []
      -    } else {
      -      this.disposeAfter = null
      -      this.disposed = null
      -    }
      -    this.noDisposeOnSet = !!noDisposeOnSet
      -    this.noUpdateTTL = !!noUpdateTTL
      -    this.noDeleteOnFetchRejection = !!noDeleteOnFetchRejection
      -    this.allowStaleOnFetchRejection = !!allowStaleOnFetchRejection
      -    this.allowStaleOnFetchAbort = !!allowStaleOnFetchAbort
      -    this.ignoreFetchAbort = !!ignoreFetchAbort
      -
      -    // NB: maxEntrySize is set to maxSize if it's set
      -    if (this.maxEntrySize !== 0) {
      -      if (this.maxSize !== 0) {
      -        if (!isPosInt(this.maxSize)) {
      -          throw new TypeError(
      -            'maxSize must be a positive integer if specified'
      -          )
      -        }
      -      }
      -      if (!isPosInt(this.maxEntrySize)) {
      -        throw new TypeError(
      -          'maxEntrySize must be a positive integer if specified'
      -        )
      -      }
      -      this.initializeSizeTracking()
      -    }
      -
      -    this.allowStale = !!allowStale || !!stale
      -    this.noDeleteOnStaleGet = !!noDeleteOnStaleGet
      -    this.updateAgeOnGet = !!updateAgeOnGet
      -    this.updateAgeOnHas = !!updateAgeOnHas
      -    this.ttlResolution =
      -      isPosInt(ttlResolution) || ttlResolution === 0
      -        ? ttlResolution
      -        : 1
      -    this.ttlAutopurge = !!ttlAutopurge
      -    this.ttl = ttl || maxAge || 0
      -    if (this.ttl) {
      -      if (!isPosInt(this.ttl)) {
      -        throw new TypeError(
      -          'ttl must be a positive integer if specified'
      -        )
      -      }
      -      this.initializeTTLTracking()
      -    }
      -
      -    // do not allow completely unbounded caches
      -    if (this.max === 0 && this.ttl === 0 && this.maxSize === 0) {
      -      throw new TypeError(
      -        'At least one of max, maxSize, or ttl is required'
      -      )
      -    }
      -    if (!this.ttlAutopurge && !this.max && !this.maxSize) {
      -      const code = 'LRU_CACHE_UNBOUNDED'
      -      if (shouldWarn(code)) {
      -        warned.add(code)
      -        const msg =
      -          'TTL caching without ttlAutopurge, max, or maxSize can ' +
      -          'result in unbounded memory consumption.'
      -        emitWarning(msg, 'UnboundedCacheWarning', code, LRUCache)
      -      }
      -    }
      -
      -    if (stale) {
      -      deprecatedOption('stale', 'allowStale')
      -    }
      -    if (maxAge) {
      -      deprecatedOption('maxAge', 'ttl')
      -    }
      -    if (length) {
      -      deprecatedOption('length', 'sizeCalculation')
      -    }
      -  }
      -
      -  getRemainingTTL(key) {
      -    return this.has(key, { updateAgeOnHas: false }) ? Infinity : 0
      -  }
      -
      -  initializeTTLTracking() {
      -    this.ttls = new ZeroArray(this.max)
      -    this.starts = new ZeroArray(this.max)
      -
      -    this.setItemTTL = (index, ttl, start = perf.now()) => {
      -      this.starts[index] = ttl !== 0 ? start : 0
      -      this.ttls[index] = ttl
      -      if (ttl !== 0 && this.ttlAutopurge) {
      -        const t = setTimeout(() => {
      -          if (this.isStale(index)) {
      -            this.delete(this.keyList[index])
      -          }
      -        }, ttl + 1)
      -        /* istanbul ignore else - unref() not supported on all platforms */
      -        if (t.unref) {
      -          t.unref()
      -        }
      -      }
      -    }
      -
      -    this.updateItemAge = index => {
      -      this.starts[index] = this.ttls[index] !== 0 ? perf.now() : 0
      -    }
      -
      -    this.statusTTL = (status, index) => {
      -      if (status) {
      -        status.ttl = this.ttls[index]
      -        status.start = this.starts[index]
      -        status.now = cachedNow || getNow()
      -        status.remainingTTL = status.now + status.ttl - status.start
      -      }
      -    }
      -
      -    // debounce calls to perf.now() to 1s so we're not hitting
      -    // that costly call repeatedly.
      -    let cachedNow = 0
      -    const getNow = () => {
      -      const n = perf.now()
      -      if (this.ttlResolution > 0) {
      -        cachedNow = n
      -        const t = setTimeout(
      -          () => (cachedNow = 0),
      -          this.ttlResolution
      -        )
      -        /* istanbul ignore else - not available on all platforms */
      -        if (t.unref) {
      -          t.unref()
      -        }
      -      }
      -      return n
      -    }
      -
      -    this.getRemainingTTL = key => {
      -      const index = this.keyMap.get(key)
      -      if (index === undefined) {
      -        return 0
      -      }
      -      return this.ttls[index] === 0 || this.starts[index] === 0
      -        ? Infinity
      -        : this.starts[index] +
      -            this.ttls[index] -
      -            (cachedNow || getNow())
      -    }
      -
      -    this.isStale = index => {
      -      return (
      -        this.ttls[index] !== 0 &&
      -        this.starts[index] !== 0 &&
      -        (cachedNow || getNow()) - this.starts[index] >
      -          this.ttls[index]
      -      )
      -    }
      -  }
      -  updateItemAge(_index) {}
      -  statusTTL(_status, _index) {}
      -  setItemTTL(_index, _ttl, _start) {}
      -  isStale(_index) {
      -    return false
      -  }
      -
      -  initializeSizeTracking() {
      -    this.calculatedSize = 0
      -    this.sizes = new ZeroArray(this.max)
      -    this.removeItemSize = index => {
      -      this.calculatedSize -= this.sizes[index]
      -      this.sizes[index] = 0
      -    }
      -    this.requireSize = (k, v, size, sizeCalculation) => {
      -      // provisionally accept background fetches.
      -      // actual value size will be checked when they return.
      -      if (this.isBackgroundFetch(v)) {
      -        return 0
      -      }
      -      if (!isPosInt(size)) {
      -        if (sizeCalculation) {
      -          if (typeof sizeCalculation !== 'function') {
      -            throw new TypeError('sizeCalculation must be a function')
      -          }
      -          size = sizeCalculation(v, k)
      -          if (!isPosInt(size)) {
      -            throw new TypeError(
      -              'sizeCalculation return invalid (expect positive integer)'
      -            )
      -          }
      -        } else {
      -          throw new TypeError(
      -            'invalid size value (must be positive integer). ' +
      -              'When maxSize or maxEntrySize is used, sizeCalculation or size ' +
      -              'must be set.'
      -          )
      -        }
      -      }
      -      return size
      -    }
      -    this.addItemSize = (index, size, status) => {
      -      this.sizes[index] = size
      -      if (this.maxSize) {
      -        const maxSize = this.maxSize - this.sizes[index]
      -        while (this.calculatedSize > maxSize) {
      -          this.evict(true)
      -        }
      -      }
      -      this.calculatedSize += this.sizes[index]
      -      if (status) {
      -        status.entrySize = size
      -        status.totalCalculatedSize = this.calculatedSize
      -      }
      -    }
      -  }
      -  removeItemSize(_index) {}
      -  addItemSize(_index, _size) {}
      -  requireSize(_k, _v, size, sizeCalculation) {
      -    if (size || sizeCalculation) {
      -      throw new TypeError(
      -        'cannot set size without setting maxSize or maxEntrySize on cache'
      -      )
      -    }
      -  }
      -
      -  *indexes({ allowStale = this.allowStale } = {}) {
      -    if (this.size) {
      -      for (let i = this.tail; true; ) {
      -        if (!this.isValidIndex(i)) {
      -          break
      -        }
      -        if (allowStale || !this.isStale(i)) {
      -          yield i
      -        }
      -        if (i === this.head) {
      -          break
      -        } else {
      -          i = this.prev[i]
      -        }
      -      }
      -    }
      -  }
      -
      -  *rindexes({ allowStale = this.allowStale } = {}) {
      -    if (this.size) {
      -      for (let i = this.head; true; ) {
      -        if (!this.isValidIndex(i)) {
      -          break
      -        }
      -        if (allowStale || !this.isStale(i)) {
      -          yield i
      -        }
      -        if (i === this.tail) {
      -          break
      -        } else {
      -          i = this.next[i]
      -        }
      -      }
      -    }
      -  }
      -
      -  isValidIndex(index) {
      -    return (
      -      index !== undefined &&
      -      this.keyMap.get(this.keyList[index]) === index
      -    )
      -  }
      -
      -  *entries() {
      -    for (const i of this.indexes()) {
      -      if (
      -        this.valList[i] !== undefined &&
      -        this.keyList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield [this.keyList[i], this.valList[i]]
      -      }
      -    }
      -  }
      -  *rentries() {
      -    for (const i of this.rindexes()) {
      -      if (
      -        this.valList[i] !== undefined &&
      -        this.keyList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield [this.keyList[i], this.valList[i]]
      -      }
      -    }
      -  }
      -
      -  *keys() {
      -    for (const i of this.indexes()) {
      -      if (
      -        this.keyList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield this.keyList[i]
      -      }
      -    }
      -  }
      -  *rkeys() {
      -    for (const i of this.rindexes()) {
      -      if (
      -        this.keyList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield this.keyList[i]
      -      }
      -    }
      -  }
      -
      -  *values() {
      -    for (const i of this.indexes()) {
      -      if (
      -        this.valList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield this.valList[i]
      -      }
      -    }
      -  }
      -  *rvalues() {
      -    for (const i of this.rindexes()) {
      -      if (
      -        this.valList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield this.valList[i]
      -      }
      -    }
      -  }
      -
      -  [Symbol.iterator]() {
      -    return this.entries()
      -  }
      -
      -  find(fn, getOptions) {
      -    for (const i of this.indexes()) {
      -      const v = this.valList[i]
      -      const value = this.isBackgroundFetch(v)
      -        ? v.__staleWhileFetching
      -        : v
      -      if (value === undefined) continue
      -      if (fn(value, this.keyList[i], this)) {
      -        return this.get(this.keyList[i], getOptions)
      -      }
      -    }
      -  }
      -
      -  forEach(fn, thisp = this) {
      -    for (const i of this.indexes()) {
      -      const v = this.valList[i]
      -      const value = this.isBackgroundFetch(v)
      -        ? v.__staleWhileFetching
      -        : v
      -      if (value === undefined) continue
      -      fn.call(thisp, value, this.keyList[i], this)
      -    }
      -  }
      -
      -  rforEach(fn, thisp = this) {
      -    for (const i of this.rindexes()) {
      -      const v = this.valList[i]
      -      const value = this.isBackgroundFetch(v)
      -        ? v.__staleWhileFetching
      -        : v
      -      if (value === undefined) continue
      -      fn.call(thisp, value, this.keyList[i], this)
      -    }
      -  }
      -
      -  get prune() {
      -    deprecatedMethod('prune', 'purgeStale')
      -    return this.purgeStale
      -  }
      -
      -  purgeStale() {
      -    let deleted = false
      -    for (const i of this.rindexes({ allowStale: true })) {
      -      if (this.isStale(i)) {
      -        this.delete(this.keyList[i])
      -        deleted = true
      -      }
      -    }
      -    return deleted
      -  }
      -
      -  dump() {
      -    const arr = []
      -    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
      -      if (value === undefined) continue
      -      const entry = { value }
      -      if (this.ttls) {
      -        entry.ttl = this.ttls[i]
      -        // always dump the start relative to a portable timestamp
      -        // it's ok for this to be a bit slow, it's a rare operation.
      -        const age = perf.now() - this.starts[i]
      -        entry.start = Math.floor(Date.now() - age)
      -      }
      -      if (this.sizes) {
      -        entry.size = this.sizes[i]
      -      }
      -      arr.unshift([key, entry])
      -    }
      -    return arr
      -  }
      -
      -  load(arr) {
      -    this.clear()
      -    for (const [key, entry] of arr) {
      -      if (entry.start) {
      -        // entry.start is a portable timestamp, but we may be using
      -        // node's performance.now(), so calculate the offset.
      -        // it's ok for this to be a bit slow, it's a rare operation.
      -        const age = Date.now() - entry.start
      -        entry.start = perf.now() - age
      -      }
      -      this.set(key, entry.value, entry)
      -    }
      -  }
      -
      -  dispose(_v, _k, _reason) {}
      -
      -  set(
      -    k,
      -    v,
      -    {
      -      ttl = this.ttl,
      -      start,
      -      noDisposeOnSet = this.noDisposeOnSet,
      -      size = 0,
      -      sizeCalculation = this.sizeCalculation,
      -      noUpdateTTL = this.noUpdateTTL,
      -      status,
      -    } = {}
      -  ) {
      -    size = this.requireSize(k, v, size, sizeCalculation)
      -    // if the item doesn't fit, don't do anything
      -    // NB: maxEntrySize set to maxSize by default
      -    if (this.maxEntrySize && size > this.maxEntrySize) {
      -      if (status) {
      -        status.set = 'miss'
      -        status.maxEntrySizeExceeded = true
      -      }
      -      // have to delete, in case a background fetch is there already.
      -      // in non-async cases, this is a no-op
      -      this.delete(k)
      -      return this
      -    }
      -    let index = this.size === 0 ? undefined : this.keyMap.get(k)
      -    if (index === undefined) {
      -      // addition
      -      index = this.newIndex()
      -      this.keyList[index] = k
      -      this.valList[index] = v
      -      this.keyMap.set(k, index)
      -      this.next[this.tail] = index
      -      this.prev[index] = this.tail
      -      this.tail = index
      -      this.size++
      -      this.addItemSize(index, size, status)
      -      if (status) {
      -        status.set = 'add'
      -      }
      -      noUpdateTTL = false
      -    } else {
      -      // update
      -      this.moveToTail(index)
      -      const oldVal = this.valList[index]
      -      if (v !== oldVal) {
      -        if (this.isBackgroundFetch(oldVal)) {
      -          oldVal.__abortController.abort(new Error('replaced'))
      -        } else {
      -          if (!noDisposeOnSet) {
      -            this.dispose(oldVal, k, 'set')
      -            if (this.disposeAfter) {
      -              this.disposed.push([oldVal, k, 'set'])
      -            }
      -          }
      -        }
      -        this.removeItemSize(index)
      -        this.valList[index] = v
      -        this.addItemSize(index, size, status)
      -        if (status) {
      -          status.set = 'replace'
      -          const oldValue =
      -            oldVal && this.isBackgroundFetch(oldVal)
      -              ? oldVal.__staleWhileFetching
      -              : oldVal
      -          if (oldValue !== undefined) status.oldValue = oldValue
      -        }
      -      } else if (status) {
      -        status.set = 'update'
      -      }
      -    }
      -    if (ttl !== 0 && this.ttl === 0 && !this.ttls) {
      -      this.initializeTTLTracking()
      -    }
      -    if (!noUpdateTTL) {
      -      this.setItemTTL(index, ttl, start)
      -    }
      -    this.statusTTL(status, index)
      -    if (this.disposeAfter) {
      -      while (this.disposed.length) {
      -        this.disposeAfter(...this.disposed.shift())
      -      }
      -    }
      -    return this
      -  }
      -
      -  newIndex() {
      -    if (this.size === 0) {
      -      return this.tail
      -    }
      -    if (this.size === this.max && this.max !== 0) {
      -      return this.evict(false)
      -    }
      -    if (this.free.length !== 0) {
      -      return this.free.pop()
      -    }
      -    // initial fill, just keep writing down the list
      -    return this.initialFill++
      -  }
      -
      -  pop() {
      -    if (this.size) {
      -      const val = this.valList[this.head]
      -      this.evict(true)
      -      return val
      -    }
      -  }
      -
      -  evict(free) {
      -    const head = this.head
      -    const k = this.keyList[head]
      -    const v = this.valList[head]
      -    if (this.isBackgroundFetch(v)) {
      -      v.__abortController.abort(new Error('evicted'))
      -    } else {
      -      this.dispose(v, k, 'evict')
      -      if (this.disposeAfter) {
      -        this.disposed.push([v, k, 'evict'])
      -      }
      -    }
      -    this.removeItemSize(head)
      -    // if we aren't about to use the index, then null these out
      -    if (free) {
      -      this.keyList[head] = null
      -      this.valList[head] = null
      -      this.free.push(head)
      -    }
      -    this.head = this.next[head]
      -    this.keyMap.delete(k)
      -    this.size--
      -    return head
      -  }
      -
      -  has(k, { updateAgeOnHas = this.updateAgeOnHas, status } = {}) {
      -    const index = this.keyMap.get(k)
      -    if (index !== undefined) {
      -      if (!this.isStale(index)) {
      -        if (updateAgeOnHas) {
      -          this.updateItemAge(index)
      -        }
      -        if (status) status.has = 'hit'
      -        this.statusTTL(status, index)
      -        return true
      -      } else if (status) {
      -        status.has = 'stale'
      -        this.statusTTL(status, index)
      -      }
      -    } else if (status) {
      -      status.has = 'miss'
      -    }
      -    return false
      -  }
      -
      -  // like get(), but without any LRU updating or TTL expiration
      -  peek(k, { allowStale = this.allowStale } = {}) {
      -    const index = this.keyMap.get(k)
      -    if (index !== undefined && (allowStale || !this.isStale(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
      -    }
      -  }
      -
      -  backgroundFetch(k, index, options, context) {
      -    const v = index === undefined ? undefined : this.valList[index]
      -    if (this.isBackgroundFetch(v)) {
      -      return v
      -    }
      -    const ac = new AC()
      -    if (options.signal) {
      -      options.signal.addEventListener('abort', () =>
      -        ac.abort(options.signal.reason)
      -      )
      -    }
      -    const fetchOpts = {
      -      signal: ac.signal,
      -      options,
      -      context,
      -    }
      -    const cb = (v, updateCache = false) => {
      -      const { aborted } = ac.signal
      -      const ignoreAbort = options.ignoreFetchAbort && v !== undefined
      -      if (options.status) {
      -        if (aborted && !updateCache) {
      -          options.status.fetchAborted = true
      -          options.status.fetchError = ac.signal.reason
      -          if (ignoreAbort) options.status.fetchAbortIgnored = true
      -        } else {
      -          options.status.fetchResolved = true
      -        }
      -      }
      -      if (aborted && !ignoreAbort && !updateCache) {
      -        return fetchFail(ac.signal.reason)
      -      }
      -      // either we didn't abort, and are still here, or we did, and ignored
      -      if (this.valList[index] === p) {
      -        if (v === undefined) {
      -          if (p.__staleWhileFetching) {
      -            this.valList[index] = p.__staleWhileFetching
      -          } else {
      -            this.delete(k)
      -          }
      -        } else {
      -          if (options.status) options.status.fetchUpdated = true
      -          this.set(k, v, fetchOpts.options)
      -        }
      -      }
      -      return v
      -    }
      -    const eb = er => {
      -      if (options.status) {
      -        options.status.fetchRejected = true
      -        options.status.fetchError = er
      -      }
      -      return fetchFail(er)
      -    }
      -    const fetchFail = er => {
      -      const { aborted } = ac.signal
      -      const allowStaleAborted =
      -        aborted && options.allowStaleOnFetchAbort
      -      const allowStale =
      -        allowStaleAborted || options.allowStaleOnFetchRejection
      -      const noDelete = allowStale || options.noDeleteOnFetchRejection
      -      if (this.valList[index] === p) {
      -        // if we allow stale on fetch rejections, then we need to ensure that
      -        // the stale value is not removed from the cache when the fetch fails.
      -        const del = !noDelete || p.__staleWhileFetching === undefined
      -        if (del) {
      -          this.delete(k)
      -        } else if (!allowStaleAborted) {
      -          // still replace the *promise* with the stale value,
      -          // since we are done with the promise at this point.
      -          // leave it untouched if we're still waiting for an
      -          // aborted background fetch that hasn't yet returned.
      -          this.valList[index] = p.__staleWhileFetching
      -        }
      -      }
      -      if (allowStale) {
      -        if (options.status && p.__staleWhileFetching !== undefined) {
      -          options.status.returnedStale = true
      -        }
      -        return p.__staleWhileFetching
      -      } else if (p.__returned === p) {
      -        throw er
      -      }
      -    }
      -    const pcall = (res, rej) => {
      -      this.fetchMethod(k, v, fetchOpts).then(v => res(v), rej)
      -      // ignored, we go until we finish, regardless.
      -      // defer check until we are actually aborting,
      -      // so fetchMethod can override.
      -      ac.signal.addEventListener('abort', () => {
      -        if (
      -          !options.ignoreFetchAbort ||
      -          options.allowStaleOnFetchAbort
      -        ) {
      -          res()
      -          // when it eventually resolves, update the cache.
      -          if (options.allowStaleOnFetchAbort) {
      -            res = v => cb(v, true)
      -          }
      -        }
      -      })
      -    }
      -    if (options.status) options.status.fetchDispatched = true
      -    const p = new Promise(pcall).then(cb, eb)
      -    p.__abortController = ac
      -    p.__staleWhileFetching = v
      -    p.__returned = null
      -    if (index === undefined) {
      -      // internal, don't expose status.
      -      this.set(k, p, { ...fetchOpts.options, status: undefined })
      -      index = this.keyMap.get(k)
      -    } else {
      -      this.valList[index] = p
      -    }
      -    return p
      -  }
      -
      -  isBackgroundFetch(p) {
      -    return (
      -      p &&
      -      typeof p === 'object' &&
      -      typeof p.then === 'function' &&
      -      Object.prototype.hasOwnProperty.call(
      -        p,
      -        '__staleWhileFetching'
      -      ) &&
      -      Object.prototype.hasOwnProperty.call(p, '__returned') &&
      -      (p.__returned === p || p.__returned === null)
      -    )
      -  }
      -
      -  // this takes the union of get() and set() opts, because it does both
      -  async fetch(
      -    k,
      -    {
      -      // get options
      -      allowStale = this.allowStale,
      -      updateAgeOnGet = this.updateAgeOnGet,
      -      noDeleteOnStaleGet = this.noDeleteOnStaleGet,
      -      // set options
      -      ttl = this.ttl,
      -      noDisposeOnSet = this.noDisposeOnSet,
      -      size = 0,
      -      sizeCalculation = this.sizeCalculation,
      -      noUpdateTTL = this.noUpdateTTL,
      -      // fetch exclusive options
      -      noDeleteOnFetchRejection = this.noDeleteOnFetchRejection,
      -      allowStaleOnFetchRejection = this.allowStaleOnFetchRejection,
      -      ignoreFetchAbort = this.ignoreFetchAbort,
      -      allowStaleOnFetchAbort = this.allowStaleOnFetchAbort,
      -      fetchContext = this.fetchContext,
      -      forceRefresh = false,
      -      status,
      -      signal,
      -    } = {}
      -  ) {
      -    if (!this.fetchMethod) {
      -      if (status) status.fetch = 'get'
      -      return this.get(k, {
      -        allowStale,
      -        updateAgeOnGet,
      -        noDeleteOnStaleGet,
      -        status,
      -      })
      -    }
      -
      -    const options = {
      -      allowStale,
      -      updateAgeOnGet,
      -      noDeleteOnStaleGet,
      -      ttl,
      -      noDisposeOnSet,
      -      size,
      -      sizeCalculation,
      -      noUpdateTTL,
      -      noDeleteOnFetchRejection,
      -      allowStaleOnFetchRejection,
      -      allowStaleOnFetchAbort,
      -      ignoreFetchAbort,
      -      status,
      -      signal,
      -    }
      -
      -    let index = this.keyMap.get(k)
      -    if (index === undefined) {
      -      if (status) status.fetch = 'miss'
      -      const p = this.backgroundFetch(k, index, options, fetchContext)
      -      return (p.__returned = p)
      -    } else {
      -      // in cache, maybe already fetching
      -      const v = this.valList[index]
      -      if (this.isBackgroundFetch(v)) {
      -        const stale =
      -          allowStale && v.__staleWhileFetching !== undefined
      -        if (status) {
      -          status.fetch = 'inflight'
      -          if (stale) status.returnedStale = true
      -        }
      -        return stale ? v.__staleWhileFetching : (v.__returned = v)
      -      }
      -
      -      // if we force a refresh, that means do NOT serve the cached value,
      -      // unless we are already in the process of refreshing the cache.
      -      const isStale = this.isStale(index)
      -      if (!forceRefresh && !isStale) {
      -        if (status) status.fetch = 'hit'
      -        this.moveToTail(index)
      -        if (updateAgeOnGet) {
      -          this.updateItemAge(index)
      -        }
      -        this.statusTTL(status, index)
      -        return v
      -      }
      -
      -      // ok, it is stale or a forced refresh, and not already fetching.
      -      // refresh the cache.
      -      const p = this.backgroundFetch(k, index, options, fetchContext)
      -      const hasStale = p.__staleWhileFetching !== undefined
      -      const staleVal = hasStale && allowStale
      -      if (status) {
      -        status.fetch = hasStale && isStale ? 'stale' : 'refresh'
      -        if (staleVal && isStale) status.returnedStale = true
      -      }
      -      return staleVal ? p.__staleWhileFetching : (p.__returned = p)
      -    }
      -  }
      -
      -  get(
      -    k,
      -    {
      -      allowStale = this.allowStale,
      -      updateAgeOnGet = this.updateAgeOnGet,
      -      noDeleteOnStaleGet = this.noDeleteOnStaleGet,
      -      status,
      -    } = {}
      -  ) {
      -    const index = this.keyMap.get(k)
      -    if (index !== undefined) {
      -      const value = this.valList[index]
      -      const fetching = this.isBackgroundFetch(value)
      -      this.statusTTL(status, index)
      -      if (this.isStale(index)) {
      -        if (status) status.get = 'stale'
      -        // delete only if not an in-flight background fetch
      -        if (!fetching) {
      -          if (!noDeleteOnStaleGet) {
      -            this.delete(k)
      -          }
      -          if (status) status.returnedStale = allowStale
      -          return allowStale ? value : undefined
      -        } else {
      -          if (status) {
      -            status.returnedStale =
      -              allowStale && value.__staleWhileFetching !== undefined
      -          }
      -          return allowStale ? value.__staleWhileFetching : undefined
      -        }
      -      } else {
      -        if (status) status.get = 'hit'
      -        // if we're currently fetching it, we don't actually have it yet
      -        // it's not stale, which means this isn't a staleWhileRefetching.
      -        // If it's not stale, and fetching, AND has a __staleWhileFetching
      -        // value, then that means the user fetched with {forceRefresh:true},
      -        // so it's safe to return that value.
      -        if (fetching) {
      -          return value.__staleWhileFetching
      -        }
      -        this.moveToTail(index)
      -        if (updateAgeOnGet) {
      -          this.updateItemAge(index)
      -        }
      -        return value
      -      }
      -    } else if (status) {
      -      status.get = 'miss'
      -    }
      -  }
      -
      -  connect(p, n) {
      -    this.prev[n] = p
      -    this.next[p] = n
      -  }
      -
      -  moveToTail(index) {
      -    // if tail already, nothing to do
      -    // if head, move head to next[index]
      -    // else
      -    //   move next[prev[index]] to next[index] (head has no prev)
      -    //   move prev[next[index]] to prev[index]
      -    // prev[index] = tail
      -    // next[tail] = index
      -    // tail = index
      -    if (index !== this.tail) {
      -      if (index === this.head) {
      -        this.head = this.next[index]
      -      } else {
      -        this.connect(this.prev[index], this.next[index])
      -      }
      -      this.connect(this.tail, index)
      -      this.tail = index
      -    }
      -  }
      -
      -  get del() {
      -    deprecatedMethod('del', 'delete')
      -    return this.delete
      -  }
      -
      -  delete(k) {
      -    let deleted = false
      -    if (this.size !== 0) {
      -      const index = this.keyMap.get(k)
      -      if (index !== undefined) {
      -        deleted = true
      -        if (this.size === 1) {
      -          this.clear()
      -        } else {
      -          this.removeItemSize(index)
      -          const v = this.valList[index]
      -          if (this.isBackgroundFetch(v)) {
      -            v.__abortController.abort(new Error('deleted'))
      -          } else {
      -            this.dispose(v, k, 'delete')
      -            if (this.disposeAfter) {
      -              this.disposed.push([v, k, 'delete'])
      -            }
      -          }
      -          this.keyMap.delete(k)
      -          this.keyList[index] = null
      -          this.valList[index] = null
      -          if (index === this.tail) {
      -            this.tail = this.prev[index]
      -          } else if (index === this.head) {
      -            this.head = this.next[index]
      -          } else {
      -            this.next[this.prev[index]] = this.next[index]
      -            this.prev[this.next[index]] = this.prev[index]
      -          }
      -          this.size--
      -          this.free.push(index)
      -        }
      -      }
      -    }
      -    if (this.disposed) {
      -      while (this.disposed.length) {
      -        this.disposeAfter(...this.disposed.shift())
      -      }
      -    }
      -    return deleted
      -  }
      -
      -  clear() {
      -    for (const index of this.rindexes({ allowStale: true })) {
      -      const v = this.valList[index]
      -      if (this.isBackgroundFetch(v)) {
      -        v.__abortController.abort(new Error('deleted'))
      -      } else {
      -        const k = this.keyList[index]
      -        this.dispose(v, k, 'delete')
      -        if (this.disposeAfter) {
      -          this.disposed.push([v, k, 'delete'])
      -        }
      -      }
      -    }
      -
      -    this.keyMap.clear()
      -    this.valList.fill(null)
      -    this.keyList.fill(null)
      -    if (this.ttls) {
      -      this.ttls.fill(0)
      -      this.starts.fill(0)
      -    }
      -    if (this.sizes) {
      -      this.sizes.fill(0)
      -    }
      -    this.head = 0
      -    this.tail = 0
      -    this.initialFill = 1
      -    this.free.length = 0
      -    this.calculatedSize = 0
      -    this.size = 0
      -    if (this.disposed) {
      -      while (this.disposed.length) {
      -        this.disposeAfter(...this.disposed.shift())
      -      }
      -    }
      -  }
      -
      -  get reset() {
      -    deprecatedMethod('reset', 'clear')
      -    return this.clear
      -  }
      -
      -  get length() {
      -    deprecatedProperty('length', 'size')
      -    return this.size
      -  }
      -
      -  static get AbortController() {
      -    return AC
      -  }
      -  static get AbortSignal() {
      -    return AS
      -  }
      -}
      -
      -module.exports = LRUCache
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/lru-cache/index.mjs b/deps/npm/node_modules/node-gyp/node_modules/lru-cache/index.mjs
      deleted file mode 100644
      index 4a0b4813ec5157..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/lru-cache/index.mjs
      +++ /dev/null
      @@ -1,1227 +0,0 @@
      -const perf =
      -  typeof performance === 'object' &&
      -  performance &&
      -  typeof performance.now === 'function'
      -    ? performance
      -    : Date
      -
      -const hasAbortController = typeof AbortController === 'function'
      -
      -// minimal backwards-compatibility polyfill
      -// this doesn't have nearly all the checks and whatnot that
      -// actual AbortController/Signal has, but it's enough for
      -// our purposes, and if used properly, behaves the same.
      -const AC = hasAbortController
      -  ? AbortController
      -  : class AbortController {
      -      constructor() {
      -        this.signal = new AS()
      -      }
      -      abort(reason = new Error('This operation was aborted')) {
      -        this.signal.reason = this.signal.reason || reason
      -        this.signal.aborted = true
      -        this.signal.dispatchEvent({
      -          type: 'abort',
      -          target: this.signal,
      -        })
      -      }
      -    }
      -
      -const hasAbortSignal = typeof AbortSignal === 'function'
      -// Some polyfills put this on the AC class, not global
      -const hasACAbortSignal = typeof AC.AbortSignal === 'function'
      -const AS = hasAbortSignal
      -  ? AbortSignal
      -  : hasACAbortSignal
      -  ? AC.AbortController
      -  : class AbortSignal {
      -      constructor() {
      -        this.reason = undefined
      -        this.aborted = false
      -        this._listeners = []
      -      }
      -      dispatchEvent(e) {
      -        if (e.type === 'abort') {
      -          this.aborted = true
      -          this.onabort(e)
      -          this._listeners.forEach(f => f(e), this)
      -        }
      -      }
      -      onabort() {}
      -      addEventListener(ev, fn) {
      -        if (ev === 'abort') {
      -          this._listeners.push(fn)
      -        }
      -      }
      -      removeEventListener(ev, fn) {
      -        if (ev === 'abort') {
      -          this._listeners = this._listeners.filter(f => f !== fn)
      -        }
      -      }
      -    }
      -
      -const warned = new Set()
      -const deprecatedOption = (opt, instead) => {
      -  const code = `LRU_CACHE_OPTION_${opt}`
      -  if (shouldWarn(code)) {
      -    warn(code, `${opt} option`, `options.${instead}`, LRUCache)
      -  }
      -}
      -const deprecatedMethod = (method, instead) => {
      -  const code = `LRU_CACHE_METHOD_${method}`
      -  if (shouldWarn(code)) {
      -    const { prototype } = LRUCache
      -    const { get } = Object.getOwnPropertyDescriptor(prototype, method)
      -    warn(code, `${method} method`, `cache.${instead}()`, get)
      -  }
      -}
      -const deprecatedProperty = (field, instead) => {
      -  const code = `LRU_CACHE_PROPERTY_${field}`
      -  if (shouldWarn(code)) {
      -    const { prototype } = LRUCache
      -    const { get } = Object.getOwnPropertyDescriptor(prototype, field)
      -    warn(code, `${field} property`, `cache.${instead}`, get)
      -  }
      -}
      -
      -const emitWarning = (...a) => {
      -  typeof process === 'object' &&
      -  process &&
      -  typeof process.emitWarning === 'function'
      -    ? process.emitWarning(...a)
      -    : console.error(...a)
      -}
      -
      -const shouldWarn = code => !warned.has(code)
      -
      -const warn = (code, what, instead, fn) => {
      -  warned.add(code)
      -  const msg = `The ${what} is deprecated. Please use ${instead} instead.`
      -  emitWarning(msg, 'DeprecationWarning', code, fn)
      -}
      -
      -const isPosInt = n => n && n === Math.floor(n) && n > 0 && isFinite(n)
      -
      -/* istanbul ignore next - This is a little bit ridiculous, tbh.
      - * The maximum array length is 2^32-1 or thereabouts on most JS impls.
      - * And well before that point, you're caching the entire world, I mean,
      - * that's ~32GB of just integers for the next/prev links, plus whatever
      - * else to hold that many keys and values.  Just filling the memory with
      - * zeroes at init time is brutal when you get that big.
      - * But why not be complete?
      - * Maybe in the future, these limits will have expanded. */
      -const getUintArray = max =>
      -  !isPosInt(max)
      -    ? null
      -    : max <= Math.pow(2, 8)
      -    ? Uint8Array
      -    : max <= Math.pow(2, 16)
      -    ? Uint16Array
      -    : max <= Math.pow(2, 32)
      -    ? Uint32Array
      -    : max <= Number.MAX_SAFE_INTEGER
      -    ? ZeroArray
      -    : null
      -
      -class ZeroArray extends Array {
      -  constructor(size) {
      -    super(size)
      -    this.fill(0)
      -  }
      -}
      -
      -class Stack {
      -  constructor(max) {
      -    if (max === 0) {
      -      return []
      -    }
      -    const UintArray = getUintArray(max)
      -    this.heap = new UintArray(max)
      -    this.length = 0
      -  }
      -  push(n) {
      -    this.heap[this.length++] = n
      -  }
      -  pop() {
      -    return this.heap[--this.length]
      -  }
      -}
      -
      -class LRUCache {
      -  constructor(options = {}) {
      -    const {
      -      max = 0,
      -      ttl,
      -      ttlResolution = 1,
      -      ttlAutopurge,
      -      updateAgeOnGet,
      -      updateAgeOnHas,
      -      allowStale,
      -      dispose,
      -      disposeAfter,
      -      noDisposeOnSet,
      -      noUpdateTTL,
      -      maxSize = 0,
      -      maxEntrySize = 0,
      -      sizeCalculation,
      -      fetchMethod,
      -      fetchContext,
      -      noDeleteOnFetchRejection,
      -      noDeleteOnStaleGet,
      -      allowStaleOnFetchRejection,
      -      allowStaleOnFetchAbort,
      -      ignoreFetchAbort,
      -    } = options
      -
      -    // deprecated options, don't trigger a warning for getting them if
      -    // the thing being passed in is another LRUCache we're copying.
      -    const { length, maxAge, stale } =
      -      options instanceof LRUCache ? {} : options
      -
      -    if (max !== 0 && !isPosInt(max)) {
      -      throw new TypeError('max option must be a nonnegative integer')
      -    }
      -
      -    const UintArray = max ? getUintArray(max) : Array
      -    if (!UintArray) {
      -      throw new Error('invalid max value: ' + max)
      -    }
      -
      -    this.max = max
      -    this.maxSize = maxSize
      -    this.maxEntrySize = maxEntrySize || this.maxSize
      -    this.sizeCalculation = sizeCalculation || length
      -    if (this.sizeCalculation) {
      -      if (!this.maxSize && !this.maxEntrySize) {
      -        throw new TypeError(
      -          'cannot set sizeCalculation without setting maxSize or maxEntrySize'
      -        )
      -      }
      -      if (typeof this.sizeCalculation !== 'function') {
      -        throw new TypeError('sizeCalculation set to non-function')
      -      }
      -    }
      -
      -    this.fetchMethod = fetchMethod || null
      -    if (this.fetchMethod && typeof this.fetchMethod !== 'function') {
      -      throw new TypeError(
      -        'fetchMethod must be a function if specified'
      -      )
      -    }
      -
      -    this.fetchContext = fetchContext
      -    if (!this.fetchMethod && fetchContext !== undefined) {
      -      throw new TypeError(
      -        'cannot set fetchContext without fetchMethod'
      -      )
      -    }
      -
      -    this.keyMap = new Map()
      -    this.keyList = new Array(max).fill(null)
      -    this.valList = new Array(max).fill(null)
      -    this.next = new UintArray(max)
      -    this.prev = new UintArray(max)
      -    this.head = 0
      -    this.tail = 0
      -    this.free = new Stack(max)
      -    this.initialFill = 1
      -    this.size = 0
      -
      -    if (typeof dispose === 'function') {
      -      this.dispose = dispose
      -    }
      -    if (typeof disposeAfter === 'function') {
      -      this.disposeAfter = disposeAfter
      -      this.disposed = []
      -    } else {
      -      this.disposeAfter = null
      -      this.disposed = null
      -    }
      -    this.noDisposeOnSet = !!noDisposeOnSet
      -    this.noUpdateTTL = !!noUpdateTTL
      -    this.noDeleteOnFetchRejection = !!noDeleteOnFetchRejection
      -    this.allowStaleOnFetchRejection = !!allowStaleOnFetchRejection
      -    this.allowStaleOnFetchAbort = !!allowStaleOnFetchAbort
      -    this.ignoreFetchAbort = !!ignoreFetchAbort
      -
      -    // NB: maxEntrySize is set to maxSize if it's set
      -    if (this.maxEntrySize !== 0) {
      -      if (this.maxSize !== 0) {
      -        if (!isPosInt(this.maxSize)) {
      -          throw new TypeError(
      -            'maxSize must be a positive integer if specified'
      -          )
      -        }
      -      }
      -      if (!isPosInt(this.maxEntrySize)) {
      -        throw new TypeError(
      -          'maxEntrySize must be a positive integer if specified'
      -        )
      -      }
      -      this.initializeSizeTracking()
      -    }
      -
      -    this.allowStale = !!allowStale || !!stale
      -    this.noDeleteOnStaleGet = !!noDeleteOnStaleGet
      -    this.updateAgeOnGet = !!updateAgeOnGet
      -    this.updateAgeOnHas = !!updateAgeOnHas
      -    this.ttlResolution =
      -      isPosInt(ttlResolution) || ttlResolution === 0
      -        ? ttlResolution
      -        : 1
      -    this.ttlAutopurge = !!ttlAutopurge
      -    this.ttl = ttl || maxAge || 0
      -    if (this.ttl) {
      -      if (!isPosInt(this.ttl)) {
      -        throw new TypeError(
      -          'ttl must be a positive integer if specified'
      -        )
      -      }
      -      this.initializeTTLTracking()
      -    }
      -
      -    // do not allow completely unbounded caches
      -    if (this.max === 0 && this.ttl === 0 && this.maxSize === 0) {
      -      throw new TypeError(
      -        'At least one of max, maxSize, or ttl is required'
      -      )
      -    }
      -    if (!this.ttlAutopurge && !this.max && !this.maxSize) {
      -      const code = 'LRU_CACHE_UNBOUNDED'
      -      if (shouldWarn(code)) {
      -        warned.add(code)
      -        const msg =
      -          'TTL caching without ttlAutopurge, max, or maxSize can ' +
      -          'result in unbounded memory consumption.'
      -        emitWarning(msg, 'UnboundedCacheWarning', code, LRUCache)
      -      }
      -    }
      -
      -    if (stale) {
      -      deprecatedOption('stale', 'allowStale')
      -    }
      -    if (maxAge) {
      -      deprecatedOption('maxAge', 'ttl')
      -    }
      -    if (length) {
      -      deprecatedOption('length', 'sizeCalculation')
      -    }
      -  }
      -
      -  getRemainingTTL(key) {
      -    return this.has(key, { updateAgeOnHas: false }) ? Infinity : 0
      -  }
      -
      -  initializeTTLTracking() {
      -    this.ttls = new ZeroArray(this.max)
      -    this.starts = new ZeroArray(this.max)
      -
      -    this.setItemTTL = (index, ttl, start = perf.now()) => {
      -      this.starts[index] = ttl !== 0 ? start : 0
      -      this.ttls[index] = ttl
      -      if (ttl !== 0 && this.ttlAutopurge) {
      -        const t = setTimeout(() => {
      -          if (this.isStale(index)) {
      -            this.delete(this.keyList[index])
      -          }
      -        }, ttl + 1)
      -        /* istanbul ignore else - unref() not supported on all platforms */
      -        if (t.unref) {
      -          t.unref()
      -        }
      -      }
      -    }
      -
      -    this.updateItemAge = index => {
      -      this.starts[index] = this.ttls[index] !== 0 ? perf.now() : 0
      -    }
      -
      -    this.statusTTL = (status, index) => {
      -      if (status) {
      -        status.ttl = this.ttls[index]
      -        status.start = this.starts[index]
      -        status.now = cachedNow || getNow()
      -        status.remainingTTL = status.now + status.ttl - status.start
      -      }
      -    }
      -
      -    // debounce calls to perf.now() to 1s so we're not hitting
      -    // that costly call repeatedly.
      -    let cachedNow = 0
      -    const getNow = () => {
      -      const n = perf.now()
      -      if (this.ttlResolution > 0) {
      -        cachedNow = n
      -        const t = setTimeout(
      -          () => (cachedNow = 0),
      -          this.ttlResolution
      -        )
      -        /* istanbul ignore else - not available on all platforms */
      -        if (t.unref) {
      -          t.unref()
      -        }
      -      }
      -      return n
      -    }
      -
      -    this.getRemainingTTL = key => {
      -      const index = this.keyMap.get(key)
      -      if (index === undefined) {
      -        return 0
      -      }
      -      return this.ttls[index] === 0 || this.starts[index] === 0
      -        ? Infinity
      -        : this.starts[index] +
      -            this.ttls[index] -
      -            (cachedNow || getNow())
      -    }
      -
      -    this.isStale = index => {
      -      return (
      -        this.ttls[index] !== 0 &&
      -        this.starts[index] !== 0 &&
      -        (cachedNow || getNow()) - this.starts[index] >
      -          this.ttls[index]
      -      )
      -    }
      -  }
      -  updateItemAge(_index) {}
      -  statusTTL(_status, _index) {}
      -  setItemTTL(_index, _ttl, _start) {}
      -  isStale(_index) {
      -    return false
      -  }
      -
      -  initializeSizeTracking() {
      -    this.calculatedSize = 0
      -    this.sizes = new ZeroArray(this.max)
      -    this.removeItemSize = index => {
      -      this.calculatedSize -= this.sizes[index]
      -      this.sizes[index] = 0
      -    }
      -    this.requireSize = (k, v, size, sizeCalculation) => {
      -      // provisionally accept background fetches.
      -      // actual value size will be checked when they return.
      -      if (this.isBackgroundFetch(v)) {
      -        return 0
      -      }
      -      if (!isPosInt(size)) {
      -        if (sizeCalculation) {
      -          if (typeof sizeCalculation !== 'function') {
      -            throw new TypeError('sizeCalculation must be a function')
      -          }
      -          size = sizeCalculation(v, k)
      -          if (!isPosInt(size)) {
      -            throw new TypeError(
      -              'sizeCalculation return invalid (expect positive integer)'
      -            )
      -          }
      -        } else {
      -          throw new TypeError(
      -            'invalid size value (must be positive integer). ' +
      -              'When maxSize or maxEntrySize is used, sizeCalculation or size ' +
      -              'must be set.'
      -          )
      -        }
      -      }
      -      return size
      -    }
      -    this.addItemSize = (index, size, status) => {
      -      this.sizes[index] = size
      -      if (this.maxSize) {
      -        const maxSize = this.maxSize - this.sizes[index]
      -        while (this.calculatedSize > maxSize) {
      -          this.evict(true)
      -        }
      -      }
      -      this.calculatedSize += this.sizes[index]
      -      if (status) {
      -        status.entrySize = size
      -        status.totalCalculatedSize = this.calculatedSize
      -      }
      -    }
      -  }
      -  removeItemSize(_index) {}
      -  addItemSize(_index, _size) {}
      -  requireSize(_k, _v, size, sizeCalculation) {
      -    if (size || sizeCalculation) {
      -      throw new TypeError(
      -        'cannot set size without setting maxSize or maxEntrySize on cache'
      -      )
      -    }
      -  }
      -
      -  *indexes({ allowStale = this.allowStale } = {}) {
      -    if (this.size) {
      -      for (let i = this.tail; true; ) {
      -        if (!this.isValidIndex(i)) {
      -          break
      -        }
      -        if (allowStale || !this.isStale(i)) {
      -          yield i
      -        }
      -        if (i === this.head) {
      -          break
      -        } else {
      -          i = this.prev[i]
      -        }
      -      }
      -    }
      -  }
      -
      -  *rindexes({ allowStale = this.allowStale } = {}) {
      -    if (this.size) {
      -      for (let i = this.head; true; ) {
      -        if (!this.isValidIndex(i)) {
      -          break
      -        }
      -        if (allowStale || !this.isStale(i)) {
      -          yield i
      -        }
      -        if (i === this.tail) {
      -          break
      -        } else {
      -          i = this.next[i]
      -        }
      -      }
      -    }
      -  }
      -
      -  isValidIndex(index) {
      -    return (
      -      index !== undefined &&
      -      this.keyMap.get(this.keyList[index]) === index
      -    )
      -  }
      -
      -  *entries() {
      -    for (const i of this.indexes()) {
      -      if (
      -        this.valList[i] !== undefined &&
      -        this.keyList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield [this.keyList[i], this.valList[i]]
      -      }
      -    }
      -  }
      -  *rentries() {
      -    for (const i of this.rindexes()) {
      -      if (
      -        this.valList[i] !== undefined &&
      -        this.keyList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield [this.keyList[i], this.valList[i]]
      -      }
      -    }
      -  }
      -
      -  *keys() {
      -    for (const i of this.indexes()) {
      -      if (
      -        this.keyList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield this.keyList[i]
      -      }
      -    }
      -  }
      -  *rkeys() {
      -    for (const i of this.rindexes()) {
      -      if (
      -        this.keyList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield this.keyList[i]
      -      }
      -    }
      -  }
      -
      -  *values() {
      -    for (const i of this.indexes()) {
      -      if (
      -        this.valList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield this.valList[i]
      -      }
      -    }
      -  }
      -  *rvalues() {
      -    for (const i of this.rindexes()) {
      -      if (
      -        this.valList[i] !== undefined &&
      -        !this.isBackgroundFetch(this.valList[i])
      -      ) {
      -        yield this.valList[i]
      -      }
      -    }
      -  }
      -
      -  [Symbol.iterator]() {
      -    return this.entries()
      -  }
      -
      -  find(fn, getOptions) {
      -    for (const i of this.indexes()) {
      -      const v = this.valList[i]
      -      const value = this.isBackgroundFetch(v)
      -        ? v.__staleWhileFetching
      -        : v
      -      if (value === undefined) continue
      -      if (fn(value, this.keyList[i], this)) {
      -        return this.get(this.keyList[i], getOptions)
      -      }
      -    }
      -  }
      -
      -  forEach(fn, thisp = this) {
      -    for (const i of this.indexes()) {
      -      const v = this.valList[i]
      -      const value = this.isBackgroundFetch(v)
      -        ? v.__staleWhileFetching
      -        : v
      -      if (value === undefined) continue
      -      fn.call(thisp, value, this.keyList[i], this)
      -    }
      -  }
      -
      -  rforEach(fn, thisp = this) {
      -    for (const i of this.rindexes()) {
      -      const v = this.valList[i]
      -      const value = this.isBackgroundFetch(v)
      -        ? v.__staleWhileFetching
      -        : v
      -      if (value === undefined) continue
      -      fn.call(thisp, value, this.keyList[i], this)
      -    }
      -  }
      -
      -  get prune() {
      -    deprecatedMethod('prune', 'purgeStale')
      -    return this.purgeStale
      -  }
      -
      -  purgeStale() {
      -    let deleted = false
      -    for (const i of this.rindexes({ allowStale: true })) {
      -      if (this.isStale(i)) {
      -        this.delete(this.keyList[i])
      -        deleted = true
      -      }
      -    }
      -    return deleted
      -  }
      -
      -  dump() {
      -    const arr = []
      -    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
      -      if (value === undefined) continue
      -      const entry = { value }
      -      if (this.ttls) {
      -        entry.ttl = this.ttls[i]
      -        // always dump the start relative to a portable timestamp
      -        // it's ok for this to be a bit slow, it's a rare operation.
      -        const age = perf.now() - this.starts[i]
      -        entry.start = Math.floor(Date.now() - age)
      -      }
      -      if (this.sizes) {
      -        entry.size = this.sizes[i]
      -      }
      -      arr.unshift([key, entry])
      -    }
      -    return arr
      -  }
      -
      -  load(arr) {
      -    this.clear()
      -    for (const [key, entry] of arr) {
      -      if (entry.start) {
      -        // entry.start is a portable timestamp, but we may be using
      -        // node's performance.now(), so calculate the offset.
      -        // it's ok for this to be a bit slow, it's a rare operation.
      -        const age = Date.now() - entry.start
      -        entry.start = perf.now() - age
      -      }
      -      this.set(key, entry.value, entry)
      -    }
      -  }
      -
      -  dispose(_v, _k, _reason) {}
      -
      -  set(
      -    k,
      -    v,
      -    {
      -      ttl = this.ttl,
      -      start,
      -      noDisposeOnSet = this.noDisposeOnSet,
      -      size = 0,
      -      sizeCalculation = this.sizeCalculation,
      -      noUpdateTTL = this.noUpdateTTL,
      -      status,
      -    } = {}
      -  ) {
      -    size = this.requireSize(k, v, size, sizeCalculation)
      -    // if the item doesn't fit, don't do anything
      -    // NB: maxEntrySize set to maxSize by default
      -    if (this.maxEntrySize && size > this.maxEntrySize) {
      -      if (status) {
      -        status.set = 'miss'
      -        status.maxEntrySizeExceeded = true
      -      }
      -      // have to delete, in case a background fetch is there already.
      -      // in non-async cases, this is a no-op
      -      this.delete(k)
      -      return this
      -    }
      -    let index = this.size === 0 ? undefined : this.keyMap.get(k)
      -    if (index === undefined) {
      -      // addition
      -      index = this.newIndex()
      -      this.keyList[index] = k
      -      this.valList[index] = v
      -      this.keyMap.set(k, index)
      -      this.next[this.tail] = index
      -      this.prev[index] = this.tail
      -      this.tail = index
      -      this.size++
      -      this.addItemSize(index, size, status)
      -      if (status) {
      -        status.set = 'add'
      -      }
      -      noUpdateTTL = false
      -    } else {
      -      // update
      -      this.moveToTail(index)
      -      const oldVal = this.valList[index]
      -      if (v !== oldVal) {
      -        if (this.isBackgroundFetch(oldVal)) {
      -          oldVal.__abortController.abort(new Error('replaced'))
      -        } else {
      -          if (!noDisposeOnSet) {
      -            this.dispose(oldVal, k, 'set')
      -            if (this.disposeAfter) {
      -              this.disposed.push([oldVal, k, 'set'])
      -            }
      -          }
      -        }
      -        this.removeItemSize(index)
      -        this.valList[index] = v
      -        this.addItemSize(index, size, status)
      -        if (status) {
      -          status.set = 'replace'
      -          const oldValue =
      -            oldVal && this.isBackgroundFetch(oldVal)
      -              ? oldVal.__staleWhileFetching
      -              : oldVal
      -          if (oldValue !== undefined) status.oldValue = oldValue
      -        }
      -      } else if (status) {
      -        status.set = 'update'
      -      }
      -    }
      -    if (ttl !== 0 && this.ttl === 0 && !this.ttls) {
      -      this.initializeTTLTracking()
      -    }
      -    if (!noUpdateTTL) {
      -      this.setItemTTL(index, ttl, start)
      -    }
      -    this.statusTTL(status, index)
      -    if (this.disposeAfter) {
      -      while (this.disposed.length) {
      -        this.disposeAfter(...this.disposed.shift())
      -      }
      -    }
      -    return this
      -  }
      -
      -  newIndex() {
      -    if (this.size === 0) {
      -      return this.tail
      -    }
      -    if (this.size === this.max && this.max !== 0) {
      -      return this.evict(false)
      -    }
      -    if (this.free.length !== 0) {
      -      return this.free.pop()
      -    }
      -    // initial fill, just keep writing down the list
      -    return this.initialFill++
      -  }
      -
      -  pop() {
      -    if (this.size) {
      -      const val = this.valList[this.head]
      -      this.evict(true)
      -      return val
      -    }
      -  }
      -
      -  evict(free) {
      -    const head = this.head
      -    const k = this.keyList[head]
      -    const v = this.valList[head]
      -    if (this.isBackgroundFetch(v)) {
      -      v.__abortController.abort(new Error('evicted'))
      -    } else {
      -      this.dispose(v, k, 'evict')
      -      if (this.disposeAfter) {
      -        this.disposed.push([v, k, 'evict'])
      -      }
      -    }
      -    this.removeItemSize(head)
      -    // if we aren't about to use the index, then null these out
      -    if (free) {
      -      this.keyList[head] = null
      -      this.valList[head] = null
      -      this.free.push(head)
      -    }
      -    this.head = this.next[head]
      -    this.keyMap.delete(k)
      -    this.size--
      -    return head
      -  }
      -
      -  has(k, { updateAgeOnHas = this.updateAgeOnHas, status } = {}) {
      -    const index = this.keyMap.get(k)
      -    if (index !== undefined) {
      -      if (!this.isStale(index)) {
      -        if (updateAgeOnHas) {
      -          this.updateItemAge(index)
      -        }
      -        if (status) status.has = 'hit'
      -        this.statusTTL(status, index)
      -        return true
      -      } else if (status) {
      -        status.has = 'stale'
      -        this.statusTTL(status, index)
      -      }
      -    } else if (status) {
      -      status.has = 'miss'
      -    }
      -    return false
      -  }
      -
      -  // like get(), but without any LRU updating or TTL expiration
      -  peek(k, { allowStale = this.allowStale } = {}) {
      -    const index = this.keyMap.get(k)
      -    if (index !== undefined && (allowStale || !this.isStale(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
      -    }
      -  }
      -
      -  backgroundFetch(k, index, options, context) {
      -    const v = index === undefined ? undefined : this.valList[index]
      -    if (this.isBackgroundFetch(v)) {
      -      return v
      -    }
      -    const ac = new AC()
      -    if (options.signal) {
      -      options.signal.addEventListener('abort', () =>
      -        ac.abort(options.signal.reason)
      -      )
      -    }
      -    const fetchOpts = {
      -      signal: ac.signal,
      -      options,
      -      context,
      -    }
      -    const cb = (v, updateCache = false) => {
      -      const { aborted } = ac.signal
      -      const ignoreAbort = options.ignoreFetchAbort && v !== undefined
      -      if (options.status) {
      -        if (aborted && !updateCache) {
      -          options.status.fetchAborted = true
      -          options.status.fetchError = ac.signal.reason
      -          if (ignoreAbort) options.status.fetchAbortIgnored = true
      -        } else {
      -          options.status.fetchResolved = true
      -        }
      -      }
      -      if (aborted && !ignoreAbort && !updateCache) {
      -        return fetchFail(ac.signal.reason)
      -      }
      -      // either we didn't abort, and are still here, or we did, and ignored
      -      if (this.valList[index] === p) {
      -        if (v === undefined) {
      -          if (p.__staleWhileFetching) {
      -            this.valList[index] = p.__staleWhileFetching
      -          } else {
      -            this.delete(k)
      -          }
      -        } else {
      -          if (options.status) options.status.fetchUpdated = true
      -          this.set(k, v, fetchOpts.options)
      -        }
      -      }
      -      return v
      -    }
      -    const eb = er => {
      -      if (options.status) {
      -        options.status.fetchRejected = true
      -        options.status.fetchError = er
      -      }
      -      return fetchFail(er)
      -    }
      -    const fetchFail = er => {
      -      const { aborted } = ac.signal
      -      const allowStaleAborted =
      -        aborted && options.allowStaleOnFetchAbort
      -      const allowStale =
      -        allowStaleAborted || options.allowStaleOnFetchRejection
      -      const noDelete = allowStale || options.noDeleteOnFetchRejection
      -      if (this.valList[index] === p) {
      -        // if we allow stale on fetch rejections, then we need to ensure that
      -        // the stale value is not removed from the cache when the fetch fails.
      -        const del = !noDelete || p.__staleWhileFetching === undefined
      -        if (del) {
      -          this.delete(k)
      -        } else if (!allowStaleAborted) {
      -          // still replace the *promise* with the stale value,
      -          // since we are done with the promise at this point.
      -          // leave it untouched if we're still waiting for an
      -          // aborted background fetch that hasn't yet returned.
      -          this.valList[index] = p.__staleWhileFetching
      -        }
      -      }
      -      if (allowStale) {
      -        if (options.status && p.__staleWhileFetching !== undefined) {
      -          options.status.returnedStale = true
      -        }
      -        return p.__staleWhileFetching
      -      } else if (p.__returned === p) {
      -        throw er
      -      }
      -    }
      -    const pcall = (res, rej) => {
      -      this.fetchMethod(k, v, fetchOpts).then(v => res(v), rej)
      -      // ignored, we go until we finish, regardless.
      -      // defer check until we are actually aborting,
      -      // so fetchMethod can override.
      -      ac.signal.addEventListener('abort', () => {
      -        if (
      -          !options.ignoreFetchAbort ||
      -          options.allowStaleOnFetchAbort
      -        ) {
      -          res()
      -          // when it eventually resolves, update the cache.
      -          if (options.allowStaleOnFetchAbort) {
      -            res = v => cb(v, true)
      -          }
      -        }
      -      })
      -    }
      -    if (options.status) options.status.fetchDispatched = true
      -    const p = new Promise(pcall).then(cb, eb)
      -    p.__abortController = ac
      -    p.__staleWhileFetching = v
      -    p.__returned = null
      -    if (index === undefined) {
      -      // internal, don't expose status.
      -      this.set(k, p, { ...fetchOpts.options, status: undefined })
      -      index = this.keyMap.get(k)
      -    } else {
      -      this.valList[index] = p
      -    }
      -    return p
      -  }
      -
      -  isBackgroundFetch(p) {
      -    return (
      -      p &&
      -      typeof p === 'object' &&
      -      typeof p.then === 'function' &&
      -      Object.prototype.hasOwnProperty.call(
      -        p,
      -        '__staleWhileFetching'
      -      ) &&
      -      Object.prototype.hasOwnProperty.call(p, '__returned') &&
      -      (p.__returned === p || p.__returned === null)
      -    )
      -  }
      -
      -  // this takes the union of get() and set() opts, because it does both
      -  async fetch(
      -    k,
      -    {
      -      // get options
      -      allowStale = this.allowStale,
      -      updateAgeOnGet = this.updateAgeOnGet,
      -      noDeleteOnStaleGet = this.noDeleteOnStaleGet,
      -      // set options
      -      ttl = this.ttl,
      -      noDisposeOnSet = this.noDisposeOnSet,
      -      size = 0,
      -      sizeCalculation = this.sizeCalculation,
      -      noUpdateTTL = this.noUpdateTTL,
      -      // fetch exclusive options
      -      noDeleteOnFetchRejection = this.noDeleteOnFetchRejection,
      -      allowStaleOnFetchRejection = this.allowStaleOnFetchRejection,
      -      ignoreFetchAbort = this.ignoreFetchAbort,
      -      allowStaleOnFetchAbort = this.allowStaleOnFetchAbort,
      -      fetchContext = this.fetchContext,
      -      forceRefresh = false,
      -      status,
      -      signal,
      -    } = {}
      -  ) {
      -    if (!this.fetchMethod) {
      -      if (status) status.fetch = 'get'
      -      return this.get(k, {
      -        allowStale,
      -        updateAgeOnGet,
      -        noDeleteOnStaleGet,
      -        status,
      -      })
      -    }
      -
      -    const options = {
      -      allowStale,
      -      updateAgeOnGet,
      -      noDeleteOnStaleGet,
      -      ttl,
      -      noDisposeOnSet,
      -      size,
      -      sizeCalculation,
      -      noUpdateTTL,
      -      noDeleteOnFetchRejection,
      -      allowStaleOnFetchRejection,
      -      allowStaleOnFetchAbort,
      -      ignoreFetchAbort,
      -      status,
      -      signal,
      -    }
      -
      -    let index = this.keyMap.get(k)
      -    if (index === undefined) {
      -      if (status) status.fetch = 'miss'
      -      const p = this.backgroundFetch(k, index, options, fetchContext)
      -      return (p.__returned = p)
      -    } else {
      -      // in cache, maybe already fetching
      -      const v = this.valList[index]
      -      if (this.isBackgroundFetch(v)) {
      -        const stale =
      -          allowStale && v.__staleWhileFetching !== undefined
      -        if (status) {
      -          status.fetch = 'inflight'
      -          if (stale) status.returnedStale = true
      -        }
      -        return stale ? v.__staleWhileFetching : (v.__returned = v)
      -      }
      -
      -      // if we force a refresh, that means do NOT serve the cached value,
      -      // unless we are already in the process of refreshing the cache.
      -      const isStale = this.isStale(index)
      -      if (!forceRefresh && !isStale) {
      -        if (status) status.fetch = 'hit'
      -        this.moveToTail(index)
      -        if (updateAgeOnGet) {
      -          this.updateItemAge(index)
      -        }
      -        this.statusTTL(status, index)
      -        return v
      -      }
      -
      -      // ok, it is stale or a forced refresh, and not already fetching.
      -      // refresh the cache.
      -      const p = this.backgroundFetch(k, index, options, fetchContext)
      -      const hasStale = p.__staleWhileFetching !== undefined
      -      const staleVal = hasStale && allowStale
      -      if (status) {
      -        status.fetch = hasStale && isStale ? 'stale' : 'refresh'
      -        if (staleVal && isStale) status.returnedStale = true
      -      }
      -      return staleVal ? p.__staleWhileFetching : (p.__returned = p)
      -    }
      -  }
      -
      -  get(
      -    k,
      -    {
      -      allowStale = this.allowStale,
      -      updateAgeOnGet = this.updateAgeOnGet,
      -      noDeleteOnStaleGet = this.noDeleteOnStaleGet,
      -      status,
      -    } = {}
      -  ) {
      -    const index = this.keyMap.get(k)
      -    if (index !== undefined) {
      -      const value = this.valList[index]
      -      const fetching = this.isBackgroundFetch(value)
      -      this.statusTTL(status, index)
      -      if (this.isStale(index)) {
      -        if (status) status.get = 'stale'
      -        // delete only if not an in-flight background fetch
      -        if (!fetching) {
      -          if (!noDeleteOnStaleGet) {
      -            this.delete(k)
      -          }
      -          if (status) status.returnedStale = allowStale
      -          return allowStale ? value : undefined
      -        } else {
      -          if (status) {
      -            status.returnedStale =
      -              allowStale && value.__staleWhileFetching !== undefined
      -          }
      -          return allowStale ? value.__staleWhileFetching : undefined
      -        }
      -      } else {
      -        if (status) status.get = 'hit'
      -        // if we're currently fetching it, we don't actually have it yet
      -        // it's not stale, which means this isn't a staleWhileRefetching.
      -        // If it's not stale, and fetching, AND has a __staleWhileFetching
      -        // value, then that means the user fetched with {forceRefresh:true},
      -        // so it's safe to return that value.
      -        if (fetching) {
      -          return value.__staleWhileFetching
      -        }
      -        this.moveToTail(index)
      -        if (updateAgeOnGet) {
      -          this.updateItemAge(index)
      -        }
      -        return value
      -      }
      -    } else if (status) {
      -      status.get = 'miss'
      -    }
      -  }
      -
      -  connect(p, n) {
      -    this.prev[n] = p
      -    this.next[p] = n
      -  }
      -
      -  moveToTail(index) {
      -    // if tail already, nothing to do
      -    // if head, move head to next[index]
      -    // else
      -    //   move next[prev[index]] to next[index] (head has no prev)
      -    //   move prev[next[index]] to prev[index]
      -    // prev[index] = tail
      -    // next[tail] = index
      -    // tail = index
      -    if (index !== this.tail) {
      -      if (index === this.head) {
      -        this.head = this.next[index]
      -      } else {
      -        this.connect(this.prev[index], this.next[index])
      -      }
      -      this.connect(this.tail, index)
      -      this.tail = index
      -    }
      -  }
      -
      -  get del() {
      -    deprecatedMethod('del', 'delete')
      -    return this.delete
      -  }
      -
      -  delete(k) {
      -    let deleted = false
      -    if (this.size !== 0) {
      -      const index = this.keyMap.get(k)
      -      if (index !== undefined) {
      -        deleted = true
      -        if (this.size === 1) {
      -          this.clear()
      -        } else {
      -          this.removeItemSize(index)
      -          const v = this.valList[index]
      -          if (this.isBackgroundFetch(v)) {
      -            v.__abortController.abort(new Error('deleted'))
      -          } else {
      -            this.dispose(v, k, 'delete')
      -            if (this.disposeAfter) {
      -              this.disposed.push([v, k, 'delete'])
      -            }
      -          }
      -          this.keyMap.delete(k)
      -          this.keyList[index] = null
      -          this.valList[index] = null
      -          if (index === this.tail) {
      -            this.tail = this.prev[index]
      -          } else if (index === this.head) {
      -            this.head = this.next[index]
      -          } else {
      -            this.next[this.prev[index]] = this.next[index]
      -            this.prev[this.next[index]] = this.prev[index]
      -          }
      -          this.size--
      -          this.free.push(index)
      -        }
      -      }
      -    }
      -    if (this.disposed) {
      -      while (this.disposed.length) {
      -        this.disposeAfter(...this.disposed.shift())
      -      }
      -    }
      -    return deleted
      -  }
      -
      -  clear() {
      -    for (const index of this.rindexes({ allowStale: true })) {
      -      const v = this.valList[index]
      -      if (this.isBackgroundFetch(v)) {
      -        v.__abortController.abort(new Error('deleted'))
      -      } else {
      -        const k = this.keyList[index]
      -        this.dispose(v, k, 'delete')
      -        if (this.disposeAfter) {
      -          this.disposed.push([v, k, 'delete'])
      -        }
      -      }
      -    }
      -
      -    this.keyMap.clear()
      -    this.valList.fill(null)
      -    this.keyList.fill(null)
      -    if (this.ttls) {
      -      this.ttls.fill(0)
      -      this.starts.fill(0)
      -    }
      -    if (this.sizes) {
      -      this.sizes.fill(0)
      -    }
      -    this.head = 0
      -    this.tail = 0
      -    this.initialFill = 1
      -    this.free.length = 0
      -    this.calculatedSize = 0
      -    this.size = 0
      -    if (this.disposed) {
      -      while (this.disposed.length) {
      -        this.disposeAfter(...this.disposed.shift())
      -      }
      -    }
      -  }
      -
      -  get reset() {
      -    deprecatedMethod('reset', 'clear')
      -    return this.clear
      -  }
      -
      -  get length() {
      -    deprecatedProperty('length', 'size')
      -    return this.size
      -  }
      -
      -  static get AbortController() {
      -    return AC
      -  }
      -  static get AbortSignal() {
      -    return AS
      -  }
      -}
      -
      -export default LRUCache
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/lru-cache/package.json b/deps/npm/node_modules/node-gyp/node_modules/lru-cache/package.json
      deleted file mode 100644
      index 9684991727e7a2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/lru-cache/package.json
      +++ /dev/null
      @@ -1,96 +0,0 @@
      -{
      -  "name": "lru-cache",
      -  "description": "A cache object that deletes the least-recently-used items.",
      -  "version": "7.18.3",
      -  "author": "Isaac Z. Schlueter ",
      -  "keywords": [
      -    "mru",
      -    "lru",
      -    "cache"
      -  ],
      -  "sideEffects": false,
      -  "scripts": {
      -    "build": "npm run prepare",
      -    "pretest": "npm run prepare",
      -    "presnap": "npm run prepare",
      -    "prepare": "node ./scripts/transpile-to-esm.js",
      -    "size": "size-limit",
      -    "test": "tap",
      -    "snap": "tap",
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "prepublishOnly": "git push origin --follow-tags",
      -    "format": "prettier --write .",
      -    "typedoc": "typedoc ./index.d.ts"
      -  },
      -  "type": "commonjs",
      -  "main": "./index.js",
      -  "module": "./index.mjs",
      -  "types": "./index.d.ts",
      -  "exports": {
      -    ".": {
      -      "import": {
      -        "types": "./index.d.ts",
      -        "default": "./index.mjs"
      -      },
      -      "require": {
      -        "types": "./index.d.ts",
      -        "default": "./index.js"
      -      }
      -    },
      -    "./package.json": "./package.json"
      -  },
      -  "repository": "git://github.com/isaacs/node-lru-cache.git",
      -  "devDependencies": {
      -    "@size-limit/preset-small-lib": "^7.0.8",
      -    "@types/node": "^17.0.31",
      -    "@types/tap": "^15.0.6",
      -    "benchmark": "^2.1.4",
      -    "c8": "^7.11.2",
      -    "clock-mock": "^1.0.6",
      -    "eslint-config-prettier": "^8.5.0",
      -    "prettier": "^2.6.2",
      -    "size-limit": "^7.0.8",
      -    "tap": "^16.3.4",
      -    "ts-node": "^10.7.0",
      -    "tslib": "^2.4.0",
      -    "typedoc": "^0.23.24",
      -    "typescript": "^4.6.4"
      -  },
      -  "license": "ISC",
      -  "files": [
      -    "index.js",
      -    "index.mjs",
      -    "index.d.ts"
      -  ],
      -  "engines": {
      -    "node": ">=12"
      -  },
      -  "prettier": {
      -    "semi": false,
      -    "printWidth": 70,
      -    "tabWidth": 2,
      -    "useTabs": false,
      -    "singleQuote": true,
      -    "jsxSingleQuote": false,
      -    "bracketSameLine": true,
      -    "arrowParens": "avoid",
      -    "endOfLine": "lf"
      -  },
      -  "tap": {
      -    "nyc-arg": [
      -      "--include=index.js"
      -    ],
      -    "node-arg": [
      -      "--expose-gc",
      -      "--require",
      -      "ts-node/register"
      -    ],
      -    "ts": false
      -  },
      -  "size-limit": [
      -    {
      -      "path": "./index.js"
      -    }
      -  ]
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/LICENSE
      deleted file mode 100644
      index 1808eb2844231c..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/LICENSE
      +++ /dev/null
      @@ -1,16 +0,0 @@
      -ISC License
      -
      -Copyright 2017-2022 (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 COPYRIGHT HOLDER DISCLAIMS
      -ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
      -WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
      -COPYRIGHT HOLDER 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/make-fetch-happen/lib/agent.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/agent.js
      deleted file mode 100644
      index dd68492ed7ea7b..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/agent.js
      +++ /dev/null
      @@ -1,214 +0,0 @@
      -'use strict'
      -const LRU = require('lru-cache')
      -const url = require('url')
      -const isLambda = require('is-lambda')
      -const dns = require('./dns.js')
      -
      -const AGENT_CACHE = new LRU({ max: 50 })
      -const HttpAgent = require('agentkeepalive')
      -const HttpsAgent = HttpAgent.HttpsAgent
      -
      -module.exports = getAgent
      -
      -const getAgentTimeout = timeout =>
      -  typeof timeout !== 'number' || !timeout ? 0 : timeout + 1
      -
      -const getMaxSockets = maxSockets => maxSockets || 15
      -
      -function getAgent (uri, opts) {
      -  const parsedUri = new url.URL(typeof uri === 'string' ? uri : uri.url)
      -  const isHttps = parsedUri.protocol === 'https:'
      -  const pxuri = getProxyUri(parsedUri.href, opts)
      -
      -  // If opts.timeout is zero, set the agentTimeout to zero as well. A timeout
      -  // of zero disables the timeout behavior (OS limits still apply). Else, if
      -  // opts.timeout is a non-zero value, set it to timeout + 1, to ensure that
      -  // the node-fetch-npm timeout will always fire first, giving us more
      -  // consistent errors.
      -  const agentTimeout = getAgentTimeout(opts.timeout)
      -  const agentMaxSockets = getMaxSockets(opts.maxSockets)
      -
      -  const key = [
      -    `https:${isHttps}`,
      -    pxuri
      -      ? `proxy:${pxuri.protocol}//${pxuri.host}:${pxuri.port}`
      -      : '>no-proxy<',
      -    `local-address:${opts.localAddress || '>no-local-address<'}`,
      -    `strict-ssl:${isHttps ? opts.rejectUnauthorized : '>no-strict-ssl<'}`,
      -    `ca:${(isHttps && opts.ca) || '>no-ca<'}`,
      -    `cert:${(isHttps && opts.cert) || '>no-cert<'}`,
      -    `key:${(isHttps && opts.key) || '>no-key<'}`,
      -    `timeout:${agentTimeout}`,
      -    `maxSockets:${agentMaxSockets}`,
      -  ].join(':')
      -
      -  if (opts.agent != null) { // `agent: false` has special behavior!
      -    return opts.agent
      -  }
      -
      -  // keep alive in AWS lambda makes no sense
      -  const lambdaAgent = !isLambda ? null
      -    : isHttps ? require('https').globalAgent
      -    : require('http').globalAgent
      -
      -  if (isLambda && !pxuri) {
      -    return lambdaAgent
      -  }
      -
      -  if (AGENT_CACHE.peek(key)) {
      -    return AGENT_CACHE.get(key)
      -  }
      -
      -  if (pxuri) {
      -    const pxopts = isLambda ? {
      -      ...opts,
      -      agent: lambdaAgent,
      -    } : opts
      -    const proxy = getProxy(pxuri, pxopts, isHttps)
      -    AGENT_CACHE.set(key, proxy)
      -    return proxy
      -  }
      -
      -  const agent = isHttps ? new HttpsAgent({
      -    maxSockets: agentMaxSockets,
      -    ca: opts.ca,
      -    cert: opts.cert,
      -    key: opts.key,
      -    localAddress: opts.localAddress,
      -    rejectUnauthorized: opts.rejectUnauthorized,
      -    timeout: agentTimeout,
      -    freeSocketTimeout: 15000,
      -    lookup: dns.getLookup(opts.dns),
      -  }) : new HttpAgent({
      -    maxSockets: agentMaxSockets,
      -    localAddress: opts.localAddress,
      -    timeout: agentTimeout,
      -    freeSocketTimeout: 15000,
      -    lookup: dns.getLookup(opts.dns),
      -  })
      -  AGENT_CACHE.set(key, agent)
      -  return agent
      -}
      -
      -function checkNoProxy (uri, opts) {
      -  const host = new url.URL(uri).hostname.split('.').reverse()
      -  let noproxy = (opts.noProxy || getProcessEnv('no_proxy'))
      -  if (typeof noproxy === 'string') {
      -    noproxy = noproxy.split(',').map(n => n.trim())
      -  }
      -
      -  return noproxy && noproxy.some(no => {
      -    const noParts = no.split('.').filter(x => x).reverse()
      -    if (!noParts.length) {
      -      return false
      -    }
      -    for (let i = 0; i < noParts.length; i++) {
      -      if (host[i] !== noParts[i]) {
      -        return false
      -      }
      -    }
      -    return true
      -  })
      -}
      -
      -module.exports.getProcessEnv = getProcessEnv
      -
      -function getProcessEnv (env) {
      -  if (!env) {
      -    return
      -  }
      -
      -  let value
      -
      -  if (Array.isArray(env)) {
      -    for (const e of env) {
      -      value = process.env[e] ||
      -        process.env[e.toUpperCase()] ||
      -        process.env[e.toLowerCase()]
      -      if (typeof value !== 'undefined') {
      -        break
      -      }
      -    }
      -  }
      -
      -  if (typeof env === 'string') {
      -    value = process.env[env] ||
      -      process.env[env.toUpperCase()] ||
      -      process.env[env.toLowerCase()]
      -  }
      -
      -  return value
      -}
      -
      -module.exports.getProxyUri = getProxyUri
      -function getProxyUri (uri, opts) {
      -  const protocol = new url.URL(uri).protocol
      -
      -  const proxy = opts.proxy ||
      -    (
      -      protocol === 'https:' &&
      -      getProcessEnv('https_proxy')
      -    ) ||
      -    (
      -      protocol === 'http:' &&
      -      getProcessEnv(['https_proxy', 'http_proxy', 'proxy'])
      -    )
      -  if (!proxy) {
      -    return null
      -  }
      -
      -  const parsedProxy = (typeof proxy === 'string') ? new url.URL(proxy) : proxy
      -
      -  return !checkNoProxy(uri, opts) && parsedProxy
      -}
      -
      -const getAuth = u =>
      -  u.username && u.password ? decodeURIComponent(`${u.username}:${u.password}`)
      -  : u.username ? decodeURIComponent(u.username)
      -  : null
      -
      -const getPath = u => u.pathname + u.search + u.hash
      -
      -const HttpProxyAgent = require('http-proxy-agent')
      -const HttpsProxyAgent = require('https-proxy-agent')
      -const { SocksProxyAgent } = require('socks-proxy-agent')
      -module.exports.getProxy = getProxy
      -function getProxy (proxyUrl, opts, isHttps) {
      -  // our current proxy agents do not support an overridden dns lookup method, so will not
      -  // benefit from the dns cache
      -  const popts = {
      -    host: proxyUrl.hostname,
      -    port: proxyUrl.port,
      -    protocol: proxyUrl.protocol,
      -    path: getPath(proxyUrl),
      -    auth: getAuth(proxyUrl),
      -    ca: opts.ca,
      -    cert: opts.cert,
      -    key: opts.key,
      -    timeout: getAgentTimeout(opts.timeout),
      -    localAddress: opts.localAddress,
      -    maxSockets: getMaxSockets(opts.maxSockets),
      -    rejectUnauthorized: opts.rejectUnauthorized,
      -  }
      -
      -  if (proxyUrl.protocol === 'http:' || proxyUrl.protocol === 'https:') {
      -    if (!isHttps) {
      -      return new HttpProxyAgent(popts)
      -    } else {
      -      return new HttpsProxyAgent(popts)
      -    }
      -  } else if (proxyUrl.protocol.startsWith('socks')) {
      -    // socks-proxy-agent uses hostname not host
      -    popts.hostname = popts.host
      -    delete popts.host
      -    return new SocksProxyAgent(popts)
      -  } else {
      -    throw Object.assign(
      -      new Error(`unsupported proxy protocol: '${proxyUrl.protocol}'`),
      -      {
      -        code: 'EUNSUPPORTEDPROXY',
      -        url: proxyUrl.href,
      -      }
      -    )
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/entry.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/entry.js
      deleted file mode 100644
      index 45141095074ecb..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/entry.js
      +++ /dev/null
      @@ -1,469 +0,0 @@
      -const { Request, Response } = require('minipass-fetch')
      -const { Minipass } = require('minipass')
      -const MinipassFlush = require('minipass-flush')
      -const cacache = require('cacache')
      -const url = require('url')
      -
      -const CachingMinipassPipeline = require('../pipeline.js')
      -const CachePolicy = require('./policy.js')
      -const cacheKey = require('./key.js')
      -const remote = require('../remote.js')
      -
      -const hasOwnProperty = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop)
      -
      -// allow list for request headers that will be written to the cache index
      -// note: we will also store any request headers
      -// that are named in a response's vary header
      -const KEEP_REQUEST_HEADERS = [
      -  'accept-charset',
      -  'accept-encoding',
      -  'accept-language',
      -  'accept',
      -  'cache-control',
      -]
      -
      -// allow list for response headers that will be written to the cache index
      -// note: we must not store the real response's age header, or when we load
      -// a cache policy based on the metadata it will think the cached response
      -// is always stale
      -const KEEP_RESPONSE_HEADERS = [
      -  'cache-control',
      -  'content-encoding',
      -  'content-language',
      -  'content-type',
      -  'date',
      -  'etag',
      -  'expires',
      -  'last-modified',
      -  'link',
      -  'location',
      -  'pragma',
      -  'vary',
      -]
      -
      -// return an object containing all metadata to be written to the index
      -const getMetadata = (request, response, options) => {
      -  const metadata = {
      -    time: Date.now(),
      -    url: request.url,
      -    reqHeaders: {},
      -    resHeaders: {},
      -
      -    // options on which we must match the request and vary the response
      -    options: {
      -      compress: options.compress != null ? options.compress : request.compress,
      -    },
      -  }
      -
      -  // only save the status if it's not a 200 or 304
      -  if (response.status !== 200 && response.status !== 304) {
      -    metadata.status = response.status
      -  }
      -
      -  for (const name of KEEP_REQUEST_HEADERS) {
      -    if (request.headers.has(name)) {
      -      metadata.reqHeaders[name] = request.headers.get(name)
      -    }
      -  }
      -
      -  // if the request's host header differs from the host in the url
      -  // we need to keep it, otherwise it's just noise and we ignore it
      -  const host = request.headers.get('host')
      -  const parsedUrl = new url.URL(request.url)
      -  if (host && parsedUrl.host !== host) {
      -    metadata.reqHeaders.host = host
      -  }
      -
      -  // if the response has a vary header, make sure
      -  // we store the relevant request headers too
      -  if (response.headers.has('vary')) {
      -    const vary = response.headers.get('vary')
      -    // a vary of "*" means every header causes a different response.
      -    // in that scenario, we do not include any additional headers
      -    // as the freshness check will always fail anyway and we don't
      -    // want to bloat the cache indexes
      -    if (vary !== '*') {
      -      // copy any other request headers that will vary the response
      -      const varyHeaders = vary.trim().toLowerCase().split(/\s*,\s*/)
      -      for (const name of varyHeaders) {
      -        if (request.headers.has(name)) {
      -          metadata.reqHeaders[name] = request.headers.get(name)
      -        }
      -      }
      -    }
      -  }
      -
      -  for (const name of KEEP_RESPONSE_HEADERS) {
      -    if (response.headers.has(name)) {
      -      metadata.resHeaders[name] = response.headers.get(name)
      -    }
      -  }
      -
      -  for (const name of options.cacheAdditionalHeaders) {
      -    if (response.headers.has(name)) {
      -      metadata.resHeaders[name] = response.headers.get(name)
      -    }
      -  }
      -
      -  return metadata
      -}
      -
      -// symbols used to hide objects that may be lazily evaluated in a getter
      -const _request = Symbol('request')
      -const _response = Symbol('response')
      -const _policy = Symbol('policy')
      -
      -class CacheEntry {
      -  constructor ({ entry, request, response, options }) {
      -    if (entry) {
      -      this.key = entry.key
      -      this.entry = entry
      -      // previous versions of this module didn't write an explicit timestamp in
      -      // the metadata, so fall back to the entry's timestamp. we can't use the
      -      // entry timestamp to determine staleness because cacache will update it
      -      // when it verifies its data
      -      this.entry.metadata.time = this.entry.metadata.time || this.entry.time
      -    } else {
      -      this.key = cacheKey(request)
      -    }
      -
      -    this.options = options
      -
      -    // these properties are behind getters that lazily evaluate
      -    this[_request] = request
      -    this[_response] = response
      -    this[_policy] = null
      -  }
      -
      -  // returns a CacheEntry instance that satisfies the given request
      -  // or undefined if no existing entry satisfies
      -  static async find (request, options) {
      -    try {
      -      // compacts the index and returns an array of unique entries
      -      var matches = await cacache.index.compact(options.cachePath, cacheKey(request), (A, B) => {
      -        const entryA = new CacheEntry({ entry: A, options })
      -        const entryB = new CacheEntry({ entry: B, options })
      -        return entryA.policy.satisfies(entryB.request)
      -      }, {
      -        validateEntry: (entry) => {
      -          // clean out entries with a buggy content-encoding value
      -          if (entry.metadata &&
      -              entry.metadata.resHeaders &&
      -              entry.metadata.resHeaders['content-encoding'] === null) {
      -            return false
      -          }
      -
      -          // if an integrity is null, it needs to have a status specified
      -          if (entry.integrity === null) {
      -            return !!(entry.metadata && entry.metadata.status)
      -          }
      -
      -          return true
      -        },
      -      })
      -    } catch (err) {
      -      // if the compact request fails, ignore the error and return
      -      return
      -    }
      -
      -    // a cache mode of 'reload' means to behave as though we have no cache
      -    // on the way to the network. return undefined to allow cacheFetch to
      -    // create a brand new request no matter what.
      -    if (options.cache === 'reload') {
      -      return
      -    }
      -
      -    // find the specific entry that satisfies the request
      -    let match
      -    for (const entry of matches) {
      -      const _entry = new CacheEntry({
      -        entry,
      -        options,
      -      })
      -
      -      if (_entry.policy.satisfies(request)) {
      -        match = _entry
      -        break
      -      }
      -    }
      -
      -    return match
      -  }
      -
      -  // if the user made a PUT/POST/PATCH then we invalidate our
      -  // cache for the same url by deleting the index entirely
      -  static async invalidate (request, options) {
      -    const key = cacheKey(request)
      -    try {
      -      await cacache.rm.entry(options.cachePath, key, { removeFully: true })
      -    } catch (err) {
      -      // ignore errors
      -    }
      -  }
      -
      -  get request () {
      -    if (!this[_request]) {
      -      this[_request] = new Request(this.entry.metadata.url, {
      -        method: 'GET',
      -        headers: this.entry.metadata.reqHeaders,
      -        ...this.entry.metadata.options,
      -      })
      -    }
      -
      -    return this[_request]
      -  }
      -
      -  get response () {
      -    if (!this[_response]) {
      -      this[_response] = new Response(null, {
      -        url: this.entry.metadata.url,
      -        counter: this.options.counter,
      -        status: this.entry.metadata.status || 200,
      -        headers: {
      -          ...this.entry.metadata.resHeaders,
      -          'content-length': this.entry.size,
      -        },
      -      })
      -    }
      -
      -    return this[_response]
      -  }
      -
      -  get policy () {
      -    if (!this[_policy]) {
      -      this[_policy] = new CachePolicy({
      -        entry: this.entry,
      -        request: this.request,
      -        response: this.response,
      -        options: this.options,
      -      })
      -    }
      -
      -    return this[_policy]
      -  }
      -
      -  // wraps the response in a pipeline that stores the data
      -  // in the cache while the user consumes it
      -  async store (status) {
      -    // if we got a status other than 200, 301, or 308,
      -    // or the CachePolicy forbid storage, append the
      -    // cache status header and return it untouched
      -    if (
      -      this.request.method !== 'GET' ||
      -      ![200, 301, 308].includes(this.response.status) ||
      -      !this.policy.storable()
      -    ) {
      -      this.response.headers.set('x-local-cache-status', 'skip')
      -      return this.response
      -    }
      -
      -    const size = this.response.headers.get('content-length')
      -    const cacheOpts = {
      -      algorithms: this.options.algorithms,
      -      metadata: getMetadata(this.request, this.response, this.options),
      -      size,
      -      integrity: this.options.integrity,
      -      integrityEmitter: this.response.body.hasIntegrityEmitter && this.response.body,
      -    }
      -
      -    let body = null
      -    // we only set a body if the status is a 200, redirects are
      -    // stored as metadata only
      -    if (this.response.status === 200) {
      -      let cacheWriteResolve, cacheWriteReject
      -      const cacheWritePromise = new Promise((resolve, reject) => {
      -        cacheWriteResolve = resolve
      -        cacheWriteReject = reject
      -      })
      -
      -      body = new CachingMinipassPipeline({ events: ['integrity', 'size'] }, new MinipassFlush({
      -        flush () {
      -          return cacheWritePromise
      -        },
      -      }))
      -      // this is always true since if we aren't reusing the one from the remote fetch, we
      -      // are using the one from cacache
      -      body.hasIntegrityEmitter = true
      -
      -      const onResume = () => {
      -        const tee = new Minipass()
      -        const cacheStream = cacache.put.stream(this.options.cachePath, this.key, cacheOpts)
      -        // re-emit the integrity and size events on our new response body so they can be reused
      -        cacheStream.on('integrity', i => body.emit('integrity', i))
      -        cacheStream.on('size', s => body.emit('size', s))
      -        // 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)
      -      }
      -
      -      body.once('resume', onResume)
      -      body.once('end', () => body.removeListener('resume', onResume))
      -    } else {
      -      await cacache.index.insert(this.options.cachePath, this.key, null, cacheOpts)
      -    }
      -
      -    // note: we do not set the x-local-cache-hash header because we do not know
      -    // the hash value until after the write to the cache completes, which doesn't
      -    // happen until after the response has been sent and it's too late to write
      -    // the header anyway
      -    this.response.headers.set('x-local-cache', encodeURIComponent(this.options.cachePath))
      -    this.response.headers.set('x-local-cache-key', encodeURIComponent(this.key))
      -    this.response.headers.set('x-local-cache-mode', 'stream')
      -    this.response.headers.set('x-local-cache-status', status)
      -    this.response.headers.set('x-local-cache-time', new Date().toISOString())
      -    const newResponse = new Response(body, {
      -      url: this.response.url,
      -      status: this.response.status,
      -      headers: this.response.headers,
      -      counter: this.options.counter,
      -    })
      -    return newResponse
      -  }
      -
      -  // use the cached data to create a response and return it
      -  async respond (method, options, status) {
      -    let response
      -    if (method === 'HEAD' || [301, 308].includes(this.response.status)) {
      -      // if the request is a HEAD, or the response is a redirect,
      -      // then the metadata in the entry already includes everything
      -      // we need to build a response
      -      response = this.response
      -    } else {
      -      // we're responding with a full cached response, so create a body
      -      // that reads from cacache and attach it to a new Response
      -      const body = new Minipass()
      -      const headers = { ...this.policy.responseHeaders() }
      -
      -      const onResume = () => {
      -        const cacheStream = cacache.get.stream.byDigest(
      -          this.options.cachePath, this.entry.integrity, { memoize: this.options.memoize }
      -        )
      -        cacheStream.on('error', async (err) => {
      -          cacheStream.pause()
      -          if (err.code === 'EINTEGRITY') {
      -            await cacache.rm.content(
      -              this.options.cachePath, this.entry.integrity, { memoize: this.options.memoize }
      -            )
      -          }
      -          if (err.code === 'ENOENT' || err.code === 'EINTEGRITY') {
      -            await CacheEntry.invalidate(this.request, this.options)
      -          }
      -          body.emit('error', err)
      -          cacheStream.resume()
      -        })
      -        // emit the integrity and size events based on our metadata so we're consistent
      -        body.emit('integrity', this.entry.integrity)
      -        body.emit('size', Number(headers['content-length']))
      -        cacheStream.pipe(body)
      -      }
      -
      -      body.once('resume', onResume)
      -      body.once('end', () => body.removeListener('resume', onResume))
      -      response = new Response(body, {
      -        url: this.entry.metadata.url,
      -        counter: options.counter,
      -        status: 200,
      -        headers,
      -      })
      -    }
      -
      -    response.headers.set('x-local-cache', encodeURIComponent(this.options.cachePath))
      -    response.headers.set('x-local-cache-hash', encodeURIComponent(this.entry.integrity))
      -    response.headers.set('x-local-cache-key', encodeURIComponent(this.key))
      -    response.headers.set('x-local-cache-mode', 'stream')
      -    response.headers.set('x-local-cache-status', status)
      -    response.headers.set('x-local-cache-time', new Date(this.entry.metadata.time).toUTCString())
      -    return response
      -  }
      -
      -  // use the provided request along with this cache entry to
      -  // revalidate the stored response. returns a response, either
      -  // from the cache or from the update
      -  async revalidate (request, options) {
      -    const revalidateRequest = new Request(request, {
      -      headers: this.policy.revalidationHeaders(request),
      -    })
      -
      -    try {
      -      // NOTE: be sure to remove the headers property from the
      -      // user supplied options, since we have already defined
      -      // them on the new request object. if they're still in the
      -      // options then those will overwrite the ones from the policy
      -      var response = await remote(revalidateRequest, {
      -        ...options,
      -        headers: undefined,
      -      })
      -    } catch (err) {
      -      // if the network fetch fails, return the stale
      -      // cached response unless it has a cache-control
      -      // of 'must-revalidate'
      -      if (!this.policy.mustRevalidate) {
      -        return this.respond(request.method, options, 'stale')
      -      }
      -
      -      throw err
      -    }
      -
      -    if (this.policy.revalidated(revalidateRequest, response)) {
      -      // we got a 304, write a new index to the cache and respond from cache
      -      const metadata = getMetadata(request, response, options)
      -      // 304 responses do not include headers that are specific to the response data
      -      // since they do not include a body, so we copy values for headers that were
      -      // in the old cache entry to the new one, if the new metadata does not already
      -      // include that header
      -      for (const name of KEEP_RESPONSE_HEADERS) {
      -        if (
      -          !hasOwnProperty(metadata.resHeaders, name) &&
      -          hasOwnProperty(this.entry.metadata.resHeaders, name)
      -        ) {
      -          metadata.resHeaders[name] = this.entry.metadata.resHeaders[name]
      -        }
      -      }
      -
      -      for (const name of options.cacheAdditionalHeaders) {
      -        const inMeta = hasOwnProperty(metadata.resHeaders, name)
      -        const inEntry = hasOwnProperty(this.entry.metadata.resHeaders, name)
      -        const inPolicy = hasOwnProperty(this.policy.response.headers, name)
      -
      -        // if the header is in the existing entry, but it is not in the metadata
      -        // then we need to write it to the metadata as this will refresh the on-disk cache
      -        if (!inMeta && inEntry) {
      -          metadata.resHeaders[name] = this.entry.metadata.resHeaders[name]
      -        }
      -        // if the header is in the metadata, but not in the policy, then we need to set
      -        // it in the policy so that it's included in the immediate response. future
      -        // responses will load a new cache entry, so we don't need to change that
      -        if (!inPolicy && inMeta) {
      -          this.policy.response.headers[name] = metadata.resHeaders[name]
      -        }
      -      }
      -
      -      try {
      -        await cacache.index.insert(options.cachePath, this.key, this.entry.integrity, {
      -          size: this.entry.size,
      -          metadata,
      -        })
      -      } catch (err) {
      -        // if updating the cache index fails, we ignore it and
      -        // respond anyway
      -      }
      -      return this.respond(request.method, options, 'revalidated')
      -    }
      -
      -    // if we got a modified response, create a new entry based on it
      -    const newEntry = new CacheEntry({
      -      request,
      -      response,
      -      options,
      -    })
      -
      -    // respond with the new entry while writing it to the cache
      -    return newEntry.store('updated')
      -  }
      -}
      -
      -module.exports = CacheEntry
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/errors.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/errors.js
      deleted file mode 100644
      index 67a66573bebe66..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/errors.js
      +++ /dev/null
      @@ -1,11 +0,0 @@
      -class NotCachedError extends Error {
      -  constructor (url) {
      -    /* eslint-disable-next-line max-len */
      -    super(`request to ${url} failed: cache mode is 'only-if-cached' but no cached response is available.`)
      -    this.code = 'ENOTCACHED'
      -  }
      -}
      -
      -module.exports = {
      -  NotCachedError,
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/index.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/index.js
      deleted file mode 100644
      index 0de49d23fb9336..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/index.js
      +++ /dev/null
      @@ -1,49 +0,0 @@
      -const { NotCachedError } = require('./errors.js')
      -const CacheEntry = require('./entry.js')
      -const remote = require('../remote.js')
      -
      -// do whatever is necessary to get a Response and return it
      -const cacheFetch = async (request, options) => {
      -  // try to find a cached entry that satisfies this request
      -  const entry = await CacheEntry.find(request, options)
      -  if (!entry) {
      -    // no cached result, if the cache mode is 'only-if-cached' that's a failure
      -    if (options.cache === 'only-if-cached') {
      -      throw new NotCachedError(request.url)
      -    }
      -
      -    // otherwise, we make a request, store it and return it
      -    const response = await remote(request, options)
      -    const newEntry = new CacheEntry({ request, response, options })
      -    return newEntry.store('miss')
      -  }
      -
      -  // we have a cached response that satisfies this request, however if the cache
      -  // mode is 'no-cache' then we send the revalidation request no matter what
      -  if (options.cache === 'no-cache') {
      -    return entry.revalidate(request, options)
      -  }
      -
      -  // if the cached entry is not stale, or if the cache mode is 'force-cache' or
      -  // 'only-if-cached' we can respond with the cached entry. set the status
      -  // based on the result of needsRevalidation and respond
      -  const _needsRevalidation = entry.policy.needsRevalidation(request)
      -  if (options.cache === 'force-cache' ||
      -      options.cache === 'only-if-cached' ||
      -      !_needsRevalidation) {
      -    return entry.respond(request.method, options, _needsRevalidation ? 'stale' : 'hit')
      -  }
      -
      -  // if we got here, the cache entry is stale so revalidate it
      -  return entry.revalidate(request, options)
      -}
      -
      -cacheFetch.invalidate = async (request, options) => {
      -  if (!options.cachePath) {
      -    return
      -  }
      -
      -  return CacheEntry.invalidate(request, options)
      -}
      -
      -module.exports = cacheFetch
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/key.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/key.js
      deleted file mode 100644
      index f7684d562b7fae..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/key.js
      +++ /dev/null
      @@ -1,17 +0,0 @@
      -const { URL, format } = require('url')
      -
      -// options passed to url.format() when generating a key
      -const formatOptions = {
      -  auth: false,
      -  fragment: false,
      -  search: true,
      -  unicode: false,
      -}
      -
      -// returns a string to be used as the cache key for the Request
      -const cacheKey = (request) => {
      -  const parsed = new URL(request.url)
      -  return `make-fetch-happen:request-cache:${format(parsed, formatOptions)}`
      -}
      -
      -module.exports = cacheKey
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/policy.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/policy.js
      deleted file mode 100644
      index ada3c8600dae92..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/policy.js
      +++ /dev/null
      @@ -1,161 +0,0 @@
      -const CacheSemantics = require('http-cache-semantics')
      -const Negotiator = require('negotiator')
      -const ssri = require('ssri')
      -
      -// options passed to http-cache-semantics constructor
      -const policyOptions = {
      -  shared: false,
      -  ignoreCargoCult: true,
      -}
      -
      -// a fake empty response, used when only testing the
      -// request for storability
      -const emptyResponse = { status: 200, headers: {} }
      -
      -// returns a plain object representation of the Request
      -const requestObject = (request) => {
      -  const _obj = {
      -    method: request.method,
      -    url: request.url,
      -    headers: {},
      -    compress: request.compress,
      -  }
      -
      -  request.headers.forEach((value, key) => {
      -    _obj.headers[key] = value
      -  })
      -
      -  return _obj
      -}
      -
      -// returns a plain object representation of the Response
      -const responseObject = (response) => {
      -  const _obj = {
      -    status: response.status,
      -    headers: {},
      -  }
      -
      -  response.headers.forEach((value, key) => {
      -    _obj.headers[key] = value
      -  })
      -
      -  return _obj
      -}
      -
      -class CachePolicy {
      -  constructor ({ entry, request, response, options }) {
      -    this.entry = entry
      -    this.request = requestObject(request)
      -    this.response = responseObject(response)
      -    this.options = options
      -    this.policy = new CacheSemantics(this.request, this.response, policyOptions)
      -
      -    if (this.entry) {
      -      // if we have an entry, copy the timestamp to the _responseTime
      -      // this is necessary because the CacheSemantics constructor forces
      -      // the value to Date.now() which means a policy created from a
      -      // cache entry is likely to always identify itself as stale
      -      this.policy._responseTime = this.entry.metadata.time
      -    }
      -  }
      -
      -  // static method to quickly determine if a request alone is storable
      -  static storable (request, options) {
      -    // no cachePath means no caching
      -    if (!options.cachePath) {
      -      return false
      -    }
      -
      -    // user explicitly asked not to cache
      -    if (options.cache === 'no-store') {
      -      return false
      -    }
      -
      -    // we only cache GET and HEAD requests
      -    if (!['GET', 'HEAD'].includes(request.method)) {
      -      return false
      -    }
      -
      -    // otherwise, let http-cache-semantics make the decision
      -    // based on the request's headers
      -    const policy = new CacheSemantics(requestObject(request), emptyResponse, policyOptions)
      -    return policy.storable()
      -  }
      -
      -  // returns true if the policy satisfies the request
      -  satisfies (request) {
      -    const _req = requestObject(request)
      -    if (this.request.headers.host !== _req.headers.host) {
      -      return false
      -    }
      -
      -    if (this.request.compress !== _req.compress) {
      -      return false
      -    }
      -
      -    const negotiatorA = new Negotiator(this.request)
      -    const negotiatorB = new Negotiator(_req)
      -
      -    if (JSON.stringify(negotiatorA.mediaTypes()) !== JSON.stringify(negotiatorB.mediaTypes())) {
      -      return false
      -    }
      -
      -    if (JSON.stringify(negotiatorA.languages()) !== JSON.stringify(negotiatorB.languages())) {
      -      return false
      -    }
      -
      -    if (JSON.stringify(negotiatorA.encodings()) !== JSON.stringify(negotiatorB.encodings())) {
      -      return false
      -    }
      -
      -    if (this.options.integrity) {
      -      return ssri.parse(this.options.integrity).match(this.entry.integrity)
      -    }
      -
      -    return true
      -  }
      -
      -  // returns true if the request and response allow caching
      -  storable () {
      -    return this.policy.storable()
      -  }
      -
      -  // NOTE: this is a hack to avoid parsing the cache-control
      -  // header ourselves, it returns true if the response's
      -  // cache-control contains must-revalidate
      -  get mustRevalidate () {
      -    return !!this.policy._rescc['must-revalidate']
      -  }
      -
      -  // returns true if the cached response requires revalidation
      -  // for the given request
      -  needsRevalidation (request) {
      -    const _req = requestObject(request)
      -    // force method to GET because we only cache GETs
      -    // but can serve a HEAD from a cached GET
      -    _req.method = 'GET'
      -    return !this.policy.satisfiesWithoutRevalidation(_req)
      -  }
      -
      -  responseHeaders () {
      -    return this.policy.responseHeaders()
      -  }
      -
      -  // returns a new object containing the appropriate headers
      -  // to send a revalidation request
      -  revalidationHeaders (request) {
      -    const _req = requestObject(request)
      -    return this.policy.revalidationHeaders(_req)
      -  }
      -
      -  // returns true if the request/response was revalidated
      -  // successfully. returns false if a new response was received
      -  revalidated (request, response) {
      -    const _req = requestObject(request)
      -    const _res = responseObject(response)
      -    const policy = this.policy.revalidatedPolicy(_req, _res)
      -    return !policy.modified
      -  }
      -}
      -
      -module.exports = CachePolicy
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/dns.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/dns.js
      deleted file mode 100644
      index 13102b57c4aa06..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/dns.js
      +++ /dev/null
      @@ -1,49 +0,0 @@
      -const LRUCache = require('lru-cache')
      -const dns = require('dns')
      -
      -const defaultOptions = exports.defaultOptions = {
      -  family: undefined,
      -  hints: dns.ADDRCONFIG,
      -  all: false,
      -  verbatim: undefined,
      -}
      -
      -const lookupCache = exports.lookupCache = new LRUCache({ max: 50 })
      -
      -// this is a factory so that each request can have its own opts (i.e. ttl)
      -// while still sharing the cache across all requests
      -exports.getLookup = (dnsOptions) => {
      -  return (hostname, options, callback) => {
      -    if (typeof options === 'function') {
      -      callback = options
      -      options = null
      -    } else if (typeof options === 'number') {
      -      options = { family: options }
      -    }
      -
      -    options = { ...defaultOptions, ...options }
      -
      -    const key = JSON.stringify({
      -      hostname,
      -      family: options.family,
      -      hints: options.hints,
      -      all: options.all,
      -      verbatim: options.verbatim,
      -    })
      -
      -    if (lookupCache.has(key)) {
      -      const [address, family] = lookupCache.get(key)
      -      process.nextTick(callback, null, address, family)
      -      return
      -    }
      -
      -    dnsOptions.lookup(hostname, options, (err, address, family) => {
      -      if (err) {
      -        return callback(err)
      -      }
      -
      -      lookupCache.set(key, [address, family], { ttl: dnsOptions.ttl })
      -      return callback(null, address, family)
      -    })
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/fetch.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/fetch.js
      deleted file mode 100644
      index 233ba67e165502..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/fetch.js
      +++ /dev/null
      @@ -1,118 +0,0 @@
      -'use strict'
      -
      -const { FetchError, Request, isRedirect } = require('minipass-fetch')
      -const url = require('url')
      -
      -const CachePolicy = require('./cache/policy.js')
      -const cache = require('./cache/index.js')
      -const remote = require('./remote.js')
      -
      -// given a Request, a Response and user options
      -// return true if the response is a redirect that
      -// can be followed. we throw errors that will result
      -// in the fetch being rejected if the redirect is
      -// possible but invalid for some reason
      -const canFollowRedirect = (request, response, options) => {
      -  if (!isRedirect(response.status)) {
      -    return false
      -  }
      -
      -  if (options.redirect === 'manual') {
      -    return false
      -  }
      -
      -  if (options.redirect === 'error') {
      -    throw new FetchError(`redirect mode is set to error: ${request.url}`,
      -      'no-redirect', { code: 'ENOREDIRECT' })
      -  }
      -
      -  if (!response.headers.has('location')) {
      -    throw new FetchError(`redirect location header missing for: ${request.url}`,
      -      'no-location', { code: 'EINVALIDREDIRECT' })
      -  }
      -
      -  if (request.counter >= request.follow) {
      -    throw new FetchError(`maximum redirect reached at: ${request.url}`,
      -      'max-redirect', { code: 'EMAXREDIRECT' })
      -  }
      -
      -  return true
      -}
      -
      -// given a Request, a Response, and the user's options return an object
      -// with a new Request and a new options object that will be used for
      -// following the redirect
      -const getRedirect = (request, response, options) => {
      -  const _opts = { ...options }
      -  const location = response.headers.get('location')
      -  const redirectUrl = new url.URL(location, /^https?:/.test(location) ? undefined : request.url)
      -  // Comment below is used under the following license:
      -  /**
      -   * @license
      -   * Copyright (c) 2010-2012 Mikeal Rogers
      -   * 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.
      -   */
      -
      -  // Remove authorization if changing hostnames (but not if just
      -  // changing ports or protocols).  This matches the behavior of request:
      -  // https://github.com/request/request/blob/b12a6245/lib/redirect.js#L134-L138
      -  if (new url.URL(request.url).hostname !== redirectUrl.hostname) {
      -    request.headers.delete('authorization')
      -    request.headers.delete('cookie')
      -  }
      -
      -  // for POST request with 301/302 response, or any request with 303 response,
      -  // use GET when following redirect
      -  if (
      -    response.status === 303 ||
      -    (request.method === 'POST' && [301, 302].includes(response.status))
      -  ) {
      -    _opts.method = 'GET'
      -    _opts.body = null
      -    request.headers.delete('content-length')
      -  }
      -
      -  _opts.headers = {}
      -  request.headers.forEach((value, key) => {
      -    _opts.headers[key] = value
      -  })
      -
      -  _opts.counter = ++request.counter
      -  const redirectReq = new Request(url.format(redirectUrl), _opts)
      -  return {
      -    request: redirectReq,
      -    options: _opts,
      -  }
      -}
      -
      -const fetch = async (request, options) => {
      -  const response = CachePolicy.storable(request, options)
      -    ? await cache(request, options)
      -    : await remote(request, options)
      -
      -  // if the request wasn't a GET or HEAD, and the response
      -  // status is between 200 and 399 inclusive, invalidate the
      -  // request url
      -  if (!['GET', 'HEAD'].includes(request.method) &&
      -      response.status >= 200 &&
      -      response.status <= 399) {
      -    await cache.invalidate(request, options)
      -  }
      -
      -  if (!canFollowRedirect(request, response, options)) {
      -    return response
      -  }
      -
      -  const redirect = getRedirect(request, response, options)
      -  return fetch(redirect.request, redirect.options)
      -}
      -
      -module.exports = fetch
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/index.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/index.js
      deleted file mode 100644
      index 2f12e8e1b61131..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/index.js
      +++ /dev/null
      @@ -1,41 +0,0 @@
      -const { FetchError, Headers, Request, Response } = require('minipass-fetch')
      -
      -const configureOptions = require('./options.js')
      -const fetch = require('./fetch.js')
      -
      -const makeFetchHappen = (url, opts) => {
      -  const options = configureOptions(opts)
      -
      -  const request = new Request(url, options)
      -  return fetch(request, options)
      -}
      -
      -makeFetchHappen.defaults = (defaultUrl, defaultOptions = {}, wrappedFetch = makeFetchHappen) => {
      -  if (typeof defaultUrl === 'object') {
      -    defaultOptions = defaultUrl
      -    defaultUrl = null
      -  }
      -
      -  const defaultedFetch = (url, options = {}) => {
      -    const finalUrl = url || defaultUrl
      -    const finalOptions = {
      -      ...defaultOptions,
      -      ...options,
      -      headers: {
      -        ...defaultOptions.headers,
      -        ...options.headers,
      -      },
      -    }
      -    return wrappedFetch(finalUrl, finalOptions)
      -  }
      -
      -  defaultedFetch.defaults = (defaultUrl1, defaultOptions1 = {}) =>
      -    makeFetchHappen.defaults(defaultUrl1, defaultOptions1, defaultedFetch)
      -  return defaultedFetch
      -}
      -
      -module.exports = makeFetchHappen
      -module.exports.FetchError = FetchError
      -module.exports.Headers = Headers
      -module.exports.Request = Request
      -module.exports.Response = Response
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/options.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/options.js
      deleted file mode 100644
      index f77511279f831d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/options.js
      +++ /dev/null
      @@ -1,54 +0,0 @@
      -const dns = require('dns')
      -
      -const conditionalHeaders = [
      -  'if-modified-since',
      -  'if-none-match',
      -  'if-unmodified-since',
      -  'if-match',
      -  'if-range',
      -]
      -
      -const configureOptions = (opts) => {
      -  const { strictSSL, ...options } = { ...opts }
      -  options.method = options.method ? options.method.toUpperCase() : 'GET'
      -  options.rejectUnauthorized = strictSSL !== false
      -
      -  if (!options.retry) {
      -    options.retry = { retries: 0 }
      -  } else if (typeof options.retry === 'string') {
      -    const retries = parseInt(options.retry, 10)
      -    if (isFinite(retries)) {
      -      options.retry = { retries }
      -    } else {
      -      options.retry = { retries: 0 }
      -    }
      -  } else if (typeof options.retry === 'number') {
      -    options.retry = { retries: options.retry }
      -  } else {
      -    options.retry = { retries: 0, ...options.retry }
      -  }
      -
      -  options.dns = { ttl: 5 * 60 * 1000, lookup: dns.lookup, ...options.dns }
      -
      -  options.cache = options.cache || 'default'
      -  if (options.cache === 'default') {
      -    const hasConditionalHeader = Object.keys(options.headers || {}).some((name) => {
      -      return conditionalHeaders.includes(name.toLowerCase())
      -    })
      -    if (hasConditionalHeader) {
      -      options.cache = 'no-store'
      -    }
      -  }
      -
      -  options.cacheAdditionalHeaders = options.cacheAdditionalHeaders || []
      -
      -  // cacheManager is deprecated, but if it's set and
      -  // cachePath is not we should copy it to the new field
      -  if (options.cacheManager && !options.cachePath) {
      -    options.cachePath = options.cacheManager
      -  }
      -
      -  return options
      -}
      -
      -module.exports = configureOptions
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/pipeline.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/pipeline.js
      deleted file mode 100644
      index b1d221b2d0ce31..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/pipeline.js
      +++ /dev/null
      @@ -1,41 +0,0 @@
      -'use strict'
      -
      -const MinipassPipeline = require('minipass-pipeline')
      -
      -class CachingMinipassPipeline extends MinipassPipeline {
      -  #events = []
      -  #data = new Map()
      -
      -  constructor (opts, ...streams) {
      -    // CRITICAL: do NOT pass the streams to the call to super(), this will start
      -    // the flow of data and potentially cause the events we need to catch to emit
      -    // before we've finished our own setup. instead we call super() with no args,
      -    // finish our setup, and then push the streams into ourselves to start the
      -    // data flow
      -    super()
      -    this.#events = opts.events
      -
      -    /* istanbul ignore next - coverage disabled because this is pointless to test here */
      -    if (streams.length) {
      -      this.push(...streams)
      -    }
      -  }
      -
      -  on (event, handler) {
      -    if (this.#events.includes(event) && this.#data.has(event)) {
      -      return handler(...this.#data.get(event))
      -    }
      -
      -    return super.on(event, handler)
      -  }
      -
      -  emit (event, ...data) {
      -    if (this.#events.includes(event)) {
      -      this.#data.set(event, data)
      -    }
      -
      -    return super.emit(event, ...data)
      -  }
      -}
      -
      -module.exports = CachingMinipassPipeline
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/remote.js b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/remote.js
      deleted file mode 100644
      index bdbcc79cad908d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/lib/remote.js
      +++ /dev/null
      @@ -1,121 +0,0 @@
      -const { Minipass } = require('minipass')
      -const fetch = require('minipass-fetch')
      -const promiseRetry = require('promise-retry')
      -const ssri = require('ssri')
      -
      -const CachingMinipassPipeline = require('./pipeline.js')
      -const getAgent = require('./agent.js')
      -const pkg = require('../package.json')
      -
      -const USER_AGENT = `${pkg.name}/${pkg.version} (+https://npm.im/${pkg.name})`
      -
      -const RETRY_ERRORS = [
      -  'ECONNRESET', // remote socket closed on us
      -  'ECONNREFUSED', // remote host refused to open connection
      -  'EADDRINUSE', // failed to bind to a local port (proxy?)
      -  'ETIMEDOUT', // someone in the transaction is WAY TOO SLOW
      -  'ERR_SOCKET_TIMEOUT', // same as above, but this one comes from agentkeepalive
      -  // Known codes we do NOT retry on:
      -  // ENOTFOUND (getaddrinfo failure. Either bad hostname, or offline)
      -]
      -
      -const RETRY_TYPES = [
      -  'request-timeout',
      -]
      -
      -// make a request directly to the remote source,
      -// retrying certain classes of errors as well as
      -// following redirects (through the cache if necessary)
      -// and verifying response integrity
      -const remoteFetch = (request, options) => {
      -  const agent = getAgent(request.url, options)
      -  if (!request.headers.has('connection')) {
      -    request.headers.set('connection', agent ? 'keep-alive' : 'close')
      -  }
      -
      -  if (!request.headers.has('user-agent')) {
      -    request.headers.set('user-agent', USER_AGENT)
      -  }
      -
      -  // keep our own options since we're overriding the agent
      -  // and the redirect mode
      -  const _opts = {
      -    ...options,
      -    agent,
      -    redirect: 'manual',
      -  }
      -
      -  return promiseRetry(async (retryHandler, attemptNum) => {
      -    const req = new fetch.Request(request, _opts)
      -    try {
      -      let res = await fetch(req, _opts)
      -      if (_opts.integrity && res.status === 200) {
      -        // we got a 200 response and the user has specified an expected
      -        // integrity value, so wrap the response in an ssri stream to verify it
      -        const integrityStream = ssri.integrityStream({
      -          algorithms: _opts.algorithms,
      -          integrity: _opts.integrity,
      -          size: _opts.size,
      -        })
      -        const pipeline = new CachingMinipassPipeline({
      -          events: ['integrity', 'size'],
      -        }, res.body, integrityStream)
      -        // we also propagate the integrity and size events out to the pipeline so we can use
      -        // this new response body as an integrityEmitter for cacache
      -        integrityStream.on('integrity', i => pipeline.emit('integrity', i))
      -        integrityStream.on('size', s => pipeline.emit('size', s))
      -        res = new fetch.Response(pipeline, res)
      -        // set an explicit flag so we know if our response body will emit integrity and size
      -        res.body.hasIntegrityEmitter = true
      -      }
      -
      -      res.headers.set('x-fetch-attempts', attemptNum)
      -
      -      // do not retry POST requests, or requests with a streaming body
      -      // do retry requests with a 408, 420, 429 or 500+ status in the response
      -      const isStream = Minipass.isStream(req.body)
      -      const isRetriable = req.method !== 'POST' &&
      -          !isStream &&
      -          ([408, 420, 429].includes(res.status) || res.status >= 500)
      -
      -      if (isRetriable) {
      -        if (typeof options.onRetry === 'function') {
      -          options.onRetry(res)
      -        }
      -
      -        return retryHandler(res)
      -      }
      -
      -      return res
      -    } catch (err) {
      -      const code = (err.code === 'EPROMISERETRY')
      -        ? err.retried.code
      -        : err.code
      -
      -      // err.retried will be the thing that was thrown from above
      -      // if it's a response, we just got a bad status code and we
      -      // can re-throw to allow the retry
      -      const isRetryError = err.retried instanceof fetch.Response ||
      -        (RETRY_ERRORS.includes(code) && RETRY_TYPES.includes(err.type))
      -
      -      if (req.method === 'POST' || isRetryError) {
      -        throw err
      -      }
      -
      -      if (typeof options.onRetry === 'function') {
      -        options.onRetry(err)
      -      }
      -
      -      return retryHandler(err)
      -    }
      -  }, options.retry).catch((err) => {
      -    // don't reject for http errors, just return them
      -    if (err.status >= 400 && err.type !== 'system') {
      -      return err
      -    }
      -
      -    throw err
      -  })
      -}
      -
      -module.exports = remoteFetch
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/package.json b/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/package.json
      deleted file mode 100644
      index fd415dc9966faa..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/make-fetch-happen/package.json
      +++ /dev/null
      @@ -1,78 +0,0 @@
      -{
      -  "name": "make-fetch-happen",
      -  "version": "11.1.1",
      -  "description": "Opinionated, caching, retrying fetch client",
      -  "main": "lib/index.js",
      -  "files": [
      -    "bin/",
      -    "lib/"
      -  ],
      -  "scripts": {
      -    "test": "tap",
      -    "posttest": "npm run lint",
      -    "eslint": "eslint",
      -    "lint": "eslint \"**/*.js\"",
      -    "lintfix": "npm run lint -- --fix",
      -    "postlint": "template-oss-check",
      -    "snap": "tap",
      -    "template-oss-apply": "template-oss-apply --force"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "https://github.com/npm/make-fetch-happen.git"
      -  },
      -  "keywords": [
      -    "http",
      -    "request",
      -    "fetch",
      -    "mean girls",
      -    "caching",
      -    "cache",
      -    "subresource integrity"
      -  ],
      -  "author": "GitHub Inc.",
      -  "license": "ISC",
      -  "dependencies": {
      -    "agentkeepalive": "^4.2.1",
      -    "cacache": "^17.0.0",
      -    "http-cache-semantics": "^4.1.1",
      -    "http-proxy-agent": "^5.0.0",
      -    "https-proxy-agent": "^5.0.0",
      -    "is-lambda": "^1.0.1",
      -    "lru-cache": "^7.7.1",
      -    "minipass": "^5.0.0",
      -    "minipass-fetch": "^3.0.0",
      -    "minipass-flush": "^1.0.5",
      -    "minipass-pipeline": "^1.2.4",
      -    "negotiator": "^0.6.3",
      -    "promise-retry": "^2.0.1",
      -    "socks-proxy-agent": "^7.0.0",
      -    "ssri": "^10.0.0"
      -  },
      -  "devDependencies": {
      -    "@npmcli/eslint-config": "^4.0.0",
      -    "@npmcli/template-oss": "4.14.1",
      -    "nock": "^13.2.4",
      -    "safe-buffer": "^5.2.1",
      -    "standard-version": "^9.3.2",
      -    "tap": "^16.0.0"
      -  },
      -  "engines": {
      -    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
      -  },
      -  "tap": {
      -    "color": 1,
      -    "files": "test/*.js",
      -    "check-coverage": true,
      -    "timeout": 60,
      -    "nyc-arg": [
      -      "--exclude",
      -      "tap-snapshots/**"
      -    ]
      -  },
      -  "templateOSS": {
      -    "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
      -    "version": "4.14.1",
      -    "publish": "true"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/minimatch/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/minimatch/LICENSE
      deleted file mode 100644
      index 19129e315fe593..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/minimatch/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) Isaac Z. Schlueter and Contributors
      -
      -Permission to use, copy, modify, and/or distribute this software for any
      -purpose with or without fee is hereby granted, provided that the above
      -copyright notice and this permission notice appear in all copies.
      -
      -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
      -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/minimatch/minimatch.js b/deps/npm/node_modules/node-gyp/node_modules/minimatch/minimatch.js
      deleted file mode 100644
      index fda45ade7cfc35..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/minimatch/minimatch.js
      +++ /dev/null
      @@ -1,947 +0,0 @@
      -module.exports = minimatch
      -minimatch.Minimatch = Minimatch
      -
      -var path = (function () { try { return require('path') } catch (e) {}}()) || {
      -  sep: '/'
      -}
      -minimatch.sep = path.sep
      -
      -var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {}
      -var expand = require('brace-expansion')
      -
      -var plTypes = {
      -  '!': { open: '(?:(?!(?:', close: '))[^/]*?)'},
      -  '?': { open: '(?:', close: ')?' },
      -  '+': { open: '(?:', close: ')+' },
      -  '*': { open: '(?:', close: ')*' },
      -  '@': { open: '(?:', close: ')' }
      -}
      -
      -// any single thing other than /
      -// don't need to escape / when using new RegExp()
      -var qmark = '[^/]'
      -
      -// * => any number of characters
      -var star = qmark + '*?'
      -
      -// ** when dots are allowed.  Anything goes, except .. and .
      -// not (^ or / followed by one or two dots followed by $ or /),
      -// followed by anything, any number of times.
      -var twoStarDot = '(?:(?!(?:\\\/|^)(?:\\.{1,2})($|\\\/)).)*?'
      -
      -// not a ^ or / followed by a dot,
      -// followed by anything, any number of times.
      -var twoStarNoDot = '(?:(?!(?:\\\/|^)\\.).)*?'
      -
      -// characters that need to be escaped in RegExp.
      -var reSpecials = charSet('().*{}+?[]^$\\!')
      -
      -// "abc" -> { a:true, b:true, c:true }
      -function charSet (s) {
      -  return s.split('').reduce(function (set, c) {
      -    set[c] = true
      -    return set
      -  }, {})
      -}
      -
      -// normalizes slashes.
      -var slashSplit = /\/+/
      -
      -minimatch.filter = filter
      -function filter (pattern, options) {
      -  options = options || {}
      -  return function (p, i, list) {
      -    return minimatch(p, pattern, options)
      -  }
      -}
      -
      -function ext (a, b) {
      -  b = b || {}
      -  var t = {}
      -  Object.keys(a).forEach(function (k) {
      -    t[k] = a[k]
      -  })
      -  Object.keys(b).forEach(function (k) {
      -    t[k] = b[k]
      -  })
      -  return t
      -}
      -
      -minimatch.defaults = function (def) {
      -  if (!def || typeof def !== 'object' || !Object.keys(def).length) {
      -    return minimatch
      -  }
      -
      -  var orig = minimatch
      -
      -  var m = function minimatch (p, pattern, options) {
      -    return orig(p, pattern, ext(def, options))
      -  }
      -
      -  m.Minimatch = function Minimatch (pattern, options) {
      -    return new orig.Minimatch(pattern, ext(def, options))
      -  }
      -  m.Minimatch.defaults = function defaults (options) {
      -    return orig.defaults(ext(def, options)).Minimatch
      -  }
      -
      -  m.filter = function filter (pattern, options) {
      -    return orig.filter(pattern, ext(def, options))
      -  }
      -
      -  m.defaults = function defaults (options) {
      -    return orig.defaults(ext(def, options))
      -  }
      -
      -  m.makeRe = function makeRe (pattern, options) {
      -    return orig.makeRe(pattern, ext(def, options))
      -  }
      -
      -  m.braceExpand = function braceExpand (pattern, options) {
      -    return orig.braceExpand(pattern, ext(def, options))
      -  }
      -
      -  m.match = function (list, pattern, options) {
      -    return orig.match(list, pattern, ext(def, options))
      -  }
      -
      -  return m
      -}
      -
      -Minimatch.defaults = function (def) {
      -  return minimatch.defaults(def).Minimatch
      -}
      -
      -function minimatch (p, pattern, options) {
      -  assertValidPattern(pattern)
      -
      -  if (!options) options = {}
      -
      -  // shortcut: comments match nothing.
      -  if (!options.nocomment && pattern.charAt(0) === '#') {
      -    return false
      -  }
      -
      -  return new Minimatch(pattern, options).match(p)
      -}
      -
      -function Minimatch (pattern, options) {
      -  if (!(this instanceof Minimatch)) {
      -    return new Minimatch(pattern, options)
      -  }
      -
      -  assertValidPattern(pattern)
      -
      -  if (!options) options = {}
      -
      -  pattern = pattern.trim()
      -
      -  // windows support: need to use /, not \
      -  if (!options.allowWindowsEscape && path.sep !== '/') {
      -    pattern = pattern.split(path.sep).join('/')
      -  }
      -
      -  this.options = options
      -  this.set = []
      -  this.pattern = pattern
      -  this.regexp = null
      -  this.negate = false
      -  this.comment = false
      -  this.empty = false
      -  this.partial = !!options.partial
      -
      -  // make the set of regexps etc.
      -  this.make()
      -}
      -
      -Minimatch.prototype.debug = function () {}
      -
      -Minimatch.prototype.make = make
      -function make () {
      -  var pattern = this.pattern
      -  var options = this.options
      -
      -  // empty patterns and comments match nothing.
      -  if (!options.nocomment && pattern.charAt(0) === '#') {
      -    this.comment = true
      -    return
      -  }
      -  if (!pattern) {
      -    this.empty = true
      -    return
      -  }
      -
      -  // step 1: figure out negation, etc.
      -  this.parseNegate()
      -
      -  // step 2: expand braces
      -  var set = this.globSet = this.braceExpand()
      -
      -  if (options.debug) this.debug = function debug() { console.error.apply(console, arguments) }
      -
      -  this.debug(this.pattern, set)
      -
      -  // step 3: now we have a set, so turn each one into a series of path-portion
      -  // matching patterns.
      -  // These will be regexps, except in the case of "**", which is
      -  // set to the GLOBSTAR object for globstar behavior,
      -  // and will not contain any / characters
      -  set = this.globParts = set.map(function (s) {
      -    return s.split(slashSplit)
      -  })
      -
      -  this.debug(this.pattern, set)
      -
      -  // glob --> regexps
      -  set = set.map(function (s, si, set) {
      -    return s.map(this.parse, this)
      -  }, this)
      -
      -  this.debug(this.pattern, set)
      -
      -  // filter out everything that didn't compile properly.
      -  set = set.filter(function (s) {
      -    return s.indexOf(false) === -1
      -  })
      -
      -  this.debug(this.pattern, set)
      -
      -  this.set = set
      -}
      -
      -Minimatch.prototype.parseNegate = parseNegate
      -function parseNegate () {
      -  var pattern = this.pattern
      -  var negate = false
      -  var options = this.options
      -  var negateOffset = 0
      -
      -  if (options.nonegate) return
      -
      -  for (var i = 0, l = pattern.length
      -    ; i < l && pattern.charAt(i) === '!'
      -    ; i++) {
      -    negate = !negate
      -    negateOffset++
      -  }
      -
      -  if (negateOffset) this.pattern = pattern.substr(negateOffset)
      -  this.negate = negate
      -}
      -
      -// Brace expansion:
      -// a{b,c}d -> abd acd
      -// a{b,}c -> abc ac
      -// a{0..3}d -> a0d a1d a2d a3d
      -// a{b,c{d,e}f}g -> abg acdfg acefg
      -// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg
      -//
      -// Invalid sets are not expanded.
      -// a{2..}b -> a{2..}b
      -// a{b}c -> a{b}c
      -minimatch.braceExpand = function (pattern, options) {
      -  return braceExpand(pattern, options)
      -}
      -
      -Minimatch.prototype.braceExpand = braceExpand
      -
      -function braceExpand (pattern, options) {
      -  if (!options) {
      -    if (this instanceof Minimatch) {
      -      options = this.options
      -    } else {
      -      options = {}
      -    }
      -  }
      -
      -  pattern = typeof pattern === 'undefined'
      -    ? this.pattern : pattern
      -
      -  assertValidPattern(pattern)
      -
      -  // Thanks to Yeting Li  for
      -  // improving this regexp to avoid a ReDOS vulnerability.
      -  if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
      -    // shortcut. no need to expand.
      -    return [pattern]
      -  }
      -
      -  return expand(pattern)
      -}
      -
      -var MAX_PATTERN_LENGTH = 1024 * 64
      -var assertValidPattern = function (pattern) {
      -  if (typeof pattern !== 'string') {
      -    throw new TypeError('invalid pattern')
      -  }
      -
      -  if (pattern.length > MAX_PATTERN_LENGTH) {
      -    throw new TypeError('pattern is too long')
      -  }
      -}
      -
      -// parse a component of the expanded set.
      -// At this point, no pattern may contain "/" in it
      -// so we're going to return a 2d array, where each entry is the full
      -// pattern, split on '/', and then turned into a regular expression.
      -// A regexp is made at the end which joins each array with an
      -// escaped /, and another full one which joins each regexp with |.
      -//
      -// Following the lead of Bash 4.1, note that "**" only has special meaning
      -// when it is the *only* thing in a path portion.  Otherwise, any series
      -// of * is equivalent to a single *.  Globstar behavior is enabled by
      -// default, and can be disabled by setting options.noglobstar.
      -Minimatch.prototype.parse = parse
      -var SUBPARSE = {}
      -function parse (pattern, isSub) {
      -  assertValidPattern(pattern)
      -
      -  var options = this.options
      -
      -  // shortcuts
      -  if (pattern === '**') {
      -    if (!options.noglobstar)
      -      return GLOBSTAR
      -    else
      -      pattern = '*'
      -  }
      -  if (pattern === '') return ''
      -
      -  var re = ''
      -  var hasMagic = !!options.nocase
      -  var escaping = false
      -  // ? => one single character
      -  var patternListStack = []
      -  var negativeLists = []
      -  var stateChar
      -  var inClass = false
      -  var reClassStart = -1
      -  var classStart = -1
      -  // . and .. never match anything that doesn't start with .,
      -  // even when options.dot is set.
      -  var patternStart = pattern.charAt(0) === '.' ? '' // anything
      -  // not (start or / followed by . or .. followed by / or end)
      -  : options.dot ? '(?!(?:^|\\\/)\\.{1,2}(?:$|\\\/))'
      -  : '(?!\\.)'
      -  var self = this
      -
      -  function clearStateChar () {
      -    if (stateChar) {
      -      // we had some state-tracking character
      -      // that wasn't consumed by this pass.
      -      switch (stateChar) {
      -        case '*':
      -          re += star
      -          hasMagic = true
      -        break
      -        case '?':
      -          re += qmark
      -          hasMagic = true
      -        break
      -        default:
      -          re += '\\' + stateChar
      -        break
      -      }
      -      self.debug('clearStateChar %j %j', stateChar, re)
      -      stateChar = false
      -    }
      -  }
      -
      -  for (var i = 0, len = pattern.length, c
      -    ; (i < len) && (c = pattern.charAt(i))
      -    ; i++) {
      -    this.debug('%s\t%s %s %j', pattern, i, re, c)
      -
      -    // skip over any that are escaped.
      -    if (escaping && reSpecials[c]) {
      -      re += '\\' + c
      -      escaping = false
      -      continue
      -    }
      -
      -    switch (c) {
      -      /* istanbul ignore next */
      -      case '/': {
      -        // completely not allowed, even escaped.
      -        // Should already be path-split by now.
      -        return false
      -      }
      -
      -      case '\\':
      -        clearStateChar()
      -        escaping = true
      -      continue
      -
      -      // the various stateChar values
      -      // for the "extglob" stuff.
      -      case '?':
      -      case '*':
      -      case '+':
      -      case '@':
      -      case '!':
      -        this.debug('%s\t%s %s %j <-- stateChar', pattern, i, re, c)
      -
      -        // all of those are literals inside a class, except that
      -        // the glob [!a] means [^a] in regexp
      -        if (inClass) {
      -          this.debug('  in class')
      -          if (c === '!' && i === classStart + 1) c = '^'
      -          re += c
      -          continue
      -        }
      -
      -        // if we already have a stateChar, then it means
      -        // that there was something like ** or +? in there.
      -        // Handle the stateChar, then proceed with this one.
      -        self.debug('call clearStateChar %j', stateChar)
      -        clearStateChar()
      -        stateChar = c
      -        // if extglob is disabled, then +(asdf|foo) isn't a thing.
      -        // just clear the statechar *now*, rather than even diving into
      -        // the patternList stuff.
      -        if (options.noext) clearStateChar()
      -      continue
      -
      -      case '(':
      -        if (inClass) {
      -          re += '('
      -          continue
      -        }
      -
      -        if (!stateChar) {
      -          re += '\\('
      -          continue
      -        }
      -
      -        patternListStack.push({
      -          type: stateChar,
      -          start: i - 1,
      -          reStart: re.length,
      -          open: plTypes[stateChar].open,
      -          close: plTypes[stateChar].close
      -        })
      -        // negation is (?:(?!js)[^/]*)
      -        re += stateChar === '!' ? '(?:(?!(?:' : '(?:'
      -        this.debug('plType %j %j', stateChar, re)
      -        stateChar = false
      -      continue
      -
      -      case ')':
      -        if (inClass || !patternListStack.length) {
      -          re += '\\)'
      -          continue
      -        }
      -
      -        clearStateChar()
      -        hasMagic = true
      -        var pl = patternListStack.pop()
      -        // negation is (?:(?!js)[^/]*)
      -        // The others are (?:)
      -        re += pl.close
      -        if (pl.type === '!') {
      -          negativeLists.push(pl)
      -        }
      -        pl.reEnd = re.length
      -      continue
      -
      -      case '|':
      -        if (inClass || !patternListStack.length || escaping) {
      -          re += '\\|'
      -          escaping = false
      -          continue
      -        }
      -
      -        clearStateChar()
      -        re += '|'
      -      continue
      -
      -      // these are mostly the same in regexp and glob
      -      case '[':
      -        // swallow any state-tracking char before the [
      -        clearStateChar()
      -
      -        if (inClass) {
      -          re += '\\' + c
      -          continue
      -        }
      -
      -        inClass = true
      -        classStart = i
      -        reClassStart = re.length
      -        re += c
      -      continue
      -
      -      case ']':
      -        //  a right bracket shall lose its special
      -        //  meaning and represent itself in
      -        //  a bracket expression if it occurs
      -        //  first in the list.  -- POSIX.2 2.8.3.2
      -        if (i === classStart + 1 || !inClass) {
      -          re += '\\' + c
      -          escaping = false
      -          continue
      -        }
      -
      -        // handle the case where we left a class open.
      -        // "[z-a]" is valid, equivalent to "\[z-a\]"
      -        // split where the last [ was, make sure we don't have
      -        // an invalid re. if so, re-walk the contents of the
      -        // would-be class to re-translate any characters that
      -        // were passed through as-is
      -        // TODO: It would probably be faster to determine this
      -        // without a try/catch and a new RegExp, but it's tricky
      -        // to do safely.  For now, this is safe and works.
      -        var cs = pattern.substring(classStart + 1, i)
      -        try {
      -          RegExp('[' + cs + ']')
      -        } catch (er) {
      -          // not a valid class!
      -          var sp = this.parse(cs, SUBPARSE)
      -          re = re.substr(0, reClassStart) + '\\[' + sp[0] + '\\]'
      -          hasMagic = hasMagic || sp[1]
      -          inClass = false
      -          continue
      -        }
      -
      -        // finish up the class.
      -        hasMagic = true
      -        inClass = false
      -        re += c
      -      continue
      -
      -      default:
      -        // swallow any state char that wasn't consumed
      -        clearStateChar()
      -
      -        if (escaping) {
      -          // no need
      -          escaping = false
      -        } else if (reSpecials[c]
      -          && !(c === '^' && inClass)) {
      -          re += '\\'
      -        }
      -
      -        re += c
      -
      -    } // switch
      -  } // for
      -
      -  // handle the case where we left a class open.
      -  // "[abc" is valid, equivalent to "\[abc"
      -  if (inClass) {
      -    // split where the last [ was, and escape it
      -    // this is a huge pita.  We now have to re-walk
      -    // the contents of the would-be class to re-translate
      -    // any characters that were passed through as-is
      -    cs = pattern.substr(classStart + 1)
      -    sp = this.parse(cs, SUBPARSE)
      -    re = re.substr(0, reClassStart) + '\\[' + sp[0]
      -    hasMagic = hasMagic || sp[1]
      -  }
      -
      -  // handle the case where we had a +( thing at the *end*
      -  // of the pattern.
      -  // each pattern list stack adds 3 chars, and we need to go through
      -  // and escape any | chars that were passed through as-is for the regexp.
      -  // Go through and escape them, taking care not to double-escape any
      -  // | chars that were already escaped.
      -  for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {
      -    var tail = re.slice(pl.reStart + pl.open.length)
      -    this.debug('setting tail', re, pl)
      -    // maybe some even number of \, then maybe 1 \, followed by a |
      -    tail = tail.replace(/((?:\\{2}){0,64})(\\?)\|/g, function (_, $1, $2) {
      -      if (!$2) {
      -        // the | isn't already escaped, so escape it.
      -        $2 = '\\'
      -      }
      -
      -      // need to escape all those slashes *again*, without escaping the
      -      // one that we need for escaping the | character.  As it works out,
      -      // escaping an even number of slashes can be done by simply repeating
      -      // it exactly after itself.  That's why this trick works.
      -      //
      -      // I am sorry that you have to see this.
      -      return $1 + $1 + $2 + '|'
      -    })
      -
      -    this.debug('tail=%j\n   %s', tail, tail, pl, re)
      -    var t = pl.type === '*' ? star
      -      : pl.type === '?' ? qmark
      -      : '\\' + pl.type
      -
      -    hasMagic = true
      -    re = re.slice(0, pl.reStart) + t + '\\(' + tail
      -  }
      -
      -  // handle trailing things that only matter at the very end.
      -  clearStateChar()
      -  if (escaping) {
      -    // trailing \\
      -    re += '\\\\'
      -  }
      -
      -  // only need to apply the nodot start if the re starts with
      -  // something that could conceivably capture a dot
      -  var addPatternStart = false
      -  switch (re.charAt(0)) {
      -    case '[': case '.': case '(': addPatternStart = true
      -  }
      -
      -  // Hack to work around lack of negative lookbehind in JS
      -  // A pattern like: *.!(x).!(y|z) needs to ensure that a name
      -  // like 'a.xyz.yz' doesn't match.  So, the first negative
      -  // lookahead, has to look ALL the way ahead, to the end of
      -  // the pattern.
      -  for (var n = negativeLists.length - 1; n > -1; n--) {
      -    var nl = negativeLists[n]
      -
      -    var nlBefore = re.slice(0, nl.reStart)
      -    var nlFirst = re.slice(nl.reStart, nl.reEnd - 8)
      -    var nlLast = re.slice(nl.reEnd - 8, nl.reEnd)
      -    var nlAfter = re.slice(nl.reEnd)
      -
      -    nlLast += nlAfter
      -
      -    // Handle nested stuff like *(*.js|!(*.json)), where open parens
      -    // mean that we should *not* include the ) in the bit that is considered
      -    // "after" the negated section.
      -    var openParensBefore = nlBefore.split('(').length - 1
      -    var cleanAfter = nlAfter
      -    for (i = 0; i < openParensBefore; i++) {
      -      cleanAfter = cleanAfter.replace(/\)[+*?]?/, '')
      -    }
      -    nlAfter = cleanAfter
      -
      -    var dollar = ''
      -    if (nlAfter === '' && isSub !== SUBPARSE) {
      -      dollar = '$'
      -    }
      -    var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast
      -    re = newRe
      -  }
      -
      -  // if the re is not "" at this point, then we need to make sure
      -  // it doesn't match against an empty path part.
      -  // Otherwise a/* will match a/, which it should not.
      -  if (re !== '' && hasMagic) {
      -    re = '(?=.)' + re
      -  }
      -
      -  if (addPatternStart) {
      -    re = patternStart + re
      -  }
      -
      -  // parsing just a piece of a larger pattern.
      -  if (isSub === SUBPARSE) {
      -    return [re, hasMagic]
      -  }
      -
      -  // skip the regexp for non-magical patterns
      -  // unescape anything in it, though, so that it'll be
      -  // an exact match against a file etc.
      -  if (!hasMagic) {
      -    return globUnescape(pattern)
      -  }
      -
      -  var flags = options.nocase ? 'i' : ''
      -  try {
      -    var regExp = new RegExp('^' + re + '$', flags)
      -  } catch (er) /* istanbul ignore next - should be impossible */ {
      -    // If it was an invalid regular expression, then it can't match
      -    // anything.  This trick looks for a character after the end of
      -    // the string, which is of course impossible, except in multi-line
      -    // mode, but it's not a /m regex.
      -    return new RegExp('$.')
      -  }
      -
      -  regExp._glob = pattern
      -  regExp._src = re
      -
      -  return regExp
      -}
      -
      -minimatch.makeRe = function (pattern, options) {
      -  return new Minimatch(pattern, options || {}).makeRe()
      -}
      -
      -Minimatch.prototype.makeRe = makeRe
      -function makeRe () {
      -  if (this.regexp || this.regexp === false) return this.regexp
      -
      -  // at this point, this.set is a 2d array of partial
      -  // pattern strings, or "**".
      -  //
      -  // It's better to use .match().  This function shouldn't
      -  // be used, really, but it's pretty convenient sometimes,
      -  // when you just want to work with a regex.
      -  var set = this.set
      -
      -  if (!set.length) {
      -    this.regexp = false
      -    return this.regexp
      -  }
      -  var options = this.options
      -
      -  var twoStar = options.noglobstar ? star
      -    : options.dot ? twoStarDot
      -    : twoStarNoDot
      -  var flags = options.nocase ? 'i' : ''
      -
      -  var re = set.map(function (pattern) {
      -    return pattern.map(function (p) {
      -      return (p === GLOBSTAR) ? twoStar
      -      : (typeof p === 'string') ? regExpEscape(p)
      -      : p._src
      -    }).join('\\\/')
      -  }).join('|')
      -
      -  // must match entire pattern
      -  // ending in a * or ** will make it less strict.
      -  re = '^(?:' + re + ')$'
      -
      -  // can match anything, as long as it's not this.
      -  if (this.negate) re = '^(?!' + re + ').*$'
      -
      -  try {
      -    this.regexp = new RegExp(re, flags)
      -  } catch (ex) /* istanbul ignore next - should be impossible */ {
      -    this.regexp = false
      -  }
      -  return this.regexp
      -}
      -
      -minimatch.match = function (list, pattern, options) {
      -  options = options || {}
      -  var mm = new Minimatch(pattern, options)
      -  list = list.filter(function (f) {
      -    return mm.match(f)
      -  })
      -  if (mm.options.nonull && !list.length) {
      -    list.push(pattern)
      -  }
      -  return list
      -}
      -
      -Minimatch.prototype.match = function match (f, partial) {
      -  if (typeof partial === 'undefined') partial = this.partial
      -  this.debug('match', f, this.pattern)
      -  // short-circuit in the case of busted things.
      -  // comments, etc.
      -  if (this.comment) return false
      -  if (this.empty) return f === ''
      -
      -  if (f === '/' && partial) return true
      -
      -  var options = this.options
      -
      -  // windows: need to use /, not \
      -  if (path.sep !== '/') {
      -    f = f.split(path.sep).join('/')
      -  }
      -
      -  // treat the test path as a set of pathparts.
      -  f = f.split(slashSplit)
      -  this.debug(this.pattern, 'split', f)
      -
      -  // just ONE of the pattern sets in this.set needs to match
      -  // in order for it to be valid.  If negating, then just one
      -  // match means that we have failed.
      -  // Either way, return on the first hit.
      -
      -  var set = this.set
      -  this.debug(this.pattern, 'set', set)
      -
      -  // Find the basename of the path by looking for the last non-empty segment
      -  var filename
      -  var i
      -  for (i = f.length - 1; i >= 0; i--) {
      -    filename = f[i]
      -    if (filename) break
      -  }
      -
      -  for (i = 0; i < set.length; i++) {
      -    var pattern = set[i]
      -    var file = f
      -    if (options.matchBase && pattern.length === 1) {
      -      file = [filename]
      -    }
      -    var hit = this.matchOne(file, pattern, partial)
      -    if (hit) {
      -      if (options.flipNegate) return true
      -      return !this.negate
      -    }
      -  }
      -
      -  // didn't get any hits.  this is success if it's a negative
      -  // pattern, failure otherwise.
      -  if (options.flipNegate) return false
      -  return this.negate
      -}
      -
      -// set partial to true to test if, for example,
      -// "/a/b" matches the start of "/*/b/*/d"
      -// Partial means, if you run out of file before you run
      -// out of pattern, then that's fine, as long as all
      -// the parts match.
      -Minimatch.prototype.matchOne = function (file, pattern, partial) {
      -  var options = this.options
      -
      -  this.debug('matchOne',
      -    { 'this': this, file: file, pattern: pattern })
      -
      -  this.debug('matchOne', file.length, pattern.length)
      -
      -  for (var fi = 0,
      -      pi = 0,
      -      fl = file.length,
      -      pl = pattern.length
      -      ; (fi < fl) && (pi < pl)
      -      ; fi++, pi++) {
      -    this.debug('matchOne loop')
      -    var p = pattern[pi]
      -    var f = file[fi]
      -
      -    this.debug(pattern, p, f)
      -
      -    // should be impossible.
      -    // some invalid regexp stuff in the set.
      -    /* istanbul ignore if */
      -    if (p === false) return false
      -
      -    if (p === GLOBSTAR) {
      -      this.debug('GLOBSTAR', [pattern, p, f])
      -
      -      // "**"
      -      // a/**/b/**/c would match the following:
      -      // a/b/x/y/z/c
      -      // a/x/y/z/b/c
      -      // a/b/x/b/x/c
      -      // a/b/c
      -      // To do this, take the rest of the pattern after
      -      // the **, and see if it would match the file remainder.
      -      // If so, return success.
      -      // If not, the ** "swallows" a segment, and try again.
      -      // This is recursively awful.
      -      //
      -      // a/**/b/**/c matching a/b/x/y/z/c
      -      // - a matches a
      -      // - doublestar
      -      //   - matchOne(b/x/y/z/c, b/**/c)
      -      //     - b matches b
      -      //     - doublestar
      -      //       - matchOne(x/y/z/c, c) -> no
      -      //       - matchOne(y/z/c, c) -> no
      -      //       - matchOne(z/c, c) -> no
      -      //       - matchOne(c, c) yes, hit
      -      var fr = fi
      -      var pr = pi + 1
      -      if (pr === pl) {
      -        this.debug('** at the end')
      -        // a ** at the end will just swallow the rest.
      -        // We have found a match.
      -        // however, it will not swallow /.x, unless
      -        // options.dot is set.
      -        // . and .. are *never* matched by **, for explosively
      -        // exponential reasons.
      -        for (; fi < fl; fi++) {
      -          if (file[fi] === '.' || file[fi] === '..' ||
      -            (!options.dot && file[fi].charAt(0) === '.')) return false
      -        }
      -        return true
      -      }
      -
      -      // ok, let's see if we can swallow whatever we can.
      -      while (fr < fl) {
      -        var swallowee = file[fr]
      -
      -        this.debug('\nglobstar while', file, fr, pattern, pr, swallowee)
      -
      -        // XXX remove this slice.  Just pass the start index.
      -        if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {
      -          this.debug('globstar found match!', fr, fl, swallowee)
      -          // found a match.
      -          return true
      -        } else {
      -          // can't swallow "." or ".." ever.
      -          // can only swallow ".foo" when explicitly asked.
      -          if (swallowee === '.' || swallowee === '..' ||
      -            (!options.dot && swallowee.charAt(0) === '.')) {
      -            this.debug('dot detected!', file, fr, pattern, pr)
      -            break
      -          }
      -
      -          // ** swallows a segment, and continue.
      -          this.debug('globstar swallow a segment, and continue')
      -          fr++
      -        }
      -      }
      -
      -      // no match was found.
      -      // However, in partial mode, we can't say this is necessarily over.
      -      // If there's more *pattern* left, then
      -      /* istanbul ignore if */
      -      if (partial) {
      -        // ran out of file
      -        this.debug('\n>>> no match, partial?', file, fr, pattern, pr)
      -        if (fr === fl) return true
      -      }
      -      return false
      -    }
      -
      -    // something other than **
      -    // non-magic patterns just have to match exactly
      -    // patterns with magic have been turned into regexps.
      -    var hit
      -    if (typeof p === 'string') {
      -      hit = f === p
      -      this.debug('string match', p, f, hit)
      -    } else {
      -      hit = f.match(p)
      -      this.debug('pattern match', p, f, hit)
      -    }
      -
      -    if (!hit) return false
      -  }
      -
      -  // Note: ending in / means that we'll get a final ""
      -  // at the end of the pattern.  This can only match a
      -  // corresponding "" at the end of the file.
      -  // If the file ends in /, then it can only match a
      -  // a pattern that ends in /, unless the pattern just
      -  // doesn't have any more for it. But, a/b/ should *not*
      -  // match "a/b/*", even though "" matches against the
      -  // [^/]*? pattern, except in partial mode, where it might
      -  // simply not be reached yet.
      -  // However, a/b/ should still satisfy a/*
      -
      -  // now either we fell off the end of the pattern, or we're done.
      -  if (fi === fl && pi === pl) {
      -    // ran out of pattern and filename at the same time.
      -    // an exact hit!
      -    return true
      -  } else if (fi === fl) {
      -    // ran out of file, but still had pattern left.
      -    // this is ok if we're doing the match as part of
      -    // a glob fs traversal.
      -    return partial
      -  } else /* istanbul ignore else */ if (pi === pl) {
      -    // ran out of pattern, still have file left.
      -    // this is only acceptable if we're on the very last
      -    // empty segment of a file with a trailing slash.
      -    // a/* should match a/b/
      -    return (fi === fl - 1) && (file[fi] === '')
      -  }
      -
      -  // should be unreachable.
      -  /* istanbul ignore next */
      -  throw new Error('wtf?')
      -}
      -
      -// replace stuff like \* with *
      -function globUnescape (s) {
      -  return s.replace(/\\(.)/g, '$1')
      -}
      -
      -function regExpEscape (s) {
      -  return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&')
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/minimatch/package.json b/deps/npm/node_modules/node-gyp/node_modules/minimatch/package.json
      deleted file mode 100644
      index 566efdfe45cb80..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/minimatch/package.json
      +++ /dev/null
      @@ -1,33 +0,0 @@
      -{
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me)",
      -  "name": "minimatch",
      -  "description": "a glob matcher in javascript",
      -  "version": "3.1.2",
      -  "publishConfig": {
      -    "tag": "v3-legacy"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/isaacs/minimatch.git"
      -  },
      -  "main": "minimatch.js",
      -  "scripts": {
      -    "test": "tap",
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "postpublish": "git push origin --all; git push origin --tags"
      -  },
      -  "engines": {
      -    "node": "*"
      -  },
      -  "dependencies": {
      -    "brace-expansion": "^1.1.7"
      -  },
      -  "devDependencies": {
      -    "tap": "^15.1.6"
      -  },
      -  "license": "ISC",
      -  "files": [
      -    "minimatch.js"
      -  ]
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/minipass/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/minipass/LICENSE
      deleted file mode 100644
      index 97f8e32ed82e4c..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/minipass/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) 2017-2023 npm, Inc., 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/minipass/index.js b/deps/npm/node_modules/node-gyp/node_modules/minipass/index.js
      deleted file mode 100644
      index ed07c17acd97b7..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/minipass/index.js
      +++ /dev/null
      @@ -1,702 +0,0 @@
      -'use strict'
      -const proc =
      -  typeof process === 'object' && process
      -    ? process
      -    : {
      -        stdout: null,
      -        stderr: null,
      -      }
      -const EE = require('events')
      -const Stream = require('stream')
      -const stringdecoder = require('string_decoder')
      -const SD = stringdecoder.StringDecoder
      -
      -const EOF = Symbol('EOF')
      -const MAYBE_EMIT_END = Symbol('maybeEmitEnd')
      -const EMITTED_END = Symbol('emittedEnd')
      -const EMITTING_END = Symbol('emittingEnd')
      -const EMITTED_ERROR = Symbol('emittedError')
      -const CLOSED = Symbol('closed')
      -const READ = Symbol('read')
      -const FLUSH = Symbol('flush')
      -const FLUSHCHUNK = Symbol('flushChunk')
      -const ENCODING = Symbol('encoding')
      -const DECODER = Symbol('decoder')
      -const FLOWING = Symbol('flowing')
      -const PAUSED = Symbol('paused')
      -const RESUME = Symbol('resume')
      -const BUFFER = Symbol('buffer')
      -const PIPES = Symbol('pipes')
      -const BUFFERLENGTH = Symbol('bufferLength')
      -const BUFFERPUSH = Symbol('bufferPush')
      -const BUFFERSHIFT = Symbol('bufferShift')
      -const OBJECTMODE = Symbol('objectMode')
      -// internal event when stream is destroyed
      -const DESTROYED = Symbol('destroyed')
      -// internal event when stream has an error
      -const ERROR = Symbol('error')
      -const EMITDATA = Symbol('emitData')
      -const EMITEND = Symbol('emitEnd')
      -const EMITEND2 = Symbol('emitEnd2')
      -const ASYNC = Symbol('async')
      -const ABORT = Symbol('abort')
      -const ABORTED = Symbol('aborted')
      -const SIGNAL = Symbol('signal')
      -
      -const defer = fn => Promise.resolve().then(fn)
      -
      -// TODO remove when Node v8 support drops
      -const doIter = global._MP_NO_ITERATOR_SYMBOLS_ !== '1'
      -const ASYNCITERATOR =
      -  (doIter && Symbol.asyncIterator) || Symbol('asyncIterator not implemented')
      -const ITERATOR =
      -  (doIter && Symbol.iterator) || Symbol('iterator not implemented')
      -
      -// events that mean 'the stream is over'
      -// these are treated specially, and re-emitted
      -// if they are listened for after emitting.
      -const isEndish = ev => ev === 'end' || ev === 'finish' || ev === 'prefinish'
      -
      -const isArrayBuffer = b =>
      -  b instanceof ArrayBuffer ||
      -  (typeof b === 'object' &&
      -    b.constructor &&
      -    b.constructor.name === 'ArrayBuffer' &&
      -    b.byteLength >= 0)
      -
      -const isArrayBufferView = b => !Buffer.isBuffer(b) && ArrayBuffer.isView(b)
      -
      -class Pipe {
      -  constructor(src, dest, opts) {
      -    this.src = src
      -    this.dest = dest
      -    this.opts = opts
      -    this.ondrain = () => src[RESUME]()
      -    dest.on('drain', this.ondrain)
      -  }
      -  unpipe() {
      -    this.dest.removeListener('drain', this.ondrain)
      -  }
      -  // istanbul ignore next - only here for the prototype
      -  proxyErrors() {}
      -  end() {
      -    this.unpipe()
      -    if (this.opts.end) this.dest.end()
      -  }
      -}
      -
      -class PipeProxyErrors extends Pipe {
      -  unpipe() {
      -    this.src.removeListener('error', this.proxyErrors)
      -    super.unpipe()
      -  }
      -  constructor(src, dest, opts) {
      -    super(src, dest, opts)
      -    this.proxyErrors = er => dest.emit('error', er)
      -    src.on('error', this.proxyErrors)
      -  }
      -}
      -
      -class Minipass extends Stream {
      -  constructor(options) {
      -    super()
      -    this[FLOWING] = false
      -    // whether we're explicitly paused
      -    this[PAUSED] = false
      -    this[PIPES] = []
      -    this[BUFFER] = []
      -    this[OBJECTMODE] = (options && options.objectMode) || false
      -    if (this[OBJECTMODE]) this[ENCODING] = null
      -    else this[ENCODING] = (options && options.encoding) || null
      -    if (this[ENCODING] === 'buffer') this[ENCODING] = null
      -    this[ASYNC] = (options && !!options.async) || false
      -    this[DECODER] = this[ENCODING] ? new SD(this[ENCODING]) : null
      -    this[EOF] = false
      -    this[EMITTED_END] = false
      -    this[EMITTING_END] = false
      -    this[CLOSED] = false
      -    this[EMITTED_ERROR] = null
      -    this.writable = true
      -    this.readable = true
      -    this[BUFFERLENGTH] = 0
      -    this[DESTROYED] = false
      -    if (options && options.debugExposeBuffer === true) {
      -      Object.defineProperty(this, 'buffer', { get: () => this[BUFFER] })
      -    }
      -    if (options && options.debugExposePipes === true) {
      -      Object.defineProperty(this, 'pipes', { get: () => this[PIPES] })
      -    }
      -    this[SIGNAL] = options && options.signal
      -    this[ABORTED] = false
      -    if (this[SIGNAL]) {
      -      this[SIGNAL].addEventListener('abort', () => this[ABORT]())
      -      if (this[SIGNAL].aborted) {
      -        this[ABORT]()
      -      }
      -    }
      -  }
      -
      -  get bufferLength() {
      -    return this[BUFFERLENGTH]
      -  }
      -
      -  get encoding() {
      -    return this[ENCODING]
      -  }
      -  set encoding(enc) {
      -    if (this[OBJECTMODE]) throw new Error('cannot set encoding in objectMode')
      -
      -    if (
      -      this[ENCODING] &&
      -      enc !== this[ENCODING] &&
      -      ((this[DECODER] && this[DECODER].lastNeed) || this[BUFFERLENGTH])
      -    )
      -      throw new Error('cannot change encoding')
      -
      -    if (this[ENCODING] !== enc) {
      -      this[DECODER] = enc ? new SD(enc) : null
      -      if (this[BUFFER].length)
      -        this[BUFFER] = this[BUFFER].map(chunk => this[DECODER].write(chunk))
      -    }
      -
      -    this[ENCODING] = enc
      -  }
      -
      -  setEncoding(enc) {
      -    this.encoding = enc
      -  }
      -
      -  get objectMode() {
      -    return this[OBJECTMODE]
      -  }
      -  set objectMode(om) {
      -    this[OBJECTMODE] = this[OBJECTMODE] || !!om
      -  }
      -
      -  get ['async']() {
      -    return this[ASYNC]
      -  }
      -  set ['async'](a) {
      -    this[ASYNC] = this[ASYNC] || !!a
      -  }
      -
      -  // drop everything and get out of the flow completely
      -  [ABORT]() {
      -    this[ABORTED] = true
      -    this.emit('abort', this[SIGNAL].reason)
      -    this.destroy(this[SIGNAL].reason)
      -  }
      -
      -  get aborted() {
      -    return this[ABORTED]
      -  }
      -  set aborted(_) {}
      -
      -  write(chunk, encoding, cb) {
      -    if (this[ABORTED]) return false
      -    if (this[EOF]) throw new Error('write after end')
      -
      -    if (this[DESTROYED]) {
      -      this.emit(
      -        'error',
      -        Object.assign(
      -          new Error('Cannot call write after a stream was destroyed'),
      -          { code: 'ERR_STREAM_DESTROYED' }
      -        )
      -      )
      -      return true
      -    }
      -
      -    if (typeof encoding === 'function') (cb = encoding), (encoding = 'utf8')
      -
      -    if (!encoding) encoding = 'utf8'
      -
      -    const fn = this[ASYNC] ? defer : f => f()
      -
      -    // convert array buffers and typed array views into buffers
      -    // at some point in the future, we may want to do the opposite!
      -    // leave strings and buffers as-is
      -    // anything else switches us into object mode
      -    if (!this[OBJECTMODE] && !Buffer.isBuffer(chunk)) {
      -      if (isArrayBufferView(chunk))
      -        chunk = Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength)
      -      else if (isArrayBuffer(chunk)) chunk = Buffer.from(chunk)
      -      else if (typeof chunk !== 'string')
      -        // use the setter so we throw if we have encoding set
      -        this.objectMode = true
      -    }
      -
      -    // handle object mode up front, since it's simpler
      -    // this yields better performance, fewer checks later.
      -    if (this[OBJECTMODE]) {
      -      /* istanbul ignore if - maybe impossible? */
      -      if (this.flowing && this[BUFFERLENGTH] !== 0) this[FLUSH](true)
      -
      -      if (this.flowing) this.emit('data', chunk)
      -      else this[BUFFERPUSH](chunk)
      -
      -      if (this[BUFFERLENGTH] !== 0) this.emit('readable')
      -
      -      if (cb) fn(cb)
      -
      -      return this.flowing
      -    }
      -
      -    // at this point the chunk is a buffer or string
      -    // don't buffer it up or send it to the decoder
      -    if (!chunk.length) {
      -      if (this[BUFFERLENGTH] !== 0) this.emit('readable')
      -      if (cb) fn(cb)
      -      return this.flowing
      -    }
      -
      -    // fast-path writing strings of same encoding to a stream with
      -    // an empty buffer, skipping the buffer/decoder dance
      -    if (
      -      typeof chunk === 'string' &&
      -      // unless it is a string already ready for us to use
      -      !(encoding === this[ENCODING] && !this[DECODER].lastNeed)
      -    ) {
      -      chunk = Buffer.from(chunk, encoding)
      -    }
      -
      -    if (Buffer.isBuffer(chunk) && this[ENCODING])
      -      chunk = this[DECODER].write(chunk)
      -
      -    // Note: flushing CAN potentially switch us into not-flowing mode
      -    if (this.flowing && this[BUFFERLENGTH] !== 0) this[FLUSH](true)
      -
      -    if (this.flowing) this.emit('data', chunk)
      -    else this[BUFFERPUSH](chunk)
      -
      -    if (this[BUFFERLENGTH] !== 0) this.emit('readable')
      -
      -    if (cb) fn(cb)
      -
      -    return this.flowing
      -  }
      -
      -  read(n) {
      -    if (this[DESTROYED]) return null
      -
      -    if (this[BUFFERLENGTH] === 0 || n === 0 || n > this[BUFFERLENGTH]) {
      -      this[MAYBE_EMIT_END]()
      -      return null
      -    }
      -
      -    if (this[OBJECTMODE]) n = null
      -
      -    if (this[BUFFER].length > 1 && !this[OBJECTMODE]) {
      -      if (this.encoding) this[BUFFER] = [this[BUFFER].join('')]
      -      else this[BUFFER] = [Buffer.concat(this[BUFFER], this[BUFFERLENGTH])]
      -    }
      -
      -    const ret = this[READ](n || null, this[BUFFER][0])
      -    this[MAYBE_EMIT_END]()
      -    return ret
      -  }
      -
      -  [READ](n, chunk) {
      -    if (n === chunk.length || n === null) this[BUFFERSHIFT]()
      -    else {
      -      this[BUFFER][0] = chunk.slice(n)
      -      chunk = chunk.slice(0, n)
      -      this[BUFFERLENGTH] -= n
      -    }
      -
      -    this.emit('data', chunk)
      -
      -    if (!this[BUFFER].length && !this[EOF]) this.emit('drain')
      -
      -    return chunk
      -  }
      -
      -  end(chunk, encoding, cb) {
      -    if (typeof chunk === 'function') (cb = chunk), (chunk = null)
      -    if (typeof encoding === 'function') (cb = encoding), (encoding = 'utf8')
      -    if (chunk) this.write(chunk, encoding)
      -    if (cb) this.once('end', cb)
      -    this[EOF] = true
      -    this.writable = false
      -
      -    // if we haven't written anything, then go ahead and emit,
      -    // even if we're not reading.
      -    // we'll re-emit if a new 'end' listener is added anyway.
      -    // This makes MP more suitable to write-only use cases.
      -    if (this.flowing || !this[PAUSED]) this[MAYBE_EMIT_END]()
      -    return this
      -  }
      -
      -  // don't let the internal resume be overwritten
      -  [RESUME]() {
      -    if (this[DESTROYED]) return
      -
      -    this[PAUSED] = false
      -    this[FLOWING] = true
      -    this.emit('resume')
      -    if (this[BUFFER].length) this[FLUSH]()
      -    else if (this[EOF]) this[MAYBE_EMIT_END]()
      -    else this.emit('drain')
      -  }
      -
      -  resume() {
      -    return this[RESUME]()
      -  }
      -
      -  pause() {
      -    this[FLOWING] = false
      -    this[PAUSED] = true
      -  }
      -
      -  get destroyed() {
      -    return this[DESTROYED]
      -  }
      -
      -  get flowing() {
      -    return this[FLOWING]
      -  }
      -
      -  get paused() {
      -    return this[PAUSED]
      -  }
      -
      -  [BUFFERPUSH](chunk) {
      -    if (this[OBJECTMODE]) this[BUFFERLENGTH] += 1
      -    else this[BUFFERLENGTH] += chunk.length
      -    this[BUFFER].push(chunk)
      -  }
      -
      -  [BUFFERSHIFT]() {
      -    if (this[OBJECTMODE]) this[BUFFERLENGTH] -= 1
      -    else this[BUFFERLENGTH] -= this[BUFFER][0].length
      -    return this[BUFFER].shift()
      -  }
      -
      -  [FLUSH](noDrain) {
      -    do {} while (this[FLUSHCHUNK](this[BUFFERSHIFT]()) && this[BUFFER].length)
      -
      -    if (!noDrain && !this[BUFFER].length && !this[EOF]) this.emit('drain')
      -  }
      -
      -  [FLUSHCHUNK](chunk) {
      -    this.emit('data', chunk)
      -    return this.flowing
      -  }
      -
      -  pipe(dest, opts) {
      -    if (this[DESTROYED]) return
      -
      -    const ended = this[EMITTED_END]
      -    opts = opts || {}
      -    if (dest === proc.stdout || dest === proc.stderr) opts.end = false
      -    else opts.end = opts.end !== false
      -    opts.proxyErrors = !!opts.proxyErrors
      -
      -    // piping an ended stream ends immediately
      -    if (ended) {
      -      if (opts.end) dest.end()
      -    } else {
      -      this[PIPES].push(
      -        !opts.proxyErrors
      -          ? new Pipe(this, dest, opts)
      -          : new PipeProxyErrors(this, dest, opts)
      -      )
      -      if (this[ASYNC]) defer(() => this[RESUME]())
      -      else this[RESUME]()
      -    }
      -
      -    return dest
      -  }
      -
      -  unpipe(dest) {
      -    const p = this[PIPES].find(p => p.dest === dest)
      -    if (p) {
      -      this[PIPES].splice(this[PIPES].indexOf(p), 1)
      -      p.unpipe()
      -    }
      -  }
      -
      -  addListener(ev, fn) {
      -    return this.on(ev, fn)
      -  }
      -
      -  on(ev, fn) {
      -    const ret = super.on(ev, fn)
      -    if (ev === 'data' && !this[PIPES].length && !this.flowing) this[RESUME]()
      -    else if (ev === 'readable' && this[BUFFERLENGTH] !== 0)
      -      super.emit('readable')
      -    else if (isEndish(ev) && this[EMITTED_END]) {
      -      super.emit(ev)
      -      this.removeAllListeners(ev)
      -    } else if (ev === 'error' && this[EMITTED_ERROR]) {
      -      if (this[ASYNC]) defer(() => fn.call(this, this[EMITTED_ERROR]))
      -      else fn.call(this, this[EMITTED_ERROR])
      -    }
      -    return ret
      -  }
      -
      -  get emittedEnd() {
      -    return this[EMITTED_END]
      -  }
      -
      -  [MAYBE_EMIT_END]() {
      -    if (
      -      !this[EMITTING_END] &&
      -      !this[EMITTED_END] &&
      -      !this[DESTROYED] &&
      -      this[BUFFER].length === 0 &&
      -      this[EOF]
      -    ) {
      -      this[EMITTING_END] = true
      -      this.emit('end')
      -      this.emit('prefinish')
      -      this.emit('finish')
      -      if (this[CLOSED]) this.emit('close')
      -      this[EMITTING_END] = false
      -    }
      -  }
      -
      -  emit(ev, data, ...extra) {
      -    // error and close are only events allowed after calling destroy()
      -    if (ev !== 'error' && ev !== 'close' && ev !== DESTROYED && this[DESTROYED])
      -      return
      -    else if (ev === 'data') {
      -      return !this[OBJECTMODE] && !data
      -        ? false
      -        : this[ASYNC]
      -        ? defer(() => this[EMITDATA](data))
      -        : this[EMITDATA](data)
      -    } else if (ev === 'end') {
      -      return this[EMITEND]()
      -    } else if (ev === 'close') {
      -      this[CLOSED] = true
      -      // don't emit close before 'end' and 'finish'
      -      if (!this[EMITTED_END] && !this[DESTROYED]) return
      -      const ret = super.emit('close')
      -      this.removeAllListeners('close')
      -      return ret
      -    } else if (ev === 'error') {
      -      this[EMITTED_ERROR] = data
      -      super.emit(ERROR, data)
      -      const ret =
      -        !this[SIGNAL] || this.listeners('error').length
      -          ? super.emit('error', data)
      -          : false
      -      this[MAYBE_EMIT_END]()
      -      return ret
      -    } else if (ev === 'resume') {
      -      const ret = super.emit('resume')
      -      this[MAYBE_EMIT_END]()
      -      return ret
      -    } else if (ev === 'finish' || ev === 'prefinish') {
      -      const ret = super.emit(ev)
      -      this.removeAllListeners(ev)
      -      return ret
      -    }
      -
      -    // Some other unknown event
      -    const ret = super.emit(ev, data, ...extra)
      -    this[MAYBE_EMIT_END]()
      -    return ret
      -  }
      -
      -  [EMITDATA](data) {
      -    for (const p of this[PIPES]) {
      -      if (p.dest.write(data) === false) this.pause()
      -    }
      -    const ret = super.emit('data', data)
      -    this[MAYBE_EMIT_END]()
      -    return ret
      -  }
      -
      -  [EMITEND]() {
      -    if (this[EMITTED_END]) return
      -
      -    this[EMITTED_END] = true
      -    this.readable = false
      -    if (this[ASYNC]) defer(() => this[EMITEND2]())
      -    else this[EMITEND2]()
      -  }
      -
      -  [EMITEND2]() {
      -    if (this[DECODER]) {
      -      const data = this[DECODER].end()
      -      if (data) {
      -        for (const p of this[PIPES]) {
      -          p.dest.write(data)
      -        }
      -        super.emit('data', data)
      -      }
      -    }
      -
      -    for (const p of this[PIPES]) {
      -      p.end()
      -    }
      -    const ret = super.emit('end')
      -    this.removeAllListeners('end')
      -    return ret
      -  }
      -
      -  // const all = await stream.collect()
      -  collect() {
      -    const buf = []
      -    if (!this[OBJECTMODE]) buf.dataLength = 0
      -    // set the promise first, in case an error is raised
      -    // by triggering the flow here.
      -    const p = this.promise()
      -    this.on('data', c => {
      -      buf.push(c)
      -      if (!this[OBJECTMODE]) buf.dataLength += c.length
      -    })
      -    return p.then(() => buf)
      -  }
      -
      -  // const data = await stream.concat()
      -  concat() {
      -    return this[OBJECTMODE]
      -      ? Promise.reject(new Error('cannot concat in objectMode'))
      -      : this.collect().then(buf =>
      -          this[OBJECTMODE]
      -            ? Promise.reject(new Error('cannot concat in objectMode'))
      -            : this[ENCODING]
      -            ? buf.join('')
      -            : Buffer.concat(buf, buf.dataLength)
      -        )
      -  }
      -
      -  // stream.promise().then(() => done, er => emitted error)
      -  promise() {
      -    return new Promise((resolve, reject) => {
      -      this.on(DESTROYED, () => reject(new Error('stream destroyed')))
      -      this.on('error', er => reject(er))
      -      this.on('end', () => resolve())
      -    })
      -  }
      -
      -  // for await (let chunk of stream)
      -  [ASYNCITERATOR]() {
      -    let stopped = false
      -    const stop = () => {
      -      this.pause()
      -      stopped = true
      -      return Promise.resolve({ done: true })
      -    }
      -    const next = () => {
      -      if (stopped) return stop()
      -      const res = this.read()
      -      if (res !== null) return Promise.resolve({ done: false, value: res })
      -
      -      if (this[EOF]) return stop()
      -
      -      let resolve = null
      -      let reject = null
      -      const onerr = er => {
      -        this.removeListener('data', ondata)
      -        this.removeListener('end', onend)
      -        this.removeListener(DESTROYED, ondestroy)
      -        stop()
      -        reject(er)
      -      }
      -      const ondata = value => {
      -        this.removeListener('error', onerr)
      -        this.removeListener('end', onend)
      -        this.removeListener(DESTROYED, ondestroy)
      -        this.pause()
      -        resolve({ value: value, done: !!this[EOF] })
      -      }
      -      const onend = () => {
      -        this.removeListener('error', onerr)
      -        this.removeListener('data', ondata)
      -        this.removeListener(DESTROYED, ondestroy)
      -        stop()
      -        resolve({ done: true })
      -      }
      -      const ondestroy = () => onerr(new Error('stream destroyed'))
      -      return new Promise((res, rej) => {
      -        reject = rej
      -        resolve = res
      -        this.once(DESTROYED, ondestroy)
      -        this.once('error', onerr)
      -        this.once('end', onend)
      -        this.once('data', ondata)
      -      })
      -    }
      -
      -    return {
      -      next,
      -      throw: stop,
      -      return: stop,
      -      [ASYNCITERATOR]() {
      -        return this
      -      },
      -    }
      -  }
      -
      -  // for (let chunk of stream)
      -  [ITERATOR]() {
      -    let stopped = false
      -    const stop = () => {
      -      this.pause()
      -      this.removeListener(ERROR, stop)
      -      this.removeListener(DESTROYED, stop)
      -      this.removeListener('end', stop)
      -      stopped = true
      -      return { done: true }
      -    }
      -
      -    const next = () => {
      -      if (stopped) return stop()
      -      const value = this.read()
      -      return value === null ? stop() : { value }
      -    }
      -    this.once('end', stop)
      -    this.once(ERROR, stop)
      -    this.once(DESTROYED, stop)
      -
      -    return {
      -      next,
      -      throw: stop,
      -      return: stop,
      -      [ITERATOR]() {
      -        return this
      -      },
      -    }
      -  }
      -
      -  destroy(er) {
      -    if (this[DESTROYED]) {
      -      if (er) this.emit('error', er)
      -      else this.emit(DESTROYED)
      -      return this
      -    }
      -
      -    this[DESTROYED] = true
      -
      -    // throw away all buffered data, it's never coming out
      -    this[BUFFER].length = 0
      -    this[BUFFERLENGTH] = 0
      -
      -    if (typeof this.close === 'function' && !this[CLOSED]) this.close()
      -
      -    if (er) this.emit('error', er)
      -    // if no error to emit, still reject pending promises
      -    else this.emit(DESTROYED)
      -
      -    return this
      -  }
      -
      -  static isStream(s) {
      -    return (
      -      !!s &&
      -      (s instanceof Minipass ||
      -        s instanceof Stream ||
      -        (s instanceof EE &&
      -          // readable
      -          (typeof s.pipe === 'function' ||
      -            // writable
      -            (typeof s.write === 'function' && typeof s.end === 'function'))))
      -    )
      -  }
      -}
      -
      -exports.Minipass = Minipass
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/minipass/index.mjs b/deps/npm/node_modules/node-gyp/node_modules/minipass/index.mjs
      deleted file mode 100644
      index 89b3fbf1a4d445..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/minipass/index.mjs
      +++ /dev/null
      @@ -1,700 +0,0 @@
      -'use strict'
      -const proc =
      -  typeof process === 'object' && process
      -    ? process
      -    : {
      -        stdout: null,
      -        stderr: null,
      -      }
      -import EE from 'events'
      -import Stream from 'stream'
      -import stringdecoder from 'string_decoder'
      -const SD = stringdecoder.StringDecoder
      -
      -const EOF = Symbol('EOF')
      -const MAYBE_EMIT_END = Symbol('maybeEmitEnd')
      -const EMITTED_END = Symbol('emittedEnd')
      -const EMITTING_END = Symbol('emittingEnd')
      -const EMITTED_ERROR = Symbol('emittedError')
      -const CLOSED = Symbol('closed')
      -const READ = Symbol('read')
      -const FLUSH = Symbol('flush')
      -const FLUSHCHUNK = Symbol('flushChunk')
      -const ENCODING = Symbol('encoding')
      -const DECODER = Symbol('decoder')
      -const FLOWING = Symbol('flowing')
      -const PAUSED = Symbol('paused')
      -const RESUME = Symbol('resume')
      -const BUFFER = Symbol('buffer')
      -const PIPES = Symbol('pipes')
      -const BUFFERLENGTH = Symbol('bufferLength')
      -const BUFFERPUSH = Symbol('bufferPush')
      -const BUFFERSHIFT = Symbol('bufferShift')
      -const OBJECTMODE = Symbol('objectMode')
      -// internal event when stream is destroyed
      -const DESTROYED = Symbol('destroyed')
      -// internal event when stream has an error
      -const ERROR = Symbol('error')
      -const EMITDATA = Symbol('emitData')
      -const EMITEND = Symbol('emitEnd')
      -const EMITEND2 = Symbol('emitEnd2')
      -const ASYNC = Symbol('async')
      -const ABORT = Symbol('abort')
      -const ABORTED = Symbol('aborted')
      -const SIGNAL = Symbol('signal')
      -
      -const defer = fn => Promise.resolve().then(fn)
      -
      -// TODO remove when Node v8 support drops
      -const doIter = global._MP_NO_ITERATOR_SYMBOLS_ !== '1'
      -const ASYNCITERATOR =
      -  (doIter && Symbol.asyncIterator) || Symbol('asyncIterator not implemented')
      -const ITERATOR =
      -  (doIter && Symbol.iterator) || Symbol('iterator not implemented')
      -
      -// events that mean 'the stream is over'
      -// these are treated specially, and re-emitted
      -// if they are listened for after emitting.
      -const isEndish = ev => ev === 'end' || ev === 'finish' || ev === 'prefinish'
      -
      -const isArrayBuffer = b =>
      -  b instanceof ArrayBuffer ||
      -  (typeof b === 'object' &&
      -    b.constructor &&
      -    b.constructor.name === 'ArrayBuffer' &&
      -    b.byteLength >= 0)
      -
      -const isArrayBufferView = b => !Buffer.isBuffer(b) && ArrayBuffer.isView(b)
      -
      -class Pipe {
      -  constructor(src, dest, opts) {
      -    this.src = src
      -    this.dest = dest
      -    this.opts = opts
      -    this.ondrain = () => src[RESUME]()
      -    dest.on('drain', this.ondrain)
      -  }
      -  unpipe() {
      -    this.dest.removeListener('drain', this.ondrain)
      -  }
      -  // istanbul ignore next - only here for the prototype
      -  proxyErrors() {}
      -  end() {
      -    this.unpipe()
      -    if (this.opts.end) this.dest.end()
      -  }
      -}
      -
      -class PipeProxyErrors extends Pipe {
      -  unpipe() {
      -    this.src.removeListener('error', this.proxyErrors)
      -    super.unpipe()
      -  }
      -  constructor(src, dest, opts) {
      -    super(src, dest, opts)
      -    this.proxyErrors = er => dest.emit('error', er)
      -    src.on('error', this.proxyErrors)
      -  }
      -}
      -
      -export class Minipass extends Stream {
      -  constructor(options) {
      -    super()
      -    this[FLOWING] = false
      -    // whether we're explicitly paused
      -    this[PAUSED] = false
      -    this[PIPES] = []
      -    this[BUFFER] = []
      -    this[OBJECTMODE] = (options && options.objectMode) || false
      -    if (this[OBJECTMODE]) this[ENCODING] = null
      -    else this[ENCODING] = (options && options.encoding) || null
      -    if (this[ENCODING] === 'buffer') this[ENCODING] = null
      -    this[ASYNC] = (options && !!options.async) || false
      -    this[DECODER] = this[ENCODING] ? new SD(this[ENCODING]) : null
      -    this[EOF] = false
      -    this[EMITTED_END] = false
      -    this[EMITTING_END] = false
      -    this[CLOSED] = false
      -    this[EMITTED_ERROR] = null
      -    this.writable = true
      -    this.readable = true
      -    this[BUFFERLENGTH] = 0
      -    this[DESTROYED] = false
      -    if (options && options.debugExposeBuffer === true) {
      -      Object.defineProperty(this, 'buffer', { get: () => this[BUFFER] })
      -    }
      -    if (options && options.debugExposePipes === true) {
      -      Object.defineProperty(this, 'pipes', { get: () => this[PIPES] })
      -    }
      -    this[SIGNAL] = options && options.signal
      -    this[ABORTED] = false
      -    if (this[SIGNAL]) {
      -      this[SIGNAL].addEventListener('abort', () => this[ABORT]())
      -      if (this[SIGNAL].aborted) {
      -        this[ABORT]()
      -      }
      -    }
      -  }
      -
      -  get bufferLength() {
      -    return this[BUFFERLENGTH]
      -  }
      -
      -  get encoding() {
      -    return this[ENCODING]
      -  }
      -  set encoding(enc) {
      -    if (this[OBJECTMODE]) throw new Error('cannot set encoding in objectMode')
      -
      -    if (
      -      this[ENCODING] &&
      -      enc !== this[ENCODING] &&
      -      ((this[DECODER] && this[DECODER].lastNeed) || this[BUFFERLENGTH])
      -    )
      -      throw new Error('cannot change encoding')
      -
      -    if (this[ENCODING] !== enc) {
      -      this[DECODER] = enc ? new SD(enc) : null
      -      if (this[BUFFER].length)
      -        this[BUFFER] = this[BUFFER].map(chunk => this[DECODER].write(chunk))
      -    }
      -
      -    this[ENCODING] = enc
      -  }
      -
      -  setEncoding(enc) {
      -    this.encoding = enc
      -  }
      -
      -  get objectMode() {
      -    return this[OBJECTMODE]
      -  }
      -  set objectMode(om) {
      -    this[OBJECTMODE] = this[OBJECTMODE] || !!om
      -  }
      -
      -  get ['async']() {
      -    return this[ASYNC]
      -  }
      -  set ['async'](a) {
      -    this[ASYNC] = this[ASYNC] || !!a
      -  }
      -
      -  // drop everything and get out of the flow completely
      -  [ABORT]() {
      -    this[ABORTED] = true
      -    this.emit('abort', this[SIGNAL].reason)
      -    this.destroy(this[SIGNAL].reason)
      -  }
      -
      -  get aborted() {
      -    return this[ABORTED]
      -  }
      -  set aborted(_) {}
      -
      -  write(chunk, encoding, cb) {
      -    if (this[ABORTED]) return false
      -    if (this[EOF]) throw new Error('write after end')
      -
      -    if (this[DESTROYED]) {
      -      this.emit(
      -        'error',
      -        Object.assign(
      -          new Error('Cannot call write after a stream was destroyed'),
      -          { code: 'ERR_STREAM_DESTROYED' }
      -        )
      -      )
      -      return true
      -    }
      -
      -    if (typeof encoding === 'function') (cb = encoding), (encoding = 'utf8')
      -
      -    if (!encoding) encoding = 'utf8'
      -
      -    const fn = this[ASYNC] ? defer : f => f()
      -
      -    // convert array buffers and typed array views into buffers
      -    // at some point in the future, we may want to do the opposite!
      -    // leave strings and buffers as-is
      -    // anything else switches us into object mode
      -    if (!this[OBJECTMODE] && !Buffer.isBuffer(chunk)) {
      -      if (isArrayBufferView(chunk))
      -        chunk = Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength)
      -      else if (isArrayBuffer(chunk)) chunk = Buffer.from(chunk)
      -      else if (typeof chunk !== 'string')
      -        // use the setter so we throw if we have encoding set
      -        this.objectMode = true
      -    }
      -
      -    // handle object mode up front, since it's simpler
      -    // this yields better performance, fewer checks later.
      -    if (this[OBJECTMODE]) {
      -      /* istanbul ignore if - maybe impossible? */
      -      if (this.flowing && this[BUFFERLENGTH] !== 0) this[FLUSH](true)
      -
      -      if (this.flowing) this.emit('data', chunk)
      -      else this[BUFFERPUSH](chunk)
      -
      -      if (this[BUFFERLENGTH] !== 0) this.emit('readable')
      -
      -      if (cb) fn(cb)
      -
      -      return this.flowing
      -    }
      -
      -    // at this point the chunk is a buffer or string
      -    // don't buffer it up or send it to the decoder
      -    if (!chunk.length) {
      -      if (this[BUFFERLENGTH] !== 0) this.emit('readable')
      -      if (cb) fn(cb)
      -      return this.flowing
      -    }
      -
      -    // fast-path writing strings of same encoding to a stream with
      -    // an empty buffer, skipping the buffer/decoder dance
      -    if (
      -      typeof chunk === 'string' &&
      -      // unless it is a string already ready for us to use
      -      !(encoding === this[ENCODING] && !this[DECODER].lastNeed)
      -    ) {
      -      chunk = Buffer.from(chunk, encoding)
      -    }
      -
      -    if (Buffer.isBuffer(chunk) && this[ENCODING])
      -      chunk = this[DECODER].write(chunk)
      -
      -    // Note: flushing CAN potentially switch us into not-flowing mode
      -    if (this.flowing && this[BUFFERLENGTH] !== 0) this[FLUSH](true)
      -
      -    if (this.flowing) this.emit('data', chunk)
      -    else this[BUFFERPUSH](chunk)
      -
      -    if (this[BUFFERLENGTH] !== 0) this.emit('readable')
      -
      -    if (cb) fn(cb)
      -
      -    return this.flowing
      -  }
      -
      -  read(n) {
      -    if (this[DESTROYED]) return null
      -
      -    if (this[BUFFERLENGTH] === 0 || n === 0 || n > this[BUFFERLENGTH]) {
      -      this[MAYBE_EMIT_END]()
      -      return null
      -    }
      -
      -    if (this[OBJECTMODE]) n = null
      -
      -    if (this[BUFFER].length > 1 && !this[OBJECTMODE]) {
      -      if (this.encoding) this[BUFFER] = [this[BUFFER].join('')]
      -      else this[BUFFER] = [Buffer.concat(this[BUFFER], this[BUFFERLENGTH])]
      -    }
      -
      -    const ret = this[READ](n || null, this[BUFFER][0])
      -    this[MAYBE_EMIT_END]()
      -    return ret
      -  }
      -
      -  [READ](n, chunk) {
      -    if (n === chunk.length || n === null) this[BUFFERSHIFT]()
      -    else {
      -      this[BUFFER][0] = chunk.slice(n)
      -      chunk = chunk.slice(0, n)
      -      this[BUFFERLENGTH] -= n
      -    }
      -
      -    this.emit('data', chunk)
      -
      -    if (!this[BUFFER].length && !this[EOF]) this.emit('drain')
      -
      -    return chunk
      -  }
      -
      -  end(chunk, encoding, cb) {
      -    if (typeof chunk === 'function') (cb = chunk), (chunk = null)
      -    if (typeof encoding === 'function') (cb = encoding), (encoding = 'utf8')
      -    if (chunk) this.write(chunk, encoding)
      -    if (cb) this.once('end', cb)
      -    this[EOF] = true
      -    this.writable = false
      -
      -    // if we haven't written anything, then go ahead and emit,
      -    // even if we're not reading.
      -    // we'll re-emit if a new 'end' listener is added anyway.
      -    // This makes MP more suitable to write-only use cases.
      -    if (this.flowing || !this[PAUSED]) this[MAYBE_EMIT_END]()
      -    return this
      -  }
      -
      -  // don't let the internal resume be overwritten
      -  [RESUME]() {
      -    if (this[DESTROYED]) return
      -
      -    this[PAUSED] = false
      -    this[FLOWING] = true
      -    this.emit('resume')
      -    if (this[BUFFER].length) this[FLUSH]()
      -    else if (this[EOF]) this[MAYBE_EMIT_END]()
      -    else this.emit('drain')
      -  }
      -
      -  resume() {
      -    return this[RESUME]()
      -  }
      -
      -  pause() {
      -    this[FLOWING] = false
      -    this[PAUSED] = true
      -  }
      -
      -  get destroyed() {
      -    return this[DESTROYED]
      -  }
      -
      -  get flowing() {
      -    return this[FLOWING]
      -  }
      -
      -  get paused() {
      -    return this[PAUSED]
      -  }
      -
      -  [BUFFERPUSH](chunk) {
      -    if (this[OBJECTMODE]) this[BUFFERLENGTH] += 1
      -    else this[BUFFERLENGTH] += chunk.length
      -    this[BUFFER].push(chunk)
      -  }
      -
      -  [BUFFERSHIFT]() {
      -    if (this[OBJECTMODE]) this[BUFFERLENGTH] -= 1
      -    else this[BUFFERLENGTH] -= this[BUFFER][0].length
      -    return this[BUFFER].shift()
      -  }
      -
      -  [FLUSH](noDrain) {
      -    do {} while (this[FLUSHCHUNK](this[BUFFERSHIFT]()) && this[BUFFER].length)
      -
      -    if (!noDrain && !this[BUFFER].length && !this[EOF]) this.emit('drain')
      -  }
      -
      -  [FLUSHCHUNK](chunk) {
      -    this.emit('data', chunk)
      -    return this.flowing
      -  }
      -
      -  pipe(dest, opts) {
      -    if (this[DESTROYED]) return
      -
      -    const ended = this[EMITTED_END]
      -    opts = opts || {}
      -    if (dest === proc.stdout || dest === proc.stderr) opts.end = false
      -    else opts.end = opts.end !== false
      -    opts.proxyErrors = !!opts.proxyErrors
      -
      -    // piping an ended stream ends immediately
      -    if (ended) {
      -      if (opts.end) dest.end()
      -    } else {
      -      this[PIPES].push(
      -        !opts.proxyErrors
      -          ? new Pipe(this, dest, opts)
      -          : new PipeProxyErrors(this, dest, opts)
      -      )
      -      if (this[ASYNC]) defer(() => this[RESUME]())
      -      else this[RESUME]()
      -    }
      -
      -    return dest
      -  }
      -
      -  unpipe(dest) {
      -    const p = this[PIPES].find(p => p.dest === dest)
      -    if (p) {
      -      this[PIPES].splice(this[PIPES].indexOf(p), 1)
      -      p.unpipe()
      -    }
      -  }
      -
      -  addListener(ev, fn) {
      -    return this.on(ev, fn)
      -  }
      -
      -  on(ev, fn) {
      -    const ret = super.on(ev, fn)
      -    if (ev === 'data' && !this[PIPES].length && !this.flowing) this[RESUME]()
      -    else if (ev === 'readable' && this[BUFFERLENGTH] !== 0)
      -      super.emit('readable')
      -    else if (isEndish(ev) && this[EMITTED_END]) {
      -      super.emit(ev)
      -      this.removeAllListeners(ev)
      -    } else if (ev === 'error' && this[EMITTED_ERROR]) {
      -      if (this[ASYNC]) defer(() => fn.call(this, this[EMITTED_ERROR]))
      -      else fn.call(this, this[EMITTED_ERROR])
      -    }
      -    return ret
      -  }
      -
      -  get emittedEnd() {
      -    return this[EMITTED_END]
      -  }
      -
      -  [MAYBE_EMIT_END]() {
      -    if (
      -      !this[EMITTING_END] &&
      -      !this[EMITTED_END] &&
      -      !this[DESTROYED] &&
      -      this[BUFFER].length === 0 &&
      -      this[EOF]
      -    ) {
      -      this[EMITTING_END] = true
      -      this.emit('end')
      -      this.emit('prefinish')
      -      this.emit('finish')
      -      if (this[CLOSED]) this.emit('close')
      -      this[EMITTING_END] = false
      -    }
      -  }
      -
      -  emit(ev, data, ...extra) {
      -    // error and close are only events allowed after calling destroy()
      -    if (ev !== 'error' && ev !== 'close' && ev !== DESTROYED && this[DESTROYED])
      -      return
      -    else if (ev === 'data') {
      -      return !this[OBJECTMODE] && !data
      -        ? false
      -        : this[ASYNC]
      -        ? defer(() => this[EMITDATA](data))
      -        : this[EMITDATA](data)
      -    } else if (ev === 'end') {
      -      return this[EMITEND]()
      -    } else if (ev === 'close') {
      -      this[CLOSED] = true
      -      // don't emit close before 'end' and 'finish'
      -      if (!this[EMITTED_END] && !this[DESTROYED]) return
      -      const ret = super.emit('close')
      -      this.removeAllListeners('close')
      -      return ret
      -    } else if (ev === 'error') {
      -      this[EMITTED_ERROR] = data
      -      super.emit(ERROR, data)
      -      const ret =
      -        !this[SIGNAL] || this.listeners('error').length
      -          ? super.emit('error', data)
      -          : false
      -      this[MAYBE_EMIT_END]()
      -      return ret
      -    } else if (ev === 'resume') {
      -      const ret = super.emit('resume')
      -      this[MAYBE_EMIT_END]()
      -      return ret
      -    } else if (ev === 'finish' || ev === 'prefinish') {
      -      const ret = super.emit(ev)
      -      this.removeAllListeners(ev)
      -      return ret
      -    }
      -
      -    // Some other unknown event
      -    const ret = super.emit(ev, data, ...extra)
      -    this[MAYBE_EMIT_END]()
      -    return ret
      -  }
      -
      -  [EMITDATA](data) {
      -    for (const p of this[PIPES]) {
      -      if (p.dest.write(data) === false) this.pause()
      -    }
      -    const ret = super.emit('data', data)
      -    this[MAYBE_EMIT_END]()
      -    return ret
      -  }
      -
      -  [EMITEND]() {
      -    if (this[EMITTED_END]) return
      -
      -    this[EMITTED_END] = true
      -    this.readable = false
      -    if (this[ASYNC]) defer(() => this[EMITEND2]())
      -    else this[EMITEND2]()
      -  }
      -
      -  [EMITEND2]() {
      -    if (this[DECODER]) {
      -      const data = this[DECODER].end()
      -      if (data) {
      -        for (const p of this[PIPES]) {
      -          p.dest.write(data)
      -        }
      -        super.emit('data', data)
      -      }
      -    }
      -
      -    for (const p of this[PIPES]) {
      -      p.end()
      -    }
      -    const ret = super.emit('end')
      -    this.removeAllListeners('end')
      -    return ret
      -  }
      -
      -  // const all = await stream.collect()
      -  collect() {
      -    const buf = []
      -    if (!this[OBJECTMODE]) buf.dataLength = 0
      -    // set the promise first, in case an error is raised
      -    // by triggering the flow here.
      -    const p = this.promise()
      -    this.on('data', c => {
      -      buf.push(c)
      -      if (!this[OBJECTMODE]) buf.dataLength += c.length
      -    })
      -    return p.then(() => buf)
      -  }
      -
      -  // const data = await stream.concat()
      -  concat() {
      -    return this[OBJECTMODE]
      -      ? Promise.reject(new Error('cannot concat in objectMode'))
      -      : this.collect().then(buf =>
      -          this[OBJECTMODE]
      -            ? Promise.reject(new Error('cannot concat in objectMode'))
      -            : this[ENCODING]
      -            ? buf.join('')
      -            : Buffer.concat(buf, buf.dataLength)
      -        )
      -  }
      -
      -  // stream.promise().then(() => done, er => emitted error)
      -  promise() {
      -    return new Promise((resolve, reject) => {
      -      this.on(DESTROYED, () => reject(new Error('stream destroyed')))
      -      this.on('error', er => reject(er))
      -      this.on('end', () => resolve())
      -    })
      -  }
      -
      -  // for await (let chunk of stream)
      -  [ASYNCITERATOR]() {
      -    let stopped = false
      -    const stop = () => {
      -      this.pause()
      -      stopped = true
      -      return Promise.resolve({ done: true })
      -    }
      -    const next = () => {
      -      if (stopped) return stop()
      -      const res = this.read()
      -      if (res !== null) return Promise.resolve({ done: false, value: res })
      -
      -      if (this[EOF]) return stop()
      -
      -      let resolve = null
      -      let reject = null
      -      const onerr = er => {
      -        this.removeListener('data', ondata)
      -        this.removeListener('end', onend)
      -        this.removeListener(DESTROYED, ondestroy)
      -        stop()
      -        reject(er)
      -      }
      -      const ondata = value => {
      -        this.removeListener('error', onerr)
      -        this.removeListener('end', onend)
      -        this.removeListener(DESTROYED, ondestroy)
      -        this.pause()
      -        resolve({ value: value, done: !!this[EOF] })
      -      }
      -      const onend = () => {
      -        this.removeListener('error', onerr)
      -        this.removeListener('data', ondata)
      -        this.removeListener(DESTROYED, ondestroy)
      -        stop()
      -        resolve({ done: true })
      -      }
      -      const ondestroy = () => onerr(new Error('stream destroyed'))
      -      return new Promise((res, rej) => {
      -        reject = rej
      -        resolve = res
      -        this.once(DESTROYED, ondestroy)
      -        this.once('error', onerr)
      -        this.once('end', onend)
      -        this.once('data', ondata)
      -      })
      -    }
      -
      -    return {
      -      next,
      -      throw: stop,
      -      return: stop,
      -      [ASYNCITERATOR]() {
      -        return this
      -      },
      -    }
      -  }
      -
      -  // for (let chunk of stream)
      -  [ITERATOR]() {
      -    let stopped = false
      -    const stop = () => {
      -      this.pause()
      -      this.removeListener(ERROR, stop)
      -      this.removeListener(DESTROYED, stop)
      -      this.removeListener('end', stop)
      -      stopped = true
      -      return { done: true }
      -    }
      -
      -    const next = () => {
      -      if (stopped) return stop()
      -      const value = this.read()
      -      return value === null ? stop() : { value }
      -    }
      -    this.once('end', stop)
      -    this.once(ERROR, stop)
      -    this.once(DESTROYED, stop)
      -
      -    return {
      -      next,
      -      throw: stop,
      -      return: stop,
      -      [ITERATOR]() {
      -        return this
      -      },
      -    }
      -  }
      -
      -  destroy(er) {
      -    if (this[DESTROYED]) {
      -      if (er) this.emit('error', er)
      -      else this.emit(DESTROYED)
      -      return this
      -    }
      -
      -    this[DESTROYED] = true
      -
      -    // throw away all buffered data, it's never coming out
      -    this[BUFFER].length = 0
      -    this[BUFFERLENGTH] = 0
      -
      -    if (typeof this.close === 'function' && !this[CLOSED]) this.close()
      -
      -    if (er) this.emit('error', er)
      -    // if no error to emit, still reject pending promises
      -    else this.emit(DESTROYED)
      -
      -    return this
      -  }
      -
      -  static isStream(s) {
      -    return (
      -      !!s &&
      -      (s instanceof Minipass ||
      -        s instanceof Stream ||
      -        (s instanceof EE &&
      -          // readable
      -          (typeof s.pipe === 'function' ||
      -            // writable
      -            (typeof s.write === 'function' && typeof s.end === 'function'))))
      -    )
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/minipass/package.json b/deps/npm/node_modules/node-gyp/node_modules/minipass/package.json
      deleted file mode 100644
      index 0e20e988047f23..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/minipass/package.json
      +++ /dev/null
      @@ -1,76 +0,0 @@
      -{
      -  "name": "minipass",
      -  "version": "5.0.0",
      -  "description": "minimal implementation of a PassThrough stream",
      -  "main": "./index.js",
      -  "module": "./index.mjs",
      -  "types": "./index.d.ts",
      -  "exports": {
      -    ".": {
      -      "import": {
      -        "types": "./index.d.ts",
      -        "default": "./index.mjs"
      -      },
      -      "require": {
      -        "types": "./index.d.ts",
      -        "default": "./index.js"
      -      }
      -    },
      -    "./package.json": "./package.json"
      -  },
      -  "devDependencies": {
      -    "@types/node": "^17.0.41",
      -    "end-of-stream": "^1.4.0",
      -    "node-abort-controller": "^3.1.1",
      -    "prettier": "^2.6.2",
      -    "tap": "^16.2.0",
      -    "through2": "^2.0.3",
      -    "ts-node": "^10.8.1",
      -    "typedoc": "^0.23.24",
      -    "typescript": "^4.7.3"
      -  },
      -  "scripts": {
      -    "pretest": "npm run prepare",
      -    "presnap": "npm run prepare",
      -    "prepare": "node ./scripts/transpile-to-esm.js",
      -    "snap": "tap",
      -    "test": "tap",
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "postpublish": "git push origin --follow-tags",
      -    "typedoc": "typedoc ./index.d.ts",
      -    "format": "prettier --write . --loglevel warn"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "git+https://github.com/isaacs/minipass.git"
      -  },
      -  "keywords": [
      -    "passthrough",
      -    "stream"
      -  ],
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me/)",
      -  "license": "ISC",
      -  "files": [
      -    "index.d.ts",
      -    "index.js",
      -    "index.mjs"
      -  ],
      -  "tap": {
      -    "check-coverage": true
      -  },
      -  "engines": {
      -    "node": ">=8"
      -  },
      -  "prettier": {
      -    "semi": false,
      -    "printWidth": 80,
      -    "tabWidth": 2,
      -    "useTabs": false,
      -    "singleQuote": true,
      -    "jsxSingleQuote": false,
      -    "bracketSameLine": true,
      -    "arrowParens": "avoid",
      -    "endOfLine": "lf"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/nopt/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/nopt/LICENSE
      deleted file mode 100644
      index 19129e315fe593..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/nopt/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) Isaac Z. Schlueter and Contributors
      -
      -Permission to use, copy, modify, and/or distribute this software for any
      -purpose with or without fee is hereby granted, provided that the above
      -copyright notice and this permission notice appear in all copies.
      -
      -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
      -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/nopt/README.md b/deps/npm/node_modules/node-gyp/node_modules/nopt/README.md
      deleted file mode 100644
      index a99531c04655fe..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/nopt/README.md
      +++ /dev/null
      @@ -1,213 +0,0 @@
      -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
      deleted file mode 100755
      index bb04291c607acf..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/nopt/bin/nopt.js
      +++ /dev/null
      @@ -1,56 +0,0 @@
      -#!/usr/bin/env node
      -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)
      -
      -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 (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(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
      deleted file mode 100644
      index 5829c2fe0f6379..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/nopt/lib/nopt.js
      +++ /dev/null
      @@ -1,515 +0,0 @@
      -// 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')
      -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 },
      -  }
      -
      -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 = {}
      -  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 data
      -}
      -
      -function clean (data, types, typeDefs) {
      -  typeDefs = typeDefs || exports.typeDefs
      -  var remove = {}
      -  var typeDefault = [false, true, null, String, Array]
      -
      -  Object.keys(data).forEach(function (k) {
      -    if (k === 'argv') {
      -      return
      -    }
      -    var val = data[k]
      -    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 v === 'string') {
      -        debug('string %j', v)
      -        v = v.trim()
      -        if ((v === 'null' && ~type.indexOf(null))
      -            || (v === 'true' &&
      -               (~type.indexOf(true) || ~type.indexOf(Boolean)))
      -            || (v === 'false' &&
      -               (~type.indexOf(false) || ~type.indexOf(Boolean)))) {
      -          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 (!Object.prototype.hasOwnProperty.call(types, k)) {
      -        return v
      -      }
      -
      -      // allow `--no-blah` to set 'blah' to null if null is allowed
      -      if (v === false && ~type.indexOf(null) &&
      -          !(~type.indexOf(false) || ~type.indexOf(Boolean))) {
      -        v = null
      -      }
      -
      -      var d = {}
      -      d[k] = v
      -      debug('prevalidated val', d, v, types[k])
      -      if (!validate(d, k, v, types[k], typeDefs)) {
      -        if (exports.invalidHandler) {
      -          exports.invalidHandler(k, v, types[k], data)
      -        } else if (exports.invalidHandler !== false) {
      -          debug('invalid: ' + k + '=' + v, types[k])
      -        }
      -        return remove
      -      }
      -      debug('validated v', d, v, types[k])
      -      return d[k]
      -    }).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) {
      -      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'
      -  var homePattern = isWin ? /^~(\/|\\)/ : /^~\//
      -  var home = os.homedir()
      -
      -  if (home && val.match(homePattern)) {
      -    data[k] = path.resolve(home, val.slice(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) {
      -  // 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
      -  }
      -  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 (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
      -  }
      -
      -  // 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)
      -    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
      -  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)
      -    )) {
      -      var d = {}
      -      ok = t.validate(d, k, val) !== false
      -      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[types.length - 1])
      -
      -  if (!ok) {
      -    delete data[k]
      -  }
      -  return ok
      -}
      -
      -function parse (args, data, remain, types, shorthands) {
      -  debug('parse', args, data, remain)
      -
      -  var abbrevs = abbrev(Object.keys(types))
      -  var 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.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)
      -      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.slice(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 (
      -        !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
      -      var 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
      deleted file mode 100644
      index a3cd13d8c714bd..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/nopt/package.json
      +++ /dev/null
      @@ -1,53 +0,0 @@
      -{
      -  "name": "nopt",
      -  "version": "6.0.0",
      -  "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.",
      -  "author": "GitHub Inc.",
      -  "main": "lib/nopt.js",
      -  "scripts": {
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "prepublishOnly": "git push origin --follow-tags",
      -    "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",
      -    "url": "https://github.com/npm/nopt.git"
      -  },
      -  "bin": {
      -    "nopt": "bin/nopt.js"
      -  },
      -  "license": "ISC",
      -  "dependencies": {
      -    "abbrev": "^1.0.0"
      -  },
      -  "devDependencies": {
      -    "@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/"
      -  ],
      -  "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.",
      -    "windowsCI": false,
      -    "version": "3.5.0"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/npmlog/LICENSE.md b/deps/npm/node_modules/node-gyp/node_modules/npmlog/LICENSE.md
      deleted file mode 100644
      index 5fc208ff122e08..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/npmlog/LICENSE.md
      +++ /dev/null
      @@ -1,20 +0,0 @@
      -
      -
      -ISC License
      -
      -Copyright 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 NPM DISCLAIMS ALL
      -WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
      -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
      -EVENT SHALL NPM 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/npmlog/lib/log.js b/deps/npm/node_modules/node-gyp/node_modules/npmlog/lib/log.js
      deleted file mode 100644
      index be650c6a426080..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/npmlog/lib/log.js
      +++ /dev/null
      @@ -1,404 +0,0 @@
      -'use strict'
      -var Progress = require('are-we-there-yet')
      -var Gauge = require('gauge')
      -var EE = require('events').EventEmitter
      -var log = exports = module.exports = new EE()
      -var util = require('util')
      -
      -var setBlocking = require('set-blocking')
      -var consoleControl = require('console-control-strings')
      -
      -setBlocking(true)
      -var stream = process.stderr
      -Object.defineProperty(log, 'stream', {
      -  set: function (newStream) {
      -    stream = newStream
      -    if (this.gauge) {
      -      this.gauge.setWriteTo(stream, stream)
      -    }
      -  },
      -  get: function () {
      -    return stream
      -  },
      -})
      -
      -// by default, decide based on tty-ness.
      -var colorEnabled
      -log.useColor = function () {
      -  return colorEnabled != null ? colorEnabled : stream.isTTY
      -}
      -
      -log.enableColor = function () {
      -  colorEnabled = true
      -  this.gauge.setTheme({ hasColor: colorEnabled, hasUnicode: unicodeEnabled })
      -}
      -log.disableColor = function () {
      -  colorEnabled = false
      -  this.gauge.setTheme({ hasColor: colorEnabled, hasUnicode: unicodeEnabled })
      -}
      -
      -// default level
      -log.level = 'info'
      -
      -log.gauge = new Gauge(stream, {
      -  enabled: false, // no progress bars unless asked
      -  theme: { hasColor: log.useColor() },
      -  template: [
      -    { type: 'progressbar', length: 20 },
      -    { type: 'activityIndicator', kerning: 1, length: 1 },
      -    { type: 'section', default: '' },
      -    ':',
      -    { type: 'logline', kerning: 1, default: '' },
      -  ],
      -})
      -
      -log.tracker = new Progress.TrackerGroup()
      -
      -// we track this separately as we may need to temporarily disable the
      -// display of the status bar for our own loggy purposes.
      -log.progressEnabled = log.gauge.isEnabled()
      -
      -var unicodeEnabled
      -
      -log.enableUnicode = function () {
      -  unicodeEnabled = true
      -  this.gauge.setTheme({ hasColor: this.useColor(), hasUnicode: unicodeEnabled })
      -}
      -
      -log.disableUnicode = function () {
      -  unicodeEnabled = false
      -  this.gauge.setTheme({ hasColor: this.useColor(), hasUnicode: unicodeEnabled })
      -}
      -
      -log.setGaugeThemeset = function (themes) {
      -  this.gauge.setThemeset(themes)
      -}
      -
      -log.setGaugeTemplate = function (template) {
      -  this.gauge.setTemplate(template)
      -}
      -
      -log.enableProgress = function () {
      -  if (this.progressEnabled) {
      -    return
      -  }
      -
      -  this.progressEnabled = true
      -  this.tracker.on('change', this.showProgress)
      -  if (this._paused) {
      -    return
      -  }
      -
      -  this.gauge.enable()
      -}
      -
      -log.disableProgress = function () {
      -  if (!this.progressEnabled) {
      -    return
      -  }
      -  this.progressEnabled = false
      -  this.tracker.removeListener('change', this.showProgress)
      -  this.gauge.disable()
      -}
      -
      -var trackerConstructors = ['newGroup', 'newItem', 'newStream']
      -
      -var mixinLog = function (tracker) {
      -  // mixin the public methods from log into the tracker
      -  // (except: conflicts and one's we handle specially)
      -  Object.keys(log).forEach(function (P) {
      -    if (P[0] === '_') {
      -      return
      -    }
      -
      -    if (trackerConstructors.filter(function (C) {
      -      return C === P
      -    }).length) {
      -      return
      -    }
      -
      -    if (tracker[P]) {
      -      return
      -    }
      -
      -    if (typeof log[P] !== 'function') {
      -      return
      -    }
      -
      -    var func = log[P]
      -    tracker[P] = function () {
      -      return func.apply(log, arguments)
      -    }
      -  })
      -  // if the new tracker is a group, make sure any subtrackers get
      -  // mixed in too
      -  if (tracker instanceof Progress.TrackerGroup) {
      -    trackerConstructors.forEach(function (C) {
      -      var func = tracker[C]
      -      tracker[C] = function () {
      -        return mixinLog(func.apply(tracker, arguments))
      -      }
      -    })
      -  }
      -  return tracker
      -}
      -
      -// Add tracker constructors to the top level log object
      -trackerConstructors.forEach(function (C) {
      -  log[C] = function () {
      -    return mixinLog(this.tracker[C].apply(this.tracker, arguments))
      -  }
      -})
      -
      -log.clearProgress = function (cb) {
      -  if (!this.progressEnabled) {
      -    return cb && process.nextTick(cb)
      -  }
      -
      -  this.gauge.hide(cb)
      -}
      -
      -log.showProgress = function (name, completed) {
      -  if (!this.progressEnabled) {
      -    return
      -  }
      -
      -  var values = {}
      -  if (name) {
      -    values.section = name
      -  }
      -
      -  var last = log.record[log.record.length - 1]
      -  if (last) {
      -    values.subsection = last.prefix
      -    var disp = log.disp[last.level] || last.level
      -    var logline = this._format(disp, log.style[last.level])
      -    if (last.prefix) {
      -      logline += ' ' + this._format(last.prefix, this.prefixStyle)
      -    }
      -
      -    logline += ' ' + last.message.split(/\r?\n/)[0]
      -    values.logline = logline
      -  }
      -  values.completed = completed || this.tracker.completed()
      -  this.gauge.show(values)
      -}.bind(log) // bind for use in tracker's on-change listener
      -
      -// temporarily stop emitting, but don't drop
      -log.pause = function () {
      -  this._paused = true
      -  if (this.progressEnabled) {
      -    this.gauge.disable()
      -  }
      -}
      -
      -log.resume = function () {
      -  if (!this._paused) {
      -    return
      -  }
      -
      -  this._paused = false
      -
      -  var b = this._buffer
      -  this._buffer = []
      -  b.forEach(function (m) {
      -    this.emitLog(m)
      -  }, this)
      -  if (this.progressEnabled) {
      -    this.gauge.enable()
      -  }
      -}
      -
      -log._buffer = []
      -
      -var id = 0
      -log.record = []
      -log.maxRecordSize = 10000
      -log.log = function (lvl, prefix, message) {
      -  var l = this.levels[lvl]
      -  if (l === undefined) {
      -    return this.emit('error', new Error(util.format(
      -      'Undefined log level: %j', lvl)))
      -  }
      -
      -  var a = new Array(arguments.length - 2)
      -  var stack = null
      -  for (var i = 2; i < arguments.length; i++) {
      -    var arg = a[i - 2] = arguments[i]
      -
      -    // resolve stack traces to a plain string.
      -    if (typeof arg === 'object' && arg instanceof Error && arg.stack) {
      -      Object.defineProperty(arg, 'stack', {
      -        value: stack = arg.stack + '',
      -        enumerable: true,
      -        writable: true,
      -      })
      -    }
      -  }
      -  if (stack) {
      -    a.unshift(stack + '\n')
      -  }
      -  message = util.format.apply(util, a)
      -
      -  var m = {
      -    id: id++,
      -    level: lvl,
      -    prefix: String(prefix || ''),
      -    message: message,
      -    messageRaw: a,
      -  }
      -
      -  this.emit('log', m)
      -  this.emit('log.' + lvl, m)
      -  if (m.prefix) {
      -    this.emit(m.prefix, m)
      -  }
      -
      -  this.record.push(m)
      -  var mrs = this.maxRecordSize
      -  var n = this.record.length - mrs
      -  if (n > mrs / 10) {
      -    var newSize = Math.floor(mrs * 0.9)
      -    this.record = this.record.slice(-1 * newSize)
      -  }
      -
      -  this.emitLog(m)
      -}.bind(log)
      -
      -log.emitLog = function (m) {
      -  if (this._paused) {
      -    this._buffer.push(m)
      -    return
      -  }
      -  if (this.progressEnabled) {
      -    this.gauge.pulse(m.prefix)
      -  }
      -
      -  var l = this.levels[m.level]
      -  if (l === undefined) {
      -    return
      -  }
      -
      -  if (l < this.levels[this.level]) {
      -    return
      -  }
      -
      -  if (l > 0 && !isFinite(l)) {
      -    return
      -  }
      -
      -  // If 'disp' is null or undefined, use the lvl as a default
      -  // Allows: '', 0 as valid disp
      -  var disp = log.disp[m.level] != null ? log.disp[m.level] : m.level
      -  this.clearProgress()
      -  m.message.split(/\r?\n/).forEach(function (line) {
      -    var heading = this.heading
      -    if (heading) {
      -      this.write(heading, this.headingStyle)
      -      this.write(' ')
      -    }
      -    this.write(disp, log.style[m.level])
      -    var p = m.prefix || ''
      -    if (p) {
      -      this.write(' ')
      -    }
      -
      -    this.write(p, this.prefixStyle)
      -    this.write(' ' + line + '\n')
      -  }, this)
      -  this.showProgress()
      -}
      -
      -log._format = function (msg, style) {
      -  if (!stream) {
      -    return
      -  }
      -
      -  var output = ''
      -  if (this.useColor()) {
      -    style = style || {}
      -    var settings = []
      -    if (style.fg) {
      -      settings.push(style.fg)
      -    }
      -
      -    if (style.bg) {
      -      settings.push('bg' + style.bg[0].toUpperCase() + style.bg.slice(1))
      -    }
      -
      -    if (style.bold) {
      -      settings.push('bold')
      -    }
      -
      -    if (style.underline) {
      -      settings.push('underline')
      -    }
      -
      -    if (style.inverse) {
      -      settings.push('inverse')
      -    }
      -
      -    if (settings.length) {
      -      output += consoleControl.color(settings)
      -    }
      -
      -    if (style.beep) {
      -      output += consoleControl.beep()
      -    }
      -  }
      -  output += msg
      -  if (this.useColor()) {
      -    output += consoleControl.color('reset')
      -  }
      -
      -  return output
      -}
      -
      -log.write = function (msg, style) {
      -  if (!stream) {
      -    return
      -  }
      -
      -  stream.write(this._format(msg, style))
      -}
      -
      -log.addLevel = function (lvl, n, style, disp) {
      -  // If 'disp' is null or undefined, use the lvl as a default
      -  if (disp == null) {
      -    disp = lvl
      -  }
      -
      -  this.levels[lvl] = n
      -  this.style[lvl] = style
      -  if (!this[lvl]) {
      -    this[lvl] = function () {
      -      var a = new Array(arguments.length + 1)
      -      a[0] = lvl
      -      for (var i = 0; i < arguments.length; i++) {
      -        a[i + 1] = arguments[i]
      -      }
      -
      -      return this.log.apply(this, a)
      -    }.bind(this)
      -  }
      -  this.disp[lvl] = disp
      -}
      -
      -log.prefixStyle = { fg: 'magenta' }
      -log.headingStyle = { fg: 'white', bg: 'black' }
      -
      -log.style = {}
      -log.levels = {}
      -log.disp = {}
      -log.addLevel('silly', -Infinity, { inverse: true }, 'sill')
      -log.addLevel('verbose', 1000, { fg: 'cyan', bg: 'black' }, 'verb')
      -log.addLevel('info', 2000, { fg: 'green' })
      -log.addLevel('timing', 2500, { fg: 'green', bg: 'black' })
      -log.addLevel('http', 3000, { fg: 'green', bg: 'black' })
      -log.addLevel('notice', 3500, { fg: 'cyan', bg: 'black' })
      -log.addLevel('warn', 4000, { fg: 'black', bg: 'yellow' }, 'WARN')
      -log.addLevel('error', 5000, { fg: 'red', bg: 'black' }, 'ERR!')
      -log.addLevel('silent', Infinity)
      -
      -// allow 'error' prefix
      -log.on('error', function () {})
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/npmlog/package.json b/deps/npm/node_modules/node-gyp/node_modules/npmlog/package.json
      deleted file mode 100644
      index bdb5a384781ce8..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/npmlog/package.json
      +++ /dev/null
      @@ -1,51 +0,0 @@
      -{
      -  "author": "GitHub Inc.",
      -  "name": "npmlog",
      -  "description": "logger for npm",
      -  "version": "6.0.2",
      -  "repository": {
      -    "type": "git",
      -    "url": "https://github.com/npm/npmlog.git"
      -  },
      -  "main": "lib/log.js",
      -  "files": [
      -    "bin/",
      -    "lib/"
      -  ],
      -  "scripts": {
      -    "test": "tap",
      -    "npmclilint": "npmcli-lint",
      -    "lint": "eslint \"**/*.js\"",
      -    "lintfix": "npm run lint -- --fix",
      -    "posttest": "npm run lint",
      -    "postsnap": "npm run lintfix --",
      -    "postlint": "template-oss-check",
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "prepublishOnly": "git push origin --follow-tags",
      -    "snap": "tap",
      -    "template-oss-apply": "template-oss-apply --force"
      -  },
      -  "dependencies": {
      -    "are-we-there-yet": "^3.0.0",
      -    "console-control-strings": "^1.1.0",
      -    "gauge": "^4.0.3",
      -    "set-blocking": "^2.0.0"
      -  },
      -  "devDependencies": {
      -    "@npmcli/eslint-config": "^3.0.1",
      -    "@npmcli/template-oss": "3.4.1",
      -    "tap": "^16.0.1"
      -  },
      -  "license": "ISC",
      -  "engines": {
      -    "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
      -  },
      -  "tap": {
      -    "branches": 95
      -  },
      -  "templateOSS": {
      -    "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
      -    "version": "3.4.1"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/CONTRIBUTING.md b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/CONTRIBUTING.md
      deleted file mode 100644
      index f478d58dca85b2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/CONTRIBUTING.md
      +++ /dev/null
      @@ -1,38 +0,0 @@
      -# Developer's Certificate of Origin 1.1
      -
      -By making a contribution to this project, I certify that:
      -
      -* (a) The contribution was created in whole or in part by me and I
      -  have the right to submit it under the open source license
      -  indicated in the file; or
      -
      -* (b) The contribution is based upon previous work that, to the best
      -  of my knowledge, is covered under an appropriate open source
      -  license and I have the right under that license to submit that
      -  work with modifications, whether created in whole or in part
      -  by me, under the same open source license (unless I am
      -  permitted to submit under a different license), as indicated
      -  in the file; or
      -
      -* (c) The contribution was provided directly to me by some other
      -  person who certified (a), (b) or (c) and I have not modified
      -  it.
      -
      -* (d) I understand and agree that this project and the contribution
      -  are public and that a record of the contribution (including all
      -  personal information I submit with it, including my sign-off) is
      -  maintained indefinitely and may be redistributed consistent with
      -  this project or the open source license(s) involved.
      -
      -## Moderation Policy
      -
      -The [Node.js Moderation Policy] applies to this WG.
      -
      -## Code of Conduct
      -
      -The [Node.js Code of Conduct][] applies to this WG.
      -
      -[Node.js Code of Conduct]:
      -https://github.com/nodejs/node/blob/master/CODE_OF_CONDUCT.md
      -[Node.js Moderation Policy]:
      -https://github.com/nodejs/TSC/blob/master/Moderation-Policy.md
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/GOVERNANCE.md b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/GOVERNANCE.md
      deleted file mode 100644
      index 16ffb93f24bece..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/GOVERNANCE.md
      +++ /dev/null
      @@ -1,136 +0,0 @@
      -### Streams Working Group
      -
      -The Node.js Streams is jointly governed by a Working Group
      -(WG)
      -that is responsible for high-level guidance of the project.
      -
      -The WG has final authority over this project including:
      -
      -* Technical direction
      -* Project governance and process (including this policy)
      -* Contribution policy
      -* GitHub repository hosting
      -* Conduct guidelines
      -* Maintaining the list of additional Collaborators
      -
      -For the current list of WG members, see the project
      -[README.md](./README.md#current-project-team-members).
      -
      -### Collaborators
      -
      -The readable-stream GitHub repository is
      -maintained by the WG and additional Collaborators who are added by the
      -WG on an ongoing basis.
      -
      -Individuals making significant and valuable contributions are made
      -Collaborators and given commit-access to the project. These
      -individuals are identified by the WG and their addition as
      -Collaborators is discussed during the WG meeting.
      -
      -_Note:_ If you make a significant contribution and are not considered
      -for commit-access log an issue or contact a WG member directly and it
      -will be brought up in the next WG meeting.
      -
      -Modifications of the contents of the readable-stream repository are
      -made on
      -a collaborative basis. Anybody with a GitHub account may propose a
      -modification via pull request and it will be considered by the project
      -Collaborators. All pull requests must be reviewed and accepted by a
      -Collaborator with sufficient expertise who is able to take full
      -responsibility for the change. In the case of pull requests proposed
      -by an existing Collaborator, an additional Collaborator is required
      -for sign-off. Consensus should be sought if additional Collaborators
      -participate and there is disagreement around a particular
      -modification. See _Consensus Seeking Process_ below for further detail
      -on the consensus model used for governance.
      -
      -Collaborators may opt to elevate significant or controversial
      -modifications, or modifications that have not found consensus to the
      -WG for discussion by assigning the ***WG-agenda*** tag to a pull
      -request or issue. The WG should serve as the final arbiter where
      -required.
      -
      -For the current list of Collaborators, see the project
      -[README.md](./README.md#members).
      -
      -### WG Membership
      -
      -WG seats are not time-limited.  There is no fixed size of the WG.
      -However, the expected target is between 6 and 12, to ensure adequate
      -coverage of important areas of expertise, balanced with the ability to
      -make decisions efficiently.
      -
      -There is no specific set of requirements or qualifications for WG
      -membership beyond these rules.
      -
      -The WG may add additional members to the WG by unanimous consensus.
      -
      -A WG member may be removed from the WG by voluntary resignation, or by
      -unanimous consensus of all other WG members.
      -
      -Changes to WG membership should be posted in the agenda, and may be
      -suggested as any other agenda item (see "WG Meetings" below).
      -
      -If an addition or removal is proposed during a meeting, and the full
      -WG is not in attendance to participate, then the addition or removal
      -is added to the agenda for the subsequent meeting.  This is to ensure
      -that all members are given the opportunity to participate in all
      -membership decisions.  If a WG member is unable to attend a meeting
      -where a planned membership decision is being made, then their consent
      -is assumed.
      -
      -No more than 1/3 of the WG members may be affiliated with the same
      -employer.  If removal or resignation of a WG member, or a change of
      -employment by a WG member, creates a situation where more than 1/3 of
      -the WG membership shares an employer, then the situation must be
      -immediately remedied by the resignation or removal of one or more WG
      -members affiliated with the over-represented employer(s).
      -
      -### WG Meetings
      -
      -The WG meets occasionally on a Google Hangout On Air. A designated moderator
      -approved by the WG runs the meeting. Each meeting should be
      -published to YouTube.
      -
      -Items are added to the WG agenda that are considered contentious or
      -are modifications of governance, contribution policy, WG membership,
      -or release process.
      -
      -The intention of the agenda is not to approve or review all patches;
      -that should happen continuously on GitHub and be handled by the larger
      -group of Collaborators.
      -
      -Any community member or contributor can ask that something be added to
      -the next meeting's agenda by logging a GitHub Issue. Any Collaborator,
      -WG member or the moderator can add the item to the agenda by adding
      -the ***WG-agenda*** tag to the issue.
      -
      -Prior to each WG meeting the moderator will share the Agenda with
      -members of the WG. WG members can add any items they like to the
      -agenda at the beginning of each meeting. The moderator and the WG
      -cannot veto or remove items.
      -
      -The WG may invite persons or representatives from certain projects to
      -participate in a non-voting capacity.
      -
      -The moderator is responsible for summarizing the discussion of each
      -agenda item and sends it as a pull request after the meeting.
      -
      -### Consensus Seeking Process
      -
      -The WG follows a
      -[Consensus
      -Seeking](http://en.wikipedia.org/wiki/Consensus-seeking_decision-making)
      -decision-making model.
      -
      -When an agenda item has appeared to reach a consensus the moderator
      -will ask "Does anyone object?" as a final call for dissent from the
      -consensus.
      -
      -If an agenda item cannot reach a consensus a WG member can call for
      -either a closing vote or a vote to table the issue to the next
      -meeting. The call for a vote must be seconded by a majority of the WG
      -or else the discussion will continue. Simple majority wins.
      -
      -Note that changes to WG membership require a majority consensus.  See
      -"WG Membership" above.
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/LICENSE
      deleted file mode 100644
      index 2873b3b2e59507..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/LICENSE
      +++ /dev/null
      @@ -1,47 +0,0 @@
      -Node.js is licensed for use as follows:
      -
      -"""
      -Copyright Node.js contributors. All rights reserved.
      -
      -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.
      -"""
      -
      -This license applies to parts of Node.js originating from the
      -https://github.com/joyent/node repository:
      -
      -"""
      -Copyright Joyent, Inc. and other Node contributors. All rights reserved.
      -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/deps/npm/node_modules/node-gyp/node_modules/readable-stream/errors-browser.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/errors-browser.js
      deleted file mode 100644
      index fb8e73e1893b10..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/errors-browser.js
      +++ /dev/null
      @@ -1,127 +0,0 @@
      -'use strict';
      -
      -function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
      -
      -var codes = {};
      -
      -function createErrorType(code, message, Base) {
      -  if (!Base) {
      -    Base = Error;
      -  }
      -
      -  function getMessage(arg1, arg2, arg3) {
      -    if (typeof message === 'string') {
      -      return message;
      -    } else {
      -      return message(arg1, arg2, arg3);
      -    }
      -  }
      -
      -  var NodeError =
      -  /*#__PURE__*/
      -  function (_Base) {
      -    _inheritsLoose(NodeError, _Base);
      -
      -    function NodeError(arg1, arg2, arg3) {
      -      return _Base.call(this, getMessage(arg1, arg2, arg3)) || this;
      -    }
      -
      -    return NodeError;
      -  }(Base);
      -
      -  NodeError.prototype.name = Base.name;
      -  NodeError.prototype.code = code;
      -  codes[code] = NodeError;
      -} // https://github.com/nodejs/node/blob/v10.8.0/lib/internal/errors.js
      -
      -
      -function oneOf(expected, thing) {
      -  if (Array.isArray(expected)) {
      -    var len = expected.length;
      -    expected = expected.map(function (i) {
      -      return String(i);
      -    });
      -
      -    if (len > 2) {
      -      return "one of ".concat(thing, " ").concat(expected.slice(0, len - 1).join(', '), ", or ") + expected[len - 1];
      -    } else if (len === 2) {
      -      return "one of ".concat(thing, " ").concat(expected[0], " or ").concat(expected[1]);
      -    } else {
      -      return "of ".concat(thing, " ").concat(expected[0]);
      -    }
      -  } else {
      -    return "of ".concat(thing, " ").concat(String(expected));
      -  }
      -} // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith
      -
      -
      -function startsWith(str, search, pos) {
      -  return str.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search;
      -} // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith
      -
      -
      -function endsWith(str, search, this_len) {
      -  if (this_len === undefined || this_len > str.length) {
      -    this_len = str.length;
      -  }
      -
      -  return str.substring(this_len - search.length, this_len) === search;
      -} // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes
      -
      -
      -function includes(str, search, start) {
      -  if (typeof start !== 'number') {
      -    start = 0;
      -  }
      -
      -  if (start + search.length > str.length) {
      -    return false;
      -  } else {
      -    return str.indexOf(search, start) !== -1;
      -  }
      -}
      -
      -createErrorType('ERR_INVALID_OPT_VALUE', function (name, value) {
      -  return 'The value "' + value + '" is invalid for option "' + name + '"';
      -}, TypeError);
      -createErrorType('ERR_INVALID_ARG_TYPE', function (name, expected, actual) {
      -  // determiner: 'must be' or 'must not be'
      -  var determiner;
      -
      -  if (typeof expected === 'string' && startsWith(expected, 'not ')) {
      -    determiner = 'must not be';
      -    expected = expected.replace(/^not /, '');
      -  } else {
      -    determiner = 'must be';
      -  }
      -
      -  var msg;
      -
      -  if (endsWith(name, ' argument')) {
      -    // For cases like 'first argument'
      -    msg = "The ".concat(name, " ").concat(determiner, " ").concat(oneOf(expected, 'type'));
      -  } else {
      -    var type = includes(name, '.') ? 'property' : 'argument';
      -    msg = "The \"".concat(name, "\" ").concat(type, " ").concat(determiner, " ").concat(oneOf(expected, 'type'));
      -  }
      -
      -  msg += ". Received type ".concat(typeof actual);
      -  return msg;
      -}, TypeError);
      -createErrorType('ERR_STREAM_PUSH_AFTER_EOF', 'stream.push() after EOF');
      -createErrorType('ERR_METHOD_NOT_IMPLEMENTED', function (name) {
      -  return 'The ' + name + ' method is not implemented';
      -});
      -createErrorType('ERR_STREAM_PREMATURE_CLOSE', 'Premature close');
      -createErrorType('ERR_STREAM_DESTROYED', function (name) {
      -  return 'Cannot call ' + name + ' after a stream was destroyed';
      -});
      -createErrorType('ERR_MULTIPLE_CALLBACK', 'Callback called multiple times');
      -createErrorType('ERR_STREAM_CANNOT_PIPE', 'Cannot pipe, not readable');
      -createErrorType('ERR_STREAM_WRITE_AFTER_END', 'write after end');
      -createErrorType('ERR_STREAM_NULL_VALUES', 'May not write null values to stream', TypeError);
      -createErrorType('ERR_UNKNOWN_ENCODING', function (arg) {
      -  return 'Unknown encoding: ' + arg;
      -}, TypeError);
      -createErrorType('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event');
      -module.exports.codes = codes;
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/errors.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/errors.js
      deleted file mode 100644
      index 8471526d6e7f75..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/errors.js
      +++ /dev/null
      @@ -1,116 +0,0 @@
      -'use strict';
      -
      -const codes = {};
      -
      -function createErrorType(code, message, Base) {
      -  if (!Base) {
      -    Base = Error
      -  }
      -
      -  function getMessage (arg1, arg2, arg3) {
      -    if (typeof message === 'string') {
      -      return message
      -    } else {
      -      return message(arg1, arg2, arg3)
      -    }
      -  }
      -
      -  class NodeError extends Base {
      -    constructor (arg1, arg2, arg3) {
      -      super(getMessage(arg1, arg2, arg3));
      -    }
      -  }
      -
      -  NodeError.prototype.name = Base.name;
      -  NodeError.prototype.code = code;
      -
      -  codes[code] = NodeError;
      -}
      -
      -// https://github.com/nodejs/node/blob/v10.8.0/lib/internal/errors.js
      -function oneOf(expected, thing) {
      -  if (Array.isArray(expected)) {
      -    const len = expected.length;
      -    expected = expected.map((i) => String(i));
      -    if (len > 2) {
      -      return `one of ${thing} ${expected.slice(0, len - 1).join(', ')}, or ` +
      -             expected[len - 1];
      -    } else if (len === 2) {
      -      return `one of ${thing} ${expected[0]} or ${expected[1]}`;
      -    } else {
      -      return `of ${thing} ${expected[0]}`;
      -    }
      -  } else {
      -    return `of ${thing} ${String(expected)}`;
      -  }
      -}
      -
      -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith
      -function startsWith(str, search, pos) {
      -	return str.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search;
      -}
      -
      -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith
      -function endsWith(str, search, this_len) {
      -	if (this_len === undefined || this_len > str.length) {
      -		this_len = str.length;
      -	}
      -	return str.substring(this_len - search.length, this_len) === search;
      -}
      -
      -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes
      -function includes(str, search, start) {
      -  if (typeof start !== 'number') {
      -    start = 0;
      -  }
      -
      -  if (start + search.length > str.length) {
      -    return false;
      -  } else {
      -    return str.indexOf(search, start) !== -1;
      -  }
      -}
      -
      -createErrorType('ERR_INVALID_OPT_VALUE', function (name, value) {
      -  return 'The value "' + value + '" is invalid for option "' + name + '"'
      -}, TypeError);
      -createErrorType('ERR_INVALID_ARG_TYPE', function (name, expected, actual) {
      -  // determiner: 'must be' or 'must not be'
      -  let determiner;
      -  if (typeof expected === 'string' && startsWith(expected, 'not ')) {
      -    determiner = 'must not be';
      -    expected = expected.replace(/^not /, '');
      -  } else {
      -    determiner = 'must be';
      -  }
      -
      -  let msg;
      -  if (endsWith(name, ' argument')) {
      -    // For cases like 'first argument'
      -    msg = `The ${name} ${determiner} ${oneOf(expected, 'type')}`;
      -  } else {
      -    const type = includes(name, '.') ? 'property' : 'argument';
      -    msg = `The "${name}" ${type} ${determiner} ${oneOf(expected, 'type')}`;
      -  }
      -
      -  msg += `. Received type ${typeof actual}`;
      -  return msg;
      -}, TypeError);
      -createErrorType('ERR_STREAM_PUSH_AFTER_EOF', 'stream.push() after EOF');
      -createErrorType('ERR_METHOD_NOT_IMPLEMENTED', function (name) {
      -  return 'The ' + name + ' method is not implemented'
      -});
      -createErrorType('ERR_STREAM_PREMATURE_CLOSE', 'Premature close');
      -createErrorType('ERR_STREAM_DESTROYED', function (name) {
      -  return 'Cannot call ' + name + ' after a stream was destroyed';
      -});
      -createErrorType('ERR_MULTIPLE_CALLBACK', 'Callback called multiple times');
      -createErrorType('ERR_STREAM_CANNOT_PIPE', 'Cannot pipe, not readable');
      -createErrorType('ERR_STREAM_WRITE_AFTER_END', 'write after end');
      -createErrorType('ERR_STREAM_NULL_VALUES', 'May not write null values to stream', TypeError);
      -createErrorType('ERR_UNKNOWN_ENCODING', function (arg) {
      -  return 'Unknown encoding: ' + arg
      -}, TypeError);
      -createErrorType('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event');
      -
      -module.exports.codes = codes;
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/experimentalWarning.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/experimentalWarning.js
      deleted file mode 100644
      index 78e841495bf24d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/experimentalWarning.js
      +++ /dev/null
      @@ -1,17 +0,0 @@
      -'use strict'
      -
      -var experimentalWarnings = new Set();
      -
      -function emitExperimentalWarning(feature) {
      -  if (experimentalWarnings.has(feature)) return;
      -  var msg = feature + ' is an experimental feature. This feature could ' +
      -       'change at any time';
      -  experimentalWarnings.add(feature);
      -  process.emitWarning(msg, 'ExperimentalWarning');
      -}
      -
      -function noop() {}
      -
      -module.exports.emitExperimentalWarning = process.emitWarning
      -  ? emitExperimentalWarning
      -  : noop;
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_duplex.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_duplex.js
      deleted file mode 100644
      index 19abfa604d5ef7..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_duplex.js
      +++ /dev/null
      @@ -1,126 +0,0 @@
      -// Copyright Joyent, Inc. and other Node contributors.
      -//
      -// Permission is hereby granted, free of charge, to any person obtaining a
      -// copy of this software and associated documentation files (the
      -// "Software"), to deal in the Software without restriction, including
      -// without limitation the rights to use, copy, modify, merge, publish,
      -// distribute, sublicense, and/or sell copies of the Software, and to permit
      -// persons to whom the Software is furnished to do so, subject to the
      -// following conditions:
      -//
      -// The above copyright notice and this permission notice shall be included
      -// in all copies or substantial portions of the Software.
      -//
      -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
      -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
      -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
      -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
      -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
      -// USE OR OTHER DEALINGS IN THE SOFTWARE.
      -
      -// a duplex stream is just a stream that is both readable and writable.
      -// Since JS doesn't have multiple prototypal inheritance, this class
      -// prototypally inherits from Readable, and then parasitically from
      -// Writable.
      -
      -'use strict';
      -
      -/**/
      -var objectKeys = Object.keys || function (obj) {
      -  var keys = [];
      -  for (var key in obj) keys.push(key);
      -  return keys;
      -};
      -/**/
      -
      -module.exports = Duplex;
      -var Readable = require('./_stream_readable');
      -var Writable = require('./_stream_writable');
      -require('inherits')(Duplex, Readable);
      -{
      -  // Allow the keys array to be GC'ed.
      -  var keys = objectKeys(Writable.prototype);
      -  for (var v = 0; v < keys.length; v++) {
      -    var method = keys[v];
      -    if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];
      -  }
      -}
      -function Duplex(options) {
      -  if (!(this instanceof Duplex)) return new Duplex(options);
      -  Readable.call(this, options);
      -  Writable.call(this, options);
      -  this.allowHalfOpen = true;
      -  if (options) {
      -    if (options.readable === false) this.readable = false;
      -    if (options.writable === false) this.writable = false;
      -    if (options.allowHalfOpen === false) {
      -      this.allowHalfOpen = false;
      -      this.once('end', onend);
      -    }
      -  }
      -}
      -Object.defineProperty(Duplex.prototype, 'writableHighWaterMark', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._writableState.highWaterMark;
      -  }
      -});
      -Object.defineProperty(Duplex.prototype, 'writableBuffer', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._writableState && this._writableState.getBuffer();
      -  }
      -});
      -Object.defineProperty(Duplex.prototype, 'writableLength', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._writableState.length;
      -  }
      -});
      -
      -// the no-half-open enforcer
      -function onend() {
      -  // If the writable side ended, then we're ok.
      -  if (this._writableState.ended) return;
      -
      -  // no more data can be written.
      -  // But allow more writes to happen in this tick.
      -  process.nextTick(onEndNT, this);
      -}
      -function onEndNT(self) {
      -  self.end();
      -}
      -Object.defineProperty(Duplex.prototype, 'destroyed', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    if (this._readableState === undefined || this._writableState === undefined) {
      -      return false;
      -    }
      -    return this._readableState.destroyed && this._writableState.destroyed;
      -  },
      -  set: function set(value) {
      -    // we ignore the value if the stream
      -    // has not been initialized yet
      -    if (this._readableState === undefined || this._writableState === undefined) {
      -      return;
      -    }
      -
      -    // backward compatibility, the user is explicitly
      -    // managing destroyed
      -    this._readableState.destroyed = value;
      -    this._writableState.destroyed = value;
      -  }
      -});
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_passthrough.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_passthrough.js
      deleted file mode 100644
      index 24a6bdde2903fa..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_passthrough.js
      +++ /dev/null
      @@ -1,37 +0,0 @@
      -// Copyright Joyent, Inc. and other Node contributors.
      -//
      -// Permission is hereby granted, free of charge, to any person obtaining a
      -// copy of this software and associated documentation files (the
      -// "Software"), to deal in the Software without restriction, including
      -// without limitation the rights to use, copy, modify, merge, publish,
      -// distribute, sublicense, and/or sell copies of the Software, and to permit
      -// persons to whom the Software is furnished to do so, subject to the
      -// following conditions:
      -//
      -// The above copyright notice and this permission notice shall be included
      -// in all copies or substantial portions of the Software.
      -//
      -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
      -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
      -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
      -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
      -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
      -// USE OR OTHER DEALINGS IN THE SOFTWARE.
      -
      -// a passthrough stream.
      -// basically just the most minimal sort of Transform stream.
      -// Every written chunk gets output as-is.
      -
      -'use strict';
      -
      -module.exports = PassThrough;
      -var Transform = require('./_stream_transform');
      -require('inherits')(PassThrough, Transform);
      -function PassThrough(options) {
      -  if (!(this instanceof PassThrough)) return new PassThrough(options);
      -  Transform.call(this, options);
      -}
      -PassThrough.prototype._transform = function (chunk, encoding, cb) {
      -  cb(null, chunk);
      -};
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_readable.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_readable.js
      deleted file mode 100644
      index df1f608d532606..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_readable.js
      +++ /dev/null
      @@ -1,1027 +0,0 @@
      -// Copyright Joyent, Inc. and other Node contributors.
      -//
      -// Permission is hereby granted, free of charge, to any person obtaining a
      -// copy of this software and associated documentation files (the
      -// "Software"), to deal in the Software without restriction, including
      -// without limitation the rights to use, copy, modify, merge, publish,
      -// distribute, sublicense, and/or sell copies of the Software, and to permit
      -// persons to whom the Software is furnished to do so, subject to the
      -// following conditions:
      -//
      -// The above copyright notice and this permission notice shall be included
      -// in all copies or substantial portions of the Software.
      -//
      -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
      -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
      -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
      -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
      -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
      -// USE OR OTHER DEALINGS IN THE SOFTWARE.
      -
      -'use strict';
      -
      -module.exports = Readable;
      -
      -/**/
      -var Duplex;
      -/**/
      -
      -Readable.ReadableState = ReadableState;
      -
      -/**/
      -var EE = require('events').EventEmitter;
      -var EElistenerCount = function EElistenerCount(emitter, type) {
      -  return emitter.listeners(type).length;
      -};
      -/**/
      -
      -/**/
      -var Stream = require('./internal/streams/stream');
      -/**/
      -
      -var Buffer = require('buffer').Buffer;
      -var OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
      -function _uint8ArrayToBuffer(chunk) {
      -  return Buffer.from(chunk);
      -}
      -function _isUint8Array(obj) {
      -  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
      -}
      -
      -/**/
      -var debugUtil = require('util');
      -var debug;
      -if (debugUtil && debugUtil.debuglog) {
      -  debug = debugUtil.debuglog('stream');
      -} else {
      -  debug = function debug() {};
      -}
      -/**/
      -
      -var BufferList = require('./internal/streams/buffer_list');
      -var destroyImpl = require('./internal/streams/destroy');
      -var _require = require('./internal/streams/state'),
      -  getHighWaterMark = _require.getHighWaterMark;
      -var _require$codes = require('../errors').codes,
      -  ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
      -  ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF,
      -  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
      -  ERR_STREAM_UNSHIFT_AFTER_END_EVENT = _require$codes.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;
      -
      -// Lazy loaded to improve the startup performance.
      -var StringDecoder;
      -var createReadableStreamAsyncIterator;
      -var from;
      -require('inherits')(Readable, Stream);
      -var errorOrDestroy = destroyImpl.errorOrDestroy;
      -var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume'];
      -function prependListener(emitter, event, fn) {
      -  // Sadly this is not cacheable as some libraries bundle their own
      -  // event emitter implementation with them.
      -  if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn);
      -
      -  // This is a hack to make sure that our error handler is attached before any
      -  // userland ones.  NEVER DO THIS. This is here only because this code needs
      -  // to continue to work with older versions of Node.js that do not include
      -  // the prependListener() method. The goal is to eventually remove this hack.
      -  if (!emitter._events || !emitter._events[event]) emitter.on(event, fn);else if (Array.isArray(emitter._events[event])) emitter._events[event].unshift(fn);else emitter._events[event] = [fn, emitter._events[event]];
      -}
      -function ReadableState(options, stream, isDuplex) {
      -  Duplex = Duplex || require('./_stream_duplex');
      -  options = options || {};
      -
      -  // Duplex streams are both readable and writable, but share
      -  // the same options object.
      -  // However, some cases require setting options to different
      -  // values for the readable and the writable sides of the duplex stream.
      -  // These options can be provided separately as readableXXX and writableXXX.
      -  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex;
      -
      -  // object stream flag. Used to make read(n) ignore n and to
      -  // make all the buffer merging and length checks go away
      -  this.objectMode = !!options.objectMode;
      -  if (isDuplex) this.objectMode = this.objectMode || !!options.readableObjectMode;
      -
      -  // the point at which it stops calling _read() to fill the buffer
      -  // Note: 0 is a valid value, means "don't call _read preemptively ever"
      -  this.highWaterMark = getHighWaterMark(this, options, 'readableHighWaterMark', isDuplex);
      -
      -  // A linked list is used to store data chunks instead of an array because the
      -  // linked list can remove elements from the beginning faster than
      -  // array.shift()
      -  this.buffer = new BufferList();
      -  this.length = 0;
      -  this.pipes = null;
      -  this.pipesCount = 0;
      -  this.flowing = null;
      -  this.ended = false;
      -  this.endEmitted = false;
      -  this.reading = false;
      -
      -  // a flag to be able to tell if the event 'readable'/'data' is emitted
      -  // immediately, or on a later tick.  We set this to true at first, because
      -  // any actions that shouldn't happen until "later" should generally also
      -  // not happen before the first read call.
      -  this.sync = true;
      -
      -  // whenever we return null, then we set a flag to say
      -  // that we're awaiting a 'readable' event emission.
      -  this.needReadable = false;
      -  this.emittedReadable = false;
      -  this.readableListening = false;
      -  this.resumeScheduled = false;
      -  this.paused = true;
      -
      -  // Should close be emitted on destroy. Defaults to true.
      -  this.emitClose = options.emitClose !== false;
      -
      -  // Should .destroy() be called after 'end' (and potentially 'finish')
      -  this.autoDestroy = !!options.autoDestroy;
      -
      -  // has it been destroyed
      -  this.destroyed = false;
      -
      -  // Crypto is kind of old and crusty.  Historically, its default string
      -  // encoding is 'binary' so we have to make this configurable.
      -  // Everything else in the universe uses 'utf8', though.
      -  this.defaultEncoding = options.defaultEncoding || 'utf8';
      -
      -  // the number of writers that are awaiting a drain event in .pipe()s
      -  this.awaitDrain = 0;
      -
      -  // if true, a maybeReadMore has been scheduled
      -  this.readingMore = false;
      -  this.decoder = null;
      -  this.encoding = null;
      -  if (options.encoding) {
      -    if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;
      -    this.decoder = new StringDecoder(options.encoding);
      -    this.encoding = options.encoding;
      -  }
      -}
      -function Readable(options) {
      -  Duplex = Duplex || require('./_stream_duplex');
      -  if (!(this instanceof Readable)) return new Readable(options);
      -
      -  // Checking for a Stream.Duplex instance is faster here instead of inside
      -  // the ReadableState constructor, at least with V8 6.5
      -  var isDuplex = this instanceof Duplex;
      -  this._readableState = new ReadableState(options, this, isDuplex);
      -
      -  // legacy
      -  this.readable = true;
      -  if (options) {
      -    if (typeof options.read === 'function') this._read = options.read;
      -    if (typeof options.destroy === 'function') this._destroy = options.destroy;
      -  }
      -  Stream.call(this);
      -}
      -Object.defineProperty(Readable.prototype, 'destroyed', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    if (this._readableState === undefined) {
      -      return false;
      -    }
      -    return this._readableState.destroyed;
      -  },
      -  set: function set(value) {
      -    // we ignore the value if the stream
      -    // has not been initialized yet
      -    if (!this._readableState) {
      -      return;
      -    }
      -
      -    // backward compatibility, the user is explicitly
      -    // managing destroyed
      -    this._readableState.destroyed = value;
      -  }
      -});
      -Readable.prototype.destroy = destroyImpl.destroy;
      -Readable.prototype._undestroy = destroyImpl.undestroy;
      -Readable.prototype._destroy = function (err, cb) {
      -  cb(err);
      -};
      -
      -// Manually shove something into the read() buffer.
      -// This returns true if the highWaterMark has not been hit yet,
      -// similar to how Writable.write() returns true if you should
      -// write() some more.
      -Readable.prototype.push = function (chunk, encoding) {
      -  var state = this._readableState;
      -  var skipChunkCheck;
      -  if (!state.objectMode) {
      -    if (typeof chunk === 'string') {
      -      encoding = encoding || state.defaultEncoding;
      -      if (encoding !== state.encoding) {
      -        chunk = Buffer.from(chunk, encoding);
      -        encoding = '';
      -      }
      -      skipChunkCheck = true;
      -    }
      -  } else {
      -    skipChunkCheck = true;
      -  }
      -  return readableAddChunk(this, chunk, encoding, false, skipChunkCheck);
      -};
      -
      -// Unshift should *always* be something directly out of read()
      -Readable.prototype.unshift = function (chunk) {
      -  return readableAddChunk(this, chunk, null, true, false);
      -};
      -function readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) {
      -  debug('readableAddChunk', chunk);
      -  var state = stream._readableState;
      -  if (chunk === null) {
      -    state.reading = false;
      -    onEofChunk(stream, state);
      -  } else {
      -    var er;
      -    if (!skipChunkCheck) er = chunkInvalid(state, chunk);
      -    if (er) {
      -      errorOrDestroy(stream, er);
      -    } else if (state.objectMode || chunk && chunk.length > 0) {
      -      if (typeof chunk !== 'string' && !state.objectMode && Object.getPrototypeOf(chunk) !== Buffer.prototype) {
      -        chunk = _uint8ArrayToBuffer(chunk);
      -      }
      -      if (addToFront) {
      -        if (state.endEmitted) errorOrDestroy(stream, new ERR_STREAM_UNSHIFT_AFTER_END_EVENT());else addChunk(stream, state, chunk, true);
      -      } else if (state.ended) {
      -        errorOrDestroy(stream, new ERR_STREAM_PUSH_AFTER_EOF());
      -      } else if (state.destroyed) {
      -        return false;
      -      } else {
      -        state.reading = false;
      -        if (state.decoder && !encoding) {
      -          chunk = state.decoder.write(chunk);
      -          if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false);else maybeReadMore(stream, state);
      -        } else {
      -          addChunk(stream, state, chunk, false);
      -        }
      -      }
      -    } else if (!addToFront) {
      -      state.reading = false;
      -      maybeReadMore(stream, state);
      -    }
      -  }
      -
      -  // We can push more data if we are below the highWaterMark.
      -  // Also, if we have no data yet, we can stand some more bytes.
      -  // This is to work around cases where hwm=0, such as the repl.
      -  return !state.ended && (state.length < state.highWaterMark || state.length === 0);
      -}
      -function addChunk(stream, state, chunk, addToFront) {
      -  if (state.flowing && state.length === 0 && !state.sync) {
      -    state.awaitDrain = 0;
      -    stream.emit('data', chunk);
      -  } else {
      -    // update the buffer info.
      -    state.length += state.objectMode ? 1 : chunk.length;
      -    if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk);
      -    if (state.needReadable) emitReadable(stream);
      -  }
      -  maybeReadMore(stream, state);
      -}
      -function chunkInvalid(state, chunk) {
      -  var er;
      -  if (!_isUint8Array(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) {
      -    er = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer', 'Uint8Array'], chunk);
      -  }
      -  return er;
      -}
      -Readable.prototype.isPaused = function () {
      -  return this._readableState.flowing === false;
      -};
      -
      -// backwards compatibility.
      -Readable.prototype.setEncoding = function (enc) {
      -  if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;
      -  var decoder = new StringDecoder(enc);
      -  this._readableState.decoder = decoder;
      -  // If setEncoding(null), decoder.encoding equals utf8
      -  this._readableState.encoding = this._readableState.decoder.encoding;
      -
      -  // Iterate over current buffer to convert already stored Buffers:
      -  var p = this._readableState.buffer.head;
      -  var content = '';
      -  while (p !== null) {
      -    content += decoder.write(p.data);
      -    p = p.next;
      -  }
      -  this._readableState.buffer.clear();
      -  if (content !== '') this._readableState.buffer.push(content);
      -  this._readableState.length = content.length;
      -  return this;
      -};
      -
      -// Don't raise the hwm > 1GB
      -var MAX_HWM = 0x40000000;
      -function computeNewHighWaterMark(n) {
      -  if (n >= MAX_HWM) {
      -    // TODO(ronag): Throw ERR_VALUE_OUT_OF_RANGE.
      -    n = MAX_HWM;
      -  } else {
      -    // Get the next highest power of 2 to prevent increasing hwm excessively in
      -    // tiny amounts
      -    n--;
      -    n |= n >>> 1;
      -    n |= n >>> 2;
      -    n |= n >>> 4;
      -    n |= n >>> 8;
      -    n |= n >>> 16;
      -    n++;
      -  }
      -  return n;
      -}
      -
      -// This function is designed to be inlinable, so please take care when making
      -// changes to the function body.
      -function howMuchToRead(n, state) {
      -  if (n <= 0 || state.length === 0 && state.ended) return 0;
      -  if (state.objectMode) return 1;
      -  if (n !== n) {
      -    // Only flow one buffer at a time
      -    if (state.flowing && state.length) return state.buffer.head.data.length;else return state.length;
      -  }
      -  // If we're asking for more than the current hwm, then raise the hwm.
      -  if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n);
      -  if (n <= state.length) return n;
      -  // Don't have enough
      -  if (!state.ended) {
      -    state.needReadable = true;
      -    return 0;
      -  }
      -  return state.length;
      -}
      -
      -// you can override either this method, or the async _read(n) below.
      -Readable.prototype.read = function (n) {
      -  debug('read', n);
      -  n = parseInt(n, 10);
      -  var state = this._readableState;
      -  var nOrig = n;
      -  if (n !== 0) state.emittedReadable = false;
      -
      -  // if we're doing read(0) to trigger a readable event, but we
      -  // already have a bunch of data in the buffer, then just trigger
      -  // the 'readable' event and move on.
      -  if (n === 0 && state.needReadable && ((state.highWaterMark !== 0 ? state.length >= state.highWaterMark : state.length > 0) || state.ended)) {
      -    debug('read: emitReadable', state.length, state.ended);
      -    if (state.length === 0 && state.ended) endReadable(this);else emitReadable(this);
      -    return null;
      -  }
      -  n = howMuchToRead(n, state);
      -
      -  // if we've ended, and we're now clear, then finish it up.
      -  if (n === 0 && state.ended) {
      -    if (state.length === 0) endReadable(this);
      -    return null;
      -  }
      -
      -  // All the actual chunk generation logic needs to be
      -  // *below* the call to _read.  The reason is that in certain
      -  // synthetic stream cases, such as passthrough streams, _read
      -  // may be a completely synchronous operation which may change
      -  // the state of the read buffer, providing enough data when
      -  // before there was *not* enough.
      -  //
      -  // So, the steps are:
      -  // 1. Figure out what the state of things will be after we do
      -  // a read from the buffer.
      -  //
      -  // 2. If that resulting state will trigger a _read, then call _read.
      -  // Note that this may be asynchronous, or synchronous.  Yes, it is
      -  // deeply ugly to write APIs this way, but that still doesn't mean
      -  // that the Readable class should behave improperly, as streams are
      -  // designed to be sync/async agnostic.
      -  // Take note if the _read call is sync or async (ie, if the read call
      -  // has returned yet), so that we know whether or not it's safe to emit
      -  // 'readable' etc.
      -  //
      -  // 3. Actually pull the requested chunks out of the buffer and return.
      -
      -  // if we need a readable event, then we need to do some reading.
      -  var doRead = state.needReadable;
      -  debug('need readable', doRead);
      -
      -  // if we currently have less than the highWaterMark, then also read some
      -  if (state.length === 0 || state.length - n < state.highWaterMark) {
      -    doRead = true;
      -    debug('length less than watermark', doRead);
      -  }
      -
      -  // however, if we've ended, then there's no point, and if we're already
      -  // reading, then it's unnecessary.
      -  if (state.ended || state.reading) {
      -    doRead = false;
      -    debug('reading or ended', doRead);
      -  } else if (doRead) {
      -    debug('do read');
      -    state.reading = true;
      -    state.sync = true;
      -    // if the length is currently zero, then we *need* a readable event.
      -    if (state.length === 0) state.needReadable = true;
      -    // call internal read method
      -    this._read(state.highWaterMark);
      -    state.sync = false;
      -    // If _read pushed data synchronously, then `reading` will be false,
      -    // and we need to re-evaluate how much data we can return to the user.
      -    if (!state.reading) n = howMuchToRead(nOrig, state);
      -  }
      -  var ret;
      -  if (n > 0) ret = fromList(n, state);else ret = null;
      -  if (ret === null) {
      -    state.needReadable = state.length <= state.highWaterMark;
      -    n = 0;
      -  } else {
      -    state.length -= n;
      -    state.awaitDrain = 0;
      -  }
      -  if (state.length === 0) {
      -    // If we have nothing in the buffer, then we want to know
      -    // as soon as we *do* get something into the buffer.
      -    if (!state.ended) state.needReadable = true;
      -
      -    // If we tried to read() past the EOF, then emit end on the next tick.
      -    if (nOrig !== n && state.ended) endReadable(this);
      -  }
      -  if (ret !== null) this.emit('data', ret);
      -  return ret;
      -};
      -function onEofChunk(stream, state) {
      -  debug('onEofChunk');
      -  if (state.ended) return;
      -  if (state.decoder) {
      -    var chunk = state.decoder.end();
      -    if (chunk && chunk.length) {
      -      state.buffer.push(chunk);
      -      state.length += state.objectMode ? 1 : chunk.length;
      -    }
      -  }
      -  state.ended = true;
      -  if (state.sync) {
      -    // if we are sync, wait until next tick to emit the data.
      -    // Otherwise we risk emitting data in the flow()
      -    // the readable code triggers during a read() call
      -    emitReadable(stream);
      -  } else {
      -    // emit 'readable' now to make sure it gets picked up.
      -    state.needReadable = false;
      -    if (!state.emittedReadable) {
      -      state.emittedReadable = true;
      -      emitReadable_(stream);
      -    }
      -  }
      -}
      -
      -// Don't emit readable right away in sync mode, because this can trigger
      -// another read() call => stack overflow.  This way, it might trigger
      -// a nextTick recursion warning, but that's not so bad.
      -function emitReadable(stream) {
      -  var state = stream._readableState;
      -  debug('emitReadable', state.needReadable, state.emittedReadable);
      -  state.needReadable = false;
      -  if (!state.emittedReadable) {
      -    debug('emitReadable', state.flowing);
      -    state.emittedReadable = true;
      -    process.nextTick(emitReadable_, stream);
      -  }
      -}
      -function emitReadable_(stream) {
      -  var state = stream._readableState;
      -  debug('emitReadable_', state.destroyed, state.length, state.ended);
      -  if (!state.destroyed && (state.length || state.ended)) {
      -    stream.emit('readable');
      -    state.emittedReadable = false;
      -  }
      -
      -  // The stream needs another readable event if
      -  // 1. It is not flowing, as the flow mechanism will take
      -  //    care of it.
      -  // 2. It is not ended.
      -  // 3. It is below the highWaterMark, so we can schedule
      -  //    another readable later.
      -  state.needReadable = !state.flowing && !state.ended && state.length <= state.highWaterMark;
      -  flow(stream);
      -}
      -
      -// at this point, the user has presumably seen the 'readable' event,
      -// and called read() to consume some data.  that may have triggered
      -// in turn another _read(n) call, in which case reading = true if
      -// it's in progress.
      -// However, if we're not ended, or reading, and the length < hwm,
      -// then go ahead and try to read some more preemptively.
      -function maybeReadMore(stream, state) {
      -  if (!state.readingMore) {
      -    state.readingMore = true;
      -    process.nextTick(maybeReadMore_, stream, state);
      -  }
      -}
      -function maybeReadMore_(stream, state) {
      -  // Attempt to read more data if we should.
      -  //
      -  // The conditions for reading more data are (one of):
      -  // - Not enough data buffered (state.length < state.highWaterMark). The loop
      -  //   is responsible for filling the buffer with enough data if such data
      -  //   is available. If highWaterMark is 0 and we are not in the flowing mode
      -  //   we should _not_ attempt to buffer any extra data. We'll get more data
      -  //   when the stream consumer calls read() instead.
      -  // - No data in the buffer, and the stream is in flowing mode. In this mode
      -  //   the loop below is responsible for ensuring read() is called. Failing to
      -  //   call read here would abort the flow and there's no other mechanism for
      -  //   continuing the flow if the stream consumer has just subscribed to the
      -  //   'data' event.
      -  //
      -  // In addition to the above conditions to keep reading data, the following
      -  // conditions prevent the data from being read:
      -  // - The stream has ended (state.ended).
      -  // - There is already a pending 'read' operation (state.reading). This is a
      -  //   case where the the stream has called the implementation defined _read()
      -  //   method, but they are processing the call asynchronously and have _not_
      -  //   called push() with new data. In this case we skip performing more
      -  //   read()s. The execution ends in this method again after the _read() ends
      -  //   up calling push() with more data.
      -  while (!state.reading && !state.ended && (state.length < state.highWaterMark || state.flowing && state.length === 0)) {
      -    var len = state.length;
      -    debug('maybeReadMore read 0');
      -    stream.read(0);
      -    if (len === state.length)
      -      // didn't get any data, stop spinning.
      -      break;
      -  }
      -  state.readingMore = false;
      -}
      -
      -// abstract method.  to be overridden in specific implementation classes.
      -// call cb(er, data) where data is <= n in length.
      -// for virtual (non-string, non-buffer) streams, "length" is somewhat
      -// arbitrary, and perhaps not very meaningful.
      -Readable.prototype._read = function (n) {
      -  errorOrDestroy(this, new ERR_METHOD_NOT_IMPLEMENTED('_read()'));
      -};
      -Readable.prototype.pipe = function (dest, pipeOpts) {
      -  var src = this;
      -  var state = this._readableState;
      -  switch (state.pipesCount) {
      -    case 0:
      -      state.pipes = dest;
      -      break;
      -    case 1:
      -      state.pipes = [state.pipes, dest];
      -      break;
      -    default:
      -      state.pipes.push(dest);
      -      break;
      -  }
      -  state.pipesCount += 1;
      -  debug('pipe count=%d opts=%j', state.pipesCount, pipeOpts);
      -  var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr;
      -  var endFn = doEnd ? onend : unpipe;
      -  if (state.endEmitted) process.nextTick(endFn);else src.once('end', endFn);
      -  dest.on('unpipe', onunpipe);
      -  function onunpipe(readable, unpipeInfo) {
      -    debug('onunpipe');
      -    if (readable === src) {
      -      if (unpipeInfo && unpipeInfo.hasUnpiped === false) {
      -        unpipeInfo.hasUnpiped = true;
      -        cleanup();
      -      }
      -    }
      -  }
      -  function onend() {
      -    debug('onend');
      -    dest.end();
      -  }
      -
      -  // when the dest drains, it reduces the awaitDrain counter
      -  // on the source.  This would be more elegant with a .once()
      -  // handler in flow(), but adding and removing repeatedly is
      -  // too slow.
      -  var ondrain = pipeOnDrain(src);
      -  dest.on('drain', ondrain);
      -  var cleanedUp = false;
      -  function cleanup() {
      -    debug('cleanup');
      -    // cleanup event handlers once the pipe is broken
      -    dest.removeListener('close', onclose);
      -    dest.removeListener('finish', onfinish);
      -    dest.removeListener('drain', ondrain);
      -    dest.removeListener('error', onerror);
      -    dest.removeListener('unpipe', onunpipe);
      -    src.removeListener('end', onend);
      -    src.removeListener('end', unpipe);
      -    src.removeListener('data', ondata);
      -    cleanedUp = true;
      -
      -    // if the reader is waiting for a drain event from this
      -    // specific writer, then it would cause it to never start
      -    // flowing again.
      -    // So, if this is awaiting a drain, then we just call it now.
      -    // If we don't know, then assume that we are waiting for one.
      -    if (state.awaitDrain && (!dest._writableState || dest._writableState.needDrain)) ondrain();
      -  }
      -  src.on('data', ondata);
      -  function ondata(chunk) {
      -    debug('ondata');
      -    var ret = dest.write(chunk);
      -    debug('dest.write', ret);
      -    if (ret === false) {
      -      // If the user unpiped during `dest.write()`, it is possible
      -      // to get stuck in a permanently paused state if that write
      -      // also returned false.
      -      // => Check whether `dest` is still a piping destination.
      -      if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) {
      -        debug('false write response, pause', state.awaitDrain);
      -        state.awaitDrain++;
      -      }
      -      src.pause();
      -    }
      -  }
      -
      -  // if the dest has an error, then stop piping into it.
      -  // however, don't suppress the throwing behavior for this.
      -  function onerror(er) {
      -    debug('onerror', er);
      -    unpipe();
      -    dest.removeListener('error', onerror);
      -    if (EElistenerCount(dest, 'error') === 0) errorOrDestroy(dest, er);
      -  }
      -
      -  // Make sure our error handler is attached before userland ones.
      -  prependListener(dest, 'error', onerror);
      -
      -  // Both close and finish should trigger unpipe, but only once.
      -  function onclose() {
      -    dest.removeListener('finish', onfinish);
      -    unpipe();
      -  }
      -  dest.once('close', onclose);
      -  function onfinish() {
      -    debug('onfinish');
      -    dest.removeListener('close', onclose);
      -    unpipe();
      -  }
      -  dest.once('finish', onfinish);
      -  function unpipe() {
      -    debug('unpipe');
      -    src.unpipe(dest);
      -  }
      -
      -  // tell the dest that it's being piped to
      -  dest.emit('pipe', src);
      -
      -  // start the flow if it hasn't been started already.
      -  if (!state.flowing) {
      -    debug('pipe resume');
      -    src.resume();
      -  }
      -  return dest;
      -};
      -function pipeOnDrain(src) {
      -  return function pipeOnDrainFunctionResult() {
      -    var state = src._readableState;
      -    debug('pipeOnDrain', state.awaitDrain);
      -    if (state.awaitDrain) state.awaitDrain--;
      -    if (state.awaitDrain === 0 && EElistenerCount(src, 'data')) {
      -      state.flowing = true;
      -      flow(src);
      -    }
      -  };
      -}
      -Readable.prototype.unpipe = function (dest) {
      -  var state = this._readableState;
      -  var unpipeInfo = {
      -    hasUnpiped: false
      -  };
      -
      -  // if we're not piping anywhere, then do nothing.
      -  if (state.pipesCount === 0) return this;
      -
      -  // just one destination.  most common case.
      -  if (state.pipesCount === 1) {
      -    // passed in one, but it's not the right one.
      -    if (dest && dest !== state.pipes) return this;
      -    if (!dest) dest = state.pipes;
      -
      -    // got a match.
      -    state.pipes = null;
      -    state.pipesCount = 0;
      -    state.flowing = false;
      -    if (dest) dest.emit('unpipe', this, unpipeInfo);
      -    return this;
      -  }
      -
      -  // slow case. multiple pipe destinations.
      -
      -  if (!dest) {
      -    // remove all.
      -    var dests = state.pipes;
      -    var len = state.pipesCount;
      -    state.pipes = null;
      -    state.pipesCount = 0;
      -    state.flowing = false;
      -    for (var i = 0; i < len; i++) dests[i].emit('unpipe', this, {
      -      hasUnpiped: false
      -    });
      -    return this;
      -  }
      -
      -  // try to find the right one.
      -  var index = indexOf(state.pipes, dest);
      -  if (index === -1) return this;
      -  state.pipes.splice(index, 1);
      -  state.pipesCount -= 1;
      -  if (state.pipesCount === 1) state.pipes = state.pipes[0];
      -  dest.emit('unpipe', this, unpipeInfo);
      -  return this;
      -};
      -
      -// set up data events if they are asked for
      -// Ensure readable listeners eventually get something
      -Readable.prototype.on = function (ev, fn) {
      -  var res = Stream.prototype.on.call(this, ev, fn);
      -  var state = this._readableState;
      -  if (ev === 'data') {
      -    // update readableListening so that resume() may be a no-op
      -    // a few lines down. This is needed to support once('readable').
      -    state.readableListening = this.listenerCount('readable') > 0;
      -
      -    // Try start flowing on next tick if stream isn't explicitly paused
      -    if (state.flowing !== false) this.resume();
      -  } else if (ev === 'readable') {
      -    if (!state.endEmitted && !state.readableListening) {
      -      state.readableListening = state.needReadable = true;
      -      state.flowing = false;
      -      state.emittedReadable = false;
      -      debug('on readable', state.length, state.reading);
      -      if (state.length) {
      -        emitReadable(this);
      -      } else if (!state.reading) {
      -        process.nextTick(nReadingNextTick, this);
      -      }
      -    }
      -  }
      -  return res;
      -};
      -Readable.prototype.addListener = Readable.prototype.on;
      -Readable.prototype.removeListener = function (ev, fn) {
      -  var res = Stream.prototype.removeListener.call(this, ev, fn);
      -  if (ev === 'readable') {
      -    // We need to check if there is someone still listening to
      -    // readable and reset the state. However this needs to happen
      -    // after readable has been emitted but before I/O (nextTick) to
      -    // support once('readable', fn) cycles. This means that calling
      -    // resume within the same tick will have no
      -    // effect.
      -    process.nextTick(updateReadableListening, this);
      -  }
      -  return res;
      -};
      -Readable.prototype.removeAllListeners = function (ev) {
      -  var res = Stream.prototype.removeAllListeners.apply(this, arguments);
      -  if (ev === 'readable' || ev === undefined) {
      -    // We need to check if there is someone still listening to
      -    // readable and reset the state. However this needs to happen
      -    // after readable has been emitted but before I/O (nextTick) to
      -    // support once('readable', fn) cycles. This means that calling
      -    // resume within the same tick will have no
      -    // effect.
      -    process.nextTick(updateReadableListening, this);
      -  }
      -  return res;
      -};
      -function updateReadableListening(self) {
      -  var state = self._readableState;
      -  state.readableListening = self.listenerCount('readable') > 0;
      -  if (state.resumeScheduled && !state.paused) {
      -    // flowing needs to be set to true now, otherwise
      -    // the upcoming resume will not flow.
      -    state.flowing = true;
      -
      -    // crude way to check if we should resume
      -  } else if (self.listenerCount('data') > 0) {
      -    self.resume();
      -  }
      -}
      -function nReadingNextTick(self) {
      -  debug('readable nexttick read 0');
      -  self.read(0);
      -}
      -
      -// pause() and resume() are remnants of the legacy readable stream API
      -// If the user uses them, then switch into old mode.
      -Readable.prototype.resume = function () {
      -  var state = this._readableState;
      -  if (!state.flowing) {
      -    debug('resume');
      -    // we flow only if there is no one listening
      -    // for readable, but we still have to call
      -    // resume()
      -    state.flowing = !state.readableListening;
      -    resume(this, state);
      -  }
      -  state.paused = false;
      -  return this;
      -};
      -function resume(stream, state) {
      -  if (!state.resumeScheduled) {
      -    state.resumeScheduled = true;
      -    process.nextTick(resume_, stream, state);
      -  }
      -}
      -function resume_(stream, state) {
      -  debug('resume', state.reading);
      -  if (!state.reading) {
      -    stream.read(0);
      -  }
      -  state.resumeScheduled = false;
      -  stream.emit('resume');
      -  flow(stream);
      -  if (state.flowing && !state.reading) stream.read(0);
      -}
      -Readable.prototype.pause = function () {
      -  debug('call pause flowing=%j', this._readableState.flowing);
      -  if (this._readableState.flowing !== false) {
      -    debug('pause');
      -    this._readableState.flowing = false;
      -    this.emit('pause');
      -  }
      -  this._readableState.paused = true;
      -  return this;
      -};
      -function flow(stream) {
      -  var state = stream._readableState;
      -  debug('flow', state.flowing);
      -  while (state.flowing && stream.read() !== null);
      -}
      -
      -// wrap an old-style stream as the async data source.
      -// This is *not* part of the readable stream interface.
      -// It is an ugly unfortunate mess of history.
      -Readable.prototype.wrap = function (stream) {
      -  var _this = this;
      -  var state = this._readableState;
      -  var paused = false;
      -  stream.on('end', function () {
      -    debug('wrapped end');
      -    if (state.decoder && !state.ended) {
      -      var chunk = state.decoder.end();
      -      if (chunk && chunk.length) _this.push(chunk);
      -    }
      -    _this.push(null);
      -  });
      -  stream.on('data', function (chunk) {
      -    debug('wrapped data');
      -    if (state.decoder) chunk = state.decoder.write(chunk);
      -
      -    // don't skip over falsy values in objectMode
      -    if (state.objectMode && (chunk === null || chunk === undefined)) return;else if (!state.objectMode && (!chunk || !chunk.length)) return;
      -    var ret = _this.push(chunk);
      -    if (!ret) {
      -      paused = true;
      -      stream.pause();
      -    }
      -  });
      -
      -  // proxy all the other methods.
      -  // important when wrapping filters and duplexes.
      -  for (var i in stream) {
      -    if (this[i] === undefined && typeof stream[i] === 'function') {
      -      this[i] = function methodWrap(method) {
      -        return function methodWrapReturnFunction() {
      -          return stream[method].apply(stream, arguments);
      -        };
      -      }(i);
      -    }
      -  }
      -
      -  // proxy certain important events.
      -  for (var n = 0; n < kProxyEvents.length; n++) {
      -    stream.on(kProxyEvents[n], this.emit.bind(this, kProxyEvents[n]));
      -  }
      -
      -  // when we try to consume some more bytes, simply unpause the
      -  // underlying stream.
      -  this._read = function (n) {
      -    debug('wrapped _read', n);
      -    if (paused) {
      -      paused = false;
      -      stream.resume();
      -    }
      -  };
      -  return this;
      -};
      -if (typeof Symbol === 'function') {
      -  Readable.prototype[Symbol.asyncIterator] = function () {
      -    if (createReadableStreamAsyncIterator === undefined) {
      -      createReadableStreamAsyncIterator = require('./internal/streams/async_iterator');
      -    }
      -    return createReadableStreamAsyncIterator(this);
      -  };
      -}
      -Object.defineProperty(Readable.prototype, 'readableHighWaterMark', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._readableState.highWaterMark;
      -  }
      -});
      -Object.defineProperty(Readable.prototype, 'readableBuffer', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._readableState && this._readableState.buffer;
      -  }
      -});
      -Object.defineProperty(Readable.prototype, 'readableFlowing', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._readableState.flowing;
      -  },
      -  set: function set(state) {
      -    if (this._readableState) {
      -      this._readableState.flowing = state;
      -    }
      -  }
      -});
      -
      -// exposed for testing purposes only.
      -Readable._fromList = fromList;
      -Object.defineProperty(Readable.prototype, 'readableLength', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._readableState.length;
      -  }
      -});
      -
      -// Pluck off n bytes from an array of buffers.
      -// Length is the combined lengths of all the buffers in the list.
      -// This function is designed to be inlinable, so please take care when making
      -// changes to the function body.
      -function fromList(n, state) {
      -  // nothing buffered
      -  if (state.length === 0) return null;
      -  var ret;
      -  if (state.objectMode) ret = state.buffer.shift();else if (!n || n >= state.length) {
      -    // read it all, truncate the list
      -    if (state.decoder) ret = state.buffer.join('');else if (state.buffer.length === 1) ret = state.buffer.first();else ret = state.buffer.concat(state.length);
      -    state.buffer.clear();
      -  } else {
      -    // read part of list
      -    ret = state.buffer.consume(n, state.decoder);
      -  }
      -  return ret;
      -}
      -function endReadable(stream) {
      -  var state = stream._readableState;
      -  debug('endReadable', state.endEmitted);
      -  if (!state.endEmitted) {
      -    state.ended = true;
      -    process.nextTick(endReadableNT, state, stream);
      -  }
      -}
      -function endReadableNT(state, stream) {
      -  debug('endReadableNT', state.endEmitted, state.length);
      -
      -  // Check that we didn't get one last unshift.
      -  if (!state.endEmitted && state.length === 0) {
      -    state.endEmitted = true;
      -    stream.readable = false;
      -    stream.emit('end');
      -    if (state.autoDestroy) {
      -      // In case of duplex streams we need a way to detect
      -      // if the writable side is ready for autoDestroy as well
      -      var wState = stream._writableState;
      -      if (!wState || wState.autoDestroy && wState.finished) {
      -        stream.destroy();
      -      }
      -    }
      -  }
      -}
      -if (typeof Symbol === 'function') {
      -  Readable.from = function (iterable, opts) {
      -    if (from === undefined) {
      -      from = require('./internal/streams/from');
      -    }
      -    return from(Readable, iterable, opts);
      -  };
      -}
      -function indexOf(xs, x) {
      -  for (var i = 0, l = xs.length; i < l; i++) {
      -    if (xs[i] === x) return i;
      -  }
      -  return -1;
      -}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_transform.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_transform.js
      deleted file mode 100644
      index 1ccb7157be8b8c..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_transform.js
      +++ /dev/null
      @@ -1,190 +0,0 @@
      -// Copyright Joyent, Inc. and other Node contributors.
      -//
      -// Permission is hereby granted, free of charge, to any person obtaining a
      -// copy of this software and associated documentation files (the
      -// "Software"), to deal in the Software without restriction, including
      -// without limitation the rights to use, copy, modify, merge, publish,
      -// distribute, sublicense, and/or sell copies of the Software, and to permit
      -// persons to whom the Software is furnished to do so, subject to the
      -// following conditions:
      -//
      -// The above copyright notice and this permission notice shall be included
      -// in all copies or substantial portions of the Software.
      -//
      -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
      -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
      -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
      -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
      -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
      -// USE OR OTHER DEALINGS IN THE SOFTWARE.
      -
      -// a transform stream is a readable/writable stream where you do
      -// something with the data.  Sometimes it's called a "filter",
      -// but that's not a great name for it, since that implies a thing where
      -// some bits pass through, and others are simply ignored.  (That would
      -// be a valid example of a transform, of course.)
      -//
      -// While the output is causally related to the input, it's not a
      -// necessarily symmetric or synchronous transformation.  For example,
      -// a zlib stream might take multiple plain-text writes(), and then
      -// emit a single compressed chunk some time in the future.
      -//
      -// Here's how this works:
      -//
      -// The Transform stream has all the aspects of the readable and writable
      -// stream classes.  When you write(chunk), that calls _write(chunk,cb)
      -// internally, and returns false if there's a lot of pending writes
      -// buffered up.  When you call read(), that calls _read(n) until
      -// there's enough pending readable data buffered up.
      -//
      -// In a transform stream, the written data is placed in a buffer.  When
      -// _read(n) is called, it transforms the queued up data, calling the
      -// buffered _write cb's as it consumes chunks.  If consuming a single
      -// written chunk would result in multiple output chunks, then the first
      -// outputted bit calls the readcb, and subsequent chunks just go into
      -// the read buffer, and will cause it to emit 'readable' if necessary.
      -//
      -// This way, back-pressure is actually determined by the reading side,
      -// since _read has to be called to start processing a new chunk.  However,
      -// a pathological inflate type of transform can cause excessive buffering
      -// here.  For example, imagine a stream where every byte of input is
      -// interpreted as an integer from 0-255, and then results in that many
      -// bytes of output.  Writing the 4 bytes {ff,ff,ff,ff} would result in
      -// 1kb of data being output.  In this case, you could write a very small
      -// amount of input, and end up with a very large amount of output.  In
      -// such a pathological inflating mechanism, there'd be no way to tell
      -// the system to stop doing the transform.  A single 4MB write could
      -// cause the system to run out of memory.
      -//
      -// However, even in such a pathological case, only a single written chunk
      -// would be consumed, and then the rest would wait (un-transformed) until
      -// the results of the previous transformed chunk were consumed.
      -
      -'use strict';
      -
      -module.exports = Transform;
      -var _require$codes = require('../errors').codes,
      -  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
      -  ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
      -  ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING,
      -  ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0;
      -var Duplex = require('./_stream_duplex');
      -require('inherits')(Transform, Duplex);
      -function afterTransform(er, data) {
      -  var ts = this._transformState;
      -  ts.transforming = false;
      -  var cb = ts.writecb;
      -  if (cb === null) {
      -    return this.emit('error', new ERR_MULTIPLE_CALLBACK());
      -  }
      -  ts.writechunk = null;
      -  ts.writecb = null;
      -  if (data != null)
      -    // single equals check for both `null` and `undefined`
      -    this.push(data);
      -  cb(er);
      -  var rs = this._readableState;
      -  rs.reading = false;
      -  if (rs.needReadable || rs.length < rs.highWaterMark) {
      -    this._read(rs.highWaterMark);
      -  }
      -}
      -function Transform(options) {
      -  if (!(this instanceof Transform)) return new Transform(options);
      -  Duplex.call(this, options);
      -  this._transformState = {
      -    afterTransform: afterTransform.bind(this),
      -    needTransform: false,
      -    transforming: false,
      -    writecb: null,
      -    writechunk: null,
      -    writeencoding: null
      -  };
      -
      -  // start out asking for a readable event once data is transformed.
      -  this._readableState.needReadable = true;
      -
      -  // we have implemented the _read method, and done the other things
      -  // that Readable wants before the first _read call, so unset the
      -  // sync guard flag.
      -  this._readableState.sync = false;
      -  if (options) {
      -    if (typeof options.transform === 'function') this._transform = options.transform;
      -    if (typeof options.flush === 'function') this._flush = options.flush;
      -  }
      -
      -  // When the writable side finishes, then flush out anything remaining.
      -  this.on('prefinish', prefinish);
      -}
      -function prefinish() {
      -  var _this = this;
      -  if (typeof this._flush === 'function' && !this._readableState.destroyed) {
      -    this._flush(function (er, data) {
      -      done(_this, er, data);
      -    });
      -  } else {
      -    done(this, null, null);
      -  }
      -}
      -Transform.prototype.push = function (chunk, encoding) {
      -  this._transformState.needTransform = false;
      -  return Duplex.prototype.push.call(this, chunk, encoding);
      -};
      -
      -// This is the part where you do stuff!
      -// override this function in implementation classes.
      -// 'chunk' is an input chunk.
      -//
      -// Call `push(newChunk)` to pass along transformed output
      -// to the readable side.  You may call 'push' zero or more times.
      -//
      -// Call `cb(err)` when you are done with this chunk.  If you pass
      -// an error, then that'll put the hurt on the whole operation.  If you
      -// never call cb(), then you'll never get another chunk.
      -Transform.prototype._transform = function (chunk, encoding, cb) {
      -  cb(new ERR_METHOD_NOT_IMPLEMENTED('_transform()'));
      -};
      -Transform.prototype._write = function (chunk, encoding, cb) {
      -  var ts = this._transformState;
      -  ts.writecb = cb;
      -  ts.writechunk = chunk;
      -  ts.writeencoding = encoding;
      -  if (!ts.transforming) {
      -    var rs = this._readableState;
      -    if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMark);
      -  }
      -};
      -
      -// Doesn't matter what the args are here.
      -// _transform does all the work.
      -// That we got here means that the readable side wants more data.
      -Transform.prototype._read = function (n) {
      -  var ts = this._transformState;
      -  if (ts.writechunk !== null && !ts.transforming) {
      -    ts.transforming = true;
      -    this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform);
      -  } else {
      -    // mark that we need a transform, so that any data that comes in
      -    // will get processed, now that we've asked for it.
      -    ts.needTransform = true;
      -  }
      -};
      -Transform.prototype._destroy = function (err, cb) {
      -  Duplex.prototype._destroy.call(this, err, function (err2) {
      -    cb(err2);
      -  });
      -};
      -function done(stream, er, data) {
      -  if (er) return stream.emit('error', er);
      -  if (data != null)
      -    // single equals check for both `null` and `undefined`
      -    stream.push(data);
      -
      -  // TODO(BridgeAR): Write a test for these two error cases
      -  // if there's nothing in the write buffer, then that means
      -  // that nothing more will ever be provided
      -  if (stream._writableState.length) throw new ERR_TRANSFORM_WITH_LENGTH_0();
      -  if (stream._transformState.transforming) throw new ERR_TRANSFORM_ALREADY_TRANSFORMING();
      -  return stream.push(null);
      -}
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_writable.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_writable.js
      deleted file mode 100644
      index 292415e23a192b..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/_stream_writable.js
      +++ /dev/null
      @@ -1,641 +0,0 @@
      -// Copyright Joyent, Inc. and other Node contributors.
      -//
      -// Permission is hereby granted, free of charge, to any person obtaining a
      -// copy of this software and associated documentation files (the
      -// "Software"), to deal in the Software without restriction, including
      -// without limitation the rights to use, copy, modify, merge, publish,
      -// distribute, sublicense, and/or sell copies of the Software, and to permit
      -// persons to whom the Software is furnished to do so, subject to the
      -// following conditions:
      -//
      -// The above copyright notice and this permission notice shall be included
      -// in all copies or substantial portions of the Software.
      -//
      -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
      -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
      -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
      -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
      -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
      -// USE OR OTHER DEALINGS IN THE SOFTWARE.
      -
      -// A bit simpler than readable streams.
      -// Implement an async ._write(chunk, encoding, cb), and it'll handle all
      -// the drain event emission and buffering.
      -
      -'use strict';
      -
      -module.exports = Writable;
      -
      -/*  */
      -function WriteReq(chunk, encoding, cb) {
      -  this.chunk = chunk;
      -  this.encoding = encoding;
      -  this.callback = cb;
      -  this.next = null;
      -}
      -
      -// It seems a linked list but it is not
      -// there will be only 2 of these for each stream
      -function CorkedRequest(state) {
      -  var _this = this;
      -  this.next = null;
      -  this.entry = null;
      -  this.finish = function () {
      -    onCorkedFinish(_this, state);
      -  };
      -}
      -/*  */
      -
      -/**/
      -var Duplex;
      -/**/
      -
      -Writable.WritableState = WritableState;
      -
      -/**/
      -var internalUtil = {
      -  deprecate: require('util-deprecate')
      -};
      -/**/
      -
      -/**/
      -var Stream = require('./internal/streams/stream');
      -/**/
      -
      -var Buffer = require('buffer').Buffer;
      -var OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
      -function _uint8ArrayToBuffer(chunk) {
      -  return Buffer.from(chunk);
      -}
      -function _isUint8Array(obj) {
      -  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
      -}
      -var destroyImpl = require('./internal/streams/destroy');
      -var _require = require('./internal/streams/state'),
      -  getHighWaterMark = _require.getHighWaterMark;
      -var _require$codes = require('../errors').codes,
      -  ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
      -  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
      -  ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
      -  ERR_STREAM_CANNOT_PIPE = _require$codes.ERR_STREAM_CANNOT_PIPE,
      -  ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED,
      -  ERR_STREAM_NULL_VALUES = _require$codes.ERR_STREAM_NULL_VALUES,
      -  ERR_STREAM_WRITE_AFTER_END = _require$codes.ERR_STREAM_WRITE_AFTER_END,
      -  ERR_UNKNOWN_ENCODING = _require$codes.ERR_UNKNOWN_ENCODING;
      -var errorOrDestroy = destroyImpl.errorOrDestroy;
      -require('inherits')(Writable, Stream);
      -function nop() {}
      -function WritableState(options, stream, isDuplex) {
      -  Duplex = Duplex || require('./_stream_duplex');
      -  options = options || {};
      -
      -  // Duplex streams are both readable and writable, but share
      -  // the same options object.
      -  // However, some cases require setting options to different
      -  // values for the readable and the writable sides of the duplex stream,
      -  // e.g. options.readableObjectMode vs. options.writableObjectMode, etc.
      -  if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex;
      -
      -  // object stream flag to indicate whether or not this stream
      -  // contains buffers or objects.
      -  this.objectMode = !!options.objectMode;
      -  if (isDuplex) this.objectMode = this.objectMode || !!options.writableObjectMode;
      -
      -  // the point at which write() starts returning false
      -  // Note: 0 is a valid value, means that we always return false if
      -  // the entire buffer is not flushed immediately on write()
      -  this.highWaterMark = getHighWaterMark(this, options, 'writableHighWaterMark', isDuplex);
      -
      -  // if _final has been called
      -  this.finalCalled = false;
      -
      -  // drain event flag.
      -  this.needDrain = false;
      -  // at the start of calling end()
      -  this.ending = false;
      -  // when end() has been called, and returned
      -  this.ended = false;
      -  // when 'finish' is emitted
      -  this.finished = false;
      -
      -  // has it been destroyed
      -  this.destroyed = false;
      -
      -  // should we decode strings into buffers before passing to _write?
      -  // this is here so that some node-core streams can optimize string
      -  // handling at a lower level.
      -  var noDecode = options.decodeStrings === false;
      -  this.decodeStrings = !noDecode;
      -
      -  // Crypto is kind of old and crusty.  Historically, its default string
      -  // encoding is 'binary' so we have to make this configurable.
      -  // Everything else in the universe uses 'utf8', though.
      -  this.defaultEncoding = options.defaultEncoding || 'utf8';
      -
      -  // not an actual buffer we keep track of, but a measurement
      -  // of how much we're waiting to get pushed to some underlying
      -  // socket or file.
      -  this.length = 0;
      -
      -  // a flag to see when we're in the middle of a write.
      -  this.writing = false;
      -
      -  // when true all writes will be buffered until .uncork() call
      -  this.corked = 0;
      -
      -  // a flag to be able to tell if the onwrite cb is called immediately,
      -  // or on a later tick.  We set this to true at first, because any
      -  // actions that shouldn't happen until "later" should generally also
      -  // not happen before the first write call.
      -  this.sync = true;
      -
      -  // a flag to know if we're processing previously buffered items, which
      -  // may call the _write() callback in the same tick, so that we don't
      -  // end up in an overlapped onwrite situation.
      -  this.bufferProcessing = false;
      -
      -  // the callback that's passed to _write(chunk,cb)
      -  this.onwrite = function (er) {
      -    onwrite(stream, er);
      -  };
      -
      -  // the callback that the user supplies to write(chunk,encoding,cb)
      -  this.writecb = null;
      -
      -  // the amount that is being written when _write is called.
      -  this.writelen = 0;
      -  this.bufferedRequest = null;
      -  this.lastBufferedRequest = null;
      -
      -  // number of pending user-supplied write callbacks
      -  // this must be 0 before 'finish' can be emitted
      -  this.pendingcb = 0;
      -
      -  // emit prefinish if the only thing we're waiting for is _write cbs
      -  // This is relevant for synchronous Transform streams
      -  this.prefinished = false;
      -
      -  // True if the error was already emitted and should not be thrown again
      -  this.errorEmitted = false;
      -
      -  // Should close be emitted on destroy. Defaults to true.
      -  this.emitClose = options.emitClose !== false;
      -
      -  // Should .destroy() be called after 'finish' (and potentially 'end')
      -  this.autoDestroy = !!options.autoDestroy;
      -
      -  // count buffered requests
      -  this.bufferedRequestCount = 0;
      -
      -  // allocate the first CorkedRequest, there is always
      -  // one allocated and free to use, and we maintain at most two
      -  this.corkedRequestsFree = new CorkedRequest(this);
      -}
      -WritableState.prototype.getBuffer = function getBuffer() {
      -  var current = this.bufferedRequest;
      -  var out = [];
      -  while (current) {
      -    out.push(current);
      -    current = current.next;
      -  }
      -  return out;
      -};
      -(function () {
      -  try {
      -    Object.defineProperty(WritableState.prototype, 'buffer', {
      -      get: internalUtil.deprecate(function writableStateBufferGetter() {
      -        return this.getBuffer();
      -      }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003')
      -    });
      -  } catch (_) {}
      -})();
      -
      -// Test _writableState for inheritance to account for Duplex streams,
      -// whose prototype chain only points to Readable.
      -var realHasInstance;
      -if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.prototype[Symbol.hasInstance] === 'function') {
      -  realHasInstance = Function.prototype[Symbol.hasInstance];
      -  Object.defineProperty(Writable, Symbol.hasInstance, {
      -    value: function value(object) {
      -      if (realHasInstance.call(this, object)) return true;
      -      if (this !== Writable) return false;
      -      return object && object._writableState instanceof WritableState;
      -    }
      -  });
      -} else {
      -  realHasInstance = function realHasInstance(object) {
      -    return object instanceof this;
      -  };
      -}
      -function Writable(options) {
      -  Duplex = Duplex || require('./_stream_duplex');
      -
      -  // Writable ctor is applied to Duplexes, too.
      -  // `realHasInstance` is necessary because using plain `instanceof`
      -  // would return false, as no `_writableState` property is attached.
      -
      -  // Trying to use the custom `instanceof` for Writable here will also break the
      -  // Node.js LazyTransform implementation, which has a non-trivial getter for
      -  // `_writableState` that would lead to infinite recursion.
      -
      -  // Checking for a Stream.Duplex instance is faster here instead of inside
      -  // the WritableState constructor, at least with V8 6.5
      -  var isDuplex = this instanceof Duplex;
      -  if (!isDuplex && !realHasInstance.call(Writable, this)) return new Writable(options);
      -  this._writableState = new WritableState(options, this, isDuplex);
      -
      -  // legacy.
      -  this.writable = true;
      -  if (options) {
      -    if (typeof options.write === 'function') this._write = options.write;
      -    if (typeof options.writev === 'function') this._writev = options.writev;
      -    if (typeof options.destroy === 'function') this._destroy = options.destroy;
      -    if (typeof options.final === 'function') this._final = options.final;
      -  }
      -  Stream.call(this);
      -}
      -
      -// Otherwise people can pipe Writable streams, which is just wrong.
      -Writable.prototype.pipe = function () {
      -  errorOrDestroy(this, new ERR_STREAM_CANNOT_PIPE());
      -};
      -function writeAfterEnd(stream, cb) {
      -  var er = new ERR_STREAM_WRITE_AFTER_END();
      -  // TODO: defer error events consistently everywhere, not just the cb
      -  errorOrDestroy(stream, er);
      -  process.nextTick(cb, er);
      -}
      -
      -// Checks that a user-supplied chunk is valid, especially for the particular
      -// mode the stream is in. Currently this means that `null` is never accepted
      -// and undefined/non-string values are only allowed in object mode.
      -function validChunk(stream, state, chunk, cb) {
      -  var er;
      -  if (chunk === null) {
      -    er = new ERR_STREAM_NULL_VALUES();
      -  } else if (typeof chunk !== 'string' && !state.objectMode) {
      -    er = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer'], chunk);
      -  }
      -  if (er) {
      -    errorOrDestroy(stream, er);
      -    process.nextTick(cb, er);
      -    return false;
      -  }
      -  return true;
      -}
      -Writable.prototype.write = function (chunk, encoding, cb) {
      -  var state = this._writableState;
      -  var ret = false;
      -  var isBuf = !state.objectMode && _isUint8Array(chunk);
      -  if (isBuf && !Buffer.isBuffer(chunk)) {
      -    chunk = _uint8ArrayToBuffer(chunk);
      -  }
      -  if (typeof encoding === 'function') {
      -    cb = encoding;
      -    encoding = null;
      -  }
      -  if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding;
      -  if (typeof cb !== 'function') cb = nop;
      -  if (state.ending) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) {
      -    state.pendingcb++;
      -    ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb);
      -  }
      -  return ret;
      -};
      -Writable.prototype.cork = function () {
      -  this._writableState.corked++;
      -};
      -Writable.prototype.uncork = function () {
      -  var state = this._writableState;
      -  if (state.corked) {
      -    state.corked--;
      -    if (!state.writing && !state.corked && !state.bufferProcessing && state.bufferedRequest) clearBuffer(this, state);
      -  }
      -};
      -Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {
      -  // node::ParseEncoding() requires lower case.
      -  if (typeof encoding === 'string') encoding = encoding.toLowerCase();
      -  if (!(['hex', 'utf8', 'utf-8', 'ascii', 'binary', 'base64', 'ucs2', 'ucs-2', 'utf16le', 'utf-16le', 'raw'].indexOf((encoding + '').toLowerCase()) > -1)) throw new ERR_UNKNOWN_ENCODING(encoding);
      -  this._writableState.defaultEncoding = encoding;
      -  return this;
      -};
      -Object.defineProperty(Writable.prototype, 'writableBuffer', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._writableState && this._writableState.getBuffer();
      -  }
      -});
      -function decodeChunk(state, chunk, encoding) {
      -  if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') {
      -    chunk = Buffer.from(chunk, encoding);
      -  }
      -  return chunk;
      -}
      -Object.defineProperty(Writable.prototype, 'writableHighWaterMark', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._writableState.highWaterMark;
      -  }
      -});
      -
      -// if we're already writing something, then just put this
      -// in the queue, and wait our turn.  Otherwise, call _write
      -// If we return false, then we need a drain event, so set that flag.
      -function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) {
      -  if (!isBuf) {
      -    var newChunk = decodeChunk(state, chunk, encoding);
      -    if (chunk !== newChunk) {
      -      isBuf = true;
      -      encoding = 'buffer';
      -      chunk = newChunk;
      -    }
      -  }
      -  var len = state.objectMode ? 1 : chunk.length;
      -  state.length += len;
      -  var ret = state.length < state.highWaterMark;
      -  // we must ensure that previous needDrain will not be reset to false.
      -  if (!ret) state.needDrain = true;
      -  if (state.writing || state.corked) {
      -    var last = state.lastBufferedRequest;
      -    state.lastBufferedRequest = {
      -      chunk: chunk,
      -      encoding: encoding,
      -      isBuf: isBuf,
      -      callback: cb,
      -      next: null
      -    };
      -    if (last) {
      -      last.next = state.lastBufferedRequest;
      -    } else {
      -      state.bufferedRequest = state.lastBufferedRequest;
      -    }
      -    state.bufferedRequestCount += 1;
      -  } else {
      -    doWrite(stream, state, false, len, chunk, encoding, cb);
      -  }
      -  return ret;
      -}
      -function doWrite(stream, state, writev, len, chunk, encoding, cb) {
      -  state.writelen = len;
      -  state.writecb = cb;
      -  state.writing = true;
      -  state.sync = true;
      -  if (state.destroyed) state.onwrite(new ERR_STREAM_DESTROYED('write'));else if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite);
      -  state.sync = false;
      -}
      -function onwriteError(stream, state, sync, er, cb) {
      -  --state.pendingcb;
      -  if (sync) {
      -    // defer the callback if we are being called synchronously
      -    // to avoid piling up things on the stack
      -    process.nextTick(cb, er);
      -    // this can emit finish, and it will always happen
      -    // after error
      -    process.nextTick(finishMaybe, stream, state);
      -    stream._writableState.errorEmitted = true;
      -    errorOrDestroy(stream, er);
      -  } else {
      -    // the caller expect this to happen before if
      -    // it is async
      -    cb(er);
      -    stream._writableState.errorEmitted = true;
      -    errorOrDestroy(stream, er);
      -    // this can emit finish, but finish must
      -    // always follow error
      -    finishMaybe(stream, state);
      -  }
      -}
      -function onwriteStateUpdate(state) {
      -  state.writing = false;
      -  state.writecb = null;
      -  state.length -= state.writelen;
      -  state.writelen = 0;
      -}
      -function onwrite(stream, er) {
      -  var state = stream._writableState;
      -  var sync = state.sync;
      -  var cb = state.writecb;
      -  if (typeof cb !== 'function') throw new ERR_MULTIPLE_CALLBACK();
      -  onwriteStateUpdate(state);
      -  if (er) onwriteError(stream, state, sync, er, cb);else {
      -    // Check if we're actually ready to finish, but don't emit yet
      -    var finished = needFinish(state) || stream.destroyed;
      -    if (!finished && !state.corked && !state.bufferProcessing && state.bufferedRequest) {
      -      clearBuffer(stream, state);
      -    }
      -    if (sync) {
      -      process.nextTick(afterWrite, stream, state, finished, cb);
      -    } else {
      -      afterWrite(stream, state, finished, cb);
      -    }
      -  }
      -}
      -function afterWrite(stream, state, finished, cb) {
      -  if (!finished) onwriteDrain(stream, state);
      -  state.pendingcb--;
      -  cb();
      -  finishMaybe(stream, state);
      -}
      -
      -// Must force callback to be called on nextTick, so that we don't
      -// emit 'drain' before the write() consumer gets the 'false' return
      -// value, and has a chance to attach a 'drain' listener.
      -function onwriteDrain(stream, state) {
      -  if (state.length === 0 && state.needDrain) {
      -    state.needDrain = false;
      -    stream.emit('drain');
      -  }
      -}
      -
      -// if there's something in the buffer waiting, then process it
      -function clearBuffer(stream, state) {
      -  state.bufferProcessing = true;
      -  var entry = state.bufferedRequest;
      -  if (stream._writev && entry && entry.next) {
      -    // Fast case, write everything using _writev()
      -    var l = state.bufferedRequestCount;
      -    var buffer = new Array(l);
      -    var holder = state.corkedRequestsFree;
      -    holder.entry = entry;
      -    var count = 0;
      -    var allBuffers = true;
      -    while (entry) {
      -      buffer[count] = entry;
      -      if (!entry.isBuf) allBuffers = false;
      -      entry = entry.next;
      -      count += 1;
      -    }
      -    buffer.allBuffers = allBuffers;
      -    doWrite(stream, state, true, state.length, buffer, '', holder.finish);
      -
      -    // doWrite is almost always async, defer these to save a bit of time
      -    // as the hot path ends with doWrite
      -    state.pendingcb++;
      -    state.lastBufferedRequest = null;
      -    if (holder.next) {
      -      state.corkedRequestsFree = holder.next;
      -      holder.next = null;
      -    } else {
      -      state.corkedRequestsFree = new CorkedRequest(state);
      -    }
      -    state.bufferedRequestCount = 0;
      -  } else {
      -    // Slow case, write chunks one-by-one
      -    while (entry) {
      -      var chunk = entry.chunk;
      -      var encoding = entry.encoding;
      -      var cb = entry.callback;
      -      var len = state.objectMode ? 1 : chunk.length;
      -      doWrite(stream, state, false, len, chunk, encoding, cb);
      -      entry = entry.next;
      -      state.bufferedRequestCount--;
      -      // if we didn't call the onwrite immediately, then
      -      // it means that we need to wait until it does.
      -      // also, that means that the chunk and cb are currently
      -      // being processed, so move the buffer counter past them.
      -      if (state.writing) {
      -        break;
      -      }
      -    }
      -    if (entry === null) state.lastBufferedRequest = null;
      -  }
      -  state.bufferedRequest = entry;
      -  state.bufferProcessing = false;
      -}
      -Writable.prototype._write = function (chunk, encoding, cb) {
      -  cb(new ERR_METHOD_NOT_IMPLEMENTED('_write()'));
      -};
      -Writable.prototype._writev = null;
      -Writable.prototype.end = function (chunk, encoding, cb) {
      -  var state = this._writableState;
      -  if (typeof chunk === 'function') {
      -    cb = chunk;
      -    chunk = null;
      -    encoding = null;
      -  } else if (typeof encoding === 'function') {
      -    cb = encoding;
      -    encoding = null;
      -  }
      -  if (chunk !== null && chunk !== undefined) this.write(chunk, encoding);
      -
      -  // .end() fully uncorks
      -  if (state.corked) {
      -    state.corked = 1;
      -    this.uncork();
      -  }
      -
      -  // ignore unnecessary end() calls.
      -  if (!state.ending) endWritable(this, state, cb);
      -  return this;
      -};
      -Object.defineProperty(Writable.prototype, 'writableLength', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    return this._writableState.length;
      -  }
      -});
      -function needFinish(state) {
      -  return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing;
      -}
      -function callFinal(stream, state) {
      -  stream._final(function (err) {
      -    state.pendingcb--;
      -    if (err) {
      -      errorOrDestroy(stream, err);
      -    }
      -    state.prefinished = true;
      -    stream.emit('prefinish');
      -    finishMaybe(stream, state);
      -  });
      -}
      -function prefinish(stream, state) {
      -  if (!state.prefinished && !state.finalCalled) {
      -    if (typeof stream._final === 'function' && !state.destroyed) {
      -      state.pendingcb++;
      -      state.finalCalled = true;
      -      process.nextTick(callFinal, stream, state);
      -    } else {
      -      state.prefinished = true;
      -      stream.emit('prefinish');
      -    }
      -  }
      -}
      -function finishMaybe(stream, state) {
      -  var need = needFinish(state);
      -  if (need) {
      -    prefinish(stream, state);
      -    if (state.pendingcb === 0) {
      -      state.finished = true;
      -      stream.emit('finish');
      -      if (state.autoDestroy) {
      -        // In case of duplex streams we need a way to detect
      -        // if the readable side is ready for autoDestroy as well
      -        var rState = stream._readableState;
      -        if (!rState || rState.autoDestroy && rState.endEmitted) {
      -          stream.destroy();
      -        }
      -      }
      -    }
      -  }
      -  return need;
      -}
      -function endWritable(stream, state, cb) {
      -  state.ending = true;
      -  finishMaybe(stream, state);
      -  if (cb) {
      -    if (state.finished) process.nextTick(cb);else stream.once('finish', cb);
      -  }
      -  state.ended = true;
      -  stream.writable = false;
      -}
      -function onCorkedFinish(corkReq, state, err) {
      -  var entry = corkReq.entry;
      -  corkReq.entry = null;
      -  while (entry) {
      -    var cb = entry.callback;
      -    state.pendingcb--;
      -    cb(err);
      -    entry = entry.next;
      -  }
      -
      -  // reuse the free corkReq.
      -  state.corkedRequestsFree.next = corkReq;
      -}
      -Object.defineProperty(Writable.prototype, 'destroyed', {
      -  // making it explicit this property is not enumerable
      -  // because otherwise some prototype manipulation in
      -  // userland will fail
      -  enumerable: false,
      -  get: function get() {
      -    if (this._writableState === undefined) {
      -      return false;
      -    }
      -    return this._writableState.destroyed;
      -  },
      -  set: function set(value) {
      -    // we ignore the value if the stream
      -    // has not been initialized yet
      -    if (!this._writableState) {
      -      return;
      -    }
      -
      -    // backward compatibility, the user is explicitly
      -    // managing destroyed
      -    this._writableState.destroyed = value;
      -  }
      -});
      -Writable.prototype.destroy = destroyImpl.destroy;
      -Writable.prototype._undestroy = destroyImpl.undestroy;
      -Writable.prototype._destroy = function (err, cb) {
      -  cb(err);
      -};
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/async_iterator.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/async_iterator.js
      deleted file mode 100644
      index 742c5a4674794d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/async_iterator.js
      +++ /dev/null
      @@ -1,180 +0,0 @@
      -'use strict';
      -
      -var _Object$setPrototypeO;
      -function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
      -function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
      -function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
      -var finished = require('./end-of-stream');
      -var kLastResolve = Symbol('lastResolve');
      -var kLastReject = Symbol('lastReject');
      -var kError = Symbol('error');
      -var kEnded = Symbol('ended');
      -var kLastPromise = Symbol('lastPromise');
      -var kHandlePromise = Symbol('handlePromise');
      -var kStream = Symbol('stream');
      -function createIterResult(value, done) {
      -  return {
      -    value: value,
      -    done: done
      -  };
      -}
      -function readAndResolve(iter) {
      -  var resolve = iter[kLastResolve];
      -  if (resolve !== null) {
      -    var data = iter[kStream].read();
      -    // we defer if data is null
      -    // we can be expecting either 'end' or
      -    // 'error'
      -    if (data !== null) {
      -      iter[kLastPromise] = null;
      -      iter[kLastResolve] = null;
      -      iter[kLastReject] = null;
      -      resolve(createIterResult(data, false));
      -    }
      -  }
      -}
      -function onReadable(iter) {
      -  // we wait for the next tick, because it might
      -  // emit an error with process.nextTick
      -  process.nextTick(readAndResolve, iter);
      -}
      -function wrapForNext(lastPromise, iter) {
      -  return function (resolve, reject) {
      -    lastPromise.then(function () {
      -      if (iter[kEnded]) {
      -        resolve(createIterResult(undefined, true));
      -        return;
      -      }
      -      iter[kHandlePromise](resolve, reject);
      -    }, reject);
      -  };
      -}
      -var AsyncIteratorPrototype = Object.getPrototypeOf(function () {});
      -var ReadableStreamAsyncIteratorPrototype = Object.setPrototypeOf((_Object$setPrototypeO = {
      -  get stream() {
      -    return this[kStream];
      -  },
      -  next: function next() {
      -    var _this = this;
      -    // if we have detected an error in the meanwhile
      -    // reject straight away
      -    var error = this[kError];
      -    if (error !== null) {
      -      return Promise.reject(error);
      -    }
      -    if (this[kEnded]) {
      -      return Promise.resolve(createIterResult(undefined, true));
      -    }
      -    if (this[kStream].destroyed) {
      -      // We need to defer via nextTick because if .destroy(err) is
      -      // called, the error will be emitted via nextTick, and
      -      // we cannot guarantee that there is no error lingering around
      -      // waiting to be emitted.
      -      return new Promise(function (resolve, reject) {
      -        process.nextTick(function () {
      -          if (_this[kError]) {
      -            reject(_this[kError]);
      -          } else {
      -            resolve(createIterResult(undefined, true));
      -          }
      -        });
      -      });
      -    }
      -
      -    // if we have multiple next() calls
      -    // we will wait for the previous Promise to finish
      -    // this logic is optimized to support for await loops,
      -    // where next() is only called once at a time
      -    var lastPromise = this[kLastPromise];
      -    var promise;
      -    if (lastPromise) {
      -      promise = new Promise(wrapForNext(lastPromise, this));
      -    } else {
      -      // fast path needed to support multiple this.push()
      -      // without triggering the next() queue
      -      var data = this[kStream].read();
      -      if (data !== null) {
      -        return Promise.resolve(createIterResult(data, false));
      -      }
      -      promise = new Promise(this[kHandlePromise]);
      -    }
      -    this[kLastPromise] = promise;
      -    return promise;
      -  }
      -}, _defineProperty(_Object$setPrototypeO, Symbol.asyncIterator, function () {
      -  return this;
      -}), _defineProperty(_Object$setPrototypeO, "return", function _return() {
      -  var _this2 = this;
      -  // destroy(err, cb) is a private API
      -  // we can guarantee we have that here, because we control the
      -  // Readable class this is attached to
      -  return new Promise(function (resolve, reject) {
      -    _this2[kStream].destroy(null, function (err) {
      -      if (err) {
      -        reject(err);
      -        return;
      -      }
      -      resolve(createIterResult(undefined, true));
      -    });
      -  });
      -}), _Object$setPrototypeO), AsyncIteratorPrototype);
      -var createReadableStreamAsyncIterator = function createReadableStreamAsyncIterator(stream) {
      -  var _Object$create;
      -  var iterator = Object.create(ReadableStreamAsyncIteratorPrototype, (_Object$create = {}, _defineProperty(_Object$create, kStream, {
      -    value: stream,
      -    writable: true
      -  }), _defineProperty(_Object$create, kLastResolve, {
      -    value: null,
      -    writable: true
      -  }), _defineProperty(_Object$create, kLastReject, {
      -    value: null,
      -    writable: true
      -  }), _defineProperty(_Object$create, kError, {
      -    value: null,
      -    writable: true
      -  }), _defineProperty(_Object$create, kEnded, {
      -    value: stream._readableState.endEmitted,
      -    writable: true
      -  }), _defineProperty(_Object$create, kHandlePromise, {
      -    value: function value(resolve, reject) {
      -      var data = iterator[kStream].read();
      -      if (data) {
      -        iterator[kLastPromise] = null;
      -        iterator[kLastResolve] = null;
      -        iterator[kLastReject] = null;
      -        resolve(createIterResult(data, false));
      -      } else {
      -        iterator[kLastResolve] = resolve;
      -        iterator[kLastReject] = reject;
      -      }
      -    },
      -    writable: true
      -  }), _Object$create));
      -  iterator[kLastPromise] = null;
      -  finished(stream, function (err) {
      -    if (err && err.code !== 'ERR_STREAM_PREMATURE_CLOSE') {
      -      var reject = iterator[kLastReject];
      -      // reject if we are waiting for data in the Promise
      -      // returned by next() and store the error
      -      if (reject !== null) {
      -        iterator[kLastPromise] = null;
      -        iterator[kLastResolve] = null;
      -        iterator[kLastReject] = null;
      -        reject(err);
      -      }
      -      iterator[kError] = err;
      -      return;
      -    }
      -    var resolve = iterator[kLastResolve];
      -    if (resolve !== null) {
      -      iterator[kLastPromise] = null;
      -      iterator[kLastResolve] = null;
      -      iterator[kLastReject] = null;
      -      resolve(createIterResult(undefined, true));
      -    }
      -    iterator[kEnded] = true;
      -  });
      -  stream.on('readable', onReadable.bind(null, iterator));
      -  return iterator;
      -};
      -module.exports = createReadableStreamAsyncIterator;
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/buffer_list.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/buffer_list.js
      deleted file mode 100644
      index 69bda497d35f34..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/buffer_list.js
      +++ /dev/null
      @@ -1,183 +0,0 @@
      -'use strict';
      -
      -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
      -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
      -function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
      -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
      -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
      -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
      -function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
      -function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
      -var _require = require('buffer'),
      -  Buffer = _require.Buffer;
      -var _require2 = require('util'),
      -  inspect = _require2.inspect;
      -var custom = inspect && inspect.custom || 'inspect';
      -function copyBuffer(src, target, offset) {
      -  Buffer.prototype.copy.call(src, target, offset);
      -}
      -module.exports = /*#__PURE__*/function () {
      -  function BufferList() {
      -    _classCallCheck(this, BufferList);
      -    this.head = null;
      -    this.tail = null;
      -    this.length = 0;
      -  }
      -  _createClass(BufferList, [{
      -    key: "push",
      -    value: function push(v) {
      -      var entry = {
      -        data: v,
      -        next: null
      -      };
      -      if (this.length > 0) this.tail.next = entry;else this.head = entry;
      -      this.tail = entry;
      -      ++this.length;
      -    }
      -  }, {
      -    key: "unshift",
      -    value: function unshift(v) {
      -      var entry = {
      -        data: v,
      -        next: this.head
      -      };
      -      if (this.length === 0) this.tail = entry;
      -      this.head = entry;
      -      ++this.length;
      -    }
      -  }, {
      -    key: "shift",
      -    value: function shift() {
      -      if (this.length === 0) return;
      -      var ret = this.head.data;
      -      if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;
      -      --this.length;
      -      return ret;
      -    }
      -  }, {
      -    key: "clear",
      -    value: function clear() {
      -      this.head = this.tail = null;
      -      this.length = 0;
      -    }
      -  }, {
      -    key: "join",
      -    value: function join(s) {
      -      if (this.length === 0) return '';
      -      var p = this.head;
      -      var ret = '' + p.data;
      -      while (p = p.next) ret += s + p.data;
      -      return ret;
      -    }
      -  }, {
      -    key: "concat",
      -    value: function concat(n) {
      -      if (this.length === 0) return Buffer.alloc(0);
      -      var ret = Buffer.allocUnsafe(n >>> 0);
      -      var p = this.head;
      -      var i = 0;
      -      while (p) {
      -        copyBuffer(p.data, ret, i);
      -        i += p.data.length;
      -        p = p.next;
      -      }
      -      return ret;
      -    }
      -
      -    // Consumes a specified amount of bytes or characters from the buffered data.
      -  }, {
      -    key: "consume",
      -    value: function consume(n, hasStrings) {
      -      var ret;
      -      if (n < this.head.data.length) {
      -        // `slice` is the same for buffers and strings.
      -        ret = this.head.data.slice(0, n);
      -        this.head.data = this.head.data.slice(n);
      -      } else if (n === this.head.data.length) {
      -        // First chunk is a perfect match.
      -        ret = this.shift();
      -      } else {
      -        // Result spans more than one buffer.
      -        ret = hasStrings ? this._getString(n) : this._getBuffer(n);
      -      }
      -      return ret;
      -    }
      -  }, {
      -    key: "first",
      -    value: function first() {
      -      return this.head.data;
      -    }
      -
      -    // Consumes a specified amount of characters from the buffered data.
      -  }, {
      -    key: "_getString",
      -    value: function _getString(n) {
      -      var p = this.head;
      -      var c = 1;
      -      var ret = p.data;
      -      n -= ret.length;
      -      while (p = p.next) {
      -        var str = p.data;
      -        var nb = n > str.length ? str.length : n;
      -        if (nb === str.length) ret += str;else ret += str.slice(0, n);
      -        n -= nb;
      -        if (n === 0) {
      -          if (nb === str.length) {
      -            ++c;
      -            if (p.next) this.head = p.next;else this.head = this.tail = null;
      -          } else {
      -            this.head = p;
      -            p.data = str.slice(nb);
      -          }
      -          break;
      -        }
      -        ++c;
      -      }
      -      this.length -= c;
      -      return ret;
      -    }
      -
      -    // Consumes a specified amount of bytes from the buffered data.
      -  }, {
      -    key: "_getBuffer",
      -    value: function _getBuffer(n) {
      -      var ret = Buffer.allocUnsafe(n);
      -      var p = this.head;
      -      var c = 1;
      -      p.data.copy(ret);
      -      n -= p.data.length;
      -      while (p = p.next) {
      -        var buf = p.data;
      -        var nb = n > buf.length ? buf.length : n;
      -        buf.copy(ret, ret.length - n, 0, nb);
      -        n -= nb;
      -        if (n === 0) {
      -          if (nb === buf.length) {
      -            ++c;
      -            if (p.next) this.head = p.next;else this.head = this.tail = null;
      -          } else {
      -            this.head = p;
      -            p.data = buf.slice(nb);
      -          }
      -          break;
      -        }
      -        ++c;
      -      }
      -      this.length -= c;
      -      return ret;
      -    }
      -
      -    // Make sure the linked list only shows the minimal necessary information.
      -  }, {
      -    key: custom,
      -    value: function value(_, options) {
      -      return inspect(this, _objectSpread(_objectSpread({}, options), {}, {
      -        // Only inspect one level.
      -        depth: 0,
      -        // It should not recurse.
      -        customInspect: false
      -      }));
      -    }
      -  }]);
      -  return BufferList;
      -}();
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/destroy.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/destroy.js
      deleted file mode 100644
      index 31a17c4dc46388..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/destroy.js
      +++ /dev/null
      @@ -1,96 +0,0 @@
      -'use strict';
      -
      -// undocumented cb() API, needed for core, not for public API
      -function destroy(err, cb) {
      -  var _this = this;
      -  var readableDestroyed = this._readableState && this._readableState.destroyed;
      -  var writableDestroyed = this._writableState && this._writableState.destroyed;
      -  if (readableDestroyed || writableDestroyed) {
      -    if (cb) {
      -      cb(err);
      -    } else if (err) {
      -      if (!this._writableState) {
      -        process.nextTick(emitErrorNT, this, err);
      -      } else if (!this._writableState.errorEmitted) {
      -        this._writableState.errorEmitted = true;
      -        process.nextTick(emitErrorNT, this, err);
      -      }
      -    }
      -    return this;
      -  }
      -
      -  // we set destroyed to true before firing error callbacks in order
      -  // to make it re-entrance safe in case destroy() is called within callbacks
      -
      -  if (this._readableState) {
      -    this._readableState.destroyed = true;
      -  }
      -
      -  // if this is a duplex stream mark the writable part as destroyed as well
      -  if (this._writableState) {
      -    this._writableState.destroyed = true;
      -  }
      -  this._destroy(err || null, function (err) {
      -    if (!cb && err) {
      -      if (!_this._writableState) {
      -        process.nextTick(emitErrorAndCloseNT, _this, err);
      -      } else if (!_this._writableState.errorEmitted) {
      -        _this._writableState.errorEmitted = true;
      -        process.nextTick(emitErrorAndCloseNT, _this, err);
      -      } else {
      -        process.nextTick(emitCloseNT, _this);
      -      }
      -    } else if (cb) {
      -      process.nextTick(emitCloseNT, _this);
      -      cb(err);
      -    } else {
      -      process.nextTick(emitCloseNT, _this);
      -    }
      -  });
      -  return this;
      -}
      -function emitErrorAndCloseNT(self, err) {
      -  emitErrorNT(self, err);
      -  emitCloseNT(self);
      -}
      -function emitCloseNT(self) {
      -  if (self._writableState && !self._writableState.emitClose) return;
      -  if (self._readableState && !self._readableState.emitClose) return;
      -  self.emit('close');
      -}
      -function undestroy() {
      -  if (this._readableState) {
      -    this._readableState.destroyed = false;
      -    this._readableState.reading = false;
      -    this._readableState.ended = false;
      -    this._readableState.endEmitted = false;
      -  }
      -  if (this._writableState) {
      -    this._writableState.destroyed = false;
      -    this._writableState.ended = false;
      -    this._writableState.ending = false;
      -    this._writableState.finalCalled = false;
      -    this._writableState.prefinished = false;
      -    this._writableState.finished = false;
      -    this._writableState.errorEmitted = false;
      -  }
      -}
      -function emitErrorNT(self, err) {
      -  self.emit('error', err);
      -}
      -function errorOrDestroy(stream, err) {
      -  // We have tests that rely on errors being emitted
      -  // in the same tick, so changing this is semver major.
      -  // For now when you opt-in to autoDestroy we allow
      -  // the error to be emitted nextTick. In a future
      -  // semver major update we should change the default to this.
      -
      -  var rState = stream._readableState;
      -  var wState = stream._writableState;
      -  if (rState && rState.autoDestroy || wState && wState.autoDestroy) stream.destroy(err);else stream.emit('error', err);
      -}
      -module.exports = {
      -  destroy: destroy,
      -  undestroy: undestroy,
      -  errorOrDestroy: errorOrDestroy
      -};
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/end-of-stream.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/end-of-stream.js
      deleted file mode 100644
      index 59c671b5af769b..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/end-of-stream.js
      +++ /dev/null
      @@ -1,86 +0,0 @@
      -// Ported from https://github.com/mafintosh/end-of-stream with
      -// permission from the author, Mathias Buus (@mafintosh).
      -
      -'use strict';
      -
      -var ERR_STREAM_PREMATURE_CLOSE = require('../../../errors').codes.ERR_STREAM_PREMATURE_CLOSE;
      -function once(callback) {
      -  var called = false;
      -  return function () {
      -    if (called) return;
      -    called = true;
      -    for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
      -      args[_key] = arguments[_key];
      -    }
      -    callback.apply(this, args);
      -  };
      -}
      -function noop() {}
      -function isRequest(stream) {
      -  return stream.setHeader && typeof stream.abort === 'function';
      -}
      -function eos(stream, opts, callback) {
      -  if (typeof opts === 'function') return eos(stream, null, opts);
      -  if (!opts) opts = {};
      -  callback = once(callback || noop);
      -  var readable = opts.readable || opts.readable !== false && stream.readable;
      -  var writable = opts.writable || opts.writable !== false && stream.writable;
      -  var onlegacyfinish = function onlegacyfinish() {
      -    if (!stream.writable) onfinish();
      -  };
      -  var writableEnded = stream._writableState && stream._writableState.finished;
      -  var onfinish = function onfinish() {
      -    writable = false;
      -    writableEnded = true;
      -    if (!readable) callback.call(stream);
      -  };
      -  var readableEnded = stream._readableState && stream._readableState.endEmitted;
      -  var onend = function onend() {
      -    readable = false;
      -    readableEnded = true;
      -    if (!writable) callback.call(stream);
      -  };
      -  var onerror = function onerror(err) {
      -    callback.call(stream, err);
      -  };
      -  var onclose = function onclose() {
      -    var err;
      -    if (readable && !readableEnded) {
      -      if (!stream._readableState || !stream._readableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE();
      -      return callback.call(stream, err);
      -    }
      -    if (writable && !writableEnded) {
      -      if (!stream._writableState || !stream._writableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE();
      -      return callback.call(stream, err);
      -    }
      -  };
      -  var onrequest = function onrequest() {
      -    stream.req.on('finish', onfinish);
      -  };
      -  if (isRequest(stream)) {
      -    stream.on('complete', onfinish);
      -    stream.on('abort', onclose);
      -    if (stream.req) onrequest();else stream.on('request', onrequest);
      -  } else if (writable && !stream._writableState) {
      -    // legacy streams
      -    stream.on('end', onlegacyfinish);
      -    stream.on('close', onlegacyfinish);
      -  }
      -  stream.on('end', onend);
      -  stream.on('finish', onfinish);
      -  if (opts.error !== false) stream.on('error', onerror);
      -  stream.on('close', onclose);
      -  return function () {
      -    stream.removeListener('complete', onfinish);
      -    stream.removeListener('abort', onclose);
      -    stream.removeListener('request', onrequest);
      -    if (stream.req) stream.req.removeListener('finish', onfinish);
      -    stream.removeListener('end', onlegacyfinish);
      -    stream.removeListener('close', onlegacyfinish);
      -    stream.removeListener('finish', onfinish);
      -    stream.removeListener('end', onend);
      -    stream.removeListener('error', onerror);
      -    stream.removeListener('close', onclose);
      -  };
      -}
      -module.exports = eos;
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/from-browser.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/from-browser.js
      deleted file mode 100644
      index a4ce56f3c90f60..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/from-browser.js
      +++ /dev/null
      @@ -1,3 +0,0 @@
      -module.exports = function () {
      -  throw new Error('Readable.from is not available in the browser')
      -};
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/from.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/from.js
      deleted file mode 100644
      index 0a34ee92e3df85..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/from.js
      +++ /dev/null
      @@ -1,52 +0,0 @@
      -'use strict';
      -
      -function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
      -function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
      -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
      -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
      -function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
      -function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
      -function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
      -var ERR_INVALID_ARG_TYPE = require('../../../errors').codes.ERR_INVALID_ARG_TYPE;
      -function from(Readable, iterable, opts) {
      -  var iterator;
      -  if (iterable && typeof iterable.next === 'function') {
      -    iterator = iterable;
      -  } else if (iterable && iterable[Symbol.asyncIterator]) iterator = iterable[Symbol.asyncIterator]();else if (iterable && iterable[Symbol.iterator]) iterator = iterable[Symbol.iterator]();else throw new ERR_INVALID_ARG_TYPE('iterable', ['Iterable'], iterable);
      -  var readable = new Readable(_objectSpread({
      -    objectMode: true
      -  }, opts));
      -  // Reading boolean to protect against _read
      -  // being called before last iteration completion.
      -  var reading = false;
      -  readable._read = function () {
      -    if (!reading) {
      -      reading = true;
      -      next();
      -    }
      -  };
      -  function next() {
      -    return _next2.apply(this, arguments);
      -  }
      -  function _next2() {
      -    _next2 = _asyncToGenerator(function* () {
      -      try {
      -        var _yield$iterator$next = yield iterator.next(),
      -          value = _yield$iterator$next.value,
      -          done = _yield$iterator$next.done;
      -        if (done) {
      -          readable.push(null);
      -        } else if (readable.push(yield value)) {
      -          next();
      -        } else {
      -          reading = false;
      -        }
      -      } catch (err) {
      -        readable.destroy(err);
      -      }
      -    });
      -    return _next2.apply(this, arguments);
      -  }
      -  return readable;
      -}
      -module.exports = from;
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/pipeline.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/pipeline.js
      deleted file mode 100644
      index e6f39241f98dd8..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/pipeline.js
      +++ /dev/null
      @@ -1,86 +0,0 @@
      -// Ported from https://github.com/mafintosh/pump with
      -// permission from the author, Mathias Buus (@mafintosh).
      -
      -'use strict';
      -
      -var eos;
      -function once(callback) {
      -  var called = false;
      -  return function () {
      -    if (called) return;
      -    called = true;
      -    callback.apply(void 0, arguments);
      -  };
      -}
      -var _require$codes = require('../../../errors').codes,
      -  ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS,
      -  ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED;
      -function noop(err) {
      -  // Rethrow the error if it exists to avoid swallowing it
      -  if (err) throw err;
      -}
      -function isRequest(stream) {
      -  return stream.setHeader && typeof stream.abort === 'function';
      -}
      -function destroyer(stream, reading, writing, callback) {
      -  callback = once(callback);
      -  var closed = false;
      -  stream.on('close', function () {
      -    closed = true;
      -  });
      -  if (eos === undefined) eos = require('./end-of-stream');
      -  eos(stream, {
      -    readable: reading,
      -    writable: writing
      -  }, function (err) {
      -    if (err) return callback(err);
      -    closed = true;
      -    callback();
      -  });
      -  var destroyed = false;
      -  return function (err) {
      -    if (closed) return;
      -    if (destroyed) return;
      -    destroyed = true;
      -
      -    // request.destroy just do .end - .abort is what we want
      -    if (isRequest(stream)) return stream.abort();
      -    if (typeof stream.destroy === 'function') return stream.destroy();
      -    callback(err || new ERR_STREAM_DESTROYED('pipe'));
      -  };
      -}
      -function call(fn) {
      -  fn();
      -}
      -function pipe(from, to) {
      -  return from.pipe(to);
      -}
      -function popCallback(streams) {
      -  if (!streams.length) return noop;
      -  if (typeof streams[streams.length - 1] !== 'function') return noop;
      -  return streams.pop();
      -}
      -function pipeline() {
      -  for (var _len = arguments.length, streams = new Array(_len), _key = 0; _key < _len; _key++) {
      -    streams[_key] = arguments[_key];
      -  }
      -  var callback = popCallback(streams);
      -  if (Array.isArray(streams[0])) streams = streams[0];
      -  if (streams.length < 2) {
      -    throw new ERR_MISSING_ARGS('streams');
      -  }
      -  var error;
      -  var destroys = streams.map(function (stream, i) {
      -    var reading = i < streams.length - 1;
      -    var writing = i > 0;
      -    return destroyer(stream, reading, writing, function (err) {
      -      if (!error) error = err;
      -      if (err) destroys.forEach(call);
      -      if (reading) return;
      -      destroys.forEach(call);
      -      callback(error);
      -    });
      -  });
      -  return streams.reduce(pipe);
      -}
      -module.exports = pipeline;
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/state.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/state.js
      deleted file mode 100644
      index 3fbf8927e00179..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/state.js
      +++ /dev/null
      @@ -1,22 +0,0 @@
      -'use strict';
      -
      -var ERR_INVALID_OPT_VALUE = require('../../../errors').codes.ERR_INVALID_OPT_VALUE;
      -function highWaterMarkFrom(options, isDuplex, duplexKey) {
      -  return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null;
      -}
      -function getHighWaterMark(state, options, duplexKey, isDuplex) {
      -  var hwm = highWaterMarkFrom(options, isDuplex, duplexKey);
      -  if (hwm != null) {
      -    if (!(isFinite(hwm) && Math.floor(hwm) === hwm) || hwm < 0) {
      -      var name = isDuplex ? duplexKey : 'highWaterMark';
      -      throw new ERR_INVALID_OPT_VALUE(name, hwm);
      -    }
      -    return Math.floor(hwm);
      -  }
      -
      -  // Default value
      -  return state.objectMode ? 16 : 16 * 1024;
      -}
      -module.exports = {
      -  getHighWaterMark: getHighWaterMark
      -};
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/stream-browser.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/stream-browser.js
      deleted file mode 100644
      index 9332a3fdae7060..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/stream-browser.js
      +++ /dev/null
      @@ -1 +0,0 @@
      -module.exports = require('events').EventEmitter;
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/stream.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/stream.js
      deleted file mode 100644
      index ce2ad5b6ee57f4..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/stream.js
      +++ /dev/null
      @@ -1 +0,0 @@
      -module.exports = require('stream');
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/package.json b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/package.json
      deleted file mode 100644
      index ade59e71aa0f17..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/package.json
      +++ /dev/null
      @@ -1,68 +0,0 @@
      -{
      -  "name": "readable-stream",
      -  "version": "3.6.2",
      -  "description": "Streams3, a user-land copy of the stream library from Node.js",
      -  "main": "readable.js",
      -  "engines": {
      -    "node": ">= 6"
      -  },
      -  "dependencies": {
      -    "inherits": "^2.0.3",
      -    "string_decoder": "^1.1.1",
      -    "util-deprecate": "^1.0.1"
      -  },
      -  "devDependencies": {
      -    "@babel/cli": "^7.2.0",
      -    "@babel/core": "^7.2.0",
      -    "@babel/polyfill": "^7.0.0",
      -    "@babel/preset-env": "^7.2.0",
      -    "airtap": "0.0.9",
      -    "assert": "^1.4.0",
      -    "bl": "^2.0.0",
      -    "deep-strict-equal": "^0.2.0",
      -    "events.once": "^2.0.2",
      -    "glob": "^7.1.2",
      -    "gunzip-maybe": "^1.4.1",
      -    "hyperquest": "^2.1.3",
      -    "lolex": "^2.6.0",
      -    "nyc": "^11.0.0",
      -    "pump": "^3.0.0",
      -    "rimraf": "^2.6.2",
      -    "tap": "^12.0.0",
      -    "tape": "^4.9.0",
      -    "tar-fs": "^1.16.2",
      -    "util-promisify": "^2.1.0"
      -  },
      -  "scripts": {
      -    "test": "tap -J --no-esm test/parallel/*.js test/ours/*.js",
      -    "ci": "TAP=1 tap --no-esm test/parallel/*.js test/ours/*.js | tee test.tap",
      -    "test-browsers": "airtap --sauce-connect --loopback airtap.local -- test/browser.js",
      -    "test-browser-local": "airtap --open --local -- test/browser.js",
      -    "cover": "nyc npm test",
      -    "report": "nyc report --reporter=lcov",
      -    "update-browser-errors": "babel -o errors-browser.js errors.js"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/nodejs/readable-stream"
      -  },
      -  "keywords": [
      -    "readable",
      -    "stream",
      -    "pipe"
      -  ],
      -  "browser": {
      -    "util": false,
      -    "worker_threads": false,
      -    "./errors": "./errors-browser.js",
      -    "./readable.js": "./readable-browser.js",
      -    "./lib/internal/streams/from.js": "./lib/internal/streams/from-browser.js",
      -    "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
      -  },
      -  "nyc": {
      -    "include": [
      -      "lib/**.js"
      -    ]
      -  },
      -  "license": "MIT"
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/readable-browser.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/readable-browser.js
      deleted file mode 100644
      index adbf60de832f9d..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/readable-browser.js
      +++ /dev/null
      @@ -1,9 +0,0 @@
      -exports = module.exports = require('./lib/_stream_readable.js');
      -exports.Stream = exports;
      -exports.Readable = exports;
      -exports.Writable = require('./lib/_stream_writable.js');
      -exports.Duplex = require('./lib/_stream_duplex.js');
      -exports.Transform = require('./lib/_stream_transform.js');
      -exports.PassThrough = require('./lib/_stream_passthrough.js');
      -exports.finished = require('./lib/internal/streams/end-of-stream.js');
      -exports.pipeline = require('./lib/internal/streams/pipeline.js');
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/readable.js b/deps/npm/node_modules/node-gyp/node_modules/readable-stream/readable.js
      deleted file mode 100644
      index 9e0ca120ded827..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/readable-stream/readable.js
      +++ /dev/null
      @@ -1,16 +0,0 @@
      -var Stream = require('stream');
      -if (process.env.READABLE_STREAM === 'disable' && Stream) {
      -  module.exports = Stream.Readable;
      -  Object.assign(module.exports, Stream);
      -  module.exports.Stream = Stream;
      -} else {
      -  exports = module.exports = require('./lib/_stream_readable.js');
      -  exports.Stream = Stream || exports;
      -  exports.Readable = exports;
      -  exports.Writable = require('./lib/_stream_writable.js');
      -  exports.Duplex = require('./lib/_stream_duplex.js');
      -  exports.Transform = require('./lib/_stream_transform.js');
      -  exports.PassThrough = require('./lib/_stream_passthrough.js');
      -  exports.finished = require('./lib/internal/streams/end-of-stream.js');
      -  exports.pipeline = require('./lib/internal/streams/pipeline.js');
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/signal-exit/LICENSE.txt b/deps/npm/node_modules/node-gyp/node_modules/signal-exit/LICENSE.txt
      deleted file mode 100644
      index eead04a12162dc..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/signal-exit/LICENSE.txt
      +++ /dev/null
      @@ -1,16 +0,0 @@
      -The ISC License
      -
      -Copyright (c) 2015, 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/signal-exit/index.js b/deps/npm/node_modules/node-gyp/node_modules/signal-exit/index.js
      deleted file mode 100644
      index 93703f369265c6..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/signal-exit/index.js
      +++ /dev/null
      @@ -1,202 +0,0 @@
      -// Note: since nyc uses this module to output coverage, any lines
      -// that are in the direct sync flow of nyc's outputCoverage are
      -// ignored, since we can never get coverage for them.
      -// grab a reference to node's real process object right away
      -var process = global.process
      -
      -const processOk = function (process) {
      -  return process &&
      -    typeof process === 'object' &&
      -    typeof process.removeListener === 'function' &&
      -    typeof process.emit === 'function' &&
      -    typeof process.reallyExit === 'function' &&
      -    typeof process.listeners === 'function' &&
      -    typeof process.kill === 'function' &&
      -    typeof process.pid === 'number' &&
      -    typeof process.on === 'function'
      -}
      -
      -// some kind of non-node environment, just no-op
      -/* istanbul ignore if */
      -if (!processOk(process)) {
      -  module.exports = function () {
      -    return function () {}
      -  }
      -} else {
      -  var assert = require('assert')
      -  var signals = require('./signals.js')
      -  var isWin = /^win/i.test(process.platform)
      -
      -  var EE = require('events')
      -  /* istanbul ignore if */
      -  if (typeof EE !== 'function') {
      -    EE = EE.EventEmitter
      -  }
      -
      -  var emitter
      -  if (process.__signal_exit_emitter__) {
      -    emitter = process.__signal_exit_emitter__
      -  } else {
      -    emitter = process.__signal_exit_emitter__ = new EE()
      -    emitter.count = 0
      -    emitter.emitted = {}
      -  }
      -
      -  // Because this emitter is a global, we have to check to see if a
      -  // previous version of this library failed to enable infinite listeners.
      -  // I know what you're about to say.  But literally everything about
      -  // signal-exit is a compromise with evil.  Get used to it.
      -  if (!emitter.infinite) {
      -    emitter.setMaxListeners(Infinity)
      -    emitter.infinite = true
      -  }
      -
      -  module.exports = function (cb, opts) {
      -    /* istanbul ignore if */
      -    if (!processOk(global.process)) {
      -      return function () {}
      -    }
      -    assert.equal(typeof cb, 'function', 'a callback must be provided for exit handler')
      -
      -    if (loaded === false) {
      -      load()
      -    }
      -
      -    var ev = 'exit'
      -    if (opts && opts.alwaysLast) {
      -      ev = 'afterexit'
      -    }
      -
      -    var remove = function () {
      -      emitter.removeListener(ev, cb)
      -      if (emitter.listeners('exit').length === 0 &&
      -          emitter.listeners('afterexit').length === 0) {
      -        unload()
      -      }
      -    }
      -    emitter.on(ev, cb)
      -
      -    return remove
      -  }
      -
      -  var unload = function unload () {
      -    if (!loaded || !processOk(global.process)) {
      -      return
      -    }
      -    loaded = false
      -
      -    signals.forEach(function (sig) {
      -      try {
      -        process.removeListener(sig, sigListeners[sig])
      -      } catch (er) {}
      -    })
      -    process.emit = originalProcessEmit
      -    process.reallyExit = originalProcessReallyExit
      -    emitter.count -= 1
      -  }
      -  module.exports.unload = unload
      -
      -  var emit = function emit (event, code, signal) {
      -    /* istanbul ignore if */
      -    if (emitter.emitted[event]) {
      -      return
      -    }
      -    emitter.emitted[event] = true
      -    emitter.emit(event, code, signal)
      -  }
      -
      -  // { : , ... }
      -  var sigListeners = {}
      -  signals.forEach(function (sig) {
      -    sigListeners[sig] = function listener () {
      -      /* istanbul ignore if */
      -      if (!processOk(global.process)) {
      -        return
      -      }
      -      // If there are no other listeners, an exit is coming!
      -      // Simplest way: remove us and then re-send the signal.
      -      // We know that this will kill the process, so we can
      -      // safely emit now.
      -      var listeners = process.listeners(sig)
      -      if (listeners.length === emitter.count) {
      -        unload()
      -        emit('exit', null, sig)
      -        /* istanbul ignore next */
      -        emit('afterexit', null, sig)
      -        /* istanbul ignore next */
      -        if (isWin && sig === 'SIGHUP') {
      -          // "SIGHUP" throws an `ENOSYS` error on Windows,
      -          // so use a supported signal instead
      -          sig = 'SIGINT'
      -        }
      -        /* istanbul ignore next */
      -        process.kill(process.pid, sig)
      -      }
      -    }
      -  })
      -
      -  module.exports.signals = function () {
      -    return signals
      -  }
      -
      -  var loaded = false
      -
      -  var load = function load () {
      -    if (loaded || !processOk(global.process)) {
      -      return
      -    }
      -    loaded = true
      -
      -    // This is the number of onSignalExit's that are in play.
      -    // It's important so that we can count the correct number of
      -    // listeners on signals, and don't wait for the other one to
      -    // handle it instead of us.
      -    emitter.count += 1
      -
      -    signals = signals.filter(function (sig) {
      -      try {
      -        process.on(sig, sigListeners[sig])
      -        return true
      -      } catch (er) {
      -        return false
      -      }
      -    })
      -
      -    process.emit = processEmit
      -    process.reallyExit = processReallyExit
      -  }
      -  module.exports.load = load
      -
      -  var originalProcessReallyExit = process.reallyExit
      -  var processReallyExit = function processReallyExit (code) {
      -    /* istanbul ignore if */
      -    if (!processOk(global.process)) {
      -      return
      -    }
      -    process.exitCode = code || /* istanbul ignore next */ 0
      -    emit('exit', process.exitCode, null)
      -    /* istanbul ignore next */
      -    emit('afterexit', process.exitCode, null)
      -    /* istanbul ignore next */
      -    originalProcessReallyExit.call(process, process.exitCode)
      -  }
      -
      -  var originalProcessEmit = process.emit
      -  var processEmit = function processEmit (ev, arg) {
      -    if (ev === 'exit' && processOk(global.process)) {
      -      /* istanbul ignore else */
      -      if (arg !== undefined) {
      -        process.exitCode = arg
      -      }
      -      var ret = originalProcessEmit.apply(this, arguments)
      -      /* istanbul ignore next */
      -      emit('exit', process.exitCode, null)
      -      /* istanbul ignore next */
      -      emit('afterexit', process.exitCode, null)
      -      /* istanbul ignore next */
      -      return ret
      -    } else {
      -      return originalProcessEmit.apply(this, arguments)
      -    }
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/signal-exit/package.json b/deps/npm/node_modules/node-gyp/node_modules/signal-exit/package.json
      deleted file mode 100644
      index e1a00311f9fbe5..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/signal-exit/package.json
      +++ /dev/null
      @@ -1,38 +0,0 @@
      -{
      -  "name": "signal-exit",
      -  "version": "3.0.7",
      -  "description": "when you want to fire an event no matter how a process exits.",
      -  "main": "index.js",
      -  "scripts": {
      -    "test": "tap",
      -    "snap": "tap",
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "prepublishOnly": "git push origin --follow-tags"
      -  },
      -  "files": [
      -    "index.js",
      -    "signals.js"
      -  ],
      -  "repository": {
      -    "type": "git",
      -    "url": "https://github.com/tapjs/signal-exit.git"
      -  },
      -  "keywords": [
      -    "signal",
      -    "exit"
      -  ],
      -  "author": "Ben Coe ",
      -  "license": "ISC",
      -  "bugs": {
      -    "url": "https://github.com/tapjs/signal-exit/issues"
      -  },
      -  "homepage": "https://github.com/tapjs/signal-exit",
      -  "devDependencies": {
      -    "chai": "^3.5.0",
      -    "coveralls": "^3.1.1",
      -    "nyc": "^15.1.0",
      -    "standard-version": "^9.3.1",
      -    "tap": "^15.1.1"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/signal-exit/signals.js b/deps/npm/node_modules/node-gyp/node_modules/signal-exit/signals.js
      deleted file mode 100644
      index 3bd67a8a554e30..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/signal-exit/signals.js
      +++ /dev/null
      @@ -1,53 +0,0 @@
      -// This is not the set of all possible signals.
      -//
      -// It IS, however, the set of all signals that trigger
      -// an exit on either Linux or BSD systems.  Linux is a
      -// superset of the signal names supported on BSD, and
      -// the unknown signals just fail to register, so we can
      -// catch that easily enough.
      -//
      -// Don't bother with SIGKILL.  It's uncatchable, which
      -// means that we can't fire any callbacks anyway.
      -//
      -// If a user does happen to register a handler on a non-
      -// fatal signal like SIGWINCH or something, and then
      -// exit, it'll end up firing `process.emit('exit')`, so
      -// the handler will be fired anyway.
      -//
      -// SIGBUS, SIGFPE, SIGSEGV and SIGILL, when not raised
      -// artificially, inherently leave the process in a
      -// state from which it is not safe to try and enter JS
      -// listeners.
      -module.exports = [
      -  'SIGABRT',
      -  'SIGALRM',
      -  'SIGHUP',
      -  'SIGINT',
      -  'SIGTERM'
      -]
      -
      -if (process.platform !== 'win32') {
      -  module.exports.push(
      -    'SIGVTALRM',
      -    'SIGXCPU',
      -    'SIGXFSZ',
      -    'SIGUSR2',
      -    'SIGTRAP',
      -    'SIGSYS',
      -    'SIGQUIT',
      -    'SIGIOT'
      -    // should detect profiler and enable/disable accordingly.
      -    // see #21
      -    // 'SIGPROF'
      -  )
      -}
      -
      -if (process.platform === 'linux') {
      -  module.exports.push(
      -    'SIGIO',
      -    'SIGPOLL',
      -    'SIGPWR',
      -    'SIGSTKFLT',
      -    'SIGUNUSED'
      -  )
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/which/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/which/LICENSE
      deleted file mode 100644
      index 19129e315fe593..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/which/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) Isaac Z. Schlueter and Contributors
      -
      -Permission to use, copy, modify, and/or distribute this software for any
      -purpose with or without fee is hereby granted, provided that the above
      -copyright notice and this permission notice appear in all copies.
      -
      -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
      -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/which/README.md b/deps/npm/node_modules/node-gyp/node_modules/which/README.md
      deleted file mode 100644
      index cd833509f3bcc9..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/which/README.md
      +++ /dev/null
      @@ -1,54 +0,0 @@
      -# which
      -
      -Like the unix `which` utility.
      -
      -Finds the first instance of a specified executable in the PATH
      -environment variable.  Does not cache the results, so `hash -r` is not
      -needed when the PATH changes.
      -
      -## USAGE
      -
      -```javascript
      -var which = require('which')
      -
      -// async usage
      -which('node', function (er, resolvedPath) {
      -  // er is returned if no "node" is found on the PATH
      -  // if it is found, then the absolute path to the exec is returned
      -})
      -
      -// or promise
      -which('node').then(resolvedPath => { ... }).catch(er => { ... not found ... })
      -
      -// sync usage
      -// throws if not found
      -var resolved = which.sync('node')
      -
      -// if nothrow option is used, returns null if not found
      -resolved = which.sync('node', {nothrow: true})
      -
      -// Pass options to override the PATH and PATHEXT environment vars.
      -which('node', { path: someOtherPath }, function (er, resolved) {
      -  if (er)
      -    throw er
      -  console.log('found at %j', resolved)
      -})
      -```
      -
      -## CLI USAGE
      -
      -Same as the BSD `which(1)` binary.
      -
      -```
      -usage: which [-as] program ...
      -```
      -
      -## OPTIONS
      -
      -You may pass an options object as the second argument.
      -
      -- `path`: Use instead of the `PATH` environment variable.
      -- `pathExt`: Use instead of the `PATHEXT` environment variable.
      -- `all`: Return all matches, instead of just the first one.  Note that
      -  this means the function returns an array of strings instead of a
      -  single string.
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/which/bin/node-which b/deps/npm/node_modules/node-gyp/node_modules/which/bin/node-which
      deleted file mode 100755
      index 7cee3729eebdd0..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/which/bin/node-which
      +++ /dev/null
      @@ -1,52 +0,0 @@
      -#!/usr/bin/env node
      -var which = require("../")
      -if (process.argv.length < 3)
      -  usage()
      -
      -function usage () {
      -  console.error('usage: which [-as] program ...')
      -  process.exit(1)
      -}
      -
      -var all = false
      -var silent = false
      -var dashdash = false
      -var args = process.argv.slice(2).filter(function (arg) {
      -  if (dashdash || !/^-/.test(arg))
      -    return true
      -
      -  if (arg === '--') {
      -    dashdash = true
      -    return false
      -  }
      -
      -  var flags = arg.substr(1).split('')
      -  for (var f = 0; f < flags.length; f++) {
      -    var flag = flags[f]
      -    switch (flag) {
      -      case 's':
      -        silent = true
      -        break
      -      case 'a':
      -        all = true
      -        break
      -      default:
      -        console.error('which: illegal option -- ' + flag)
      -        usage()
      -    }
      -  }
      -  return false
      -})
      -
      -process.exit(args.reduce(function (pv, current) {
      -  try {
      -    var f = which.sync(current, { all: all })
      -    if (all)
      -      f = f.join('\n')
      -    if (!silent)
      -      console.log(f)
      -    return pv;
      -  } catch (e) {
      -    return 1;
      -  }
      -}, 0))
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/which/package.json b/deps/npm/node_modules/node-gyp/node_modules/which/package.json
      deleted file mode 100644
      index 97ad7fbabc52b5..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/which/package.json
      +++ /dev/null
      @@ -1,43 +0,0 @@
      -{
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me)",
      -  "name": "which",
      -  "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
      -  "version": "2.0.2",
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/isaacs/node-which.git"
      -  },
      -  "main": "which.js",
      -  "bin": {
      -    "node-which": "./bin/node-which"
      -  },
      -  "license": "ISC",
      -  "dependencies": {
      -    "isexe": "^2.0.0"
      -  },
      -  "devDependencies": {
      -    "mkdirp": "^0.5.0",
      -    "rimraf": "^2.6.2",
      -    "tap": "^14.6.9"
      -  },
      -  "scripts": {
      -    "test": "tap",
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "prepublish": "npm run changelog",
      -    "prechangelog": "bash gen-changelog.sh",
      -    "changelog": "git add CHANGELOG.md",
      -    "postchangelog": "git commit -m 'update changelog - '${npm_package_version}",
      -    "postpublish": "git push origin --follow-tags"
      -  },
      -  "files": [
      -    "which.js",
      -    "bin/node-which"
      -  ],
      -  "tap": {
      -    "check-coverage": true
      -  },
      -  "engines": {
      -    "node": ">= 8"
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/node_modules/which/which.js b/deps/npm/node_modules/node-gyp/node_modules/which/which.js
      deleted file mode 100644
      index 82afffd2143749..00000000000000
      --- a/deps/npm/node_modules/node-gyp/node_modules/which/which.js
      +++ /dev/null
      @@ -1,125 +0,0 @@
      -const isWindows = process.platform === 'win32' ||
      -    process.env.OSTYPE === 'cygwin' ||
      -    process.env.OSTYPE === 'msys'
      -
      -const path = require('path')
      -const COLON = isWindows ? ';' : ':'
      -const isexe = require('isexe')
      -
      -const getNotFoundError = (cmd) =>
      -  Object.assign(new Error(`not found: ${cmd}`), { code: 'ENOENT' })
      -
      -const getPathInfo = (cmd, opt) => {
      -  const colon = opt.colon || COLON
      -
      -  // If it has a slash, then we don't bother searching the pathenv.
      -  // just check the file itself, and that's it.
      -  const pathEnv = cmd.match(/\//) || isWindows && cmd.match(/\\/) ? ['']
      -    : (
      -      [
      -        // windows always checks the cwd first
      -        ...(isWindows ? [process.cwd()] : []),
      -        ...(opt.path || process.env.PATH ||
      -          /* istanbul ignore next: very unusual */ '').split(colon),
      -      ]
      -    )
      -  const pathExtExe = isWindows
      -    ? opt.pathExt || process.env.PATHEXT || '.EXE;.CMD;.BAT;.COM'
      -    : ''
      -  const pathExt = isWindows ? pathExtExe.split(colon) : ['']
      -
      -  if (isWindows) {
      -    if (cmd.indexOf('.') !== -1 && pathExt[0] !== '')
      -      pathExt.unshift('')
      -  }
      -
      -  return {
      -    pathEnv,
      -    pathExt,
      -    pathExtExe,
      -  }
      -}
      -
      -const which = (cmd, opt, cb) => {
      -  if (typeof opt === 'function') {
      -    cb = opt
      -    opt = {}
      -  }
      -  if (!opt)
      -    opt = {}
      -
      -  const { pathEnv, pathExt, pathExtExe } = getPathInfo(cmd, opt)
      -  const found = []
      -
      -  const step = i => new Promise((resolve, reject) => {
      -    if (i === pathEnv.length)
      -      return opt.all && found.length ? resolve(found)
      -        : reject(getNotFoundError(cmd))
      -
      -    const ppRaw = pathEnv[i]
      -    const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw
      -
      -    const pCmd = path.join(pathPart, cmd)
      -    const p = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd
      -      : pCmd
      -
      -    resolve(subStep(p, i, 0))
      -  })
      -
      -  const subStep = (p, i, ii) => new Promise((resolve, reject) => {
      -    if (ii === pathExt.length)
      -      return resolve(step(i + 1))
      -    const ext = pathExt[ii]
      -    isexe(p + ext, { pathExt: pathExtExe }, (er, is) => {
      -      if (!er && is) {
      -        if (opt.all)
      -          found.push(p + ext)
      -        else
      -          return resolve(p + ext)
      -      }
      -      return resolve(subStep(p, i, ii + 1))
      -    })
      -  })
      -
      -  return cb ? step(0).then(res => cb(null, res), cb) : step(0)
      -}
      -
      -const whichSync = (cmd, opt) => {
      -  opt = opt || {}
      -
      -  const { pathEnv, pathExt, pathExtExe } = getPathInfo(cmd, opt)
      -  const found = []
      -
      -  for (let i = 0; i < pathEnv.length; i ++) {
      -    const ppRaw = pathEnv[i]
      -    const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw
      -
      -    const pCmd = path.join(pathPart, cmd)
      -    const p = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd
      -      : pCmd
      -
      -    for (let j = 0; j < pathExt.length; j ++) {
      -      const cur = p + pathExt[j]
      -      try {
      -        const is = isexe.sync(cur, { pathExt: pathExtExe })
      -        if (is) {
      -          if (opt.all)
      -            found.push(cur)
      -          else
      -            return cur
      -        }
      -      } catch (ex) {}
      -    }
      -  }
      -
      -  if (opt.all && found.length)
      -    return found
      -
      -  if (opt.nothrow)
      -    return null
      -
      -  throw getNotFoundError(cmd)
      -}
      -
      -module.exports = which
      -which.sync = whichSync
      diff --git a/deps/npm/node_modules/node-gyp/package.json b/deps/npm/node_modules/node-gyp/package.json
      index 7e9fb648ab0825..80c63f2e72c3d9 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.4.0",
      +  "version": "10.0.1",
         "installVersion": 11,
         "author": "Nathan Rajlich  (http://tootallnate.net)",
         "repository": {
      @@ -24,28 +24,28 @@
         "dependencies": {
           "env-paths": "^2.2.0",
           "exponential-backoff": "^3.1.1",
      -    "glob": "^7.1.4",
      +    "glob": "^10.3.10",
           "graceful-fs": "^4.2.6",
      -    "make-fetch-happen": "^11.0.3",
      -    "nopt": "^6.0.0",
      -    "npmlog": "^6.0.0",
      -    "rimraf": "^3.0.2",
      +    "make-fetch-happen": "^13.0.0",
      +    "nopt": "^7.0.0",
      +    "proc-log": "^3.0.0",
           "semver": "^7.3.5",
           "tar": "^6.1.2",
      -    "which": "^2.0.2"
      +    "which": "^4.0.0"
         },
         "engines": {
      -    "node": "^12.13 || ^14.13 || >=16"
      +    "node": "^16.14.0 || >=18.0.0"
         },
         "devDependencies": {
           "bindings": "^1.5.0",
      +    "cross-env": "^7.0.3",
           "mocha": "^10.2.0",
           "nan": "^2.14.2",
           "require-inject": "^1.4.4",
      -    "standard": "^14.3.4"
      +    "standard": "^17.0.0"
         },
         "scripts": {
      -    "lint": "standard */*.js test/**/*.js",
      -    "test": "npm run lint && mocha --reporter=test/reporter.js test/test-download.js test/test-*"
      +    "lint": "standard \"*/*.js\" \"test/**/*.js\" \".github/**/*.js\"",
      +    "test": "cross-env NODE_GYP_NULL_LOGGER=true mocha --timeout 15000 test/test-download.js test/test-*"
         }
       }
      diff --git a/deps/npm/node_modules/node-gyp/test/common.js b/deps/npm/node_modules/node-gyp/test/common.js
      deleted file mode 100644
      index b714ee29029d36..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/common.js
      +++ /dev/null
      @@ -1,3 +0,0 @@
      -const envPaths = require('env-paths')
      -
      -module.exports.devDir = () => envPaths('node-gyp', { suffix: '' }).cache
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_BuildTools_minimal.txt b/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_BuildTools_minimal.txt
      deleted file mode 100644
      index 244f6b07982409..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_BuildTools_minimal.txt
      +++ /dev/null
      @@ -1 +0,0 @@
      -[{"path":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools","version":"15.9.28307.665","packages":["Microsoft.VisualStudio.Product.BuildTools","Microsoft.VisualStudio.Component.VC.CoreIde","Microsoft.VisualStudio.VC.Ide.Pro","Microsoft.VisualStudio.VC.Ide.Pro.Resources","Microsoft.VisualStudio.VC.Templates.Pro","Microsoft.VisualStudio.VC.Templates.Pro.Resources","Microsoft.VisualStudio.VC.Items.Pro","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Reduced","Microsoft.VisualStudio.VC.Ide.MDD","Microsoft.VisualStudio.VC.Ide.x64","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Express","Microsoft.VisualStudio.PackageGroup.Debugger.Script","Microsoft.VisualStudio.JavaScript.LanguageService","Microsoft.VisualStudio.JavaScript.LanguageService.Resources","Microsoft.VisualStudio.Debugger.Script.Msi","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.VC.Ide.WinXPlus","Microsoft.VisualStudio.VC.Ide.Dskx","Microsoft.VisualStudio.VC.Ide.Dskx.Resources","Microsoft.VisualStudio.VC.Ide.Core","Microsoft.VisualStudio.VC.Ide.Core.Resources","Microsoft.VisualStudio.VC.Ide.Base","Microsoft.VisualStudio.VC.Ide.LanguageService","Microsoft.VisualStudio.VC.Ide.ResourceEditor","Microsoft.VisualStudio.VC.Ide.ResourceEditor.Resources","Microsoft.VisualStudio.VC.Ide.ProjectSystem","Microsoft.VisualStudio.VC.Ide.ProjectSystem.Resources","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine.Resources","Microsoft.VisualStudio.VC.Ide.LanguageService.Resources","Microsoft.VisualStudio.VC.Ide.Base.Resources","Microsoft.VisualStudio.PackageGroup.Core","Microsoft.VisualStudio.TestTools.TeamFoundationClient","Microsoft.VisualStudio.PackageGroup.Debugger.Core","Microsoft.VisualStudio.Debugger.VSCodeDebuggerHost","Microsoft.VisualStudio.VC.Ide.Debugger","Microsoft.VisualStudio.VC.Ide.Debugger.Resources","Microsoft.VisualStudio.VC.Ide.Common","Microsoft.VisualStudio.VC.Ide.Common.Resources","Microsoft.VisualStudio.Debugger.Parallel","Microsoft.VisualStudio.Debugger.Parallel.Resources","Microsoft.VisualStudio.Debugger.CollectionAgents","Microsoft.VisualStudio.Debugger.Managed","Microsoft.CodeAnalysis.VisualStudio.Setup.Resources","Microsoft.CodeAnalysis.VisualStudio.Setup","Microsoft.CodeAnalysis.ExpressionEvaluator.Resources","Microsoft.CodeAnalysis.ExpressionEvaluator","Microsoft.VisualStudio.Debugger.Managed.Resources","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger","Microsoft.VisualStudio.VC.MSVCDis","Microsoft.VisualStudio.ScriptedHost","Microsoft.VisualStudio.ScriptedHost.Targeted","Microsoft.VisualStudio.ScriptedHost.Resources","Microsoft.IntelliTrace.DiagnosticsHub","Microsoft.VisualStudio.Debugger.Resources","Microsoft.PackageGroup.ClientDiagnostics","Microsoft.VisualStudio.AppResponsiveness","Microsoft.VisualStudio.AppResponsiveness.Targeted","Microsoft.VisualStudio.AppResponsiveness.Resources","Microsoft.VisualStudio.ClientDiagnostics","Microsoft.VisualStudio.ClientDiagnostics.Targeted","Microsoft.VisualStudio.ClientDiagnostics.Resources","Microsoft.VisualStudio.PackageGroup.CommunityCore","Microsoft.VisualStudio.ProjectSystem.Full","Microsoft.VisualStudio.ProjectSystem","Microsoft.VisualStudio.Community.x86","Microsoft.VisualStudio.Community.x64","Microsoft.VisualStudio.Community","Microsoft.IntelliTrace.CollectorCab","Microsoft.VisualStudio.Community.Resources","Microsoft.VisualStudio.WebSiteProject.DTE","Microsoft.MSHtml","Microsoft.VisualStudio.Community.Msi.Resources","Microsoft.VisualStudio.Community.Msi","Microsoft.VisualStudio.MinShell.Interop.Msi","Microsoft.VisualStudio.PackageGroup.CoreEditor","PortableFacades","Microsoft.VisualStudio.VirtualTree","Microsoft.VisualStudio.PackageGroup.Progression","Microsoft.VisualStudio.PerformanceProvider","Microsoft.VisualStudio.GraphModel","Microsoft.VisualStudio.GraphProvider","Microsoft.DiaSymReader","Microsoft.VisualStudio.TextMateGrammars","Microsoft.VisualStudio.PackageGroup.TeamExplorer","Microsoft.TeamFoundation.OfficeIntegration","Microsoft.TeamFoundation.OfficeIntegration.Resources","Microsoft.VisualStudio.TeamExplorer","Microsoft.ServiceHub","Microsoft.VisualStudio.ProjectServices","Microsoft.VisualStudio.SLNX.VSIX","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.PackageGroup.MinShell","Microsoft.VisualStudio.MinShell.Msi","Microsoft.VisualStudio.MinShell.Msi.Resources","Microsoft.VisualStudio.MinShell.Interop","Microsoft.VisualStudio.Log","Microsoft.VisualStudio.Log.Targeted","Microsoft.VisualStudio.Log.Resources","Microsoft.VisualStudio.Finalizer","Microsoft.VisualStudio.CoreEditor","Microsoft.VisualStudio.Connected","Microsoft.VisualStudio.Connected.Resources","Microsoft.VisualStudio.MinShell","Microsoft.VisualStudio.MinShell.Platform","Microsoft.VisualStudio.MinShell.Platform.Resources","Microsoft.VisualStudio.MefHosting","Microsoft.VisualStudio.MefHosting.Resources","Microsoft.VisualStudio.Initializer","Microsoft.VisualStudio.ExtensionManager","Microsoft.VisualStudio.Editors","Microsoft.Net.4.TargetingPack","Microsoft.VisualStudio.Component.Windows10SDK.17134","Win10SDK_10.0.17134","Microsoft.VisualStudio.Component.VC.Tools.x86.x64","Microsoft.VisualCpp.CodeAnalysis.Extensions","Microsoft.VisualCpp.CodeAnalysis.Extensions.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86.Resources","Microsoft.VisualCpp.CodeAnalysis.Extensions.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64.Resources","Microsoft.VisualStudio.Component.Static.Analysis.Tools","Microsoft.VisualStudio.StaticAnalysis","Microsoft.VisualStudio.StaticAnalysis.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX86","Microsoft.VisualCpp.VCTip.HostX64.TargetX86","Microsoft.VisualCpp.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX64","Microsoft.VisualCpp.VCTip.HostX64.TargetX64","Microsoft.VisualCpp.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX64","Microsoft.VisualCpp.Premium.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.PGO.X86","Microsoft.VisualCpp.PGO.X64","Microsoft.VisualCpp.PGO.Headers","Microsoft.VisualCpp.CRT.x86.Store","Microsoft.VisualCpp.CRT.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.x64.Store","Microsoft.VisualCpp.CRT.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.ClickOnce.Msi","Microsoft.VisualStudio.PackageGroup.VC.Tools.x86","Microsoft.VisualCpp.Tools.HostX86.TargetX64","Microsoft.VisualCpp.VCTip.hostX86.targetX64","Microsoft.VisualCpp.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Tools.HostX86.TargetX86","Microsoft.VisualCpp.VCTip.hostX86.targetX86","Microsoft.VisualCpp.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Tools.Core.Resources","Microsoft.VisualCpp.Tools.Core.x86","Microsoft.VisualCpp.Tools.Common.Utils","Microsoft.VisualCpp.Tools.Common.Utils.Resources","Microsoft.VisualCpp.DIA.SDK","Microsoft.VisualCpp.CRT.x86.Desktop","Microsoft.VisualCpp.CRT.x64.Desktop","Microsoft.VisualCpp.CRT.Source","Microsoft.VisualCpp.CRT.Redist.X86","Microsoft.VisualCpp.CRT.Redist.X64","Microsoft.VisualCpp.CRT.Redist.Resources","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.CRT.Headers","Microsoft.VisualStudio.VC.MSBuild.X86","Microsoft.VisualStudio.VC.MSBuild.X64","Microsoft.VS.VC.MSBuild.X64.Resources","Microsoft.VisualStudio.VC.MSBuild.Base","Microsoft.VisualStudio.VC.MSBuild.Base.Resources","Microsoft.VisualStudio.VC.MSBuild.ARM","Microsoft.VisualStudio.Workload.MSBuildTools","Microsoft.VisualStudio.Component.CoreBuildTools","Microsoft.VisualStudio.Setup.Configuration","Microsoft.VisualStudio.PackageGroup.VsDevCmd","Microsoft.VisualStudio.VsDevCmd.Ext.NetFxSdk","Microsoft.VisualStudio.VsDevCmd.Core.WinSdk","Microsoft.VisualStudio.VsDevCmd.Core.DotNet","Microsoft.VisualStudio.VC.DevCmd","Microsoft.VisualStudio.VC.DevCmd.Resources","Microsoft.VisualStudio.BuildTools.Resources","Microsoft.VisualStudio.Net.Eula.Resources","Microsoft.Build.Dependencies","Microsoft.Build.FileTracker.Msi","Microsoft.Component.MSBuild","Microsoft.PythonTools.BuildCore.Vsix","Microsoft.NuGet.Build.Tasks","Microsoft.VisualStudio.Component.Roslyn.Compiler","Microsoft.CodeAnalysis.Compilers.Resources","Microsoft.CodeAnalysis.Compilers","Microsoft.Net.PackageGroup.4.6.1.Redist","Microsoft.VisualStudio.NativeImageSupport","Microsoft.Build"]}]
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_Community_workload.txt b/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_Community_workload.txt
      deleted file mode 100644
      index dd5e77dafb9dfe..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_Community_workload.txt
      +++ /dev/null
      @@ -1 +0,0 @@
      -[{"path":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community","version":"15.9.28307.665","packages":["Microsoft.VisualStudio.Component.Windows10SDK.IpOverUsb","Win10SDK_IpOverUsb","Microsoft.VisualStudio.Component.VC.ATL.ARM64","Microsoft.VisualCpp.ATL.ARM64","Microsoft.VisualStudio.Component.VC.ATL.ARM","Microsoft.VisualCpp.ATL.ARM","Microsoft.VisualStudio.Component.VC.Tools.ARM","Microsoft.VisualCpp.Tools.HostX64.TargetX86.Resources","Microsoft.VisualStudio.Graphics.Analyzer.Resources","Microsoft.Icecap.Analysis","Microsoft.VisualCpp.CRT.Redist.arm.OneCore.Desktop","Microsoft.VisualCpp.CRT.arm.Store","Microsoft.VisualCpp.CRT.arm.Desktop","Microsoft.VisualStudio.PackageGroup.VC.Tools.x64.ARM","Microsoft.VisualCpp.Premium.Tools.Hostx86.Targetarm","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetARM.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetARM","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetARM.Resources","Microsoft.VisualCpp.Premium.Tools.ARM.Base","Microsoft.VisualCpp.Premium.Tools.ARM.Base.Resources","Microsoft.VisualCpp.PGO.ARM","Microsoft.VisualCpp.Tools.HostX64.TargetX64","Microsoft.VisualStudio.Product.Community","Microsoft.VisualCpp.Tools.Hostx86.Targetarm","Microsoft.VisualStudio.Component.VC.Tools.ARM64","Microsoft.VisualStudio.VC.MSBuild.Arm64","Microsoft.VisualCpp.CRT.Redist.ARM64.OneCore.Desktop","Microsoft.VisualCpp.VCTip.HostX64.TargetX64","Microsoft.VisualCpp.CRT.ARM64.OneCore.Desktop","Microsoft.VisualCpp.CRT.ARM64.Store","Microsoft.VisualCpp.CRT.ARM64.Desktop","Microsoft.VisualCpp.Tools.HostX64.TargetX64.Resources","Microsoft.Icecap.Analysis.Resources","Microsoft.VisualCpp.VCTip.hostX86.targetARM","Microsoft.VisualStudio.PackageGroup.VC.Tools.x64.ARM64","Microsoft.VisualCpp.Tools.Core","Microsoft.VisualCpp.PGO.ARM64","Microsoft.VisualCpp.Premium.Tools.Hostx86.Targetarm64","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetARM64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetARM64","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetARM64.Resources","Microsoft.VisualCpp.Premium.Tools.ARM64.Base","Microsoft.VisualCpp.Tools.HostX86.TargetX64","Microsoft.VisualCpp.Tools.HostX86.TargetARM.Resources","Microsoft.VisualCpp.CRT.Redist.ARM64","Microsoft.VisualCpp.CRT.arm.OneCore.Desktop","Microsoft.VisualCpp.CodeAnalysis.Extensions.X86","Microsoft.VisualCpp.CodeAnalysis.Extensions.X64","Microsoft.VisualCpp.VCTip.HostX64.TargetX86","Component.WixToolset.VisualStudioExtension.Dev15","WixToolset.VisualStudioExtension.Dev15","Microsoft.VisualCpp.MFC.X64","Microsoft.VisualCpp.ATL.Headers","Microsoft.VisualStudio.Component.VC.CMake.Project","Microsoft.VisualStudio.VC.CMake","Microsoft.VisualStudio.VC.CMake.Project","Microsoft.VisualStudio.Component.Windows10SDK.17763","Microsoft.VisualStudio.VC.MSBuild.Base.Resources","MLGen","Microsoft.VisualStudio.Graphics.Analyzer","Microsoft.VisualStudio.Component.TestTools.Core","Microsoft.VisualCpp.Tools.Core.x86","Microsoft.VisualCpp.CRT.x86.OneCore.Desktop","Microsoft.VisualCpp.DIA.SDK","Microsoft.VisualCpp.CRT.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.ClickOnce.Msi","Microsoft.VisualStudio.NuGet.Licenses","SQLCommon","Microsoft.VisualStudio.VC.MSBuild.X86","Microsoft.VisualCpp.Tools.HostX64.TargetARM","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64.Resources","Microsoft.VisualCpp.HTMLHelpWorkshop.Msi","Microsoft.Icecap.Collection.Msi.Resources","Microsoft.VisualCpp.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.VCTip.hostX64.targetARM","Microsoft.VisualStudio.VC.Ide.Dskx.Resources","Microsoft.VisualStudio.VC.Templates.UnitTest","Microsoft.VisualStudio.TestTools.TestPlatform.V1.CPP","Microsoft.VisualStudio.VC.Ide.Core","Microsoft.VisualStudio.Graphics.Appid","Microsoft.VisualCpp.ATL.Source","Microsoft.VisualStudio.VC.Ide.Core.Resources","Microsoft.VisualStudio.Debugger.ImmersiveActivateHelper.Msi","Microsoft.VisualStudio.Debugger.JustInTime","Microsoft.DiagnosticsHub.CpuSampling","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Common","Microsoft.VisualStudio.TestTools.TP.Legacy.Common.Res","Microsoft.VisualStudio.ProTools.Resources","Microsoft.VisualStudio.Community.Msi","Microsoft.VisualCpp.Tools.HostX64.TargetARM.Resources","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Agent","Microsoft.Component.MSBuild","Microsoft.VisualStudio.Graphics.Msi","Microsoft.VisualStudio.WebToolsExtensions","Microsoft.VisualCpp.Tools.Hostx86.Targetarm64","Microsoft.VisualStudio.TextTemplating.MSBuild","Microsoft.VisualCpp.VCTip.hostX86.targetARM64","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine","Microsoft.VisualCpp.Tools.HostX86.TargetARM64.Resources","Microsoft.VisualStudio.RazorExtension","Microsoft.VisualCpp.CRT.x86.Store","Microsoft.VisualCpp.Tools.Core.Resources","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualCpp.MFC.Source","Microsoft.VisualCpp.CRT.x86.Desktop","Microsoft.VisualStudio.VC.MSBuild.X64","Microsoft.VisualStudio.VC.Items.Pro","Microsoft.VisualStudio.Graphics.Viewers","Microsoft.VisualCpp.CRT.x64.Desktop","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86.Resources","Microsoft.VisualCpp.MFC.Redist.X86","Microsoft.VisualStudio.WebToolsExtensions.Chip","Microsoft.DiagnosticsHub.Runtime.Resources","Microsoft.DiagnosticsHub.CpuSampling.Targeted","Microsoft.VisualStudio.VC.Ide.LanguageService.Resources","Microsoft.VisualStudio.Component.VC.DiagnosticTools","Microsoft.VisualCpp.MFC.Redist.X64","Microsoft.VisualStudio.PackageGroup.TestTools.Native","Microsoft.VisualStudio.Graphics.Viewers.Resources","Microsoft.VisualCpp.MFC.MBCS","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Component.TextTemplating","Win10SDK_10.0.17763","Microsoft.VisualStudio.VC.Ide.Base.Resources","Microsoft.VisualCpp.MFC.MBCS.X64","Microsoft.VisualStudio.PackageGroup.TestTools.CodeCoverage","Microsoft.VisualStudio.Graphics.EnableTools","Microsoft.VisualStudio.Graphics.Appid.Resources","Microsoft.VisualStudio.VC.MSBuild.Base","Microsoft.VisualStudio.VC.MSBuild.ARM","Microsoft.VisualCpp.MFC.Headers","Microsoft.VisualCpp.CRT.Redist.x86.OneCore.Desktop","Microsoft.VisualCpp.Tools.HostX86.TargetX86","Microsoft.VisualStudio.VC.Ide.Base","Microsoft.VisualStudio.Graphics.Analyzer.Targeted","Microsoft.VisualCpp.CRT.Headers","Microsoft.DiagnosticsHub.Runtime.Targeted","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86","Microsoft.VisualCpp.Tools.HostX64.TargetARM64","Microsoft.VisualCpp.VCTip.hostX64.targetARM64","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86.Resources","Microsoft.Icecap.Collection.Msi","Microsoft.VisualCpp.ATL.X86","Microsoft.VisualCpp.Tools.HostX64.TargetARM64.Resources","Microsoft.VisualStudio.Component.VC.ATLMFC","Microsoft.VisualCpp.VCTip.hostX86.targetX86","Microsoft.Icecap.Collection.Msi.Resources.Targeted","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86","Microsoft.VisualStudio.Component.Graphics.Tools","Microsoft.VisualStudio.WebTools.Resources","Microsoft.VisualCpp.ATL.X64","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86.Resources","Microsoft.VisualStudio.Component.Graphics.Win81","Microsoft.VisualStudio.VC.Ide.MDD","Microsoft.VisualStudio.VC.Ide.ResourceEditor","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64","Microsoft.Icecap.Analysis.Resources.Targeted","Microsoft.VisualStudio.Debugger.Script.Msi","Microsoft.VisualStudio.Component.VC.CoreIde","Microsoft.VisualStudio.VC.Ide.MFC.Resources","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.PackageGroup.VC.Tools.x86","Microsoft.VisualStudio.TextTemplating.Core","Microsoft.VisualStudio.JavaScript.LanguageService","Microsoft.VisualStudio.VC.Ide.ResourceEditor.Resources","Microsoft.VisualStudio.VC.Ide.ProjectSystem.Resources","Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest","Microsoft.VisualStudio.VC.Ide.ProjectSystem","Microsoft.VisualStudio.VC.Ide.Dskx","Microsoft.VisualCpp.Tools.HostX86.TargetX86.Resources","Microsoft.CredentialProvider","Microsoft.VisualStudio.VC.Templates.Desktop","Microsoft.VisualStudio.VC.Ide.Pro.Resources","Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core","Microsoft.VisualStudio.TextTemplating.Integration","Microsoft.VisualStudio.Component.NuGet","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Reduced","Microsoft.VisualCpp.PGO.Headers","Microsoft.DiagnosticsHub.Collection","Microsoft.Icecap.Collection.Msi.Targeted","Microsoft.VisualStudio.VC.Ide.LanguageService","Microsoft.VisualStudio.WebTools.WSP.FSA","Microsoft.VisualStudio.Graphics.Msi","Microsoft.VisualCpp.CRT.Redist.X86","Microsoft.VisualStudio.Branding.Community","Microsoft.VisualStudio.VC.Ide.x64","Microsoft.VisualStudio.WebToolsExtensions.Common","Microsoft.VisualStudio.WebTools.MSBuild","Microsoft.VisualStudio.NuGet.Core","Microsoft.DiagnosticsHub.Collection.Service","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine.Resources","Microsoft.CodeAnalysis.ExpressionEvaluator","Microsoft.VisualCpp.CRT.Redist.X64","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VS.VC.MSBuild.X64.Resources","Microsoft.VisualCpp.CRT.Source","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips.Resources","Microsoft.VisualStudio.VC.Ide.WinXPlus","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.Redist.14.Latest","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX64","Microsoft.VisualCpp.CRT.Redist.Resources","Microsoft.VisualCpp.Redist.14.Latest","Microsoft.Net.4.TargetingPack","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualCpp.CRT.x64.Store","Microsoft.VisualStudio.VC.Ide.Debugger.Resources","Microsoft.DiaSymReader.Native","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.Redist.14","Microsoft.VisualStudio.StaticAnalysis","Microsoft.VisualStudio.TestTools.TeamFoundationClient","Microsoft.VisualStudio.TestTools.TestPlatform.V1.CLI","Microsoft.VisualStudio.VC.Ide.Common","Microsoft.VisualStudio.Community.Extra.Resources","Microsoft.VisualStudio.Component.Roslyn.LanguageServices","Microsoft.DiagnosticsHub.Collection.StopService.Install","Microsoft.VisualStudio.InteractiveWindow","Microsoft.PackageGroup.DiagnosticsHub.Platform","Microsoft.VisualStudio.StaticAnalysis.Resources","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.VC.Ide.Common.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX86","Microsoft.VisualStudio.VC.DevCmd","Microsoft.VisualStudio.Community.Extra","Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Msi","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.TestTools","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core.Resources","Microsoft.VisualStudio.PackageGroup.TestTools.Core","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V2.CLI","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V1.CLI","Microsoft.VisualStudio.Component.VC.Tools.x86.x64","Microsoft.VisualStudio.TestTools.Pex.Common","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.Legacy","Microsoft.VisualStudio.PackageGroup.MinShell.Interop","Microsoft.CodeAnalysis.ExpressionEvaluator.Resources","Microsoft.VisualCpp.CodeAnalysis.Extensions","Microsoft.VisualStudio.PackageGroup.CoreEditor","Microsoft.VisualStudio.Component.Roslyn.Compiler","Microsoft.VisualStudio.ScriptedHost.Targeted","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Professional","Microsoft.VisualStudio.Debugger.Resources","Microsoft.VisualStudio.Debugger.Parallel","Microsoft.VisualStudio.Debugger.Parallel.Resources","Microsoft.VisualCpp.PGO.X64","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.IDE","Microsoft.VisualStudio.GraphModel","Microsoft.VisualStudio.PackageGroup.TestTools.DataCollectors","sqlsysclrtypes","Microsoft.VisualStudio.ProTools","Component.Microsoft.VisualStudio.RazorExtension","Microsoft.VisualStudio.TestTools.TestPlatform.V2.CLI","Microsoft.Build.Dependencies","Microsoft.VisualStudio.WebTools.WSP.FSA.Resources","Microsoft.VisualStudio.Component.Static.Analysis.Tools","Microsoft.VisualStudio.VC.Ide.ATL.Resources","Microsoft.VisualStudio.VC.Templates.UnitTest.Resources","Microsoft.VisualStudio.Debugger.Managed","Microsoft.VisualStudio.Workload.NativeDesktop","Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest","Microsoft.VisualStudio.Debugger.JustInTime.Msi","Microsoft.Net.PackageGroup.4.6.1.Redist","Microsoft.VisualStudio.Debugger.VSCodeDebuggerHost","sqlsysclrtypes","Microsoft.VisualStudio.Debugger.Managed.Resources","Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Common","Microsoft.VisualStudio.VC.Ide.Debugger","Microsoft.VisualStudio.AppResponsiveness","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.TestTools.TestWIExtension","Microsoft.VisualStudio.VC.Ide.Pro","Microsoft.VisualStudio.PackageGroup.Debugger.Core","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Express","Microsoft.VisualStudio.WebTools","Microsoft.VisualStudio.Component.VC.Redist.14.Latest","Microsoft.VisualStudio.VsDevCmd.Core.WinSdk","Microsoft.VisualStudio.TestTools.TestPlatform.IDE","Microsoft.VisualStudio.TextTemplating.Integration.Resources","Microsoft.VisualStudio.Debugger.CollectionAgents","Microsoft.VisualStudio.Debugger","Microsoft.VisualStudio.PackageGroup.Debugger.Script","Microsoft.VisualStudio.VC.MSVCDis","Microsoft.VisualStudio.ScriptedHost","Microsoft.VisualStudio.ClientDiagnostics.Targeted","Microsoft.VisualStudio.ScriptedHost.Resources","Microsoft.TeamFoundation.OfficeIntegration.Resources","Microsoft.IntelliTrace.DiagnosticsHub","Microsoft.VisualStudio.JavaScript.LanguageService.Resources","Microsoft.VisualStudio.VC.Ide.TestAdapterForGoogleTest","Microsoft.VisualStudio.PackageGroup.Community","Microsoft.VisualStudio.ClientDiagnostics","Microsoft.VisualStudio.Component.Windows10SDK.17134","Microsoft.VisualStudio.PackageGroup.Core","PortableFacades","Microsoft.DiaSymReader","Microsoft.DiagnosticsHub.Runtime","Microsoft.VisualStudio.Component.CoreEditor","Microsoft.VisualStudio.AppResponsiveness.Targeted","Microsoft.VisualStudio.AppResponsiveness.Resources","Microsoft.VisualStudio.Community","Microsoft.TeamFoundation.OfficeIntegration","Microsoft.VisualStudio.WebSiteProject.DTE","Microsoft.VisualStudio.ClientDiagnostics.Resources","Microsoft.VisualStudio.ProjectSystem.Full","Microsoft.VisualStudio.ProjectSystem","Microsoft.VisualCpp.Tools.Common.UtilsPrereq","Microsoft.IntelliTrace.CollectorCab","Microsoft.VisualStudio.Community.Resources","Microsoft.VisualCpp.Tools.Common.Utils","Microsoft.ServiceHub","Microsoft.VisualStudio.Editors","Microsoft.VisualStudio.TeamExplorer","Microsoft.CodeAnalysis.VisualStudio.InteractiveComponents.Resources","Microsoft.VisualStudio.MinShell.Interop.Msi","Microsoft.VisualStudio.GraphProvider","Microsoft.CodeAnalysis.VisualStudio.InteractiveComponents","Microsoft.CodeAnalysis.VisualStudio.Setup.Interactive.Resources","Microsoft.CodeAnalysis.VisualStudio.Setup.Resources","Microsoft.VisualStudio.Community.x86","Microsoft.VisualStudio.Community.x64","Microsoft.CodeAnalysis.VisualStudio.Setup","Microsoft.NuGet.Build.Tasks","Microsoft.PackageGroup.ClientDiagnostics","Microsoft.CodeAnalysis.Compilers.Resources","Microsoft.CodeAnalysis.Compilers","Microsoft.VisualCpp.Tools.Common.Utils.Resources","Microsoft.VisualStudio.Net.Eula.Resources","Microsoft.VisualStudio.PackageGroup.CommunityCore","Microsoft.Build","Microsoft.VisualStudio.VC.Ide.TestAdapterForBoostTest","Microsoft.VisualStudio.VC.Ide.ATL","Microsoft.VisualStudio.TextMateGrammars","Microsoft.VisualStudio.Workload.CoreEditor","Microsoft.VisualStudio.MinShell.Interop","Microsoft.Build.FileTracker.Msi","Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core","Microsoft.MSHtml","Microsoft.VisualStudio.Community.Msi.Resources","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips","Microsoft.VisualStudio.Devenv.Msi","Microsoft.VisualStudio.Component.VC.ATL","Microsoft.VisualStudio.VC.Templates.Pro","Microsoft.VisualCpp.CRT.Redist.x64.OneCore.Desktop","Microsoft.VisualStudio.SLNX.VSIX","Microsoft.VisualStudio.CoreEditor","Win10SDK_10.0.17134","Microsoft.VisualStudio.VsDevCmd.Ext.NetFxSdk","Microsoft.VisualStudio.Component.Debugger.JustInTime","Microsoft.VisualStudio.VC.Ide.MFC","Microsoft.VisualStudio.VsDevCmd.Core.DotNet","Microsoft.VisualStudio.PackageGroup.VsDevCmd","Microsoft.VisualStudio.Finalizer","Microsoft.VisualStudio.VirtualTree","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.ProjectServices","Microsoft.VisualStudio.VC.DevCmd.Resources","Microsoft.VisualStudio.MinShell","Microsoft.VisualStudio.PackageGroup.Progression","Microsoft.VisualStudio.PerformanceProvider","Microsoft.VisualStudio.Connected.Resources","Microsoft.VisualStudio.Log","Microsoft.VisualStudio.PackageGroup.TeamExplorer","Microsoft.VisualStudio.Log.Targeted","Microsoft.VisualStudio.MinShell.Platform","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.VC.Templates.Pro.Resources","Microsoft.VisualStudio.Devenv","Microsoft.VisualCpp.VCTip.hostX86.targetX64","Microsoft.VisualStudio.Devenv.Resources","Microsoft.VisualStudio.MinShell.Platform.Resources","Microsoft.VisualStudio.Connected","Microsoft.VisualStudio.MefHosting","Microsoft.DiagnosticsHub.Collection.StopService.Uninstall","Microsoft.VisualStudio.PackageGroup.MinShell","Microsoft.VisualStudio.MefHosting.Resources","Microsoft.VisualCpp.MFC.X86","Microsoft.VisualStudio.Log.Resources","Microsoft.Icecap.Analysis.Targeted","Microsoft.VisualCpp.Premium.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.PGO.X86","Microsoft.VisualStudio.ExtensionManager","Microsoft.VisualStudio.MinShell.x86","Microsoft.VisualStudio.MinShell.Msi","Microsoft.VisualStudio.Setup.Configuration","Microsoft.VisualStudio.LanguageServer","Microsoft.VisualStudio.NativeImageSupport","Microsoft.VisualStudio.MinShell.Msi.Resources","Microsoft.VisualStudio.Devenv.Config","Microsoft.VisualStudio.MinShell.Resources","Microsoft.VisualStudio.Initializer","Microsoft.Net.PackageGroup.4.6.Redist"]}]
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_Express.txt b/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_Express.txt
      deleted file mode 100644
      index c4b3b5f2b01635..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_Express.txt
      +++ /dev/null
      @@ -1 +0,0 @@
      -[{"path":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\WDExpress","version":"15.9.28307.858","packages":["Microsoft.VisualStudio.Product.WDExpress","Microsoft.VisualStudio.Workload.WDExpress","Microsoft.VisualStudio.Component.Windows10SDK.17763","MLGen","Win10SDK_10.0.17763","Microsoft.VisualStudio.Component.Windows10SDK.14393","Win10SDK_10.0.14393.795","Microsoft.VisualStudio.VC.Items.Pro","Microsoft.VisualStudio.VC.Ide.Pro","Microsoft.VisualStudio.VC.Ide.Pro.Resources","Microsoft.VisualStudio.Component.VC.Tools.ARM64","Microsoft.VisualStudio.VC.MSBuild.Arm64","Microsoft.VisualCpp.CRT.Redist.ARM64.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.ARM64","Microsoft.VisualCpp.CRT.ARM64.OneCore.Desktop","Microsoft.VisualCpp.CRT.ARM64.Store","Microsoft.VisualCpp.CRT.ARM64.Desktop","Microsoft.VisualCpp.Tools.Hostx86.Targetarm64","Microsoft.VisualCpp.VCTip.hostX86.targetARM64","Microsoft.VisualCpp.Tools.HostX86.TargetARM64.Resources","Microsoft.VisualStudio.Component.VC.Tools.ARM","Microsoft.VisualCpp.Tools.Hostx86.Targetarm","Microsoft.VisualCpp.VCTip.hostX86.targetARM","Microsoft.VisualCpp.Tools.HostX86.TargetARM.Resources","Microsoft.VisualCpp.CRT.x86.Store","Microsoft.VisualCpp.CRT.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.x64.Store","Microsoft.VisualCpp.CRT.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.arm.OneCore.Desktop","Microsoft.VisualCpp.CRT.arm.OneCore.Desktop","Microsoft.VisualCpp.CRT.arm.Store","Microsoft.VisualCpp.CRT.arm.Desktop","Microsoft.VisualStudio.VC.Templates.UnitTest","Microsoft.VisualStudio.TestTools.TestPlatform.V1.CPP","Microsoft.VisualStudio.VC.Templates.UnitTest.Resources","Microsoft.VisualStudio.VC.Templates.Desktop","Microsoft.VisualStudio.VC.Templates.Pro","Microsoft.VisualStudio.VC.Templates.Pro.Resources","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Express","Microsoft.VisualStudio.PackageGroup.Debugger.Script","Microsoft.VisualStudio.JavaScript.LanguageService","Microsoft.VisualStudio.JavaScript.LanguageService.Resources","Microsoft.VisualStudio.Debugger.Script.Msi","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.VC.MSBuild.X64","Microsoft.VS.VC.MSBuild.X64.Resources","Microsoft.VisualStudio.VC.MSBuild.ARM","Microsoft.VisualStudio.VC.MSBuild.X86","Microsoft.VisualStudio.VC.MSBuild.Base","Microsoft.VisualStudio.VC.MSBuild.Base.Resources","Microsoft.VisualStudio.VC.Ide.WinXPlus","Microsoft.VisualStudio.VC.Ide.Dskx","Microsoft.VisualStudio.VC.Ide.Dskx.Resources","Microsoft.VisualStudio.VC.Ide.Core","Microsoft.VisualStudio.VC.Ide.Core.Resources","Microsoft.VisualStudio.VC.Ide.Base","Microsoft.VisualStudio.VC.Ide.Base.Resources","Microsoft.VisualStudio.Component.VC.CLI.Support","Microsoft.VisualCpp.CLI.X86","Microsoft.VisualCpp.CLI.X64","Microsoft.VisualCpp.CLI.Source","Microsoft.VisualCpp.CLI.ARM64","Microsoft.VisualCpp.CLI.ARM","Microsoft.VisualStudio.VC.Templates.CLR","Microsoft.VisualStudio.VC.Ide.LanguageService","Microsoft.VisualStudio.VC.Ide.ResourceEditor","Microsoft.VisualStudio.VC.Ide.ResourceEditor.Resources","Microsoft.VisualStudio.VC.Ide.ProjectSystem","Microsoft.VisualStudio.VC.Ide.ProjectSystem.Resources","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine.Resources","Microsoft.VisualStudio.VC.Ide.LanguageService.Resources","Microsoft.VisualStudio.VC.Templates.CLR.Resources","Microsoft.Component.VC.Runtime.OSSupport","Microsoft.Windows.UniversalCRT.Tools.Msi","Microsoft.Windows.UniversalCRT.Tools.Msi","Microsoft.Windows.UniversalCRT.ExtensionSDK.Msi","Microsoft.Windows.UniversalCRT.HeadersLibsSources.Msi","Microsoft.VisualStudio.PackageGroup.VC.Tools.x86","Microsoft.VisualCpp.Tools.HostX86.TargetX64","Microsoft.VisualCpp.VCTip.hostX86.targetX64","Microsoft.VisualCpp.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Tools.HostX86.TargetX86","Microsoft.VisualCpp.VCTip.hostX86.targetX86","Microsoft.VisualCpp.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Tools.Core.Resources","Microsoft.VisualCpp.Tools.Core.x86","Microsoft.VisualCpp.Tools.Common.Utils","Microsoft.VisualCpp.Tools.Common.Utils.Resources","Microsoft.VisualCpp.DIA.SDK","Microsoft.VisualCpp.CRT.x86.Desktop","Microsoft.VisualCpp.CRT.x64.Desktop","Microsoft.VisualCpp.CRT.Source","Microsoft.VisualCpp.CRT.Redist.X86","Microsoft.VisualCpp.CRT.Redist.X64","Microsoft.VisualCpp.CRT.Redist.Resources","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.CRT.Headers","Microsoft.Component.HelpViewer","Microsoft.HelpViewer","Microsoft.VisualStudio.Help.Configuration.Msi","Microsoft.VisualStudio.Component.SQL.DataSources","Microsoft.VisualStudio.Component.SQL.SSDT","Microsoft.VisualStudio.Component.SQL.CMDUtils","sqlcmdlnutils","Microsoft.VisualStudio.Component.Common.Azure.Tools","Microsoft.VisualStudio.Azure.CommonAzureTools","SSDT","Microsoft.VisualStudio.Component.SQL.ADAL","sql_adalsql","Microsoft.VisualStudio.Component.NuGet","Microsoft.CredentialProvider","Microsoft.VisualStudio.NuGet.Licenses","Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime","Microsoft.VisualStudio.Component.SQL.NCLI","sqllocaldb","sqlncli","Microsoft.VisualStudio.Component.EntityFramework","Microsoft.VisualStudio.PackageGroup.DslRuntime","Microsoft.VisualStudio.Dsl.Core","Microsoft.VisualStudio.Dsl.GraphObject","Microsoft.VisualStudio.Dsl.Core.Resources","Microsoft.VisualStudio.EntityFrameworkTools","Microsoft.VisualStudio.EntityFrameworkTools.Msi","Microsoft.VisualStudio.Component.Roslyn.LanguageServices","Microsoft.VisualStudio.InteractiveWindow","Microsoft.DiaSymReader.Native","Microsoft.VisualStudio.Component.Static.Analysis.Tools","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.Redist.14","Microsoft.VisualStudio.StaticAnalysis","Microsoft.VisualStudio.StaticAnalysis.Resources","Microsoft.CodeAnalysis.VisualStudio.InteractiveComponents.Resources","Microsoft.CodeAnalysis.VisualStudio.InteractiveComponents","Microsoft.CodeAnalysis.VisualStudio.Setup.Interactive.Resources","Microsoft.Net.ComponentGroup.TargetingPacks.Common","Microsoft.Net.Component.4.6.TargetingPack","Microsoft.Net.4.6.TargetingPack","Microsoft.Net.Component.4.5.2.TargetingPack","Microsoft.Net.4.5.2.TargetingPack","Microsoft.Net.Component.4.5.1.TargetingPack","Microsoft.Net.4.5.1.TargetingPack","Microsoft.Net.Component.4.5.TargetingPack","Microsoft.Net.4.5.TargetingPack","Microsoft.Net.Component.4.TargetingPack","Microsoft.Net.4.TargetingPack","Microsoft.Net.ComponentGroup.DevelopmentPrerequisites","Microsoft.Net.Component.4.6.1.TargetingPack","Microsoft.Net.4.6.1.TargetingPack","Microsoft.Net.Cumulative.TargetingPack.Resources","Microsoft.Net.Component.4.6.1.SDK","Microsoft.Net.4.6.1.SDK","Microsoft.VisualStudio.Component.TextTemplating","Microsoft.VisualStudio.TextTemplating.MSBuild","Microsoft.VisualStudio.TextTemplating.Integration","Microsoft.VisualStudio.TextTemplating.Core","Microsoft.VisualStudio.TextTemplating.Integration.Resources","Microsoft.VisualStudio.Component.VisualStudioData","Microsoft.VisualStudio.Component.SQL.CLR","Microsoft.VisualStudio.ProTools","sqlsysclrtypes","sqlsysclrtypes","SQLCommon","Microsoft.VisualStudio.ProTools.Resources","Microsoft.VisualStudio.XamlDiagnostics","Microsoft.VisualStudio.XamlDiagnostics.Resources","Microsoft.VisualStudio.XamlDesigner","Microsoft.VisualStudio.XamlDesigner.Resources","Microsoft.VisualStudio.XamlDesigner.Executables","Microsoft.VisualStudio.XamlShared","Microsoft.VisualStudio.XamlShared.Resources","Microsoft.VisualStudio.PackageGroup.TestTools.Managed","Microsoft.VisualStudio.PackageGroup.IntelliTrace.Core","Microsoft.IntelliTrace.Core","Microsoft.IntelliTrace.Core.Targeted","Microsoft.IntelliTrace.ProfilerProxy.Msi.x64","Microsoft.IntelliTrace.ProfilerProxy.Msi","Microsoft.VisualStudio.NuGet.Core","Microsoft.VisualStudio.TestWindow.SourceBasedTestDiscovery","Microsoft.VisualStudio.TestWindow.Dotnet","Microsoft.VisualStudio.TestTools.TestGeneration","Microsoft.VisualStudio.PackageGroup.TestTools.CodeCoverage","Microsoft.VisualStudio.PackageGroup.TestTools.Enterprise","Microsoft.VisualStudio.PackageGroup.TestTools.MSTestV2.Managed","Microsoft.VisualStudio.TestTools.MSTestV2.WizardExtension.UnitTest","Microsoft.VisualStudio.PackageGroup.TestTools.Core","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V2.CLI","Microsoft.VisualStudio.TestTools.TestPlatform.V2.CLI","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V1.CLI","Microsoft.VisualStudio.TestTools.TestPlatform.V1.CLI","Microsoft.VisualStudio.TestTools.Pex.Common","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.Legacy","Microsoft.VisualStudio.PackageGroup.MinShell.Interop","Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Msi","Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Common","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips.Resources","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.TestTools","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Professional","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Common","Microsoft.VisualStudio.TestTools.TP.Legacy.Common.Res","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core.Resources","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Agent","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.IDE","Microsoft.VisualStudio.TestTools.TestWIExtension","Microsoft.VisualStudio.TestTools.TestPlatform.IDE","Microsoft.VisualStudio.PackageGroup.TestTools.DataCollectors","Microsoft.Component.ClickOnce","Microsoft.VisualStudio.PackageGroup.ClickOnce.MSBuild","Microsoft.VisualCpp.CRT.ClickOnce.Msi","Microsoft.ClickOnce.SignTool.Msi","Microsoft.SQL.ClickOnceBootstrapper.Msi","Microsoft.Net.ClickOnceBootstrapper","Microsoft.ClickOnce.BootStrapper.Msi.Resources","Microsoft.ClickOnce.BootStrapper.Msi","Microsoft.VisualStudio.WebTools.WSP.FSA","Microsoft.VisualStudio.WebTools.WSP.FSA.Resources","Microsoft.VisualStudio.PackageGroup.Community","Microsoft.VisualStudio.Community.Extra.Resources","Microsoft.VisualStudio.Community.Extra","Microsoft.VisualStudio.PackageGroup.Core","Microsoft.VisualStudio.TestTools.TeamFoundationClient","Microsoft.VisualStudio.PackageGroup.Debugger.Core","Microsoft.VisualStudio.Debugger.VSCodeDebuggerHost","Microsoft.VisualStudio.VC.Ide.Debugger","Microsoft.VisualStudio.VC.Ide.Debugger.Resources","Microsoft.VisualStudio.VC.Ide.Common","Microsoft.VisualStudio.VC.Ide.Common.Resources","Microsoft.VisualStudio.Debugger.Parallel","Microsoft.VisualStudio.Debugger.Parallel.Resources","Microsoft.VisualStudio.Debugger.CollectionAgents","Microsoft.VisualStudio.Debugger.Managed","Microsoft.CodeAnalysis.VisualStudio.Setup.Resources","Microsoft.CodeAnalysis.VisualStudio.Setup","Microsoft.CodeAnalysis.ExpressionEvaluator.Resources","Microsoft.CodeAnalysis.ExpressionEvaluator","Microsoft.VisualStudio.Debugger.Managed.Resources","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger","Microsoft.VisualStudio.VC.MSVCDis","Microsoft.VisualStudio.ScriptedHost","Microsoft.VisualStudio.ScriptedHost.Targeted","Microsoft.VisualStudio.ScriptedHost.Resources","Microsoft.IntelliTrace.DiagnosticsHub","Microsoft.VisualStudio.Debugger.Resources","Microsoft.PackageGroup.ClientDiagnostics","Microsoft.VisualStudio.AppResponsiveness","Microsoft.VisualStudio.AppResponsiveness.Targeted","Microsoft.VisualStudio.AppResponsiveness.Resources","Microsoft.VisualStudio.ClientDiagnostics","Microsoft.VisualStudio.ClientDiagnostics.Targeted","Microsoft.VisualStudio.ClientDiagnostics.Resources","Microsoft.VisualStudio.PackageGroup.CommunityCore","Microsoft.VisualStudio.ProjectSystem.Full","Microsoft.VisualStudio.ProjectSystem","Microsoft.VisualStudio.Community.x86","Microsoft.VisualStudio.Community.x64","Microsoft.VisualStudio.Community","Microsoft.IntelliTrace.CollectorCab","Microsoft.VisualStudio.Community.Resources","Microsoft.VisualStudio.Net.Eula.Resources","Microsoft.VisualStudio.WebSiteProject.DTE","Microsoft.MSHtml","Microsoft.VisualStudio.Community.Msi.Resources","Microsoft.VisualStudio.Community.Msi","Microsoft.VisualStudio.MinShell.Interop.Msi","Microsoft.VisualStudio.Editors","Microsoft.VisualStudio.ClickOnce.Resources","Microsoft.VisualStudio.ClickOnce","Microsoft.Component.MSBuild","Microsoft.NuGet.Build.Tasks","Microsoft.VisualStudio.Component.Roslyn.Compiler","Microsoft.CodeAnalysis.Compilers.Resources","Microsoft.CodeAnalysis.Compilers","Microsoft.Net.PackageGroup.4.6.1.Redist","Microsoft.VisualStudio.TemplateEngine","Microsoft.VisualStudio.WebToolsExtensions.Common","Microsoft.NET.Sdk","Microsoft.VisualStudio.PackageGroup.TestTools.Templates.Managed","Microsoft.VisualStudio.TestTools.Templates.Managed","Microsoft.VisualStudio.TestTools.Templates.Managed.Resources","Microsoft.VisualStudio.Templates.VB.MSTestv2.Desktop.UnitTest","Microsoft.VisualStudio.Templates.CS.MSTestv2.Desktop.UnitTest","Microsoft.VisualStudio.Templates.VB.Wpf","Microsoft.VisualStudio.Templates.VB.Wpf.Resources","Microsoft.VisualStudio.Templates.VB.Winforms","Microsoft.VisualStudio.Templates.VB.ManagedCore","Microsoft.VisualStudio.Templates.VB.Shared","Microsoft.VisualStudio.Templates.VB.Shared.Resources","Microsoft.VisualStudio.Templates.VB.ManagedCore.Resources","Microsoft.VisualStudio.Templates.CS.GettingStarted.Desktop.Package","Microsoft.VisualStudio.Templates.GetStarted.Desktop.Setup","Microsoft.VisualStudio.Templates.CS.GettingStarted.Console.Package","Microsoft.VisualStudio.Templates.GetStarted.Resources","Microsoft.VisualStudio.Templates.GetStarted.Common.Setup","Microsoft.VisualStudio.Templates.GetStarted.Console.Setup","Microsoft.VisualStudio.Templates.CS.Wpf","Microsoft.VisualStudio.Templates.CS.Wpf.Resources","Microsoft.VisualStudio.Templates.CS.Winforms","Microsoft.VisualStudio.Templates.CS.ManagedCore","Microsoft.VisualStudio.Templates.CS.Shared","Microsoft.VisualStudio.Templates.Editorconfig.Wizard.Setup","Templates.Editorconfig.SolutionFile.Setup","Microsoft.VisualStudio.Templates.CS.Shared.Resources","Microsoft.VisualStudio.Templates.CS.ManagedCore.Resources","Microsoft.VisualStudio.Component.CoreEditor","Microsoft.VisualStudio.PackageGroup.CoreEditor","PortableFacades","Microsoft.VisualStudio.PackageGroup.VsDevCmd","Microsoft.VisualStudio.VsDevCmd.Ext.NetFxSdk","Microsoft.VisualStudio.VsDevCmd.Core.WinSdk","Microsoft.VisualStudio.VsDevCmd.Core.DotNet","Microsoft.VisualStudio.VC.DevCmd","Microsoft.VisualStudio.VC.DevCmd.Resources","Microsoft.VisualStudio.VirtualTree","Microsoft.VisualStudio.PackageGroup.Progression","Microsoft.VisualStudio.PerformanceProvider","Microsoft.VisualStudio.GraphModel","Microsoft.VisualStudio.GraphProvider","Microsoft.DiaSymReader","Microsoft.Build.Dependencies","Microsoft.Build.FileTracker.Msi","Microsoft.Build","Microsoft.VisualStudio.TextMateGrammars","Microsoft.VisualStudio.PackageGroup.TeamExplorer","Microsoft.TeamFoundation.OfficeIntegration","Microsoft.TeamFoundation.OfficeIntegration.Resources","Microsoft.VisualStudio.TeamExplorer","Microsoft.ServiceHub","Microsoft.VisualStudio.ProjectServices","Microsoft.VisualStudio.SLNX.VSIX","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.PackageGroup.MinShell","Microsoft.VisualStudio.MinShell.Interop","Microsoft.VisualStudio.Log","Microsoft.VisualStudio.Log.Targeted","Microsoft.VisualStudio.Log.Resources","Microsoft.VisualStudio.Finalizer","Microsoft.VisualStudio.WDExpress","Microsoft.VisualStudio.WDExpress.Resources","Microsoft.VisualStudio.CoreEditor","Microsoft.VisualStudio.Connected","Microsoft.VisualStudio.Connected.Resources","Microsoft.VisualStudio.MinShell","Microsoft.VisualStudio.Setup.Configuration","Microsoft.VisualStudio.MinShell.Platform","Microsoft.VisualStudio.MinShell.Platform.Resources","Microsoft.VisualStudio.MefHosting","Microsoft.VisualStudio.MefHosting.Resources","Microsoft.VisualStudio.Initializer","Microsoft.VisualStudio.ExtensionManager","Microsoft.VisualStudio.MinShell.x86","Microsoft.VisualStudio.NativeImageSupport","Microsoft.VisualStudio.MinShell.Msi","Microsoft.VisualStudio.MinShell.Msi.Resources","Microsoft.VisualStudio.LanguageServer","Microsoft.VisualStudio.MinShell.Resources","Microsoft.Net.PackageGroup.4.6.Redist","Microsoft.VisualStudio.Branding.WDExpress"]}]
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_Unusable.txt b/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_Unusable.txt
      deleted file mode 100644
      index fc0a257f447830..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2017_Unusable.txt
      +++ /dev/null
      @@ -1 +0,0 @@
      -[{"path":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildToolsUnusable","version":"15.9.28307.665","packages":["Microsoft.VisualStudio.Product.BuildTools","Microsoft.VisualStudio.Component.Windows10SDK.17134","Win10SDK_10.0.17134","Microsoft.VisualStudio.Component.VC.Tools.x86.x64","Microsoft.VisualCpp.CodeAnalysis.Extensions","Microsoft.VisualCpp.CodeAnalysis.Extensions.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86.Resources","Microsoft.VisualCpp.CodeAnalysis.Extensions.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64.Resources","Microsoft.VisualStudio.Component.Static.Analysis.Tools","Microsoft.VisualStudio.StaticAnalysis","Microsoft.VisualStudio.StaticAnalysis.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX86","Microsoft.VisualCpp.VCTip.HostX64.TargetX86","Microsoft.VisualCpp.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX64","Microsoft.VisualCpp.VCTip.HostX64.TargetX64","Microsoft.VisualCpp.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX64","Microsoft.VisualCpp.Premium.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.PGO.X86","Microsoft.VisualCpp.PGO.X64","Microsoft.VisualCpp.PGO.Headers","Microsoft.VisualCpp.CRT.x86.Store","Microsoft.VisualCpp.CRT.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.x64.Store","Microsoft.VisualCpp.CRT.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.ClickOnce.Msi","Microsoft.VisualStudio.PackageGroup.VC.Tools.x86","Microsoft.VisualCpp.Tools.HostX86.TargetX64","Microsoft.VisualCpp.VCTip.hostX86.targetX64","Microsoft.VisualCpp.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Tools.HostX86.TargetX86","Microsoft.VisualCpp.VCTip.hostX86.targetX86","Microsoft.VisualCpp.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Tools.Core.Resources","Microsoft.VisualCpp.Tools.Core.x86","Microsoft.VisualCpp.Tools.Common.Utils","Microsoft.VisualCpp.Tools.Common.Utils.Resources","Microsoft.VisualCpp.DIA.SDK","Microsoft.VisualCpp.CRT.x86.Desktop","Microsoft.VisualCpp.CRT.x64.Desktop","Microsoft.VisualCpp.CRT.Source","Microsoft.VisualCpp.CRT.Redist.X86","Microsoft.VisualCpp.CRT.Redist.X64","Microsoft.VisualCpp.CRT.Redist.Resources","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.CRT.Headers","Microsoft.VisualStudio.Workload.MSBuildTools","Microsoft.VisualStudio.Component.CoreBuildTools","Microsoft.VisualStudio.Setup.Configuration","Microsoft.VisualStudio.PackageGroup.VsDevCmd","Microsoft.VisualStudio.VsDevCmd.Ext.NetFxSdk","Microsoft.VisualStudio.VsDevCmd.Core.WinSdk","Microsoft.VisualStudio.VsDevCmd.Core.DotNet","Microsoft.VisualStudio.VC.DevCmd","Microsoft.VisualStudio.VC.DevCmd.Resources","Microsoft.VisualStudio.BuildTools.Resources","Microsoft.VisualStudio.Net.Eula.Resources","Microsoft.Build.Dependencies","Microsoft.Build.FileTracker.Msi","Microsoft.Component.MSBuild","Microsoft.PythonTools.BuildCore.Vsix","Microsoft.NuGet.Build.Tasks","Microsoft.VisualStudio.Component.Roslyn.Compiler","Microsoft.CodeAnalysis.Compilers.Resources","Microsoft.CodeAnalysis.Compilers","Microsoft.Net.PackageGroup.4.6.1.Redist","Microsoft.Net.4.6.1.FullRedist.NonThreshold","Microsoft.Windows.UniversalCRT.Msu.81","Microsoft.VisualStudio.NativeImageSupport","Microsoft.Build"]}]
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2019_BuildTools_minimal.txt b/deps/npm/node_modules/node-gyp/test/fixtures/VS_2019_BuildTools_minimal.txt
      deleted file mode 100644
      index f07d2541648829..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2019_BuildTools_minimal.txt
      +++ /dev/null
      @@ -1 +0,0 @@
      -[{"path":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools","version":"16.1.28922.388","packages":["Microsoft.VisualStudio.Product.BuildTools","Microsoft.VisualStudio.Component.VC.CoreIde","Microsoft.VisualStudio.VC.Ide.Pro","Microsoft.VisualStudio.VC.Ide.Pro.Resources","Microsoft.VisualStudio.VC.Templates.Pro","Microsoft.VisualStudio.VC.Templates.Pro.Resources","Microsoft.VisualStudio.VC.Items.Pro","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Reduced","Microsoft.VisualStudio.VC.Ide.MDD","Microsoft.VisualStudio.PackageGroup.Core","Microsoft.VisualStudio.CodeSense.Community","Microsoft.VisualStudio.TestTools.TeamFoundationClient","Microsoft.PackageGroup.ClientDiagnostics","Microsoft.VisualStudio.AppResponsiveness","Microsoft.VisualStudio.AppResponsiveness.Targeted","Microsoft.VisualStudio.AppResponsiveness.Resources","Microsoft.VisualStudio.ClientDiagnostics","Microsoft.VisualStudio.ClientDiagnostics.Targeted","Microsoft.VisualStudio.ClientDiagnostics.Resources","Microsoft.VisualStudio.PackageGroup.CommunityCore","Microsoft.VisualStudio.ProjectSystem.Full","Microsoft.VisualStudio.ProjectSystem","Microsoft.VisualStudio.Community.x86","Microsoft.VisualStudio.Community.x64","Microsoft.VisualStudio.Community","Microsoft.IntelliTrace.CollectorCab","Microsoft.VisualStudio.Community.Resources","Microsoft.VisualStudio.WebSiteProject.DTE","Microsoft.MSHtml","Microsoft.VisualStudio.Platform.CallHierarchy","Microsoft.VisualStudio.Community.Msi.Resources","Microsoft.VisualStudio.Community.Msi","Microsoft.VisualStudio.MinShell.Interop.Msi","Microsoft.VisualStudio.PackageGroup.CoreEditor","Microsoft.VisualStudio.VirtualTree","Microsoft.VisualStudio.PackageGroup.Progression","Microsoft.VisualStudio.PerformanceProvider","Microsoft.VisualStudio.GraphModel","Microsoft.VisualStudio.GraphProvider","Microsoft.VisualStudio.TextMateGrammars","Microsoft.VisualStudio.PackageGroup.TeamExplorer.Common","Microsoft.VisualStudio.TeamExplorer","Microsoft.ServiceHub","Microsoft.VisualStudio.ProjectServices","Microsoft.VisualStudio.OpenFolder.VSIX","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.PackageGroup.MinShell","Microsoft.VisualStudio.MinShell.Msi","Microsoft.VisualStudio.MinShell.Msi.Resources","Microsoft.VisualStudio.MinShell.Interop","Microsoft.VisualStudio.Log","Microsoft.VisualStudio.Log.Targeted","Microsoft.VisualStudio.Log.Resources","Microsoft.VisualStudio.Finalizer","Microsoft.VisualStudio.CoreEditor","Microsoft.VisualStudio.Platform.NavigateTo","Microsoft.VisualStudio.Connected","Microsoft.VisualStudio.Connected.Resources","Microsoft.VisualStudio.VC.Ide.x64","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Express","Microsoft.VisualStudio.PackageGroup.Debugger.Script","Microsoft.VisualStudio.Debugger.Script.Msi","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.VC.Ide.WinXPlus","Microsoft.VisualStudio.VC.Ide.Dskx","Microsoft.VisualStudio.VC.Ide.Dskx.Resources","Microsoft.VisualStudio.VC.Ide.Base","Microsoft.VisualStudio.VC.Ide.LanguageService","Microsoft.VisualStudio.VC.Ide.Core","Microsoft.VisualStudio.VisualC.Logging","Microsoft.VisualStudio.VC.Ide.Core.Resources","Microsoft.VisualStudio.VC.Ide.VCPkgDatabase","Microsoft.VisualStudio.VC.Ide.ResourceEditor","Microsoft.VisualStudio.VC.Ide.ResourceEditor.Resources","Microsoft.VisualStudio.VC.Ide.ProjectSystem","Microsoft.VisualStudio.VC.Ide.ProjectSystem.Resources","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine.Resources","Microsoft.VisualStudio.VC.Ide.LanguageService.Resources","Microsoft.VisualStudio.VC.Ide.Base.Resources","Microsoft.Net.4.TargetingPack","Microsoft.VisualStudio.PackageGroup.Debugger.Core","Microsoft.VisualStudio.PackageGroup.Debugger.TimeTravel.Record","Microsoft.VisualStudio.Debugger.TimeTravel.Runtime","Microsoft.VisualStudio.Debugger.TimeTravel.Runtime","Microsoft.VisualStudio.Debugger.TimeTravel.Agent","Microsoft.VisualStudio.Debugger.TimeTravel.Record","Microsoft.VisualStudio.Debugger.VSCodeDebuggerHost","Microsoft.VisualStudio.VC.Ide.Debugger","Microsoft.VisualStudio.VC.Ide.Debugger.Concord","Microsoft.VisualStudio.VC.Ide.Debugger.Concord.Resources","Microsoft.VisualStudio.VC.Ide.Debugger.Resources","Microsoft.VisualStudio.VC.Ide.Common","Microsoft.VisualStudio.VC.Ide.Common.Resources","Microsoft.VisualStudio.Debugger.Parallel","Microsoft.VisualStudio.Debugger.Parallel.Resources","Microsoft.VisualStudio.Debugger.CollectionAgents","Microsoft.VisualStudio.Debugger.Managed","Microsoft.DiaSymReader","Microsoft.CodeAnalysis.ExpressionEvaluator","Microsoft.VisualStudio.Debugger.Concord.Managed","Microsoft.VisualStudio.Debugger.Concord.Managed.Resources","Microsoft.VisualStudio.Debugger.Managed.Resources","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger","Microsoft.VisualStudio.PerfLib","Microsoft.VisualStudio.Debugger.Package.DiagHub.Client.VSx86","Microsoft.VisualStudio.Debugger.Remote.DiagHub.Client","Microsoft.VisualStudio.Debugger.Remote.DiagHub.Client","Microsoft.VisualStudio.VC.MSVCDis","Microsoft.VisualStudio.ScriptedHost","Microsoft.VisualStudio.ScriptedHost.Targeted","Microsoft.VisualStudio.ScriptedHost.Resources","Microsoft.VisualStudio.Editors","Microsoft.IntelliTrace.DiagnosticsHub","Microsoft.VisualStudio.MinShell","Microsoft.VisualStudio.MinShell.Platform","Microsoft.VisualStudio.MinShell.Platform.Resources","Microsoft.VisualStudio.MefHosting","Microsoft.VisualStudio.MefHosting.Resources","Microsoft.VisualStudio.Initializer","Microsoft.VisualStudio.ExtensionManager","Microsoft.VisualStudio.Platform.Editor","Microsoft.VisualStudio.Debugger.Concord","Microsoft.VisualStudio.Debugger.Concord.Resources","Microsoft.VisualStudio.Debugger.Resources","Microsoft.CodeAnalysis.VisualStudio.Setup","Microsoft.VisualStudio.Component.Windows10SDK.17134","Win10SDK_10.0.17134","Microsoft.VisualStudio.Component.VC.Tools.x86.x64","Microsoft.VisualCpp.CodeAnalysis.Extensions","Microsoft.VisualCpp.CodeAnalysis.Extensions.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86.Resources","Microsoft.VisualCpp.CodeAnalysis.Extensions.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64.Resources","Microsoft.VisualStudio.StaticAnalysis","Microsoft.VisualStudio.StaticAnalysis.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX86","Microsoft.VisualCpp.VCTip.HostX64.TargetX86","Microsoft.VisualCpp.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX64","Microsoft.VisualCpp.VCTip.HostX64.TargetX64","Microsoft.VisualCpp.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX64","Microsoft.VisualCpp.Premium.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.PGO.X86","Microsoft.VisualCpp.PGO.X64","Microsoft.VisualCpp.PGO.Headers","Microsoft.VisualCpp.CRT.x86.Store","Microsoft.VisualCpp.CRT.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.x64.Store","Microsoft.VisualCpp.CRT.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.ClickOnce.Msi","Microsoft.VisualStudio.PackageGroup.VC.Tools.x86","Microsoft.VisualCpp.Tools.HostX86.TargetX64","Microsoft.VisualCpp.VCTip.hostX86.targetX64","Microsoft.VisualCpp.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Tools.HostX86.TargetX86","Microsoft.VisualCpp.VCTip.hostX86.targetX86","Microsoft.VisualCpp.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Tools.Core.Resources","Microsoft.VisualCpp.Tools.Core.x86","Microsoft.VisualCpp.Tools.Common.Utils","Microsoft.VisualCpp.Tools.Common.Utils.Resources","Microsoft.VisualCpp.DIA.SDK","Microsoft.VisualCpp.CRT.x86.Desktop","Microsoft.VisualCpp.CRT.x64.Desktop","Microsoft.VisualCpp.CRT.Source","Microsoft.VisualCpp.CRT.Redist.X86","Microsoft.VisualCpp.CRT.Redist.X64","Microsoft.VisualCpp.CRT.Redist.Resources","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.Redist.14.Latest","Microsoft.VisualCpp.Redist.14.Latest","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.CRT.Headers","Microsoft.VisualStudio.VC.MSBuild.x86.v142","Microsoft.VisualStudio.VC.MSBuild.X86","Microsoft.VisualStudio.VC.MSBuild.X64.v142","Microsoft.VisualStudio.VC.MSBuild.X64","Microsoft.VS.VC.MSBuild.X64.Resources","Microsoft.VisualStudio.VC.MSBuild.ARM.v142","Microsoft.VisualStudio.VC.MSBuild.ARM","Microsoft.VisualStudio.VC.MSBuild.Base","Microsoft.VisualStudio.VC.MSBuild.Base.Resources","Microsoft.VisualStudio.Workload.MSBuildTools","Microsoft.VisualStudio.Component.CoreBuildTools","Microsoft.VisualStudio.Setup.Configuration","Microsoft.VisualStudio.PackageGroup.VsDevCmd","Microsoft.VisualStudio.VsDevCmd.Ext.NetFxSdk","Microsoft.VisualStudio.VsDevCmd.Core.WinSdk","Microsoft.VisualStudio.VsDevCmd.Core.DotNet","Microsoft.VisualStudio.VC.DevCmd","Microsoft.VisualStudio.VC.DevCmd.Resources","Microsoft.VisualStudio.BuildTools.Resources","Microsoft.VisualStudio.Net.Eula.Resources","Microsoft.Build.Dependencies","Microsoft.Build.FileTracker.Msi","Microsoft.Component.MSBuild","Microsoft.PythonTools.BuildCore.Vsix","Microsoft.NuGet.Build.Tasks","Microsoft.VisualStudio.Component.Roslyn.Compiler","Microsoft.CodeAnalysis.Compilers","Microsoft.Net.PackageGroup.4.7.2.Redist","Microsoft.VisualStudio.NativeImageSupport","Microsoft.Build","Microsoft.VisualStudio.PackageGroup.NuGet","Microsoft.VisualStudio.NuGet.BuildTools"]}]
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2019_Community_workload.txt b/deps/npm/node_modules/node-gyp/test/fixtures/VS_2019_Community_workload.txt
      deleted file mode 100644
      index 50071c25f189e5..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2019_Community_workload.txt
      +++ /dev/null
      @@ -1 +0,0 @@
      -[{"path":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community","version":"16.1.28922.388","packages":["Microsoft.VisualStudio.Workload.NativeDesktop","Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest","Microsoft.VisualStudio.VC.Ide.TestAdapterForGoogleTest","Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest","Microsoft.VisualStudio.VC.Ide.TestAdapterForBoostTest","Microsoft.VisualStudio.Component.VC.ATL","Microsoft.VisualStudio.VC.Ide.ATL","Microsoft.VisualStudio.VC.Ide.ATL.Resources","Microsoft.VisualCpp.ATL.X86","Microsoft.VisualCpp.ATL.X64","Microsoft.VisualCpp.ATL.Source","Microsoft.VisualCpp.ATL.Headers","Microsoft.VisualStudio.Component.VC.CMake.Project","Microsoft.VisualStudio.VC.CMake","Microsoft.VisualStudio.VC.CMake.Project","Microsoft.VisualStudio.VC.ExternalBuildFramework","Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core","Microsoft.VisualStudio.PackageGroup.TestTools.Native","Microsoft.VisualStudio.Component.VC.Redist.14.Latest","Microsoft.VisualStudio.VC.Templates.UnitTest","Microsoft.VisualStudio.VC.UnitTest.Desktop.Build.Core","Microsoft.VisualStudio.TestTools.TestPlatform.V1.CPP","Microsoft.VisualStudio.VC.Templates.UnitTest.Resources","Microsoft.VisualStudio.VC.Templates.Desktop","Microsoft.VisualStudio.Component.Debugger.JustInTime","Microsoft.VisualStudio.Debugger.ImmersiveActivateHelper.Msi","Microsoft.VisualStudio.Debugger.JustInTime","Microsoft.VisualStudio.Debugger.JustInTime.Msi","Microsoft.VisualStudio.Component.Windows10SDK.17763","Win10SDK_10.0.17763","Microsoft.VisualStudio.Component.VC.DiagnosticTools","Microsoft.VisualStudio.Component.Graphics.Tools","Microsoft.VisualStudio.Component.VC.Tools.x86.x64","Microsoft.VisualCpp.CodeAnalysis.Extensions","Microsoft.VisualCpp.CodeAnalysis.Extensions.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86.Resources","Microsoft.VisualCpp.CodeAnalysis.Extensions.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX86","Microsoft.VisualCpp.VCTip.HostX64.TargetX86","Microsoft.VisualCpp.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX64","Microsoft.VisualCpp.VCTip.HostX64.TargetX64","Microsoft.VisualCpp.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX64","Microsoft.VisualCpp.Premium.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.PGO.X86","Microsoft.VisualCpp.PGO.X64","Microsoft.VisualCpp.PGO.Headers","Microsoft.VisualCpp.CRT.x86.Store","Microsoft.VisualCpp.CRT.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.x64.Store","Microsoft.VisualCpp.CRT.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x64.OneCore.Desktop","Microsoft.VisualStudio.PackageGroup.VC.Tools.x86","Microsoft.VisualCpp.Tools.HostX86.TargetX64","Microsoft.VisualCpp.VCTip.hostX86.targetX64","Microsoft.VisualCpp.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Tools.HostX86.TargetX86","Microsoft.VisualCpp.VCTip.hostX86.targetX86","Microsoft.VisualCpp.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Tools.Core.Resources","Microsoft.VisualCpp.Tools.Core.x86","Microsoft.VisualCpp.DIA.SDK","Microsoft.VisualCpp.CRT.x86.Desktop","Microsoft.VisualCpp.CRT.x64.Desktop","Microsoft.VisualCpp.CRT.Source","Microsoft.VisualCpp.CRT.Redist.X86","Microsoft.VisualCpp.CRT.Redist.X64","Microsoft.VisualCpp.CRT.Redist.Resources","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.Redist.14.Latest","Microsoft.VisualCpp.Redist.14.Latest","Microsoft.VisualCpp.CRT.Headers","Microsoft.VisualStudio.Graphics.Viewers","Microsoft.VisualStudio.Graphics.Viewers.Resources","Microsoft.VisualStudio.Graphics.Msi","Microsoft.VisualStudio.Graphics.Msi","Microsoft.VisualStudio.Graphics.Analyzer","Microsoft.VisualStudio.Graphics.Analyzer.Targeted","Microsoft.VisualStudio.Graphics.Analyzer.Resources","Microsoft.VisualStudio.Graphics.Appid","Microsoft.VisualStudio.Graphics.Appid.Resources","Microsoft.VisualStudio.Component.VC.CoreIde","Microsoft.VisualStudio.VC.Ide.Pro","Microsoft.VisualStudio.VC.Ide.Pro.Resources","Microsoft.VisualStudio.VC.Templates.Pro","Microsoft.VisualStudio.VC.Templates.Pro.Resources","Microsoft.VisualStudio.VC.Items.Pro","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Reduced","Microsoft.VisualStudio.VC.Ide.x64","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Express","Microsoft.VisualStudio.VC.MSBuild.X64.v142","Microsoft.VisualStudio.VC.MSBuild.X64","Microsoft.VS.VC.MSBuild.X64.Resources","Microsoft.VisualStudio.VC.MSBuild.ARM.v142","Microsoft.VisualStudio.VC.MSBuild.ARM","Microsoft.VisualStudio.VC.MSBuild.x86.v142","Microsoft.VisualStudio.VC.MSBuild.X86","Microsoft.VisualStudio.VC.MSBuild.Base","Microsoft.VisualStudio.VC.MSBuild.Base.Resources","Microsoft.VisualStudio.VC.Ide.WinXPlus","Microsoft.VisualStudio.VC.Ide.Dskx","Microsoft.VisualStudio.VC.Ide.Dskx.Resources","Microsoft.VisualStudio.VC.Ide.Base","Microsoft.VisualStudio.VC.Ide.LanguageService","Microsoft.VisualStudio.VC.Ide.Core","Microsoft.VisualStudio.VC.Ide.Core.Resources","Microsoft.VisualStudio.VC.Ide.VCPkgDatabase","Microsoft.VisualStudio.VC.Ide.ProjectSystem","Microsoft.VisualStudio.VC.Ide.ProjectSystem.Resources","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine.Resources","Microsoft.VisualStudio.VC.Ide.LanguageService.Resources","Microsoft.VisualStudio.VC.Ide.Base.Resources","Component.Microsoft.VisualStudio.LiveShare","Microsoft.VisualStudio.LiveShare","Microsoft.Icecap.Analysis","Microsoft.Icecap.Analysis.Targeted","Microsoft.Icecap.Analysis.Resources","Microsoft.Icecap.Analysis.Resources.Targeted","Microsoft.Icecap.Collection.Msi","Microsoft.Icecap.Collection.Msi.Targeted","Microsoft.Icecap.Collection.Msi.Resources","Microsoft.Icecap.Collection.Msi.Resources.Targeted","Microsoft.DiagnosticsHub.Instrumentation","Microsoft.DiagnosticsHub.CpuSampling.ExternalDependencies","Microsoft.DiagnosticsHub.CpuSampling","Microsoft.DiagnosticsHub.CpuSampling.Targeted","Microsoft.PackageGroup.DiagnosticsHub.Platform","Microsoft.DiagnosticsHub.Runtime.ExternalDependencies","Microsoft.DiagnosticsHub.Runtime.ExternalDependencies.Targeted","Microsoft.DiagnosticsHub.Collection.ExternalDependencies.x64","Microsoft.DiagnosticsHub.Collection.StopService.Uninstall","Microsoft.DiagnosticsHub.Runtime","Microsoft.DiagnosticsHub.Runtime.Targeted","Microsoft.DiagnosticsHub.Collection","Microsoft.DiagnosticsHub.Collection.Service","Microsoft.DiagnosticsHub.Collection.StopService.Install","Microsoft.VisualStudio.Component.IntelliCode","Microsoft.VisualStudio.IntelliCode","Microsoft.Net.4.TargetingPack","Microsoft.VisualStudio.VC.Ide.ResourceEditor","Microsoft.VisualStudio.VC.Ide.ResourceEditor.Resources","Microsoft.VisualStudio.PackageGroup.TestTools.CodeCoverage","Microsoft.VisualStudio.PackageGroup.TestTools.Core","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V2.CLI","Microsoft.VisualStudio.TestTools.TestPlatform.V2.CLI","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V1.CLI","Microsoft.VisualStudio.TestTools.TestPlatform.V1.CLI","Microsoft.VisualStudio.TestTools.Pex.Common","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.Legacy","Microsoft.VisualStudio.PackageGroup.MinShell.Interop","Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Msi","Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Common","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips.Resources","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.TestTools","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Professional","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Common","Microsoft.VisualStudio.TestTools.TP.Legacy.Common.Res","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core.Resources","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Agent","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.IDE","Microsoft.VisualStudio.TestTools.TestWIExtension","Microsoft.VisualStudio.TestTools.TestPlatform.IDE","Microsoft.VisualStudio.PackageGroup.TestTools.DataCollectors","Microsoft.VisualStudio.LiveShareApi","Microsoft.VisualStudio.Component.TextTemplating","Microsoft.VisualStudio.TextTemplating.MSBuild","Microsoft.VisualStudio.TextTemplating.Integration","Microsoft.VisualStudio.TextTemplating.Core","Microsoft.VisualStudio.TextTemplating.Integration.Resources","Microsoft.VisualCpp.CRT.ClickOnce.Msi","Microsoft.Component.MSBuild","Microsoft.NuGet.Build.Tasks","Microsoft.DiagnosticsHub.KB2882822.Win7","Microsoft.VisualStudio.PackageGroup.Debugger.Script","Microsoft.VisualStudio.Debugger.Script.Msi","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions","Microsoft.VisualStudio.ProTools","sqlsysclrtypes","sqlsysclrtypes","SQLCommon","Microsoft.VisualStudio.ProTools.Resources","Microsoft.VisualStudio.WebToolsExtensions","Microsoft.VisualStudio.WebTools","Microsoft.VisualStudio.WebTools.Resources","Microsoft.VisualStudio.WebTools.MSBuild","Microsoft.VisualStudio.WebTools.WSP.FSA","Microsoft.VisualStudio.WebTools.WSP.FSA.Resources","Microsoft.VisualStudio.VC.Ide.MDD","Microsoft.VisualStudio.VisualC.Logging","Microsoft.WebTools.Shared","Microsoft.WebTools.DotNet.Core.ItemTemplates","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.Redist.14","Microsoft.Windows.UniversalCRT.Msu.7","Microsoft.VisualStudio.StaticAnalysis","Microsoft.VisualStudio.StaticAnalysis.Resources","Microsoft.VisualStudio.Component.Roslyn.Compiler","Microsoft.CodeAnalysis.Compilers","Microsoft.VisualStudio.Component.NuGet","Microsoft.CredentialProvider","Microsoft.VisualStudio.NuGet.PowershellBindingRedirect","Microsoft.VisualStudio.NuGet.Licenses","Microsoft.VisualStudio.PackageGroup.Community","Microsoft.VisualStudio.Community.Extra.Resources","Microsoft.VisualStudio.Community.Extra","Microsoft.VisualStudio.PackageGroup.Core","Microsoft.VisualStudio.CodeSense.Community","Microsoft.VisualStudio.TestTools.TeamFoundationClient","Microsoft.VisualStudio.PackageGroup.Debugger.Core","Microsoft.VisualStudio.PackageGroup.Debugger.TimeTravel.Record","Microsoft.VisualStudio.Debugger.TimeTravel.Runtime","Microsoft.VisualStudio.Debugger.TimeTravel.Runtime","Microsoft.VisualStudio.Debugger.TimeTravel.Agent","Microsoft.VisualStudio.Debugger.TimeTravel.Record","Microsoft.VisualStudio.Debugger.VSCodeDebuggerHost","Microsoft.VisualStudio.VC.Ide.Debugger","Microsoft.VisualStudio.VC.Ide.Debugger.Concord","Microsoft.VisualStudio.VC.Ide.Debugger.Concord.Resources","Microsoft.VisualStudio.VC.Ide.Debugger.Resources","Microsoft.VisualStudio.VC.Ide.Common","Microsoft.VisualStudio.VC.Ide.Common.Resources","Microsoft.VisualStudio.Debugger.Parallel","Microsoft.VisualStudio.Debugger.Parallel.Resources","Microsoft.VisualStudio.Debugger.CollectionAgents","Microsoft.VisualStudio.Debugger.Managed","Microsoft.CodeAnalysis.VisualStudio.Setup","Microsoft.CodeAnalysis.ExpressionEvaluator","Microsoft.VisualStudio.Debugger.Concord.Managed","Microsoft.VisualStudio.Debugger.Concord.Managed.Resources","Microsoft.VisualStudio.Debugger.Managed.Resources","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Remote.DbgHelp.Win8","Microsoft.VisualStudio.Debugger.Concord.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Remote.DbgHelp.Win8","Microsoft.VisualStudio.Debugger.Concord.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger","Microsoft.VisualStudio.Debugger.Package.DiagHub.Client.VSx86","Microsoft.VisualStudio.Debugger.Remote.DiagHub.Client","Microsoft.VisualStudio.Debugger.Remote.DiagHub.Client","Microsoft.VisualStudio.Debugger.DbgHelp.Win8","Microsoft.VisualStudio.VC.MSVCDis","Microsoft.VisualStudio.ScriptedHost","Microsoft.VisualStudio.ScriptedHost.Targeted","Microsoft.VisualStudio.ScriptedHost.Resources","Microsoft.IntelliTrace.DiagnosticsHub","Microsoft.VisualStudio.Debugger.Concord","Microsoft.VisualStudio.Debugger.Concord.Resources","Microsoft.VisualStudio.Debugger.Resources","Microsoft.PackageGroup.ClientDiagnostics","Microsoft.VisualStudio.AppResponsiveness","Microsoft.VisualStudio.AppResponsiveness.Targeted","Microsoft.VisualStudio.AppResponsiveness.Resources","Microsoft.VisualStudio.ClientDiagnostics","Microsoft.VisualStudio.ClientDiagnostics.Targeted","Microsoft.VisualStudio.ClientDiagnostics.Resources","Microsoft.VisualStudio.PackageGroup.CommunityCore","Microsoft.VisualStudio.ProjectSystem.Full","Microsoft.VisualStudio.ProjectSystem","Microsoft.VisualStudio.Community.x86","Microsoft.VisualStudio.Community.x64","Microsoft.VisualStudio.Community","Microsoft.IntelliTrace.CollectorCab","Microsoft.VisualStudio.Community.Resources","Microsoft.VisualStudio.Net.Eula.Resources","Microsoft.VisualStudio.WebSiteProject.DTE","Microsoft.MSHtml","Microsoft.VisualStudio.Platform.CallHierarchy","Microsoft.VisualStudio.Community.Msi.Resources","Microsoft.VisualStudio.Community.Msi","Microsoft.VisualStudio.Devenv.Msi","Microsoft.VisualStudio.MinShell.Interop.Msi","Microsoft.VisualStudio.Editors","Microsoft.VisualStudio.Product.Community","Microsoft.VisualStudio.Workload.CoreEditor","Microsoft.VisualStudio.Component.CoreEditor","Microsoft.VisualStudio.PackageGroup.CoreEditor","Microsoft.VisualCpp.Tools.Common.UtilsPrereq","Microsoft.VisualCpp.Tools.Common.Utils","Microsoft.VisualCpp.Tools.Common.Utils.Resources","Microsoft.VisualStudio.PackageGroup.VsDevCmd","Microsoft.VisualStudio.VsDevCmd.Ext.NetFxSdk","Microsoft.VisualStudio.VsDevCmd.Core.WinSdk","Microsoft.VisualStudio.VsDevCmd.Core.DotNet","Microsoft.VisualStudio.VC.DevCmd","Microsoft.VisualStudio.VC.DevCmd.Resources","Microsoft.VisualStudio.VirtualTree","Microsoft.VisualStudio.PackageGroup.Progression","Microsoft.VisualStudio.PerformanceProvider","Microsoft.VisualStudio.GraphModel","Microsoft.VisualStudio.GraphProvider","Microsoft.DiaSymReader","Microsoft.Build.Dependencies","Microsoft.Build.FileTracker.Msi","Microsoft.Build","Microsoft.VisualStudio.PackageGroup.NuGet","Microsoft.VisualStudio.NuGet.Core","Microsoft.VisualStudio.TextMateGrammars","Microsoft.VisualStudio.PackageGroup.TeamExplorer.Common","Microsoft.VisualStudio.TeamExplorer","Microsoft.ServiceHub","Microsoft.VisualStudio.ProjectServices","Microsoft.VisualStudio.OpenFolder.VSIX","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.PackageGroup.MinShell","Microsoft.VisualStudio.MinShell.Interop","Microsoft.VisualStudio.Log","Microsoft.VisualStudio.Log.Targeted","Microsoft.VisualStudio.Log.Resources","Microsoft.VisualStudio.Finalizer","Microsoft.VisualStudio.Devenv","Microsoft.VisualStudio.Devenv.Resources","Microsoft.VisualStudio.CoreEditor","Microsoft.VisualStudio.Platform.NavigateTo","Microsoft.VisualStudio.Connected","Microsoft.VisualStudio.PerfLib","Microsoft.VisualStudio.Connected.Resources","Microsoft.VisualStudio.MinShell","Microsoft.VisualStudio.Setup.Configuration","Microsoft.VisualStudio.MinShell.Platform","Microsoft.VisualStudio.MinShell.Platform.Resources","Microsoft.VisualStudio.MefHosting","Microsoft.VisualStudio.MefHosting.Resources","Microsoft.VisualStudio.Initializer","Microsoft.VisualStudio.ExtensionManager","Microsoft.VisualStudio.Platform.Editor","Microsoft.VisualStudio.MinShell.x86","Microsoft.VisualStudio.NativeImageSupport","Microsoft.VisualStudio.MinShell.Msi","Microsoft.VisualStudio.MinShell.Msi.Resources","Microsoft.VisualStudio.LanguageServer","Microsoft.VisualStudio.Devenv.Config","Microsoft.VisualStudio.MinShell.Resources","Microsoft.Net.PackageGroup.4.7.2.Redist","Microsoft.Net.4.7.2.FullRedist","Microsoft.VisualStudio.Branding.Community"]}]
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2019_Preview.txt b/deps/npm/node_modules/node-gyp/test/fixtures/VS_2019_Preview.txt
      deleted file mode 100644
      index 806509e7ce8652..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2019_Preview.txt
      +++ /dev/null
      @@ -1 +0,0 @@
      -[{"path":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Preview","version":"16.0.28608.199","packages":["Microsoft.VisualStudio.Product.Enterprise","Microsoft.VisualStudio.Workload.NativeDesktop","Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest","Microsoft.VisualStudio.VC.Ide.TestAdapterForGoogleTest","Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest","Microsoft.VisualStudio.VC.Ide.TestAdapterForBoostTest","Microsoft.VisualStudio.Component.VC.ATL","Microsoft.VisualStudio.VC.Ide.ATL","Microsoft.VisualStudio.VC.Ide.ATL.Resources","Microsoft.VisualCpp.ATL.X86","Microsoft.VisualCpp.ATL.X64","Microsoft.VisualCpp.ATL.Source","Microsoft.VisualCpp.ATL.Headers","Microsoft.VisualStudio.Component.VC.CMake.Project","Microsoft.VisualStudio.VC.CMake","Microsoft.VisualStudio.VC.CMake.Project","Microsoft.VisualStudio.VC.ExternalBuildFramework","Microsoft.VisualStudio.Component.VC.DiagnosticTools","Microsoft.VisualStudio.Component.Graphics.Tools","Microsoft.VisualStudio.Graphics.Viewers","Microsoft.VisualStudio.Graphics.Viewers.Resources","Microsoft.VisualStudio.Graphics.EnableTools","Microsoft.VisualStudio.Graphics.Msi","Microsoft.VisualStudio.Graphics.Msi","Microsoft.VisualStudio.Graphics.Analyzer","Microsoft.VisualStudio.Graphics.Analyzer.Targeted","Microsoft.VisualStudio.Graphics.Analyzer.Resources","Microsoft.VisualStudio.Graphics.Appid","Microsoft.VisualStudio.Graphics.Appid.Resources","Microsoft.VisualStudio.Component.Windows10SDK.17763","Win10SDK_10.0.17763","Microsoft.VisualStudio.Component.VC.Tools.x86.x64","Microsoft.VisualCpp.CodeAnalysis.Extensions","Microsoft.VisualCpp.CodeAnalysis.Extensions.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X86.Resources","Microsoft.VisualCpp.CodeAnalysis.Extensions.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64","Microsoft.VisualCpp.CodeAnalysis.ConcurrencyCheck.X64.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX86","Microsoft.VisualCpp.VCTip.HostX64.TargetX86","Microsoft.VisualCpp.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Tools.HostX64.TargetX64","Microsoft.VisualCpp.VCTip.HostX64.TargetX64","Microsoft.VisualCpp.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX64","Microsoft.VisualCpp.Premium.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86.Resources","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64","Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64.Resources","Microsoft.VisualCpp.PGO.X86","Microsoft.VisualCpp.PGO.X64","Microsoft.VisualCpp.PGO.Headers","Microsoft.VisualCpp.CRT.x86.Store","Microsoft.VisualCpp.CRT.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.x64.Store","Microsoft.VisualCpp.CRT.x64.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x86.OneCore.Desktop","Microsoft.VisualCpp.CRT.Redist.x64.OneCore.Desktop","Microsoft.VisualStudio.PackageGroup.VC.Tools.x86","Microsoft.VisualCpp.Tools.HostX86.TargetX64","Microsoft.VisualCpp.VCTip.hostX86.targetX64","Microsoft.VisualCpp.Tools.Hostx86.Targetx64.Resources","Microsoft.VisualCpp.Tools.HostX86.TargetX86","Microsoft.VisualCpp.VCTip.hostX86.targetX86","Microsoft.VisualCpp.Tools.HostX86.TargetX86.Resources","Microsoft.VisualCpp.Tools.Core.Resources","Microsoft.VisualCpp.Tools.Core.x86","Microsoft.VisualCpp.DIA.SDK","Microsoft.VisualCpp.CRT.x86.Desktop","Microsoft.VisualCpp.CRT.x64.Desktop","Microsoft.VisualCpp.CRT.Source","Microsoft.VisualCpp.CRT.Redist.X86","Microsoft.VisualCpp.CRT.Redist.X64","Microsoft.VisualCpp.CRT.Redist.Resources","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.RuntimeDebug.14","Microsoft.VisualCpp.CRT.Headers","Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core","Microsoft.VisualStudio.PackageGroup.TestTools.Native","Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native","Microsoft.VisualStudio.Component.ClassDesigner","Microsoft.VisualStudio.ClassDesigner","Microsoft.VisualStudio.ClassDesigner.Resources","Microsoft.VisualStudio.Component.VC.Redist.14.Latest","Microsoft.VisualCpp.Redist.14.Latest","Microsoft.VisualCpp.Redist.14.Latest","Microsoft.VisualStudio.VC.Templates.UnitTest","Microsoft.VisualStudio.VC.UnitTest.Desktop.Build.Core","Microsoft.VisualStudio.TestTools.TestPlatform.V1.CPP","Microsoft.VisualStudio.VC.Templates.UnitTest.Resources","Microsoft.VisualStudio.VC.Templates.Desktop","Microsoft.VisualStudio.Component.VC.CoreIde","Microsoft.VisualStudio.VC.Ide.Pro","Microsoft.VisualStudio.VC.Ide.Pro.Resources","Microsoft.VisualStudio.VC.Templates.Pro","Microsoft.VisualStudio.VC.Templates.Pro.Resources","Microsoft.VisualStudio.VC.Items.Pro","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Reduced","Microsoft.VisualStudio.VC.Ide.x64","Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Express","Microsoft.VisualStudio.VC.MSBuild.X64.v142","Microsoft.VisualStudio.VC.MSBuild.X64","Microsoft.VS.VC.MSBuild.X64.Resources","Microsoft.VisualStudio.VC.MSBuild.ARM.v142","Microsoft.VisualStudio.VC.MSBuild.ARM","Microsoft.VisualStudio.VC.MSBuild.x86.v142","Microsoft.VisualStudio.VC.MSBuild.X86","Microsoft.VisualStudio.VC.MSBuild.Base","Microsoft.VisualStudio.VC.MSBuild.Base.Resources","Microsoft.VisualStudio.VC.Ide.WinXPlus","Microsoft.VisualStudio.VC.Ide.Dskx","Microsoft.VisualStudio.VC.Ide.Dskx.Resources","Microsoft.VisualStudio.VC.Ide.Base","Microsoft.VisualStudio.VC.Ide.LanguageService","Microsoft.VisualStudio.VC.Ide.Core","Microsoft.VisualStudio.VC.Ide.Core.Resources","Microsoft.VisualStudio.VC.Ide.VCPkgDatabase","Microsoft.VisualStudio.VC.Ide.Progression.Enterprise","Microsoft.VisualStudio.VC.Ide.ProjectSystem","Microsoft.VisualStudio.VC.Ide.ProjectSystem.Resources","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine","Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine.Resources","Microsoft.VisualStudio.VC.Ide.LanguageService.Resources","Microsoft.VisualStudio.VC.Ide.Base.Resources","Microsoft.VisualStudio.Component.CodeMap","Microsoft.VisualStudio.Component.GraphDocument","Microsoft.VisualStudio.Vmp","Microsoft.VisualStudio.GraphDocument","Microsoft.VisualStudio.GraphDocument.Resources","Microsoft.VisualStudio.CodeMap","Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime","Microsoft.VisualStudio.Component.SQL.NCLI","sqllocaldb","sqlncli","Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions","Microsoft.VisualStudio.WebToolsExtensions","Microsoft.VisualStudio.WebTools","Microsoft.VisualStudio.WebTools.Resources","Microsoft.VisualStudio.WebTools.MSBuild","Microsoft.VisualStudio.PackageGroup.Debugger.Script","Microsoft.VisualStudio.Debugger.Script.Msi","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.Debugger.Script.Resources","Microsoft.VisualStudio.VC.Ide.MDD","Microsoft.VisualStudio.Component.NuGet","Microsoft.CredentialProvider","Component.Microsoft.VisualStudio.LiveShare","Microsoft.VisualStudio.LiveShare","Microsoft.VisualStudio.Component.Debugger.JustInTime","Microsoft.VisualStudio.Debugger.ImmersiveActivateHelper.Msi","Microsoft.VisualStudio.Debugger.JustInTime","Microsoft.VisualStudio.Debugger.JustInTime.Msi","Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd","Microsoft.IntelliTrace.DiagnosticsHubAgent.Targeted","Microsoft.IntelliTrace.Debugger","Microsoft.IntelliTrace.Debugger.Targeted","Microsoft.IntelliTrace.FrontEnd","Microsoft.DiagnosticsHub.Instrumentation","Microsoft.DiagnosticsHub.CpuSampling","Microsoft.DiagnosticsHub.CpuSampling.Targeted","Microsoft.PackageGroup.DiagnosticsHub.Platform","Microsoft.DiagnosticsHub.Collection.StopService.Uninstall","Microsoft.DiagnosticsHub.Runtime","Microsoft.DiagnosticsHub.Runtime.Targeted","Microsoft.DiagnosticsHub.Runtime.Resources","Microsoft.DiagnosticsHub.Collection","Microsoft.DiagnosticsHub.Collection.Service","Microsoft.DiagnosticsHub.Collection.StopService.Install","Microsoft.VisualStudio.Dsl.GraphObject","Microsoft.Net.4.TargetingPack","Microsoft.VisualStudio.VC.Ide.ResourceEditor","Microsoft.VisualStudio.VC.Ide.ResourceEditor.Resources","Microsoft.VisualStudio.NuGet.Licenses","Microsoft.WebTools.Shared","Microsoft.VisualStudio.WebToolsExtensions.DotNet.Core.ItemTemplates","Microsoft.VisualStudio.Component.TextTemplating","Microsoft.VisualStudio.TextTemplating.MSBuild","Microsoft.VisualStudio.TextTemplating.Integration","Microsoft.VisualStudio.TextTemplating.Core","Microsoft.VisualStudio.TextTemplating.Integration.Resources","Microsoft.VisualStudio.ProTools","sqlsysclrtypes","sqlsysclrtypes","SQLCommon","Microsoft.VisualStudio.ProTools.Resources","Microsoft.VisualStudio.NuGet.Core","Microsoft.VisualStudio.PackageGroup.TestTools.CodeCoverage","Microsoft.VisualStudio.PackageGroup.IntelliTrace.Core","Microsoft.IntelliTrace.Core","Microsoft.IntelliTrace.Core.Concord","Microsoft.IntelliTrace.Core.Targeted","Microsoft.IntelliTrace.ProfilerProxy.Msi.x64","Microsoft.IntelliTrace.ProfilerProxy.Msi","Microsoft.VisualStudio.TestTools.DynamicCodeCoverage","Microsoft.VisualStudio.TestTools.CodeCoverage.Msi","Microsoft.VisualStudio.TestTools.CodeCoverage","Microsoft.Icecap.Analysis","Microsoft.Icecap.Analysis.Targeted","Microsoft.Icecap.Analysis.Resources","Microsoft.Icecap.Analysis.Resources.Targeted","Microsoft.Icecap.Collection.Msi","Microsoft.Icecap.Collection.Msi.Targeted","Microsoft.Icecap.Collection.Msi.Resources","Microsoft.Icecap.Collection.Msi.Resources.Targeted","Microsoft.VisualStudio.PackageGroup.TestTools.Core","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V2.CLI","Microsoft.VisualStudio.TestTools.TestPlatform.V2.CLI","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V1.CLI","Microsoft.VisualStudio.TestTools.TestPlatform.V1.CLI","Microsoft.VisualStudio.TestTools.Pex.Common","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.Legacy","Microsoft.VisualStudio.PackageGroup.MinShell.Interop","Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Msi","Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Common","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips.Resources","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.TestTools","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Remote","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Professional","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core.Premium","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Common","Microsoft.VisualStudio.TestTools.TP.Legacy.Common.Res","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core.Resources","Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Agent","Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.IDE","Microsoft.VisualStudio.TestTools.TestWIExtension","Microsoft.VisualStudio.TestTools.TestPlatform.IDE","Microsoft.VisualStudio.PackageGroup.TestTools.DataCollectors","Microsoft.VisualStudio.TestTools.NE.Msi.Targeted","Microsoft.VisualStudio.TestTools.NetworkEmulation","Microsoft.VisualStudio.TestTools.DataCollectors","Microsoft.VisualCpp.CRT.ClickOnce.Msi","Microsoft.VisualStudio.WebTools.WSP.FSA","Microsoft.VisualStudio.WebTools.WSP.FSA.Resources","Microsoft.VisualStudio.Component.Static.Analysis.Tools","Microsoft.VisualCpp.Redist.14","Microsoft.VisualCpp.Redist.14","Microsoft.VisualStudio.StaticAnalysis","Microsoft.VisualStudio.StaticAnalysis.Resources","Microsoft.VisualStudio.PackageGroup.Community","Microsoft.VisualStudio.Community.Extra.Resources","Microsoft.VisualStudio.Community.Extra","Microsoft.VisualStudio.PackageGroup.Core","Microsoft.VisualStudio.CodeSense","Microsoft.VisualStudio.CodeSense.Community","Microsoft.VisualStudio.TestTools.TeamFoundationClient","Microsoft.VisualStudio.PackageGroup.Debugger.Core","Microsoft.VisualStudio.PackageGroup.Debugger.TimeTravel.Record","Microsoft.VisualStudio.Debugger.TimeTravel.Runtime","Microsoft.VisualStudio.Debugger.TimeTravel.Runtime","Microsoft.VisualStudio.Debugger.TimeTravel.Agent","Microsoft.VisualStudio.Debugger.TimeTravel.Record","Microsoft.VisualStudio.Debugger.VSCodeDebuggerHost","Microsoft.VisualStudio.VC.Ide.Debugger","Microsoft.VisualStudio.VC.Ide.Debugger.Concord","Microsoft.VisualStudio.VC.Ide.Debugger.Concord.Resources","Microsoft.VisualStudio.VC.Ide.Debugger.Resources","Microsoft.VisualStudio.VC.Ide.Common","Microsoft.VisualStudio.VC.Ide.Common.Resources","Microsoft.VisualStudio.Debugger.Parallel","Microsoft.VisualStudio.Debugger.Parallel.Resources","Microsoft.VisualStudio.Debugger.CollectionAgents","Microsoft.VisualStudio.Debugger.Managed","Microsoft.VisualStudio.Debugger.Concord.Managed","Microsoft.VisualStudio.Debugger.Concord.Managed.Resources","Microsoft.VisualStudio.Debugger.Managed.Resources","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote","Microsoft.VisualStudio.Debugger.Concord.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger.Remote.Resources","Microsoft.VisualStudio.Debugger","Microsoft.VisualStudio.Debugger.Package.DiagHub.Client.VSx86","Microsoft.VisualStudio.Debugger.Remote.DiagHub.Client","Microsoft.VisualStudio.Debugger.Remote.DiagHub.Client","Microsoft.VisualStudio.VC.MSVCDis","Microsoft.VisualStudio.ScriptedHost","Microsoft.VisualStudio.ScriptedHost.Targeted","Microsoft.VisualStudio.ScriptedHost.Resources","Microsoft.IntelliTrace.DiagnosticsHub","Microsoft.VisualStudio.Debugger.Concord","Microsoft.VisualStudio.Debugger.Concord.Resources","Microsoft.VisualStudio.Debugger.Resources","Microsoft.PackageGroup.ClientDiagnostics","Microsoft.VisualStudio.AppResponsiveness","Microsoft.VisualStudio.AppResponsiveness.Targeted","Microsoft.VisualStudio.AppResponsiveness.Resources","Microsoft.VisualStudio.ClientDiagnostics","Microsoft.VisualStudio.ClientDiagnostics.Targeted","Microsoft.VisualStudio.ClientDiagnostics.Resources","Microsoft.VisualStudio.PackageGroup.ProfessionalCore","Microsoft.VisualStudio.Professional","Microsoft.VisualStudio.Professional.Msi","Microsoft.VisualStudio.PackageGroup.EnterpriseCore","Microsoft.VisualStudio.Enterprise.Msi","Microsoft.VisualStudio.Enterprise","Microsoft.ShDocVw","Microsoft.VisualStudio.PackageGroup.CommunityCore","Microsoft.VisualStudio.ProjectSystem.Full","Microsoft.VisualStudio.ProjectSystem","Microsoft.VisualStudio.Community.x86","Microsoft.VisualStudio.Community.x64","Microsoft.VisualStudio.Community","Microsoft.IntelliTrace.CollectorCab","Microsoft.VisualStudio.Community.Resources","Microsoft.VisualStudio.WebSiteProject.DTE","Microsoft.MSHtml","Microsoft.VisualStudio.Platform.CallHierarchy","Microsoft.VisualStudio.Community.Msi.Resources","Microsoft.VisualStudio.Community.Msi","Microsoft.VisualStudio.Devenv.Msi","Microsoft.VisualStudio.MinShell.Interop.Msi","Microsoft.VisualStudio.Editors","Microsoft.VisualStudio.Net.Eula.Resources","Microsoft.CodeAnalysis.ExpressionEvaluator","Microsoft.CodeAnalysis.VisualStudio.Setup","Microsoft.Component.MSBuild","Microsoft.NuGet.Build.Tasks","Microsoft.VisualStudio.Component.Roslyn.Compiler","Microsoft.CodeAnalysis.Compilers","Microsoft.VisualStudio.Workload.CoreEditor","Microsoft.VisualStudio.Component.CoreEditor","Microsoft.VisualStudio.PackageGroup.CoreEditor","Microsoft.VisualCpp.Tools.Common.UtilsPrereq","Microsoft.VisualCpp.Tools.Common.Utils","Microsoft.VisualCpp.Tools.Common.Utils.Resources","Microsoft.VisualStudio.PackageGroup.VsDevCmd","Microsoft.VisualStudio.VsDevCmd.Ext.NetFxSdk","Microsoft.VisualStudio.VsDevCmd.Core.WinSdk","Microsoft.VisualStudio.VsDevCmd.Core.DotNet","Microsoft.VisualStudio.VC.DevCmd","Microsoft.VisualStudio.VC.DevCmd.Resources","Microsoft.VisualStudio.VirtualTree","Microsoft.VisualStudio.PackageGroup.Progression","Microsoft.VisualStudio.PerformanceProvider","Microsoft.VisualStudio.GraphModel","Microsoft.VisualStudio.GraphProvider","Microsoft.DiaSymReader","Microsoft.Build.Dependencies","Microsoft.Build.FileTracker.Msi","Microsoft.Build","Microsoft.VisualStudio.TextMateGrammars","Microsoft.VisualStudio.PackageGroup.TeamExplorer.Common","Microsoft.VisualStudio.TeamExplorer","Microsoft.ServiceHub","Microsoft.VisualStudio.ProjectServices","Microsoft.VisualStudio.SLNX.VSIX","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.FileHandler.Msi","Microsoft.VisualStudio.PackageGroup.MinShell","Microsoft.VisualStudio.MinShell.Interop","Microsoft.VisualStudio.Log","Microsoft.VisualStudio.Log.Targeted","Microsoft.VisualStudio.Log.Resources","Microsoft.VisualStudio.Finalizer","Microsoft.VisualStudio.Devenv","Microsoft.VisualStudio.Devenv.Resources","Microsoft.VisualStudio.CoreEditor","Microsoft.VisualStudio.Platform.NavigateTo","Microsoft.VisualStudio.Connected","Microsoft.VisualStudio.Connected.Resources","Microsoft.VisualStudio.MinShell","Microsoft.VisualStudio.Setup.Configuration","Microsoft.VisualStudio.Platform.Search","Microsoft.VisualStudio.MinShell.Platform","Microsoft.VisualStudio.MinShell.Platform.Resources","Microsoft.VisualStudio.MefHosting","Microsoft.VisualStudio.MefHosting.Resources","Microsoft.VisualStudio.Initializer","Microsoft.VisualStudio.ExtensionManager","Microsoft.VisualStudio.Platform.Editor","Microsoft.VisualStudio.MinShell.x86","Microsoft.VisualStudio.NativeImageSupport","Microsoft.VisualStudio.MinShell.Msi","Microsoft.VisualStudio.MinShell.Msi.Resources","Microsoft.VisualStudio.LanguageServer","Microsoft.VisualStudio.Devenv.Config","Microsoft.VisualStudio.MinShell.Resources","Microsoft.Net.PackageGroup.4.7.2.Redist","Microsoft.VisualStudio.Branding.Enterprise"]}]
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2022_Community_workload.txt b/deps/npm/node_modules/node-gyp/test/fixtures/VS_2022_Community_workload.txt
      deleted file mode 100644
      index 7cd20f85989261..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/VS_2022_Community_workload.txt
      +++ /dev/null
      @@ -1,569 +0,0 @@
      -[
      -    {
      -        "path": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community",
      -        "version": "17.4.33213.308",
      -        "packages": [
      -            "Microsoft.VisualStudio.Product.Community",
      -            "Microsoft.VisualStudio.PackageGroup.LiveShare.VSCore",
      -            "Microsoft.VisualStudio.LiveShare.VSCore",
      -            "Microsoft.VisualStudio.Workload.NativeDesktop",
      -            "Microsoft.VisualStudio.Component.VC.ASAN",
      -            "Microsoft.VisualCpp.ASAN.X86",
      -            "Microsoft.VC.14.34.17.4.ASAN.X86.base",
      -            "Microsoft.VC.14.34.17.4.ASAN.X64.base",
      -            "Microsoft.VC.14.34.17.4.ASAN.Headers.base",
      -            "Microsoft.VisualStudio.VC.IDE.Project.Factories",
      -            "Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest",
      -            "Microsoft.VisualStudio.VC.Ide.TestAdapterForGoogleTest",
      -            "Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest",
      -            "Microsoft.VisualStudio.VC.Ide.TestAdapterForBoostTest",
      -            "Microsoft.VisualStudio.Component.VC.CMake.Project",
      -            "Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake",
      -            "Microsoft.VisualStudio.VC.CMake",
      -            "Microsoft.VisualStudio.VC.CMake.Project",
      -            "Microsoft.VisualStudio.VC.CMake.Client",
      -            "Microsoft.VisualStudio.VC.ExternalBuildFramework",
      -            "Microsoft.VisualStudio.Component.VC.DiagnosticTools",
      -            "Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core",
      -            "Microsoft.VisualStudio.PackageGroup.TestTools.Native",
      -            "Microsoft.VisualStudio.Component.VC.Redist.14.Latest",
      -            "Microsoft.VisualStudio.VC.Templates.UnitTest",
      -            "Microsoft.VisualStudio.VC.UnitTest.Desktop.Build.Core",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.V1.CPP",
      -            "Microsoft.VisualStudio.VC.Templates.UnitTest.Resources",
      -            "Microsoft.VisualStudio.VC.Templates.Desktop",
      -            "Microsoft.VisualStudio.Component.Graphics",
      -            "Microsoft.VisualStudio.Graphics.Viewers",
      -            "Microsoft.VisualStudio.Graphics.Viewers.Resources",
      -            "Microsoft.VisualStudio.Component.VC.ATL.ARM64",
      -            "Microsoft.VisualCpp.ATL.ARM64",
      -            "Microsoft.VC.14.34.17.4.ATL.ARM64.base",
      -            "Microsoft.VisualStudio.Component.VC.ATL",
      -            "Microsoft.VisualStudio.VC.Ide.ATL",
      -            "Microsoft.VisualStudio.VC.Ide.ATL.Resources",
      -            "Microsoft.VisualCpp.ATL.X86",
      -            "Microsoft.VC.14.34.17.4.ATL.X86.base",
      -            "Microsoft.VisualCpp.ATL.X64",
      -            "Microsoft.VC.14.34.17.4.ATL.X64.base",
      -            "Microsoft.VC.14.34.17.4.Props.ATLMFC",
      -            "Microsoft.VisualCpp.ATL.Source",
      -            "Microsoft.VC.14.34.17.4.ATL.Source.base",
      -            "Microsoft.VisualCpp.ATL.Headers",
      -            "Microsoft.VC.14.34.17.4.ATL.Headers.base",
      -            "Microsoft.VC.14.34.17.4.Servicing.ATL",
      -            "Microsoft.VisualStudio.Component.VC.Tools.ARM64",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.ARM64.v143",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.ARM64",
      -            "Microsoft.VS.VC.vcvars.arm64.Shortcuts",
      -            "Microsoft.VisualCpp.CA.Ext.Hostx64.TargetARM64",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx64.TargetARM64.base",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx64.TargetARM64.Res.base",
      -            "Microsoft.VisualCpp.CA.Ext.Hostx86.TargetARM64",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx86.TargetARM64.base",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx86.TargetARM64.Res.base",
      -            "Microsoft.VisualCpp.CA.Ext.HostARM64.TargetARM64",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.HostARM64.TargetARM64.base",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.HostARM64.TargetARM64.Res.base",
      -            "Microsoft.VisualCpp.Tools.Hostx86.Targetarm64",
      -            "Microsoft.VC.14.34.17.4.Tools.Hostx86.Targetarm64.base",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX86.TargetARM64.Res.base",
      -            "Microsoft.VisualCpp.Tools.HostARM64.TargetARM64",
      -            "Microsoft.VC.14.34.17.4.Tools.HostARM64.TargetARM64.base",
      -            "Microsoft.VC.14.34.17.4.Tools.HostARM64.TargetARM64.Res.base",
      -            "Microsoft.VisualCpp.CRT.Redist.ARM64.OneCore.Desktop",
      -            "Microsoft.VC.14.34.17.4.CRT.Redist.ARM64.OneCore.Desktop.base",
      -            "Microsoft.VisualCpp.CRT.Redist.ARM64",
      -            "Microsoft.VC.14.34.17.4.CRT.Redist.ARM64.base",
      -            "Microsoft.VisualCpp.CRT.ARM64.OneCore.Desktop",
      -            "Microsoft.VC.14.34.17.4.CRT.ARM64.OneCore.Desktop.base",
      -            "Microsoft.VC.14.34.17.4.CRT.ARM64.OneCore.Desktop.debug.base",
      -            "Microsoft.VisualCpp.CRT.ARM64.Store",
      -            "Microsoft.VC.14.34.17.4.CRT.ARM64.Store.base",
      -            "Microsoft.VisualCpp.CRT.ARM64.Desktop",
      -            "Microsoft.VC.14.34.17.4.CRT.ARM64.Desktop.base",
      -            "Microsoft.VC.14.34.17.4.CRT.ARM64.Desktop.debug.base",
      -            "Microsoft.VisualStudio.PackageGroup.VC.Tools.x64.ARM64",
      -            "Microsoft.VisualCpp.Tools.Core",
      -            "Microsoft.VisualCpp.PGO.ARM64",
      -            "Microsoft.VC.14.34.17.4.PGO.ARM64.base",
      -            "Microsoft.VisualCpp.Premium.Tools.Hostx86.Targetarm64",
      -            "Microsoft.VC.14.34.17.4.Premium.Tools.Hostx86.Targetarm64.base",
      -            "Microsoft.VC.14.34.17.4.Prem.HostX86.TargetARM64.Res.base",
      -            "Microsoft.VisualCpp.Premium.Tools.HostX64.TargetARM64",
      -            "Microsoft.VC.14.34.17.4.Premium.Tools.HostX64.TargetARM64.base",
      -            "Microsoft.VC.14.34.17.4.Prem.HostX64.TargetARM64.Res.base",
      -            "Microsoft.VisualCpp.Premium.Tools.ARM64.Base",
      -            "Microsoft.VC.14.34.17.4.Premium.Tools.ARM64.Base.base",
      -            "Microsoft.VisualCpp.Tools.HostX64.TargetARM64",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX64.TargetARM64.base",
      -            "Microsoft.VC.14.34.17.4.Props.ARM64",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX64.TargetARM64.Res.base",
      -            "Microsoft.VisualStudio.Component.VC.Tools.ARM64EC",
      -            "Microsoft.VisualStudio.Component.Windows11SDK.22621",
      -            "Win11SDK_10.0.22621",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.ARM64EC.v143",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.ARM64EC",
      -            "Microsoft.VisualCpp.CRT.ARM64EC.Store",
      -            "Microsoft.VC.14.34.17.4.CRT.ARM64EC.Store.base",
      -            "Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
      -            "Microsoft.VisualCpp.CodeAnalysis.Extensions",
      -            "Microsoft.VisualCpp.CA.Ext.HostARM64.Targetx64",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.HostARM64.Targetx64.base",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.HostARM64.Targetx64.Res.base",
      -            "Microsoft.VisualCpp.CA.Ext.HostARM64.Targetx86",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.HostARM64.Targetx86.base",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.HostARM64.Targetx86.Res.base",
      -            "Microsoft.VisualCpp.CA.Ext.Hostx86.Targetx64",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx86.Targetx64.base",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx86.Targetx64.Res.base",
      -            "Microsoft.VisualCpp.CA.Ext.Hostx86.Targetx86",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx86.Targetx86.base",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx86.Targetx86.Res.base",
      -            "Microsoft.VisualCpp.CA.Ext.Hostx64.Targetx64",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx64.Targetx64.base",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx64.Targetx64.Res.base",
      -            "Microsoft.VisualCpp.CA.Ext.Hostx64.Targetx86",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx64.Targetx86.base",
      -            "Microsoft.VC.14.34.17.4.Servicing.CAExtensions",
      -            "Microsoft.VC.14.34.17.4.CA.Ext.Hostx64.Targetx86.Res.base",
      -            "Microsoft.VisualCpp.Tools.HostX64.TargetX86",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX64.TargetX86.base",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX64.TargetX86.Res.base",
      -            "Microsoft.VisualCpp.Tools.HostX64.TargetX64",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX64.TargetX64.base",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX64.TargetX64.Res.base",
      -            "Microsoft.VisualCpp.Tools.HostARM64.TargetX86",
      -            "Microsoft.VC.14.34.17.4.Tools.HostARM64.TargetX86.base",
      -            "Microsoft.VisualCpp.RuntimeDebug.14",
      -            "Microsoft.VC.14.34.17.4.Tools.HostARM64.TargetX86.Res.base",
      -            "Microsoft.VisualCpp.Tools.HostARM64.TargetX64",
      -            "Microsoft.VC.14.34.17.4.Tools.HostARM64.TargetX64.base",
      -            "Microsoft.VisualCpp.RuntimeDebug.14.ARM64",
      -            "Microsoft.VisualCpp.Redist.14.Latest",
      -            "Microsoft.VisualCpp.Redist.14.Latest",
      -            "Microsoft.VC.14.34.17.4.Tools.HostARM64.Targetx64.Res.base",
      -            "Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX64",
      -            "Microsoft.VC.14.34.17.4.Premium.Tools.HostX86.TargetX64.base",
      -            "Microsoft.VC.14.34.17.4.Prem.Hostx86.Targetx64.Res.base",
      -            "Microsoft.VisualCpp.Premium.Tools.HostX86.TargetX86",
      -            "Microsoft.VC.14.34.17.4.Premium.Tools.HostX86.TargetX86.base",
      -            "Microsoft.VC.14.34.17.4.Prem.HostX86.TargetX86.Res.base",
      -            "Microsoft.VisualCpp.Premium.Tools.HostARM64.TargetX86",
      -            "Microsoft.VC.14.34.17.4.Premium.Tools.HostARM64.TargetX86.base",
      -            "Microsoft.VC.14.34.17.4.Prem.HostARM64.TargetX86.Res.base",
      -            "Microsoft.VisualCpp.Premium.Tools.HostARM64.TargetX64",
      -            "Microsoft.VC.14.34.17.4.Premium.Tools.HostARM64.TargetX64.base",
      -            "Microsoft.VC.14.34.17.4.Prem.HostARM64.Targetx64.Res.base",
      -            "Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX86",
      -            "Microsoft.VC.14.34.17.4.Premium.Tools.HostX64.TargetX86.base",
      -            "Microsoft.VC.14.34.17.4.Prem.HostX64.TargetX86.Res.base",
      -            "Microsoft.VisualCpp.Premium.Tools.HostX64.TargetX64",
      -            "Microsoft.VC.14.34.17.4.Premium.Tools.HostX64.TargetX64.base",
      -            "Microsoft.VC.14.34.17.4.Prem.HostX64.TargetX64.Res.base",
      -            "Microsoft.VisualCpp.PGO.X86",
      -            "Microsoft.VC.14.34.17.4.PGO.X86.base",
      -            "Microsoft.VisualCpp.PGO.X64",
      -            "Microsoft.VC.14.34.17.4.PGO.X64.base",
      -            "Microsoft.VisualCpp.PGO.Headers",
      -            "Microsoft.VC.14.34.17.4.PGO.Headers.base",
      -            "Microsoft.VisualCpp.CRT.x86.Store",
      -            "Microsoft.VC.14.34.17.4.CRT.x86.Store.base",
      -            "Microsoft.VisualCpp.CRT.x86.OneCore.Desktop",
      -            "Microsoft.VC.14.34.17.4.CRT.x86.OneCore.Desktop.base",
      -            "Microsoft.VisualCpp.CRT.x64.Store",
      -            "Microsoft.VC.14.34.17.4.CRT.x64.Store.base",
      -            "Microsoft.VisualCpp.CRT.x64.OneCore.Desktop",
      -            "Microsoft.VC.14.34.17.4.CRT.x64.OneCore.Desktop.base",
      -            "Microsoft.VisualCpp.CRT.Redist.x86.OneCore.Desktop",
      -            "Microsoft.VC.14.34.17.4.CRT.Redist.x86.OneCore.Desktop.base",
      -            "Microsoft.VisualCpp.CRT.Redist.x64.OneCore.Desktop",
      -            "Microsoft.VC.14.34.17.4.CRT.Redist.x64.OneCore.Desktop.base",
      -            "Microsoft.VisualStudio.PackageGroup.VC.Tools.x86",
      -            "Microsoft.VisualCpp.Tools.Hostx86.Targetx64.Res",
      -            "Microsoft.VisualCpp.Tools.HostX86.TargetX64",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX86.TargetX64.base",
      -            "Microsoft.VC.14.34.17.4.Props.x64",
      -            "Microsoft.VC.14.34.17.4.Tools.Hostx86.Targetx64.Res.base",
      -            "Microsoft.VisualCpp.Tools.HostX86.TargetX86.Res",
      -            "Microsoft.VisualCpp.Tools.HostX86.TargetX86",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX86.TargetX86.base",
      -            "Microsoft.VC.14.34.17.4.Servicing.Compilers",
      -            "Microsoft.VC.14.34.17.4.Props.x86",
      -            "Microsoft.VC.14.34.17.4.Props",
      -            "Microsoft.VC.14.34.17.4.Tools.HostX86.TargetX86.Res.base",
      -            "Microsoft.VisualCpp.Tools.Core.Resources",
      -            "Microsoft.VisualCpp.Tools.Core.x86",
      -            "Microsoft.VC.14.34.17.4.Tools.Core.Props",
      -            "Microsoft.VisualCpp.DIA.SDK",
      -            "Microsoft.VisualCpp.Servicing.DIASDK",
      -            "Microsoft.VisualCpp.CRT.x86.Desktop",
      -            "Microsoft.VC.14.34.17.4.CRT.x86.Desktop.base",
      -            "Microsoft.VisualCpp.CRT.x64.Desktop",
      -            "Microsoft.VC.14.34.17.4.CRT.x64.Desktop.base",
      -            "Microsoft.VisualCpp.CRT.Source",
      -            "Microsoft.VC.14.34.17.4.CRT.Source.base",
      -            "Microsoft.VisualCpp.CRT.Redist.X86",
      -            "Microsoft.VC.14.34.17.4.CRT.Redist.X86.base",
      -            "Microsoft.VisualCpp.CRT.Redist.X64",
      -            "Microsoft.VisualCpp.CRT.Redist.Resources",
      -            "Microsoft.VC.14.34.17.4.CRT.Redist.X64.base",
      -            "Microsoft.VisualCpp.CRT.Headers",
      -            "Microsoft.VC.14.34.17.4.CRT.Headers.base",
      -            "Microsoft.VC.14.34.17.4.Servicing.CrtHeaders",
      -            "Microsoft.VC.14.34.17.4.Servicing",
      -            "Microsoft.VisualStudio.Component.VC.CoreIde",
      -            "Microsoft.VisualStudio.VC.Ide.Pro",
      -            "Microsoft.VisualStudio.VC.Ide.Pro.Resources",
      -            "Microsoft.VisualStudio.VC.Templates.General",
      -            "Microsoft.VisualStudio.VC.Templates.General.Resources",
      -            "Microsoft.VisualStudio.VC.Items.Pro",
      -            "Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Reduced",
      -            "Microsoft.VisualStudio.VC.Ide.x64",
      -            "Microsoft.VisualStudio.PackageGroup.VC.CoreIDE.Express",
      -            "Microsoft.VisualStudio.VC.vcvars",
      -            "Microsoft.VS.VC.vcvars.x86.Shortcuts",
      -            "Microsoft.VS.VC.vcvars.x64.Shortcuts",
      -            "Microsoft.VS.VC.vcvars.arm64_x64.Shortcuts",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.X64.v143",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.X64",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.ARM.v143",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.ARM",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.x86.v143",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.X86",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.Base",
      -            "Microsoft.VisualStudio.VC.MSBuild.v170.Base.Resources",
      -            "Microsoft.VisualStudio.VC.Ide.WinXPlus",
      -            "Microsoft.VisualStudio.VC.Ide.Dskx",
      -            "Microsoft.VisualStudio.VC.Ide.Dskx.Resources",
      -            "Microsoft.VisualStudio.VC.Ide.Base",
      -            "Microsoft.VisualStudio.VC.Ide.LanguageService",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.Scripts",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.PythonDistro",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.10",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.9",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.8",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.7",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.6",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.5",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.4",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.3",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.2",
      -            "Microsoft.VisualStudio.VC.Ide.SecurityIssueAnalysis.3rdPartyLibs.1",
      -            "Microsoft.VisualStudio.VC.Ide.VCPkgDatabase",
      -            "Microsoft.VisualStudio.VC.Ide.Core",
      -            "Microsoft.VisualStudio.VC.Ide.ProjectSystem",
      -            "Microsoft.VisualStudio.VC.Ide.ProjectSystem.Resources",
      -            "Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine",
      -            "Microsoft.VisualStudio.VC.Ide.Core.VCProjectEngine.Resources",
      -            "Microsoft.VisualStudio.VC.Ide.LanguageService.Resources",
      -            "Microsoft.VisualStudio.VC.Llvm.Base",
      -            "Microsoft.VisualStudio.VC.Ide.Base.Resources",
      -            "Microsoft.Net.PackageGroup.4.8.1.Redist",
      -            "Microsoft.VisualStudio.Component.IntelliCode",
      -            "Microsoft.VisualStudio.IntelliCode.CSharp",
      -            "Microsoft.VisualStudio.IntelliCode",
      -            "Component.Microsoft.VisualStudio.LiveShare.2022",
      -            "Microsoft.VisualStudio.Component.Debugger.JustInTime",
      -            "Microsoft.VisualStudio.Debugger.ImmersiveActivateHelper.Msi",
      -            "Microsoft.VisualStudio.Debugger.JustInTime",
      -            "Microsoft.VisualStudio.Debugger.JustInTime.Msi",
      -            "Microsoft.VisualStudio.LiveShare.2022",
      -            "Microsoft.Icecap.Analysis",
      -            "Microsoft.Icecap.Analysis.Resources",
      -            "Microsoft.Icecap.Analysis.Resources.Targeted",
      -            "Microsoft.Icecap.Collection.Msi",
      -            "Microsoft.Icecap.Collection.Msi.Targeted",
      -            "Microsoft.Icecap.Collection.Msi.Resources",
      -            "Microsoft.Icecap.Collection.Msi.Resources.Targeted",
      -            "Microsoft.DiagnosticsHub.Instrumentation",
      -            "Microsoft.DiagnosticsHub.Instrumentation.Targeted",
      -            "Microsoft.DiagnosticsHub.CpuSampling",
      -            "Microsoft.DiagnosticsHub.CpuSampling.Targeted",
      -            "Microsoft.PackageGroup.DiagnosticsHub.Platform",
      -            "Microsoft.VisualStudio.InstrumentationEngine.ARM64",
      -            "Microsoft.VisualStudio.InstrumentationEngine",
      -            "Microsoft.DiagnosticsHub.Runtime.ExternalDependencies",
      -            "SQLiteCore",
      -            "SQLiteCore.Targeted",
      -            "Microsoft.DiagnosticsHub.Runtime.ExternalDependencies.Targeted",
      -            "Microsoft.DiagnosticsHub.Runtime",
      -            "Microsoft.DiagnosticsHub.Runtime.Targeted",
      -            "Microsoft.DiagnosticsHub.Collection.ExternalDependencies.arm64",
      -            "Microsoft.DiagnosticsHub.Collection",
      -            "Microsoft.DiagnosticsHub.Collection.Service",
      -            "Microsoft.VisualStudio.VC.Ide.MDD",
      -            "Microsoft.VisualStudio.VC.Ide.Linux.ConnectionManager",
      -            "Microsoft.VisualStudio.VisualC.Utilities",
      -            "Microsoft.VisualStudio.VisualC.Utilities.Resources",
      -            "Microsoft.VisualStudio.VC.Ide.Linux.ConnectionManager.Resources",
      -            "Microsoft.VisualStudio.VC.Ide.ResourceEditor",
      -            "Microsoft.VisualStudio.VC.Ide.ResourceEditor.Resources",
      -            "Microsoft.VisualStudio.PackageGroup.TestTools.Core",
      -            "Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V2.CLI",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.V2.CLI",
      -            "Microsoft.VisualStudio.TestTools.Pex.Common",
      -            "Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.V1.CLI",
      -            "Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.Legacy",
      -            "Microsoft.VisualStudio.PackageGroup.MinShell.Interop",
      -            "Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Msi",
      -            "Microsoft.VisualStudio.TestTools.TP.Legacy.Tips.Common",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Tips.Resources",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.TestSettings",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Professional",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Common",
      -            "Microsoft.VisualStudio.TestTools.TP.Legacy.Common.Res",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Core.Resources",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.Legacy.Agent",
      -            "Microsoft.VisualStudio.PackageGroup.TestTools.TestPlatform.IDE",
      -            "Microsoft.VisualStudio.Cache.Service",
      -            "Microsoft.VisualStudio.TestTools.TestWIExtension",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.V1.CLI",
      -            "Microsoft.VisualStudio.TestTools.TestPlatform.IDE",
      -            "Microsoft.VisualStudio.PackageGroup.TestTools.CodeCoverage",
      -            "Microsoft.VisualStudio.PackageGroup.TestTools.DataCollectors",
      -            "Microsoft.VisualStudio.Component.NuGet",
      -            "Microsoft.CredentialProvider",
      -            "Microsoft.VisualStudio.NuGet.Licenses",
      -            "Microsoft.VisualStudio.Component.TextTemplating",
      -            "Microsoft.VisualStudio.TextTemplating.MSBuild",
      -            "Microsoft.VisualStudio.TextTemplating.Integration",
      -            "Microsoft.VisualStudio.TextTemplating.Core",
      -            "Microsoft.VisualStudio.TextTemplating.Integration.Resources",
      -            "Microsoft.VisualCpp.CRT.ClickOnce.Msi",
      -            "Microsoft.VisualStudio.Component.Roslyn.LanguageServices",
      -            "Microsoft.VisualStudio.InteractiveWindow",
      -            "Microsoft.DiaSymReader.Native",
      -            "Microsoft.VisualCpp.Redist.14",
      -            "Microsoft.VisualCpp.Redist.14",
      -            "Microsoft.VisualCpp.Servicing.Redist",
      -            "Microsoft.VisualStudio.PackageGroup.StaticAnalysis",
      -            "Microsoft.VisualStudio.StaticAnalysis.IDE",
      -            "Microsoft.VisualStudio.StaticAnalysis.IDE.Resources",
      -            "Microsoft.VisualStudio.StaticAnalysis.FxCop.Resources",
      -            "Microsoft.VisualStudio.StaticAnalysis.auxil",
      -            "Microsoft.VisualStudio.StaticAnalysis.auxil.Resources",
      -            "Roslyn.VisualStudio.Setup.ServiceHub",
      -            "Microsoft.Component.MSBuild",
      -            "Microsoft.NuGet.Build.Tasks.Setup",
      -            "Microsoft.VisualStudio.Component.Roslyn.Compiler",
      -            "Microsoft.CodeAnalysis.Compilers",
      -            "Microsoft.VisualStudio.Component.JavaScript.TypeScript",
      -            "Microsoft.VisualStudio.JavaScript.ProjectSystem",
      -            "Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions",
      -            "Microsoft.VisualStudio.ProTools",
      -            "sqlsysclrtypes",
      -            "SQLCommon",
      -            "Microsoft.VisualStudio.ProTools.Resources",
      -            "Microsoft.VisualStudio.Web.Scaffolding",
      -            "Microsoft.VisualStudio.WebToolsExtensions",
      -            "Microsoft.VisualStudio.ConnectedServices.Core",
      -            "Microsoft.VisualStudio.WebTools",
      -            "Microsoft.VisualStudio.WebToolsExtensions.MSBuild",
      -            "Microsoft.VisualStudio.WebTools.Resources",
      -            "Microsoft.VisualStudio.WebTools.WSP.FSA",
      -            "Microsoft.VisualStudio.WebTools.WSP.FSA.Resources",
      -            "Microsoft.VisualStudio.PackageGroup.Debugger.Script",
      -            "Microsoft.VisualStudio.Component.TypeScript.TSServer",
      -            "Microsoft.VisualStudio.Package.TypeScript.TSServer",
      -            "Microsoft.VisualStudio.PackageGroup.JavaScript.Language",
      -            "Microsoft.VisualStudio.Package.NodeJs",
      -            "TypeScript.Build",
      -            "TypeScript.LanguageService",
      -            "TypeScript.Tools",
      -            "Microsoft.VisualStudio.PackageGroup.Community",
      -            "Microsoft.VisualStudio.Community.VB.x86",
      -            "Microsoft.VisualStudio.Community.VB.x64",
      -            "Microsoft.VisualStudio.PackageGroup.Core",
      -            "Microsoft.VisualStudio.CodeSense.Community",
      -            "Microsoft.VisualStudio.TestTools.TeamFoundationClient",
      -            "Microsoft.VisualStudio.PackageGroup.Debugger.Core",
      -            "Microsoft.VisualStudio.Debugger.BrokeredServices",
      -            "Microsoft.VisualStudio.Debugger.VSCodeDebuggerHost",
      -            "Microsoft.VisualStudio.Debugger.AzureAttach",
      -            "Microsoft.VisualStudio.Web.Azure.Common",
      -            "Microsoft.WebTools.Shared",
      -            "Microsoft.WebTools.DotNet.Core.ItemTemplates",
      -            "Microsoft.VisualStudio.PackageGroup.Debugger.TimeTravel.Replay",
      -            "Microsoft.VisualStudio.VC.Ide.Debugger",
      -            "Microsoft.VisualStudio.VC.Ide.Debugger.Concord",
      -            "Microsoft.VisualStudio.VC.Ide.Debugger.Concord.Resources",
      -            "Microsoft.VisualStudio.VC.Ide.Debugger.Resources",
      -            "Microsoft.VisualStudio.VC.Ide.Common",
      -            "Microsoft.VisualStudio.VC.Ide.Common.Resources",
      -            "Microsoft.VisualStudio.Debugger.CollectionAgents",
      -            "Microsoft.VisualStudio.Debugger.Parallel",
      -            "Microsoft.VisualStudio.Debugger.Parallel.Resources",
      -            "Microsoft.VisualStudio.Debugger.Managed",
      -            "Microsoft.CodeAnalysis.ExpressionEvaluator",
      -            "Microsoft.CodeAnalysis.VisualStudio.Setup",
      -            "Microsoft.VisualStudio.Debugger.Concord.Managed",
      -            "Microsoft.VisualStudio.Debugger.Concord.Managed.Resources",
      -            "Microsoft.VisualStudio.Debugger.Managed.Resources",
      -            "Microsoft.VisualStudio.Debugger.TargetComposition",
      -            "Microsoft.VisualStudio.Debugger.TargetComposition.Remote.arm64",
      -            "Microsoft.VisualStudio.Debugger.TargetComposition.Remote",
      -            "Microsoft.VisualStudio.Debugger.TargetComposition.Remote",
      -            "Microsoft.VisualStudio.Debugger.Remote",
      -            "Microsoft.VisualStudio.Debugger.Concord.Remote",
      -            "Microsoft.VisualStudio.Debugger.Concord.Remote.Resources",
      -            "Microsoft.VisualStudio.Debugger.Remote",
      -            "Microsoft.VisualStudio.Debugger.Remote.ARM64",
      -            "Microsoft.VisualStudio.Debugger.Concord.Remote.ARM64",
      -            "Microsoft.VisualStudio.Debugger.Concord.Remote.Resources.ARM64",
      -            "Microsoft.VisualStudio.Debugger.Remote.ARM",
      -            "Microsoft.VisualStudio.Debugger.Concord.Remote.ARM",
      -            "Microsoft.VisualStudio.Debugger.Concord.Remote.Resources.ARM",
      -            "Microsoft.VisualStudio.Debugger.Remote.Resources.ARM",
      -            "Microsoft.VisualStudio.Debugger.Remote.Resources.ARM64",
      -            "Microsoft.VisualStudio.Debugger.Concord.Remote",
      -            "Microsoft.VisualStudio.Debugger.Concord.Remote.Resources",
      -            "Microsoft.VisualStudio.Debugger.Remote.Resources",
      -            "Microsoft.VisualStudio.Debugger.Remote.Resources",
      -            "Microsoft.VisualStudio.Debugger",
      -            "Microsoft.VisualStudio.VC.MSVCDis",
      -            "Microsoft.IntelliTrace.DiagnosticsHub",
      -            "Microsoft.VisualStudio.Debugger.Concord",
      -            "Microsoft.VisualStudio.Debugger.Concord.Resources",
      -            "Microsoft.VisualStudio.Debugger.Resources",
      -            "Microsoft.VisualStudio.Debugger.Package.DiagHub.Client",
      -            "Microsoft.VisualStudio.Debugger.Remote.DiagnosticsHub.Client",
      -            "Microsoft.VisualStudio.Debugger.Remote.DiagnosticsHub.Client",
      -            "Microsoft.VisualStudio.Debugger.Remote.DiagnosticsHub.Client",
      -            "Microsoft.PackageGroup.ClientDiagnostics",
      -            "Microsoft.VisualStudio.AppResponsiveness",
      -            "Microsoft.VisualStudio.AppResponsiveness.Targeted",
      -            "Microsoft.VisualStudio.AppResponsiveness.Resources",
      -            "Microsoft.VisualStudio.ClientDiagnostics",
      -            "Microsoft.VisualStudio.ClientDiagnostics.Targeted",
      -            "Microsoft.VisualStudio.ClientDiagnostics.Resources",
      -            "Microsoft.VisualStudio.PackageGroup.CommunityCore",
      -            "Microsoft.VisualStudio.ProjectSystem.Full",
      -            "Microsoft.VisualStudio.LiveShareApi",
      -            "Microsoft.VisualStudio.ProjectSystem.Query",
      -            "Microsoft.VisualStudio.ProjectSystem",
      -            "Microsoft.VisualStudio.Community.x86",
      -            "Microsoft.VisualStudio.Community.x64",
      -            "Microsoft.VisualStudio.Community.Msi.Resources",
      -            "Microsoft.VisualStudio.Community.Msi",
      -            "Microsoft.VisualStudio.Community.Shared.Msi",
      -            "Microsoft.VisualStudio.Devenv.Msi",
      -            "Microsoft.VisualStudio.Devenv.Shared.Msi",
      -            "Microsoft.VisualStudio.MinShell.Interop.Msi",
      -            "Microsoft.VisualStudio.MinShell.Interop.Shared.Msi",
      -            "Microsoft.VisualStudio.Editors",
      -            "Microsoft.VisualStudio.Workload.CoreEditor",
      -            "Microsoft.VisualStudio.Component.CoreEditor",
      -            "Microsoft.VisualStudio.PackageGroup.CoreEditor",
      -            "Microsoft.WebView2",
      -            "Microsoft.VisualStudio.ScriptedHost",
      -            "Microsoft.VisualStudio.ScriptedHost.Targeted",
      -            "Microsoft.VisualCpp.Tools.Common.UtilsPrereq",
      -            "Microsoft.VisualCpp.Tools.Common.Utils",
      -            "Microsoft.VisualCpp.Tools.Common.Utils.Resources",
      -            "Microsoft.VisualStudio.PackageGroup.VsDevCmd",
      -            "Microsoft.VisualStudio.VsDevCmd.Ext.NetFxSdk",
      -            "Microsoft.VisualStudio.VsDevCmd.Core.WinSdk",
      -            "Microsoft.VisualStudio.VsDevCmd.Core.DotNet",
      -            "Microsoft.VisualStudio.VC.DevCmd",
      -            "Microsoft.VisualStudio.VC.DevCmd.Resources",
      -            "Microsoft.VisualStudio.VirtualTree",
      -            "Microsoft.DiaSymReader",
      -            "Microsoft.Build.Dependencies",
      -            "Microsoft.Build.FileTracker.Msi",
      -            "Microsoft.Build",
      -            "Microsoft.VisualStudio.PackageGroup.NuGet",
      -            "Microsoft.DataAI.NuGetRecommender",
      -            "Microsoft.VisualStudio.NuGet.Core",
      -            "Microsoft.Build.Arm64",
      -            "Microsoft.Build.UnGAC",
      -            "Microsoft.VisualStudio.TextMateGrammars",
      -            "Microsoft.VisualStudio.Platform.Markdown",
      -            "Microsoft.VisualStudio.Platform.CrossRepositorySearch",
      -            "Microsoft.VisualStudio.PackageGroup.TeamExplorer.Common",
      -            "Microsoft.VisualStudio.TeamExplorer",
      -            "Microsoft.VisualStudio.PackageGroup.ServiceHub",
      -            "Microsoft.ServiceHub.Node",
      -            "Microsoft.ServiceHub.Managed",
      -            "Microsoft.ServiceHub.arm64",
      -            "Microsoft.VisualStudio.ProjectServices",
      -            "Microsoft.VisualStudio.OpenFolder.VSIX",
      -            "Microsoft.VisualStudio.FileHandler.Msi",
      -            "Microsoft.VisualStudio.FileHandler.Msi",
      -            "Microsoft.VisualStudio.PackageGroup.MinShell",
      -            "Microsoft.VisualStudio.MinShell.Msi",
      -            "Microsoft.VisualStudio.MinShell.Shared.Msi",
      -            "Microsoft.VisualStudio.MinShell.Msi.Resources",
      -            "Microsoft.VisualStudio.MinShell.Interop",
      -            "CoreEditorFonts",
      -            "Microsoft.VisualStudio.Log",
      -            "Microsoft.VisualStudio.Log.Targeted",
      -            "Microsoft.VisualStudio.Log.Resources",
      -            "Microsoft.VisualStudio.Finalizer",
      -            "Microsoft.VisualStudio.Devenv",
      -            "Microsoft.VisualStudio.Devenv.Resources",
      -            "Microsoft.VisualStudio.CoreEditor",
      -            "Microsoft.VisualStudio.Navigation.RichCodeNav",
      -            "Microsoft.VisualStudio.Platform.NavigateTo",
      -            "Microsoft.VisualStudio.Connected",
      -            "SQLitePCLRaw",
      -            "SQLitePCLRaw.Targeted",
      -            "Microsoft.VisualStudio.Connected.Auto",
      -            "Microsoft.VisualStudio.Connected.Auto.Resources",
      -            "Microsoft.VisualStudio.AzureSDK",
      -            "Microsoft.VisualStudio.PerfLib",
      -            "Microsoft.VisualStudio.Connected.Resources",
      -            "Microsoft.Net.PackageGroup.4.8.Redist",
      -            "Microsoft.VisualStudio.PackageGroup.Progression",
      -            "Microsoft.VisualStudio.PerformanceProvider",
      -            "Microsoft.VisualStudio.GraphModel",
      -            "Microsoft.VisualStudio.GraphProvider",
      -            "Microsoft.VisualStudio.Community.VB.Targeted",
      -            "Microsoft.VisualStudio.Community.VB.Neutral",
      -            "Microsoft.VisualStudio.Community.CSharp.Targeted",
      -            "Microsoft.VisualStudio.Community.CSharp.Neutral",
      -            "Microsoft.VisualStudio.Community.ProductArch.TargetedExtra",
      -            "Microsoft.VisualStudio.Community.ProductArch.Targeted",
      -            "Microsoft.VisualStudio.Community.ProductArch.NeutralExtra",
      -            "Microsoft.DiaSymReader.PortablePdb",
      -            "Microsoft.IntelliTrace.CollectorCab",
      -            "Microsoft.VisualStudio.Community.VB.Resources.Targeted",
      -            "Microsoft.VisualStudio.Community.VB.Resources.Neutral",
      -            "Microsoft.VisualStudio.Community.CSharp.Resources.Targeted",
      -            "Microsoft.VisualStudio.Community.CSharp.Resources.Neutral",
      -            "Microsoft.VisualStudio.Community.ProductArch.Resources.Targeted",
      -            "Microsoft.VisualStudio.Community.ProductArch.Resources.NeutralExtra",
      -            "Microsoft.VisualStudio.Net.Eula.Resources",
      -            "Microsoft.VisualStudio.Community.ProductArch.Resources.Neutral",
      -            "Microsoft.VisualStudio.WebSiteProject.DTE",
      -            "Microsoft.VisualStudio.Diagnostics.AspNetHelper",
      -            "Microsoft.VisualStudio.Diagnostics.AspNetHelper.Standard",
      -            "Microsoft.MSHtml",
      -            "Microsoft.VisualStudio.Platform.CallHierarchy",
      -            "Microsoft.VisualStudio.Community.ProductArch.Neutral",
      -            "Microsoft.VisualStudio.MinShell",
      -            "Microsoft.VisualStudio.VsWebProtocolSelector.Msi",
      -            "Microsoft.Net.6.WindowsDesktop.Runtime",
      -            "Microsoft.Net.6.Runtime",
      -            "Microsoft.VisualStudio.PackageGroup.Setup.Common",
      -            "Microsoft.VisualStudio.Setup.WMIProvider",
      -            "Microsoft.VisualStudio.Setup.Configuration.Interop",
      -            "Microsoft.VisualStudio.Setup.Configuration",
      -            "Microsoft.VisualStudio.Extensibility.Container",
      -            "Microsoft.VisualStudio.LanguageServer",
      -            "Microsoft.VisualStudio.Platform.Terminal",
      -            "Microsoft.VisualStudio.MefHosting",
      -            "Microsoft.VisualStudio.Initializer",
      -            "Microsoft.VisualStudio.ExtensionManager",
      -            "Microsoft.VisualStudio.Platform.Editor",
      -            "Microsoft.VisualStudio.MinShell.Targeted",
      -            "Microsoft.VisualStudio.NativeImageSupport",
      -            "Microsoft.VisualStudio.Devenv.Config",
      -            "Microsoft.VisualStudio.MinShell.Resources.arm64",
      -            "Microsoft.VisualStudio.MinShell.Auto",
      -            "Microsoft.VisualStudio.MinShell.Auto.Resources",
      -            "Microsoft.VisualStudio.Branding.Community"
      -        ]
      -    }
      -]
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/certs.js b/deps/npm/node_modules/node-gyp/test/fixtures/certs.js
      deleted file mode 100644
      index 766e54b5ed3900..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/certs.js
      +++ /dev/null
      @@ -1,150 +0,0 @@
      -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/nodedir/include/node/config.gypi b/deps/npm/node_modules/node-gyp/test/fixtures/nodedir/include/node/config.gypi
      deleted file mode 100644
      index e767534082f8ce..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/nodedir/include/node/config.gypi
      +++ /dev/null
      @@ -1,6 +0,0 @@
      -# Test configuration
      -{
      -  'variables': {
      -    'build_with_electron': true
      -  }
      -}
      diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/test-charmap.py b/deps/npm/node_modules/node-gyp/test/fixtures/test-charmap.py
      deleted file mode 100644
      index 63aa77bb482ef2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/fixtures/test-charmap.py
      +++ /dev/null
      @@ -1,31 +0,0 @@
      -import sys
      -import locale
      -
      -try:
      -    reload(sys)
      -except NameError:  # Python 3
      -    pass
      -
      -
      -def main():
      -    encoding = locale.getdefaultlocale()[1]
      -    if not encoding:
      -        return False
      -
      -    try:
      -        sys.setdefaultencoding(encoding)
      -    except AttributeError:  # Python 3
      -        pass
      -
      -    textmap = {
      -        "cp936": "\u4e2d\u6587",
      -        "cp1252": "Lat\u012Bna",
      -        "cp932": "\u306b\u307b\u3093\u3054",
      -    }
      -    if encoding in textmap:
      -        print(textmap[encoding])
      -    return True
      -
      -
      -if __name__ == "__main__":
      -    print(main())
      diff --git a/deps/npm/node_modules/node-gyp/test/process-exec-sync.js b/deps/npm/node_modules/node-gyp/test/process-exec-sync.js
      deleted file mode 100644
      index 21763bc26de108..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/process-exec-sync.js
      +++ /dev/null
      @@ -1,140 +0,0 @@
      -'use strict'
      -
      -const fs = require('graceful-fs')
      -const childProcess = require('child_process')
      -
      -function startsWith (str, search, pos) {
      -  if (String.prototype.startsWith) {
      -    return str.startsWith(search, pos)
      -  }
      -
      -  return str.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search
      -}
      -
      -function processExecSync (file, args, options) {
      -  var child, error, timeout, tmpdir, command
      -  command = makeCommand(file, args)
      -
      -  /*
      -    this function emulates child_process.execSync for legacy node <= 0.10.x
      -    derived from https://github.com/gvarsanyi/sync-exec/blob/master/js/sync-exec.js
      -  */
      -
      -  options = options || {}
      -  // init timeout
      -  timeout = Date.now() + options.timeout
      -  // init tmpdir
      -  var osTempBase = '/tmp'
      -  var os = determineOS()
      -  osTempBase = '/tmp'
      -
      -  if (process.env.TMP) {
      -    osTempBase = process.env.TMP
      -  }
      -
      -  if (osTempBase[osTempBase.length - 1] !== '/') {
      -    osTempBase += '/'
      -  }
      -
      -  tmpdir = osTempBase + 'processExecSync.' + Date.now() + Math.random()
      -  fs.mkdirSync(tmpdir)
      -
      -  // init command
      -  if (os === 'linux') {
      -    command = '(' + command + ' > ' + tmpdir + '/stdout 2> ' + tmpdir +
      -      '/stderr); echo $? > ' + tmpdir + '/status'
      -  } else {
      -    command = '(' + command + ' > ' + tmpdir + '/stdout 2> ' + tmpdir +
      -      '/stderr) | echo %errorlevel% > ' + tmpdir + '/status | exit'
      -  }
      -
      -  // init child
      -  child = childProcess.exec(command, options)
      -
      -  var maxTry = 100000 // increases the test time by 6 seconds on win-2016-node-0.10
      -  var tryCount = 0
      -  while (tryCount < maxTry) {
      -    try {
      -      var x = fs.readFileSync(tmpdir + '/status')
      -      if (x.toString() === '0') {
      -        break
      -      }
      -    } catch (ignore) {}
      -    tryCount++
      -    if (Date.now() > timeout) {
      -      error = child
      -      break
      -    }
      -  }
      -
      -  ['stdout', 'stderr', 'status'].forEach(function (file) {
      -    child[file] = fs.readFileSync(tmpdir + '/' + file, options.encoding)
      -    setTimeout(unlinkFile, 500, tmpdir + '/' + file)
      -  })
      -
      -  child.status = Number(child.status)
      -  if (child.status !== 0) {
      -    error = child
      -  }
      -
      -  try {
      -    fs.rmdirSync(tmpdir)
      -  } catch (ignore) {}
      -  if (error) {
      -    throw error
      -  }
      -  return child.stdout
      -}
      -
      -function makeCommand (file, args) {
      -  var command, quote
      -  command = file
      -  if (args.length > 0) {
      -    for (var i in args) {
      -      command = command + ' '
      -      if (args[i][0] === '-') {
      -        command = command + args[i]
      -      } else {
      -        if (!quote) {
      -          command = command + '"'
      -          quote = true
      -        }
      -        command = command + args[i]
      -        if (quote) {
      -          if (args.length === (parseInt(i) + 1)) {
      -            command = command + '"'
      -          }
      -        }
      -      }
      -    }
      -  }
      -  return command
      -}
      -
      -function determineOS () {
      -  var os = ''
      -  var tmpVar = ''
      -  if (process.env.OSTYPE) {
      -    tmpVar = process.env.OSTYPE
      -  } else if (process.env.OS) {
      -    tmpVar = process.env.OS
      -  } else {
      -    // default is linux
      -    tmpVar = 'linux'
      -  }
      -
      -  if (startsWith(tmpVar, 'linux')) {
      -    os = 'linux'
      -  }
      -  if (startsWith(tmpVar, 'win')) {
      -    os = 'win'
      -  }
      -
      -  return os
      -}
      -
      -function unlinkFile (file) {
      -  fs.unlinkSync(file)
      -}
      -
      -module.exports = processExecSync
      diff --git a/deps/npm/node_modules/node-gyp/test/reporter.js b/deps/npm/node_modules/node-gyp/test/reporter.js
      deleted file mode 100644
      index 9964b1b5d504c0..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/reporter.js
      +++ /dev/null
      @@ -1,75 +0,0 @@
      -const Mocha = require('mocha')
      -
      -class Reporter {
      -  constructor (runner) {
      -    this.failedTests = []
      -
      -    runner.on(Mocha.Runner.constants.EVENT_RUN_BEGIN, () => {
      -      console.log('Starting tests')
      -    })
      -
      -    runner.on(Mocha.Runner.constants.EVENT_RUN_END, () => {
      -      console.log('Tests finished')
      -      console.log()
      -      console.log('****************')
      -      console.log('* TESTS REPORT *')
      -      console.log('****************')
      -      console.log()
      -      console.log(`Executed ${runner.stats.suites} suites with ${runner.stats.tests} tests in ${runner.stats.duration} ms`)
      -      console.log(`  Passed: ${runner.stats.passes}`)
      -      console.log(`  Skipped: ${runner.stats.pending}`)
      -      console.log(`  Failed: ${runner.stats.failures}`)
      -      if (this.failedTests.length > 0) {
      -        console.log()
      -        console.log('  Failed test details')
      -        this.failedTests.forEach((failedTest, index) => {
      -          console.log()
      -          console.log(`    ${index + 1}.'${failedTest.test.fullTitle()}'`)
      -          console.log(`      Name: ${failedTest.error.name}`)
      -          console.log(`      Message: ${failedTest.error.message}`)
      -          console.log(`      Code: ${failedTest.error.code}`)
      -          console.log(`      Stack: ${failedTest.error.stack}`)
      -        })
      -      }
      -      console.log()
      -    })
      -
      -    runner.on(Mocha.Runner.constants.EVENT_SUITE_BEGIN, (suite) => {
      -      if (suite.root) {
      -        return
      -      }
      -      console.log(`Starting suite '${suite.title}'`)
      -    })
      -
      -    runner.on(Mocha.Runner.constants.EVENT_SUITE_END, (suite) => {
      -      if (suite.root) {
      -        return
      -      }
      -      console.log(`Suite '${suite.title}' finished`)
      -      console.log()
      -    })
      -
      -    runner.on(Mocha.Runner.constants.EVENT_TEST_BEGIN, (test) => {
      -      console.log(`Starting test '${test.title}'`)
      -    })
      -
      -    runner.on(Mocha.Runner.constants.EVENT_TEST_PASS, (test) => {
      -      console.log(`Test '${test.title}' passed in ${test.duration} ms`)
      -    })
      -
      -    runner.on(Mocha.Runner.constants.EVENT_TEST_PENDING, (test) => {
      -      console.log(`Test '${test.title}' skipped in ${test.duration} ms`)
      -    })
      -
      -    runner.on(Mocha.Runner.constants.EVENT_TEST_FAIL, (test, error) => {
      -      this.failedTests.push({ test, error })
      -      console.log(`Test '${test.title}' failed in ${test.duration} ms with ${error}`)
      -    })
      -
      -    runner.on(Mocha.Runner.constants.EVENT_TEST_END, (test) => {
      -      console.log()
      -    })
      -  }
      -}
      -
      -module.exports = Reporter
      diff --git a/deps/npm/node_modules/node-gyp/test/simple-proxy.js b/deps/npm/node_modules/node-gyp/test/simple-proxy.js
      deleted file mode 100644
      index cb0dfcfec7edcd..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/simple-proxy.js
      +++ /dev/null
      @@ -1,27 +0,0 @@
      -'use strict'
      -
      -const http = require('http')
      -const https = require('https')
      -const server = http.createServer(handler)
      -const port = +process.argv[2]
      -const prefix = process.argv[3]
      -const upstream = process.argv[4]
      -var calls = 0
      -
      -server.listen(port)
      -
      -function handler (req, res) {
      -  if (req.url.indexOf(prefix) !== 0) {
      -    throw new Error('request url [' + req.url + '] does not start with [' + prefix + ']')
      -  }
      -
      -  var upstreamUrl = upstream + req.url.substring(prefix.length)
      -  https.get(upstreamUrl, function (ures) {
      -    ures.on('end', function () {
      -      if (++calls === 2) {
      -        server.close()
      -      }
      -    })
      -    ures.pipe(res)
      -  })
      -}
      diff --git a/deps/npm/node_modules/node-gyp/test/test-addon.js b/deps/npm/node_modules/node-gyp/test/test-addon.js
      deleted file mode 100644
      index 43556620a85abb..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-addon.js
      +++ /dev/null
      @@ -1,152 +0,0 @@
      -'use strict'
      -
      -const { describe, it } = require('mocha')
      -const assert = require('assert')
      -const path = require('path')
      -const fs = require('graceful-fs')
      -const childProcess = require('child_process')
      -const os = require('os')
      -const addonPath = path.resolve(__dirname, 'node_modules', 'hello_world')
      -const nodeGyp = path.resolve(__dirname, '..', 'bin', 'node-gyp.js')
      -const execFileSync = childProcess.execFileSync || require('./process-exec-sync')
      -const execFile = childProcess.execFile
      -
      -function runHello (hostProcess) {
      -  if (!hostProcess) {
      -    hostProcess = process.execPath
      -  }
      -  var testCode = "console.log(require('hello_world').hello())"
      -  return execFileSync(hostProcess, ['-e', testCode], { cwd: __dirname }).toString()
      -}
      -
      -function getEncoding () {
      -  var code = 'import locale;print(locale.getdefaultlocale()[1])'
      -  return execFileSync('python', ['-c', code]).toString().trim()
      -}
      -
      -function checkCharmapValid () {
      -  var data
      -  try {
      -    data = execFileSync('python', ['fixtures/test-charmap.py'],
      -      { cwd: __dirname })
      -  } catch (err) {
      -    return false
      -  }
      -  var lines = data.toString().trim().split('\n')
      -  return lines.pop() === 'True'
      -}
      -
      -describe('addon', function () {
      -  this.timeout(300000)
      -
      -  it('build simple addon', function (done) {
      -    // Set the loglevel otherwise the output disappears when run via 'npm test'
      -    var cmd = [nodeGyp, 'rebuild', '-C', addonPath, '--loglevel=verbose']
      -    var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) {
      -      var logLines = stderr.toString().trim().split(/\r?\n/)
      -      var lastLine = logLines[logLines.length - 1]
      -      assert.strictEqual(err, null)
      -      assert.strictEqual(lastLine, 'gyp info ok', 'should end in ok')
      -      assert.strictEqual(runHello().trim(), 'world')
      -      done()
      -    })
      -    proc.stdout.setEncoding('utf-8')
      -    proc.stderr.setEncoding('utf-8')
      -  })
      -
      -  it('build simple addon in path with non-ascii characters', function (done) {
      -    if (!checkCharmapValid()) {
      -      return this.skip('python console app can\'t encode non-ascii character.')
      -    }
      -
      -    var testDirNames = {
      -      cp936: '文件夹',
      -      cp1252: 'Latīna',
      -      cp932: 'フォルダ'
      -    }
      -    // Select non-ascii characters by current encoding
      -    var testDirName = testDirNames[getEncoding()]
      -    // If encoding is UTF-8 or other then no need to test
      -    if (!testDirName) {
      -      return this.skip('no need to test')
      -    }
      -
      -    this.timeout(300000)
      -
      -    var data
      -    var configPath = path.join(addonPath, 'build', 'config.gypi')
      -    try {
      -      data = fs.readFileSync(configPath, 'utf8')
      -    } catch (err) {
      -      assert.fail(err)
      -      return
      -    }
      -    var config = JSON.parse(data.replace(/#.+\n/, ''))
      -    var nodeDir = config.variables.nodedir
      -    var testNodeDir = path.join(addonPath, testDirName)
      -    // Create symbol link to path with non-ascii characters
      -    try {
      -      fs.symlinkSync(nodeDir, testNodeDir, 'dir')
      -    } catch (err) {
      -      switch (err.code) {
      -        case 'EEXIST': break
      -        case 'EPERM':
      -          assert.fail(err, null, 'Please try to running console as an administrator')
      -          return
      -        default:
      -          assert.fail(err)
      -          return
      -      }
      -    }
      -
      -    var cmd = [
      -      nodeGyp,
      -      'rebuild',
      -      '-C',
      -      addonPath,
      -      '--loglevel=verbose',
      -      '-nodedir=' + testNodeDir
      -    ]
      -    var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) {
      -      try {
      -        fs.unlink(testNodeDir)
      -      } catch (err) {
      -        assert.fail(err)
      -      }
      -
      -      var logLines = stderr.toString().trim().split(/\r?\n/)
      -      var lastLine = logLines[logLines.length - 1]
      -      assert.strictEqual(err, null)
      -      assert.strictEqual(lastLine, 'gyp info ok', 'should end in ok')
      -      assert.strictEqual(runHello().trim(), 'world')
      -      done()
      -    })
      -    proc.stdout.setEncoding('utf-8')
      -    proc.stderr.setEncoding('utf-8')
      -  })
      -
      -  it('addon works with renamed host executable', function (done) {
      -    // No `fs.copyFileSync` before node8.
      -    if (process.version.substr(1).split('.')[0] < 8) {
      -      return this.skip('skipping test for old node version')
      -    }
      -
      -    this.timeout(300000)
      -
      -    var notNodePath = path.join(os.tmpdir(), 'notnode' + path.extname(process.execPath))
      -    fs.copyFileSync(process.execPath, notNodePath)
      -
      -    var cmd = [nodeGyp, 'rebuild', '-C', addonPath, '--loglevel=verbose']
      -    var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) {
      -      var logLines = stderr.toString().trim().split(/\r?\n/)
      -      var lastLine = logLines[logLines.length - 1]
      -      assert.strictEqual(err, null)
      -      assert.strictEqual(lastLine, 'gyp info ok', 'should end in ok')
      -      assert.strictEqual(runHello(notNodePath).trim(), 'world')
      -      fs.unlinkSync(notNodePath)
      -      done()
      -    })
      -    proc.stdout.setEncoding('utf-8')
      -    proc.stderr.setEncoding('utf-8')
      -  })
      -})
      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
      deleted file mode 100644
      index ab1e5511fad980..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-configure-python.js
      +++ /dev/null
      @@ -1,81 +0,0 @@
      -'use strict'
      -
      -const { describe, it } = require('mocha')
      -const assert = require('assert')
      -const path = require('path')
      -const devDir = require('./common').devDir()
      -const gyp = require('../lib/node-gyp')
      -const requireInject = require('require-inject')
      -const configure = requireInject('../lib/configure', {
      -  'graceful-fs': {
      -    openSync: function () { return 0 },
      -    closeSync: function () { },
      -    writeFile: function (file, data, cb) { cb() },
      -    stat: function (file, cb) { cb(null, {}) },
      -    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() }
      -  }
      -})
      -
      -const EXPECTED_PYPATH = path.join(__dirname, '..', 'gyp', 'pylib')
      -const SEPARATOR = process.platform === 'win32' ? ';' : ':'
      -const SPAWN_RESULT = cb => ({ on: function () { cb() } })
      -
      -require('npmlog').level = 'warn'
      -
      -describe('configure-python', function () {
      -  it('configure PYTHONPATH with no existing env', function (done) {
      -    delete process.env.PYTHONPATH
      -
      -    var prog = gyp()
      -    prog.parseArgv([])
      -    prog.spawn = function () {
      -      assert.strictEqual(process.env.PYTHONPATH, EXPECTED_PYPATH)
      -      return SPAWN_RESULT(done)
      -    }
      -    prog.devDir = devDir
      -    configure(prog, [], assert.fail)
      -  })
      -
      -  it('configure PYTHONPATH with existing env of one dir', function (done) {
      -    var existingPath = path.join('a', 'b')
      -    process.env.PYTHONPATH = existingPath
      -
      -    var prog = gyp()
      -    prog.parseArgv([])
      -    prog.spawn = function () {
      -      assert.strictEqual(process.env.PYTHONPATH, [EXPECTED_PYPATH, existingPath].join(SEPARATOR))
      -
      -      var dirs = process.env.PYTHONPATH.split(SEPARATOR)
      -      assert.deepStrictEqual(dirs, [EXPECTED_PYPATH, existingPath])
      -
      -      return SPAWN_RESULT(done)
      -    }
      -    prog.devDir = devDir
      -    configure(prog, [], assert.fail)
      -  })
      -
      -  it('configure PYTHONPATH with existing env of multiple dirs', function (done) {
      -    var pythonDir1 = path.join('a', 'b')
      -    var pythonDir2 = path.join('b', 'c')
      -    var existingPath = [pythonDir1, pythonDir2].join(SEPARATOR)
      -    process.env.PYTHONPATH = existingPath
      -
      -    var prog = gyp()
      -    prog.parseArgv([])
      -    prog.spawn = function () {
      -      assert.strictEqual(process.env.PYTHONPATH, [EXPECTED_PYPATH, existingPath].join(SEPARATOR))
      -
      -      var dirs = process.env.PYTHONPATH.split(SEPARATOR)
      -      assert.deepStrictEqual(dirs, [EXPECTED_PYPATH, pythonDir1, pythonDir2])
      -
      -      return SPAWN_RESULT(done)
      -    }
      -    prog.devDir = devDir
      -    configure(prog, [], assert.fail)
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/test/test-create-config-gypi.js b/deps/npm/node_modules/node-gyp/test/test-create-config-gypi.js
      deleted file mode 100644
      index 725819b6aa1029..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-create-config-gypi.js
      +++ /dev/null
      @@ -1,61 +0,0 @@
      -'use strict'
      -
      -const path = require('path')
      -const { describe, it } = require('mocha')
      -const assert = require('assert')
      -const gyp = require('../lib/node-gyp')
      -const createConfigGypi = require('../lib/create-config-gypi')
      -const { parseConfigGypi, getCurrentConfigGypi } = createConfigGypi.test
      -
      -describe('create-config-gypi', function () {
      -  it('config.gypi with no options', async function () {
      -    const prog = gyp()
      -    prog.parseArgv([])
      -
      -    const config = await getCurrentConfigGypi({ gyp: prog, vsInfo: {} })
      -    assert.strictEqual(config.target_defaults.default_configuration, 'Release')
      -    assert.strictEqual(config.variables.target_arch, process.arch)
      -  })
      -
      -  it('config.gypi with --debug', async function () {
      -    const prog = gyp()
      -    prog.parseArgv(['_', '_', '--debug'])
      -
      -    const config = await getCurrentConfigGypi({ gyp: prog, vsInfo: {} })
      -    assert.strictEqual(config.target_defaults.default_configuration, 'Debug')
      -  })
      -
      -  it('config.gypi with custom options', async function () {
      -    const prog = gyp()
      -    prog.parseArgv(['_', '_', '--shared-libxml2'])
      -
      -    const config = await getCurrentConfigGypi({ gyp: prog, vsInfo: {} })
      -    assert.strictEqual(config.variables.shared_libxml2, true)
      -  })
      -
      -  it('config.gypi with nodedir', async function () {
      -    const nodeDir = path.join(__dirname, 'fixtures', 'nodedir')
      -
      -    const prog = gyp()
      -    prog.parseArgv(['_', '_', `--nodedir=${nodeDir}`])
      -
      -    const config = await getCurrentConfigGypi({ gyp: prog, nodeDir, vsInfo: {} })
      -    assert.strictEqual(config.variables.build_with_electron, true)
      -  })
      -
      -  it('config.gypi with --force-process-config', async function () {
      -    const nodeDir = path.join(__dirname, 'fixtures', 'nodedir')
      -
      -    const prog = gyp()
      -    prog.parseArgv(['_', '_', '--force-process-config', `--nodedir=${nodeDir}`])
      -
      -    const config = await getCurrentConfigGypi({ gyp: prog, nodeDir, vsInfo: {} })
      -    assert.strictEqual(config.variables.build_with_electron, undefined)
      -  })
      -
      -  it('config.gypi parsing', function () {
      -    const str = "# Some comments\n{'variables': {'multiline': 'A'\n'B'}}"
      -    const config = parseConfigGypi(str)
      -    assert.deepStrictEqual(config, { variables: { multiline: 'AB' } })
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/test/test-download.js b/deps/npm/node_modules/node-gyp/test/test-download.js
      deleted file mode 100644
      index 1dd5a51b062c0b..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-download.js
      +++ /dev/null
      @@ -1,210 +0,0 @@
      -'use strict'
      -
      -const { describe, it, after } = require('mocha')
      -const assert = require('assert')
      -const fs = require('fs')
      -const path = require('path')
      -const util = require('util')
      -const http = require('http')
      -const https = require('https')
      -const install = require('../lib/install')
      -const semver = require('semver')
      -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'
      -
      -describe('download', function () {
      -  it('download over http', async function () {
      -    const server = http.createServer((req, res) => {
      -      assert.strictEqual(req.headers['user-agent'], `node-gyp v42 (node ${process.version})`)
      -      res.end('ok')
      -    })
      -
      -    after(() => new Promise((resolve) => server.close(resolve)))
      -
      -    const host = 'localhost'
      -    await new Promise((resolve) => server.listen(0, host, resolve))
      -    const { port } = server.address()
      -    const gyp = {
      -      opts: {},
      -      version: '42'
      -    }
      -    const url = `http://${host}:${port}`
      -    const res = await install.test.download(gyp, url)
      -    assert.strictEqual(await res.text(), 'ok')
      -  })
      -
      -  it('download over https with custom ca', async function () {
      -    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)
      -
      -    assert.strictEqual(ca.length, 1)
      -
      -    const options = { ca: ca, cert: cert, key: key }
      -    const server = https.createServer(options, (req, res) => {
      -      assert.strictEqual(req.headers['user-agent'], `node-gyp v42 (node ${process.version})`)
      -      res.end('ok')
      -    })
      -
      -    after(async () => {
      -      await new Promise((resolve) => server.close(resolve))
      -      await fs.promises.unlink(cafile)
      -    })
      -
      -    server.on('clientError', (err) => { throw err })
      -
      -    const host = 'localhost'
      -    await new Promise((resolve) => server.listen(0, host, resolve))
      -    const { port } = server.address()
      -    const gyp = {
      -      opts: { cafile },
      -      version: '42'
      -    }
      -    const url = `https://${host}:${port}`
      -    const res = await install.test.download(gyp, url)
      -    assert.strictEqual(await res.text(), 'ok')
      -  })
      -
      -  it('download over http with proxy', async function () {
      -    const server = http.createServer((_, res) => {
      -      res.end('ok')
      -    })
      -
      -    const pserver = http.createServer((req, res) => {
      -      assert.strictEqual(req.headers['user-agent'], `node-gyp v42 (node ${process.version})`)
      -      res.end('proxy ok')
      -    })
      -
      -    after(() => Promise.all([
      -      new Promise((resolve) => server.close(resolve)),
      -      new Promise((resolve) => pserver.close(resolve))
      -    ]))
      -
      -    const host = 'localhost'
      -    await new Promise((resolve) => server.listen(0, host, resolve))
      -    const { port } = server.address()
      -    await new Promise((resolve) => pserver.listen(port + 1, host, resolve))
      -    const gyp = {
      -      opts: {
      -        proxy: `http://${host}:${port + 1}`,
      -        noproxy: 'bad'
      -      },
      -      version: '42'
      -    }
      -    const url = `http://${host}:${port}`
      -    const res = await install.test.download(gyp, url)
      -    assert.strictEqual(await res.text(), 'proxy ok')
      -  })
      -
      -  it('download over http with noproxy', async function () {
      -    const server = http.createServer((req, res) => {
      -      assert.strictEqual(req.headers['user-agent'], `node-gyp v42 (node ${process.version})`)
      -      res.end('ok')
      -    })
      -
      -    const pserver = http.createServer((_, res) => {
      -      res.end('proxy ok')
      -    })
      -
      -    after(() => Promise.all([
      -      new Promise((resolve) => server.close(resolve)),
      -      new Promise((resolve) => pserver.close(resolve))
      -    ]))
      -
      -    const host = 'localhost'
      -    await new Promise((resolve) => server.listen(0, host, resolve))
      -    const { port } = server.address()
      -    await new Promise((resolve) => pserver.listen(port + 1, host, resolve))
      -    const gyp = {
      -      opts: {
      -        proxy: `http://${host}:${port + 1}`,
      -        noproxy: host
      -      },
      -      version: '42'
      -    }
      -    const url = `http://${host}:${port}`
      -    const res = await install.test.download(gyp, url)
      -    assert.strictEqual(await res.text(), 'ok')
      -  })
      -
      -  it('download with missing cafile', async function () {
      -    const gyp = {
      -      opts: { cafile: 'no.such.file' }
      -    }
      -    try {
      -      await install.test.download(gyp, {}, 'http://bad/')
      -    } catch (e) {
      -      assert.ok(/no.such.file/.test(e.message))
      -    }
      -  })
      -
      -  it('check certificate splitting', async function () {
      -    const cafile = path.join(__dirname, 'fixtures/ca-bundle.crt')
      -    const cacontents = certs['ca-bundle.crt']
      -    await fs.promises.writeFile(cafile, cacontents, 'utf8')
      -    after(async () => {
      -      await fs.promises.unlink(cafile)
      -    })
      -    const cas = await install.test.readCAFile(path.join(__dirname, 'fixtures/ca-bundle.crt'))
      -    assert.strictEqual(cas.length, 2)
      -    assert.notStrictEqual(cas[0], cas[1])
      -  })
      -
      -  // only run this test if we are running a version of Node with predictable version path behavior
      -
      -  it('download headers (actual)', async function () {
      -    if (process.env.FAST_TEST ||
      -        process.release.name !== 'node' ||
      -        semver.prerelease(process.version) !== null ||
      -        semver.satisfies(process.version, '<10')) {
      -      return this.skip('Skipping actual download of headers due to test environment configuration')
      -    }
      -
      -    this.timeout(300000)
      -
      -    const expectedDir = path.join(devDir, process.version.replace(/^v/, ''))
      -    await util.promisify(rimraf)(expectedDir)
      -
      -    const prog = gyp()
      -    prog.parseArgv([])
      -    prog.devDir = devDir
      -    log.level = 'warn'
      -    await util.promisify(install)(prog, [])
      -
      -    const data = await fs.promises.readFile(path.join(expectedDir, 'installVersion'), 'utf8')
      -    assert.strictEqual(data, '11\n', 'correct installVersion')
      -
      -    const list = await fs.promises.readdir(path.join(expectedDir, 'include/node'))
      -    assert.ok(list.includes('common.gypi'))
      -    assert.ok(list.includes('config.gypi'))
      -    assert.ok(list.includes('node.h'))
      -    assert.ok(list.includes('node_version.h'))
      -    assert.ok(list.includes('openssl'))
      -    assert.ok(list.includes('uv'))
      -    assert.ok(list.includes('uv.h'))
      -    assert.ok(list.includes('v8-platform.h'))
      -    assert.ok(list.includes('v8.h'))
      -    assert.ok(list.includes('zlib.h'))
      -
      -    const lines = (await fs.promises.readFile(path.join(expectedDir, 'include/node/node_version.h'), 'utf8')).split('\n')
      -
      -    // extract the 3 version parts from the defines to build a valid version string and
      -    // and check them against our current env version
      -    const version = ['major', 'minor', 'patch'].reduce((version, type) => {
      -      const re = new RegExp(`^#define\\sNODE_${type.toUpperCase()}_VERSION`)
      -      const line = lines.find((l) => re.test(l))
      -      const i = line ? parseInt(line.replace(/^[^0-9]+([0-9]+).*$/, '$1'), 10) : 'ERROR'
      -      return `${version}${type !== 'major' ? '.' : 'v'}${i}`
      -    }, '')
      -
      -    assert.strictEqual(version, process.version)
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/test/test-find-accessible-sync.js b/deps/npm/node_modules/node-gyp/test/test-find-accessible-sync.js
      deleted file mode 100644
      index 7edbc0c76446ed..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-find-accessible-sync.js
      +++ /dev/null
      @@ -1,73 +0,0 @@
      -'use strict'
      -
      -const { describe, it } = require('mocha')
      -const assert = require('assert')
      -const path = require('path')
      -const requireInject = require('require-inject')
      -const configure = requireInject('../lib/configure', {
      -  'graceful-fs': {
      -    closeSync: function () { return undefined },
      -    openSync: function (path) {
      -      if (readableFiles.some(function (f) { return f === path })) {
      -        return 0
      -      } else {
      -        var error = new Error('ENOENT - not found')
      -        throw error
      -      }
      -    }
      -  }
      -})
      -
      -const dir = path.sep + 'testdir'
      -const readableFile = 'readable_file'
      -const anotherReadableFile = 'another_readable_file'
      -const readableFileInDir = 'somedir' + path.sep + readableFile
      -const readableFiles = [
      -  path.resolve(dir, readableFile),
      -  path.resolve(dir, anotherReadableFile),
      -  path.resolve(dir, readableFileInDir)
      -]
      -
      -describe('find-accessible-sync', function () {
      -  it('find accessible - empty array', function () {
      -    var candidates = []
      -    var found = configure.test.findAccessibleSync('test', dir, candidates)
      -    assert.strictEqual(found, undefined)
      -  })
      -
      -  it('find accessible - single item array, readable', function () {
      -    var candidates = [readableFile]
      -    var found = configure.test.findAccessibleSync('test', dir, candidates)
      -    assert.strictEqual(found, path.resolve(dir, readableFile))
      -  })
      -
      -  it('find accessible - single item array, readable in subdir', function () {
      -    var candidates = [readableFileInDir]
      -    var found = configure.test.findAccessibleSync('test', dir, candidates)
      -    assert.strictEqual(found, path.resolve(dir, readableFileInDir))
      -  })
      -
      -  it('find accessible - single item array, unreadable', function () {
      -    var candidates = ['unreadable_file']
      -    var found = configure.test.findAccessibleSync('test', dir, candidates)
      -    assert.strictEqual(found, undefined)
      -  })
      -
      -  it('find accessible - multi item array, no matches', function () {
      -    var candidates = ['non_existent_file', 'unreadable_file']
      -    var found = configure.test.findAccessibleSync('test', dir, candidates)
      -    assert.strictEqual(found, undefined)
      -  })
      -
      -  it('find accessible - multi item array, single match', function () {
      -    var candidates = ['non_existent_file', readableFile]
      -    var found = configure.test.findAccessibleSync('test', dir, candidates)
      -    assert.strictEqual(found, path.resolve(dir, readableFile))
      -  })
      -
      -  it('find accessible - multi item array, return first match', function () {
      -    var candidates = ['non_existent_file', anotherReadableFile, readableFile]
      -    var found = configure.test.findAccessibleSync('test', dir, candidates)
      -    assert.strictEqual(found, path.resolve(dir, anotherReadableFile))
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/test/test-find-node-directory.js b/deps/npm/node_modules/node-gyp/test/test-find-node-directory.js
      deleted file mode 100644
      index ca299f63306469..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-find-node-directory.js
      +++ /dev/null
      @@ -1,115 +0,0 @@
      -'use strict'
      -
      -const { describe, it } = require('mocha')
      -const assert = require('assert')
      -const path = require('path')
      -const findNodeDirectory = require('../lib/find-node-directory')
      -
      -const platforms = ['darwin', 'freebsd', 'linux', 'sunos', 'win32', 'aix', 'os400']
      -
      -describe('find-node-directory', function () {
      -  // we should find the directory based on the directory
      -  // the script is running in and it should match the layout
      -  // in a build tree where npm is installed in
      -  // .... /deps/npm
      -  it('test find-node-directory - node install', function () {
      -    for (var next = 0; next < platforms.length; next++) {
      -      var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
      -      assert.strictEqual(
      -        findNodeDirectory('/x/deps/npm/node_modules/node-gyp/lib', processObj),
      -        path.join('/x'))
      -    }
      -  })
      -
      -  // we should find the directory based on the directory
      -  // the script is running in and it should match the layout
      -  // in an installed tree where npm is installed in
      -  // .... /lib/node_modules/npm or .../node_modules/npm
      -  // depending on the patform
      -  it('test find-node-directory - node build', function () {
      -    for (var next = 0; next < platforms.length; next++) {
      -      var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
      -      if (platforms[next] === 'win32') {
      -        assert.strictEqual(
      -          findNodeDirectory('/y/node_modules/npm/node_modules/node-gyp/lib',
      -            processObj), path.join('/y'))
      -      } else {
      -        assert.strictEqual(
      -          findNodeDirectory('/y/lib/node_modules/npm/node_modules/node-gyp/lib',
      -            processObj), path.join('/y'))
      -      }
      -    }
      -  })
      -
      -  // we should find the directory based on the execPath
      -  // for node and match because it was in the bin directory
      -  it('test find-node-directory - node in bin directory', function () {
      -    for (var next = 0; next < platforms.length; next++) {
      -      var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
      -      assert.strictEqual(
      -        findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj),
      -        path.join('/x/y'))
      -    }
      -  })
      -
      -  // we should find the directory based on the execPath
      -  // for node and match because it was in the Release directory
      -  it('test find-node-directory - node in build release dir', function () {
      -    for (var next = 0; next < platforms.length; next++) {
      -      var processObj
      -      if (platforms[next] === 'win32') {
      -        processObj = { execPath: '/x/y/Release/node', platform: platforms[next] }
      -      } else {
      -        processObj = {
      -          execPath: '/x/y/out/Release/node',
      -          platform: platforms[next]
      -        }
      -      }
      -
      -      assert.strictEqual(
      -        findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj),
      -        path.join('/x/y'))
      -    }
      -  })
      -
      -  // we should find the directory based on the execPath
      -  // for node and match because it was in the Debug directory
      -  it('test find-node-directory - node in Debug release dir', function () {
      -    for (var next = 0; next < platforms.length; next++) {
      -      var processObj
      -      if (platforms[next] === 'win32') {
      -        processObj = { execPath: '/a/b/Debug/node', platform: platforms[next] }
      -      } else {
      -        processObj = { execPath: '/a/b/out/Debug/node', platform: platforms[next] }
      -      }
      -
      -      assert.strictEqual(
      -        findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj),
      -        path.join('/a/b'))
      -    }
      -  })
      -
      -  // we should not find it as it will not match based on the execPath nor
      -  // the directory from which the script is running
      -  it('test find-node-directory - not found', function () {
      -    for (var next = 0; next < platforms.length; next++) {
      -      var processObj = { execPath: '/x/y/z/y', platform: next }
      -      assert.strictEqual(findNodeDirectory('/a/b/c/d', processObj), '')
      -    }
      -  })
      -
      -  // we should find the directory based on the directory
      -  // the script is running in and it should match the layout
      -  // in a build tree where npm is installed in
      -  // .... /deps/npm
      -  // same test as above but make sure additional directory entries
      -  // don't cause an issue
      -  it('test find-node-directory - node install', function () {
      -    for (var next = 0; next < platforms.length; next++) {
      -      var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
      -      assert.strictEqual(
      -        findNodeDirectory('/x/y/z/a/b/c/deps/npm/node_modules/node-gyp/lib',
      -          processObj), path.join('/x/y/z/a/b/c'))
      -    }
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/test/test-find-python.js b/deps/npm/node_modules/node-gyp/test/test-find-python.js
      deleted file mode 100644
      index 592c480f24fef2..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-find-python.js
      +++ /dev/null
      @@ -1,213 +0,0 @@
      -'use strict'
      -
      -delete process.env.PYTHON
      -
      -const { describe, it } = require('mocha')
      -const assert = require('assert')
      -const findPython = require('../lib/find-python')
      -const execFile = require('child_process').execFile
      -const PythonFinder = findPython.test.PythonFinder
      -
      -require('npmlog').level = 'warn'
      -
      -describe('find-python', function () {
      -  it('find python', function () {
      -    findPython.test.findPython(null, function (err, found) {
      -      assert.strictEqual(err, null)
      -      var proc = execFile(found, ['-V'], function (err, stdout, stderr) {
      -        assert.strictEqual(err, null)
      -        assert.ok(/Python 3/.test(stdout))
      -        assert.strictEqual(stderr, '')
      -      })
      -      proc.stdout.setEncoding('utf-8')
      -      proc.stderr.setEncoding('utf-8')
      -    })
      -  })
      -
      -  function poison (object, property) {
      -    function fail () {
      -      console.error(Error(`Property ${property} should not have been accessed.`))
      -      process.abort()
      -    }
      -    var descriptor = {
      -      configurable: false,
      -      enumerable: false,
      -      get: fail,
      -      set: fail
      -    }
      -    Object.defineProperty(object, property, descriptor)
      -  }
      -
      -  function TestPythonFinder () {
      -    PythonFinder.apply(this, arguments)
      -  }
      -  TestPythonFinder.prototype = Object.create(PythonFinder.prototype)
      -  // Silence npmlog - remove for debugging
      -  TestPythonFinder.prototype.log = {
      -    silly: () => {},
      -    verbose: () => {},
      -    info: () => {},
      -    warn: () => {},
      -    error: () => {}
      -  }
      -  delete TestPythonFinder.prototype.env.NODE_GYP_FORCE_PYTHON
      -
      -  it('find python - python', function () {
      -    var f = new TestPythonFinder('python', done)
      -    f.execFile = function (program, args, opts, cb) {
      -      f.execFile = function (program, args, opts, cb) {
      -        poison(f, 'execFile')
      -        assert.strictEqual(program, '/path/python')
      -        assert.ok(/sys\.version_info/.test(args[1]))
      -        cb(null, '3.9.1')
      -      }
      -      assert.strictEqual(program,
      -        process.platform === 'win32' ? '"python"' : 'python')
      -      assert.ok(/sys\.executable/.test(args[1]))
      -      cb(null, '/path/python')
      -    }
      -    f.findPython()
      -
      -    function done (err, python) {
      -      assert.strictEqual(err, null)
      -      assert.strictEqual(python, '/path/python')
      -    }
      -  })
      -
      -  it('find python - python too old', function () {
      -    var f = new TestPythonFinder(null, done)
      -    f.execFile = function (program, args, opts, cb) {
      -      if (/sys\.executable/.test(args[args.length - 1])) {
      -        cb(null, '/path/python')
      -      } else if (/sys\.version_info/.test(args[args.length - 1])) {
      -        cb(null, '2.3.4')
      -      } else {
      -        assert.fail()
      -      }
      -    }
      -    f.findPython()
      -
      -    function done (err) {
      -      assert.ok(/Could not find any Python/.test(err))
      -      assert.ok(/not supported/i.test(f.errorLog))
      -    }
      -  })
      -
      -  it('find python - no python', function () {
      -    var f = new TestPythonFinder(null, done)
      -    f.execFile = function (program, args, opts, cb) {
      -      if (/sys\.executable/.test(args[args.length - 1])) {
      -        cb(new Error('not found'))
      -      } else if (/sys\.version_info/.test(args[args.length - 1])) {
      -        cb(new Error('not a Python executable'))
      -      } else {
      -        assert.fail()
      -      }
      -    }
      -    f.findPython()
      -
      -    function done (err) {
      -      assert.ok(/Could not find any Python/.test(err))
      -      assert.ok(/not in PATH/.test(f.errorLog))
      -    }
      -  })
      -
      -  it('find python - no python2, no python, unix', function () {
      -    var f = new TestPythonFinder(null, done)
      -    f.checkPyLauncher = assert.fail
      -    f.win = false
      -
      -    f.execFile = function (program, args, opts, cb) {
      -      if (/sys\.executable/.test(args[args.length - 1])) {
      -        cb(new Error('not found'))
      -      } else {
      -        assert.fail()
      -      }
      -    }
      -    f.findPython()
      -
      -    function done (err) {
      -      assert.ok(/Could not find any Python/.test(err))
      -      assert.ok(/not in PATH/.test(f.errorLog))
      -    }
      -  })
      -
      -  it('find python - no python, use python launcher', function () {
      -    var f = new TestPythonFinder(null, done)
      -    f.win = true
      -
      -    f.execFile = function (program, args, opts, cb) {
      -      if (program === 'py.exe') {
      -        assert.notStrictEqual(args.indexOf('-3'), -1)
      -        assert.notStrictEqual(args.indexOf('-c'), -1)
      -        return cb(null, 'Z:\\snake.exe')
      -      }
      -      if (/sys\.executable/.test(args[args.length - 1])) {
      -        cb(new Error('not found'))
      -      } else if (f.winDefaultLocations.includes(program)) {
      -        cb(new Error('not found'))
      -      } else if (/sys\.version_info/.test(args[args.length - 1])) {
      -        if (program === 'Z:\\snake.exe') {
      -          cb(null, '3.9.0')
      -        } else {
      -          assert.fail()
      -        }
      -      } else {
      -        assert.fail()
      -      }
      -    }
      -    f.findPython()
      -
      -    function done (err, python) {
      -      assert.strictEqual(err, null)
      -      assert.strictEqual(python, 'Z:\\snake.exe')
      -    }
      -  })
      -
      -  it('find python - no python, no python launcher, good guess', function () {
      -    var f = new TestPythonFinder(null, done)
      -    f.win = true
      -    const expectedProgram = f.winDefaultLocations[0]
      -
      -    f.execFile = function (program, args, opts, cb) {
      -      if (program === 'py.exe') {
      -        return cb(new Error('not found'))
      -      }
      -      if (/sys\.executable/.test(args[args.length - 1])) {
      -        cb(new Error('not found'))
      -      } else if (program === expectedProgram &&
      -                 /sys\.version_info/.test(args[args.length - 1])) {
      -        cb(null, '3.7.3')
      -      } else {
      -        assert.fail()
      -      }
      -    }
      -    f.findPython()
      -
      -    function done (err, python) {
      -      assert.strictEqual(err, null)
      -      assert.ok(python === expectedProgram)
      -    }
      -  })
      -
      -  it('find python - no python, no python launcher, bad guess', function () {
      -    var f = new TestPythonFinder(null, done)
      -    f.win = true
      -
      -    f.execFile = function (program, args, opts, cb) {
      -      if (/sys\.executable/.test(args[args.length - 1])) {
      -        cb(new Error('not found'))
      -      } else if (/sys\.version_info/.test(args[args.length - 1])) {
      -        cb(new Error('not a Python executable'))
      -      } else {
      -        assert.fail()
      -      }
      -    }
      -    f.findPython()
      -
      -    function done (err) {
      -      assert.ok(/Could not find any Python/.test(err))
      -      assert.ok(/not in PATH/.test(f.errorLog))
      -    }
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/test/test-find-visualstudio.js b/deps/npm/node_modules/node-gyp/test/test-find-visualstudio.js
      deleted file mode 100644
      index 29d9a7dba5f550..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-find-visualstudio.js
      +++ /dev/null
      @@ -1,670 +0,0 @@
      -'use strict'
      -
      -const { describe, it } = require('mocha')
      -const assert = require('assert')
      -const fs = require('fs')
      -const path = require('path')
      -const findVisualStudio = require('../lib/find-visualstudio')
      -const VisualStudioFinder = findVisualStudio.test.VisualStudioFinder
      -
      -const semverV1 = { major: 1, minor: 0, patch: 0 }
      -
      -delete process.env.VCINSTALLDIR
      -
      -function poison (object, property) {
      -  function fail () {
      -    console.error(Error(`Property ${property} should not have been accessed.`))
      -    process.abort()
      -  }
      -  var descriptor = {
      -    configurable: false,
      -    enumerable: false,
      -    get: fail,
      -    set: fail
      -  }
      -  Object.defineProperty(object, property, descriptor)
      -}
      -
      -function TestVisualStudioFinder () { VisualStudioFinder.apply(this, arguments) }
      -TestVisualStudioFinder.prototype = Object.create(VisualStudioFinder.prototype)
      -// Silence npmlog - remove for debugging
      -TestVisualStudioFinder.prototype.log = {
      -  silly: () => {},
      -  verbose: () => {},
      -  info: () => {},
      -  warn: () => {},
      -  error: () => {}
      -}
      -
      -describe('find-visualstudio', function () {
      -  it('VS2013', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info, {
      -        msBuild: 'C:\\MSBuild12\\MSBuild.exe',
      -        path: 'C:\\VS2013',
      -        sdk: null,
      -        toolset: 'v120',
      -        version: '12.0',
      -        versionMajor: 12,
      -        versionMinor: 0,
      -        versionYear: 2013
      -      })
      -    })
      -
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      finder.parseData(new Error(), '', '', cb)
      -    }
      -    finder.regSearchKeys = (keys, value, addOpts, cb) => {
      -      for (var i = 0; i < keys.length; ++i) {
      -        const fullName = `${keys[i]}\\${value}`
      -        switch (fullName) {
      -          case 'HKLM\\Software\\Microsoft\\VisualStudio\\SxS\\VC7\\14.0':
      -          case 'HKLM\\Software\\Wow6432Node\\Microsoft\\VisualStudio\\SxS\\VC7\\14.0':
      -            continue
      -          case 'HKLM\\Software\\Microsoft\\VisualStudio\\SxS\\VC7\\12.0':
      -            assert.ok(true, `expected search for registry value ${fullName}`)
      -            return cb(null, 'C:\\VS2013\\VC\\')
      -          case 'HKLM\\Software\\Microsoft\\MSBuild\\ToolsVersions\\12.0\\MSBuildToolsPath':
      -            assert.ok(true, `expected search for registry value ${fullName}`)
      -            return cb(null, 'C:\\MSBuild12\\')
      -          default:
      -            assert.fail(`unexpected search for registry value ${fullName}`)
      -        }
      -      }
      -      return cb(new Error())
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  it('VS2013 should not be found on new node versions', function () {
      -    const finder = new TestVisualStudioFinder({
      -      major: 10,
      -      minor: 0,
      -      patch: 0
      -    }, null, (err, info) => {
      -      assert.ok(/find .* Visual Studio/i.test(err), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      const file = path.join(__dirname, 'fixtures', 'VS_2017_Unusable.txt')
      -      const data = fs.readFileSync(file)
      -      finder.parseData(null, data, '', cb)
      -    }
      -    finder.regSearchKeys = (keys, value, addOpts, cb) => {
      -      for (var i = 0; i < keys.length; ++i) {
      -        const fullName = `${keys[i]}\\${value}`
      -        switch (fullName) {
      -          case 'HKLM\\Software\\Microsoft\\VisualStudio\\SxS\\VC7\\14.0':
      -          case 'HKLM\\Software\\Wow6432Node\\Microsoft\\VisualStudio\\SxS\\VC7\\14.0':
      -            continue
      -          default:
      -            assert.fail(`unexpected search for registry value ${fullName}`)
      -        }
      -      }
      -      return cb(new Error())
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  it('VS2015', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info, {
      -        msBuild: 'C:\\MSBuild14\\MSBuild.exe',
      -        path: 'C:\\VS2015',
      -        sdk: null,
      -        toolset: 'v140',
      -        version: '14.0',
      -        versionMajor: 14,
      -        versionMinor: 0,
      -        versionYear: 2015
      -      })
      -    })
      -
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      finder.parseData(new Error(), '', '', cb)
      -    }
      -    finder.regSearchKeys = (keys, value, addOpts, cb) => {
      -      for (var i = 0; i < keys.length; ++i) {
      -        const fullName = `${keys[i]}\\${value}`
      -        switch (fullName) {
      -          case 'HKLM\\Software\\Microsoft\\VisualStudio\\SxS\\VC7\\14.0':
      -            assert.ok(true, `expected search for registry value ${fullName}`)
      -            return cb(null, 'C:\\VS2015\\VC\\')
      -          case 'HKLM\\Software\\Microsoft\\MSBuild\\ToolsVersions\\14.0\\MSBuildToolsPath':
      -            assert.ok(true, `expected search for registry value ${fullName}`)
      -            return cb(null, 'C:\\MSBuild14\\')
      -          default:
      -            assert.fail(`unexpected search for registry value ${fullName}`)
      -        }
      -      }
      -      return cb(new Error())
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  it('error from PowerShell', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, null)
      -
      -    finder.parseData(new Error(), '', '', (info) => {
      -      assert.ok(/use PowerShell/i.test(finder.errorLog[0]), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -  })
      -
      -  it('empty output from PowerShell', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, null)
      -
      -    finder.parseData(null, '', '', (info) => {
      -      assert.ok(/use PowerShell/i.test(finder.errorLog[0]), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -  })
      -
      -  it('output from PowerShell not JSON', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, null)
      -
      -    finder.parseData(null, 'AAAABBBB', '', (info) => {
      -      assert.ok(/use PowerShell/i.test(finder.errorLog[0]), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -  })
      -
      -  it('wrong JSON from PowerShell', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, null)
      -
      -    finder.parseData(null, '{}', '', (info) => {
      -      assert.ok(/use PowerShell/i.test(finder.errorLog[0]), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -  })
      -
      -  it('empty JSON from PowerShell', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, null)
      -
      -    finder.parseData(null, '[]', '', (info) => {
      -      assert.ok(/find .* Visual Studio/i.test(finder.errorLog[0]), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -  })
      -
      -  it('future version', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, null)
      -
      -    finder.parseData(null, JSON.stringify([{
      -      packages: [
      -        'Microsoft.VisualStudio.Component.VC.Tools.x86.x64',
      -        'Microsoft.VisualStudio.Component.Windows10SDK.17763',
      -        'Microsoft.VisualStudio.VC.MSBuild.Base'
      -      ],
      -      path: 'C:\\VS',
      -      version: '9999.9999.9999.9999'
      -    }]), '', (info) => {
      -      assert.ok(/unknown version/i.test(finder.errorLog[0]), 'expect error')
      -      assert.ok(/find .* Visual Studio/i.test(finder.errorLog[1]), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -  })
      -
      -  it('single unusable VS2017', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, null)
      -
      -    const file = path.join(__dirname, 'fixtures', 'VS_2017_Unusable.txt')
      -    const data = fs.readFileSync(file)
      -    finder.parseData(null, data, '', (info) => {
      -      assert.ok(/checking/i.test(finder.errorLog[0]), 'expect error')
      -      assert.ok(/find .* Visual Studio/i.test(finder.errorLog[2]), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -  })
      -
      -  it('minimal VS2017 Build Tools', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info, {
      -        msBuild: 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\' +
      -          'BuildTools\\MSBuild\\15.0\\Bin\\MSBuild.exe',
      -        path:
      -          'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools',
      -        sdk: '10.0.17134.0',
      -        toolset: 'v141',
      -        version: '15.9.28307.665',
      -        versionMajor: 15,
      -        versionMinor: 9,
      -        versionYear: 2017
      -      })
      -    })
      -
      -    poison(finder, 'regSearchKeys')
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      const file = path.join(__dirname, 'fixtures',
      -        'VS_2017_BuildTools_minimal.txt')
      -      const data = fs.readFileSync(file)
      -      finder.parseData(null, data, '', cb)
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  it('VS2017 Community with C++ workload', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info, {
      -        msBuild: 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\' +
      -          'Community\\MSBuild\\15.0\\Bin\\MSBuild.exe',
      -        path:
      -          'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community',
      -        sdk: '10.0.17763.0',
      -        toolset: 'v141',
      -        version: '15.9.28307.665',
      -        versionMajor: 15,
      -        versionMinor: 9,
      -        versionYear: 2017
      -      })
      -    })
      -
      -    poison(finder, 'regSearchKeys')
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      const file = path.join(__dirname, 'fixtures',
      -        'VS_2017_Community_workload.txt')
      -      const data = fs.readFileSync(file)
      -      finder.parseData(null, data, '', cb)
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  it('VS2017 Express', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info, {
      -        msBuild: 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\' +
      -          'WDExpress\\MSBuild\\15.0\\Bin\\MSBuild.exe',
      -        path:
      -          'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\WDExpress',
      -        sdk: '10.0.17763.0',
      -        toolset: 'v141',
      -        version: '15.9.28307.858',
      -        versionMajor: 15,
      -        versionMinor: 9,
      -        versionYear: 2017
      -      })
      -    })
      -
      -    poison(finder, 'regSearchKeys')
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      const file = path.join(__dirname, 'fixtures', 'VS_2017_Express.txt')
      -      const data = fs.readFileSync(file)
      -      finder.parseData(null, data, '', cb)
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  it('VS2019 Preview with C++ workload', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info, {
      -        msBuild: 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\' +
      -          'Preview\\MSBuild\\Current\\Bin\\MSBuild.exe',
      -        path:
      -          'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Preview',
      -        sdk: '10.0.17763.0',
      -        toolset: 'v142',
      -        version: '16.0.28608.199',
      -        versionMajor: 16,
      -        versionMinor: 0,
      -        versionYear: 2019
      -      })
      -    })
      -
      -    poison(finder, 'regSearchKeys')
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      const file = path.join(__dirname, 'fixtures',
      -        'VS_2019_Preview.txt')
      -      const data = fs.readFileSync(file)
      -      finder.parseData(null, data, '', cb)
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  it('minimal VS2019 Build Tools', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info, {
      -        msBuild: 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\' +
      -          'BuildTools\\MSBuild\\Current\\Bin\\MSBuild.exe',
      -        path:
      -          'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools',
      -        sdk: '10.0.17134.0',
      -        toolset: 'v142',
      -        version: '16.1.28922.388',
      -        versionMajor: 16,
      -        versionMinor: 1,
      -        versionYear: 2019
      -      })
      -    })
      -
      -    poison(finder, 'regSearchKeys')
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      const file = path.join(__dirname, 'fixtures',
      -        'VS_2019_BuildTools_minimal.txt')
      -      const data = fs.readFileSync(file)
      -      finder.parseData(null, data, '', cb)
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  it('VS2019 Community with C++ workload', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info, {
      -        msBuild: 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\' +
      -          'Community\\MSBuild\\Current\\Bin\\MSBuild.exe',
      -        path:
      -          'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community',
      -        sdk: '10.0.17763.0',
      -        toolset: 'v142',
      -        version: '16.1.28922.388',
      -        versionMajor: 16,
      -        versionMinor: 1,
      -        versionYear: 2019
      -      })
      -    })
      -
      -    poison(finder, 'regSearchKeys')
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      const file = path.join(__dirname, 'fixtures',
      -        'VS_2019_Community_workload.txt')
      -      const data = fs.readFileSync(file)
      -      finder.parseData(null, data, '', cb)
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  it('VS2022 Preview with C++ workload', function () {
      -    const msBuildPath = process.arch === 'arm64'
      -      ? 'C:\\Program Files\\Microsoft Visual Studio\\2022\\' +
      -        'Community\\MSBuild\\Current\\Bin\\arm64\\MSBuild.exe'
      -      : 'C:\\Program Files\\Microsoft Visual Studio\\2022\\' +
      -        'Community\\MSBuild\\Current\\Bin\\MSBuild.exe'
      -
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info, {
      -        msBuild: msBuildPath,
      -        path:
      -          'C:\\Program Files\\Microsoft Visual Studio\\2022\\Community',
      -        sdk: '10.0.22621.0',
      -        toolset: 'v143',
      -        version: '17.4.33213.308',
      -        versionMajor: 17,
      -        versionMinor: 4,
      -        versionYear: 2022
      -      })
      -    })
      -
      -    poison(finder, 'regSearchKeys')
      -    finder.msBuildPathExists = (path) => {
      -      return true
      -    }
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      const file = path.join(__dirname, 'fixtures',
      -        'VS_2022_Community_workload.txt')
      -      const data = fs.readFileSync(file)
      -      finder.parseData(null, data, '', cb)
      -    }
      -    finder.findVisualStudio()
      -  })
      -
      -  function allVsVersions (finder) {
      -    finder.findVisualStudio2017OrNewer = (cb) => {
      -      const data0 = JSON.parse(fs.readFileSync(path.join(__dirname, 'fixtures',
      -        'VS_2017_Unusable.txt')))
      -      const data1 = JSON.parse(fs.readFileSync(path.join(__dirname, 'fixtures',
      -        'VS_2017_BuildTools_minimal.txt')))
      -      const data2 = JSON.parse(fs.readFileSync(path.join(__dirname, 'fixtures',
      -        'VS_2017_Community_workload.txt')))
      -      const data3 = JSON.parse(fs.readFileSync(path.join(__dirname, 'fixtures',
      -        'VS_2017_Express.txt')))
      -      const data4 = JSON.parse(fs.readFileSync(path.join(__dirname, 'fixtures',
      -        'VS_2019_Preview.txt')))
      -      const data5 = JSON.parse(fs.readFileSync(path.join(__dirname, 'fixtures',
      -        'VS_2019_BuildTools_minimal.txt')))
      -      const data6 = JSON.parse(fs.readFileSync(path.join(__dirname, 'fixtures',
      -        'VS_2019_Community_workload.txt')))
      -      const data7 = JSON.parse(fs.readFileSync(path.join(__dirname, 'fixtures',
      -        'VS_2022_Community_workload.txt')))
      -      const data = JSON.stringify(data0.concat(data1, data2, data3, data4,
      -        data5, data6, data7))
      -      finder.parseData(null, data, '', cb)
      -    }
      -    finder.regSearchKeys = (keys, value, addOpts, cb) => {
      -      for (var i = 0; i < keys.length; ++i) {
      -        const fullName = `${keys[i]}\\${value}`
      -        switch (fullName) {
      -          case 'HKLM\\Software\\Microsoft\\VisualStudio\\SxS\\VC7\\14.0':
      -          case 'HKLM\\Software\\Microsoft\\VisualStudio\\SxS\\VC7\\12.0':
      -            continue
      -          case 'HKLM\\Software\\Wow6432Node\\Microsoft\\VisualStudio\\SxS\\VC7\\12.0':
      -            return cb(null, 'C:\\VS2013\\VC\\')
      -          case 'HKLM\\Software\\Microsoft\\MSBuild\\ToolsVersions\\12.0\\MSBuildToolsPath':
      -            return cb(null, 'C:\\MSBuild12\\')
      -          case 'HKLM\\Software\\Wow6432Node\\Microsoft\\VisualStudio\\SxS\\VC7\\14.0':
      -            return cb(null, 'C:\\VS2015\\VC\\')
      -          case 'HKLM\\Software\\Microsoft\\MSBuild\\ToolsVersions\\14.0\\MSBuildToolsPath':
      -            return cb(null, 'C:\\MSBuild14\\')
      -          default:
      -            assert.fail(`unexpected search for registry value ${fullName}`)
      -        }
      -      }
      -      return cb(new Error())
      -    }
      -  }
      -
      -  it('fail when looking for invalid path', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, 'AABB', (err, info) => {
      -      assert.ok(/find .* Visual Studio/i.test(err), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('look for VS2013 by version number', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, '2013', (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info.versionYear, 2013)
      -    })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('look for VS2013 by installation path', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, 'C:\\VS2013',
      -      (err, info) => {
      -        assert.strictEqual(err, null)
      -        assert.deepStrictEqual(info.path, 'C:\\VS2013')
      -      })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('look for VS2015 by version number', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, '2015', (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info.versionYear, 2015)
      -    })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('look for VS2015 by installation path', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, 'C:\\VS2015',
      -      (err, info) => {
      -        assert.strictEqual(err, null)
      -        assert.deepStrictEqual(info.path, 'C:\\VS2015')
      -      })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('look for VS2017 by version number', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, '2017', (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info.versionYear, 2017)
      -    })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('look for VS2017 by installation path', function () {
      -    const finder = new TestVisualStudioFinder(semverV1,
      -      'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community',
      -      (err, info) => {
      -        assert.strictEqual(err, null)
      -        assert.deepStrictEqual(info.path,
      -          'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community')
      -      })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('look for VS2019 by version number', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, '2019', (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info.versionYear, 2019)
      -    })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('look for VS2019 by installation path', function () {
      -    const finder = new TestVisualStudioFinder(semverV1,
      -      'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools',
      -      (err, info) => {
      -        assert.strictEqual(err, null)
      -        assert.deepStrictEqual(info.path,
      -          'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools')
      -      })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('look for VS2022 by version number', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, '2022', (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info.versionYear, 2022)
      -    })
      -
      -    finder.msBuildPathExists = (path) => {
      -      return true
      -    }
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('msvs_version match should be case insensitive', function () {
      -    const finder = new TestVisualStudioFinder(semverV1,
      -      'c:\\program files (x86)\\microsoft visual studio\\2019\\BUILDTOOLS',
      -      (err, info) => {
      -        assert.strictEqual(err, null)
      -        assert.deepStrictEqual(info.path,
      -          'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools')
      -      })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('latest version should be found by default', function () {
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info.versionYear, 2022)
      -    })
      -
      -    finder.msBuildPathExists = (path) => {
      -      return true
      -    }
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('run on a usable VS Command Prompt', function () {
      -    process.env.VCINSTALLDIR = 'C:\\VS2015\\VC'
      -    // VSINSTALLDIR is not defined on Visual C++ Build Tools 2015
      -    delete process.env.VSINSTALLDIR
      -
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info.path, 'C:\\VS2015')
      -    })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('VCINSTALLDIR match should be case insensitive', function () {
      -    process.env.VCINSTALLDIR =
      -      'c:\\program files (x86)\\microsoft visual studio\\2019\\BUILDTOOLS\\VC'
      -
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.strictEqual(err, null)
      -      assert.deepStrictEqual(info.path,
      -        'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools')
      -    })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('run on a unusable VS Command Prompt', function () {
      -    process.env.VCINSTALLDIR =
      -      'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildToolsUnusable\\VC'
      -
      -    const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
      -      assert.ok(/find .* Visual Studio/i.test(err), 'expect error')
      -      assert.ok(!info, 'no data')
      -    })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('run on a VS Command Prompt with matching msvs_version', function () {
      -    process.env.VCINSTALLDIR = 'C:\\VS2015\\VC'
      -
      -    const finder = new TestVisualStudioFinder(semverV1, 'C:\\VS2015',
      -      (err, info) => {
      -        assert.strictEqual(err, null)
      -        assert.deepStrictEqual(info.path, 'C:\\VS2015')
      -      })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -
      -  it('run on a VS Command Prompt with mismatched msvs_version', function () {
      -    process.env.VCINSTALLDIR =
      -      'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools\\VC'
      -
      -    const finder = new TestVisualStudioFinder(semverV1, 'C:\\VS2015',
      -      (err, info) => {
      -        assert.ok(/find .* Visual Studio/i.test(err), 'expect error')
      -        assert.ok(!info, 'no data')
      -      })
      -
      -    allVsVersions(finder)
      -    finder.findVisualStudio()
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/test/test-install.js b/deps/npm/node_modules/node-gyp/test/test-install.js
      deleted file mode 100644
      index 235acf52313969..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-install.js
      +++ /dev/null
      @@ -1,137 +0,0 @@
      -'use strict'
      -
      -const { describe, it, after } = require('mocha')
      -const assert = require('assert')
      -const path = require('path')
      -const os = require('os')
      -const util = require('util')
      -const { test: { download, install } } = require('../lib/install')
      -const rimraf = require('rimraf')
      -const gyp = require('../lib/node-gyp')
      -const log = require('npmlog')
      -const semver = require('semver')
      -const stream = require('stream')
      -const streamPipeline = util.promisify(stream.pipeline)
      -
      -log.level = 'error' // we expect a warning
      -
      -describe('install', function () {
      -  it('EACCES retry once', async () => {
      -    const fs = {
      -      promises: {
      -        stat (_) {
      -          const err = new Error()
      -          err.code = 'EACCES'
      -          assert.ok(true)
      -          throw err
      -        }
      -      }
      -    }
      -
      -    const Gyp = {
      -      devDir: __dirname,
      -      opts: {
      -        ensure: true
      -      },
      -      commands: {
      -        install (argv, cb) {
      -          install(fs, Gyp, argv).then(cb, cb)
      -        },
      -        remove (_, cb) {
      -          cb()
      -        }
      -      }
      -    }
      -
      -    try {
      -      await install(fs, Gyp, [])
      -    } catch (err) {
      -      assert.ok(true)
      -      if (/"pre" versions of node cannot be installed/.test(err.message)) {
      -        assert.ok(true)
      -      }
      -    }
      -  })
      -
      -  // only run these tests if we are running a version of Node with predictable version path behavior
      -  const skipParallelInstallTests = process.env.FAST_TEST ||
      -    process.release.name !== 'node' ||
      -    semver.prerelease(process.version) !== null ||
      -    semver.satisfies(process.version, '<10')
      -
      -  async function parallelInstallsTest (test, fs, devDir, prog) {
      -    if (skipParallelInstallTests) {
      -      return test.skip('Skipping parallel installs test due to test environment configuration')
      -    }
      -
      -    after(async () => {
      -      await util.promisify(rimraf)(devDir)
      -    })
      -
      -    const expectedDir = path.join(devDir, process.version.replace(/^v/, ''))
      -    await util.promisify(rimraf)(expectedDir)
      -
      -    await Promise.all([
      -      install(fs, prog, []),
      -      install(fs, prog, []),
      -      install(fs, prog, []),
      -      install(fs, prog, []),
      -      install(fs, prog, []),
      -      install(fs, prog, []),
      -      install(fs, prog, []),
      -      install(fs, prog, []),
      -      install(fs, prog, []),
      -      install(fs, prog, [])
      -    ])
      -  }
      -
      -  it('parallel installs (ensure=true)', async function () {
      -    this.timeout(600000)
      -
      -    const fs = require('graceful-fs')
      -    const devDir = await util.promisify(fs.mkdtemp)(path.join(os.tmpdir(), 'node-gyp-test-'))
      -
      -    const prog = gyp()
      -    prog.parseArgv([])
      -    prog.devDir = devDir
      -    prog.opts.ensure = true
      -    log.level = 'warn'
      -
      -    await parallelInstallsTest(this, fs, devDir, prog)
      -  })
      -
      -  it('parallel installs (ensure=false)', async function () {
      -    this.timeout(600000)
      -
      -    const fs = require('graceful-fs')
      -    const devDir = await util.promisify(fs.mkdtemp)(path.join(os.tmpdir(), 'node-gyp-test-'))
      -
      -    const prog = gyp()
      -    prog.parseArgv([])
      -    prog.devDir = devDir
      -    prog.opts.ensure = false
      -    log.level = 'warn'
      -
      -    await parallelInstallsTest(this, fs, devDir, prog)
      -  })
      -
      -  it('parallel installs (tarball)', async function () {
      -    this.timeout(600000)
      -
      -    const fs = require('graceful-fs')
      -    const devDir = await util.promisify(fs.mkdtemp)(path.join(os.tmpdir(), 'node-gyp-test-'))
      -
      -    const prog = gyp()
      -    prog.parseArgv([])
      -    prog.devDir = devDir
      -    prog.opts.tarball = path.join(devDir, 'node-headers.tar.gz')
      -    log.level = 'warn'
      -
      -    await streamPipeline(
      -      (await download(prog, `https://nodejs.org/dist/${process.version}/node-${process.version}.tar.gz`)).body,
      -      fs.createWriteStream(prog.opts.tarball)
      -    )
      -
      -    await parallelInstallsTest(this, fs, devDir, prog)
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/test/test-options.js b/deps/npm/node_modules/node-gyp/test/test-options.js
      deleted file mode 100644
      index 24e79c80a18432..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-options.js
      +++ /dev/null
      @@ -1,41 +0,0 @@
      -'use strict'
      -
      -const { describe, it } = require('mocha')
      -const assert = require('assert')
      -const gyp = require('../lib/node-gyp')
      -
      -describe('options', function () {
      -  it('options in environment', () => {
      -    // `npm test` dumps a ton of npm_config_* variables in the environment.
      -    Object.keys(process.env)
      -      .filter((key) => /^npm_config_/.test(key))
      -      .forEach((key) => { delete process.env[key] })
      -
      -    // in some platforms, certain keys are stubborn and cannot be removed
      -    const keys = Object.keys(process.env)
      -      .filter((key) => /^npm_config_/.test(key))
      -      .map((key) => key.substring('npm_config_'.length))
      -      .concat('argv', 'x')
      -
      -    // Zero-length keys should get filtered out.
      -    process.env.npm_config_ = '42'
      -    // Other keys should get added.
      -    process.env.npm_config_x = '42'
      -    // Except loglevel.
      -    process.env.npm_config_loglevel = 'debug'
      -
      -    const g = gyp()
      -    g.parseArgv(['rebuild']) // Also sets opts.argv.
      -
      -    assert.deepStrictEqual(Object.keys(g.opts).sort(), keys.sort())
      -  })
      -
      -  it('options with spaces in environment', () => {
      -    process.env.npm_config_force_process_config = 'true'
      -
      -    const g = gyp()
      -    g.parseArgv(['rebuild']) // Also sets opts.argv.
      -
      -    assert.strictEqual(g.opts['force-process-config'], 'true')
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/test/test-process-release.js b/deps/npm/node_modules/node-gyp/test/test-process-release.js
      deleted file mode 100644
      index 0f40666473028c..00000000000000
      --- a/deps/npm/node_modules/node-gyp/test/test-process-release.js
      +++ /dev/null
      @@ -1,401 +0,0 @@
      -'use strict'
      -
      -const { describe, it } = require('mocha')
      -const assert = require('assert')
      -const processRelease = require('../lib/process-release')
      -
      -describe('process-release', function () {
      -  it('test process release - process.version = 0.8.20', function () {
      -    var release = processRelease([], { opts: {} }, 'v0.8.20', null)
      -
      -    assert.strictEqual(release.semver.version, '0.8.20')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '0.8.20',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/dist/v0.8.20/',
      -      tarballUrl: 'https://nodejs.org/dist/v0.8.20/node-v0.8.20.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/dist/v0.8.20/SHASUMS256.txt',
      -      versionDir: '0.8.20',
      -      ia32: { libUrl: 'https://nodejs.org/dist/v0.8.20/node.lib', libPath: 'node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/dist/v0.8.20/x64/node.lib', libPath: 'x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/dist/v0.8.20/arm64/node.lib', libPath: 'arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.version = 0.10.21', function () {
      -    var release = processRelease([], { opts: {} }, 'v0.10.21', null)
      -
      -    assert.strictEqual(release.semver.version, '0.10.21')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '0.10.21',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/dist/v0.10.21/',
      -      tarballUrl: 'https://nodejs.org/dist/v0.10.21/node-v0.10.21.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/dist/v0.10.21/SHASUMS256.txt',
      -      versionDir: '0.10.21',
      -      ia32: { libUrl: 'https://nodejs.org/dist/v0.10.21/node.lib', libPath: 'node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/dist/v0.10.21/x64/node.lib', libPath: 'x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/dist/v0.10.21/arm64/node.lib', libPath: 'arm64/node.lib' }
      -    })
      -  })
      -
      -  // prior to -headers.tar.gz
      -  it('test process release - process.version = 0.12.9', function () {
      -    var release = processRelease([], { opts: {} }, 'v0.12.9', null)
      -
      -    assert.strictEqual(release.semver.version, '0.12.9')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '0.12.9',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/dist/v0.12.9/',
      -      tarballUrl: 'https://nodejs.org/dist/v0.12.9/node-v0.12.9.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/dist/v0.12.9/SHASUMS256.txt',
      -      versionDir: '0.12.9',
      -      ia32: { libUrl: 'https://nodejs.org/dist/v0.12.9/node.lib', libPath: 'node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/dist/v0.12.9/x64/node.lib', libPath: 'x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/dist/v0.12.9/arm64/node.lib', libPath: 'arm64/node.lib' }
      -    })
      -  })
      -
      -  // prior to -headers.tar.gz
      -  it('test process release - process.version = 0.10.41', function () {
      -    var release = processRelease([], { opts: {} }, 'v0.10.41', null)
      -
      -    assert.strictEqual(release.semver.version, '0.10.41')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '0.10.41',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/dist/v0.10.41/',
      -      tarballUrl: 'https://nodejs.org/dist/v0.10.41/node-v0.10.41.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/dist/v0.10.41/SHASUMS256.txt',
      -      versionDir: '0.10.41',
      -      ia32: { libUrl: 'https://nodejs.org/dist/v0.10.41/node.lib', libPath: 'node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/dist/v0.10.41/x64/node.lib', libPath: 'x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/dist/v0.10.41/arm64/node.lib', libPath: 'arm64/node.lib' }
      -    })
      -  })
      -
      -  // has -headers.tar.gz
      -  it('test process release - process.release ~ node@0.10.42', function () {
      -    var release = processRelease([], { opts: {} }, 'v0.10.42', null)
      -
      -    assert.strictEqual(release.semver.version, '0.10.42')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '0.10.42',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/dist/v0.10.42/',
      -      tarballUrl: 'https://nodejs.org/dist/v0.10.42/node-v0.10.42-headers.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/dist/v0.10.42/SHASUMS256.txt',
      -      versionDir: '0.10.42',
      -      ia32: { libUrl: 'https://nodejs.org/dist/v0.10.42/node.lib', libPath: 'node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/dist/v0.10.42/x64/node.lib', libPath: 'x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/dist/v0.10.42/arm64/node.lib', libPath: 'arm64/node.lib' }
      -    })
      -  })
      -
      -  // has -headers.tar.gz
      -  it('test process release - process.release ~ node@0.12.10', function () {
      -    var release = processRelease([], { opts: {} }, 'v0.12.10', null)
      -
      -    assert.strictEqual(release.semver.version, '0.12.10')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '0.12.10',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/dist/v0.12.10/',
      -      tarballUrl: 'https://nodejs.org/dist/v0.12.10/node-v0.12.10-headers.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/dist/v0.12.10/SHASUMS256.txt',
      -      versionDir: '0.12.10',
      -      ia32: { libUrl: 'https://nodejs.org/dist/v0.12.10/node.lib', libPath: 'node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/dist/v0.12.10/x64/node.lib', libPath: 'x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/dist/v0.12.10/arm64/node.lib', libPath: 'arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ node@4.1.23', function () {
      -    var release = processRelease([], { opts: {} }, 'v4.1.23', {
      -      name: 'node',
      -      headersUrl: 'https://nodejs.org/dist/v4.1.23/node-v4.1.23-headers.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '4.1.23')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '4.1.23',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/dist/v4.1.23/',
      -      tarballUrl: 'https://nodejs.org/dist/v4.1.23/node-v4.1.23-headers.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/dist/v4.1.23/SHASUMS256.txt',
      -      versionDir: '4.1.23',
      -      ia32: { libUrl: 'https://nodejs.org/dist/v4.1.23/win-x86/node.lib', libPath: 'win-x86/node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/dist/v4.1.23/win-x64/node.lib', libPath: 'win-x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/dist/v4.1.23/win-arm64/node.lib', libPath: 'win-arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ node@4.1.23 / corp build', function () {
      -    var release = processRelease([], { opts: {} }, 'v4.1.23', {
      -      name: 'node',
      -      headersUrl: 'https://some.custom.location/node-v4.1.23-headers.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '4.1.23')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '4.1.23',
      -      name: 'node',
      -      baseUrl: 'https://some.custom.location/',
      -      tarballUrl: 'https://some.custom.location/node-v4.1.23-headers.tar.gz',
      -      shasumsUrl: 'https://some.custom.location/SHASUMS256.txt',
      -      versionDir: '4.1.23',
      -      ia32: { libUrl: 'https://some.custom.location/win-x86/node.lib', libPath: 'win-x86/node.lib' },
      -      x64: { libUrl: 'https://some.custom.location/win-x64/node.lib', libPath: 'win-x64/node.lib' },
      -      arm64: { libUrl: 'https://some.custom.location/win-arm64/node.lib', libPath: 'win-arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ node@12.8.0 Windows', function () {
      -    var release = processRelease([], { opts: {} }, 'v12.8.0', {
      -      name: 'node',
      -      sourceUrl: 'https://nodejs.org/download/release/v12.8.0/node-v12.8.0.tar.gz',
      -      headersUrl: 'https://nodejs.org/download/release/v12.8.0/node-v12.8.0-headers.tar.gz',
      -      libUrl: 'https://nodejs.org/download/release/v12.8.0/win-x64/node.lib'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '12.8.0')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '12.8.0',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/download/release/v12.8.0/',
      -      tarballUrl: 'https://nodejs.org/download/release/v12.8.0/node-v12.8.0-headers.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/download/release/v12.8.0/SHASUMS256.txt',
      -      versionDir: '12.8.0',
      -      ia32: { libUrl: 'https://nodejs.org/download/release/v12.8.0/win-x86/node.lib', libPath: 'win-x86/node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/download/release/v12.8.0/win-x64/node.lib', libPath: 'win-x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/download/release/v12.8.0/win-arm64/node.lib', libPath: 'win-arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ node@12.8.0 Windows ARM64', function () {
      -    var release = processRelease([], { opts: {} }, 'v12.8.0', {
      -      name: 'node',
      -      sourceUrl: 'https://unofficial-builds.nodejs.org/download/release/v12.8.0/node-v12.8.0.tar.gz',
      -      headersUrl: 'https://unofficial-builds.nodejs.org/download/release/v12.8.0/node-v12.8.0-headers.tar.gz',
      -      libUrl: 'https://unofficial-builds.nodejs.org/download/release/v12.8.0/win-arm64/node.lib'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '12.8.0')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '12.8.0',
      -      name: 'node',
      -      baseUrl: 'https://unofficial-builds.nodejs.org/download/release/v12.8.0/',
      -      tarballUrl: 'https://unofficial-builds.nodejs.org/download/release/v12.8.0/node-v12.8.0-headers.tar.gz',
      -      shasumsUrl: 'https://unofficial-builds.nodejs.org/download/release/v12.8.0/SHASUMS256.txt',
      -      versionDir: '12.8.0',
      -      ia32: { libUrl: 'https://unofficial-builds.nodejs.org/download/release/v12.8.0/win-x86/node.lib', libPath: 'win-x86/node.lib' },
      -      x64: { libUrl: 'https://unofficial-builds.nodejs.org/download/release/v12.8.0/win-x64/node.lib', libPath: 'win-x64/node.lib' },
      -      arm64: { libUrl: 'https://unofficial-builds.nodejs.org/download/release/v12.8.0/win-arm64/node.lib', libPath: 'win-arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ node@4.1.23 --target=0.10.40', function () {
      -    var release = processRelease([], { opts: { target: '0.10.40' } }, 'v4.1.23', {
      -      name: 'node',
      -      headersUrl: 'https://nodejs.org/dist/v4.1.23/node-v4.1.23-headers.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '0.10.40')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '0.10.40',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/dist/v0.10.40/',
      -      tarballUrl: 'https://nodejs.org/dist/v0.10.40/node-v0.10.40.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/dist/v0.10.40/SHASUMS256.txt',
      -      versionDir: '0.10.40',
      -      ia32: { libUrl: 'https://nodejs.org/dist/v0.10.40/node.lib', libPath: 'node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/dist/v0.10.40/x64/node.lib', libPath: 'x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/dist/v0.10.40/arm64/node.lib', libPath: 'arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ node@4.1.23 --dist-url=https://foo.bar/baz', function () {
      -    var release = processRelease([], { opts: { 'dist-url': 'https://foo.bar/baz' } }, 'v4.1.23', {
      -      name: 'node',
      -      headersUrl: 'https://nodejs.org/dist/v4.1.23/node-v4.1.23-headers.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '4.1.23')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '4.1.23',
      -      name: 'node',
      -      baseUrl: 'https://foo.bar/baz/v4.1.23/',
      -      tarballUrl: 'https://foo.bar/baz/v4.1.23/node-v4.1.23-headers.tar.gz',
      -      shasumsUrl: 'https://foo.bar/baz/v4.1.23/SHASUMS256.txt',
      -      versionDir: '4.1.23',
      -      ia32: { libUrl: 'https://foo.bar/baz/v4.1.23/win-x86/node.lib', libPath: 'win-x86/node.lib' },
      -      x64: { libUrl: 'https://foo.bar/baz/v4.1.23/win-x64/node.lib', libPath: 'win-x64/node.lib' },
      -      arm64: { libUrl: 'https://foo.bar/baz/v4.1.23/win-arm64/node.lib', libPath: 'win-arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ frankenstein@4.1.23', function () {
      -    var release = processRelease([], { opts: {} }, 'v4.1.23', {
      -      name: 'frankenstein',
      -      headersUrl: 'https://frankensteinjs.org/dist/v4.1.23/frankenstein-v4.1.23-headers.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '4.1.23')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '4.1.23',
      -      name: 'frankenstein',
      -      baseUrl: 'https://frankensteinjs.org/dist/v4.1.23/',
      -      tarballUrl: 'https://frankensteinjs.org/dist/v4.1.23/frankenstein-v4.1.23-headers.tar.gz',
      -      shasumsUrl: 'https://frankensteinjs.org/dist/v4.1.23/SHASUMS256.txt',
      -      versionDir: 'frankenstein-4.1.23',
      -      ia32: { libUrl: 'https://frankensteinjs.org/dist/v4.1.23/win-x86/frankenstein.lib', libPath: 'win-x86/frankenstein.lib' },
      -      x64: { libUrl: 'https://frankensteinjs.org/dist/v4.1.23/win-x64/frankenstein.lib', libPath: 'win-x64/frankenstein.lib' },
      -      arm64: { libUrl: 'https://frankensteinjs.org/dist/v4.1.23/win-arm64/frankenstein.lib', libPath: 'win-arm64/frankenstein.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ frankenstein@4.1.23 --dist-url=http://foo.bar/baz/', function () {
      -    var release = processRelease([], { opts: { 'dist-url': 'http://foo.bar/baz/' } }, 'v4.1.23', {
      -      name: 'frankenstein',
      -      headersUrl: 'https://frankensteinjs.org/dist/v4.1.23/frankenstein-v4.1.23.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '4.1.23')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '4.1.23',
      -      name: 'frankenstein',
      -      baseUrl: 'http://foo.bar/baz/v4.1.23/',
      -      tarballUrl: 'http://foo.bar/baz/v4.1.23/frankenstein-v4.1.23-headers.tar.gz',
      -      shasumsUrl: 'http://foo.bar/baz/v4.1.23/SHASUMS256.txt',
      -      versionDir: 'frankenstein-4.1.23',
      -      ia32: { libUrl: 'http://foo.bar/baz/v4.1.23/win-x86/frankenstein.lib', libPath: 'win-x86/frankenstein.lib' },
      -      x64: { libUrl: 'http://foo.bar/baz/v4.1.23/win-x64/frankenstein.lib', libPath: 'win-x64/frankenstein.lib' },
      -      arm64: { libUrl: 'http://foo.bar/baz/v4.1.23/win-arm64/frankenstein.lib', libPath: 'win-arm64/frankenstein.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ node@4.0.0-rc.4', function () {
      -    var release = processRelease([], { opts: {} }, 'v4.0.0-rc.4', {
      -      name: 'node',
      -      headersUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/node-v4.0.0-rc.4-headers.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '4.0.0-rc.4')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '4.0.0-rc.4',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/',
      -      tarballUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/node-v4.0.0-rc.4-headers.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/SHASUMS256.txt',
      -      versionDir: '4.0.0-rc.4',
      -      ia32: { libUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-x86/node.lib', libPath: 'win-x86/node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-x64/node.lib', libPath: 'win-x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-arm64/node.lib', libPath: 'win-arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ node@4.0.0-rc.4 passed as argv[0]', function () {
      -  // note the missing 'v' on the arg, it should normalise when checking
      -    // whether we're on the default or not
      -    var release = processRelease(['4.0.0-rc.4'], { opts: {} }, 'v4.0.0-rc.4', {
      -      name: 'node',
      -      headersUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/node-v4.0.0-rc.4-headers.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '4.0.0-rc.4')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '4.0.0-rc.4',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/',
      -      tarballUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/node-v4.0.0-rc.4-headers.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/SHASUMS256.txt',
      -      versionDir: '4.0.0-rc.4',
      -      ia32: { libUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-x86/node.lib', libPath: 'win-x86/node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-x64/node.lib', libPath: 'win-x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-arm64/node.lib', libPath: 'win-arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - process.release ~ node@4.0.0-rc.4 - bogus string passed as argv[0]', function () {
      -  // additional arguments can be passed in on the commandline that should be ignored if they
      -    // are not specifying a valid version @ position 0
      -    var release = processRelease(['this is no version!'], { opts: {} }, 'v4.0.0-rc.4', {
      -      name: 'node',
      -      headersUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/node-v4.0.0-rc.4-headers.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '4.0.0-rc.4')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '4.0.0-rc.4',
      -      name: 'node',
      -      baseUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/',
      -      tarballUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/node-v4.0.0-rc.4-headers.tar.gz',
      -      shasumsUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/SHASUMS256.txt',
      -      versionDir: '4.0.0-rc.4',
      -      ia32: { libUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-x86/node.lib', libPath: 'win-x86/node.lib' },
      -      x64: { libUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-x64/node.lib', libPath: 'win-x64/node.lib' },
      -      arm64: { libUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-arm64/node.lib', libPath: 'win-arm64/node.lib' }
      -    })
      -  })
      -
      -  it('test process release - NODEJS_ORG_MIRROR', function () {
      -    process.env.NODEJS_ORG_MIRROR = 'http://foo.bar'
      -
      -    var release = processRelease([], { opts: {} }, 'v4.1.23', {
      -      name: 'node',
      -      headersUrl: 'https://nodejs.org/dist/v4.1.23/node-v4.1.23-headers.tar.gz'
      -    })
      -
      -    assert.strictEqual(release.semver.version, '4.1.23')
      -    delete release.semver
      -
      -    assert.deepStrictEqual(release, {
      -      version: '4.1.23',
      -      name: 'node',
      -      baseUrl: 'http://foo.bar/v4.1.23/',
      -      tarballUrl: 'http://foo.bar/v4.1.23/node-v4.1.23-headers.tar.gz',
      -      shasumsUrl: 'http://foo.bar/v4.1.23/SHASUMS256.txt',
      -      versionDir: '4.1.23',
      -      ia32: { libUrl: 'http://foo.bar/v4.1.23/win-x86/node.lib', libPath: 'win-x86/node.lib' },
      -      x64: { libUrl: 'http://foo.bar/v4.1.23/win-x64/node.lib', libPath: 'win-x64/node.lib' },
      -      arm64: { libUrl: 'http://foo.bar/v4.1.23/win-arm64/node.lib', libPath: 'win-arm64/node.lib' }
      -    })
      -
      -    delete process.env.NODEJS_ORG_MIRROR
      -  })
      -})
      diff --git a/deps/npm/node_modules/node-gyp/update-gyp.py b/deps/npm/node_modules/node-gyp/update-gyp.py
      deleted file mode 100755
      index 70e2d100288ec6..00000000000000
      --- a/deps/npm/node_modules/node-gyp/update-gyp.py
      +++ /dev/null
      @@ -1,64 +0,0 @@
      -#!/usr/bin/env python3
      -
      -import argparse
      -import os
      -import shutil
      -import subprocess
      -import tarfile
      -import tempfile
      -import urllib.request
      -
      -BASE_URL = "https://github.com/nodejs/gyp-next/archive/"
      -CHECKOUT_PATH = os.path.dirname(os.path.realpath(__file__))
      -CHECKOUT_GYP_PATH = os.path.join(CHECKOUT_PATH, "gyp")
      -
      -parser = argparse.ArgumentParser()
      -parser.add_argument("tag", help="gyp tag to update to")
      -args = parser.parse_args()
      -
      -tar_url = BASE_URL + args.tag + ".tar.gz"
      -
      -changed_files = subprocess.check_output(["git", "diff", "--name-only"]).strip()
      -if changed_files:
      -    raise Exception("Can't update gyp while you have uncommitted changes in node-gyp")
      -
      -with tempfile.TemporaryDirectory() as tmp_dir:
      -    tar_file = os.path.join(tmp_dir, "gyp.tar.gz")
      -    unzip_target = os.path.join(tmp_dir, "gyp")
      -    with open(tar_file, "wb") as f:
      -        print("Downloading gyp-next@" + args.tag + " into temporary directory...")
      -        print("From: " + tar_url)
      -        with urllib.request.urlopen(tar_url) as in_file:
      -            f.write(in_file.read())
      -
      -        print("Unzipping...")
      -        with tarfile.open(tar_file, "r:gz") as tar_ref:
      -            def is_within_directory(directory, target):
      -
      -                abs_directory = os.path.abspath(directory)
      -                abs_target = os.path.abspath(target)
      -
      -                prefix = os.path.commonprefix([abs_directory, abs_target])
      -
      -                return prefix == abs_directory
      -
      -            def safe_extract(tar, path=".", members=None, *, numeric_owner=False):
      -
      -                for member in tar.getmembers():
      -                    member_path = os.path.join(path, member.name)
      -                    if not is_within_directory(path, member_path):
      -                        raise Exception("Attempted Path Traversal in Tar File")
      -
      -                tar.extractall(path, members, numeric_owner=numeric_owner)
      -
      -            safe_extract(tar_ref, unzip_target)
      -
      -        print("Moving to current checkout (" + CHECKOUT_PATH + ")...")
      -        if os.path.exists(CHECKOUT_GYP_PATH):
      -            shutil.rmtree(CHECKOUT_GYP_PATH)
      -        shutil.move(
      -            os.path.join(unzip_target, os.listdir(unzip_target)[0]), CHECKOUT_GYP_PATH
      -        )
      -
      -subprocess.check_output(["git", "add", "gyp"], cwd=CHECKOUT_PATH)
      -subprocess.check_output(["git", "commit", "-m", "feat(gyp): update gyp to " + args.tag])
      diff --git a/deps/npm/node_modules/npm-install-checks/lib/index.js b/deps/npm/node_modules/npm-install-checks/lib/index.js
      index f0ba2c07ad0812..545472b61dc604 100644
      --- a/deps/npm/node_modules/npm-install-checks/lib/index.js
      +++ b/deps/npm/node_modules/npm-install-checks/lib/index.js
      @@ -36,7 +36,9 @@ const checkPlatform = (target, force = false, environment = {}) => {
         let libcFamily = null
         if (target.libc) {
           // libc checks only work in linux, any value is a failure if we aren't
      -    if (platform !== 'linux') {
      +    if (environment.libc) {
      +      libcOk = checkList(environment.libc, target.libc)
      +    } else if (platform !== 'linux') {
             libcOk = false
           } else {
             const report = process.report.getReport()
      diff --git a/deps/npm/node_modules/npm-install-checks/package.json b/deps/npm/node_modules/npm-install-checks/package.json
      index 50378808d75d08..11a3b87750e25a 100644
      --- a/deps/npm/node_modules/npm-install-checks/package.json
      +++ b/deps/npm/node_modules/npm-install-checks/package.json
      @@ -1,6 +1,6 @@
       {
         "name": "npm-install-checks",
      -  "version": "6.2.0",
      +  "version": "6.3.0",
         "description": "Check the engines and platform fields in package.json",
         "main": "lib/index.js",
         "dependencies": {
      @@ -8,7 +8,7 @@
         },
         "devDependencies": {
           "@npmcli/eslint-config": "^4.0.0",
      -    "@npmcli/template-oss": "4.18.0",
      +    "@npmcli/template-oss": "4.19.0",
           "tap": "^16.0.1"
         },
         "scripts": {
      @@ -39,7 +39,7 @@
         "author": "GitHub Inc.",
         "templateOSS": {
           "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
      -    "version": "4.18.0",
      +    "version": "4.19.0",
           "publish": "true"
         },
         "tap": {
      diff --git a/deps/npm/node_modules/npm-registry-fetch/lib/auth.js b/deps/npm/node_modules/npm-registry-fetch/lib/auth.js
      index 870ce0d923cd0f..9270025fa8d902 100644
      --- a/deps/npm/node_modules/npm-registry-fetch/lib/auth.js
      +++ b/deps/npm/node_modules/npm-registry-fetch/lib/auth.js
      @@ -4,8 +4,8 @@ const npa = require('npm-package-arg')
       const { URL } = require('url')
       
       // Find the longest registry key that is used for some kind of auth
      -// in the options.
      -const regKeyFromURI = (uri, opts) => {
      +// in the options.  Returns the registry key and the auth config.
      +const regFromURI = (uri, opts) => {
         const parsed = new URL(uri)
         // try to find a config key indicating we have auth for this registry
         // can be one of :_authToken, :_auth, :_password and :username, or
      @@ -14,23 +14,40 @@ const regKeyFromURI = (uri, opts) => {
         // stopping when we reach '//'.
         let regKey = `//${parsed.host}${parsed.pathname}`
         while (regKey.length > '//'.length) {
      +    const authKey = hasAuth(regKey, opts)
           // got some auth for this URI
      -    if (hasAuth(regKey, opts)) {
      -      return regKey
      +    if (authKey) {
      +      return { regKey, authKey }
           }
       
           // can be either //host/some/path/:_auth or //host/some/path:_auth
           // walk up by removing EITHER what's after the slash OR the slash itself
           regKey = regKey.replace(/([^/]+|\/)$/, '')
         }
      +  return { regKey: false, authKey: null }
       }
       
      -const hasAuth = (regKey, opts) => (
      -  opts[`${regKey}:_authToken`] ||
      -  opts[`${regKey}:_auth`] ||
      -  opts[`${regKey}:username`] && opts[`${regKey}:_password`] ||
      -  opts[`${regKey}:certfile`] && opts[`${regKey}:keyfile`]
      -)
      +// Not only do we want to know if there is auth, but if we are calling `npm
      +// logout` we want to know what config value specifically provided it.  This is
      +// so we can look up where the config came from to delete it (i.e. user vs
      +// project)
      +const hasAuth = (regKey, opts) => {
      +  if (opts[`${regKey}:_authToken`]) {
      +    return '_authToken'
      +  }
      +  if (opts[`${regKey}:_auth`]) {
      +    return '_auth'
      +  }
      +  if (opts[`${regKey}:username`] && opts[`${regKey}:_password`]) {
      +    // 'password' can be inferred to also be present
      +    return 'username'
      +  }
      +  if (opts[`${regKey}:certfile`] && opts[`${regKey}:keyfile`]) {
      +    // 'keyfile' can be inferred to also be present
      +    return 'certfile'
      +  }
      +  return false
      +}
       
       const sameHost = (a, b) => {
         const parsedA = new URL(a)
      @@ -63,11 +80,14 @@ const getAuth = (uri, opts = {}) => {
         if (!uri) {
           throw new Error('URI is required')
         }
      -  const regKey = regKeyFromURI(uri, forceAuth || opts)
      +  const { regKey, authKey } = regFromURI(uri, forceAuth || opts)
       
         // we are only allowed to use what's in forceAuth if specified
         if (forceAuth && !regKey) {
           return new Auth({
      +      // if we force auth we don't want to refer back to anything in config
      +      regKey: false,
      +      authKey: null,
             scopeAuthKey: null,
             token: forceAuth._authToken || forceAuth.token,
             username: forceAuth.username,
      @@ -88,8 +108,8 @@ const getAuth = (uri, opts = {}) => {
             // registry where we logged in, but the same auth SHOULD be sent
             // to that artifact host, then we track where it was coming in from,
             // and warn the user if we get a 4xx error on it.
      -      const scopeAuthKey = regKeyFromURI(registry, opts)
      -      return new Auth({ scopeAuthKey })
      +      const { regKey: scopeAuthKey, authKey: _authKey } = regFromURI(registry, opts)
      +      return new Auth({ scopeAuthKey, regKey: scopeAuthKey, authKey: _authKey })
           }
         }
       
      @@ -104,6 +124,8 @@ const getAuth = (uri, opts = {}) => {
       
         return new Auth({
           scopeAuthKey: null,
      +    regKey,
      +    authKey,
           token,
           auth,
           username,
      @@ -114,8 +136,22 @@ const getAuth = (uri, opts = {}) => {
       }
       
       class Auth {
      -  constructor ({ token, auth, username, password, scopeAuthKey, certfile, keyfile }) {
      +  constructor ({
      +    token,
      +    auth,
      +    username,
      +    password,
      +    scopeAuthKey,
      +    certfile,
      +    keyfile,
      +    regKey,
      +    authKey,
      +  }) {
      +    // same as regKey but only present for scoped auth. Should have been named scopeRegKey
           this.scopeAuthKey = scopeAuthKey
      +    // `${regKey}:${authKey}` will get you back to the auth config that gave us auth
      +    this.regKey = regKey
      +    this.authKey = authKey
           this.token = null
           this.auth = null
           this.isBasicAuth = false
      diff --git a/deps/npm/node_modules/npm-registry-fetch/lib/index.js b/deps/npm/node_modules/npm-registry-fetch/lib/index.js
      index 23e349c5c5b96d..bb413f862d92d0 100644
      --- a/deps/npm/node_modules/npm-registry-fetch/lib/index.js
      +++ b/deps/npm/node_modules/npm-registry-fetch/lib/index.js
      @@ -166,6 +166,8 @@ function regFetch (uri, /* istanbul ignore next */ opts_ = {}) {
         return Promise.resolve(body).then(doFetch)
       }
       
      +module.exports.getAuth = getAuth
      +
       module.exports.json = fetchJSON
       function fetchJSON (uri, opts) {
         return regFetch(uri, opts).then(res => res.json())
      diff --git a/deps/npm/node_modules/npm-registry-fetch/package.json b/deps/npm/node_modules/npm-registry-fetch/package.json
      index 2afadf939743b8..b715d52391a933 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": "16.0.0",
      +  "version": "16.1.0",
         "description": "Fetch-based http client for use with npm registry APIs",
         "main": "lib",
         "files": [
      @@ -41,7 +41,7 @@
         },
         "devDependencies": {
           "@npmcli/eslint-config": "^4.0.0",
      -    "@npmcli/template-oss": "4.18.0",
      +    "@npmcli/template-oss": "4.19.0",
           "cacache": "^18.0.0",
           "nock": "^13.2.4",
           "require-inject": "^1.4.4",
      @@ -61,13 +61,7 @@
         },
         "templateOSS": {
           "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
      -    "version": "4.18.0",
      -    "publish": "true",
      -    "ciVersions": [
      -      "16.14.0",
      -      "16.x",
      -      "18.0.0",
      -      "18.x"
      -    ]
      +    "version": "4.19.0",
      +    "publish": "true"
         }
       }
      diff --git a/deps/npm/node_modules/once/LICENSE b/deps/npm/node_modules/once/LICENSE
      deleted file mode 100644
      index 19129e315fe593..00000000000000
      --- a/deps/npm/node_modules/once/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) Isaac Z. Schlueter and Contributors
      -
      -Permission to use, copy, modify, and/or distribute this software for any
      -purpose with or without fee is hereby granted, provided that the above
      -copyright notice and this permission notice appear in all copies.
      -
      -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
      -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      diff --git a/deps/npm/node_modules/once/once.js b/deps/npm/node_modules/once/once.js
      deleted file mode 100644
      index 235406736d9d94..00000000000000
      --- a/deps/npm/node_modules/once/once.js
      +++ /dev/null
      @@ -1,42 +0,0 @@
      -var wrappy = require('wrappy')
      -module.exports = wrappy(once)
      -module.exports.strict = wrappy(onceStrict)
      -
      -once.proto = once(function () {
      -  Object.defineProperty(Function.prototype, 'once', {
      -    value: function () {
      -      return once(this)
      -    },
      -    configurable: true
      -  })
      -
      -  Object.defineProperty(Function.prototype, 'onceStrict', {
      -    value: function () {
      -      return onceStrict(this)
      -    },
      -    configurable: true
      -  })
      -})
      -
      -function once (fn) {
      -  var f = function () {
      -    if (f.called) return f.value
      -    f.called = true
      -    return f.value = fn.apply(this, arguments)
      -  }
      -  f.called = false
      -  return f
      -}
      -
      -function onceStrict (fn) {
      -  var f = function () {
      -    if (f.called)
      -      throw new Error(f.onceError)
      -    f.called = true
      -    return f.value = fn.apply(this, arguments)
      -  }
      -  var name = fn.name || 'Function wrapped with `once`'
      -  f.onceError = name + " shouldn't be called more than once"
      -  f.called = false
      -  return f
      -}
      diff --git a/deps/npm/node_modules/once/package.json b/deps/npm/node_modules/once/package.json
      deleted file mode 100644
      index 16815b2fa11193..00000000000000
      --- a/deps/npm/node_modules/once/package.json
      +++ /dev/null
      @@ -1,33 +0,0 @@
      -{
      -  "name": "once",
      -  "version": "1.4.0",
      -  "description": "Run a function exactly one time",
      -  "main": "once.js",
      -  "directories": {
      -    "test": "test"
      -  },
      -  "dependencies": {
      -    "wrappy": "1"
      -  },
      -  "devDependencies": {
      -    "tap": "^7.0.1"
      -  },
      -  "scripts": {
      -    "test": "tap test/*.js"
      -  },
      -  "files": [
      -    "once.js"
      -  ],
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/isaacs/once"
      -  },
      -  "keywords": [
      -    "once",
      -    "function",
      -    "one",
      -    "single"
      -  ],
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me/)",
      -  "license": "ISC"
      -}
      diff --git a/deps/npm/node_modules/path-is-absolute/index.js b/deps/npm/node_modules/path-is-absolute/index.js
      deleted file mode 100644
      index 22aa6c35607997..00000000000000
      --- a/deps/npm/node_modules/path-is-absolute/index.js
      +++ /dev/null
      @@ -1,20 +0,0 @@
      -'use strict';
      -
      -function posix(path) {
      -	return path.charAt(0) === '/';
      -}
      -
      -function win32(path) {
      -	// https://github.com/nodejs/node/blob/b3fcc245fb25539909ef1d5eaa01dbf92e168633/lib/path.js#L56
      -	var splitDeviceRe = /^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/;
      -	var result = splitDeviceRe.exec(path);
      -	var device = result[1] || '';
      -	var isUnc = Boolean(device && device.charAt(1) !== ':');
      -
      -	// UNC paths are always absolute
      -	return Boolean(result[2] || isUnc);
      -}
      -
      -module.exports = process.platform === 'win32' ? win32 : posix;
      -module.exports.posix = posix;
      -module.exports.win32 = win32;
      diff --git a/deps/npm/node_modules/path-is-absolute/license b/deps/npm/node_modules/path-is-absolute/license
      deleted file mode 100644
      index 654d0bfe943437..00000000000000
      --- a/deps/npm/node_modules/path-is-absolute/license
      +++ /dev/null
      @@ -1,21 +0,0 @@
      -The MIT License (MIT)
      -
      -Copyright (c) Sindre Sorhus  (sindresorhus.com)
      -
      -Permission is hereby granted, free of charge, to any person obtaining a copy
      -of this software and associated documentation files (the "Software"), to deal
      -in the Software without restriction, including without limitation the rights
      -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      -copies of the Software, and to permit persons to whom the Software is
      -furnished to do so, subject to the following conditions:
      -
      -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/deps/npm/node_modules/path-is-absolute/package.json b/deps/npm/node_modules/path-is-absolute/package.json
      deleted file mode 100644
      index 91196d5e9c1336..00000000000000
      --- a/deps/npm/node_modules/path-is-absolute/package.json
      +++ /dev/null
      @@ -1,43 +0,0 @@
      -{
      -  "name": "path-is-absolute",
      -  "version": "1.0.1",
      -  "description": "Node.js 0.12 path.isAbsolute() ponyfill",
      -  "license": "MIT",
      -  "repository": "sindresorhus/path-is-absolute",
      -  "author": {
      -    "name": "Sindre Sorhus",
      -    "email": "sindresorhus@gmail.com",
      -    "url": "sindresorhus.com"
      -  },
      -  "engines": {
      -    "node": ">=0.10.0"
      -  },
      -  "scripts": {
      -    "test": "xo && node test.js"
      -  },
      -  "files": [
      -    "index.js"
      -  ],
      -  "keywords": [
      -    "path",
      -    "paths",
      -    "file",
      -    "dir",
      -    "absolute",
      -    "isabsolute",
      -    "is-absolute",
      -    "built-in",
      -    "util",
      -    "utils",
      -    "core",
      -    "ponyfill",
      -    "polyfill",
      -    "shim",
      -    "is",
      -    "detect",
      -    "check"
      -  ],
      -  "devDependencies": {
      -    "xo": "^0.16.0"
      -  }
      -}
      diff --git a/deps/npm/node_modules/readable-stream/lib/stream/promises.js b/deps/npm/node_modules/readable-stream/lib/stream/promises.js
      index b85c51f47f1ce1..5d4ce15f4904b7 100644
      --- a/deps/npm/node_modules/readable-stream/lib/stream/promises.js
      +++ b/deps/npm/node_modules/readable-stream/lib/stream/promises.js
      @@ -4,7 +4,7 @@ const { ArrayPrototypePop, Promise } = require('../ours/primordials')
       const { isIterable, isNodeStream, isWebStream } = require('../internal/streams/utils')
       const { pipelineImpl: pl } = require('../internal/streams/pipeline')
       const { finished } = require('../internal/streams/end-of-stream')
      -require('stream')
      +require('../../lib/stream.js')
       function pipeline(...streams) {
         return new Promise((resolve, reject) => {
           let signal
      diff --git a/deps/npm/node_modules/readable-stream/package.json b/deps/npm/node_modules/readable-stream/package.json
      index c4f6504cc7cc66..289f3a45a634f3 100644
      --- a/deps/npm/node_modules/readable-stream/package.json
      +++ b/deps/npm/node_modules/readable-stream/package.json
      @@ -1,6 +1,6 @@
       {
         "name": "readable-stream",
      -  "version": "4.4.0",
      +  "version": "4.4.2",
         "description": "Node.js Streams, a user-land copy of the stream library from Node.js",
         "homepage": "https://github.com/nodejs/readable-stream",
         "license": "MIT",
      @@ -39,6 +39,7 @@
           "test:prepare": "node test/browser/runner-prepare.mjs",
           "test:browsers": "node test/browser/runner-browser.mjs",
           "test:bundlers": "node test/browser/runner-node.mjs",
      +    "test:readable-stream-only": "node readable-stream-test/runner-prepare.mjs",
           "coverage": "c8 -c ./c8.json tap --rcfile=./tap.yml test/parallel/test-*.js test/ours/test-*.js",
           "format": "prettier -w src lib test",
           "lint": "eslint src"
      @@ -47,7 +48,8 @@
           "abort-controller": "^3.0.0",
           "buffer": "^6.0.3",
           "events": "^3.3.0",
      -    "process": "^0.11.10"
      +    "process": "^0.11.10",
      +    "string_decoder": "^1.3.0"
         },
         "devDependencies": {
           "@babel/core": "^7.17.10",
      diff --git a/deps/npm/node_modules/rimraf/LICENSE b/deps/npm/node_modules/rimraf/LICENSE
      deleted file mode 100644
      index 19129e315fe593..00000000000000
      --- a/deps/npm/node_modules/rimraf/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) Isaac Z. Schlueter and Contributors
      -
      -Permission to use, copy, modify, and/or distribute this software for any
      -purpose with or without fee is hereby granted, provided that the above
      -copyright notice and this permission notice appear in all copies.
      -
      -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
      -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      diff --git a/deps/npm/node_modules/rimraf/README.md b/deps/npm/node_modules/rimraf/README.md
      deleted file mode 100644
      index 423b8cf854ad3e..00000000000000
      --- a/deps/npm/node_modules/rimraf/README.md
      +++ /dev/null
      @@ -1,101 +0,0 @@
      -[![Build Status](https://travis-ci.org/isaacs/rimraf.svg?branch=master)](https://travis-ci.org/isaacs/rimraf) [![Dependency Status](https://david-dm.org/isaacs/rimraf.svg)](https://david-dm.org/isaacs/rimraf) [![devDependency Status](https://david-dm.org/isaacs/rimraf/dev-status.svg)](https://david-dm.org/isaacs/rimraf#info=devDependencies)
      -
      -The [UNIX command](http://en.wikipedia.org/wiki/Rm_(Unix)) `rm -rf` for node.
      -
      -Install with `npm install rimraf`, or just drop rimraf.js somewhere.
      -
      -## API
      -
      -`rimraf(f, [opts], callback)`
      -
      -The first parameter will be interpreted as a globbing pattern for files. If you
      -want to disable globbing you can do so with `opts.disableGlob` (defaults to
      -`false`). This might be handy, for instance, if you have filenames that contain
      -globbing wildcard characters.
      -
      -The callback will be called with an error if there is one.  Certain
      -errors are handled for you:
      -
      -* Windows: `EBUSY` and `ENOTEMPTY` - rimraf will back off a maximum of
      -  `opts.maxBusyTries` times before giving up, adding 100ms of wait
      -  between each attempt.  The default `maxBusyTries` is 3.
      -* `ENOENT` - If the file doesn't exist, rimraf will return
      -  successfully, since your desired outcome is already the case.
      -* `EMFILE` - Since `readdir` requires opening a file descriptor, it's
      -  possible to hit `EMFILE` if too many file descriptors are in use.
      -  In the sync case, there's nothing to be done for this.  But in the
      -  async case, rimraf will gradually back off with timeouts up to
      -  `opts.emfileWait` ms, which defaults to 1000.
      -
      -## options
      -
      -* unlink, chmod, stat, lstat, rmdir, readdir,
      -  unlinkSync, chmodSync, statSync, lstatSync, rmdirSync, readdirSync
      -
      -    In order to use a custom file system library, you can override
      -    specific fs functions on the options object.
      -
      -    If any of these functions are present on the options object, then
      -    the supplied function will be used instead of the default fs
      -    method.
      -
      -    Sync methods are only relevant for `rimraf.sync()`, of course.
      -
      -    For example:
      -
      -    ```javascript
      -    var myCustomFS = require('some-custom-fs')
      -
      -    rimraf('some-thing', myCustomFS, callback)
      -    ```
      -
      -* maxBusyTries
      -
      -    If an `EBUSY`, `ENOTEMPTY`, or `EPERM` error code is encountered
      -    on Windows systems, then rimraf will retry with a linear backoff
      -    wait of 100ms longer on each try.  The default maxBusyTries is 3.
      -
      -    Only relevant for async usage.
      -
      -* emfileWait
      -
      -    If an `EMFILE` error is encountered, then rimraf will retry
      -    repeatedly with a linear backoff of 1ms longer on each try, until
      -    the timeout counter hits this max.  The default limit is 1000.
      -
      -    If you repeatedly encounter `EMFILE` errors, then consider using
      -    [graceful-fs](http://npm.im/graceful-fs) in your program.
      -
      -    Only relevant for async usage.
      -
      -* glob
      -
      -    Set to `false` to disable [glob](http://npm.im/glob) pattern
      -    matching.
      -
      -    Set to an object to pass options to the glob module.  The default
      -    glob options are `{ nosort: true, silent: true }`.
      -
      -    Glob version 6 is used in this module.
      -
      -    Relevant for both sync and async usage.
      -
      -* disableGlob
      -
      -    Set to any non-falsey value to disable globbing entirely.
      -    (Equivalent to setting `glob: false`.)
      -
      -## rimraf.sync
      -
      -It can remove stuff synchronously, too.  But that's not so good.  Use
      -the async API.  It's better.
      -
      -## CLI
      -
      -If installed with `npm install rimraf -g` it can be used as a global
      -command `rimraf  [ ...]` which is useful for cross platform support.
      -
      -## mkdirp
      -
      -If you need to create a directory recursively, check out
      -[mkdirp](https://github.com/substack/node-mkdirp).
      diff --git a/deps/npm/node_modules/rimraf/bin.js b/deps/npm/node_modules/rimraf/bin.js
      deleted file mode 100755
      index 023814cc93e849..00000000000000
      --- a/deps/npm/node_modules/rimraf/bin.js
      +++ /dev/null
      @@ -1,68 +0,0 @@
      -#!/usr/bin/env node
      -
      -const rimraf = require('./')
      -
      -const path = require('path')
      -
      -const isRoot = arg => /^(\/|[a-zA-Z]:\\)$/.test(path.resolve(arg))
      -const filterOutRoot = arg => {
      -  const ok = preserveRoot === false || !isRoot(arg)
      -  if (!ok) {
      -    console.error(`refusing to remove ${arg}`)
      -    console.error('Set --no-preserve-root to allow this')
      -  }
      -  return ok
      -}
      -
      -let help = false
      -let dashdash = false
      -let noglob = false
      -let preserveRoot = true
      -const args = process.argv.slice(2).filter(arg => {
      -  if (dashdash)
      -    return !!arg
      -  else if (arg === '--')
      -    dashdash = true
      -  else if (arg === '--no-glob' || arg === '-G')
      -    noglob = true
      -  else if (arg === '--glob' || arg === '-g')
      -    noglob = false
      -  else if (arg.match(/^(-+|\/)(h(elp)?|\?)$/))
      -    help = true
      -  else if (arg === '--preserve-root')
      -    preserveRoot = true
      -  else if (arg === '--no-preserve-root')
      -    preserveRoot = false
      -  else
      -    return !!arg
      -}).filter(arg => !preserveRoot || filterOutRoot(arg))
      -
      -const go = n => {
      -  if (n >= args.length)
      -    return
      -  const options = noglob ? { glob: false } : {}
      -  rimraf(args[n], options, er => {
      -    if (er)
      -      throw er
      -    go(n+1)
      -  })
      -}
      -
      -if (help || args.length === 0) {
      -  // If they didn't ask for help, then this is not a "success"
      -  const log = help ? console.log : console.error
      -  log('Usage: rimraf  [ ...]')
      -  log('')
      -  log('  Deletes all files and folders at "path" recursively.')
      -  log('')
      -  log('Options:')
      -  log('')
      -  log('  -h, --help          Display this usage info')
      -  log('  -G, --no-glob       Do not expand glob patterns in arguments')
      -  log('  -g, --glob          Expand glob patterns in arguments (default)')
      -  log('  --preserve-root     Do not remove \'/\' (default)')
      -  log('  --no-preserve-root  Do not treat \'/\' specially')
      -  log('  --                  Stop parsing flags')
      -  process.exit(help ? 0 : 1)
      -} else
      -  go(0)
      diff --git a/deps/npm/node_modules/rimraf/node_modules/brace-expansion/LICENSE b/deps/npm/node_modules/rimraf/node_modules/brace-expansion/LICENSE
      deleted file mode 100644
      index de3226673c3874..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/brace-expansion/LICENSE
      +++ /dev/null
      @@ -1,21 +0,0 @@
      -MIT License
      -
      -Copyright (c) 2013 Julian Gruber 
      -
      -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/deps/npm/node_modules/rimraf/node_modules/brace-expansion/index.js b/deps/npm/node_modules/rimraf/node_modules/brace-expansion/index.js
      deleted file mode 100644
      index 2b6f4f85c951fc..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/brace-expansion/index.js
      +++ /dev/null
      @@ -1,200 +0,0 @@
      -var concatMap = require('concat-map');
      -var balanced = require('balanced-match');
      -
      -module.exports = expandTop;
      -
      -var escSlash = '\0SLASH'+Math.random()+'\0';
      -var escOpen = '\0OPEN'+Math.random()+'\0';
      -var escClose = '\0CLOSE'+Math.random()+'\0';
      -var escComma = '\0COMMA'+Math.random()+'\0';
      -var escPeriod = '\0PERIOD'+Math.random()+'\0';
      -
      -function numeric(str) {
      -  return parseInt(str, 10) == str
      -    ? parseInt(str, 10)
      -    : str.charCodeAt(0);
      -}
      -
      -function escapeBraces(str) {
      -  return str.split('\\\\').join(escSlash)
      -            .split('\\{').join(escOpen)
      -            .split('\\}').join(escClose)
      -            .split('\\,').join(escComma)
      -            .split('\\.').join(escPeriod);
      -}
      -
      -function unescapeBraces(str) {
      -  return str.split(escSlash).join('\\')
      -            .split(escOpen).join('{')
      -            .split(escClose).join('}')
      -            .split(escComma).join(',')
      -            .split(escPeriod).join('.');
      -}
      -
      -
      -// Basically just str.split(","), but handling cases
      -// where we have nested braced sections, which should be
      -// treated as individual members, like {a,{b,c},d}
      -function parseCommaParts(str) {
      -  if (!str)
      -    return [''];
      -
      -  var parts = [];
      -  var m = balanced('{', '}', str);
      -
      -  if (!m)
      -    return str.split(',');
      -
      -  var pre = m.pre;
      -  var body = m.body;
      -  var post = m.post;
      -  var p = pre.split(',');
      -
      -  p[p.length-1] += '{' + body + '}';
      -  var postParts = parseCommaParts(post);
      -  if (post.length) {
      -    p[p.length-1] += postParts.shift();
      -    p.push.apply(p, postParts);
      -  }
      -
      -  parts.push.apply(parts, p);
      -
      -  return parts;
      -}
      -
      -function expandTop(str) {
      -  if (!str)
      -    return [];
      -
      -  // I don't know why Bash 4.3 does this, but it does.
      -  // Anything starting with {} will have the first two bytes preserved
      -  // but *only* at the top level, so {},a}b will not expand to anything,
      -  // but a{},b}c will be expanded to [a}c,abc].
      -  // One could argue that this is a bug in Bash, but since the goal of
      -  // this module is to match Bash's rules, we escape a leading {}
      -  if (str.substr(0, 2) === '{}') {
      -    str = '\\{\\}' + str.substr(2);
      -  }
      -
      -  return expand(escapeBraces(str), true).map(unescapeBraces);
      -}
      -
      -function identity(e) {
      -  return e;
      -}
      -
      -function embrace(str) {
      -  return '{' + str + '}';
      -}
      -function isPadded(el) {
      -  return /^-?0\d/.test(el);
      -}
      -
      -function lte(i, y) {
      -  return i <= y;
      -}
      -function gte(i, y) {
      -  return i >= y;
      -}
      -
      -function expand(str, isTop) {
      -  var expansions = [];
      -
      -  var m = balanced('{', '}', str);
      -  if (!m || /\$$/.test(m.pre)) return [str];
      -
      -  var isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body);
      -  var isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body);
      -  var isSequence = isNumericSequence || isAlphaSequence;
      -  var isOptions = m.body.indexOf(',') >= 0;
      -  if (!isSequence && !isOptions) {
      -    // {a},b}
      -    if (m.post.match(/,.*\}/)) {
      -      str = m.pre + '{' + m.body + escClose + m.post;
      -      return expand(str);
      -    }
      -    return [str];
      -  }
      -
      -  var n;
      -  if (isSequence) {
      -    n = m.body.split(/\.\./);
      -  } else {
      -    n = parseCommaParts(m.body);
      -    if (n.length === 1) {
      -      // x{{a,b}}y ==> x{a}y x{b}y
      -      n = expand(n[0], false).map(embrace);
      -      if (n.length === 1) {
      -        var post = m.post.length
      -          ? expand(m.post, false)
      -          : [''];
      -        return post.map(function(p) {
      -          return m.pre + n[0] + p;
      -        });
      -      }
      -    }
      -  }
      -
      -  // at this point, n is the parts, and we know it's not a comma set
      -  // with a single entry.
      -
      -  // no need to expand pre, since it is guaranteed to be free of brace-sets
      -  var pre = m.pre;
      -  var post = m.post.length
      -    ? expand(m.post, false)
      -    : [''];
      -
      -  var N;
      -
      -  if (isSequence) {
      -    var x = numeric(n[0]);
      -    var y = numeric(n[1]);
      -    var width = Math.max(n[0].length, n[1].length)
      -    var incr = n.length == 3
      -      ? Math.abs(numeric(n[2]))
      -      : 1;
      -    var test = lte;
      -    var reverse = y < x;
      -    if (reverse) {
      -      incr *= -1;
      -      test = gte;
      -    }
      -    var pad = n.some(isPadded);
      -
      -    N = [];
      -
      -    for (var i = x; test(i, y); i += incr) {
      -      var c;
      -      if (isAlphaSequence) {
      -        c = String.fromCharCode(i);
      -        if (c === '\\')
      -          c = '';
      -      } else {
      -        c = String(i);
      -        if (pad) {
      -          var need = width - c.length;
      -          if (need > 0) {
      -            var z = new Array(need + 1).join('0');
      -            if (i < 0)
      -              c = '-' + z + c.slice(1);
      -            else
      -              c = z + c;
      -          }
      -        }
      -      }
      -      N.push(c);
      -    }
      -  } else {
      -    N = concatMap(n, function(el) { return expand(el, false) });
      -  }
      -
      -  for (var j = 0; j < N.length; j++) {
      -    for (var k = 0; k < post.length; k++) {
      -      var expansion = pre + N[j] + post[k];
      -      if (!isTop || isSequence || expansion)
      -        expansions.push(expansion);
      -    }
      -  }
      -
      -  return expansions;
      -}
      diff --git a/deps/npm/node_modules/rimraf/node_modules/brace-expansion/package.json b/deps/npm/node_modules/rimraf/node_modules/brace-expansion/package.json
      deleted file mode 100644
      index a18faa8fd67b82..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/brace-expansion/package.json
      +++ /dev/null
      @@ -1,47 +0,0 @@
      -{
      -  "name": "brace-expansion",
      -  "description": "Brace expansion as known from sh/bash",
      -  "version": "1.1.11",
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/juliangruber/brace-expansion.git"
      -  },
      -  "homepage": "https://github.com/juliangruber/brace-expansion",
      -  "main": "index.js",
      -  "scripts": {
      -    "test": "tape test/*.js",
      -    "gentest": "bash test/generate.sh",
      -    "bench": "matcha test/perf/bench.js"
      -  },
      -  "dependencies": {
      -    "balanced-match": "^1.0.0",
      -    "concat-map": "0.0.1"
      -  },
      -  "devDependencies": {
      -    "matcha": "^0.7.0",
      -    "tape": "^4.6.0"
      -  },
      -  "keywords": [],
      -  "author": {
      -    "name": "Julian Gruber",
      -    "email": "mail@juliangruber.com",
      -    "url": "http://juliangruber.com"
      -  },
      -  "license": "MIT",
      -  "testling": {
      -    "files": "test/*.js",
      -    "browsers": [
      -      "ie/8..latest",
      -      "firefox/20..latest",
      -      "firefox/nightly",
      -      "chrome/25..latest",
      -      "chrome/canary",
      -      "opera/12..latest",
      -      "opera/next",
      -      "safari/5.1..latest",
      -      "ipad/6.0..latest",
      -      "iphone/6.0..latest",
      -      "android-browser/4.2..latest"
      -    ]
      -  }
      -}
      diff --git a/deps/npm/node_modules/rimraf/node_modules/glob/LICENSE b/deps/npm/node_modules/rimraf/node_modules/glob/LICENSE
      deleted file mode 100644
      index 42ca266df1d523..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/glob/LICENSE
      +++ /dev/null
      @@ -1,21 +0,0 @@
      -The ISC License
      -
      -Copyright (c) Isaac Z. Schlueter and Contributors
      -
      -Permission to use, copy, modify, and/or distribute this software for any
      -purpose with or without fee is hereby granted, provided that the above
      -copyright notice and this permission notice appear in all copies.
      -
      -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
      -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      -
      -## Glob Logo
      -
      -Glob's logo created by Tanya Brassie , licensed
      -under a Creative Commons Attribution-ShareAlike 4.0 International License
      -https://creativecommons.org/licenses/by-sa/4.0/
      diff --git a/deps/npm/node_modules/rimraf/node_modules/glob/common.js b/deps/npm/node_modules/rimraf/node_modules/glob/common.js
      deleted file mode 100644
      index 424c46e1dab1be..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/glob/common.js
      +++ /dev/null
      @@ -1,238 +0,0 @@
      -exports.setopts = setopts
      -exports.ownProp = ownProp
      -exports.makeAbs = makeAbs
      -exports.finish = finish
      -exports.mark = mark
      -exports.isIgnored = isIgnored
      -exports.childrenIgnored = childrenIgnored
      -
      -function ownProp (obj, field) {
      -  return Object.prototype.hasOwnProperty.call(obj, field)
      -}
      -
      -var fs = require("fs")
      -var path = require("path")
      -var minimatch = require("minimatch")
      -var isAbsolute = require("path-is-absolute")
      -var Minimatch = minimatch.Minimatch
      -
      -function alphasort (a, b) {
      -  return a.localeCompare(b, 'en')
      -}
      -
      -function setupIgnores (self, options) {
      -  self.ignore = options.ignore || []
      -
      -  if (!Array.isArray(self.ignore))
      -    self.ignore = [self.ignore]
      -
      -  if (self.ignore.length) {
      -    self.ignore = self.ignore.map(ignoreMap)
      -  }
      -}
      -
      -// ignore patterns are always in dot:true mode.
      -function ignoreMap (pattern) {
      -  var gmatcher = null
      -  if (pattern.slice(-3) === '/**') {
      -    var gpattern = pattern.replace(/(\/\*\*)+$/, '')
      -    gmatcher = new Minimatch(gpattern, { dot: true })
      -  }
      -
      -  return {
      -    matcher: new Minimatch(pattern, { dot: true }),
      -    gmatcher: gmatcher
      -  }
      -}
      -
      -function setopts (self, pattern, options) {
      -  if (!options)
      -    options = {}
      -
      -  // base-matching: just use globstar for that.
      -  if (options.matchBase && -1 === pattern.indexOf("/")) {
      -    if (options.noglobstar) {
      -      throw new Error("base matching requires globstar")
      -    }
      -    pattern = "**/" + pattern
      -  }
      -
      -  self.silent = !!options.silent
      -  self.pattern = pattern
      -  self.strict = options.strict !== false
      -  self.realpath = !!options.realpath
      -  self.realpathCache = options.realpathCache || Object.create(null)
      -  self.follow = !!options.follow
      -  self.dot = !!options.dot
      -  self.mark = !!options.mark
      -  self.nodir = !!options.nodir
      -  if (self.nodir)
      -    self.mark = true
      -  self.sync = !!options.sync
      -  self.nounique = !!options.nounique
      -  self.nonull = !!options.nonull
      -  self.nosort = !!options.nosort
      -  self.nocase = !!options.nocase
      -  self.stat = !!options.stat
      -  self.noprocess = !!options.noprocess
      -  self.absolute = !!options.absolute
      -  self.fs = options.fs || fs
      -
      -  self.maxLength = options.maxLength || Infinity
      -  self.cache = options.cache || Object.create(null)
      -  self.statCache = options.statCache || Object.create(null)
      -  self.symlinks = options.symlinks || Object.create(null)
      -
      -  setupIgnores(self, options)
      -
      -  self.changedCwd = false
      -  var cwd = process.cwd()
      -  if (!ownProp(options, "cwd"))
      -    self.cwd = cwd
      -  else {
      -    self.cwd = path.resolve(options.cwd)
      -    self.changedCwd = self.cwd !== cwd
      -  }
      -
      -  self.root = options.root || path.resolve(self.cwd, "/")
      -  self.root = path.resolve(self.root)
      -  if (process.platform === "win32")
      -    self.root = self.root.replace(/\\/g, "/")
      -
      -  // TODO: is an absolute `cwd` supposed to be resolved against `root`?
      -  // e.g. { cwd: '/test', root: __dirname } === path.join(__dirname, '/test')
      -  self.cwdAbs = isAbsolute(self.cwd) ? self.cwd : makeAbs(self, self.cwd)
      -  if (process.platform === "win32")
      -    self.cwdAbs = self.cwdAbs.replace(/\\/g, "/")
      -  self.nomount = !!options.nomount
      -
      -  // disable comments and negation in Minimatch.
      -  // Note that they are not supported in Glob itself anyway.
      -  options.nonegate = true
      -  options.nocomment = true
      -  // always treat \ in patterns as escapes, not path separators
      -  options.allowWindowsEscape = false
      -
      -  self.minimatch = new Minimatch(pattern, options)
      -  self.options = self.minimatch.options
      -}
      -
      -function finish (self) {
      -  var nou = self.nounique
      -  var all = nou ? [] : Object.create(null)
      -
      -  for (var i = 0, l = self.matches.length; i < l; i ++) {
      -    var matches = self.matches[i]
      -    if (!matches || Object.keys(matches).length === 0) {
      -      if (self.nonull) {
      -        // do like the shell, and spit out the literal glob
      -        var literal = self.minimatch.globSet[i]
      -        if (nou)
      -          all.push(literal)
      -        else
      -          all[literal] = true
      -      }
      -    } else {
      -      // had matches
      -      var m = Object.keys(matches)
      -      if (nou)
      -        all.push.apply(all, m)
      -      else
      -        m.forEach(function (m) {
      -          all[m] = true
      -        })
      -    }
      -  }
      -
      -  if (!nou)
      -    all = Object.keys(all)
      -
      -  if (!self.nosort)
      -    all = all.sort(alphasort)
      -
      -  // at *some* point we statted all of these
      -  if (self.mark) {
      -    for (var i = 0; i < all.length; i++) {
      -      all[i] = self._mark(all[i])
      -    }
      -    if (self.nodir) {
      -      all = all.filter(function (e) {
      -        var notDir = !(/\/$/.test(e))
      -        var c = self.cache[e] || self.cache[makeAbs(self, e)]
      -        if (notDir && c)
      -          notDir = c !== 'DIR' && !Array.isArray(c)
      -        return notDir
      -      })
      -    }
      -  }
      -
      -  if (self.ignore.length)
      -    all = all.filter(function(m) {
      -      return !isIgnored(self, m)
      -    })
      -
      -  self.found = all
      -}
      -
      -function mark (self, p) {
      -  var abs = makeAbs(self, p)
      -  var c = self.cache[abs]
      -  var m = p
      -  if (c) {
      -    var isDir = c === 'DIR' || Array.isArray(c)
      -    var slash = p.slice(-1) === '/'
      -
      -    if (isDir && !slash)
      -      m += '/'
      -    else if (!isDir && slash)
      -      m = m.slice(0, -1)
      -
      -    if (m !== p) {
      -      var mabs = makeAbs(self, m)
      -      self.statCache[mabs] = self.statCache[abs]
      -      self.cache[mabs] = self.cache[abs]
      -    }
      -  }
      -
      -  return m
      -}
      -
      -// lotta situps...
      -function makeAbs (self, f) {
      -  var abs = f
      -  if (f.charAt(0) === '/') {
      -    abs = path.join(self.root, f)
      -  } else if (isAbsolute(f) || f === '') {
      -    abs = f
      -  } else if (self.changedCwd) {
      -    abs = path.resolve(self.cwd, f)
      -  } else {
      -    abs = path.resolve(f)
      -  }
      -
      -  if (process.platform === 'win32')
      -    abs = abs.replace(/\\/g, '/')
      -
      -  return abs
      -}
      -
      -
      -// Return true, if pattern ends with globstar '**', for the accompanying parent directory.
      -// Ex:- If node_modules/** is the pattern, add 'node_modules' to ignore list along with it's contents
      -function isIgnored (self, path) {
      -  if (!self.ignore.length)
      -    return false
      -
      -  return self.ignore.some(function(item) {
      -    return item.matcher.match(path) || !!(item.gmatcher && item.gmatcher.match(path))
      -  })
      -}
      -
      -function childrenIgnored (self, path) {
      -  if (!self.ignore.length)
      -    return false
      -
      -  return self.ignore.some(function(item) {
      -    return !!(item.gmatcher && item.gmatcher.match(path))
      -  })
      -}
      diff --git a/deps/npm/node_modules/rimraf/node_modules/glob/glob.js b/deps/npm/node_modules/rimraf/node_modules/glob/glob.js
      deleted file mode 100644
      index 37a4d7e60775a3..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/glob/glob.js
      +++ /dev/null
      @@ -1,790 +0,0 @@
      -// Approach:
      -//
      -// 1. Get the minimatch set
      -// 2. For each pattern in the set, PROCESS(pattern, false)
      -// 3. Store matches per-set, then uniq them
      -//
      -// PROCESS(pattern, inGlobStar)
      -// Get the first [n] items from pattern that are all strings
      -// Join these together.  This is PREFIX.
      -//   If there is no more remaining, then stat(PREFIX) and
      -//   add to matches if it succeeds.  END.
      -//
      -// If inGlobStar and PREFIX is symlink and points to dir
      -//   set ENTRIES = []
      -// else readdir(PREFIX) as ENTRIES
      -//   If fail, END
      -//
      -// with ENTRIES
      -//   If pattern[n] is GLOBSTAR
      -//     // handle the case where the globstar match is empty
      -//     // by pruning it out, and testing the resulting pattern
      -//     PROCESS(pattern[0..n] + pattern[n+1 .. $], false)
      -//     // handle other cases.
      -//     for ENTRY in ENTRIES (not dotfiles)
      -//       // attach globstar + tail onto the entry
      -//       // Mark that this entry is a globstar match
      -//       PROCESS(pattern[0..n] + ENTRY + pattern[n .. $], true)
      -//
      -//   else // not globstar
      -//     for ENTRY in ENTRIES (not dotfiles, unless pattern[n] is dot)
      -//       Test ENTRY against pattern[n]
      -//       If fails, continue
      -//       If passes, PROCESS(pattern[0..n] + item + pattern[n+1 .. $])
      -//
      -// Caveat:
      -//   Cache all stats and readdirs results to minimize syscall.  Since all
      -//   we ever care about is existence and directory-ness, we can just keep
      -//   `true` for files, and [children,...] for directories, or `false` for
      -//   things that don't exist.
      -
      -module.exports = glob
      -
      -var rp = require('fs.realpath')
      -var minimatch = require('minimatch')
      -var Minimatch = minimatch.Minimatch
      -var inherits = require('inherits')
      -var EE = require('events').EventEmitter
      -var path = require('path')
      -var assert = require('assert')
      -var isAbsolute = require('path-is-absolute')
      -var globSync = require('./sync.js')
      -var common = require('./common.js')
      -var setopts = common.setopts
      -var ownProp = common.ownProp
      -var inflight = require('inflight')
      -var util = require('util')
      -var childrenIgnored = common.childrenIgnored
      -var isIgnored = common.isIgnored
      -
      -var once = require('once')
      -
      -function glob (pattern, options, cb) {
      -  if (typeof options === 'function') cb = options, options = {}
      -  if (!options) options = {}
      -
      -  if (options.sync) {
      -    if (cb)
      -      throw new TypeError('callback provided to sync glob')
      -    return globSync(pattern, options)
      -  }
      -
      -  return new Glob(pattern, options, cb)
      -}
      -
      -glob.sync = globSync
      -var GlobSync = glob.GlobSync = globSync.GlobSync
      -
      -// old api surface
      -glob.glob = glob
      -
      -function extend (origin, add) {
      -  if (add === null || typeof add !== 'object') {
      -    return origin
      -  }
      -
      -  var keys = Object.keys(add)
      -  var i = keys.length
      -  while (i--) {
      -    origin[keys[i]] = add[keys[i]]
      -  }
      -  return origin
      -}
      -
      -glob.hasMagic = function (pattern, options_) {
      -  var options = extend({}, options_)
      -  options.noprocess = true
      -
      -  var g = new Glob(pattern, options)
      -  var set = g.minimatch.set
      -
      -  if (!pattern)
      -    return false
      -
      -  if (set.length > 1)
      -    return true
      -
      -  for (var j = 0; j < set[0].length; j++) {
      -    if (typeof set[0][j] !== 'string')
      -      return true
      -  }
      -
      -  return false
      -}
      -
      -glob.Glob = Glob
      -inherits(Glob, EE)
      -function Glob (pattern, options, cb) {
      -  if (typeof options === 'function') {
      -    cb = options
      -    options = null
      -  }
      -
      -  if (options && options.sync) {
      -    if (cb)
      -      throw new TypeError('callback provided to sync glob')
      -    return new GlobSync(pattern, options)
      -  }
      -
      -  if (!(this instanceof Glob))
      -    return new Glob(pattern, options, cb)
      -
      -  setopts(this, pattern, options)
      -  this._didRealPath = false
      -
      -  // process each pattern in the minimatch set
      -  var n = this.minimatch.set.length
      -
      -  // The matches are stored as {: true,...} so that
      -  // duplicates are automagically pruned.
      -  // Later, we do an Object.keys() on these.
      -  // Keep them as a list so we can fill in when nonull is set.
      -  this.matches = new Array(n)
      -
      -  if (typeof cb === 'function') {
      -    cb = once(cb)
      -    this.on('error', cb)
      -    this.on('end', function (matches) {
      -      cb(null, matches)
      -    })
      -  }
      -
      -  var self = this
      -  this._processing = 0
      -
      -  this._emitQueue = []
      -  this._processQueue = []
      -  this.paused = false
      -
      -  if (this.noprocess)
      -    return this
      -
      -  if (n === 0)
      -    return done()
      -
      -  var sync = true
      -  for (var i = 0; i < n; i ++) {
      -    this._process(this.minimatch.set[i], i, false, done)
      -  }
      -  sync = false
      -
      -  function done () {
      -    --self._processing
      -    if (self._processing <= 0) {
      -      if (sync) {
      -        process.nextTick(function () {
      -          self._finish()
      -        })
      -      } else {
      -        self._finish()
      -      }
      -    }
      -  }
      -}
      -
      -Glob.prototype._finish = function () {
      -  assert(this instanceof Glob)
      -  if (this.aborted)
      -    return
      -
      -  if (this.realpath && !this._didRealpath)
      -    return this._realpath()
      -
      -  common.finish(this)
      -  this.emit('end', this.found)
      -}
      -
      -Glob.prototype._realpath = function () {
      -  if (this._didRealpath)
      -    return
      -
      -  this._didRealpath = true
      -
      -  var n = this.matches.length
      -  if (n === 0)
      -    return this._finish()
      -
      -  var self = this
      -  for (var i = 0; i < this.matches.length; i++)
      -    this._realpathSet(i, next)
      -
      -  function next () {
      -    if (--n === 0)
      -      self._finish()
      -  }
      -}
      -
      -Glob.prototype._realpathSet = function (index, cb) {
      -  var matchset = this.matches[index]
      -  if (!matchset)
      -    return cb()
      -
      -  var found = Object.keys(matchset)
      -  var self = this
      -  var n = found.length
      -
      -  if (n === 0)
      -    return cb()
      -
      -  var set = this.matches[index] = Object.create(null)
      -  found.forEach(function (p, i) {
      -    // If there's a problem with the stat, then it means that
      -    // one or more of the links in the realpath couldn't be
      -    // resolved.  just return the abs value in that case.
      -    p = self._makeAbs(p)
      -    rp.realpath(p, self.realpathCache, function (er, real) {
      -      if (!er)
      -        set[real] = true
      -      else if (er.syscall === 'stat')
      -        set[p] = true
      -      else
      -        self.emit('error', er) // srsly wtf right here
      -
      -      if (--n === 0) {
      -        self.matches[index] = set
      -        cb()
      -      }
      -    })
      -  })
      -}
      -
      -Glob.prototype._mark = function (p) {
      -  return common.mark(this, p)
      -}
      -
      -Glob.prototype._makeAbs = function (f) {
      -  return common.makeAbs(this, f)
      -}
      -
      -Glob.prototype.abort = function () {
      -  this.aborted = true
      -  this.emit('abort')
      -}
      -
      -Glob.prototype.pause = function () {
      -  if (!this.paused) {
      -    this.paused = true
      -    this.emit('pause')
      -  }
      -}
      -
      -Glob.prototype.resume = function () {
      -  if (this.paused) {
      -    this.emit('resume')
      -    this.paused = false
      -    if (this._emitQueue.length) {
      -      var eq = this._emitQueue.slice(0)
      -      this._emitQueue.length = 0
      -      for (var i = 0; i < eq.length; i ++) {
      -        var e = eq[i]
      -        this._emitMatch(e[0], e[1])
      -      }
      -    }
      -    if (this._processQueue.length) {
      -      var pq = this._processQueue.slice(0)
      -      this._processQueue.length = 0
      -      for (var i = 0; i < pq.length; i ++) {
      -        var p = pq[i]
      -        this._processing--
      -        this._process(p[0], p[1], p[2], p[3])
      -      }
      -    }
      -  }
      -}
      -
      -Glob.prototype._process = function (pattern, index, inGlobStar, cb) {
      -  assert(this instanceof Glob)
      -  assert(typeof cb === 'function')
      -
      -  if (this.aborted)
      -    return
      -
      -  this._processing++
      -  if (this.paused) {
      -    this._processQueue.push([pattern, index, inGlobStar, cb])
      -    return
      -  }
      -
      -  //console.error('PROCESS %d', this._processing, pattern)
      -
      -  // Get the first [n] parts of pattern that are all strings.
      -  var n = 0
      -  while (typeof pattern[n] === 'string') {
      -    n ++
      -  }
      -  // now n is the index of the first one that is *not* a string.
      -
      -  // see if there's anything else
      -  var prefix
      -  switch (n) {
      -    // if not, then this is rather simple
      -    case pattern.length:
      -      this._processSimple(pattern.join('/'), index, cb)
      -      return
      -
      -    case 0:
      -      // pattern *starts* with some non-trivial item.
      -      // going to readdir(cwd), but not include the prefix in matches.
      -      prefix = null
      -      break
      -
      -    default:
      -      // pattern has some string bits in the front.
      -      // whatever it starts with, whether that's 'absolute' like /foo/bar,
      -      // or 'relative' like '../baz'
      -      prefix = pattern.slice(0, n).join('/')
      -      break
      -  }
      -
      -  var remain = pattern.slice(n)
      -
      -  // get the list of entries.
      -  var read
      -  if (prefix === null)
      -    read = '.'
      -  else if (isAbsolute(prefix) ||
      -      isAbsolute(pattern.map(function (p) {
      -        return typeof p === 'string' ? p : '[*]'
      -      }).join('/'))) {
      -    if (!prefix || !isAbsolute(prefix))
      -      prefix = '/' + prefix
      -    read = prefix
      -  } else
      -    read = prefix
      -
      -  var abs = this._makeAbs(read)
      -
      -  //if ignored, skip _processing
      -  if (childrenIgnored(this, read))
      -    return cb()
      -
      -  var isGlobStar = remain[0] === minimatch.GLOBSTAR
      -  if (isGlobStar)
      -    this._processGlobStar(prefix, read, abs, remain, index, inGlobStar, cb)
      -  else
      -    this._processReaddir(prefix, read, abs, remain, index, inGlobStar, cb)
      -}
      -
      -Glob.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar, cb) {
      -  var self = this
      -  this._readdir(abs, inGlobStar, function (er, entries) {
      -    return self._processReaddir2(prefix, read, abs, remain, index, inGlobStar, entries, cb)
      -  })
      -}
      -
      -Glob.prototype._processReaddir2 = function (prefix, read, abs, remain, index, inGlobStar, entries, cb) {
      -
      -  // if the abs isn't a dir, then nothing can match!
      -  if (!entries)
      -    return cb()
      -
      -  // It will only match dot entries if it starts with a dot, or if
      -  // dot is set.  Stuff like @(.foo|.bar) isn't allowed.
      -  var pn = remain[0]
      -  var negate = !!this.minimatch.negate
      -  var rawGlob = pn._glob
      -  var dotOk = this.dot || rawGlob.charAt(0) === '.'
      -
      -  var matchedEntries = []
      -  for (var i = 0; i < entries.length; i++) {
      -    var e = entries[i]
      -    if (e.charAt(0) !== '.' || dotOk) {
      -      var m
      -      if (negate && !prefix) {
      -        m = !e.match(pn)
      -      } else {
      -        m = e.match(pn)
      -      }
      -      if (m)
      -        matchedEntries.push(e)
      -    }
      -  }
      -
      -  //console.error('prd2', prefix, entries, remain[0]._glob, matchedEntries)
      -
      -  var len = matchedEntries.length
      -  // If there are no matched entries, then nothing matches.
      -  if (len === 0)
      -    return cb()
      -
      -  // if this is the last remaining pattern bit, then no need for
      -  // an additional stat *unless* the user has specified mark or
      -  // stat explicitly.  We know they exist, since readdir returned
      -  // them.
      -
      -  if (remain.length === 1 && !this.mark && !this.stat) {
      -    if (!this.matches[index])
      -      this.matches[index] = Object.create(null)
      -
      -    for (var i = 0; i < len; i ++) {
      -      var e = matchedEntries[i]
      -      if (prefix) {
      -        if (prefix !== '/')
      -          e = prefix + '/' + e
      -        else
      -          e = prefix + e
      -      }
      -
      -      if (e.charAt(0) === '/' && !this.nomount) {
      -        e = path.join(this.root, e)
      -      }
      -      this._emitMatch(index, e)
      -    }
      -    // This was the last one, and no stats were needed
      -    return cb()
      -  }
      -
      -  // now test all matched entries as stand-ins for that part
      -  // of the pattern.
      -  remain.shift()
      -  for (var i = 0; i < len; i ++) {
      -    var e = matchedEntries[i]
      -    var newPattern
      -    if (prefix) {
      -      if (prefix !== '/')
      -        e = prefix + '/' + e
      -      else
      -        e = prefix + e
      -    }
      -    this._process([e].concat(remain), index, inGlobStar, cb)
      -  }
      -  cb()
      -}
      -
      -Glob.prototype._emitMatch = function (index, e) {
      -  if (this.aborted)
      -    return
      -
      -  if (isIgnored(this, e))
      -    return
      -
      -  if (this.paused) {
      -    this._emitQueue.push([index, e])
      -    return
      -  }
      -
      -  var abs = isAbsolute(e) ? e : this._makeAbs(e)
      -
      -  if (this.mark)
      -    e = this._mark(e)
      -
      -  if (this.absolute)
      -    e = abs
      -
      -  if (this.matches[index][e])
      -    return
      -
      -  if (this.nodir) {
      -    var c = this.cache[abs]
      -    if (c === 'DIR' || Array.isArray(c))
      -      return
      -  }
      -
      -  this.matches[index][e] = true
      -
      -  var st = this.statCache[abs]
      -  if (st)
      -    this.emit('stat', e, st)
      -
      -  this.emit('match', e)
      -}
      -
      -Glob.prototype._readdirInGlobStar = function (abs, cb) {
      -  if (this.aborted)
      -    return
      -
      -  // follow all symlinked directories forever
      -  // just proceed as if this is a non-globstar situation
      -  if (this.follow)
      -    return this._readdir(abs, false, cb)
      -
      -  var lstatkey = 'lstat\0' + abs
      -  var self = this
      -  var lstatcb = inflight(lstatkey, lstatcb_)
      -
      -  if (lstatcb)
      -    self.fs.lstat(abs, lstatcb)
      -
      -  function lstatcb_ (er, lstat) {
      -    if (er && er.code === 'ENOENT')
      -      return cb()
      -
      -    var isSym = lstat && lstat.isSymbolicLink()
      -    self.symlinks[abs] = isSym
      -
      -    // If it's not a symlink or a dir, then it's definitely a regular file.
      -    // don't bother doing a readdir in that case.
      -    if (!isSym && lstat && !lstat.isDirectory()) {
      -      self.cache[abs] = 'FILE'
      -      cb()
      -    } else
      -      self._readdir(abs, false, cb)
      -  }
      -}
      -
      -Glob.prototype._readdir = function (abs, inGlobStar, cb) {
      -  if (this.aborted)
      -    return
      -
      -  cb = inflight('readdir\0'+abs+'\0'+inGlobStar, cb)
      -  if (!cb)
      -    return
      -
      -  //console.error('RD %j %j', +inGlobStar, abs)
      -  if (inGlobStar && !ownProp(this.symlinks, abs))
      -    return this._readdirInGlobStar(abs, cb)
      -
      -  if (ownProp(this.cache, abs)) {
      -    var c = this.cache[abs]
      -    if (!c || c === 'FILE')
      -      return cb()
      -
      -    if (Array.isArray(c))
      -      return cb(null, c)
      -  }
      -
      -  var self = this
      -  self.fs.readdir(abs, readdirCb(this, abs, cb))
      -}
      -
      -function readdirCb (self, abs, cb) {
      -  return function (er, entries) {
      -    if (er)
      -      self._readdirError(abs, er, cb)
      -    else
      -      self._readdirEntries(abs, entries, cb)
      -  }
      -}
      -
      -Glob.prototype._readdirEntries = function (abs, entries, cb) {
      -  if (this.aborted)
      -    return
      -
      -  // if we haven't asked to stat everything, then just
      -  // assume that everything in there exists, so we can avoid
      -  // having to stat it a second time.
      -  if (!this.mark && !this.stat) {
      -    for (var i = 0; i < entries.length; i ++) {
      -      var e = entries[i]
      -      if (abs === '/')
      -        e = abs + e
      -      else
      -        e = abs + '/' + e
      -      this.cache[e] = true
      -    }
      -  }
      -
      -  this.cache[abs] = entries
      -  return cb(null, entries)
      -}
      -
      -Glob.prototype._readdirError = function (f, er, cb) {
      -  if (this.aborted)
      -    return
      -
      -  // handle errors, and cache the information
      -  switch (er.code) {
      -    case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205
      -    case 'ENOTDIR': // totally normal. means it *does* exist.
      -      var abs = this._makeAbs(f)
      -      this.cache[abs] = 'FILE'
      -      if (abs === this.cwdAbs) {
      -        var error = new Error(er.code + ' invalid cwd ' + this.cwd)
      -        error.path = this.cwd
      -        error.code = er.code
      -        this.emit('error', error)
      -        this.abort()
      -      }
      -      break
      -
      -    case 'ENOENT': // not terribly unusual
      -    case 'ELOOP':
      -    case 'ENAMETOOLONG':
      -    case 'UNKNOWN':
      -      this.cache[this._makeAbs(f)] = false
      -      break
      -
      -    default: // some unusual error.  Treat as failure.
      -      this.cache[this._makeAbs(f)] = false
      -      if (this.strict) {
      -        this.emit('error', er)
      -        // If the error is handled, then we abort
      -        // if not, we threw out of here
      -        this.abort()
      -      }
      -      if (!this.silent)
      -        console.error('glob error', er)
      -      break
      -  }
      -
      -  return cb()
      -}
      -
      -Glob.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar, cb) {
      -  var self = this
      -  this._readdir(abs, inGlobStar, function (er, entries) {
      -    self._processGlobStar2(prefix, read, abs, remain, index, inGlobStar, entries, cb)
      -  })
      -}
      -
      -
      -Glob.prototype._processGlobStar2 = function (prefix, read, abs, remain, index, inGlobStar, entries, cb) {
      -  //console.error('pgs2', prefix, remain[0], entries)
      -
      -  // no entries means not a dir, so it can never have matches
      -  // foo.txt/** doesn't match foo.txt
      -  if (!entries)
      -    return cb()
      -
      -  // test without the globstar, and with every child both below
      -  // and replacing the globstar.
      -  var remainWithoutGlobStar = remain.slice(1)
      -  var gspref = prefix ? [ prefix ] : []
      -  var noGlobStar = gspref.concat(remainWithoutGlobStar)
      -
      -  // the noGlobStar pattern exits the inGlobStar state
      -  this._process(noGlobStar, index, false, cb)
      -
      -  var isSym = this.symlinks[abs]
      -  var len = entries.length
      -
      -  // If it's a symlink, and we're in a globstar, then stop
      -  if (isSym && inGlobStar)
      -    return cb()
      -
      -  for (var i = 0; i < len; i++) {
      -    var e = entries[i]
      -    if (e.charAt(0) === '.' && !this.dot)
      -      continue
      -
      -    // these two cases enter the inGlobStar state
      -    var instead = gspref.concat(entries[i], remainWithoutGlobStar)
      -    this._process(instead, index, true, cb)
      -
      -    var below = gspref.concat(entries[i], remain)
      -    this._process(below, index, true, cb)
      -  }
      -
      -  cb()
      -}
      -
      -Glob.prototype._processSimple = function (prefix, index, cb) {
      -  // XXX review this.  Shouldn't it be doing the mounting etc
      -  // before doing stat?  kinda weird?
      -  var self = this
      -  this._stat(prefix, function (er, exists) {
      -    self._processSimple2(prefix, index, er, exists, cb)
      -  })
      -}
      -Glob.prototype._processSimple2 = function (prefix, index, er, exists, cb) {
      -
      -  //console.error('ps2', prefix, exists)
      -
      -  if (!this.matches[index])
      -    this.matches[index] = Object.create(null)
      -
      -  // If it doesn't exist, then just mark the lack of results
      -  if (!exists)
      -    return cb()
      -
      -  if (prefix && isAbsolute(prefix) && !this.nomount) {
      -    var trail = /[\/\\]$/.test(prefix)
      -    if (prefix.charAt(0) === '/') {
      -      prefix = path.join(this.root, prefix)
      -    } else {
      -      prefix = path.resolve(this.root, prefix)
      -      if (trail)
      -        prefix += '/'
      -    }
      -  }
      -
      -  if (process.platform === 'win32')
      -    prefix = prefix.replace(/\\/g, '/')
      -
      -  // Mark this as a match
      -  this._emitMatch(index, prefix)
      -  cb()
      -}
      -
      -// Returns either 'DIR', 'FILE', or false
      -Glob.prototype._stat = function (f, cb) {
      -  var abs = this._makeAbs(f)
      -  var needDir = f.slice(-1) === '/'
      -
      -  if (f.length > this.maxLength)
      -    return cb()
      -
      -  if (!this.stat && ownProp(this.cache, abs)) {
      -    var c = this.cache[abs]
      -
      -    if (Array.isArray(c))
      -      c = 'DIR'
      -
      -    // It exists, but maybe not how we need it
      -    if (!needDir || c === 'DIR')
      -      return cb(null, c)
      -
      -    if (needDir && c === 'FILE')
      -      return cb()
      -
      -    // otherwise we have to stat, because maybe c=true
      -    // if we know it exists, but not what it is.
      -  }
      -
      -  var exists
      -  var stat = this.statCache[abs]
      -  if (stat !== undefined) {
      -    if (stat === false)
      -      return cb(null, stat)
      -    else {
      -      var type = stat.isDirectory() ? 'DIR' : 'FILE'
      -      if (needDir && type === 'FILE')
      -        return cb()
      -      else
      -        return cb(null, type, stat)
      -    }
      -  }
      -
      -  var self = this
      -  var statcb = inflight('stat\0' + abs, lstatcb_)
      -  if (statcb)
      -    self.fs.lstat(abs, statcb)
      -
      -  function lstatcb_ (er, lstat) {
      -    if (lstat && lstat.isSymbolicLink()) {
      -      // If it's a symlink, then treat it as the target, unless
      -      // the target does not exist, then treat it as a file.
      -      return self.fs.stat(abs, function (er, stat) {
      -        if (er)
      -          self._stat2(f, abs, null, lstat, cb)
      -        else
      -          self._stat2(f, abs, er, stat, cb)
      -      })
      -    } else {
      -      self._stat2(f, abs, er, lstat, cb)
      -    }
      -  }
      -}
      -
      -Glob.prototype._stat2 = function (f, abs, er, stat, cb) {
      -  if (er && (er.code === 'ENOENT' || er.code === 'ENOTDIR')) {
      -    this.statCache[abs] = false
      -    return cb()
      -  }
      -
      -  var needDir = f.slice(-1) === '/'
      -  this.statCache[abs] = stat
      -
      -  if (abs.slice(-1) === '/' && stat && !stat.isDirectory())
      -    return cb(null, false, stat)
      -
      -  var c = true
      -  if (stat)
      -    c = stat.isDirectory() ? 'DIR' : 'FILE'
      -  this.cache[abs] = this.cache[abs] || c
      -
      -  if (needDir && c === 'FILE')
      -    return cb()
      -
      -  return cb(null, c, stat)
      -}
      diff --git a/deps/npm/node_modules/rimraf/node_modules/glob/package.json b/deps/npm/node_modules/rimraf/node_modules/glob/package.json
      deleted file mode 100644
      index 5940b649b7e65a..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/glob/package.json
      +++ /dev/null
      @@ -1,55 +0,0 @@
      -{
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me/)",
      -  "name": "glob",
      -  "description": "a little globber",
      -  "version": "7.2.3",
      -  "publishConfig": {
      -    "tag": "v7-legacy"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/isaacs/node-glob.git"
      -  },
      -  "main": "glob.js",
      -  "files": [
      -    "glob.js",
      -    "sync.js",
      -    "common.js"
      -  ],
      -  "engines": {
      -    "node": "*"
      -  },
      -  "dependencies": {
      -    "fs.realpath": "^1.0.0",
      -    "inflight": "^1.0.4",
      -    "inherits": "2",
      -    "minimatch": "^3.1.1",
      -    "once": "^1.3.0",
      -    "path-is-absolute": "^1.0.0"
      -  },
      -  "devDependencies": {
      -    "memfs": "^3.2.0",
      -    "mkdirp": "0",
      -    "rimraf": "^2.2.8",
      -    "tap": "^15.0.6",
      -    "tick": "0.0.6"
      -  },
      -  "tap": {
      -    "before": "test/00-setup.js",
      -    "after": "test/zz-cleanup.js",
      -    "jobs": 1
      -  },
      -  "scripts": {
      -    "prepublish": "npm run benchclean",
      -    "profclean": "rm -f v8.log profile.txt",
      -    "test": "tap",
      -    "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
      -    "bench": "bash benchmark.sh",
      -    "prof": "bash prof.sh && cat profile.txt",
      -    "benchclean": "node benchclean.js"
      -  },
      -  "license": "ISC",
      -  "funding": {
      -    "url": "https://github.com/sponsors/isaacs"
      -  }
      -}
      diff --git a/deps/npm/node_modules/rimraf/node_modules/glob/sync.js b/deps/npm/node_modules/rimraf/node_modules/glob/sync.js
      deleted file mode 100644
      index 2c4f480192d28d..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/glob/sync.js
      +++ /dev/null
      @@ -1,486 +0,0 @@
      -module.exports = globSync
      -globSync.GlobSync = GlobSync
      -
      -var rp = require('fs.realpath')
      -var minimatch = require('minimatch')
      -var Minimatch = minimatch.Minimatch
      -var Glob = require('./glob.js').Glob
      -var util = require('util')
      -var path = require('path')
      -var assert = require('assert')
      -var isAbsolute = require('path-is-absolute')
      -var common = require('./common.js')
      -var setopts = common.setopts
      -var ownProp = common.ownProp
      -var childrenIgnored = common.childrenIgnored
      -var isIgnored = common.isIgnored
      -
      -function globSync (pattern, options) {
      -  if (typeof options === 'function' || arguments.length === 3)
      -    throw new TypeError('callback provided to sync glob\n'+
      -                        'See: https://github.com/isaacs/node-glob/issues/167')
      -
      -  return new GlobSync(pattern, options).found
      -}
      -
      -function GlobSync (pattern, options) {
      -  if (!pattern)
      -    throw new Error('must provide pattern')
      -
      -  if (typeof options === 'function' || arguments.length === 3)
      -    throw new TypeError('callback provided to sync glob\n'+
      -                        'See: https://github.com/isaacs/node-glob/issues/167')
      -
      -  if (!(this instanceof GlobSync))
      -    return new GlobSync(pattern, options)
      -
      -  setopts(this, pattern, options)
      -
      -  if (this.noprocess)
      -    return this
      -
      -  var n = this.minimatch.set.length
      -  this.matches = new Array(n)
      -  for (var i = 0; i < n; i ++) {
      -    this._process(this.minimatch.set[i], i, false)
      -  }
      -  this._finish()
      -}
      -
      -GlobSync.prototype._finish = function () {
      -  assert.ok(this instanceof GlobSync)
      -  if (this.realpath) {
      -    var self = this
      -    this.matches.forEach(function (matchset, index) {
      -      var set = self.matches[index] = Object.create(null)
      -      for (var p in matchset) {
      -        try {
      -          p = self._makeAbs(p)
      -          var real = rp.realpathSync(p, self.realpathCache)
      -          set[real] = true
      -        } catch (er) {
      -          if (er.syscall === 'stat')
      -            set[self._makeAbs(p)] = true
      -          else
      -            throw er
      -        }
      -      }
      -    })
      -  }
      -  common.finish(this)
      -}
      -
      -
      -GlobSync.prototype._process = function (pattern, index, inGlobStar) {
      -  assert.ok(this instanceof GlobSync)
      -
      -  // Get the first [n] parts of pattern that are all strings.
      -  var n = 0
      -  while (typeof pattern[n] === 'string') {
      -    n ++
      -  }
      -  // now n is the index of the first one that is *not* a string.
      -
      -  // See if there's anything else
      -  var prefix
      -  switch (n) {
      -    // if not, then this is rather simple
      -    case pattern.length:
      -      this._processSimple(pattern.join('/'), index)
      -      return
      -
      -    case 0:
      -      // pattern *starts* with some non-trivial item.
      -      // going to readdir(cwd), but not include the prefix in matches.
      -      prefix = null
      -      break
      -
      -    default:
      -      // pattern has some string bits in the front.
      -      // whatever it starts with, whether that's 'absolute' like /foo/bar,
      -      // or 'relative' like '../baz'
      -      prefix = pattern.slice(0, n).join('/')
      -      break
      -  }
      -
      -  var remain = pattern.slice(n)
      -
      -  // get the list of entries.
      -  var read
      -  if (prefix === null)
      -    read = '.'
      -  else if (isAbsolute(prefix) ||
      -      isAbsolute(pattern.map(function (p) {
      -        return typeof p === 'string' ? p : '[*]'
      -      }).join('/'))) {
      -    if (!prefix || !isAbsolute(prefix))
      -      prefix = '/' + prefix
      -    read = prefix
      -  } else
      -    read = prefix
      -
      -  var abs = this._makeAbs(read)
      -
      -  //if ignored, skip processing
      -  if (childrenIgnored(this, read))
      -    return
      -
      -  var isGlobStar = remain[0] === minimatch.GLOBSTAR
      -  if (isGlobStar)
      -    this._processGlobStar(prefix, read, abs, remain, index, inGlobStar)
      -  else
      -    this._processReaddir(prefix, read, abs, remain, index, inGlobStar)
      -}
      -
      -
      -GlobSync.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar) {
      -  var entries = this._readdir(abs, inGlobStar)
      -
      -  // if the abs isn't a dir, then nothing can match!
      -  if (!entries)
      -    return
      -
      -  // It will only match dot entries if it starts with a dot, or if
      -  // dot is set.  Stuff like @(.foo|.bar) isn't allowed.
      -  var pn = remain[0]
      -  var negate = !!this.minimatch.negate
      -  var rawGlob = pn._glob
      -  var dotOk = this.dot || rawGlob.charAt(0) === '.'
      -
      -  var matchedEntries = []
      -  for (var i = 0; i < entries.length; i++) {
      -    var e = entries[i]
      -    if (e.charAt(0) !== '.' || dotOk) {
      -      var m
      -      if (negate && !prefix) {
      -        m = !e.match(pn)
      -      } else {
      -        m = e.match(pn)
      -      }
      -      if (m)
      -        matchedEntries.push(e)
      -    }
      -  }
      -
      -  var len = matchedEntries.length
      -  // If there are no matched entries, then nothing matches.
      -  if (len === 0)
      -    return
      -
      -  // if this is the last remaining pattern bit, then no need for
      -  // an additional stat *unless* the user has specified mark or
      -  // stat explicitly.  We know they exist, since readdir returned
      -  // them.
      -
      -  if (remain.length === 1 && !this.mark && !this.stat) {
      -    if (!this.matches[index])
      -      this.matches[index] = Object.create(null)
      -
      -    for (var i = 0; i < len; i ++) {
      -      var e = matchedEntries[i]
      -      if (prefix) {
      -        if (prefix.slice(-1) !== '/')
      -          e = prefix + '/' + e
      -        else
      -          e = prefix + e
      -      }
      -
      -      if (e.charAt(0) === '/' && !this.nomount) {
      -        e = path.join(this.root, e)
      -      }
      -      this._emitMatch(index, e)
      -    }
      -    // This was the last one, and no stats were needed
      -    return
      -  }
      -
      -  // now test all matched entries as stand-ins for that part
      -  // of the pattern.
      -  remain.shift()
      -  for (var i = 0; i < len; i ++) {
      -    var e = matchedEntries[i]
      -    var newPattern
      -    if (prefix)
      -      newPattern = [prefix, e]
      -    else
      -      newPattern = [e]
      -    this._process(newPattern.concat(remain), index, inGlobStar)
      -  }
      -}
      -
      -
      -GlobSync.prototype._emitMatch = function (index, e) {
      -  if (isIgnored(this, e))
      -    return
      -
      -  var abs = this._makeAbs(e)
      -
      -  if (this.mark)
      -    e = this._mark(e)
      -
      -  if (this.absolute) {
      -    e = abs
      -  }
      -
      -  if (this.matches[index][e])
      -    return
      -
      -  if (this.nodir) {
      -    var c = this.cache[abs]
      -    if (c === 'DIR' || Array.isArray(c))
      -      return
      -  }
      -
      -  this.matches[index][e] = true
      -
      -  if (this.stat)
      -    this._stat(e)
      -}
      -
      -
      -GlobSync.prototype._readdirInGlobStar = function (abs) {
      -  // follow all symlinked directories forever
      -  // just proceed as if this is a non-globstar situation
      -  if (this.follow)
      -    return this._readdir(abs, false)
      -
      -  var entries
      -  var lstat
      -  var stat
      -  try {
      -    lstat = this.fs.lstatSync(abs)
      -  } catch (er) {
      -    if (er.code === 'ENOENT') {
      -      // lstat failed, doesn't exist
      -      return null
      -    }
      -  }
      -
      -  var isSym = lstat && lstat.isSymbolicLink()
      -  this.symlinks[abs] = isSym
      -
      -  // If it's not a symlink or a dir, then it's definitely a regular file.
      -  // don't bother doing a readdir in that case.
      -  if (!isSym && lstat && !lstat.isDirectory())
      -    this.cache[abs] = 'FILE'
      -  else
      -    entries = this._readdir(abs, false)
      -
      -  return entries
      -}
      -
      -GlobSync.prototype._readdir = function (abs, inGlobStar) {
      -  var entries
      -
      -  if (inGlobStar && !ownProp(this.symlinks, abs))
      -    return this._readdirInGlobStar(abs)
      -
      -  if (ownProp(this.cache, abs)) {
      -    var c = this.cache[abs]
      -    if (!c || c === 'FILE')
      -      return null
      -
      -    if (Array.isArray(c))
      -      return c
      -  }
      -
      -  try {
      -    return this._readdirEntries(abs, this.fs.readdirSync(abs))
      -  } catch (er) {
      -    this._readdirError(abs, er)
      -    return null
      -  }
      -}
      -
      -GlobSync.prototype._readdirEntries = function (abs, entries) {
      -  // if we haven't asked to stat everything, then just
      -  // assume that everything in there exists, so we can avoid
      -  // having to stat it a second time.
      -  if (!this.mark && !this.stat) {
      -    for (var i = 0; i < entries.length; i ++) {
      -      var e = entries[i]
      -      if (abs === '/')
      -        e = abs + e
      -      else
      -        e = abs + '/' + e
      -      this.cache[e] = true
      -    }
      -  }
      -
      -  this.cache[abs] = entries
      -
      -  // mark and cache dir-ness
      -  return entries
      -}
      -
      -GlobSync.prototype._readdirError = function (f, er) {
      -  // handle errors, and cache the information
      -  switch (er.code) {
      -    case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205
      -    case 'ENOTDIR': // totally normal. means it *does* exist.
      -      var abs = this._makeAbs(f)
      -      this.cache[abs] = 'FILE'
      -      if (abs === this.cwdAbs) {
      -        var error = new Error(er.code + ' invalid cwd ' + this.cwd)
      -        error.path = this.cwd
      -        error.code = er.code
      -        throw error
      -      }
      -      break
      -
      -    case 'ENOENT': // not terribly unusual
      -    case 'ELOOP':
      -    case 'ENAMETOOLONG':
      -    case 'UNKNOWN':
      -      this.cache[this._makeAbs(f)] = false
      -      break
      -
      -    default: // some unusual error.  Treat as failure.
      -      this.cache[this._makeAbs(f)] = false
      -      if (this.strict)
      -        throw er
      -      if (!this.silent)
      -        console.error('glob error', er)
      -      break
      -  }
      -}
      -
      -GlobSync.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar) {
      -
      -  var entries = this._readdir(abs, inGlobStar)
      -
      -  // no entries means not a dir, so it can never have matches
      -  // foo.txt/** doesn't match foo.txt
      -  if (!entries)
      -    return
      -
      -  // test without the globstar, and with every child both below
      -  // and replacing the globstar.
      -  var remainWithoutGlobStar = remain.slice(1)
      -  var gspref = prefix ? [ prefix ] : []
      -  var noGlobStar = gspref.concat(remainWithoutGlobStar)
      -
      -  // the noGlobStar pattern exits the inGlobStar state
      -  this._process(noGlobStar, index, false)
      -
      -  var len = entries.length
      -  var isSym = this.symlinks[abs]
      -
      -  // If it's a symlink, and we're in a globstar, then stop
      -  if (isSym && inGlobStar)
      -    return
      -
      -  for (var i = 0; i < len; i++) {
      -    var e = entries[i]
      -    if (e.charAt(0) === '.' && !this.dot)
      -      continue
      -
      -    // these two cases enter the inGlobStar state
      -    var instead = gspref.concat(entries[i], remainWithoutGlobStar)
      -    this._process(instead, index, true)
      -
      -    var below = gspref.concat(entries[i], remain)
      -    this._process(below, index, true)
      -  }
      -}
      -
      -GlobSync.prototype._processSimple = function (prefix, index) {
      -  // XXX review this.  Shouldn't it be doing the mounting etc
      -  // before doing stat?  kinda weird?
      -  var exists = this._stat(prefix)
      -
      -  if (!this.matches[index])
      -    this.matches[index] = Object.create(null)
      -
      -  // If it doesn't exist, then just mark the lack of results
      -  if (!exists)
      -    return
      -
      -  if (prefix && isAbsolute(prefix) && !this.nomount) {
      -    var trail = /[\/\\]$/.test(prefix)
      -    if (prefix.charAt(0) === '/') {
      -      prefix = path.join(this.root, prefix)
      -    } else {
      -      prefix = path.resolve(this.root, prefix)
      -      if (trail)
      -        prefix += '/'
      -    }
      -  }
      -
      -  if (process.platform === 'win32')
      -    prefix = prefix.replace(/\\/g, '/')
      -
      -  // Mark this as a match
      -  this._emitMatch(index, prefix)
      -}
      -
      -// Returns either 'DIR', 'FILE', or false
      -GlobSync.prototype._stat = function (f) {
      -  var abs = this._makeAbs(f)
      -  var needDir = f.slice(-1) === '/'
      -
      -  if (f.length > this.maxLength)
      -    return false
      -
      -  if (!this.stat && ownProp(this.cache, abs)) {
      -    var c = this.cache[abs]
      -
      -    if (Array.isArray(c))
      -      c = 'DIR'
      -
      -    // It exists, but maybe not how we need it
      -    if (!needDir || c === 'DIR')
      -      return c
      -
      -    if (needDir && c === 'FILE')
      -      return false
      -
      -    // otherwise we have to stat, because maybe c=true
      -    // if we know it exists, but not what it is.
      -  }
      -
      -  var exists
      -  var stat = this.statCache[abs]
      -  if (!stat) {
      -    var lstat
      -    try {
      -      lstat = this.fs.lstatSync(abs)
      -    } catch (er) {
      -      if (er && (er.code === 'ENOENT' || er.code === 'ENOTDIR')) {
      -        this.statCache[abs] = false
      -        return false
      -      }
      -    }
      -
      -    if (lstat && lstat.isSymbolicLink()) {
      -      try {
      -        stat = this.fs.statSync(abs)
      -      } catch (er) {
      -        stat = lstat
      -      }
      -    } else {
      -      stat = lstat
      -    }
      -  }
      -
      -  this.statCache[abs] = stat
      -
      -  var c = true
      -  if (stat)
      -    c = stat.isDirectory() ? 'DIR' : 'FILE'
      -
      -  this.cache[abs] = this.cache[abs] || c
      -
      -  if (needDir && c === 'FILE')
      -    return false
      -
      -  return c
      -}
      -
      -GlobSync.prototype._mark = function (p) {
      -  return common.mark(this, p)
      -}
      -
      -GlobSync.prototype._makeAbs = function (f) {
      -  return common.makeAbs(this, f)
      -}
      diff --git a/deps/npm/node_modules/rimraf/node_modules/minimatch/LICENSE b/deps/npm/node_modules/rimraf/node_modules/minimatch/LICENSE
      deleted file mode 100644
      index 19129e315fe593..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/minimatch/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) Isaac Z. Schlueter and Contributors
      -
      -Permission to use, copy, modify, and/or distribute this software for any
      -purpose with or without fee is hereby granted, provided that the above
      -copyright notice and this permission notice appear in all copies.
      -
      -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
      -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      diff --git a/deps/npm/node_modules/rimraf/node_modules/minimatch/minimatch.js b/deps/npm/node_modules/rimraf/node_modules/minimatch/minimatch.js
      deleted file mode 100644
      index fda45ade7cfc35..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/minimatch/minimatch.js
      +++ /dev/null
      @@ -1,947 +0,0 @@
      -module.exports = minimatch
      -minimatch.Minimatch = Minimatch
      -
      -var path = (function () { try { return require('path') } catch (e) {}}()) || {
      -  sep: '/'
      -}
      -minimatch.sep = path.sep
      -
      -var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {}
      -var expand = require('brace-expansion')
      -
      -var plTypes = {
      -  '!': { open: '(?:(?!(?:', close: '))[^/]*?)'},
      -  '?': { open: '(?:', close: ')?' },
      -  '+': { open: '(?:', close: ')+' },
      -  '*': { open: '(?:', close: ')*' },
      -  '@': { open: '(?:', close: ')' }
      -}
      -
      -// any single thing other than /
      -// don't need to escape / when using new RegExp()
      -var qmark = '[^/]'
      -
      -// * => any number of characters
      -var star = qmark + '*?'
      -
      -// ** when dots are allowed.  Anything goes, except .. and .
      -// not (^ or / followed by one or two dots followed by $ or /),
      -// followed by anything, any number of times.
      -var twoStarDot = '(?:(?!(?:\\\/|^)(?:\\.{1,2})($|\\\/)).)*?'
      -
      -// not a ^ or / followed by a dot,
      -// followed by anything, any number of times.
      -var twoStarNoDot = '(?:(?!(?:\\\/|^)\\.).)*?'
      -
      -// characters that need to be escaped in RegExp.
      -var reSpecials = charSet('().*{}+?[]^$\\!')
      -
      -// "abc" -> { a:true, b:true, c:true }
      -function charSet (s) {
      -  return s.split('').reduce(function (set, c) {
      -    set[c] = true
      -    return set
      -  }, {})
      -}
      -
      -// normalizes slashes.
      -var slashSplit = /\/+/
      -
      -minimatch.filter = filter
      -function filter (pattern, options) {
      -  options = options || {}
      -  return function (p, i, list) {
      -    return minimatch(p, pattern, options)
      -  }
      -}
      -
      -function ext (a, b) {
      -  b = b || {}
      -  var t = {}
      -  Object.keys(a).forEach(function (k) {
      -    t[k] = a[k]
      -  })
      -  Object.keys(b).forEach(function (k) {
      -    t[k] = b[k]
      -  })
      -  return t
      -}
      -
      -minimatch.defaults = function (def) {
      -  if (!def || typeof def !== 'object' || !Object.keys(def).length) {
      -    return minimatch
      -  }
      -
      -  var orig = minimatch
      -
      -  var m = function minimatch (p, pattern, options) {
      -    return orig(p, pattern, ext(def, options))
      -  }
      -
      -  m.Minimatch = function Minimatch (pattern, options) {
      -    return new orig.Minimatch(pattern, ext(def, options))
      -  }
      -  m.Minimatch.defaults = function defaults (options) {
      -    return orig.defaults(ext(def, options)).Minimatch
      -  }
      -
      -  m.filter = function filter (pattern, options) {
      -    return orig.filter(pattern, ext(def, options))
      -  }
      -
      -  m.defaults = function defaults (options) {
      -    return orig.defaults(ext(def, options))
      -  }
      -
      -  m.makeRe = function makeRe (pattern, options) {
      -    return orig.makeRe(pattern, ext(def, options))
      -  }
      -
      -  m.braceExpand = function braceExpand (pattern, options) {
      -    return orig.braceExpand(pattern, ext(def, options))
      -  }
      -
      -  m.match = function (list, pattern, options) {
      -    return orig.match(list, pattern, ext(def, options))
      -  }
      -
      -  return m
      -}
      -
      -Minimatch.defaults = function (def) {
      -  return minimatch.defaults(def).Minimatch
      -}
      -
      -function minimatch (p, pattern, options) {
      -  assertValidPattern(pattern)
      -
      -  if (!options) options = {}
      -
      -  // shortcut: comments match nothing.
      -  if (!options.nocomment && pattern.charAt(0) === '#') {
      -    return false
      -  }
      -
      -  return new Minimatch(pattern, options).match(p)
      -}
      -
      -function Minimatch (pattern, options) {
      -  if (!(this instanceof Minimatch)) {
      -    return new Minimatch(pattern, options)
      -  }
      -
      -  assertValidPattern(pattern)
      -
      -  if (!options) options = {}
      -
      -  pattern = pattern.trim()
      -
      -  // windows support: need to use /, not \
      -  if (!options.allowWindowsEscape && path.sep !== '/') {
      -    pattern = pattern.split(path.sep).join('/')
      -  }
      -
      -  this.options = options
      -  this.set = []
      -  this.pattern = pattern
      -  this.regexp = null
      -  this.negate = false
      -  this.comment = false
      -  this.empty = false
      -  this.partial = !!options.partial
      -
      -  // make the set of regexps etc.
      -  this.make()
      -}
      -
      -Minimatch.prototype.debug = function () {}
      -
      -Minimatch.prototype.make = make
      -function make () {
      -  var pattern = this.pattern
      -  var options = this.options
      -
      -  // empty patterns and comments match nothing.
      -  if (!options.nocomment && pattern.charAt(0) === '#') {
      -    this.comment = true
      -    return
      -  }
      -  if (!pattern) {
      -    this.empty = true
      -    return
      -  }
      -
      -  // step 1: figure out negation, etc.
      -  this.parseNegate()
      -
      -  // step 2: expand braces
      -  var set = this.globSet = this.braceExpand()
      -
      -  if (options.debug) this.debug = function debug() { console.error.apply(console, arguments) }
      -
      -  this.debug(this.pattern, set)
      -
      -  // step 3: now we have a set, so turn each one into a series of path-portion
      -  // matching patterns.
      -  // These will be regexps, except in the case of "**", which is
      -  // set to the GLOBSTAR object for globstar behavior,
      -  // and will not contain any / characters
      -  set = this.globParts = set.map(function (s) {
      -    return s.split(slashSplit)
      -  })
      -
      -  this.debug(this.pattern, set)
      -
      -  // glob --> regexps
      -  set = set.map(function (s, si, set) {
      -    return s.map(this.parse, this)
      -  }, this)
      -
      -  this.debug(this.pattern, set)
      -
      -  // filter out everything that didn't compile properly.
      -  set = set.filter(function (s) {
      -    return s.indexOf(false) === -1
      -  })
      -
      -  this.debug(this.pattern, set)
      -
      -  this.set = set
      -}
      -
      -Minimatch.prototype.parseNegate = parseNegate
      -function parseNegate () {
      -  var pattern = this.pattern
      -  var negate = false
      -  var options = this.options
      -  var negateOffset = 0
      -
      -  if (options.nonegate) return
      -
      -  for (var i = 0, l = pattern.length
      -    ; i < l && pattern.charAt(i) === '!'
      -    ; i++) {
      -    negate = !negate
      -    negateOffset++
      -  }
      -
      -  if (negateOffset) this.pattern = pattern.substr(negateOffset)
      -  this.negate = negate
      -}
      -
      -// Brace expansion:
      -// a{b,c}d -> abd acd
      -// a{b,}c -> abc ac
      -// a{0..3}d -> a0d a1d a2d a3d
      -// a{b,c{d,e}f}g -> abg acdfg acefg
      -// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg
      -//
      -// Invalid sets are not expanded.
      -// a{2..}b -> a{2..}b
      -// a{b}c -> a{b}c
      -minimatch.braceExpand = function (pattern, options) {
      -  return braceExpand(pattern, options)
      -}
      -
      -Minimatch.prototype.braceExpand = braceExpand
      -
      -function braceExpand (pattern, options) {
      -  if (!options) {
      -    if (this instanceof Minimatch) {
      -      options = this.options
      -    } else {
      -      options = {}
      -    }
      -  }
      -
      -  pattern = typeof pattern === 'undefined'
      -    ? this.pattern : pattern
      -
      -  assertValidPattern(pattern)
      -
      -  // Thanks to Yeting Li  for
      -  // improving this regexp to avoid a ReDOS vulnerability.
      -  if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
      -    // shortcut. no need to expand.
      -    return [pattern]
      -  }
      -
      -  return expand(pattern)
      -}
      -
      -var MAX_PATTERN_LENGTH = 1024 * 64
      -var assertValidPattern = function (pattern) {
      -  if (typeof pattern !== 'string') {
      -    throw new TypeError('invalid pattern')
      -  }
      -
      -  if (pattern.length > MAX_PATTERN_LENGTH) {
      -    throw new TypeError('pattern is too long')
      -  }
      -}
      -
      -// parse a component of the expanded set.
      -// At this point, no pattern may contain "/" in it
      -// so we're going to return a 2d array, where each entry is the full
      -// pattern, split on '/', and then turned into a regular expression.
      -// A regexp is made at the end which joins each array with an
      -// escaped /, and another full one which joins each regexp with |.
      -//
      -// Following the lead of Bash 4.1, note that "**" only has special meaning
      -// when it is the *only* thing in a path portion.  Otherwise, any series
      -// of * is equivalent to a single *.  Globstar behavior is enabled by
      -// default, and can be disabled by setting options.noglobstar.
      -Minimatch.prototype.parse = parse
      -var SUBPARSE = {}
      -function parse (pattern, isSub) {
      -  assertValidPattern(pattern)
      -
      -  var options = this.options
      -
      -  // shortcuts
      -  if (pattern === '**') {
      -    if (!options.noglobstar)
      -      return GLOBSTAR
      -    else
      -      pattern = '*'
      -  }
      -  if (pattern === '') return ''
      -
      -  var re = ''
      -  var hasMagic = !!options.nocase
      -  var escaping = false
      -  // ? => one single character
      -  var patternListStack = []
      -  var negativeLists = []
      -  var stateChar
      -  var inClass = false
      -  var reClassStart = -1
      -  var classStart = -1
      -  // . and .. never match anything that doesn't start with .,
      -  // even when options.dot is set.
      -  var patternStart = pattern.charAt(0) === '.' ? '' // anything
      -  // not (start or / followed by . or .. followed by / or end)
      -  : options.dot ? '(?!(?:^|\\\/)\\.{1,2}(?:$|\\\/))'
      -  : '(?!\\.)'
      -  var self = this
      -
      -  function clearStateChar () {
      -    if (stateChar) {
      -      // we had some state-tracking character
      -      // that wasn't consumed by this pass.
      -      switch (stateChar) {
      -        case '*':
      -          re += star
      -          hasMagic = true
      -        break
      -        case '?':
      -          re += qmark
      -          hasMagic = true
      -        break
      -        default:
      -          re += '\\' + stateChar
      -        break
      -      }
      -      self.debug('clearStateChar %j %j', stateChar, re)
      -      stateChar = false
      -    }
      -  }
      -
      -  for (var i = 0, len = pattern.length, c
      -    ; (i < len) && (c = pattern.charAt(i))
      -    ; i++) {
      -    this.debug('%s\t%s %s %j', pattern, i, re, c)
      -
      -    // skip over any that are escaped.
      -    if (escaping && reSpecials[c]) {
      -      re += '\\' + c
      -      escaping = false
      -      continue
      -    }
      -
      -    switch (c) {
      -      /* istanbul ignore next */
      -      case '/': {
      -        // completely not allowed, even escaped.
      -        // Should already be path-split by now.
      -        return false
      -      }
      -
      -      case '\\':
      -        clearStateChar()
      -        escaping = true
      -      continue
      -
      -      // the various stateChar values
      -      // for the "extglob" stuff.
      -      case '?':
      -      case '*':
      -      case '+':
      -      case '@':
      -      case '!':
      -        this.debug('%s\t%s %s %j <-- stateChar', pattern, i, re, c)
      -
      -        // all of those are literals inside a class, except that
      -        // the glob [!a] means [^a] in regexp
      -        if (inClass) {
      -          this.debug('  in class')
      -          if (c === '!' && i === classStart + 1) c = '^'
      -          re += c
      -          continue
      -        }
      -
      -        // if we already have a stateChar, then it means
      -        // that there was something like ** or +? in there.
      -        // Handle the stateChar, then proceed with this one.
      -        self.debug('call clearStateChar %j', stateChar)
      -        clearStateChar()
      -        stateChar = c
      -        // if extglob is disabled, then +(asdf|foo) isn't a thing.
      -        // just clear the statechar *now*, rather than even diving into
      -        // the patternList stuff.
      -        if (options.noext) clearStateChar()
      -      continue
      -
      -      case '(':
      -        if (inClass) {
      -          re += '('
      -          continue
      -        }
      -
      -        if (!stateChar) {
      -          re += '\\('
      -          continue
      -        }
      -
      -        patternListStack.push({
      -          type: stateChar,
      -          start: i - 1,
      -          reStart: re.length,
      -          open: plTypes[stateChar].open,
      -          close: plTypes[stateChar].close
      -        })
      -        // negation is (?:(?!js)[^/]*)
      -        re += stateChar === '!' ? '(?:(?!(?:' : '(?:'
      -        this.debug('plType %j %j', stateChar, re)
      -        stateChar = false
      -      continue
      -
      -      case ')':
      -        if (inClass || !patternListStack.length) {
      -          re += '\\)'
      -          continue
      -        }
      -
      -        clearStateChar()
      -        hasMagic = true
      -        var pl = patternListStack.pop()
      -        // negation is (?:(?!js)[^/]*)
      -        // The others are (?:)
      -        re += pl.close
      -        if (pl.type === '!') {
      -          negativeLists.push(pl)
      -        }
      -        pl.reEnd = re.length
      -      continue
      -
      -      case '|':
      -        if (inClass || !patternListStack.length || escaping) {
      -          re += '\\|'
      -          escaping = false
      -          continue
      -        }
      -
      -        clearStateChar()
      -        re += '|'
      -      continue
      -
      -      // these are mostly the same in regexp and glob
      -      case '[':
      -        // swallow any state-tracking char before the [
      -        clearStateChar()
      -
      -        if (inClass) {
      -          re += '\\' + c
      -          continue
      -        }
      -
      -        inClass = true
      -        classStart = i
      -        reClassStart = re.length
      -        re += c
      -      continue
      -
      -      case ']':
      -        //  a right bracket shall lose its special
      -        //  meaning and represent itself in
      -        //  a bracket expression if it occurs
      -        //  first in the list.  -- POSIX.2 2.8.3.2
      -        if (i === classStart + 1 || !inClass) {
      -          re += '\\' + c
      -          escaping = false
      -          continue
      -        }
      -
      -        // handle the case where we left a class open.
      -        // "[z-a]" is valid, equivalent to "\[z-a\]"
      -        // split where the last [ was, make sure we don't have
      -        // an invalid re. if so, re-walk the contents of the
      -        // would-be class to re-translate any characters that
      -        // were passed through as-is
      -        // TODO: It would probably be faster to determine this
      -        // without a try/catch and a new RegExp, but it's tricky
      -        // to do safely.  For now, this is safe and works.
      -        var cs = pattern.substring(classStart + 1, i)
      -        try {
      -          RegExp('[' + cs + ']')
      -        } catch (er) {
      -          // not a valid class!
      -          var sp = this.parse(cs, SUBPARSE)
      -          re = re.substr(0, reClassStart) + '\\[' + sp[0] + '\\]'
      -          hasMagic = hasMagic || sp[1]
      -          inClass = false
      -          continue
      -        }
      -
      -        // finish up the class.
      -        hasMagic = true
      -        inClass = false
      -        re += c
      -      continue
      -
      -      default:
      -        // swallow any state char that wasn't consumed
      -        clearStateChar()
      -
      -        if (escaping) {
      -          // no need
      -          escaping = false
      -        } else if (reSpecials[c]
      -          && !(c === '^' && inClass)) {
      -          re += '\\'
      -        }
      -
      -        re += c
      -
      -    } // switch
      -  } // for
      -
      -  // handle the case where we left a class open.
      -  // "[abc" is valid, equivalent to "\[abc"
      -  if (inClass) {
      -    // split where the last [ was, and escape it
      -    // this is a huge pita.  We now have to re-walk
      -    // the contents of the would-be class to re-translate
      -    // any characters that were passed through as-is
      -    cs = pattern.substr(classStart + 1)
      -    sp = this.parse(cs, SUBPARSE)
      -    re = re.substr(0, reClassStart) + '\\[' + sp[0]
      -    hasMagic = hasMagic || sp[1]
      -  }
      -
      -  // handle the case where we had a +( thing at the *end*
      -  // of the pattern.
      -  // each pattern list stack adds 3 chars, and we need to go through
      -  // and escape any | chars that were passed through as-is for the regexp.
      -  // Go through and escape them, taking care not to double-escape any
      -  // | chars that were already escaped.
      -  for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {
      -    var tail = re.slice(pl.reStart + pl.open.length)
      -    this.debug('setting tail', re, pl)
      -    // maybe some even number of \, then maybe 1 \, followed by a |
      -    tail = tail.replace(/((?:\\{2}){0,64})(\\?)\|/g, function (_, $1, $2) {
      -      if (!$2) {
      -        // the | isn't already escaped, so escape it.
      -        $2 = '\\'
      -      }
      -
      -      // need to escape all those slashes *again*, without escaping the
      -      // one that we need for escaping the | character.  As it works out,
      -      // escaping an even number of slashes can be done by simply repeating
      -      // it exactly after itself.  That's why this trick works.
      -      //
      -      // I am sorry that you have to see this.
      -      return $1 + $1 + $2 + '|'
      -    })
      -
      -    this.debug('tail=%j\n   %s', tail, tail, pl, re)
      -    var t = pl.type === '*' ? star
      -      : pl.type === '?' ? qmark
      -      : '\\' + pl.type
      -
      -    hasMagic = true
      -    re = re.slice(0, pl.reStart) + t + '\\(' + tail
      -  }
      -
      -  // handle trailing things that only matter at the very end.
      -  clearStateChar()
      -  if (escaping) {
      -    // trailing \\
      -    re += '\\\\'
      -  }
      -
      -  // only need to apply the nodot start if the re starts with
      -  // something that could conceivably capture a dot
      -  var addPatternStart = false
      -  switch (re.charAt(0)) {
      -    case '[': case '.': case '(': addPatternStart = true
      -  }
      -
      -  // Hack to work around lack of negative lookbehind in JS
      -  // A pattern like: *.!(x).!(y|z) needs to ensure that a name
      -  // like 'a.xyz.yz' doesn't match.  So, the first negative
      -  // lookahead, has to look ALL the way ahead, to the end of
      -  // the pattern.
      -  for (var n = negativeLists.length - 1; n > -1; n--) {
      -    var nl = negativeLists[n]
      -
      -    var nlBefore = re.slice(0, nl.reStart)
      -    var nlFirst = re.slice(nl.reStart, nl.reEnd - 8)
      -    var nlLast = re.slice(nl.reEnd - 8, nl.reEnd)
      -    var nlAfter = re.slice(nl.reEnd)
      -
      -    nlLast += nlAfter
      -
      -    // Handle nested stuff like *(*.js|!(*.json)), where open parens
      -    // mean that we should *not* include the ) in the bit that is considered
      -    // "after" the negated section.
      -    var openParensBefore = nlBefore.split('(').length - 1
      -    var cleanAfter = nlAfter
      -    for (i = 0; i < openParensBefore; i++) {
      -      cleanAfter = cleanAfter.replace(/\)[+*?]?/, '')
      -    }
      -    nlAfter = cleanAfter
      -
      -    var dollar = ''
      -    if (nlAfter === '' && isSub !== SUBPARSE) {
      -      dollar = '$'
      -    }
      -    var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast
      -    re = newRe
      -  }
      -
      -  // if the re is not "" at this point, then we need to make sure
      -  // it doesn't match against an empty path part.
      -  // Otherwise a/* will match a/, which it should not.
      -  if (re !== '' && hasMagic) {
      -    re = '(?=.)' + re
      -  }
      -
      -  if (addPatternStart) {
      -    re = patternStart + re
      -  }
      -
      -  // parsing just a piece of a larger pattern.
      -  if (isSub === SUBPARSE) {
      -    return [re, hasMagic]
      -  }
      -
      -  // skip the regexp for non-magical patterns
      -  // unescape anything in it, though, so that it'll be
      -  // an exact match against a file etc.
      -  if (!hasMagic) {
      -    return globUnescape(pattern)
      -  }
      -
      -  var flags = options.nocase ? 'i' : ''
      -  try {
      -    var regExp = new RegExp('^' + re + '$', flags)
      -  } catch (er) /* istanbul ignore next - should be impossible */ {
      -    // If it was an invalid regular expression, then it can't match
      -    // anything.  This trick looks for a character after the end of
      -    // the string, which is of course impossible, except in multi-line
      -    // mode, but it's not a /m regex.
      -    return new RegExp('$.')
      -  }
      -
      -  regExp._glob = pattern
      -  regExp._src = re
      -
      -  return regExp
      -}
      -
      -minimatch.makeRe = function (pattern, options) {
      -  return new Minimatch(pattern, options || {}).makeRe()
      -}
      -
      -Minimatch.prototype.makeRe = makeRe
      -function makeRe () {
      -  if (this.regexp || this.regexp === false) return this.regexp
      -
      -  // at this point, this.set is a 2d array of partial
      -  // pattern strings, or "**".
      -  //
      -  // It's better to use .match().  This function shouldn't
      -  // be used, really, but it's pretty convenient sometimes,
      -  // when you just want to work with a regex.
      -  var set = this.set
      -
      -  if (!set.length) {
      -    this.regexp = false
      -    return this.regexp
      -  }
      -  var options = this.options
      -
      -  var twoStar = options.noglobstar ? star
      -    : options.dot ? twoStarDot
      -    : twoStarNoDot
      -  var flags = options.nocase ? 'i' : ''
      -
      -  var re = set.map(function (pattern) {
      -    return pattern.map(function (p) {
      -      return (p === GLOBSTAR) ? twoStar
      -      : (typeof p === 'string') ? regExpEscape(p)
      -      : p._src
      -    }).join('\\\/')
      -  }).join('|')
      -
      -  // must match entire pattern
      -  // ending in a * or ** will make it less strict.
      -  re = '^(?:' + re + ')$'
      -
      -  // can match anything, as long as it's not this.
      -  if (this.negate) re = '^(?!' + re + ').*$'
      -
      -  try {
      -    this.regexp = new RegExp(re, flags)
      -  } catch (ex) /* istanbul ignore next - should be impossible */ {
      -    this.regexp = false
      -  }
      -  return this.regexp
      -}
      -
      -minimatch.match = function (list, pattern, options) {
      -  options = options || {}
      -  var mm = new Minimatch(pattern, options)
      -  list = list.filter(function (f) {
      -    return mm.match(f)
      -  })
      -  if (mm.options.nonull && !list.length) {
      -    list.push(pattern)
      -  }
      -  return list
      -}
      -
      -Minimatch.prototype.match = function match (f, partial) {
      -  if (typeof partial === 'undefined') partial = this.partial
      -  this.debug('match', f, this.pattern)
      -  // short-circuit in the case of busted things.
      -  // comments, etc.
      -  if (this.comment) return false
      -  if (this.empty) return f === ''
      -
      -  if (f === '/' && partial) return true
      -
      -  var options = this.options
      -
      -  // windows: need to use /, not \
      -  if (path.sep !== '/') {
      -    f = f.split(path.sep).join('/')
      -  }
      -
      -  // treat the test path as a set of pathparts.
      -  f = f.split(slashSplit)
      -  this.debug(this.pattern, 'split', f)
      -
      -  // just ONE of the pattern sets in this.set needs to match
      -  // in order for it to be valid.  If negating, then just one
      -  // match means that we have failed.
      -  // Either way, return on the first hit.
      -
      -  var set = this.set
      -  this.debug(this.pattern, 'set', set)
      -
      -  // Find the basename of the path by looking for the last non-empty segment
      -  var filename
      -  var i
      -  for (i = f.length - 1; i >= 0; i--) {
      -    filename = f[i]
      -    if (filename) break
      -  }
      -
      -  for (i = 0; i < set.length; i++) {
      -    var pattern = set[i]
      -    var file = f
      -    if (options.matchBase && pattern.length === 1) {
      -      file = [filename]
      -    }
      -    var hit = this.matchOne(file, pattern, partial)
      -    if (hit) {
      -      if (options.flipNegate) return true
      -      return !this.negate
      -    }
      -  }
      -
      -  // didn't get any hits.  this is success if it's a negative
      -  // pattern, failure otherwise.
      -  if (options.flipNegate) return false
      -  return this.negate
      -}
      -
      -// set partial to true to test if, for example,
      -// "/a/b" matches the start of "/*/b/*/d"
      -// Partial means, if you run out of file before you run
      -// out of pattern, then that's fine, as long as all
      -// the parts match.
      -Minimatch.prototype.matchOne = function (file, pattern, partial) {
      -  var options = this.options
      -
      -  this.debug('matchOne',
      -    { 'this': this, file: file, pattern: pattern })
      -
      -  this.debug('matchOne', file.length, pattern.length)
      -
      -  for (var fi = 0,
      -      pi = 0,
      -      fl = file.length,
      -      pl = pattern.length
      -      ; (fi < fl) && (pi < pl)
      -      ; fi++, pi++) {
      -    this.debug('matchOne loop')
      -    var p = pattern[pi]
      -    var f = file[fi]
      -
      -    this.debug(pattern, p, f)
      -
      -    // should be impossible.
      -    // some invalid regexp stuff in the set.
      -    /* istanbul ignore if */
      -    if (p === false) return false
      -
      -    if (p === GLOBSTAR) {
      -      this.debug('GLOBSTAR', [pattern, p, f])
      -
      -      // "**"
      -      // a/**/b/**/c would match the following:
      -      // a/b/x/y/z/c
      -      // a/x/y/z/b/c
      -      // a/b/x/b/x/c
      -      // a/b/c
      -      // To do this, take the rest of the pattern after
      -      // the **, and see if it would match the file remainder.
      -      // If so, return success.
      -      // If not, the ** "swallows" a segment, and try again.
      -      // This is recursively awful.
      -      //
      -      // a/**/b/**/c matching a/b/x/y/z/c
      -      // - a matches a
      -      // - doublestar
      -      //   - matchOne(b/x/y/z/c, b/**/c)
      -      //     - b matches b
      -      //     - doublestar
      -      //       - matchOne(x/y/z/c, c) -> no
      -      //       - matchOne(y/z/c, c) -> no
      -      //       - matchOne(z/c, c) -> no
      -      //       - matchOne(c, c) yes, hit
      -      var fr = fi
      -      var pr = pi + 1
      -      if (pr === pl) {
      -        this.debug('** at the end')
      -        // a ** at the end will just swallow the rest.
      -        // We have found a match.
      -        // however, it will not swallow /.x, unless
      -        // options.dot is set.
      -        // . and .. are *never* matched by **, for explosively
      -        // exponential reasons.
      -        for (; fi < fl; fi++) {
      -          if (file[fi] === '.' || file[fi] === '..' ||
      -            (!options.dot && file[fi].charAt(0) === '.')) return false
      -        }
      -        return true
      -      }
      -
      -      // ok, let's see if we can swallow whatever we can.
      -      while (fr < fl) {
      -        var swallowee = file[fr]
      -
      -        this.debug('\nglobstar while', file, fr, pattern, pr, swallowee)
      -
      -        // XXX remove this slice.  Just pass the start index.
      -        if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {
      -          this.debug('globstar found match!', fr, fl, swallowee)
      -          // found a match.
      -          return true
      -        } else {
      -          // can't swallow "." or ".." ever.
      -          // can only swallow ".foo" when explicitly asked.
      -          if (swallowee === '.' || swallowee === '..' ||
      -            (!options.dot && swallowee.charAt(0) === '.')) {
      -            this.debug('dot detected!', file, fr, pattern, pr)
      -            break
      -          }
      -
      -          // ** swallows a segment, and continue.
      -          this.debug('globstar swallow a segment, and continue')
      -          fr++
      -        }
      -      }
      -
      -      // no match was found.
      -      // However, in partial mode, we can't say this is necessarily over.
      -      // If there's more *pattern* left, then
      -      /* istanbul ignore if */
      -      if (partial) {
      -        // ran out of file
      -        this.debug('\n>>> no match, partial?', file, fr, pattern, pr)
      -        if (fr === fl) return true
      -      }
      -      return false
      -    }
      -
      -    // something other than **
      -    // non-magic patterns just have to match exactly
      -    // patterns with magic have been turned into regexps.
      -    var hit
      -    if (typeof p === 'string') {
      -      hit = f === p
      -      this.debug('string match', p, f, hit)
      -    } else {
      -      hit = f.match(p)
      -      this.debug('pattern match', p, f, hit)
      -    }
      -
      -    if (!hit) return false
      -  }
      -
      -  // Note: ending in / means that we'll get a final ""
      -  // at the end of the pattern.  This can only match a
      -  // corresponding "" at the end of the file.
      -  // If the file ends in /, then it can only match a
      -  // a pattern that ends in /, unless the pattern just
      -  // doesn't have any more for it. But, a/b/ should *not*
      -  // match "a/b/*", even though "" matches against the
      -  // [^/]*? pattern, except in partial mode, where it might
      -  // simply not be reached yet.
      -  // However, a/b/ should still satisfy a/*
      -
      -  // now either we fell off the end of the pattern, or we're done.
      -  if (fi === fl && pi === pl) {
      -    // ran out of pattern and filename at the same time.
      -    // an exact hit!
      -    return true
      -  } else if (fi === fl) {
      -    // ran out of file, but still had pattern left.
      -    // this is ok if we're doing the match as part of
      -    // a glob fs traversal.
      -    return partial
      -  } else /* istanbul ignore else */ if (pi === pl) {
      -    // ran out of pattern, still have file left.
      -    // this is only acceptable if we're on the very last
      -    // empty segment of a file with a trailing slash.
      -    // a/* should match a/b/
      -    return (fi === fl - 1) && (file[fi] === '')
      -  }
      -
      -  // should be unreachable.
      -  /* istanbul ignore next */
      -  throw new Error('wtf?')
      -}
      -
      -// replace stuff like \* with *
      -function globUnescape (s) {
      -  return s.replace(/\\(.)/g, '$1')
      -}
      -
      -function regExpEscape (s) {
      -  return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&')
      -}
      diff --git a/deps/npm/node_modules/rimraf/node_modules/minimatch/package.json b/deps/npm/node_modules/rimraf/node_modules/minimatch/package.json
      deleted file mode 100644
      index 566efdfe45cb80..00000000000000
      --- a/deps/npm/node_modules/rimraf/node_modules/minimatch/package.json
      +++ /dev/null
      @@ -1,33 +0,0 @@
      -{
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me)",
      -  "name": "minimatch",
      -  "description": "a glob matcher in javascript",
      -  "version": "3.1.2",
      -  "publishConfig": {
      -    "tag": "v3-legacy"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/isaacs/minimatch.git"
      -  },
      -  "main": "minimatch.js",
      -  "scripts": {
      -    "test": "tap",
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "postpublish": "git push origin --all; git push origin --tags"
      -  },
      -  "engines": {
      -    "node": "*"
      -  },
      -  "dependencies": {
      -    "brace-expansion": "^1.1.7"
      -  },
      -  "devDependencies": {
      -    "tap": "^15.1.6"
      -  },
      -  "license": "ISC",
      -  "files": [
      -    "minimatch.js"
      -  ]
      -}
      diff --git a/deps/npm/node_modules/rimraf/package.json b/deps/npm/node_modules/rimraf/package.json
      deleted file mode 100644
      index 1bf8d5e38775d7..00000000000000
      --- a/deps/npm/node_modules/rimraf/package.json
      +++ /dev/null
      @@ -1,32 +0,0 @@
      -{
      -  "name": "rimraf",
      -  "version": "3.0.2",
      -  "main": "rimraf.js",
      -  "description": "A deep deletion module for node (like `rm -rf`)",
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me/)",
      -  "license": "ISC",
      -  "repository": "git://github.com/isaacs/rimraf.git",
      -  "scripts": {
      -    "preversion": "npm test",
      -    "postversion": "npm publish",
      -    "postpublish": "git push origin --follow-tags",
      -    "test": "tap test/*.js"
      -  },
      -  "bin": "./bin.js",
      -  "dependencies": {
      -    "glob": "^7.1.3"
      -  },
      -  "files": [
      -    "LICENSE",
      -    "README.md",
      -    "bin.js",
      -    "rimraf.js"
      -  ],
      -  "devDependencies": {
      -    "mkdirp": "^0.5.1",
      -    "tap": "^12.1.1"
      -  },
      -  "funding": {
      -    "url": "https://github.com/sponsors/isaacs"
      -  }
      -}
      diff --git a/deps/npm/node_modules/rimraf/rimraf.js b/deps/npm/node_modules/rimraf/rimraf.js
      deleted file mode 100644
      index 34da4171d75598..00000000000000
      --- a/deps/npm/node_modules/rimraf/rimraf.js
      +++ /dev/null
      @@ -1,360 +0,0 @@
      -const assert = require("assert")
      -const path = require("path")
      -const fs = require("fs")
      -let glob = undefined
      -try {
      -  glob = require("glob")
      -} catch (_err) {
      -  // treat glob as optional.
      -}
      -
      -const defaultGlobOpts = {
      -  nosort: true,
      -  silent: true
      -}
      -
      -// for EMFILE handling
      -let timeout = 0
      -
      -const isWindows = (process.platform === "win32")
      -
      -const defaults = options => {
      -  const methods = [
      -    'unlink',
      -    'chmod',
      -    'stat',
      -    'lstat',
      -    'rmdir',
      -    'readdir'
      -  ]
      -  methods.forEach(m => {
      -    options[m] = options[m] || fs[m]
      -    m = m + 'Sync'
      -    options[m] = options[m] || fs[m]
      -  })
      -
      -  options.maxBusyTries = options.maxBusyTries || 3
      -  options.emfileWait = options.emfileWait || 1000
      -  if (options.glob === false) {
      -    options.disableGlob = true
      -  }
      -  if (options.disableGlob !== true && glob === undefined) {
      -    throw Error('glob dependency not found, set `options.disableGlob = true` if intentional')
      -  }
      -  options.disableGlob = options.disableGlob || false
      -  options.glob = options.glob || defaultGlobOpts
      -}
      -
      -const rimraf = (p, options, cb) => {
      -  if (typeof options === 'function') {
      -    cb = options
      -    options = {}
      -  }
      -
      -  assert(p, 'rimraf: missing path')
      -  assert.equal(typeof p, 'string', 'rimraf: path should be a string')
      -  assert.equal(typeof cb, 'function', 'rimraf: callback function required')
      -  assert(options, 'rimraf: invalid options argument provided')
      -  assert.equal(typeof options, 'object', 'rimraf: options should be object')
      -
      -  defaults(options)
      -
      -  let busyTries = 0
      -  let errState = null
      -  let n = 0
      -
      -  const next = (er) => {
      -    errState = errState || er
      -    if (--n === 0)
      -      cb(errState)
      -  }
      -
      -  const afterGlob = (er, results) => {
      -    if (er)
      -      return cb(er)
      -
      -    n = results.length
      -    if (n === 0)
      -      return cb()
      -
      -    results.forEach(p => {
      -      const CB = (er) => {
      -        if (er) {
      -          if ((er.code === "EBUSY" || er.code === "ENOTEMPTY" || er.code === "EPERM") &&
      -              busyTries < options.maxBusyTries) {
      -            busyTries ++
      -            // try again, with the same exact callback as this one.
      -            return setTimeout(() => rimraf_(p, options, CB), busyTries * 100)
      -          }
      -
      -          // this one won't happen if graceful-fs is used.
      -          if (er.code === "EMFILE" && timeout < options.emfileWait) {
      -            return setTimeout(() => rimraf_(p, options, CB), timeout ++)
      -          }
      -
      -          // already gone
      -          if (er.code === "ENOENT") er = null
      -        }
      -
      -        timeout = 0
      -        next(er)
      -      }
      -      rimraf_(p, options, CB)
      -    })
      -  }
      -
      -  if (options.disableGlob || !glob.hasMagic(p))
      -    return afterGlob(null, [p])
      -
      -  options.lstat(p, (er, stat) => {
      -    if (!er)
      -      return afterGlob(null, [p])
      -
      -    glob(p, options.glob, afterGlob)
      -  })
      -
      -}
      -
      -// Two possible strategies.
      -// 1. Assume it's a file.  unlink it, then do the dir stuff on EPERM or EISDIR
      -// 2. Assume it's a directory.  readdir, then do the file stuff on ENOTDIR
      -//
      -// Both result in an extra syscall when you guess wrong.  However, there
      -// are likely far more normal files in the world than directories.  This
      -// is based on the assumption that a the average number of files per
      -// directory is >= 1.
      -//
      -// If anyone ever complains about this, then I guess the strategy could
      -// be made configurable somehow.  But until then, YAGNI.
      -const rimraf_ = (p, options, cb) => {
      -  assert(p)
      -  assert(options)
      -  assert(typeof cb === 'function')
      -
      -  // sunos lets the root user unlink directories, which is... weird.
      -  // so we have to lstat here and make sure it's not a dir.
      -  options.lstat(p, (er, st) => {
      -    if (er && er.code === "ENOENT")
      -      return cb(null)
      -
      -    // Windows can EPERM on stat.  Life is suffering.
      -    if (er && er.code === "EPERM" && isWindows)
      -      fixWinEPERM(p, options, er, cb)
      -
      -    if (st && st.isDirectory())
      -      return rmdir(p, options, er, cb)
      -
      -    options.unlink(p, er => {
      -      if (er) {
      -        if (er.code === "ENOENT")
      -          return cb(null)
      -        if (er.code === "EPERM")
      -          return (isWindows)
      -            ? fixWinEPERM(p, options, er, cb)
      -            : rmdir(p, options, er, cb)
      -        if (er.code === "EISDIR")
      -          return rmdir(p, options, er, cb)
      -      }
      -      return cb(er)
      -    })
      -  })
      -}
      -
      -const fixWinEPERM = (p, options, er, cb) => {
      -  assert(p)
      -  assert(options)
      -  assert(typeof cb === 'function')
      -
      -  options.chmod(p, 0o666, er2 => {
      -    if (er2)
      -      cb(er2.code === "ENOENT" ? null : er)
      -    else
      -      options.stat(p, (er3, stats) => {
      -        if (er3)
      -          cb(er3.code === "ENOENT" ? null : er)
      -        else if (stats.isDirectory())
      -          rmdir(p, options, er, cb)
      -        else
      -          options.unlink(p, cb)
      -      })
      -  })
      -}
      -
      -const fixWinEPERMSync = (p, options, er) => {
      -  assert(p)
      -  assert(options)
      -
      -  try {
      -    options.chmodSync(p, 0o666)
      -  } catch (er2) {
      -    if (er2.code === "ENOENT")
      -      return
      -    else
      -      throw er
      -  }
      -
      -  let stats
      -  try {
      -    stats = options.statSync(p)
      -  } catch (er3) {
      -    if (er3.code === "ENOENT")
      -      return
      -    else
      -      throw er
      -  }
      -
      -  if (stats.isDirectory())
      -    rmdirSync(p, options, er)
      -  else
      -    options.unlinkSync(p)
      -}
      -
      -const rmdir = (p, options, originalEr, cb) => {
      -  assert(p)
      -  assert(options)
      -  assert(typeof cb === 'function')
      -
      -  // try to rmdir first, and only readdir on ENOTEMPTY or EEXIST (SunOS)
      -  // if we guessed wrong, and it's not a directory, then
      -  // raise the original error.
      -  options.rmdir(p, er => {
      -    if (er && (er.code === "ENOTEMPTY" || er.code === "EEXIST" || er.code === "EPERM"))
      -      rmkids(p, options, cb)
      -    else if (er && er.code === "ENOTDIR")
      -      cb(originalEr)
      -    else
      -      cb(er)
      -  })
      -}
      -
      -const rmkids = (p, options, cb) => {
      -  assert(p)
      -  assert(options)
      -  assert(typeof cb === 'function')
      -
      -  options.readdir(p, (er, files) => {
      -    if (er)
      -      return cb(er)
      -    let n = files.length
      -    if (n === 0)
      -      return options.rmdir(p, cb)
      -    let errState
      -    files.forEach(f => {
      -      rimraf(path.join(p, f), options, er => {
      -        if (errState)
      -          return
      -        if (er)
      -          return cb(errState = er)
      -        if (--n === 0)
      -          options.rmdir(p, cb)
      -      })
      -    })
      -  })
      -}
      -
      -// this looks simpler, and is strictly *faster*, but will
      -// tie up the JavaScript thread and fail on excessively
      -// deep directory trees.
      -const rimrafSync = (p, options) => {
      -  options = options || {}
      -  defaults(options)
      -
      -  assert(p, 'rimraf: missing path')
      -  assert.equal(typeof p, 'string', 'rimraf: path should be a string')
      -  assert(options, 'rimraf: missing options')
      -  assert.equal(typeof options, 'object', 'rimraf: options should be object')
      -
      -  let results
      -
      -  if (options.disableGlob || !glob.hasMagic(p)) {
      -    results = [p]
      -  } else {
      -    try {
      -      options.lstatSync(p)
      -      results = [p]
      -    } catch (er) {
      -      results = glob.sync(p, options.glob)
      -    }
      -  }
      -
      -  if (!results.length)
      -    return
      -
      -  for (let i = 0; i < results.length; i++) {
      -    const p = results[i]
      -
      -    let st
      -    try {
      -      st = options.lstatSync(p)
      -    } catch (er) {
      -      if (er.code === "ENOENT")
      -        return
      -
      -      // Windows can EPERM on stat.  Life is suffering.
      -      if (er.code === "EPERM" && isWindows)
      -        fixWinEPERMSync(p, options, er)
      -    }
      -
      -    try {
      -      // sunos lets the root user unlink directories, which is... weird.
      -      if (st && st.isDirectory())
      -        rmdirSync(p, options, null)
      -      else
      -        options.unlinkSync(p)
      -    } catch (er) {
      -      if (er.code === "ENOENT")
      -        return
      -      if (er.code === "EPERM")
      -        return isWindows ? fixWinEPERMSync(p, options, er) : rmdirSync(p, options, er)
      -      if (er.code !== "EISDIR")
      -        throw er
      -
      -      rmdirSync(p, options, er)
      -    }
      -  }
      -}
      -
      -const rmdirSync = (p, options, originalEr) => {
      -  assert(p)
      -  assert(options)
      -
      -  try {
      -    options.rmdirSync(p)
      -  } catch (er) {
      -    if (er.code === "ENOENT")
      -      return
      -    if (er.code === "ENOTDIR")
      -      throw originalEr
      -    if (er.code === "ENOTEMPTY" || er.code === "EEXIST" || er.code === "EPERM")
      -      rmkidsSync(p, options)
      -  }
      -}
      -
      -const rmkidsSync = (p, options) => {
      -  assert(p)
      -  assert(options)
      -  options.readdirSync(p).forEach(f => rimrafSync(path.join(p, f), options))
      -
      -  // We only end up here once we got ENOTEMPTY at least once, and
      -  // at this point, we are guaranteed to have removed all the kids.
      -  // So, we know that it won't be ENOENT or ENOTDIR or anything else.
      -  // try really hard to delete stuff on windows, because it has a
      -  // PROFOUNDLY annoying habit of not closing handles promptly when
      -  // files are deleted, resulting in spurious ENOTEMPTY errors.
      -  const retries = isWindows ? 100 : 1
      -  let i = 0
      -  do {
      -    let threw = true
      -    try {
      -      const ret = options.rmdirSync(p, options)
      -      threw = false
      -      return ret
      -    } finally {
      -      if (++i < retries && threw)
      -        continue
      -    }
      -  } while (true)
      -}
      -
      -module.exports = rimraf
      -rimraf.sync = rimrafSync
      diff --git a/deps/npm/node_modules/socks-proxy-agent/dist/index.js b/deps/npm/node_modules/socks-proxy-agent/dist/index.js
      deleted file mode 100644
      index 55b598b7f5ca73..00000000000000
      --- a/deps/npm/node_modules/socks-proxy-agent/dist/index.js
      +++ /dev/null
      @@ -1,197 +0,0 @@
      -"use strict";
      -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
      -    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
      -    return new (P || (P = Promise))(function (resolve, reject) {
      -        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
      -        function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
      -        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
      -        step((generator = generator.apply(thisArg, _arguments || [])).next());
      -    });
      -};
      -var __importDefault = (this && this.__importDefault) || function (mod) {
      -    return (mod && mod.__esModule) ? mod : { "default": mod };
      -};
      -Object.defineProperty(exports, "__esModule", { value: true });
      -exports.SocksProxyAgent = void 0;
      -const socks_1 = require("socks");
      -const agent_base_1 = require("agent-base");
      -const debug_1 = __importDefault(require("debug"));
      -const dns_1 = __importDefault(require("dns"));
      -const tls_1 = __importDefault(require("tls"));
      -const debug = (0, debug_1.default)('socks-proxy-agent');
      -function parseSocksProxy(opts) {
      -    var _a;
      -    let port = 0;
      -    let lookup = false;
      -    let type = 5;
      -    const host = opts.hostname;
      -    if (host == null) {
      -        throw new TypeError('No "host"');
      -    }
      -    if (typeof opts.port === 'number') {
      -        port = opts.port;
      -    }
      -    else if (typeof opts.port === 'string') {
      -        port = parseInt(opts.port, 10);
      -    }
      -    // From RFC 1928, Section 3: https://tools.ietf.org/html/rfc1928#section-3
      -    // "The SOCKS service is conventionally located on TCP port 1080"
      -    if (port == null) {
      -        port = 1080;
      -    }
      -    // figure out if we want socks v4 or v5, based on the "protocol" used.
      -    // Defaults to 5.
      -    if (opts.protocol != null) {
      -        switch (opts.protocol.replace(':', '')) {
      -            case 'socks4':
      -                lookup = true;
      -            // pass through
      -            case 'socks4a':
      -                type = 4;
      -                break;
      -            case 'socks5':
      -                lookup = true;
      -            // pass through
      -            case 'socks': // no version specified, default to 5h
      -            case 'socks5h':
      -                type = 5;
      -                break;
      -            default:
      -                throw new TypeError(`A "socks" protocol must be specified! Got: ${String(opts.protocol)}`);
      -        }
      -    }
      -    if (typeof opts.type !== 'undefined') {
      -        if (opts.type === 4 || opts.type === 5) {
      -            type = opts.type;
      -        }
      -        else {
      -            throw new TypeError(`"type" must be 4 or 5, got: ${String(opts.type)}`);
      -        }
      -    }
      -    const proxy = {
      -        host,
      -        port,
      -        type
      -    };
      -    let userId = (_a = opts.userId) !== null && _a !== void 0 ? _a : opts.username;
      -    let password = opts.password;
      -    if (opts.auth != null) {
      -        const auth = opts.auth.split(':');
      -        userId = auth[0];
      -        password = auth[1];
      -    }
      -    if (userId != null) {
      -        Object.defineProperty(proxy, 'userId', {
      -            value: userId,
      -            enumerable: false
      -        });
      -    }
      -    if (password != null) {
      -        Object.defineProperty(proxy, 'password', {
      -            value: password,
      -            enumerable: false
      -        });
      -    }
      -    return { lookup, proxy };
      -}
      -const normalizeProxyOptions = (input) => {
      -    let proxyOptions;
      -    if (typeof input === 'string') {
      -        proxyOptions = new URL(input);
      -    }
      -    else {
      -        proxyOptions = input;
      -    }
      -    if (proxyOptions == null) {
      -        throw new TypeError('a SOCKS proxy server `host` and `port` must be specified!');
      -    }
      -    return proxyOptions;
      -};
      -class SocksProxyAgent extends agent_base_1.Agent {
      -    constructor(input, options) {
      -        var _a;
      -        const proxyOptions = normalizeProxyOptions(input);
      -        super(proxyOptions);
      -        const parsedProxy = parseSocksProxy(proxyOptions);
      -        this.shouldLookup = parsedProxy.lookup;
      -        this.proxy = parsedProxy.proxy;
      -        this.tlsConnectionOptions = proxyOptions.tls != null ? proxyOptions.tls : {};
      -        this.timeout = (_a = options === null || options === void 0 ? void 0 : options.timeout) !== null && _a !== void 0 ? _a : null;
      -    }
      -    /**
      -     * Initiates a SOCKS connection to the specified SOCKS proxy server,
      -     * which in turn connects to the specified remote host and port.
      -     *
      -     * @api protected
      -     */
      -    callback(req, opts) {
      -        var _a;
      -        return __awaiter(this, void 0, void 0, function* () {
      -            const { shouldLookup, proxy, timeout } = this;
      -            let { host, port, lookup: lookupCallback } = opts;
      -            if (host == null) {
      -                throw new Error('No `host` defined!');
      -            }
      -            if (shouldLookup) {
      -                // Client-side DNS resolution for "4" and "5" socks proxy versions.
      -                host = yield new Promise((resolve, reject) => {
      -                    // Use the request's custom lookup, if one was configured:
      -                    const lookupFn = lookupCallback !== null && lookupCallback !== void 0 ? lookupCallback : dns_1.default.lookup;
      -                    lookupFn(host, {}, (err, res) => {
      -                        if (err) {
      -                            reject(err);
      -                        }
      -                        else {
      -                            resolve(res);
      -                        }
      -                    });
      -                });
      -            }
      -            const socksOpts = {
      -                proxy,
      -                destination: { host, port },
      -                command: 'connect',
      -                timeout: timeout !== null && timeout !== void 0 ? timeout : undefined
      -            };
      -            const cleanup = (tlsSocket) => {
      -                req.destroy();
      -                socket.destroy();
      -                if (tlsSocket)
      -                    tlsSocket.destroy();
      -            };
      -            debug('Creating socks proxy connection: %o', socksOpts);
      -            const { socket } = yield socks_1.SocksClient.createConnection(socksOpts);
      -            debug('Successfully created socks proxy connection');
      -            if (timeout !== null) {
      -                socket.setTimeout(timeout);
      -                socket.on('timeout', () => cleanup());
      -            }
      -            if (opts.secureEndpoint) {
      -                // The proxy is connecting to a TLS server, so upgrade
      -                // this socket connection to a TLS connection.
      -                debug('Upgrading socket connection to TLS');
      -                const servername = (_a = opts.servername) !== null && _a !== void 0 ? _a : opts.host;
      -                const tlsSocket = tls_1.default.connect(Object.assign(Object.assign(Object.assign({}, omit(opts, 'host', 'hostname', 'path', 'port')), { socket,
      -                    servername }), this.tlsConnectionOptions));
      -                tlsSocket.once('error', (error) => {
      -                    debug('socket TLS error', error.message);
      -                    cleanup(tlsSocket);
      -                });
      -                return tlsSocket;
      -            }
      -            return socket;
      -        });
      -    }
      -}
      -exports.SocksProxyAgent = SocksProxyAgent;
      -function omit(obj, ...keys) {
      -    const ret = {};
      -    let key;
      -    for (key in obj) {
      -        if (!keys.includes(key)) {
      -            ret[key] = obj[key];
      -        }
      -    }
      -    return ret;
      -}
      -//# sourceMappingURL=index.js.map
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/socks-proxy-agent/package.json b/deps/npm/node_modules/socks-proxy-agent/package.json
      deleted file mode 100644
      index aa2999969c1743..00000000000000
      --- a/deps/npm/node_modules/socks-proxy-agent/package.json
      +++ /dev/null
      @@ -1,181 +0,0 @@
      -{
      -  "name": "socks-proxy-agent",
      -  "description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
      -  "homepage": "https://github.com/TooTallNate/node-socks-proxy-agent#readme",
      -  "version": "7.0.0",
      -  "main": "dist/index.js",
      -  "author": {
      -    "email": "nathan@tootallnate.net",
      -    "name": "Nathan Rajlich",
      -    "url": "http://n8.io/"
      -  },
      -  "contributors": [
      -    {
      -      "name": "Kiko Beats",
      -      "email": "josefrancisco.verdu@gmail.com"
      -    },
      -    {
      -      "name": "Josh Glazebrook",
      -      "email": "josh@joshglazebrook.com"
      -    },
      -    {
      -      "name": "talmobi",
      -      "email": "talmobi@users.noreply.github.com"
      -    },
      -    {
      -      "name": "Indospace.io",
      -      "email": "justin@indospace.io"
      -    },
      -    {
      -      "name": "Kilian von Pflugk",
      -      "email": "github@jumoog.io"
      -    },
      -    {
      -      "name": "Kyle",
      -      "email": "admin@hk1229.cn"
      -    },
      -    {
      -      "name": "Matheus Fernandes",
      -      "email": "matheus.frndes@gmail.com"
      -    },
      -    {
      -      "name": "Ricky Miller",
      -      "email": "richardkazuomiller@gmail.com"
      -    },
      -    {
      -      "name": "Shantanu Sharma",
      -      "email": "shantanu34@outlook.com"
      -    },
      -    {
      -      "name": "Tim Perry",
      -      "email": "pimterry@gmail.com"
      -    },
      -    {
      -      "name": "Vadim Baryshev",
      -      "email": "vadimbaryshev@gmail.com"
      -    },
      -    {
      -      "name": "jigu",
      -      "email": "luo1257857309@gmail.com"
      -    },
      -    {
      -      "name": "Alba Mendez",
      -      "email": "me@jmendeth.com"
      -    },
      -    {
      -      "name": "Дмитрий Гуденков",
      -      "email": "Dimangud@rambler.ru"
      -    },
      -    {
      -      "name": "Andrei Bitca",
      -      "email": "63638922+andrei-bitca-dc@users.noreply.github.com"
      -    },
      -    {
      -      "name": "Andrew Casey",
      -      "email": "amcasey@users.noreply.github.com"
      -    },
      -    {
      -      "name": "Brandon Ros",
      -      "email": "brandonros1@gmail.com"
      -    },
      -    {
      -      "name": "Dang Duy Thanh",
      -      "email": "thanhdd.it@gmail.com"
      -    },
      -    {
      -      "name": "Dimitar Nestorov",
      -      "email": "8790386+dimitarnestorov@users.noreply.github.com"
      -    }
      -  ],
      -  "repository": {
      -    "type": "git",
      -    "url": "git://github.com/TooTallNate/node-socks-proxy-agent.git"
      -  },
      -  "bugs": {
      -    "url": "https://github.com/TooTallNate/node-socks-proxy-agent/issues"
      -  },
      -  "keywords": [
      -    "agent",
      -    "http",
      -    "https",
      -    "proxy",
      -    "socks",
      -    "socks4",
      -    "socks4a",
      -    "socks5",
      -    "socks5h"
      -  ],
      -  "dependencies": {
      -    "agent-base": "^6.0.2",
      -    "debug": "^4.3.3",
      -    "socks": "^2.6.2"
      -  },
      -  "devDependencies": {
      -    "@commitlint/cli": "latest",
      -    "@commitlint/config-conventional": "latest",
      -    "@types/debug": "latest",
      -    "@types/node": "latest",
      -    "cacheable-lookup": "latest",
      -    "conventional-github-releaser": "latest",
      -    "dns2": "latest",
      -    "finepack": "latest",
      -    "git-authors-cli": "latest",
      -    "mocha": "9",
      -    "nano-staged": "latest",
      -    "npm-check-updates": "latest",
      -    "prettier-standard": "latest",
      -    "raw-body": "latest",
      -    "rimraf": "latest",
      -    "simple-git-hooks": "latest",
      -    "socksv5": "github:TooTallNate/socksv5#fix/dstSock-close-event",
      -    "standard": "latest",
      -    "standard-markdown": "latest",
      -    "standard-version": "latest",
      -    "ts-standard": "latest",
      -    "typescript": "latest"
      -  },
      -  "engines": {
      -    "node": ">= 10"
      -  },
      -  "files": [
      -    "dist"
      -  ],
      -  "scripts": {
      -    "build": "tsc",
      -    "clean": "rimraf node_modules",
      -    "contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
      -    "lint": "ts-standard",
      -    "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
      -    "prebuild": "rimraf dist",
      -    "prepublishOnly": "npm run build",
      -    "prerelease": "npm run update:check && npm run contributors",
      -    "release": "standard-version -a",
      -    "release:github": "conventional-github-releaser -p angular",
      -    "release:tags": "git push --follow-tags origin HEAD:master",
      -    "test": "mocha --reporter spec",
      -    "update": "ncu -u",
      -    "update:check": "ncu -- --error-level 2"
      -  },
      -  "license": "MIT",
      -  "commitlint": {
      -    "extends": [
      -      "@commitlint/config-conventional"
      -    ]
      -  },
      -  "nano-staged": {
      -    "*.js": [
      -      "prettier-standard"
      -    ],
      -    "*.md": [
      -      "standard-markdown"
      -    ],
      -    "package.json": [
      -      "finepack"
      -    ]
      -  },
      -  "simple-git-hooks": {
      -    "commit-msg": "npx commitlint --edit",
      -    "pre-commit": "npx nano-staged"
      -  },
      -  "typings": "dist/index.d.ts"
      -}
      diff --git a/deps/npm/node_modules/spdx-license-ids/deprecated.json b/deps/npm/node_modules/spdx-license-ids/deprecated.json
      index 278531e40c613d..a877dc3efd8bd2 100644
      --- a/deps/npm/node_modules/spdx-license-ids/deprecated.json
      +++ b/deps/npm/node_modules/spdx-license-ids/deprecated.json
      @@ -7,18 +7,24 @@
       	"GFDL-1.2",
       	"GFDL-1.3",
       	"GPL-1.0",
      +	"GPL-1.0+",
       	"GPL-2.0",
      +	"GPL-2.0+",
       	"GPL-2.0-with-GCC-exception",
       	"GPL-2.0-with-autoconf-exception",
       	"GPL-2.0-with-bison-exception",
       	"GPL-2.0-with-classpath-exception",
       	"GPL-2.0-with-font-exception",
       	"GPL-3.0",
      +	"GPL-3.0+",
       	"GPL-3.0-with-GCC-exception",
       	"GPL-3.0-with-autoconf-exception",
       	"LGPL-2.0",
      +	"LGPL-2.0+",
       	"LGPL-2.1",
      +	"LGPL-2.1+",
       	"LGPL-3.0",
      +	"LGPL-3.0+",
       	"Nunit",
       	"StandardML-NJ",
       	"bzip2-1.0.5",
      diff --git a/deps/npm/node_modules/spdx-license-ids/index.json b/deps/npm/node_modules/spdx-license-ids/index.json
      index 04c03126d98eb8..a7b98b24b6273e 100644
      --- a/deps/npm/node_modules/spdx-license-ids/index.json
      +++ b/deps/npm/node_modules/spdx-license-ids/index.json
      @@ -22,10 +22,13 @@
       	"APSL-1.1",
       	"APSL-1.2",
       	"APSL-2.0",
      +	"ASWF-Digital-Assets-1.0",
      +	"ASWF-Digital-Assets-1.1",
       	"Abstyles",
       	"AdaCore-doc",
       	"Adobe-2006",
       	"Adobe-Glyph",
      +	"Adobe-Utopia",
       	"Afmparse",
       	"Aladdin",
       	"Apache-1.0",
      @@ -44,6 +47,7 @@
       	"BSD-3-Clause",
       	"BSD-3-Clause-Attribution",
       	"BSD-3-Clause-Clear",
      +	"BSD-3-Clause-HP",
       	"BSD-3-Clause-LBNL",
       	"BSD-3-Clause-Modification",
       	"BSD-3-Clause-No-Military-License",
      @@ -51,6 +55,8 @@
       	"BSD-3-Clause-No-Nuclear-License-2014",
       	"BSD-3-Clause-No-Nuclear-Warranty",
       	"BSD-3-Clause-Open-MPI",
      +	"BSD-3-Clause-Sun",
      +	"BSD-3-Clause-flex",
       	"BSD-4-Clause",
       	"BSD-4-Clause-Shortened",
       	"BSD-4-Clause-UC",
      @@ -58,8 +64,10 @@
       	"BSD-4.3TAHOE",
       	"BSD-Advertising-Acknowledgement",
       	"BSD-Attribution-HPND-disclaimer",
      +	"BSD-Inferno-Nettverk",
       	"BSD-Protection",
       	"BSD-Source-Code",
      +	"BSD-Systemics",
       	"BSL-1.0",
       	"BUSL-1.1",
       	"Baekmuk",
      @@ -71,6 +79,7 @@
       	"Bitstream-Charter",
       	"Bitstream-Vera",
       	"BlueOak-1.0.0",
      +	"Boehm-GC",
       	"Borceux",
       	"Brian-Gladman-3-Clause",
       	"C-UDA-1.0",
      @@ -125,6 +134,7 @@
       	"CC-BY-SA-3.0",
       	"CC-BY-SA-3.0-AT",
       	"CC-BY-SA-3.0-DE",
      +	"CC-BY-SA-3.0-IGO",
       	"CC-BY-SA-4.0",
       	"CC-PDDC",
       	"CC0-1.0",
      @@ -161,11 +171,13 @@
       	"Community-Spec-1.0",
       	"Condor-1.1",
       	"Cornell-Lossless-JPEG",
      +	"Cronyx",
       	"Crossword",
       	"CrystalStacker",
       	"Cube",
       	"D-FSL-1.0",
       	"DL-DE-BY-2.0",
      +	"DL-DE-ZERO-2.0",
       	"DOC",
       	"DRL-1.0",
       	"DSDP",
      @@ -185,6 +197,7 @@
       	"Entessa",
       	"ErlPL-1.1",
       	"Eurosym",
      +	"FBM",
       	"FDK-AAC",
       	"FSFAP",
       	"FSFUL",
      @@ -192,9 +205,11 @@
       	"FSFULLRWD",
       	"FTL",
       	"Fair",
      +	"Ferguson-Twofish",
       	"Frameworx-1.0",
       	"FreeBSD-DOC",
       	"FreeImage",
      +	"Furuseth",
       	"GD",
       	"GFDL-1.1-invariants-only",
       	"GFDL-1.1-invariants-or-later",
      @@ -227,9 +242,17 @@
       	"Glulxe",
       	"Graphics-Gems",
       	"HP-1986",
      +	"HP-1989",
       	"HPND",
      +	"HPND-DEC",
       	"HPND-Markus-Kuhn",
      +	"HPND-Pbmplus",
      +	"HPND-UC",
      +	"HPND-doc",
      +	"HPND-doc-sell",
       	"HPND-export-US",
      +	"HPND-export-US-modify",
      +	"HPND-sell-regexpr",
       	"HPND-sell-variant",
       	"HPND-sell-variant-MIT-disclaimer",
       	"HTMLTIDY",
      @@ -246,6 +269,7 @@
       	"ImageMagick",
       	"Imlib2",
       	"Info-ZIP",
      +	"Inner-Net-2.0",
       	"Intel",
       	"Intel-ACPI",
       	"Interbase-1.0",
      @@ -254,6 +278,7 @@
       	"JSON",
       	"Jam",
       	"JasPer-2.0",
      +	"Kastrup",
       	"Kazlib",
       	"Knuth-CTAN",
       	"LAL-1.2",
      @@ -276,23 +301,32 @@
       	"LZMA-SDK-9.11-to-9.20",
       	"LZMA-SDK-9.22",
       	"Latex2e",
      +	"Latex2e-translated-notice",
       	"Leptonica",
       	"LiLiQ-P-1.1",
       	"LiLiQ-R-1.1",
       	"LiLiQ-Rplus-1.1",
       	"Libpng",
       	"Linux-OpenIB",
      +	"Linux-man-pages-1-para",
       	"Linux-man-pages-copyleft",
      +	"Linux-man-pages-copyleft-2-para",
      +	"Linux-man-pages-copyleft-var",
      +	"Lucida-Bitmap-Fonts",
       	"MIT",
       	"MIT-0",
       	"MIT-CMU",
      +	"MIT-Festival",
       	"MIT-Modern-Variant",
       	"MIT-Wu",
       	"MIT-advertising",
       	"MIT-enna",
       	"MIT-feh",
       	"MIT-open-group",
      +	"MIT-testregex",
       	"MITNFA",
      +	"MMIXware",
      +	"MPEG-SSG",
       	"MPL-1.0",
       	"MPL-1.1",
       	"MPL-2.0",
      @@ -303,6 +337,7 @@
       	"MTLL",
       	"MakeIndex",
       	"Martin-Birgmeier",
      +	"McPhee-slideshow",
       	"Minpack",
       	"MirOS",
       	"Motosoto",
      @@ -319,6 +354,7 @@
       	"NICTA-1.0",
       	"NIST-PD",
       	"NIST-PD-fallback",
      +	"NIST-Software",
       	"NLOD-1.0",
       	"NLOD-2.0",
       	"NLPL",
      @@ -370,8 +406,10 @@
       	"OLDAP-2.6",
       	"OLDAP-2.7",
       	"OLDAP-2.8",
      +	"OLFL-1.3",
       	"OML",
       	"OPL-1.0",
      +	"OPL-UK-3.0",
       	"OPUBL-1.0",
       	"OSET-PL-2.1",
       	"OSL-1.0",
      @@ -381,6 +419,7 @@
       	"OSL-3.0",
       	"OpenPBS-2.3",
       	"OpenSSL",
      +	"PADL",
       	"PDDL-1.0",
       	"PHP-3.0",
       	"PHP-3.01",
      @@ -409,10 +448,13 @@
       	"SGI-B-1.0",
       	"SGI-B-1.1",
       	"SGI-B-2.0",
      +	"SGI-OpenGL",
      +	"SGP4",
       	"SHL-0.5",
       	"SHL-0.51",
       	"SISSL",
       	"SISSL-1.2",
      +	"SL",
       	"SMLNJ",
       	"SMPPL",
       	"SNIA",
      @@ -427,6 +469,7 @@
       	"Sendmail-8.23",
       	"SimPL-2.0",
       	"Sleepycat",
      +	"Soundex",
       	"Spencer-86",
       	"Spencer-94",
       	"Spencer-99",
      @@ -442,14 +485,18 @@
       	"TPDL",
       	"TPL-1.0",
       	"TTWL",
      +	"TTYP0",
       	"TU-Berlin-1.0",
       	"TU-Berlin-2.0",
      +	"TermReadKey",
       	"UCAR",
       	"UCL-1.0",
       	"UPL-1.0",
      +	"URT-RLE",
       	"Unicode-DFS-2015",
       	"Unicode-DFS-2016",
       	"Unicode-TOU",
      +	"UnixCrypt",
       	"Unlicense",
       	"VOSTROM",
       	"VSL-1.0",
      @@ -459,12 +506,15 @@
       	"W3C-20150513",
       	"WTFPL",
       	"Watcom-1.0",
      +	"Widget-Workshop",
       	"Wsuipa",
       	"X11",
       	"X11-distribute-modifications-variant",
       	"XFree86-1.1",
       	"XSkat",
      +	"Xdebug-1.03",
       	"Xerox",
      +	"Xfig",
       	"Xnet",
       	"YPL-1.0",
       	"YPL-1.1",
      @@ -472,20 +522,24 @@
       	"ZPL-2.0",
       	"ZPL-2.1",
       	"Zed",
      +	"Zeeff",
       	"Zend-2.0",
       	"Zimbra-1.3",
       	"Zimbra-1.4",
       	"Zlib",
       	"blessing",
       	"bzip2-1.0.6",
      +	"check-cvs",
       	"checkmk",
       	"copyleft-next-0.3.0",
       	"copyleft-next-0.3.1",
       	"curl",
       	"diffmark",
      +	"dtoa",
       	"dvipdfm",
       	"eGenix",
       	"etalab-2.0",
      +	"fwlw",
       	"gSOAP-1.3b",
       	"gnuplot",
       	"iMatix",
      @@ -493,12 +547,20 @@
       	"libselinux-1.0",
       	"libtiff",
       	"libutil-David-Nugent",
      +	"lsof",
      +	"magaz",
      +	"metamail",
       	"mpi-permissive",
       	"mpich2",
       	"mplus",
      +	"pnmstitch",
       	"psfrag",
       	"psutils",
      +	"python-ldap",
       	"snprintf",
      +	"ssh-keyscan",
      +	"swrule",
      +	"ulem",
       	"w3m",
       	"xinetd",
       	"xlock",
      diff --git a/deps/npm/node_modules/spdx-license-ids/package.json b/deps/npm/node_modules/spdx-license-ids/package.json
      index ea060776d9cf76..196b02705769a9 100644
      --- a/deps/npm/node_modules/spdx-license-ids/package.json
      +++ b/deps/npm/node_modules/spdx-license-ids/package.json
      @@ -1,6 +1,6 @@
       {
       	"name": "spdx-license-ids",
      -	"version": "3.0.13",
      +	"version": "3.0.16",
       	"description": "A list of SPDX license identifiers",
       	"repository": "jslicense/spdx-license-ids",
       	"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
      @@ -28,10 +28,10 @@
       	],
       	"devDependencies": {
       		"@shinnn/eslint-config": "^7.0.0",
      -		"eslint": "^8.2.0",
      +		"eslint": "^8.49.0",
       		"eslint-formatter-codeframe": "^7.32.1",
       		"rmfr": "^2.0.0",
      -		"tape": "^5.3.1"
      +		"tape": "^5.6.6"
       	},
       	"eslintConfig": {
       		"extends": "@shinnn"
      diff --git a/deps/npm/node_modules/wrappy/LICENSE b/deps/npm/node_modules/wrappy/LICENSE
      deleted file mode 100644
      index 19129e315fe593..00000000000000
      --- a/deps/npm/node_modules/wrappy/LICENSE
      +++ /dev/null
      @@ -1,15 +0,0 @@
      -The ISC License
      -
      -Copyright (c) Isaac Z. Schlueter and Contributors
      -
      -Permission to use, copy, modify, and/or distribute this software for any
      -purpose with or without fee is hereby granted, provided that the above
      -copyright notice and this permission notice appear in all copies.
      -
      -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
      -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      diff --git a/deps/npm/node_modules/wrappy/package.json b/deps/npm/node_modules/wrappy/package.json
      deleted file mode 100644
      index 130752046714d6..00000000000000
      --- a/deps/npm/node_modules/wrappy/package.json
      +++ /dev/null
      @@ -1,29 +0,0 @@
      -{
      -  "name": "wrappy",
      -  "version": "1.0.2",
      -  "description": "Callback wrapping utility",
      -  "main": "wrappy.js",
      -  "files": [
      -    "wrappy.js"
      -  ],
      -  "directories": {
      -    "test": "test"
      -  },
      -  "dependencies": {},
      -  "devDependencies": {
      -    "tap": "^2.3.1"
      -  },
      -  "scripts": {
      -    "test": "tap --coverage test/*.js"
      -  },
      -  "repository": {
      -    "type": "git",
      -    "url": "https://github.com/npm/wrappy"
      -  },
      -  "author": "Isaac Z. Schlueter  (http://blog.izs.me/)",
      -  "license": "ISC",
      -  "bugs": {
      -    "url": "https://github.com/npm/wrappy/issues"
      -  },
      -  "homepage": "https://github.com/npm/wrappy"
      -}
      diff --git a/deps/npm/node_modules/wrappy/wrappy.js b/deps/npm/node_modules/wrappy/wrappy.js
      deleted file mode 100644
      index bb7e7d6fcf70fd..00000000000000
      --- a/deps/npm/node_modules/wrappy/wrappy.js
      +++ /dev/null
      @@ -1,33 +0,0 @@
      -// Returns a wrapper function that returns a wrapped callback
      -// The wrapper function should do some stuff, and return a
      -// presumably different callback function.
      -// This makes sure that own properties are retained, so that
      -// decorations and such are not lost along the way.
      -module.exports = wrappy
      -function wrappy (fn, cb) {
      -  if (fn && cb) return wrappy(fn)(cb)
      -
      -  if (typeof fn !== 'function')
      -    throw new TypeError('need wrapper function')
      -
      -  Object.keys(fn).forEach(function (k) {
      -    wrapper[k] = fn[k]
      -  })
      -
      -  return wrapper
      -
      -  function wrapper() {
      -    var args = new Array(arguments.length)
      -    for (var i = 0; i < args.length; i++) {
      -      args[i] = arguments[i]
      -    }
      -    var ret = fn.apply(this, args)
      -    var cb = args[args.length-1]
      -    if (typeof ret === 'function' && ret !== cb) {
      -      Object.keys(cb).forEach(function (k) {
      -        ret[k] = cb[k]
      -      })
      -    }
      -    return ret
      -  }
      -}
      diff --git a/deps/npm/package.json b/deps/npm/package.json
      index 3246377f0cb725..185b5090cb9a2f 100644
      --- a/deps/npm/package.json
      +++ b/deps/npm/package.json
      @@ -1,5 +1,5 @@
       {
      -  "version": "10.2.0",
      +  "version": "10.2.3",
         "name": "npm",
         "description": "a package manager for JavaScript",
         "workspaces": [
      @@ -52,19 +52,19 @@
         },
         "dependencies": {
           "@isaacs/string-locale-compare": "^1.1.0",
      -    "@npmcli/arborist": "^7.2.0",
      -    "@npmcli/config": "^8.0.0",
      +    "@npmcli/arborist": "^7.2.1",
      +    "@npmcli/config": "^8.0.1",
           "@npmcli/fs": "^3.1.0",
           "@npmcli/map-workspaces": "^3.0.4",
           "@npmcli/package-json": "^5.0.0",
           "@npmcli/promise-spawn": "^7.0.0",
      -    "@npmcli/run-script": "^7.0.1",
      +    "@npmcli/run-script": "^7.0.2",
           "@sigstore/tuf": "^2.1.0",
           "abbrev": "^2.0.0",
           "archy": "~1.0.0",
           "cacache": "^18.0.0",
           "chalk": "^5.3.0",
      -    "ci-info": "^3.8.0",
      +    "ci-info": "^3.9.0",
           "cli-columns": "^4.0.0",
           "cli-table3": "^0.6.3",
           "columnify": "^1.6.0",
      @@ -78,30 +78,30 @@
           "is-cidr": "^4.0.2",
           "json-parse-even-better-errors": "^3.0.0",
           "libnpmaccess": "^8.0.1",
      -    "libnpmdiff": "^6.0.2",
      -    "libnpmexec": "^7.0.2",
      -    "libnpmfund": "^5.0.0",
      +    "libnpmdiff": "^6.0.3",
      +    "libnpmexec": "^7.0.3",
      +    "libnpmfund": "^5.0.1",
           "libnpmhook": "^10.0.0",
           "libnpmorg": "^6.0.1",
      -    "libnpmpack": "^6.0.2",
      +    "libnpmpack": "^6.0.3",
           "libnpmpublish": "^9.0.1",
           "libnpmsearch": "^7.0.0",
           "libnpmteam": "^6.0.0",
      -    "libnpmversion": "^5.0.0",
      +    "libnpmversion": "^5.0.1",
           "make-fetch-happen": "^13.0.0",
           "minimatch": "^9.0.3",
           "minipass": "^7.0.4",
           "minipass-pipeline": "^1.2.4",
           "ms": "^2.1.2",
      -    "node-gyp": "^9.4.0",
      +    "node-gyp": "^10.0.1",
           "nopt": "^7.2.0",
           "normalize-package-data": "^6.0.0",
           "npm-audit-report": "^5.0.0",
      -    "npm-install-checks": "^6.2.0",
      +    "npm-install-checks": "^6.3.0",
           "npm-package-arg": "^11.0.1",
           "npm-pick-manifest": "^9.0.0",
           "npm-profile": "^9.0.0",
      -    "npm-registry-fetch": "^16.0.0",
      +    "npm-registry-fetch": "^16.1.0",
           "npm-user-validate": "^2.0.0",
           "npmlog": "^7.0.1",
           "p-map": "^4.0.0",
      diff --git a/deps/npm/tap-snapshots/test/lib/commands/view.js.test.cjs b/deps/npm/tap-snapshots/test/lib/commands/view.js.test.cjs
      index d5b7a3b4a79068..5248d439afad95 100644
      --- a/deps/npm/tap-snapshots/test/lib/commands/view.js.test.cjs
      +++ b/deps/npm/tap-snapshots/test/lib/commands/view.js.test.cjs
      @@ -315,6 +315,10 @@ maintainers[0].name = 'claudia'
       maintainers[1].name = 'isaacs'
       `
       
      +exports[`test/lib/commands/view.js TAP specific field names fields with empty values > must match snapshot 1`] = `
      +
      +`
      +
       exports[`test/lib/commands/view.js TAP specific field names maintainers with email > must match snapshot 1`] = `
       maintainers = [
         { name: 'claudia', email: 'c@yellow.com', twitter: 'cyellow' },
      diff --git a/deps/npm/tap-snapshots/test/lib/utils/error-message.js.test.cjs b/deps/npm/tap-snapshots/test/lib/utils/error-message.js.test.cjs
      index 1cd3d4cf1ac567..fe581fb6beb291 100644
      --- a/deps/npm/tap-snapshots/test/lib/utils/error-message.js.test.cjs
      +++ b/deps/npm/tap-snapshots/test/lib/utils/error-message.js.test.cjs
      @@ -1137,7 +1137,7 @@ Object {
           Array [
             "",
             String(
      -        To correct this please trying logging in again with:
      +        To correct this please try logging in again with:
                   npm login
             ),
           ],
      diff --git a/deps/npm/test/bin/windows-shims.js b/deps/npm/test/bin/windows-shims.js
      index 5e8a75842293d7..5fa6ff142b7377 100644
      --- a/deps/npm/test/bin/windows-shims.js
      +++ b/deps/npm/test/bin/windows-shims.js
      @@ -1,20 +1,23 @@
       const t = require('tap')
       const { spawnSync } = require('child_process')
       const { resolve, join, extname, basename, sep } = require('path')
      -const { copyFileSync, readFileSync, chmodSync, readdirSync, rmSync } = require('fs')
      +const { copyFileSync, readFileSync, chmodSync, readdirSync, rmSync, statSync } = require('fs')
       const Diff = require('diff')
       const { sync: which } = require('which')
       const { version } = require('../../package.json')
       
      -const ROOT = resolve(__dirname, '../..')
      -const BIN = join(ROOT, 'bin')
      -const SHIMS = readdirSync(BIN).reduce((acc, shim) => {
      -  if (extname(shim) !== '.js') {
      -    acc[shim] = readFileSync(join(BIN, shim), 'utf-8')
      +const readNonJsFiles = (dir) => readdirSync(dir).reduce((acc, shim) => {
      +  const p = join(dir, shim)
      +  if (extname(p) !== '.js' && !statSync(p).isDirectory()) {
      +    acc[shim] = readFileSync(p, 'utf-8')
         }
         return acc
       }, {})
       
      +const ROOT = resolve(__dirname, '../..')
      +const BIN = join(ROOT, 'bin')
      +const SHIMS = readNonJsFiles(BIN)
      +const NODE_GYP = readNonJsFiles(join(BIN, 'node-gyp-bin'))
       const SHIM_EXTS = [...new Set(Object.keys(SHIMS).map(p => extname(p)))]
       
       // windows requires each segment of a command path to be quoted when using shell: true
      @@ -63,6 +66,21 @@ t.test('shim contents', t => {
         })
       })
       
      +t.test('node-gyp', t => {
      +  // these files need to exist to avoid breaking yarn 1.x
      +
      +  for (const [key, file] of Object.entries(NODE_GYP)) {
      +    t.match(file, /npm_config_node_gyp/, `${key} contains env var`)
      +    t.match(
      +      file,
      +      /[\\/]\.\.[\\/]\.\.[\\/]node_modules[\\/]node-gyp[\\/]bin[\\/]node-gyp\.js/,
      +      `${key} contains path`
      +    )
      +  }
      +
      +  t.end()
      +})
      +
       t.test('run shims', t => {
         const path = t.testdir({
           ...SHIMS,
      diff --git a/deps/npm/test/lib/commands/audit.js b/deps/npm/test/lib/commands/audit.js
      index 25ced6655e654a..623c7b6485159f 100644
      --- a/deps/npm/test/lib/commands/audit.js
      +++ b/deps/npm/test/lib/commands/audit.js
      @@ -1393,7 +1393,7 @@ t.test('audit signatures', async t => {
       
           await t.rejects(
             npm.exec('audit', ['signatures']),
      -      /found no dependencies to audit that where installed from a supported registry/
      +      /found no dependencies to audit that were installed from a supported registry/
           )
         })
       
      @@ -1424,7 +1424,7 @@ t.test('audit signatures', async t => {
       
           await t.rejects(
             npm.exec('audit', ['signatures']),
      -      /found no dependencies to audit that where installed from a supported registry/
      +      /found no dependencies to audit that were installed from a supported registry/
           )
         })
       
      @@ -1766,7 +1766,7 @@ t.test('audit signatures', async t => {
       
           await t.rejects(
             npm.exec('audit', ['signatures']),
      -      /found no dependencies to audit that where installed from a supported registry/
      +      /found no dependencies to audit that were installed from a supported registry/
           )
         })
       
      @@ -1787,7 +1787,7 @@ t.test('audit signatures', async t => {
       
           await t.rejects(
             npm.exec('audit', ['signatures']),
      -      /found no dependencies to audit that where installed from a supported registry/
      +      /found no dependencies to audit that were installed from a supported registry/
           )
         })
       
      @@ -1815,7 +1815,7 @@ t.test('audit signatures', async t => {
       
           await t.rejects(
             npm.exec('audit', ['signatures']),
      -      /found no dependencies to audit that where installed from a supported registry/
      +      /found no dependencies to audit that were installed from a supported registry/
           )
         })
       
      @@ -1844,7 +1844,7 @@ t.test('audit signatures', async t => {
       
           await t.rejects(
             npm.exec('audit', ['signatures']),
      -      /found no dependencies to audit that where installed from a supported registry/
      +      /found no dependencies to audit that were installed from a supported registry/
           )
         })
       
      diff --git a/deps/npm/test/lib/commands/link.js b/deps/npm/test/lib/commands/link.js
      index 65792fd141acba..85bada28d67b1e 100644
      --- a/deps/npm/test/lib/commands/link.js
      +++ b/deps/npm/test/lib/commands/link.js
      @@ -369,6 +369,40 @@ t.test('link pkg already in global space when prefix is a symlink', async t => {
         t.matchSnapshot(await printLinks(), 'should create a local symlink to global pkg')
       })
       
      +t.test('should not save link to package file', async t => {
      +  const { link, prefix } = await mockLink(t, {
      +    globalPrefixDir: {
      +      node_modules: {
      +        '@myscope': {
      +          linked: t.fixture('symlink', '../../../other/scoped-linked'),
      +        },
      +      },
      +    },
      +    otherDirs: {
      +      'scoped-linked': {
      +        'package.json': JSON.stringify({
      +          name: '@myscope/linked',
      +          version: '1.0.0',
      +        }),
      +      },
      +    },
      +    prefixDir: {
      +      'package.json': JSON.stringify({
      +        name: 'my-project',
      +        version: '1.0.0',
      +      }),
      +    },
      +    config: { save: false },
      +  })
      +
      +  await link.exec(['@myscope/linked'])
      +  t.match(
      +    require(resolve(prefix, 'package.json')).dependencies,
      +    undefined,
      +    'should not save to package.json upon linking'
      +  )
      +})
      +
       t.test('should not prune dependencies when linking packages', async t => {
         const { link, prefix } = await mockLink(t, {
           globalPrefixDir: {
      diff --git a/deps/npm/test/lib/commands/logout.js b/deps/npm/test/lib/commands/logout.js
      index 4ff21665f30354..881003729ab4a1 100644
      --- a/deps/npm/test/lib/commands/logout.js
      +++ b/deps/npm/test/lib/commands/logout.js
      @@ -1,170 +1,154 @@
       const t = require('tap')
       const fs = require('fs/promises')
      -const npmFetch = require('npm-registry-fetch')
      -const mockNpm = require('../../fixtures/mock-npm')
      +const { load: loadMockNpm } = require('../../fixtures/mock-npm.js')
      +const MockRegistry = require('@npmcli/mock-registry')
       const { join } = require('path')
       
      -const mockLogout = async (t, { userRc = [], ...npmOpts } = {}) => {
      -  let result = null
      -
      -  const mock = await mockNpm(t, {
      -    command: 'logout',
      -    mocks: {
      -      // XXX: refactor to use mock registry
      -      'npm-registry-fetch': Object.assign(async (url, opts) => {
      -        result = { url, opts }
      -      }, npmFetch),
      -    },
      -    ...npmOpts,
      +t.test('token logout - user config', async t => {
      +  const { npm, home, logs } = await loadMockNpm(t, {
           homeDir: {
      -      '.npmrc': userRc.join('\n'),
      +      '.npmrc': [
      +        '//registry.npmjs.org/:_authToken=@foo/',
      +        'other-config=true',
      +      ].join('\n'),
           },
         })
       
      -  return {
      -    ...mock,
      -    result: () => result,
      -    // get only the message portion of the verbose log from the command
      -    logMsg: () => mock.logs.verbose.find(l => l[0] === 'logout')[1],
      -    userRc: () => fs.readFile(join(mock.home, '.npmrc'), 'utf-8').then(r => r.trim()),
      -  }
      -}
      -
      -t.test('token logout', async t => {
      -  const { logout, logMsg, result, userRc } = await mockLogout(t, {
      -    userRc: [
      -      '//registry.npmjs.org/:_authToken=@foo/',
      -      'other-config=true',
      -    ],
      -  })
      -
      -  await logout.exec([])
      -
      +  const mockRegistry = new MockRegistry({ tap: t, registry: 'https://registry.npmjs.org/' })
      +  mockRegistry.logout('@foo/')
      +  await npm.exec('logout', [])
         t.equal(
      -    logMsg(),
      +    logs.verbose.find(l => l[0] === 'logout')[1],
           'clearing token for https://registry.npmjs.org/',
           'should log message with correct registry'
         )
      +  const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8')
      +  t.equal(userRc.trim(), 'other-config=true')
      +})
       
      -  t.match(
      -    result(),
      -    {
      -      url: '/-/user/token/%40foo%2F',
      -      opts: {
      -        registry: 'https://registry.npmjs.org/',
      -        scope: '',
      -        '//registry.npmjs.org/:_authToken': '@foo/',
      -        method: 'DELETE',
      -        ignoreBody: true,
      -      },
      +t.test('token scoped logout - user config', async t => {
      +  const { npm, home, logs } = await loadMockNpm(t, {
      +    config: {
      +      scope: '@myscope',
           },
      -    'should call npm-registry-fetch with expected values'
      -  )
      -
      -  t.equal(await userRc(), 'other-config=true')
      -})
      +    homeDir: {
      +      '.npmrc': [
      +        '//diff-registry.npmjs.com/:_authToken=@bar/',
      +        '//registry.npmjs.org/:_authToken=@foo/',
      +        '@myscope:registry=https://diff-registry.npmjs.com/',
       
      -t.test('token scoped logout', async t => {
      -  const { logout, logMsg, result, userRc } = await mockLogout(t, {
      -    config: { scope: '@myscope' },
      -    userRc: [
      -      '//diff-registry.npmjs.com/:_authToken=@bar/',
      -      '//registry.npmjs.org/:_authToken=@foo/',
      -      '@myscope:registry=https://diff-registry.npmjs.com/',
      -    ],
      +      ].join('\n'),
      +    },
         })
       
      -  await logout.exec([])
      -
      +  const mockRegistry = new MockRegistry({ tap: t, registry: 'https://diff-registry.npmjs.com/' })
      +  mockRegistry.logout('@bar/')
      +  await npm.exec('logout', [])
         t.equal(
      -    logMsg(),
      +    logs.verbose.find(l => l[0] === 'logout')[1],
           'clearing token for https://diff-registry.npmjs.com/',
           'should log message with correct registry'
         )
       
      -  t.match(
      -    result(),
      -    {
      -      url: '/-/user/token/%40bar%2F',
      -      opts: {
      -        registry: 'https://registry.npmjs.org/',
      -        '@myscope:registry': 'https://diff-registry.npmjs.com/',
      -        scope: '@myscope',
      -        '//registry.npmjs.org/:_authToken': '@foo/', // <- removed by npm-registry-fetch
      -        '//diff-registry.npmjs.com/:_authToken': '@bar/',
      -        method: 'DELETE',
      -        ignoreBody: true,
      -      },
      -    },
      -    'should call npm-registry-fetch with expected values'
      -  )
      -
      -  t.equal(await userRc(), '//registry.npmjs.org/:_authToken=@foo/')
      +  const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8')
      +  t.equal(userRc.trim(), '//registry.npmjs.org/:_authToken=@foo/')
       })
       
      -t.test('user/pass logout', async t => {
      -  const { logout, logMsg, userRc } = await mockLogout(t, {
      -    userRc: [
      -      '//registry.npmjs.org/:username=foo',
      -      '//registry.npmjs.org/:_password=bar',
      -      'other-config=true',
      -    ],
      +t.test('user/pass logout - user config', async t => {
      +  const { npm, home, logs } = await loadMockNpm(t, {
      +    homeDir: {
      +      '.npmrc': [
      +        '//registry.npmjs.org/:username=foo',
      +        '//registry.npmjs.org/:_password=bar',
      +        'other-config=true',
      +      ].join('\n'),
      +    },
         })
       
      -  await logout.exec([])
      -
      +  await npm.exec('logout', [])
         t.equal(
      -    logMsg(),
      +    logs.verbose.find(l => l[0] === 'logout')[1],
           'clearing user credentials for https://registry.npmjs.org/',
           'should log message with correct registry'
         )
       
      -  t.equal(await userRc(), 'other-config=true')
      +  const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8')
      +  t.equal(userRc.trim(), 'other-config=true')
       })
       
       t.test('missing credentials', async t => {
      -  const { logout } = await mockLogout(t)
      +  const { npm } = await loadMockNpm(t)
       
         await t.rejects(
      -    logout.exec([]),
      +    npm.exec('logout', []),
           {
             code: 'ENEEDAUTH',
             message: /not logged in to https:\/\/registry.npmjs.org\/, so can't log out!/,
           },
      -    'should throw with expected error code'
      +    'should reject with expected error code'
         )
       })
       
       t.test('ignore invalid scoped registry config', async t => {
      -  const { logout, logMsg, result, userRc } = await mockLogout(t, {
      +  const { npm, home, logs } = await loadMockNpm(t, {
           config: { scope: '@myscope' },
      -    userRc: [
      -      '//registry.npmjs.org/:_authToken=@foo/',
      -      'other-config=true',
      -    ],
      +    homeDir: {
      +      '.npmrc': [
      +        '//registry.npmjs.org/:_authToken=@foo/',
      +        'other-config=true',
      +
      +      ].join('\n'),
      +    },
         })
       
      -  await logout.exec([])
      +  const mockRegistry = new MockRegistry({ tap: t, registry: 'https://registry.npmjs.org/' })
      +  mockRegistry.logout('@foo/')
      +  await npm.exec('logout', [])
       
         t.equal(
      -    logMsg(),
      +    logs.verbose.find(l => l[0] === 'logout')[1],
           'clearing token for https://registry.npmjs.org/',
           'should log message with correct registry'
         )
      +  const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8')
      +  t.equal(userRc.trim(), 'other-config=true')
      +})
       
      -  t.match(
      -    result(),
      -    {
      -      url: '/-/user/token/%40foo%2F',
      -      opts: {
      -        '//registry.npmjs.org/:_authToken': '@foo/',
      -        registry: 'https://registry.npmjs.org/',
      -        method: 'DELETE',
      -        ignoreBody: true,
      -      },
      +t.test('token logout - project config', async t => {
      +  const { npm, home, logs, prefix } = await loadMockNpm(t, {
      +    homeDir: {
      +      '.npmrc': [
      +        '//registry.npmjs.org/:_authToken=@foo/',
      +        'other-config=true',
      +      ].join('\n'),
           },
      -    'should call npm-registry-fetch with expected values'
      -  )
      +    prefixDir: {
      +      '.npmrc': [
      +        '//registry.npmjs.org/:_authToken=@bar/',
      +        'other-config=true',
      +      ].join('\n'),
      +    },
      +  })
       
      -  t.equal(await userRc(), 'other-config=true')
      +  const mockRegistry = new MockRegistry({ tap: t, registry: 'https://registry.npmjs.org/' })
      +  mockRegistry.logout('@bar/')
      +  await npm.exec('logout', [])
      +
      +  t.equal(
      +    logs.verbose.find(l => l[0] === 'logout')[1],
      +    'clearing token for https://registry.npmjs.org/',
      +    'should log message with correct registry'
      +  )
      +  const userRc = await fs.readFile(join(home, '.npmrc'), 'utf-8')
      +  t.equal(userRc.trim(), [
      +    '//registry.npmjs.org/:_authToken=@foo/',
      +    'other-config=true',
      +  ].join('\n'), 'leaves user config alone')
      +  t.equal(
      +    logs.verbose.find(l => l[0] === 'logout')[1],
      +    'clearing token for https://registry.npmjs.org/',
      +    'should log message with correct registry'
      +  )
      +  const projectRc = await fs.readFile(join(prefix, '.npmrc'), 'utf-8')
      +  t.equal(projectRc.trim(), 'other-config=true', 'removes project config')
       })
      diff --git a/deps/npm/test/lib/commands/pkg.js b/deps/npm/test/lib/commands/pkg.js
      index e915ef942410f5..f3401bde5226a8 100644
      --- a/deps/npm/test/lib/commands/pkg.js
      +++ b/deps/npm/test/lib/commands/pkg.js
      @@ -83,6 +83,50 @@ t.test('get single arg', async t => {
         )
       })
       
      +t.test('get multiple arg', async t => {
      +  const { pkg, OUTPUT } = await mockNpm(t, {
      +    prefixDir: {
      +      'package.json': JSON.stringify({
      +        name: 'foo',
      +        version: '1.1.1',
      +      }),
      +    },
      +  })
      +
      +  await pkg('get', 'name', 'version')
      +
      +  t.strictSame(
      +    JSON.parse(OUTPUT()),
      +    {
      +      name: 'foo',
      +      version: '1.1.1',
      +    },
      +    'should print retrieved package.json field'
      +  )
      +})
      +
      +t.test('get multiple arg with empty value', async t => {
      +  const { pkg, OUTPUT } = await mockNpm(t, {
      +    prefixDir: {
      +      'package.json': JSON.stringify({
      +        name: 'foo',
      +        author: '',
      +      }),
      +    },
      +  })
      +
      +  await pkg('get', 'name', 'author')
      +
      +  t.strictSame(
      +    JSON.parse(OUTPUT()),
      +    {
      +      name: 'foo',
      +      author: '',
      +    },
      +    'should print retrieved package.json field regardless of empty value'
      +  )
      +})
      +
       t.test('get nested arg', async t => {
         const { pkg, OUTPUT } = await mockNpm(t, {
           prefixDir: {
      diff --git a/deps/npm/test/lib/commands/view.js b/deps/npm/test/lib/commands/view.js
      index ca07ef9eec2ff6..a99c8d6242212c 100644
      --- a/deps/npm/test/lib/commands/view.js
      +++ b/deps/npm/test/lib/commands/view.js
      @@ -101,6 +101,7 @@ const packument = (nv, opts) => {
               email: 'foo@yellow.com',
               twitter: 'foo',
             },
      +      empty: '',
             readme: 'a very useful readme',
             versions: {
               '1.0.0': {
      @@ -425,6 +426,11 @@ t.test('specific field names', async t => {
           await view.exec(['yellow@1.x.x', 'maintainers.name'])
           t.matchSnapshot(outputs.join('\n'))
         })
      +
      +  t.test('fields with empty values', async t => {
      +    await view.exec(['yellow', 'empty'])
      +    t.matchSnapshot(outputs.join('\n'))
      +  })
       })
       
       t.test('throw error if global mode', async t => {
      diff --git a/deps/openssl/BUILD.gn b/deps/openssl/BUILD.gn
      new file mode 100644
      index 00000000000000..7d2db10a84c6c4
      --- /dev/null
      +++ b/deps/openssl/BUILD.gn
      @@ -0,0 +1,14 @@
      +##############################################################################
      +#                                                                            #
      +#                       DO NOT EDIT THIS FILE!                               #
      +#                                                                            #
      +##############################################################################
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please modify the gyp files if you are making changes to build system.
      +
      +import("unofficial.gni")
      +
      +openssl_gn_build("openssl") {
      +}
      diff --git a/deps/openssl/config/archs/BSD-x86/asm/configdata.pm b/deps/openssl/config/archs/BSD-x86/asm/configdata.pm
      index 667d9eb6c472cd..2eec8ceaa21cb7 100644
      --- a/deps/openssl/config/archs/BSD-x86/asm/configdata.pm
      +++ b/deps/openssl/config/archs/BSD-x86/asm/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -203,7 +203,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -255,11 +255,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "BSD-x86",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/BSD-x86/asm/crypto/buildinf.h b/deps/openssl/config/archs/BSD-x86/asm/crypto/buildinf.h
      index c83c080bcb3ade..b5d8c7c8adce23 100644
      --- a/deps/openssl/config/archs/BSD-x86/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/BSD-x86/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: BSD-x86"
      -#define DATE "built on: Sun Aug  6 00:25:19 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:48:37 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/BSD-x86/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/BSD-x86/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/BSD-x86/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/BSD-x86/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/BSD-x86/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/BSD-x86/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/BSD-x86/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/BSD-x86/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/BSD-x86/asm_avx2/configdata.pm b/deps/openssl/config/archs/BSD-x86/asm_avx2/configdata.pm
      index d21a502b43b514..b9fef9eebf98a6 100644
      --- a/deps/openssl/config/archs/BSD-x86/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/BSD-x86/asm_avx2/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -203,7 +203,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -255,11 +255,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "BSD-x86",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/BSD-x86/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/BSD-x86/asm_avx2/crypto/buildinf.h
      index b3e839decc98ce..4b373bd0dc21f4 100644
      --- a/deps/openssl/config/archs/BSD-x86/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/BSD-x86/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: BSD-x86"
      -#define DATE "built on: Sun Aug  6 00:25:40 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:48:56 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/BSD-x86/no-asm/configdata.pm b/deps/openssl/config/archs/BSD-x86/no-asm/configdata.pm
      index df06e22c5669e8..65137fe6dcc5b3 100644
      --- a/deps/openssl/config/archs/BSD-x86/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/BSD-x86/no-asm/configdata.pm
      @@ -154,7 +154,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -202,7 +202,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -255,11 +255,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "BSD-x86",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/BSD-x86/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/BSD-x86/no-asm/crypto/buildinf.h
      index 0b2dc3af6c4db6..edf452c92abb33 100644
      --- a/deps/openssl/config/archs/BSD-x86/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/BSD-x86/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: BSD-x86"
      -#define DATE "built on: Sun Aug  6 00:26:00 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:49:16 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/BSD-x86_64/asm/configdata.pm b/deps/openssl/config/archs/BSD-x86_64/asm/configdata.pm
      index f3476682006a8a..82a08c7ee72579 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/asm/configdata.pm
      +++ b/deps/openssl/config/archs/BSD-x86_64/asm/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -203,7 +203,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -255,11 +255,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "BSD-x86_64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/BSD-x86_64/asm/crypto/buildinf.h b/deps/openssl/config/archs/BSD-x86_64/asm/crypto/buildinf.h
      index 8220828c4d379e..9b2212f3ae4bd1 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/BSD-x86_64/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: BSD-x86_64"
      -#define DATE "built on: Sun Aug  6 00:26:19 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:49:35 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/BSD-x86_64/asm_avx2/configdata.pm b/deps/openssl/config/archs/BSD-x86_64/asm_avx2/configdata.pm
      index 07333980e3d535..397887f1e385f7 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/BSD-x86_64/asm_avx2/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -203,7 +203,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -255,11 +255,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "BSD-x86_64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h
      index 0141bc595c4669..1148cc2a577c0c 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: BSD-x86_64"
      -#define DATE "built on: Sun Aug  6 00:26:43 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:49:58 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/BSD-x86_64/no-asm/configdata.pm b/deps/openssl/config/archs/BSD-x86_64/no-asm/configdata.pm
      index daa479b8c190aa..3a36a6286ecc1e 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/BSD-x86_64/no-asm/configdata.pm
      @@ -154,7 +154,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -202,7 +202,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -255,11 +255,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "BSD-x86_64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/BSD-x86_64/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/BSD-x86_64/no-asm/crypto/buildinf.h
      index f1fbc792476400..d9add13d2a3d32 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/BSD-x86_64/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: BSD-x86_64"
      -#define DATE "built on: Sun Aug  6 00:27:07 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:50:22 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/BSD-x86_64/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/BSD-x86_64/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/BSD-x86_64/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/BSD-x86_64/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/VC-WIN32/asm/configdata.pm b/deps/openssl/config/archs/VC-WIN32/asm/configdata.pm
      index ca62a99b20e7e9..8bf601f3902773 100644
      --- a/deps/openssl/config/archs/VC-WIN32/asm/configdata.pm
      +++ b/deps/openssl/config/archs/VC-WIN32/asm/configdata.pm
      @@ -165,7 +165,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -216,7 +216,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -268,11 +268,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "VC-WIN32",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "lib",
      @@ -287,7 +287,7 @@ our %target = (
           "LDFLAGS" => "/nologo /debug",
           "MT" => "mt",
           "MTFLAGS" => "-nologo",
      -    "RANLIB" => "CODE(0x55c06cf5ea80)",
      +    "RANLIB" => "CODE(0x558d4506ace0)",
           "RC" => "rc",
           "_conf_fname_int" => [
               "Configurations/00-base-templates.conf",
      diff --git a/deps/openssl/config/archs/VC-WIN32/asm/crypto/buildinf.h b/deps/openssl/config/archs/VC-WIN32/asm/crypto/buildinf.h
      index b4978c23fed544..8a88b5d57d37eb 100644
      --- a/deps/openssl/config/archs/VC-WIN32/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/VC-WIN32/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: "
      -#define DATE "built on: Sun Aug  6 00:43:26 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:04:24 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/opensslv.h
      index 38b44f1054ad3d..a410f0eddf361c 100644
      --- a/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/pkcs7.h
      index 3978fd087bca3b..0a95a93e59e262 100644
      --- a/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/VC-WIN32/asm_avx2/configdata.pm b/deps/openssl/config/archs/VC-WIN32/asm_avx2/configdata.pm
      index 62ccddd60f494f..b0c0b52ee69d56 100644
      --- a/deps/openssl/config/archs/VC-WIN32/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/VC-WIN32/asm_avx2/configdata.pm
      @@ -165,7 +165,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -216,7 +216,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -268,11 +268,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "VC-WIN32",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "lib",
      @@ -287,7 +287,7 @@ our %target = (
           "LDFLAGS" => "/nologo /debug",
           "MT" => "mt",
           "MTFLAGS" => "-nologo",
      -    "RANLIB" => "CODE(0x55b8a711a640)",
      +    "RANLIB" => "CODE(0x55f14f6dce20)",
           "RC" => "rc",
           "_conf_fname_int" => [
               "Configurations/00-base-templates.conf",
      diff --git a/deps/openssl/config/archs/VC-WIN32/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/VC-WIN32/asm_avx2/crypto/buildinf.h
      index 00774a2a9b5c85..82019d38ddffd7 100644
      --- a/deps/openssl/config/archs/VC-WIN32/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/VC-WIN32/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: "
      -#define DATE "built on: Sun Aug  6 00:43:47 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:04:43 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h
      index 38b44f1054ad3d..a410f0eddf361c 100644
      --- a/deps/openssl/config/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/VC-WIN32/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/VC-WIN32/asm_avx2/include/openssl/pkcs7.h
      index 3978fd087bca3b..0a95a93e59e262 100644
      --- a/deps/openssl/config/archs/VC-WIN32/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/VC-WIN32/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/VC-WIN32/no-asm/configdata.pm b/deps/openssl/config/archs/VC-WIN32/no-asm/configdata.pm
      index 9a5d93c30fa1ab..40491bd28bd763 100644
      --- a/deps/openssl/config/archs/VC-WIN32/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/VC-WIN32/no-asm/configdata.pm
      @@ -163,7 +163,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -215,7 +215,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -268,11 +268,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "VC-WIN32",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "lib",
      @@ -287,7 +287,7 @@ our %target = (
           "LDFLAGS" => "/nologo /debug",
           "MT" => "mt",
           "MTFLAGS" => "-nologo",
      -    "RANLIB" => "CODE(0x55ac94d0db28)",
      +    "RANLIB" => "CODE(0x55dfb3e6a5e8)",
           "RC" => "rc",
           "_conf_fname_int" => [
               "Configurations/00-base-templates.conf",
      diff --git a/deps/openssl/config/archs/VC-WIN32/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/VC-WIN32/no-asm/crypto/buildinf.h
      index b19b8b48b13928..3894b1e4a023f9 100644
      --- a/deps/openssl/config/archs/VC-WIN32/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/VC-WIN32/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: "
      -#define DATE "built on: Sun Aug  6 00:44:09 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:05:01 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/opensslv.h
      index 38b44f1054ad3d..a410f0eddf361c 100644
      --- a/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/pkcs7.h
      index 3978fd087bca3b..0a95a93e59e262 100644
      --- a/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/configdata.pm b/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/configdata.pm
      index 4c747db9cfb5c7..e450e0c1904e51 100644
      --- a/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/configdata.pm
      @@ -163,7 +163,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -213,7 +213,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -266,11 +266,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "VC-WIN64-ARM",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "lib",
      @@ -283,7 +283,7 @@ our %target = (
           "LDFLAGS" => "/nologo /debug",
           "MT" => "mt",
           "MTFLAGS" => "-nologo",
      -    "RANLIB" => "CODE(0x56025ddf3078)",
      +    "RANLIB" => "CODE(0x55619ad3d968)",
           "RC" => "rc",
           "_conf_fname_int" => [
               "Configurations/00-base-templates.conf",
      diff --git a/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h
      index f32efe5d98eca3..2611edb7bd6bf2 100644
      --- a/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: VC-WIN64-ARM"
      -#define DATE "built on: Sun Aug  6 00:44:29 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:05:18 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h
      index 38b44f1054ad3d..a410f0eddf361c 100644
      --- a/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/include/openssl/pkcs7.h
      index 3978fd087bca3b..0a95a93e59e262 100644
      --- a/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm/configdata.pm b/deps/openssl/config/archs/VC-WIN64A/asm/configdata.pm
      index 80443a734d38e4..ca90ef75c27121 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm/configdata.pm
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm/configdata.pm
      @@ -168,7 +168,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -219,7 +219,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -271,11 +271,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "VC-WIN64A",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "lib",
      @@ -290,7 +290,7 @@ our %target = (
           "LDFLAGS" => "/nologo /debug",
           "MT" => "mt",
           "MTFLAGS" => "-nologo",
      -    "RANLIB" => "CODE(0x56532d60fad0)",
      +    "RANLIB" => "CODE(0x559ccffc4580)",
           "RC" => "rc",
           "_conf_fname_int" => [
               "Configurations/00-base-templates.conf",
      @@ -356,7 +356,7 @@ our %target = (
           "mtoutflag" => "-outputresource:",
           "multilib" => "-x64",
           "perl_platform" => "Windows::MSVC",
      -    "perlasm_scheme" => "auto",
      +    "perlasm_scheme" => "nasm",
           "rcoutflag" => "/fo",
           "shared_cflag" => "",
           "shared_defflag" => "",
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm/crypto/buildinf.h b/deps/openssl/config/archs/VC-WIN64A/asm/crypto/buildinf.h
      index 06a91884502b77..8daa2d52f03a84 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: "
      -#define DATE "built on: Sun Aug  6 00:42:10 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:03:22 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm/crypto/poly1305/poly1305-x86_64.asm b/deps/openssl/config/archs/VC-WIN64A/asm/crypto/poly1305/poly1305-x86_64.asm
      index 26f683384d1806..fb3823608c949b 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm/crypto/poly1305/poly1305-x86_64.asm
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm/crypto/poly1305/poly1305-x86_64.asm
      @@ -46,11 +46,6 @@ $L$SEH_begin_poly1305_init:
       	lea	rax,[poly1305_blocks_avx2]
       	bt	r9,37
       	cmovc	r10,rax
      -	mov	rax,2149646336
      -	shr	r9,32
      -	and	r9,rax
      -	cmp	r9,rax
      -	je	NEAR $L$init_base2_44
       	mov	rax,0x0ffffffc0fffffff
       	mov	rcx,0x0ffffffc0ffffffc
       	and	rax,QWORD[rsi]
      @@ -2605,1029 +2600,6 @@ $L$do_avx512_epilogue:
       	DB	0F3h,0C3h		;repret
       
       $L$SEH_end_poly1305_blocks_avx512:
      -
      -ALIGN	32
      -poly1305_init_base2_44:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_init_base2_44:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -
      -
      -
      -	xor	rax,rax
      -	mov	QWORD[rdi],rax
      -	mov	QWORD[8+rdi],rax
      -	mov	QWORD[16+rdi],rax
      -
      -$L$init_base2_44:
      -	lea	r10,[poly1305_blocks_vpmadd52]
      -	lea	r11,[poly1305_emit_base2_44]
      -
      -	mov	rax,0x0ffffffc0fffffff
      -	mov	rcx,0x0ffffffc0ffffffc
      -	and	rax,QWORD[rsi]
      -	mov	r8,0x00000fffffffffff
      -	and	rcx,QWORD[8+rsi]
      -	mov	r9,0x00000fffffffffff
      -	and	r8,rax
      -	shrd	rax,rcx,44
      -	mov	QWORD[40+rdi],r8
      -	and	rax,r9
      -	shr	rcx,24
      -	mov	QWORD[48+rdi],rax
      -	lea	rax,[rax*4+rax]
      -	mov	QWORD[56+rdi],rcx
      -	shl	rax,2
      -	lea	rcx,[rcx*4+rcx]
      -	shl	rcx,2
      -	mov	QWORD[24+rdi],rax
      -	mov	QWORD[32+rdi],rcx
      -	mov	QWORD[64+rdi],-1
      -	mov	QWORD[rdx],r10
      -	mov	QWORD[8+rdx],r11
      -	mov	eax,1
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_init_base2_44:
      -
      -ALIGN	32
      -poly1305_blocks_vpmadd52:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_blocks_vpmadd52:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -	mov	rcx,r9
      -
      -
      -
      -DB	243,15,30,250
      -	shr	rdx,4
      -	jz	NEAR $L$no_data_vpmadd52
      -
      -	shl	rcx,40
      -	mov	r8,QWORD[64+rdi]
      -
      -
      -
      -
      -
      -
      -	mov	rax,3
      -	mov	r10,1
      -	cmp	rdx,4
      -	cmovae	rax,r10
      -	test	r8,r8
      -	cmovns	rax,r10
      -
      -	and	rax,rdx
      -	jz	NEAR $L$blocks_vpmadd52_4x
      -
      -	sub	rdx,rax
      -	mov	r10d,7
      -	mov	r11d,1
      -	kmovw	k7,r10d
      -	lea	r10,[$L$2_44_inp_permd]
      -	kmovw	k1,r11d
      -
      -	vmovq	xmm21,rcx
      -	vmovdqa64	ymm19,YMMWORD[r10]
      -	vmovdqa64	ymm20,YMMWORD[32+r10]
      -	vpermq	ymm21,ymm21,0xcf
      -	vmovdqa64	ymm22,YMMWORD[64+r10]
      -
      -	vmovdqu64	ymm16{k7}{z},[rdi]
      -	vmovdqu64	ymm3{k7}{z},[40+rdi]
      -	vmovdqu64	ymm4{k7}{z},[32+rdi]
      -	vmovdqu64	ymm5{k7}{z},[24+rdi]
      -
      -	vmovdqa64	ymm23,YMMWORD[96+r10]
      -	vmovdqa64	ymm24,YMMWORD[128+r10]
      -
      -	jmp	NEAR $L$oop_vpmadd52
      -
      -ALIGN	32
      -$L$oop_vpmadd52:
      -	vmovdqu32	xmm18,XMMWORD[rsi]
      -	lea	rsi,[16+rsi]
      -
      -	vpermd	ymm18,ymm19,ymm18
      -	vpsrlvq	ymm18,ymm18,ymm20
      -	vpandq	ymm18,ymm18,ymm22
      -	vporq	ymm18,ymm18,ymm21
      -
      -	vpaddq	ymm16,ymm16,ymm18
      -
      -	vpermq	ymm0{k7}{z},ymm16,0
      -	vpermq	ymm1{k7}{z},ymm16,85
      -	vpermq	ymm2{k7}{z},ymm16,170
      -
      -	vpxord	ymm16,ymm16,ymm16
      -	vpxord	ymm17,ymm17,ymm17
      -
      -	vpmadd52luq	ymm16,ymm0,ymm3
      -	vpmadd52huq	ymm17,ymm0,ymm3
      -
      -	vpmadd52luq	ymm16,ymm1,ymm4
      -	vpmadd52huq	ymm17,ymm1,ymm4
      -
      -	vpmadd52luq	ymm16,ymm2,ymm5
      -	vpmadd52huq	ymm17,ymm2,ymm5
      -
      -	vpsrlvq	ymm18,ymm16,ymm23
      -	vpsllvq	ymm17,ymm17,ymm24
      -	vpandq	ymm16,ymm16,ymm22
      -
      -	vpaddq	ymm17,ymm17,ymm18
      -
      -	vpermq	ymm17,ymm17,147
      -
      -	vpaddq	ymm16,ymm16,ymm17
      -
      -	vpsrlvq	ymm18,ymm16,ymm23
      -	vpandq	ymm16,ymm16,ymm22
      -
      -	vpermq	ymm18,ymm18,147
      -
      -	vpaddq	ymm16,ymm16,ymm18
      -
      -	vpermq	ymm18{k1}{z},ymm16,147
      -
      -	vpaddq	ymm16,ymm16,ymm18
      -	vpsllq	ymm18,ymm18,2
      -
      -	vpaddq	ymm16,ymm16,ymm18
      -
      -	dec	rax
      -	jnz	NEAR $L$oop_vpmadd52
      -
      -	vmovdqu64	YMMWORD[rdi]{k7},ymm16
      -
      -	test	rdx,rdx
      -	jnz	NEAR $L$blocks_vpmadd52_4x
      -
      -$L$no_data_vpmadd52:
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_blocks_vpmadd52:
      -
      -ALIGN	32
      -poly1305_blocks_vpmadd52_4x:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_blocks_vpmadd52_4x:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -	mov	rcx,r9
      -
      -
      -
      -	shr	rdx,4
      -	jz	NEAR $L$no_data_vpmadd52_4x
      -
      -	shl	rcx,40
      -	mov	r8,QWORD[64+rdi]
      -
      -$L$blocks_vpmadd52_4x:
      -	vpbroadcastq	ymm31,rcx
      -
      -	vmovdqa64	ymm28,YMMWORD[$L$x_mask44]
      -	mov	eax,5
      -	vmovdqa64	ymm29,YMMWORD[$L$x_mask42]
      -	kmovw	k1,eax
      -
      -	test	r8,r8
      -	js	NEAR $L$init_vpmadd52
      -
      -	vmovq	xmm0,QWORD[rdi]
      -	vmovq	xmm1,QWORD[8+rdi]
      -	vmovq	xmm2,QWORD[16+rdi]
      -
      -	test	rdx,3
      -	jnz	NEAR $L$blocks_vpmadd52_2x_do
      -
      -$L$blocks_vpmadd52_4x_do:
      -	vpbroadcastq	ymm3,QWORD[64+rdi]
      -	vpbroadcastq	ymm4,QWORD[96+rdi]
      -	vpbroadcastq	ymm5,QWORD[128+rdi]
      -	vpbroadcastq	ymm16,QWORD[160+rdi]
      -
      -$L$blocks_vpmadd52_4x_key_loaded:
      -	vpsllq	ymm17,ymm5,2
      -	vpaddq	ymm17,ymm17,ymm5
      -	vpsllq	ymm17,ymm17,2
      -
      -	test	rdx,7
      -	jz	NEAR $L$blocks_vpmadd52_8x
      -
      -	vmovdqu64	ymm26,YMMWORD[rsi]
      -	vmovdqu64	ymm27,YMMWORD[32+rsi]
      -	lea	rsi,[64+rsi]
      -
      -	vpunpcklqdq	ymm25,ymm26,ymm27
      -	vpunpckhqdq	ymm27,ymm26,ymm27
      -
      -
      -
      -	vpsrlq	ymm26,ymm27,24
      -	vporq	ymm26,ymm26,ymm31
      -	vpaddq	ymm2,ymm2,ymm26
      -	vpandq	ymm24,ymm25,ymm28
      -	vpsrlq	ymm25,ymm25,44
      -	vpsllq	ymm27,ymm27,20
      -	vporq	ymm25,ymm25,ymm27
      -	vpandq	ymm25,ymm25,ymm28
      -
      -	sub	rdx,4
      -	jz	NEAR $L$tail_vpmadd52_4x
      -	jmp	NEAR $L$oop_vpmadd52_4x
      -	ud2
      -
      -ALIGN	32
      -$L$init_vpmadd52:
      -	vmovq	xmm16,QWORD[24+rdi]
      -	vmovq	xmm2,QWORD[56+rdi]
      -	vmovq	xmm17,QWORD[32+rdi]
      -	vmovq	xmm3,QWORD[40+rdi]
      -	vmovq	xmm4,QWORD[48+rdi]
      -
      -	vmovdqa	ymm0,ymm3
      -	vmovdqa	ymm1,ymm4
      -	vmovdqa	ymm5,ymm2
      -
      -	mov	eax,2
      -
      -$L$mul_init_vpmadd52:
      -	vpxorq	ymm18,ymm18,ymm18
      -	vpmadd52luq	ymm18,ymm16,ymm2
      -	vpxorq	ymm19,ymm19,ymm19
      -	vpmadd52huq	ymm19,ymm16,ymm2
      -	vpxorq	ymm20,ymm20,ymm20
      -	vpmadd52luq	ymm20,ymm17,ymm2
      -	vpxorq	ymm21,ymm21,ymm21
      -	vpmadd52huq	ymm21,ymm17,ymm2
      -	vpxorq	ymm22,ymm22,ymm22
      -	vpmadd52luq	ymm22,ymm3,ymm2
      -	vpxorq	ymm23,ymm23,ymm23
      -	vpmadd52huq	ymm23,ymm3,ymm2
      -
      -	vpmadd52luq	ymm18,ymm3,ymm0
      -	vpmadd52huq	ymm19,ymm3,ymm0
      -	vpmadd52luq	ymm20,ymm4,ymm0
      -	vpmadd52huq	ymm21,ymm4,ymm0
      -	vpmadd52luq	ymm22,ymm5,ymm0
      -	vpmadd52huq	ymm23,ymm5,ymm0
      -
      -	vpmadd52luq	ymm18,ymm17,ymm1
      -	vpmadd52huq	ymm19,ymm17,ymm1
      -	vpmadd52luq	ymm20,ymm3,ymm1
      -	vpmadd52huq	ymm21,ymm3,ymm1
      -	vpmadd52luq	ymm22,ymm4,ymm1
      -	vpmadd52huq	ymm23,ymm4,ymm1
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm0,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm1,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm2,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -
      -	vpsrlq	ymm30,ymm0,44
      -	vpandq	ymm0,ymm0,ymm28
      -
      -	vpaddq	ymm1,ymm1,ymm30
      -
      -	dec	eax
      -	jz	NEAR $L$done_init_vpmadd52
      -
      -	vpunpcklqdq	ymm4,ymm1,ymm4
      -	vpbroadcastq	xmm1,xmm1
      -	vpunpcklqdq	ymm5,ymm2,ymm5
      -	vpbroadcastq	xmm2,xmm2
      -	vpunpcklqdq	ymm3,ymm0,ymm3
      -	vpbroadcastq	xmm0,xmm0
      -
      -	vpsllq	ymm16,ymm4,2
      -	vpsllq	ymm17,ymm5,2
      -	vpaddq	ymm16,ymm16,ymm4
      -	vpaddq	ymm17,ymm17,ymm5
      -	vpsllq	ymm16,ymm16,2
      -	vpsllq	ymm17,ymm17,2
      -
      -	jmp	NEAR $L$mul_init_vpmadd52
      -	ud2
      -
      -ALIGN	32
      -$L$done_init_vpmadd52:
      -	vinserti128	ymm4,ymm1,xmm4,1
      -	vinserti128	ymm5,ymm2,xmm5,1
      -	vinserti128	ymm3,ymm0,xmm3,1
      -
      -	vpermq	ymm4,ymm4,216
      -	vpermq	ymm5,ymm5,216
      -	vpermq	ymm3,ymm3,216
      -
      -	vpsllq	ymm16,ymm4,2
      -	vpaddq	ymm16,ymm16,ymm4
      -	vpsllq	ymm16,ymm16,2
      -
      -	vmovq	xmm0,QWORD[rdi]
      -	vmovq	xmm1,QWORD[8+rdi]
      -	vmovq	xmm2,QWORD[16+rdi]
      -
      -	test	rdx,3
      -	jnz	NEAR $L$done_init_vpmadd52_2x
      -
      -	vmovdqu64	YMMWORD[64+rdi],ymm3
      -	vpbroadcastq	ymm3,xmm3
      -	vmovdqu64	YMMWORD[96+rdi],ymm4
      -	vpbroadcastq	ymm4,xmm4
      -	vmovdqu64	YMMWORD[128+rdi],ymm5
      -	vpbroadcastq	ymm5,xmm5
      -	vmovdqu64	YMMWORD[160+rdi],ymm16
      -	vpbroadcastq	ymm16,xmm16
      -
      -	jmp	NEAR $L$blocks_vpmadd52_4x_key_loaded
      -	ud2
      -
      -ALIGN	32
      -$L$done_init_vpmadd52_2x:
      -	vmovdqu64	YMMWORD[64+rdi],ymm3
      -	vpsrldq	ymm3,ymm3,8
      -	vmovdqu64	YMMWORD[96+rdi],ymm4
      -	vpsrldq	ymm4,ymm4,8
      -	vmovdqu64	YMMWORD[128+rdi],ymm5
      -	vpsrldq	ymm5,ymm5,8
      -	vmovdqu64	YMMWORD[160+rdi],ymm16
      -	vpsrldq	ymm16,ymm16,8
      -	jmp	NEAR $L$blocks_vpmadd52_2x_key_loaded
      -	ud2
      -
      -ALIGN	32
      -$L$blocks_vpmadd52_2x_do:
      -	vmovdqu64	ymm5{k1}{z},[((128+8))+rdi]
      -	vmovdqu64	ymm16{k1}{z},[((160+8))+rdi]
      -	vmovdqu64	ymm3{k1}{z},[((64+8))+rdi]
      -	vmovdqu64	ymm4{k1}{z},[((96+8))+rdi]
      -
      -$L$blocks_vpmadd52_2x_key_loaded:
      -	vmovdqu64	ymm26,YMMWORD[rsi]
      -	vpxorq	ymm27,ymm27,ymm27
      -	lea	rsi,[32+rsi]
      -
      -	vpunpcklqdq	ymm25,ymm26,ymm27
      -	vpunpckhqdq	ymm27,ymm26,ymm27
      -
      -
      -
      -	vpsrlq	ymm26,ymm27,24
      -	vporq	ymm26,ymm26,ymm31
      -	vpaddq	ymm2,ymm2,ymm26
      -	vpandq	ymm24,ymm25,ymm28
      -	vpsrlq	ymm25,ymm25,44
      -	vpsllq	ymm27,ymm27,20
      -	vporq	ymm25,ymm25,ymm27
      -	vpandq	ymm25,ymm25,ymm28
      -
      -	jmp	NEAR $L$tail_vpmadd52_2x
      -	ud2
      -
      -ALIGN	32
      -$L$oop_vpmadd52_4x:
      -
      -	vpaddq	ymm0,ymm0,ymm24
      -	vpaddq	ymm1,ymm1,ymm25
      -
      -	vpxorq	ymm18,ymm18,ymm18
      -	vpmadd52luq	ymm18,ymm16,ymm2
      -	vpxorq	ymm19,ymm19,ymm19
      -	vpmadd52huq	ymm19,ymm16,ymm2
      -	vpxorq	ymm20,ymm20,ymm20
      -	vpmadd52luq	ymm20,ymm17,ymm2
      -	vpxorq	ymm21,ymm21,ymm21
      -	vpmadd52huq	ymm21,ymm17,ymm2
      -	vpxorq	ymm22,ymm22,ymm22
      -	vpmadd52luq	ymm22,ymm3,ymm2
      -	vpxorq	ymm23,ymm23,ymm23
      -	vpmadd52huq	ymm23,ymm3,ymm2
      -
      -	vmovdqu64	ymm26,YMMWORD[rsi]
      -	vmovdqu64	ymm27,YMMWORD[32+rsi]
      -	lea	rsi,[64+rsi]
      -	vpmadd52luq	ymm18,ymm3,ymm0
      -	vpmadd52huq	ymm19,ymm3,ymm0
      -	vpmadd52luq	ymm20,ymm4,ymm0
      -	vpmadd52huq	ymm21,ymm4,ymm0
      -	vpmadd52luq	ymm22,ymm5,ymm0
      -	vpmadd52huq	ymm23,ymm5,ymm0
      -
      -	vpunpcklqdq	ymm25,ymm26,ymm27
      -	vpunpckhqdq	ymm27,ymm26,ymm27
      -	vpmadd52luq	ymm18,ymm17,ymm1
      -	vpmadd52huq	ymm19,ymm17,ymm1
      -	vpmadd52luq	ymm20,ymm3,ymm1
      -	vpmadd52huq	ymm21,ymm3,ymm1
      -	vpmadd52luq	ymm22,ymm4,ymm1
      -	vpmadd52huq	ymm23,ymm4,ymm1
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm0,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpsrlq	ymm26,ymm27,24
      -	vporq	ymm26,ymm26,ymm31
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm1,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpandq	ymm24,ymm25,ymm28
      -	vpsrlq	ymm25,ymm25,44
      -	vpsllq	ymm27,ymm27,20
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm2,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm2,ymm2,ymm26
      -	vpaddq	ymm0,ymm0,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -	vporq	ymm25,ymm25,ymm27
      -	vpandq	ymm25,ymm25,ymm28
      -
      -	vpsrlq	ymm30,ymm0,44
      -	vpandq	ymm0,ymm0,ymm28
      -
      -	vpaddq	ymm1,ymm1,ymm30
      -
      -	sub	rdx,4
      -	jnz	NEAR $L$oop_vpmadd52_4x
      -
      -$L$tail_vpmadd52_4x:
      -	vmovdqu64	ymm5,YMMWORD[128+rdi]
      -	vmovdqu64	ymm16,YMMWORD[160+rdi]
      -	vmovdqu64	ymm3,YMMWORD[64+rdi]
      -	vmovdqu64	ymm4,YMMWORD[96+rdi]
      -
      -$L$tail_vpmadd52_2x:
      -	vpsllq	ymm17,ymm5,2
      -	vpaddq	ymm17,ymm17,ymm5
      -	vpsllq	ymm17,ymm17,2
      -
      -
      -	vpaddq	ymm0,ymm0,ymm24
      -	vpaddq	ymm1,ymm1,ymm25
      -
      -	vpxorq	ymm18,ymm18,ymm18
      -	vpmadd52luq	ymm18,ymm16,ymm2
      -	vpxorq	ymm19,ymm19,ymm19
      -	vpmadd52huq	ymm19,ymm16,ymm2
      -	vpxorq	ymm20,ymm20,ymm20
      -	vpmadd52luq	ymm20,ymm17,ymm2
      -	vpxorq	ymm21,ymm21,ymm21
      -	vpmadd52huq	ymm21,ymm17,ymm2
      -	vpxorq	ymm22,ymm22,ymm22
      -	vpmadd52luq	ymm22,ymm3,ymm2
      -	vpxorq	ymm23,ymm23,ymm23
      -	vpmadd52huq	ymm23,ymm3,ymm2
      -
      -	vpmadd52luq	ymm18,ymm3,ymm0
      -	vpmadd52huq	ymm19,ymm3,ymm0
      -	vpmadd52luq	ymm20,ymm4,ymm0
      -	vpmadd52huq	ymm21,ymm4,ymm0
      -	vpmadd52luq	ymm22,ymm5,ymm0
      -	vpmadd52huq	ymm23,ymm5,ymm0
      -
      -	vpmadd52luq	ymm18,ymm17,ymm1
      -	vpmadd52huq	ymm19,ymm17,ymm1
      -	vpmadd52luq	ymm20,ymm3,ymm1
      -	vpmadd52huq	ymm21,ymm3,ymm1
      -	vpmadd52luq	ymm22,ymm4,ymm1
      -	vpmadd52huq	ymm23,ymm4,ymm1
      -
      -
      -
      -
      -	mov	eax,1
      -	kmovw	k1,eax
      -	vpsrldq	ymm24,ymm18,8
      -	vpsrldq	ymm0,ymm19,8
      -	vpsrldq	ymm25,ymm20,8
      -	vpsrldq	ymm1,ymm21,8
      -	vpaddq	ymm18,ymm18,ymm24
      -	vpaddq	ymm19,ymm19,ymm0
      -	vpsrldq	ymm26,ymm22,8
      -	vpsrldq	ymm2,ymm23,8
      -	vpaddq	ymm20,ymm20,ymm25
      -	vpaddq	ymm21,ymm21,ymm1
      -	vpermq	ymm24,ymm18,0x2
      -	vpermq	ymm0,ymm19,0x2
      -	vpaddq	ymm22,ymm22,ymm26
      -	vpaddq	ymm23,ymm23,ymm2
      -
      -	vpermq	ymm25,ymm20,0x2
      -	vpermq	ymm1,ymm21,0x2
      -	vpaddq	ymm18{k1}{z},ymm18,ymm24
      -	vpaddq	ymm19{k1}{z},ymm19,ymm0
      -	vpermq	ymm26,ymm22,0x2
      -	vpermq	ymm2,ymm23,0x2
      -	vpaddq	ymm20{k1}{z},ymm20,ymm25
      -	vpaddq	ymm21{k1}{z},ymm21,ymm1
      -	vpaddq	ymm22{k1}{z},ymm22,ymm26
      -	vpaddq	ymm23{k1}{z},ymm23,ymm2
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm0,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm1,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm2,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -
      -	vpsrlq	ymm30,ymm0,44
      -	vpandq	ymm0,ymm0,ymm28
      -
      -	vpaddq	ymm1,ymm1,ymm30
      -
      -
      -	sub	rdx,2
      -	ja	NEAR $L$blocks_vpmadd52_4x_do
      -
      -	vmovq	QWORD[rdi],xmm0
      -	vmovq	QWORD[8+rdi],xmm1
      -	vmovq	QWORD[16+rdi],xmm2
      -	vzeroall
      -
      -$L$no_data_vpmadd52_4x:
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_blocks_vpmadd52_4x:
      -
      -ALIGN	32
      -poly1305_blocks_vpmadd52_8x:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_blocks_vpmadd52_8x:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -	mov	rcx,r9
      -
      -
      -
      -	shr	rdx,4
      -	jz	NEAR $L$no_data_vpmadd52_8x
      -
      -	shl	rcx,40
      -	mov	r8,QWORD[64+rdi]
      -
      -	vmovdqa64	ymm28,YMMWORD[$L$x_mask44]
      -	vmovdqa64	ymm29,YMMWORD[$L$x_mask42]
      -
      -	test	r8,r8
      -	js	NEAR $L$init_vpmadd52
      -
      -	vmovq	xmm0,QWORD[rdi]
      -	vmovq	xmm1,QWORD[8+rdi]
      -	vmovq	xmm2,QWORD[16+rdi]
      -
      -$L$blocks_vpmadd52_8x:
      -
      -
      -
      -	vmovdqu64	ymm5,YMMWORD[128+rdi]
      -	vmovdqu64	ymm16,YMMWORD[160+rdi]
      -	vmovdqu64	ymm3,YMMWORD[64+rdi]
      -	vmovdqu64	ymm4,YMMWORD[96+rdi]
      -
      -	vpsllq	ymm17,ymm5,2
      -	vpaddq	ymm17,ymm17,ymm5
      -	vpsllq	ymm17,ymm17,2
      -
      -	vpbroadcastq	ymm8,xmm5
      -	vpbroadcastq	ymm6,xmm3
      -	vpbroadcastq	ymm7,xmm4
      -
      -	vpxorq	ymm18,ymm18,ymm18
      -	vpmadd52luq	ymm18,ymm16,ymm8
      -	vpxorq	ymm19,ymm19,ymm19
      -	vpmadd52huq	ymm19,ymm16,ymm8
      -	vpxorq	ymm20,ymm20,ymm20
      -	vpmadd52luq	ymm20,ymm17,ymm8
      -	vpxorq	ymm21,ymm21,ymm21
      -	vpmadd52huq	ymm21,ymm17,ymm8
      -	vpxorq	ymm22,ymm22,ymm22
      -	vpmadd52luq	ymm22,ymm3,ymm8
      -	vpxorq	ymm23,ymm23,ymm23
      -	vpmadd52huq	ymm23,ymm3,ymm8
      -
      -	vpmadd52luq	ymm18,ymm3,ymm6
      -	vpmadd52huq	ymm19,ymm3,ymm6
      -	vpmadd52luq	ymm20,ymm4,ymm6
      -	vpmadd52huq	ymm21,ymm4,ymm6
      -	vpmadd52luq	ymm22,ymm5,ymm6
      -	vpmadd52huq	ymm23,ymm5,ymm6
      -
      -	vpmadd52luq	ymm18,ymm17,ymm7
      -	vpmadd52huq	ymm19,ymm17,ymm7
      -	vpmadd52luq	ymm20,ymm3,ymm7
      -	vpmadd52huq	ymm21,ymm3,ymm7
      -	vpmadd52luq	ymm22,ymm4,ymm7
      -	vpmadd52huq	ymm23,ymm4,ymm7
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm6,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm7,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm8,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm6,ymm6,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm6,ymm6,ymm23
      -
      -	vpsrlq	ymm30,ymm6,44
      -	vpandq	ymm6,ymm6,ymm28
      -
      -	vpaddq	ymm7,ymm7,ymm30
      -
      -
      -
      -
      -
      -	vpunpcklqdq	ymm26,ymm8,ymm5
      -	vpunpckhqdq	ymm5,ymm8,ymm5
      -	vpunpcklqdq	ymm24,ymm6,ymm3
      -	vpunpckhqdq	ymm3,ymm6,ymm3
      -	vpunpcklqdq	ymm25,ymm7,ymm4
      -	vpunpckhqdq	ymm4,ymm7,ymm4
      -	vshufi64x2	zmm8,zmm26,zmm5,0x44
      -	vshufi64x2	zmm6,zmm24,zmm3,0x44
      -	vshufi64x2	zmm7,zmm25,zmm4,0x44
      -
      -	vmovdqu64	zmm26,ZMMWORD[rsi]
      -	vmovdqu64	zmm27,ZMMWORD[64+rsi]
      -	lea	rsi,[128+rsi]
      -
      -	vpsllq	zmm10,zmm8,2
      -	vpsllq	zmm9,zmm7,2
      -	vpaddq	zmm10,zmm10,zmm8
      -	vpaddq	zmm9,zmm9,zmm7
      -	vpsllq	zmm10,zmm10,2
      -	vpsllq	zmm9,zmm9,2
      -
      -	vpbroadcastq	zmm31,rcx
      -	vpbroadcastq	zmm28,xmm28
      -	vpbroadcastq	zmm29,xmm29
      -
      -	vpbroadcastq	zmm16,xmm9
      -	vpbroadcastq	zmm17,xmm10
      -	vpbroadcastq	zmm3,xmm6
      -	vpbroadcastq	zmm4,xmm7
      -	vpbroadcastq	zmm5,xmm8
      -
      -	vpunpcklqdq	zmm25,zmm26,zmm27
      -	vpunpckhqdq	zmm27,zmm26,zmm27
      -
      -
      -
      -	vpsrlq	zmm26,zmm27,24
      -	vporq	zmm26,zmm26,zmm31
      -	vpaddq	zmm2,zmm2,zmm26
      -	vpandq	zmm24,zmm25,zmm28
      -	vpsrlq	zmm25,zmm25,44
      -	vpsllq	zmm27,zmm27,20
      -	vporq	zmm25,zmm25,zmm27
      -	vpandq	zmm25,zmm25,zmm28
      -
      -	sub	rdx,8
      -	jz	NEAR $L$tail_vpmadd52_8x
      -	jmp	NEAR $L$oop_vpmadd52_8x
      -
      -ALIGN	32
      -$L$oop_vpmadd52_8x:
      -
      -	vpaddq	zmm0,zmm0,zmm24
      -	vpaddq	zmm1,zmm1,zmm25
      -
      -	vpxorq	zmm18,zmm18,zmm18
      -	vpmadd52luq	zmm18,zmm16,zmm2
      -	vpxorq	zmm19,zmm19,zmm19
      -	vpmadd52huq	zmm19,zmm16,zmm2
      -	vpxorq	zmm20,zmm20,zmm20
      -	vpmadd52luq	zmm20,zmm17,zmm2
      -	vpxorq	zmm21,zmm21,zmm21
      -	vpmadd52huq	zmm21,zmm17,zmm2
      -	vpxorq	zmm22,zmm22,zmm22
      -	vpmadd52luq	zmm22,zmm3,zmm2
      -	vpxorq	zmm23,zmm23,zmm23
      -	vpmadd52huq	zmm23,zmm3,zmm2
      -
      -	vmovdqu64	zmm26,ZMMWORD[rsi]
      -	vmovdqu64	zmm27,ZMMWORD[64+rsi]
      -	lea	rsi,[128+rsi]
      -	vpmadd52luq	zmm18,zmm3,zmm0
      -	vpmadd52huq	zmm19,zmm3,zmm0
      -	vpmadd52luq	zmm20,zmm4,zmm0
      -	vpmadd52huq	zmm21,zmm4,zmm0
      -	vpmadd52luq	zmm22,zmm5,zmm0
      -	vpmadd52huq	zmm23,zmm5,zmm0
      -
      -	vpunpcklqdq	zmm25,zmm26,zmm27
      -	vpunpckhqdq	zmm27,zmm26,zmm27
      -	vpmadd52luq	zmm18,zmm17,zmm1
      -	vpmadd52huq	zmm19,zmm17,zmm1
      -	vpmadd52luq	zmm20,zmm3,zmm1
      -	vpmadd52huq	zmm21,zmm3,zmm1
      -	vpmadd52luq	zmm22,zmm4,zmm1
      -	vpmadd52huq	zmm23,zmm4,zmm1
      -
      -
      -
      -	vpsrlq	zmm30,zmm18,44
      -	vpsllq	zmm19,zmm19,8
      -	vpandq	zmm0,zmm18,zmm28
      -	vpaddq	zmm19,zmm19,zmm30
      -
      -	vpsrlq	zmm26,zmm27,24
      -	vporq	zmm26,zmm26,zmm31
      -	vpaddq	zmm20,zmm20,zmm19
      -
      -	vpsrlq	zmm30,zmm20,44
      -	vpsllq	zmm21,zmm21,8
      -	vpandq	zmm1,zmm20,zmm28
      -	vpaddq	zmm21,zmm21,zmm30
      -
      -	vpandq	zmm24,zmm25,zmm28
      -	vpsrlq	zmm25,zmm25,44
      -	vpsllq	zmm27,zmm27,20
      -	vpaddq	zmm22,zmm22,zmm21
      -
      -	vpsrlq	zmm30,zmm22,42
      -	vpsllq	zmm23,zmm23,10
      -	vpandq	zmm2,zmm22,zmm29
      -	vpaddq	zmm23,zmm23,zmm30
      -
      -	vpaddq	zmm2,zmm2,zmm26
      -	vpaddq	zmm0,zmm0,zmm23
      -	vpsllq	zmm23,zmm23,2
      -
      -	vpaddq	zmm0,zmm0,zmm23
      -	vporq	zmm25,zmm25,zmm27
      -	vpandq	zmm25,zmm25,zmm28
      -
      -	vpsrlq	zmm30,zmm0,44
      -	vpandq	zmm0,zmm0,zmm28
      -
      -	vpaddq	zmm1,zmm1,zmm30
      -
      -	sub	rdx,8
      -	jnz	NEAR $L$oop_vpmadd52_8x
      -
      -$L$tail_vpmadd52_8x:
      -
      -	vpaddq	zmm0,zmm0,zmm24
      -	vpaddq	zmm1,zmm1,zmm25
      -
      -	vpxorq	zmm18,zmm18,zmm18
      -	vpmadd52luq	zmm18,zmm9,zmm2
      -	vpxorq	zmm19,zmm19,zmm19
      -	vpmadd52huq	zmm19,zmm9,zmm2
      -	vpxorq	zmm20,zmm20,zmm20
      -	vpmadd52luq	zmm20,zmm10,zmm2
      -	vpxorq	zmm21,zmm21,zmm21
      -	vpmadd52huq	zmm21,zmm10,zmm2
      -	vpxorq	zmm22,zmm22,zmm22
      -	vpmadd52luq	zmm22,zmm6,zmm2
      -	vpxorq	zmm23,zmm23,zmm23
      -	vpmadd52huq	zmm23,zmm6,zmm2
      -
      -	vpmadd52luq	zmm18,zmm6,zmm0
      -	vpmadd52huq	zmm19,zmm6,zmm0
      -	vpmadd52luq	zmm20,zmm7,zmm0
      -	vpmadd52huq	zmm21,zmm7,zmm0
      -	vpmadd52luq	zmm22,zmm8,zmm0
      -	vpmadd52huq	zmm23,zmm8,zmm0
      -
      -	vpmadd52luq	zmm18,zmm10,zmm1
      -	vpmadd52huq	zmm19,zmm10,zmm1
      -	vpmadd52luq	zmm20,zmm6,zmm1
      -	vpmadd52huq	zmm21,zmm6,zmm1
      -	vpmadd52luq	zmm22,zmm7,zmm1
      -	vpmadd52huq	zmm23,zmm7,zmm1
      -
      -
      -
      -
      -	mov	eax,1
      -	kmovw	k1,eax
      -	vpsrldq	zmm24,zmm18,8
      -	vpsrldq	zmm0,zmm19,8
      -	vpsrldq	zmm25,zmm20,8
      -	vpsrldq	zmm1,zmm21,8
      -	vpaddq	zmm18,zmm18,zmm24
      -	vpaddq	zmm19,zmm19,zmm0
      -	vpsrldq	zmm26,zmm22,8
      -	vpsrldq	zmm2,zmm23,8
      -	vpaddq	zmm20,zmm20,zmm25
      -	vpaddq	zmm21,zmm21,zmm1
      -	vpermq	zmm24,zmm18,0x2
      -	vpermq	zmm0,zmm19,0x2
      -	vpaddq	zmm22,zmm22,zmm26
      -	vpaddq	zmm23,zmm23,zmm2
      -
      -	vpermq	zmm25,zmm20,0x2
      -	vpermq	zmm1,zmm21,0x2
      -	vpaddq	zmm18,zmm18,zmm24
      -	vpaddq	zmm19,zmm19,zmm0
      -	vpermq	zmm26,zmm22,0x2
      -	vpermq	zmm2,zmm23,0x2
      -	vpaddq	zmm20,zmm20,zmm25
      -	vpaddq	zmm21,zmm21,zmm1
      -	vextracti64x4	ymm24,zmm18,1
      -	vextracti64x4	ymm0,zmm19,1
      -	vpaddq	zmm22,zmm22,zmm26
      -	vpaddq	zmm23,zmm23,zmm2
      -
      -	vextracti64x4	ymm25,zmm20,1
      -	vextracti64x4	ymm1,zmm21,1
      -	vextracti64x4	ymm26,zmm22,1
      -	vextracti64x4	ymm2,zmm23,1
      -	vpaddq	ymm18{k1}{z},ymm18,ymm24
      -	vpaddq	ymm19{k1}{z},ymm19,ymm0
      -	vpaddq	ymm20{k1}{z},ymm20,ymm25
      -	vpaddq	ymm21{k1}{z},ymm21,ymm1
      -	vpaddq	ymm22{k1}{z},ymm22,ymm26
      -	vpaddq	ymm23{k1}{z},ymm23,ymm2
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm0,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm1,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm2,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -
      -	vpsrlq	ymm30,ymm0,44
      -	vpandq	ymm0,ymm0,ymm28
      -
      -	vpaddq	ymm1,ymm1,ymm30
      -
      -
      -
      -	vmovq	QWORD[rdi],xmm0
      -	vmovq	QWORD[8+rdi],xmm1
      -	vmovq	QWORD[16+rdi],xmm2
      -	vzeroall
      -
      -$L$no_data_vpmadd52_8x:
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_blocks_vpmadd52_8x:
      -
      -ALIGN	32
      -poly1305_emit_base2_44:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_emit_base2_44:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -
      -
      -
      -DB	243,15,30,250
      -	mov	r8,QWORD[rdi]
      -	mov	r9,QWORD[8+rdi]
      -	mov	r10,QWORD[16+rdi]
      -
      -	mov	rax,r9
      -	shr	r9,20
      -	shl	rax,44
      -	mov	rcx,r10
      -	shr	r10,40
      -	shl	rcx,24
      -
      -	add	r8,rax
      -	adc	r9,rcx
      -	adc	r10,0
      -
      -	mov	rax,r8
      -	add	r8,5
      -	mov	rcx,r9
      -	adc	r9,0
      -	adc	r10,0
      -	shr	r10,2
      -	cmovnz	rax,r8
      -	cmovnz	rcx,r9
      -
      -	add	rax,QWORD[rdx]
      -	adc	rcx,QWORD[8+rdx]
      -	mov	QWORD[rsi],rax
      -	mov	QWORD[8+rsi],rcx
      -
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_emit_base2_44:
       ALIGN	64
       $L$const:
       $L$mask24:
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/VC-WIN64A/asm/include/openssl/opensslv.h
      index 38b44f1054ad3d..a410f0eddf361c 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/VC-WIN64A/asm/include/openssl/pkcs7.h
      index 3978fd087bca3b..0a95a93e59e262 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/configdata.pm b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/configdata.pm
      index 08fdeedbf613bf..243ea4184ec432 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/configdata.pm
      @@ -168,7 +168,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -219,7 +219,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -271,11 +271,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "VC-WIN64A",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "lib",
      @@ -290,7 +290,7 @@ our %target = (
           "LDFLAGS" => "/nologo /debug",
           "MT" => "mt",
           "MTFLAGS" => "-nologo",
      -    "RANLIB" => "CODE(0x56478be29bd0)",
      +    "RANLIB" => "CODE(0x55a9fd66b620)",
           "RC" => "rc",
           "_conf_fname_int" => [
               "Configurations/00-base-templates.conf",
      @@ -356,7 +356,7 @@ our %target = (
           "mtoutflag" => "-outputresource:",
           "multilib" => "-x64",
           "perl_platform" => "Windows::MSVC",
      -    "perlasm_scheme" => "auto",
      +    "perlasm_scheme" => "nasm",
           "rcoutflag" => "/fo",
           "shared_cflag" => "",
           "shared_defflag" => "",
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h
      index 196661655556bf..ebb9fb26fed3ea 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: "
      -#define DATE "built on: Sun Aug  6 00:42:38 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:03:45 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/crypto/poly1305/poly1305-x86_64.asm b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/crypto/poly1305/poly1305-x86_64.asm
      index 26f683384d1806..fb3823608c949b 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/crypto/poly1305/poly1305-x86_64.asm
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/crypto/poly1305/poly1305-x86_64.asm
      @@ -46,11 +46,6 @@ $L$SEH_begin_poly1305_init:
       	lea	rax,[poly1305_blocks_avx2]
       	bt	r9,37
       	cmovc	r10,rax
      -	mov	rax,2149646336
      -	shr	r9,32
      -	and	r9,rax
      -	cmp	r9,rax
      -	je	NEAR $L$init_base2_44
       	mov	rax,0x0ffffffc0fffffff
       	mov	rcx,0x0ffffffc0ffffffc
       	and	rax,QWORD[rsi]
      @@ -2605,1029 +2600,6 @@ $L$do_avx512_epilogue:
       	DB	0F3h,0C3h		;repret
       
       $L$SEH_end_poly1305_blocks_avx512:
      -
      -ALIGN	32
      -poly1305_init_base2_44:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_init_base2_44:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -
      -
      -
      -	xor	rax,rax
      -	mov	QWORD[rdi],rax
      -	mov	QWORD[8+rdi],rax
      -	mov	QWORD[16+rdi],rax
      -
      -$L$init_base2_44:
      -	lea	r10,[poly1305_blocks_vpmadd52]
      -	lea	r11,[poly1305_emit_base2_44]
      -
      -	mov	rax,0x0ffffffc0fffffff
      -	mov	rcx,0x0ffffffc0ffffffc
      -	and	rax,QWORD[rsi]
      -	mov	r8,0x00000fffffffffff
      -	and	rcx,QWORD[8+rsi]
      -	mov	r9,0x00000fffffffffff
      -	and	r8,rax
      -	shrd	rax,rcx,44
      -	mov	QWORD[40+rdi],r8
      -	and	rax,r9
      -	shr	rcx,24
      -	mov	QWORD[48+rdi],rax
      -	lea	rax,[rax*4+rax]
      -	mov	QWORD[56+rdi],rcx
      -	shl	rax,2
      -	lea	rcx,[rcx*4+rcx]
      -	shl	rcx,2
      -	mov	QWORD[24+rdi],rax
      -	mov	QWORD[32+rdi],rcx
      -	mov	QWORD[64+rdi],-1
      -	mov	QWORD[rdx],r10
      -	mov	QWORD[8+rdx],r11
      -	mov	eax,1
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_init_base2_44:
      -
      -ALIGN	32
      -poly1305_blocks_vpmadd52:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_blocks_vpmadd52:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -	mov	rcx,r9
      -
      -
      -
      -DB	243,15,30,250
      -	shr	rdx,4
      -	jz	NEAR $L$no_data_vpmadd52
      -
      -	shl	rcx,40
      -	mov	r8,QWORD[64+rdi]
      -
      -
      -
      -
      -
      -
      -	mov	rax,3
      -	mov	r10,1
      -	cmp	rdx,4
      -	cmovae	rax,r10
      -	test	r8,r8
      -	cmovns	rax,r10
      -
      -	and	rax,rdx
      -	jz	NEAR $L$blocks_vpmadd52_4x
      -
      -	sub	rdx,rax
      -	mov	r10d,7
      -	mov	r11d,1
      -	kmovw	k7,r10d
      -	lea	r10,[$L$2_44_inp_permd]
      -	kmovw	k1,r11d
      -
      -	vmovq	xmm21,rcx
      -	vmovdqa64	ymm19,YMMWORD[r10]
      -	vmovdqa64	ymm20,YMMWORD[32+r10]
      -	vpermq	ymm21,ymm21,0xcf
      -	vmovdqa64	ymm22,YMMWORD[64+r10]
      -
      -	vmovdqu64	ymm16{k7}{z},[rdi]
      -	vmovdqu64	ymm3{k7}{z},[40+rdi]
      -	vmovdqu64	ymm4{k7}{z},[32+rdi]
      -	vmovdqu64	ymm5{k7}{z},[24+rdi]
      -
      -	vmovdqa64	ymm23,YMMWORD[96+r10]
      -	vmovdqa64	ymm24,YMMWORD[128+r10]
      -
      -	jmp	NEAR $L$oop_vpmadd52
      -
      -ALIGN	32
      -$L$oop_vpmadd52:
      -	vmovdqu32	xmm18,XMMWORD[rsi]
      -	lea	rsi,[16+rsi]
      -
      -	vpermd	ymm18,ymm19,ymm18
      -	vpsrlvq	ymm18,ymm18,ymm20
      -	vpandq	ymm18,ymm18,ymm22
      -	vporq	ymm18,ymm18,ymm21
      -
      -	vpaddq	ymm16,ymm16,ymm18
      -
      -	vpermq	ymm0{k7}{z},ymm16,0
      -	vpermq	ymm1{k7}{z},ymm16,85
      -	vpermq	ymm2{k7}{z},ymm16,170
      -
      -	vpxord	ymm16,ymm16,ymm16
      -	vpxord	ymm17,ymm17,ymm17
      -
      -	vpmadd52luq	ymm16,ymm0,ymm3
      -	vpmadd52huq	ymm17,ymm0,ymm3
      -
      -	vpmadd52luq	ymm16,ymm1,ymm4
      -	vpmadd52huq	ymm17,ymm1,ymm4
      -
      -	vpmadd52luq	ymm16,ymm2,ymm5
      -	vpmadd52huq	ymm17,ymm2,ymm5
      -
      -	vpsrlvq	ymm18,ymm16,ymm23
      -	vpsllvq	ymm17,ymm17,ymm24
      -	vpandq	ymm16,ymm16,ymm22
      -
      -	vpaddq	ymm17,ymm17,ymm18
      -
      -	vpermq	ymm17,ymm17,147
      -
      -	vpaddq	ymm16,ymm16,ymm17
      -
      -	vpsrlvq	ymm18,ymm16,ymm23
      -	vpandq	ymm16,ymm16,ymm22
      -
      -	vpermq	ymm18,ymm18,147
      -
      -	vpaddq	ymm16,ymm16,ymm18
      -
      -	vpermq	ymm18{k1}{z},ymm16,147
      -
      -	vpaddq	ymm16,ymm16,ymm18
      -	vpsllq	ymm18,ymm18,2
      -
      -	vpaddq	ymm16,ymm16,ymm18
      -
      -	dec	rax
      -	jnz	NEAR $L$oop_vpmadd52
      -
      -	vmovdqu64	YMMWORD[rdi]{k7},ymm16
      -
      -	test	rdx,rdx
      -	jnz	NEAR $L$blocks_vpmadd52_4x
      -
      -$L$no_data_vpmadd52:
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_blocks_vpmadd52:
      -
      -ALIGN	32
      -poly1305_blocks_vpmadd52_4x:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_blocks_vpmadd52_4x:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -	mov	rcx,r9
      -
      -
      -
      -	shr	rdx,4
      -	jz	NEAR $L$no_data_vpmadd52_4x
      -
      -	shl	rcx,40
      -	mov	r8,QWORD[64+rdi]
      -
      -$L$blocks_vpmadd52_4x:
      -	vpbroadcastq	ymm31,rcx
      -
      -	vmovdqa64	ymm28,YMMWORD[$L$x_mask44]
      -	mov	eax,5
      -	vmovdqa64	ymm29,YMMWORD[$L$x_mask42]
      -	kmovw	k1,eax
      -
      -	test	r8,r8
      -	js	NEAR $L$init_vpmadd52
      -
      -	vmovq	xmm0,QWORD[rdi]
      -	vmovq	xmm1,QWORD[8+rdi]
      -	vmovq	xmm2,QWORD[16+rdi]
      -
      -	test	rdx,3
      -	jnz	NEAR $L$blocks_vpmadd52_2x_do
      -
      -$L$blocks_vpmadd52_4x_do:
      -	vpbroadcastq	ymm3,QWORD[64+rdi]
      -	vpbroadcastq	ymm4,QWORD[96+rdi]
      -	vpbroadcastq	ymm5,QWORD[128+rdi]
      -	vpbroadcastq	ymm16,QWORD[160+rdi]
      -
      -$L$blocks_vpmadd52_4x_key_loaded:
      -	vpsllq	ymm17,ymm5,2
      -	vpaddq	ymm17,ymm17,ymm5
      -	vpsllq	ymm17,ymm17,2
      -
      -	test	rdx,7
      -	jz	NEAR $L$blocks_vpmadd52_8x
      -
      -	vmovdqu64	ymm26,YMMWORD[rsi]
      -	vmovdqu64	ymm27,YMMWORD[32+rsi]
      -	lea	rsi,[64+rsi]
      -
      -	vpunpcklqdq	ymm25,ymm26,ymm27
      -	vpunpckhqdq	ymm27,ymm26,ymm27
      -
      -
      -
      -	vpsrlq	ymm26,ymm27,24
      -	vporq	ymm26,ymm26,ymm31
      -	vpaddq	ymm2,ymm2,ymm26
      -	vpandq	ymm24,ymm25,ymm28
      -	vpsrlq	ymm25,ymm25,44
      -	vpsllq	ymm27,ymm27,20
      -	vporq	ymm25,ymm25,ymm27
      -	vpandq	ymm25,ymm25,ymm28
      -
      -	sub	rdx,4
      -	jz	NEAR $L$tail_vpmadd52_4x
      -	jmp	NEAR $L$oop_vpmadd52_4x
      -	ud2
      -
      -ALIGN	32
      -$L$init_vpmadd52:
      -	vmovq	xmm16,QWORD[24+rdi]
      -	vmovq	xmm2,QWORD[56+rdi]
      -	vmovq	xmm17,QWORD[32+rdi]
      -	vmovq	xmm3,QWORD[40+rdi]
      -	vmovq	xmm4,QWORD[48+rdi]
      -
      -	vmovdqa	ymm0,ymm3
      -	vmovdqa	ymm1,ymm4
      -	vmovdqa	ymm5,ymm2
      -
      -	mov	eax,2
      -
      -$L$mul_init_vpmadd52:
      -	vpxorq	ymm18,ymm18,ymm18
      -	vpmadd52luq	ymm18,ymm16,ymm2
      -	vpxorq	ymm19,ymm19,ymm19
      -	vpmadd52huq	ymm19,ymm16,ymm2
      -	vpxorq	ymm20,ymm20,ymm20
      -	vpmadd52luq	ymm20,ymm17,ymm2
      -	vpxorq	ymm21,ymm21,ymm21
      -	vpmadd52huq	ymm21,ymm17,ymm2
      -	vpxorq	ymm22,ymm22,ymm22
      -	vpmadd52luq	ymm22,ymm3,ymm2
      -	vpxorq	ymm23,ymm23,ymm23
      -	vpmadd52huq	ymm23,ymm3,ymm2
      -
      -	vpmadd52luq	ymm18,ymm3,ymm0
      -	vpmadd52huq	ymm19,ymm3,ymm0
      -	vpmadd52luq	ymm20,ymm4,ymm0
      -	vpmadd52huq	ymm21,ymm4,ymm0
      -	vpmadd52luq	ymm22,ymm5,ymm0
      -	vpmadd52huq	ymm23,ymm5,ymm0
      -
      -	vpmadd52luq	ymm18,ymm17,ymm1
      -	vpmadd52huq	ymm19,ymm17,ymm1
      -	vpmadd52luq	ymm20,ymm3,ymm1
      -	vpmadd52huq	ymm21,ymm3,ymm1
      -	vpmadd52luq	ymm22,ymm4,ymm1
      -	vpmadd52huq	ymm23,ymm4,ymm1
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm0,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm1,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm2,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -
      -	vpsrlq	ymm30,ymm0,44
      -	vpandq	ymm0,ymm0,ymm28
      -
      -	vpaddq	ymm1,ymm1,ymm30
      -
      -	dec	eax
      -	jz	NEAR $L$done_init_vpmadd52
      -
      -	vpunpcklqdq	ymm4,ymm1,ymm4
      -	vpbroadcastq	xmm1,xmm1
      -	vpunpcklqdq	ymm5,ymm2,ymm5
      -	vpbroadcastq	xmm2,xmm2
      -	vpunpcklqdq	ymm3,ymm0,ymm3
      -	vpbroadcastq	xmm0,xmm0
      -
      -	vpsllq	ymm16,ymm4,2
      -	vpsllq	ymm17,ymm5,2
      -	vpaddq	ymm16,ymm16,ymm4
      -	vpaddq	ymm17,ymm17,ymm5
      -	vpsllq	ymm16,ymm16,2
      -	vpsllq	ymm17,ymm17,2
      -
      -	jmp	NEAR $L$mul_init_vpmadd52
      -	ud2
      -
      -ALIGN	32
      -$L$done_init_vpmadd52:
      -	vinserti128	ymm4,ymm1,xmm4,1
      -	vinserti128	ymm5,ymm2,xmm5,1
      -	vinserti128	ymm3,ymm0,xmm3,1
      -
      -	vpermq	ymm4,ymm4,216
      -	vpermq	ymm5,ymm5,216
      -	vpermq	ymm3,ymm3,216
      -
      -	vpsllq	ymm16,ymm4,2
      -	vpaddq	ymm16,ymm16,ymm4
      -	vpsllq	ymm16,ymm16,2
      -
      -	vmovq	xmm0,QWORD[rdi]
      -	vmovq	xmm1,QWORD[8+rdi]
      -	vmovq	xmm2,QWORD[16+rdi]
      -
      -	test	rdx,3
      -	jnz	NEAR $L$done_init_vpmadd52_2x
      -
      -	vmovdqu64	YMMWORD[64+rdi],ymm3
      -	vpbroadcastq	ymm3,xmm3
      -	vmovdqu64	YMMWORD[96+rdi],ymm4
      -	vpbroadcastq	ymm4,xmm4
      -	vmovdqu64	YMMWORD[128+rdi],ymm5
      -	vpbroadcastq	ymm5,xmm5
      -	vmovdqu64	YMMWORD[160+rdi],ymm16
      -	vpbroadcastq	ymm16,xmm16
      -
      -	jmp	NEAR $L$blocks_vpmadd52_4x_key_loaded
      -	ud2
      -
      -ALIGN	32
      -$L$done_init_vpmadd52_2x:
      -	vmovdqu64	YMMWORD[64+rdi],ymm3
      -	vpsrldq	ymm3,ymm3,8
      -	vmovdqu64	YMMWORD[96+rdi],ymm4
      -	vpsrldq	ymm4,ymm4,8
      -	vmovdqu64	YMMWORD[128+rdi],ymm5
      -	vpsrldq	ymm5,ymm5,8
      -	vmovdqu64	YMMWORD[160+rdi],ymm16
      -	vpsrldq	ymm16,ymm16,8
      -	jmp	NEAR $L$blocks_vpmadd52_2x_key_loaded
      -	ud2
      -
      -ALIGN	32
      -$L$blocks_vpmadd52_2x_do:
      -	vmovdqu64	ymm5{k1}{z},[((128+8))+rdi]
      -	vmovdqu64	ymm16{k1}{z},[((160+8))+rdi]
      -	vmovdqu64	ymm3{k1}{z},[((64+8))+rdi]
      -	vmovdqu64	ymm4{k1}{z},[((96+8))+rdi]
      -
      -$L$blocks_vpmadd52_2x_key_loaded:
      -	vmovdqu64	ymm26,YMMWORD[rsi]
      -	vpxorq	ymm27,ymm27,ymm27
      -	lea	rsi,[32+rsi]
      -
      -	vpunpcklqdq	ymm25,ymm26,ymm27
      -	vpunpckhqdq	ymm27,ymm26,ymm27
      -
      -
      -
      -	vpsrlq	ymm26,ymm27,24
      -	vporq	ymm26,ymm26,ymm31
      -	vpaddq	ymm2,ymm2,ymm26
      -	vpandq	ymm24,ymm25,ymm28
      -	vpsrlq	ymm25,ymm25,44
      -	vpsllq	ymm27,ymm27,20
      -	vporq	ymm25,ymm25,ymm27
      -	vpandq	ymm25,ymm25,ymm28
      -
      -	jmp	NEAR $L$tail_vpmadd52_2x
      -	ud2
      -
      -ALIGN	32
      -$L$oop_vpmadd52_4x:
      -
      -	vpaddq	ymm0,ymm0,ymm24
      -	vpaddq	ymm1,ymm1,ymm25
      -
      -	vpxorq	ymm18,ymm18,ymm18
      -	vpmadd52luq	ymm18,ymm16,ymm2
      -	vpxorq	ymm19,ymm19,ymm19
      -	vpmadd52huq	ymm19,ymm16,ymm2
      -	vpxorq	ymm20,ymm20,ymm20
      -	vpmadd52luq	ymm20,ymm17,ymm2
      -	vpxorq	ymm21,ymm21,ymm21
      -	vpmadd52huq	ymm21,ymm17,ymm2
      -	vpxorq	ymm22,ymm22,ymm22
      -	vpmadd52luq	ymm22,ymm3,ymm2
      -	vpxorq	ymm23,ymm23,ymm23
      -	vpmadd52huq	ymm23,ymm3,ymm2
      -
      -	vmovdqu64	ymm26,YMMWORD[rsi]
      -	vmovdqu64	ymm27,YMMWORD[32+rsi]
      -	lea	rsi,[64+rsi]
      -	vpmadd52luq	ymm18,ymm3,ymm0
      -	vpmadd52huq	ymm19,ymm3,ymm0
      -	vpmadd52luq	ymm20,ymm4,ymm0
      -	vpmadd52huq	ymm21,ymm4,ymm0
      -	vpmadd52luq	ymm22,ymm5,ymm0
      -	vpmadd52huq	ymm23,ymm5,ymm0
      -
      -	vpunpcklqdq	ymm25,ymm26,ymm27
      -	vpunpckhqdq	ymm27,ymm26,ymm27
      -	vpmadd52luq	ymm18,ymm17,ymm1
      -	vpmadd52huq	ymm19,ymm17,ymm1
      -	vpmadd52luq	ymm20,ymm3,ymm1
      -	vpmadd52huq	ymm21,ymm3,ymm1
      -	vpmadd52luq	ymm22,ymm4,ymm1
      -	vpmadd52huq	ymm23,ymm4,ymm1
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm0,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpsrlq	ymm26,ymm27,24
      -	vporq	ymm26,ymm26,ymm31
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm1,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpandq	ymm24,ymm25,ymm28
      -	vpsrlq	ymm25,ymm25,44
      -	vpsllq	ymm27,ymm27,20
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm2,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm2,ymm2,ymm26
      -	vpaddq	ymm0,ymm0,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -	vporq	ymm25,ymm25,ymm27
      -	vpandq	ymm25,ymm25,ymm28
      -
      -	vpsrlq	ymm30,ymm0,44
      -	vpandq	ymm0,ymm0,ymm28
      -
      -	vpaddq	ymm1,ymm1,ymm30
      -
      -	sub	rdx,4
      -	jnz	NEAR $L$oop_vpmadd52_4x
      -
      -$L$tail_vpmadd52_4x:
      -	vmovdqu64	ymm5,YMMWORD[128+rdi]
      -	vmovdqu64	ymm16,YMMWORD[160+rdi]
      -	vmovdqu64	ymm3,YMMWORD[64+rdi]
      -	vmovdqu64	ymm4,YMMWORD[96+rdi]
      -
      -$L$tail_vpmadd52_2x:
      -	vpsllq	ymm17,ymm5,2
      -	vpaddq	ymm17,ymm17,ymm5
      -	vpsllq	ymm17,ymm17,2
      -
      -
      -	vpaddq	ymm0,ymm0,ymm24
      -	vpaddq	ymm1,ymm1,ymm25
      -
      -	vpxorq	ymm18,ymm18,ymm18
      -	vpmadd52luq	ymm18,ymm16,ymm2
      -	vpxorq	ymm19,ymm19,ymm19
      -	vpmadd52huq	ymm19,ymm16,ymm2
      -	vpxorq	ymm20,ymm20,ymm20
      -	vpmadd52luq	ymm20,ymm17,ymm2
      -	vpxorq	ymm21,ymm21,ymm21
      -	vpmadd52huq	ymm21,ymm17,ymm2
      -	vpxorq	ymm22,ymm22,ymm22
      -	vpmadd52luq	ymm22,ymm3,ymm2
      -	vpxorq	ymm23,ymm23,ymm23
      -	vpmadd52huq	ymm23,ymm3,ymm2
      -
      -	vpmadd52luq	ymm18,ymm3,ymm0
      -	vpmadd52huq	ymm19,ymm3,ymm0
      -	vpmadd52luq	ymm20,ymm4,ymm0
      -	vpmadd52huq	ymm21,ymm4,ymm0
      -	vpmadd52luq	ymm22,ymm5,ymm0
      -	vpmadd52huq	ymm23,ymm5,ymm0
      -
      -	vpmadd52luq	ymm18,ymm17,ymm1
      -	vpmadd52huq	ymm19,ymm17,ymm1
      -	vpmadd52luq	ymm20,ymm3,ymm1
      -	vpmadd52huq	ymm21,ymm3,ymm1
      -	vpmadd52luq	ymm22,ymm4,ymm1
      -	vpmadd52huq	ymm23,ymm4,ymm1
      -
      -
      -
      -
      -	mov	eax,1
      -	kmovw	k1,eax
      -	vpsrldq	ymm24,ymm18,8
      -	vpsrldq	ymm0,ymm19,8
      -	vpsrldq	ymm25,ymm20,8
      -	vpsrldq	ymm1,ymm21,8
      -	vpaddq	ymm18,ymm18,ymm24
      -	vpaddq	ymm19,ymm19,ymm0
      -	vpsrldq	ymm26,ymm22,8
      -	vpsrldq	ymm2,ymm23,8
      -	vpaddq	ymm20,ymm20,ymm25
      -	vpaddq	ymm21,ymm21,ymm1
      -	vpermq	ymm24,ymm18,0x2
      -	vpermq	ymm0,ymm19,0x2
      -	vpaddq	ymm22,ymm22,ymm26
      -	vpaddq	ymm23,ymm23,ymm2
      -
      -	vpermq	ymm25,ymm20,0x2
      -	vpermq	ymm1,ymm21,0x2
      -	vpaddq	ymm18{k1}{z},ymm18,ymm24
      -	vpaddq	ymm19{k1}{z},ymm19,ymm0
      -	vpermq	ymm26,ymm22,0x2
      -	vpermq	ymm2,ymm23,0x2
      -	vpaddq	ymm20{k1}{z},ymm20,ymm25
      -	vpaddq	ymm21{k1}{z},ymm21,ymm1
      -	vpaddq	ymm22{k1}{z},ymm22,ymm26
      -	vpaddq	ymm23{k1}{z},ymm23,ymm2
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm0,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm1,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm2,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -
      -	vpsrlq	ymm30,ymm0,44
      -	vpandq	ymm0,ymm0,ymm28
      -
      -	vpaddq	ymm1,ymm1,ymm30
      -
      -
      -	sub	rdx,2
      -	ja	NEAR $L$blocks_vpmadd52_4x_do
      -
      -	vmovq	QWORD[rdi],xmm0
      -	vmovq	QWORD[8+rdi],xmm1
      -	vmovq	QWORD[16+rdi],xmm2
      -	vzeroall
      -
      -$L$no_data_vpmadd52_4x:
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_blocks_vpmadd52_4x:
      -
      -ALIGN	32
      -poly1305_blocks_vpmadd52_8x:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_blocks_vpmadd52_8x:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -	mov	rcx,r9
      -
      -
      -
      -	shr	rdx,4
      -	jz	NEAR $L$no_data_vpmadd52_8x
      -
      -	shl	rcx,40
      -	mov	r8,QWORD[64+rdi]
      -
      -	vmovdqa64	ymm28,YMMWORD[$L$x_mask44]
      -	vmovdqa64	ymm29,YMMWORD[$L$x_mask42]
      -
      -	test	r8,r8
      -	js	NEAR $L$init_vpmadd52
      -
      -	vmovq	xmm0,QWORD[rdi]
      -	vmovq	xmm1,QWORD[8+rdi]
      -	vmovq	xmm2,QWORD[16+rdi]
      -
      -$L$blocks_vpmadd52_8x:
      -
      -
      -
      -	vmovdqu64	ymm5,YMMWORD[128+rdi]
      -	vmovdqu64	ymm16,YMMWORD[160+rdi]
      -	vmovdqu64	ymm3,YMMWORD[64+rdi]
      -	vmovdqu64	ymm4,YMMWORD[96+rdi]
      -
      -	vpsllq	ymm17,ymm5,2
      -	vpaddq	ymm17,ymm17,ymm5
      -	vpsllq	ymm17,ymm17,2
      -
      -	vpbroadcastq	ymm8,xmm5
      -	vpbroadcastq	ymm6,xmm3
      -	vpbroadcastq	ymm7,xmm4
      -
      -	vpxorq	ymm18,ymm18,ymm18
      -	vpmadd52luq	ymm18,ymm16,ymm8
      -	vpxorq	ymm19,ymm19,ymm19
      -	vpmadd52huq	ymm19,ymm16,ymm8
      -	vpxorq	ymm20,ymm20,ymm20
      -	vpmadd52luq	ymm20,ymm17,ymm8
      -	vpxorq	ymm21,ymm21,ymm21
      -	vpmadd52huq	ymm21,ymm17,ymm8
      -	vpxorq	ymm22,ymm22,ymm22
      -	vpmadd52luq	ymm22,ymm3,ymm8
      -	vpxorq	ymm23,ymm23,ymm23
      -	vpmadd52huq	ymm23,ymm3,ymm8
      -
      -	vpmadd52luq	ymm18,ymm3,ymm6
      -	vpmadd52huq	ymm19,ymm3,ymm6
      -	vpmadd52luq	ymm20,ymm4,ymm6
      -	vpmadd52huq	ymm21,ymm4,ymm6
      -	vpmadd52luq	ymm22,ymm5,ymm6
      -	vpmadd52huq	ymm23,ymm5,ymm6
      -
      -	vpmadd52luq	ymm18,ymm17,ymm7
      -	vpmadd52huq	ymm19,ymm17,ymm7
      -	vpmadd52luq	ymm20,ymm3,ymm7
      -	vpmadd52huq	ymm21,ymm3,ymm7
      -	vpmadd52luq	ymm22,ymm4,ymm7
      -	vpmadd52huq	ymm23,ymm4,ymm7
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm6,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm7,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm8,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm6,ymm6,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm6,ymm6,ymm23
      -
      -	vpsrlq	ymm30,ymm6,44
      -	vpandq	ymm6,ymm6,ymm28
      -
      -	vpaddq	ymm7,ymm7,ymm30
      -
      -
      -
      -
      -
      -	vpunpcklqdq	ymm26,ymm8,ymm5
      -	vpunpckhqdq	ymm5,ymm8,ymm5
      -	vpunpcklqdq	ymm24,ymm6,ymm3
      -	vpunpckhqdq	ymm3,ymm6,ymm3
      -	vpunpcklqdq	ymm25,ymm7,ymm4
      -	vpunpckhqdq	ymm4,ymm7,ymm4
      -	vshufi64x2	zmm8,zmm26,zmm5,0x44
      -	vshufi64x2	zmm6,zmm24,zmm3,0x44
      -	vshufi64x2	zmm7,zmm25,zmm4,0x44
      -
      -	vmovdqu64	zmm26,ZMMWORD[rsi]
      -	vmovdqu64	zmm27,ZMMWORD[64+rsi]
      -	lea	rsi,[128+rsi]
      -
      -	vpsllq	zmm10,zmm8,2
      -	vpsllq	zmm9,zmm7,2
      -	vpaddq	zmm10,zmm10,zmm8
      -	vpaddq	zmm9,zmm9,zmm7
      -	vpsllq	zmm10,zmm10,2
      -	vpsllq	zmm9,zmm9,2
      -
      -	vpbroadcastq	zmm31,rcx
      -	vpbroadcastq	zmm28,xmm28
      -	vpbroadcastq	zmm29,xmm29
      -
      -	vpbroadcastq	zmm16,xmm9
      -	vpbroadcastq	zmm17,xmm10
      -	vpbroadcastq	zmm3,xmm6
      -	vpbroadcastq	zmm4,xmm7
      -	vpbroadcastq	zmm5,xmm8
      -
      -	vpunpcklqdq	zmm25,zmm26,zmm27
      -	vpunpckhqdq	zmm27,zmm26,zmm27
      -
      -
      -
      -	vpsrlq	zmm26,zmm27,24
      -	vporq	zmm26,zmm26,zmm31
      -	vpaddq	zmm2,zmm2,zmm26
      -	vpandq	zmm24,zmm25,zmm28
      -	vpsrlq	zmm25,zmm25,44
      -	vpsllq	zmm27,zmm27,20
      -	vporq	zmm25,zmm25,zmm27
      -	vpandq	zmm25,zmm25,zmm28
      -
      -	sub	rdx,8
      -	jz	NEAR $L$tail_vpmadd52_8x
      -	jmp	NEAR $L$oop_vpmadd52_8x
      -
      -ALIGN	32
      -$L$oop_vpmadd52_8x:
      -
      -	vpaddq	zmm0,zmm0,zmm24
      -	vpaddq	zmm1,zmm1,zmm25
      -
      -	vpxorq	zmm18,zmm18,zmm18
      -	vpmadd52luq	zmm18,zmm16,zmm2
      -	vpxorq	zmm19,zmm19,zmm19
      -	vpmadd52huq	zmm19,zmm16,zmm2
      -	vpxorq	zmm20,zmm20,zmm20
      -	vpmadd52luq	zmm20,zmm17,zmm2
      -	vpxorq	zmm21,zmm21,zmm21
      -	vpmadd52huq	zmm21,zmm17,zmm2
      -	vpxorq	zmm22,zmm22,zmm22
      -	vpmadd52luq	zmm22,zmm3,zmm2
      -	vpxorq	zmm23,zmm23,zmm23
      -	vpmadd52huq	zmm23,zmm3,zmm2
      -
      -	vmovdqu64	zmm26,ZMMWORD[rsi]
      -	vmovdqu64	zmm27,ZMMWORD[64+rsi]
      -	lea	rsi,[128+rsi]
      -	vpmadd52luq	zmm18,zmm3,zmm0
      -	vpmadd52huq	zmm19,zmm3,zmm0
      -	vpmadd52luq	zmm20,zmm4,zmm0
      -	vpmadd52huq	zmm21,zmm4,zmm0
      -	vpmadd52luq	zmm22,zmm5,zmm0
      -	vpmadd52huq	zmm23,zmm5,zmm0
      -
      -	vpunpcklqdq	zmm25,zmm26,zmm27
      -	vpunpckhqdq	zmm27,zmm26,zmm27
      -	vpmadd52luq	zmm18,zmm17,zmm1
      -	vpmadd52huq	zmm19,zmm17,zmm1
      -	vpmadd52luq	zmm20,zmm3,zmm1
      -	vpmadd52huq	zmm21,zmm3,zmm1
      -	vpmadd52luq	zmm22,zmm4,zmm1
      -	vpmadd52huq	zmm23,zmm4,zmm1
      -
      -
      -
      -	vpsrlq	zmm30,zmm18,44
      -	vpsllq	zmm19,zmm19,8
      -	vpandq	zmm0,zmm18,zmm28
      -	vpaddq	zmm19,zmm19,zmm30
      -
      -	vpsrlq	zmm26,zmm27,24
      -	vporq	zmm26,zmm26,zmm31
      -	vpaddq	zmm20,zmm20,zmm19
      -
      -	vpsrlq	zmm30,zmm20,44
      -	vpsllq	zmm21,zmm21,8
      -	vpandq	zmm1,zmm20,zmm28
      -	vpaddq	zmm21,zmm21,zmm30
      -
      -	vpandq	zmm24,zmm25,zmm28
      -	vpsrlq	zmm25,zmm25,44
      -	vpsllq	zmm27,zmm27,20
      -	vpaddq	zmm22,zmm22,zmm21
      -
      -	vpsrlq	zmm30,zmm22,42
      -	vpsllq	zmm23,zmm23,10
      -	vpandq	zmm2,zmm22,zmm29
      -	vpaddq	zmm23,zmm23,zmm30
      -
      -	vpaddq	zmm2,zmm2,zmm26
      -	vpaddq	zmm0,zmm0,zmm23
      -	vpsllq	zmm23,zmm23,2
      -
      -	vpaddq	zmm0,zmm0,zmm23
      -	vporq	zmm25,zmm25,zmm27
      -	vpandq	zmm25,zmm25,zmm28
      -
      -	vpsrlq	zmm30,zmm0,44
      -	vpandq	zmm0,zmm0,zmm28
      -
      -	vpaddq	zmm1,zmm1,zmm30
      -
      -	sub	rdx,8
      -	jnz	NEAR $L$oop_vpmadd52_8x
      -
      -$L$tail_vpmadd52_8x:
      -
      -	vpaddq	zmm0,zmm0,zmm24
      -	vpaddq	zmm1,zmm1,zmm25
      -
      -	vpxorq	zmm18,zmm18,zmm18
      -	vpmadd52luq	zmm18,zmm9,zmm2
      -	vpxorq	zmm19,zmm19,zmm19
      -	vpmadd52huq	zmm19,zmm9,zmm2
      -	vpxorq	zmm20,zmm20,zmm20
      -	vpmadd52luq	zmm20,zmm10,zmm2
      -	vpxorq	zmm21,zmm21,zmm21
      -	vpmadd52huq	zmm21,zmm10,zmm2
      -	vpxorq	zmm22,zmm22,zmm22
      -	vpmadd52luq	zmm22,zmm6,zmm2
      -	vpxorq	zmm23,zmm23,zmm23
      -	vpmadd52huq	zmm23,zmm6,zmm2
      -
      -	vpmadd52luq	zmm18,zmm6,zmm0
      -	vpmadd52huq	zmm19,zmm6,zmm0
      -	vpmadd52luq	zmm20,zmm7,zmm0
      -	vpmadd52huq	zmm21,zmm7,zmm0
      -	vpmadd52luq	zmm22,zmm8,zmm0
      -	vpmadd52huq	zmm23,zmm8,zmm0
      -
      -	vpmadd52luq	zmm18,zmm10,zmm1
      -	vpmadd52huq	zmm19,zmm10,zmm1
      -	vpmadd52luq	zmm20,zmm6,zmm1
      -	vpmadd52huq	zmm21,zmm6,zmm1
      -	vpmadd52luq	zmm22,zmm7,zmm1
      -	vpmadd52huq	zmm23,zmm7,zmm1
      -
      -
      -
      -
      -	mov	eax,1
      -	kmovw	k1,eax
      -	vpsrldq	zmm24,zmm18,8
      -	vpsrldq	zmm0,zmm19,8
      -	vpsrldq	zmm25,zmm20,8
      -	vpsrldq	zmm1,zmm21,8
      -	vpaddq	zmm18,zmm18,zmm24
      -	vpaddq	zmm19,zmm19,zmm0
      -	vpsrldq	zmm26,zmm22,8
      -	vpsrldq	zmm2,zmm23,8
      -	vpaddq	zmm20,zmm20,zmm25
      -	vpaddq	zmm21,zmm21,zmm1
      -	vpermq	zmm24,zmm18,0x2
      -	vpermq	zmm0,zmm19,0x2
      -	vpaddq	zmm22,zmm22,zmm26
      -	vpaddq	zmm23,zmm23,zmm2
      -
      -	vpermq	zmm25,zmm20,0x2
      -	vpermq	zmm1,zmm21,0x2
      -	vpaddq	zmm18,zmm18,zmm24
      -	vpaddq	zmm19,zmm19,zmm0
      -	vpermq	zmm26,zmm22,0x2
      -	vpermq	zmm2,zmm23,0x2
      -	vpaddq	zmm20,zmm20,zmm25
      -	vpaddq	zmm21,zmm21,zmm1
      -	vextracti64x4	ymm24,zmm18,1
      -	vextracti64x4	ymm0,zmm19,1
      -	vpaddq	zmm22,zmm22,zmm26
      -	vpaddq	zmm23,zmm23,zmm2
      -
      -	vextracti64x4	ymm25,zmm20,1
      -	vextracti64x4	ymm1,zmm21,1
      -	vextracti64x4	ymm26,zmm22,1
      -	vextracti64x4	ymm2,zmm23,1
      -	vpaddq	ymm18{k1}{z},ymm18,ymm24
      -	vpaddq	ymm19{k1}{z},ymm19,ymm0
      -	vpaddq	ymm20{k1}{z},ymm20,ymm25
      -	vpaddq	ymm21{k1}{z},ymm21,ymm1
      -	vpaddq	ymm22{k1}{z},ymm22,ymm26
      -	vpaddq	ymm23{k1}{z},ymm23,ymm2
      -
      -
      -
      -	vpsrlq	ymm30,ymm18,44
      -	vpsllq	ymm19,ymm19,8
      -	vpandq	ymm0,ymm18,ymm28
      -	vpaddq	ymm19,ymm19,ymm30
      -
      -	vpaddq	ymm20,ymm20,ymm19
      -
      -	vpsrlq	ymm30,ymm20,44
      -	vpsllq	ymm21,ymm21,8
      -	vpandq	ymm1,ymm20,ymm28
      -	vpaddq	ymm21,ymm21,ymm30
      -
      -	vpaddq	ymm22,ymm22,ymm21
      -
      -	vpsrlq	ymm30,ymm22,42
      -	vpsllq	ymm23,ymm23,10
      -	vpandq	ymm2,ymm22,ymm29
      -	vpaddq	ymm23,ymm23,ymm30
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -	vpsllq	ymm23,ymm23,2
      -
      -	vpaddq	ymm0,ymm0,ymm23
      -
      -	vpsrlq	ymm30,ymm0,44
      -	vpandq	ymm0,ymm0,ymm28
      -
      -	vpaddq	ymm1,ymm1,ymm30
      -
      -
      -
      -	vmovq	QWORD[rdi],xmm0
      -	vmovq	QWORD[8+rdi],xmm1
      -	vmovq	QWORD[16+rdi],xmm2
      -	vzeroall
      -
      -$L$no_data_vpmadd52_8x:
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_blocks_vpmadd52_8x:
      -
      -ALIGN	32
      -poly1305_emit_base2_44:
      -	mov	QWORD[8+rsp],rdi	;WIN64 prologue
      -	mov	QWORD[16+rsp],rsi
      -	mov	rax,rsp
      -$L$SEH_begin_poly1305_emit_base2_44:
      -	mov	rdi,rcx
      -	mov	rsi,rdx
      -	mov	rdx,r8
      -
      -
      -
      -DB	243,15,30,250
      -	mov	r8,QWORD[rdi]
      -	mov	r9,QWORD[8+rdi]
      -	mov	r10,QWORD[16+rdi]
      -
      -	mov	rax,r9
      -	shr	r9,20
      -	shl	rax,44
      -	mov	rcx,r10
      -	shr	r10,40
      -	shl	rcx,24
      -
      -	add	r8,rax
      -	adc	r9,rcx
      -	adc	r10,0
      -
      -	mov	rax,r8
      -	add	r8,5
      -	mov	rcx,r9
      -	adc	r9,0
      -	adc	r10,0
      -	shr	r10,2
      -	cmovnz	rax,r8
      -	cmovnz	rcx,r9
      -
      -	add	rax,QWORD[rdx]
      -	adc	rcx,QWORD[8+rdx]
      -	mov	QWORD[rsi],rax
      -	mov	QWORD[8+rsi],rcx
      -
      -	mov	rdi,QWORD[8+rsp]	;WIN64 epilogue
      -	mov	rsi,QWORD[16+rsp]
      -	DB	0F3h,0C3h		;repret
      -
      -$L$SEH_end_poly1305_emit_base2_44:
       ALIGN	64
       $L$const:
       $L$mask24:
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h
      index 38b44f1054ad3d..a410f0eddf361c 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/include/openssl/pkcs7.h
      index 3978fd087bca3b..0a95a93e59e262 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/VC-WIN64A/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/VC-WIN64A/no-asm/configdata.pm b/deps/openssl/config/archs/VC-WIN64A/no-asm/configdata.pm
      index 37fe7ad1554464..8216effe724d74 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/VC-WIN64A/no-asm/configdata.pm
      @@ -166,7 +166,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -218,7 +218,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -271,11 +271,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "VC-WIN64A",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "lib",
      @@ -290,7 +290,7 @@ our %target = (
           "LDFLAGS" => "/nologo /debug",
           "MT" => "mt",
           "MTFLAGS" => "-nologo",
      -    "RANLIB" => "CODE(0x55ad7db3afe8)",
      +    "RANLIB" => "CODE(0x555a33e1b438)",
           "RC" => "rc",
           "_conf_fname_int" => [
               "Configurations/00-base-templates.conf",
      @@ -356,7 +356,7 @@ our %target = (
           "mtoutflag" => "-outputresource:",
           "multilib" => "-x64",
           "perl_platform" => "Windows::MSVC",
      -    "perlasm_scheme" => "auto",
      +    "perlasm_scheme" => "nasm",
           "rcoutflag" => "/fo",
           "shared_cflag" => "",
           "shared_defflag" => "",
      diff --git a/deps/openssl/config/archs/VC-WIN64A/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/VC-WIN64A/no-asm/crypto/buildinf.h
      index f0e9d087e2267d..369ab9a8a4cd45 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/VC-WIN64A/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: "
      -#define DATE "built on: Sun Aug  6 00:43:05 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:04:07 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h
      index 38b44f1054ad3d..a410f0eddf361c 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/VC-WIN64A/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/VC-WIN64A/no-asm/include/openssl/pkcs7.h
      index 3978fd087bca3b..0a95a93e59e262 100644
      --- a/deps/openssl/config/archs/VC-WIN64A/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/VC-WIN64A/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/asm/configdata.pm b/deps/openssl/config/archs/aix64-gcc-as/asm/configdata.pm
      index ca05289b718d86..510129745cd0c6 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/asm/configdata.pm
      +++ b/deps/openssl/config/archs/aix64-gcc-as/asm/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "aix64-gcc-as",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar -X64",
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/asm/crypto/buildinf.h b/deps/openssl/config/archs/aix64-gcc-as/asm/crypto/buildinf.h
      index 3f01432e2b1840..7d0c5f9befa8ba 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/aix64-gcc-as/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: aix64-gcc-as"
      -#define DATE "built on: Sun Aug  6 00:24:21 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:47:40 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/configdata.pm b/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/configdata.pm
      index a8d6fc77f0ac2d..65c498fd6d0e27 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "aix64-gcc-as",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar -X64",
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h
      index ec624a65971b4b..f2880ddb869f23 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: aix64-gcc-as"
      -#define DATE "built on: Sun Aug  6 00:24:41 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:47:59 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/no-asm/configdata.pm b/deps/openssl/config/archs/aix64-gcc-as/no-asm/configdata.pm
      index fdfbcce8adc844..24ad5c6241368a 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/aix64-gcc-as/no-asm/configdata.pm
      @@ -154,7 +154,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -205,7 +205,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "aix64-gcc-as",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar -X64",
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/aix64-gcc-as/no-asm/crypto/buildinf.h
      index 83233146a50c97..f7891d1f2dcf82 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/aix64-gcc-as/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: aix64-gcc-as"
      -#define DATE "built on: Sun Aug  6 00:25:01 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:48:18 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/aix64-gcc-as/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/aix64-gcc-as/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/aix64-gcc-as/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/aix64-gcc-as/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/asm/configdata.pm b/deps/openssl/config/archs/darwin-i386-cc/asm/configdata.pm
      index ba53b9f9cea130..ee6540933123b5 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/asm/configdata.pm
      +++ b/deps/openssl/config/archs/darwin-i386-cc/asm/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "darwin-i386-cc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/asm/crypto/buildinf.h b/deps/openssl/config/archs/darwin-i386-cc/asm/crypto/buildinf.h
      index e98ef7735cb4ed..10dc2211417972 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/darwin-i386-cc/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: darwin-i386-cc"
      -#define DATE "built on: Sun Aug  6 00:28:31 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:51:44 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/darwin-i386-cc/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/darwin-i386-cc/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/darwin-i386-cc/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/darwin-i386-cc/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/configdata.pm b/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/configdata.pm
      index a1999fe03a4772..6b70420111afc6 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "darwin-i386-cc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h
      index 76159a1731d678..f2e82653eee930 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: darwin-i386-cc"
      -#define DATE "built on: Sun Aug  6 00:28:51 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:52:03 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/no-asm/configdata.pm b/deps/openssl/config/archs/darwin-i386-cc/no-asm/configdata.pm
      index 97fab50db92bdf..51670419239bfc 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/darwin-i386-cc/no-asm/configdata.pm
      @@ -154,7 +154,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -205,7 +205,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "darwin-i386-cc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/darwin-i386-cc/no-asm/crypto/buildinf.h
      index 67ace143c5c393..f9b9c4c980b695 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/darwin-i386-cc/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: darwin-i386-cc"
      -#define DATE "built on: Sun Aug  6 00:29:11 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:52:23 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm/configdata.pm b/deps/openssl/config/archs/darwin64-arm64-cc/asm/configdata.pm
      index 9b51a15ef51371..532f2649c95127 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm/configdata.pm
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "darwin64-arm64-cc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/aes/aesv8-armx.S b/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/aes/aesv8-armx.S
      index 5e3afc1ced813d..ae20ad9ff6fbcb 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/aes/aesv8-armx.S
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/aes/aesv8-armx.S
      @@ -103,7 +103,7 @@ L192:
       Loop192:
       	tbl	v6.16b,{v4.16b},v2.16b
       	ext	v5.16b,v0.16b,v3.16b,#12
      -#ifdef __ARMEB__
      +#ifdef __AARCH64EB__
       	st1	{v4.4s},[x2],#16
       	sub	x2,x2,#8
       #else
      @@ -1510,7 +1510,7 @@ _aes_v8_ctr32_encrypt_blocks:
       	ldr	w5,[x3,#240]
       
       	ldr	w8, [x4, #12]
      -#ifdef __ARMEB__
      +#ifdef __AARCH64EB__
       	ld1	{v0.16b},[x4]
       #else
       	ld1	{v0.4s},[x4]
      @@ -1527,7 +1527,7 @@ _aes_v8_ctr32_encrypt_blocks:
       	add	x7,x3,#32
       	mov	w6,w5
       	csel	x12,xzr,x12,lo
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev	w8, w8
       #endif
       	orr	v1.16b,v0.16b,v0.16b
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/buildinf.h b/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/buildinf.h
      index 2e38ca1fc8f695..25b8011da926c1 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: darwin64-arm64-cc"
      -#define DATE "built on: Sun Aug  6 00:29:30 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:52:40 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/modes/ghashv8-armx.S b/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/modes/ghashv8-armx.S
      index 200c0d031253ea..dc71d8508de6f8 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/modes/ghashv8-armx.S
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/modes/ghashv8-armx.S
      @@ -101,7 +101,7 @@ _gcm_gmult_v8:
       	movi	v19.16b,#0xe1
       	ld1	{v20.2d,v21.2d},[x1]	//load twisted H, ...
       	shl	v19.2d,v19.2d,#57
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ext	v3.16b,v17.16b,v17.16b,#8
      @@ -126,7 +126,7 @@ _gcm_gmult_v8:
       	eor	v18.16b,v18.16b,v2.16b
       	eor	v0.16b,v0.16b,v18.16b
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v0.16b,v0.16b,v0.16b,#8
      @@ -163,14 +163,14 @@ _gcm_ghash_v8:
       	ext	v0.16b,v0.16b,v0.16b,#8		//rotate Xi
       	ld1	{v16.2d},[x2],#16	//load [rotated] I[0]
       	shl	v19.2d,v19.2d,#57		//compose 0xc2.0 constant
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v16.16b,v16.16b
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v3.16b,v16.16b,v16.16b,#8		//rotate I[0]
       	b.lo	Lodd_tail_v8		//x3 was less than 32
       	ld1	{v17.2d},[x2],x12	//load [rotated] I[1]
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ext	v7.16b,v17.16b,v17.16b,#8
      @@ -202,13 +202,13 @@ Loop_mod2x_v8:
       	eor	v18.16b,v0.16b,v2.16b
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v17.2d},[x2],x12	//load [rotated] I[i+3]
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v16.16b,v16.16b
       #endif
       	eor	v1.16b,v1.16b,v18.16b
       	pmull	v18.1q,v0.1d,v19.1d		//1st phase of reduction
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ins	v2.d[0],v1.d[1]
      @@ -258,7 +258,7 @@ Lodd_tail_v8:
       	eor	v0.16b,v0.16b,v18.16b
       
       Ldone_v8:
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v0.16b,v0.16b,v0.16b,#8
      @@ -277,7 +277,7 @@ Lgcm_ghash_v8_4x:
       	shl	v19.2d,v19.2d,#57		//compose 0xc2.0 constant
       
       	ld1	{v4.2d,v5.2d,v6.2d,v7.2d},[x2],#64
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
      @@ -321,7 +321,7 @@ Loop4x:
       	eor	v16.16b,v4.16b,v0.16b
       	ld1	{v4.2d,v5.2d,v6.2d,v7.2d},[x2],#64
       	ext	v3.16b,v16.16b,v16.16b,#8
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
       	rev64	v7.16b,v7.16b
      @@ -404,7 +404,7 @@ Lthree:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d,v5.2d,v6.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
       	rev64	v4.16b,v4.16b
      @@ -456,7 +456,7 @@ Ltwo:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d,v5.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v4.16b,v4.16b
       #endif
      @@ -499,7 +499,7 @@ Lone:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v4.16b,v4.16b
       #endif
       
      @@ -539,7 +539,7 @@ Ldone4x:
       	eor	v0.16b,v0.16b,v18.16b
       	ext	v0.16b,v0.16b,v0.16b,#8
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	st1	{v0.2d},[x0]		//write out Xi
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/poly1305/poly1305-armv8.S b/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/poly1305/poly1305-armv8.S
      index 90b6d357ac1483..a044e14cb61f5f 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/poly1305/poly1305-armv8.S
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm/crypto/poly1305/poly1305-armv8.S
      @@ -28,7 +28,7 @@ _poly1305_init:
       	ldp	x7,x8,[x1]		// load key
       	mov	x9,#0xfffffffc0fffffff
       	movk	x9,#0x0fff,lsl#48
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x7,x7			// flip bytes
       	rev	x8,x8
       #endif
      @@ -75,7 +75,7 @@ Lpoly1305_blocks:
       Loop:
       	ldp	x10,x11,[x1],#16	// load input
       	sub	x2,x2,#16
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x10,x10
       	rev	x11,x11
       #endif
      @@ -140,13 +140,13 @@ Lpoly1305_emit:
       	csel	x4,x4,x12,eq
       	csel	x5,x5,x13,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	x10,x10,#32		// flip nonce words
       	ror	x11,x11,#32
       #endif
       	adds	x4,x4,x10		// accumulate nonce
       	adc	x5,x5,x11
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x4,x4			// flip output bytes
       	rev	x5,x5
       #endif
      @@ -266,7 +266,7 @@ Lblocks_neon:
       	adcs	x5,x5,xzr
       	adc	x6,x6,xzr
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x12,x12
       	rev	x13,x13
       #endif
      @@ -312,7 +312,7 @@ Lbase2_64_neon:
       	ldp	x12,x13,[x1],#16	// load input
       	sub	x2,x2,#16
       	add	x9,x8,x8,lsr#2	// s1 = r1 + (r1 >> 2)
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x12,x12
       	rev	x13,x13
       #endif
      @@ -397,7 +397,7 @@ Ldo_neon:
       	lsl	x3,x3,#24
       	add	x15,x0,#48
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -433,7 +433,7 @@ Ldo_neon:
       	ld1	{v4.4s,v5.4s,v6.4s,v7.4s},[x15],#64
       	ld1	{v8.4s},[x15]
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -494,7 +494,7 @@ Loop_neon:
       	umull	v20.2d,v14.2s,v1.s[2]
       	ldp	x9,x13,[x16],#48
       	umull	v19.2d,v14.2s,v0.s[2]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -559,7 +559,7 @@ Loop_neon:
       	umlal	v23.2d,v11.2s,v3.s[0]
       	umlal	v20.2d,v11.2s,v8.s[0]
       	umlal	v21.2d,v11.2s,v0.s[0]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -840,13 +840,13 @@ Lpoly1305_emit_neon:
       	csel	x4,x4,x12,eq
       	csel	x5,x5,x13,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	x10,x10,#32		// flip nonce words
       	ror	x11,x11,#32
       #endif
       	adds	x4,x4,x10		// accumulate nonce
       	adc	x5,x5,x11
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x4,x4			// flip output bytes
       	rev	x5,x5
       #endif
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/configdata.pm b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/configdata.pm
      index a465039cbfa855..ce36db2197645b 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "darwin64-arm64-cc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/aes/aesv8-armx.S b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/aes/aesv8-armx.S
      index 5e3afc1ced813d..ae20ad9ff6fbcb 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/aes/aesv8-armx.S
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/aes/aesv8-armx.S
      @@ -103,7 +103,7 @@ L192:
       Loop192:
       	tbl	v6.16b,{v4.16b},v2.16b
       	ext	v5.16b,v0.16b,v3.16b,#12
      -#ifdef __ARMEB__
      +#ifdef __AARCH64EB__
       	st1	{v4.4s},[x2],#16
       	sub	x2,x2,#8
       #else
      @@ -1510,7 +1510,7 @@ _aes_v8_ctr32_encrypt_blocks:
       	ldr	w5,[x3,#240]
       
       	ldr	w8, [x4, #12]
      -#ifdef __ARMEB__
      +#ifdef __AARCH64EB__
       	ld1	{v0.16b},[x4]
       #else
       	ld1	{v0.4s},[x4]
      @@ -1527,7 +1527,7 @@ _aes_v8_ctr32_encrypt_blocks:
       	add	x7,x3,#32
       	mov	w6,w5
       	csel	x12,xzr,x12,lo
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev	w8, w8
       #endif
       	orr	v1.16b,v0.16b,v0.16b
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h
      index 513091049d0260..398666786c6285 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: darwin64-arm64-cc"
      -#define DATE "built on: Sun Aug  6 00:29:49 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:52:59 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/modes/ghashv8-armx.S b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/modes/ghashv8-armx.S
      index 200c0d031253ea..dc71d8508de6f8 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/modes/ghashv8-armx.S
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/modes/ghashv8-armx.S
      @@ -101,7 +101,7 @@ _gcm_gmult_v8:
       	movi	v19.16b,#0xe1
       	ld1	{v20.2d,v21.2d},[x1]	//load twisted H, ...
       	shl	v19.2d,v19.2d,#57
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ext	v3.16b,v17.16b,v17.16b,#8
      @@ -126,7 +126,7 @@ _gcm_gmult_v8:
       	eor	v18.16b,v18.16b,v2.16b
       	eor	v0.16b,v0.16b,v18.16b
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v0.16b,v0.16b,v0.16b,#8
      @@ -163,14 +163,14 @@ _gcm_ghash_v8:
       	ext	v0.16b,v0.16b,v0.16b,#8		//rotate Xi
       	ld1	{v16.2d},[x2],#16	//load [rotated] I[0]
       	shl	v19.2d,v19.2d,#57		//compose 0xc2.0 constant
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v16.16b,v16.16b
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v3.16b,v16.16b,v16.16b,#8		//rotate I[0]
       	b.lo	Lodd_tail_v8		//x3 was less than 32
       	ld1	{v17.2d},[x2],x12	//load [rotated] I[1]
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ext	v7.16b,v17.16b,v17.16b,#8
      @@ -202,13 +202,13 @@ Loop_mod2x_v8:
       	eor	v18.16b,v0.16b,v2.16b
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v17.2d},[x2],x12	//load [rotated] I[i+3]
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v16.16b,v16.16b
       #endif
       	eor	v1.16b,v1.16b,v18.16b
       	pmull	v18.1q,v0.1d,v19.1d		//1st phase of reduction
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ins	v2.d[0],v1.d[1]
      @@ -258,7 +258,7 @@ Lodd_tail_v8:
       	eor	v0.16b,v0.16b,v18.16b
       
       Ldone_v8:
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v0.16b,v0.16b,v0.16b,#8
      @@ -277,7 +277,7 @@ Lgcm_ghash_v8_4x:
       	shl	v19.2d,v19.2d,#57		//compose 0xc2.0 constant
       
       	ld1	{v4.2d,v5.2d,v6.2d,v7.2d},[x2],#64
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
      @@ -321,7 +321,7 @@ Loop4x:
       	eor	v16.16b,v4.16b,v0.16b
       	ld1	{v4.2d,v5.2d,v6.2d,v7.2d},[x2],#64
       	ext	v3.16b,v16.16b,v16.16b,#8
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
       	rev64	v7.16b,v7.16b
      @@ -404,7 +404,7 @@ Lthree:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d,v5.2d,v6.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
       	rev64	v4.16b,v4.16b
      @@ -456,7 +456,7 @@ Ltwo:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d,v5.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v4.16b,v4.16b
       #endif
      @@ -499,7 +499,7 @@ Lone:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v4.16b,v4.16b
       #endif
       
      @@ -539,7 +539,7 @@ Ldone4x:
       	eor	v0.16b,v0.16b,v18.16b
       	ext	v0.16b,v0.16b,v0.16b,#8
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	st1	{v0.2d},[x0]		//write out Xi
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/poly1305/poly1305-armv8.S b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/poly1305/poly1305-armv8.S
      index 90b6d357ac1483..a044e14cb61f5f 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/poly1305/poly1305-armv8.S
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/crypto/poly1305/poly1305-armv8.S
      @@ -28,7 +28,7 @@ _poly1305_init:
       	ldp	x7,x8,[x1]		// load key
       	mov	x9,#0xfffffffc0fffffff
       	movk	x9,#0x0fff,lsl#48
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x7,x7			// flip bytes
       	rev	x8,x8
       #endif
      @@ -75,7 +75,7 @@ Lpoly1305_blocks:
       Loop:
       	ldp	x10,x11,[x1],#16	// load input
       	sub	x2,x2,#16
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x10,x10
       	rev	x11,x11
       #endif
      @@ -140,13 +140,13 @@ Lpoly1305_emit:
       	csel	x4,x4,x12,eq
       	csel	x5,x5,x13,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	x10,x10,#32		// flip nonce words
       	ror	x11,x11,#32
       #endif
       	adds	x4,x4,x10		// accumulate nonce
       	adc	x5,x5,x11
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x4,x4			// flip output bytes
       	rev	x5,x5
       #endif
      @@ -266,7 +266,7 @@ Lblocks_neon:
       	adcs	x5,x5,xzr
       	adc	x6,x6,xzr
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x12,x12
       	rev	x13,x13
       #endif
      @@ -312,7 +312,7 @@ Lbase2_64_neon:
       	ldp	x12,x13,[x1],#16	// load input
       	sub	x2,x2,#16
       	add	x9,x8,x8,lsr#2	// s1 = r1 + (r1 >> 2)
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x12,x12
       	rev	x13,x13
       #endif
      @@ -397,7 +397,7 @@ Ldo_neon:
       	lsl	x3,x3,#24
       	add	x15,x0,#48
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -433,7 +433,7 @@ Ldo_neon:
       	ld1	{v4.4s,v5.4s,v6.4s,v7.4s},[x15],#64
       	ld1	{v8.4s},[x15]
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -494,7 +494,7 @@ Loop_neon:
       	umull	v20.2d,v14.2s,v1.s[2]
       	ldp	x9,x13,[x16],#48
       	umull	v19.2d,v14.2s,v0.s[2]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -559,7 +559,7 @@ Loop_neon:
       	umlal	v23.2d,v11.2s,v3.s[0]
       	umlal	v20.2d,v11.2s,v8.s[0]
       	umlal	v21.2d,v11.2s,v0.s[0]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -840,13 +840,13 @@ Lpoly1305_emit_neon:
       	csel	x4,x4,x12,eq
       	csel	x5,x5,x13,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	x10,x10,#32		// flip nonce words
       	ror	x11,x11,#32
       #endif
       	adds	x4,x4,x10		// accumulate nonce
       	adc	x5,x5,x11
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x4,x4			// flip output bytes
       	rev	x5,x5
       #endif
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/configdata.pm b/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/configdata.pm
      index 6519d8eb5ee0d2..d1c07ea505db01 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/configdata.pm
      @@ -154,7 +154,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -205,7 +205,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "darwin64-arm64-cc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h
      index bf5b5aecd602cd..f8a747399b32f4 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: darwin64-arm64-cc"
      -#define DATE "built on: Sun Aug  6 00:30:09 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:53:18 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/asm/configdata.pm b/deps/openssl/config/archs/darwin64-x86_64-cc/asm/configdata.pm
      index 8f523192cad9d4..fbffdc36072be9 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/asm/configdata.pm
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/asm/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "darwin64-x86_64-cc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h b/deps/openssl/config/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h
      index 2c108157902d0c..5d70cfc584bb4c 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: darwin64-x86_64-cc"
      -#define DATE "built on: Sun Aug  6 00:27:25 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:50:40 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/configdata.pm b/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/configdata.pm
      index d036b582d78c68..e76d49d0c7c8c4 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "darwin64-x86_64-cc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h
      index 994cec42e962cd..400bfc2f11b14f 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: darwin64-x86_64-cc"
      -#define DATE "built on: Sun Aug  6 00:27:49 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:51:03 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/configdata.pm b/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/configdata.pm
      index e85b222e7d012d..5b1ec98359201f 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/configdata.pm
      @@ -154,7 +154,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -205,7 +205,7 @@ our %config = (
           ],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -258,11 +258,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "darwin64-x86_64-cc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h
      index fb875ca7f85df2..935727e4cc5d08 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: darwin64-x86_64-cc"
      -#define DATE "built on: Sun Aug  6 00:28:13 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:51:26 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm/configdata.pm b/deps/openssl/config/archs/linux-aarch64/asm/configdata.pm
      index 8d48c4016f8c8b..fd7fbe3f636d8a 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-aarch64/asm/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-aarch64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm/crypto/aes/aesv8-armx.S b/deps/openssl/config/archs/linux-aarch64/asm/crypto/aes/aesv8-armx.S
      index 51c4d7208da2ba..0d2a81daf9d2bf 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm/crypto/aes/aesv8-armx.S
      +++ b/deps/openssl/config/archs/linux-aarch64/asm/crypto/aes/aesv8-armx.S
      @@ -103,7 +103,7 @@ aes_v8_set_encrypt_key:
       .Loop192:
       	tbl	v6.16b,{v4.16b},v2.16b
       	ext	v5.16b,v0.16b,v3.16b,#12
      -#ifdef __ARMEB__
      +#ifdef __AARCH64EB__
       	st1	{v4.4s},[x2],#16
       	sub	x2,x2,#8
       #else
      @@ -1510,7 +1510,7 @@ aes_v8_ctr32_encrypt_blocks:
       	ldr	w5,[x3,#240]
       
       	ldr	w8, [x4, #12]
      -#ifdef __ARMEB__
      +#ifdef __AARCH64EB__
       	ld1	{v0.16b},[x4]
       #else
       	ld1	{v0.4s},[x4]
      @@ -1527,7 +1527,7 @@ aes_v8_ctr32_encrypt_blocks:
       	add	x7,x3,#32
       	mov	w6,w5
       	csel	x12,xzr,x12,lo
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev	w8, w8
       #endif
       	orr	v1.16b,v0.16b,v0.16b
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-aarch64/asm/crypto/buildinf.h
      index 59ce7dfcd536af..aa138ec0af4f2f 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-aarch64/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-aarch64"
      -#define DATE "built on: Sun Aug  6 00:30:30 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:53:36 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm/crypto/modes/ghashv8-armx.S b/deps/openssl/config/archs/linux-aarch64/asm/crypto/modes/ghashv8-armx.S
      index acd52eb9568633..ea6a66a229e10f 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm/crypto/modes/ghashv8-armx.S
      +++ b/deps/openssl/config/archs/linux-aarch64/asm/crypto/modes/ghashv8-armx.S
      @@ -101,7 +101,7 @@ gcm_gmult_v8:
       	movi	v19.16b,#0xe1
       	ld1	{v20.2d,v21.2d},[x1]	//load twisted H, ...
       	shl	v19.2d,v19.2d,#57
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ext	v3.16b,v17.16b,v17.16b,#8
      @@ -126,7 +126,7 @@ gcm_gmult_v8:
       	eor	v18.16b,v18.16b,v2.16b
       	eor	v0.16b,v0.16b,v18.16b
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v0.16b,v0.16b,v0.16b,#8
      @@ -163,14 +163,14 @@ gcm_ghash_v8:
       	ext	v0.16b,v0.16b,v0.16b,#8		//rotate Xi
       	ld1	{v16.2d},[x2],#16	//load [rotated] I[0]
       	shl	v19.2d,v19.2d,#57		//compose 0xc2.0 constant
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v16.16b,v16.16b
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v3.16b,v16.16b,v16.16b,#8		//rotate I[0]
       	b.lo	.Lodd_tail_v8		//x3 was less than 32
       	ld1	{v17.2d},[x2],x12	//load [rotated] I[1]
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ext	v7.16b,v17.16b,v17.16b,#8
      @@ -202,13 +202,13 @@ gcm_ghash_v8:
       	eor	v18.16b,v0.16b,v2.16b
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v17.2d},[x2],x12	//load [rotated] I[i+3]
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v16.16b,v16.16b
       #endif
       	eor	v1.16b,v1.16b,v18.16b
       	pmull	v18.1q,v0.1d,v19.1d		//1st phase of reduction
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ins	v2.d[0],v1.d[1]
      @@ -258,7 +258,7 @@ gcm_ghash_v8:
       	eor	v0.16b,v0.16b,v18.16b
       
       .Ldone_v8:
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v0.16b,v0.16b,v0.16b,#8
      @@ -277,7 +277,7 @@ gcm_ghash_v8_4x:
       	shl	v19.2d,v19.2d,#57		//compose 0xc2.0 constant
       
       	ld1	{v4.2d,v5.2d,v6.2d,v7.2d},[x2],#64
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
      @@ -321,7 +321,7 @@ gcm_ghash_v8_4x:
       	eor	v16.16b,v4.16b,v0.16b
       	ld1	{v4.2d,v5.2d,v6.2d,v7.2d},[x2],#64
       	ext	v3.16b,v16.16b,v16.16b,#8
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
       	rev64	v7.16b,v7.16b
      @@ -404,7 +404,7 @@ gcm_ghash_v8_4x:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d,v5.2d,v6.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
       	rev64	v4.16b,v4.16b
      @@ -456,7 +456,7 @@ gcm_ghash_v8_4x:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d,v5.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v4.16b,v4.16b
       #endif
      @@ -499,7 +499,7 @@ gcm_ghash_v8_4x:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v4.16b,v4.16b
       #endif
       
      @@ -539,7 +539,7 @@ gcm_ghash_v8_4x:
       	eor	v0.16b,v0.16b,v18.16b
       	ext	v0.16b,v0.16b,v0.16b,#8
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	st1	{v0.2d},[x0]		//write out Xi
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm/crypto/poly1305/poly1305-armv8.S b/deps/openssl/config/archs/linux-aarch64/asm/crypto/poly1305/poly1305-armv8.S
      index ea8f390224053a..98ebf48535e5e9 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm/crypto/poly1305/poly1305-armv8.S
      +++ b/deps/openssl/config/archs/linux-aarch64/asm/crypto/poly1305/poly1305-armv8.S
      @@ -28,7 +28,7 @@ poly1305_init:
       	ldp	x7,x8,[x1]		// load key
       	mov	x9,#0xfffffffc0fffffff
       	movk	x9,#0x0fff,lsl#48
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x7,x7			// flip bytes
       	rev	x8,x8
       #endif
      @@ -75,7 +75,7 @@ poly1305_blocks:
       .Loop:
       	ldp	x10,x11,[x1],#16	// load input
       	sub	x2,x2,#16
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x10,x10
       	rev	x11,x11
       #endif
      @@ -140,13 +140,13 @@ poly1305_emit:
       	csel	x4,x4,x12,eq
       	csel	x5,x5,x13,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	x10,x10,#32		// flip nonce words
       	ror	x11,x11,#32
       #endif
       	adds	x4,x4,x10		// accumulate nonce
       	adc	x5,x5,x11
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x4,x4			// flip output bytes
       	rev	x5,x5
       #endif
      @@ -266,7 +266,7 @@ poly1305_blocks_neon:
       	adcs	x5,x5,xzr
       	adc	x6,x6,xzr
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x12,x12
       	rev	x13,x13
       #endif
      @@ -312,7 +312,7 @@ poly1305_blocks_neon:
       	ldp	x12,x13,[x1],#16	// load input
       	sub	x2,x2,#16
       	add	x9,x8,x8,lsr#2	// s1 = r1 + (r1 >> 2)
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x12,x12
       	rev	x13,x13
       #endif
      @@ -397,7 +397,7 @@ poly1305_blocks_neon:
       	lsl	x3,x3,#24
       	add	x15,x0,#48
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -433,7 +433,7 @@ poly1305_blocks_neon:
       	ld1	{v4.4s,v5.4s,v6.4s,v7.4s},[x15],#64
       	ld1	{v8.4s},[x15]
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -494,7 +494,7 @@ poly1305_blocks_neon:
       	umull	v20.2d,v14.2s,v1.s[2]
       	ldp	x9,x13,[x16],#48
       	umull	v19.2d,v14.2s,v0.s[2]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -559,7 +559,7 @@ poly1305_blocks_neon:
       	umlal	v23.2d,v11.2s,v3.s[0]
       	umlal	v20.2d,v11.2s,v8.s[0]
       	umlal	v21.2d,v11.2s,v0.s[0]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -840,13 +840,13 @@ poly1305_emit_neon:
       	csel	x4,x4,x12,eq
       	csel	x5,x5,x13,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	x10,x10,#32		// flip nonce words
       	ror	x11,x11,#32
       #endif
       	adds	x4,x4,x10		// accumulate nonce
       	adc	x5,x5,x11
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x4,x4			// flip output bytes
       	rev	x5,x5
       #endif
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm_avx2/configdata.pm b/deps/openssl/config/archs/linux-aarch64/asm_avx2/configdata.pm
      index 9d498a04297dd0..2802640171fd6e 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/linux-aarch64/asm_avx2/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-aarch64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/aes/aesv8-armx.S b/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/aes/aesv8-armx.S
      index 51c4d7208da2ba..0d2a81daf9d2bf 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/aes/aesv8-armx.S
      +++ b/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/aes/aesv8-armx.S
      @@ -103,7 +103,7 @@ aes_v8_set_encrypt_key:
       .Loop192:
       	tbl	v6.16b,{v4.16b},v2.16b
       	ext	v5.16b,v0.16b,v3.16b,#12
      -#ifdef __ARMEB__
      +#ifdef __AARCH64EB__
       	st1	{v4.4s},[x2],#16
       	sub	x2,x2,#8
       #else
      @@ -1510,7 +1510,7 @@ aes_v8_ctr32_encrypt_blocks:
       	ldr	w5,[x3,#240]
       
       	ldr	w8, [x4, #12]
      -#ifdef __ARMEB__
      +#ifdef __AARCH64EB__
       	ld1	{v0.16b},[x4]
       #else
       	ld1	{v0.4s},[x4]
      @@ -1527,7 +1527,7 @@ aes_v8_ctr32_encrypt_blocks:
       	add	x7,x3,#32
       	mov	w6,w5
       	csel	x12,xzr,x12,lo
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev	w8, w8
       #endif
       	orr	v1.16b,v0.16b,v0.16b
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/buildinf.h
      index 8044c52de8534f..fe50bcb0f8eebe 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-aarch64"
      -#define DATE "built on: Sun Aug  6 00:30:52 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:53:55 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/modes/ghashv8-armx.S b/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/modes/ghashv8-armx.S
      index acd52eb9568633..ea6a66a229e10f 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/modes/ghashv8-armx.S
      +++ b/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/modes/ghashv8-armx.S
      @@ -101,7 +101,7 @@ gcm_gmult_v8:
       	movi	v19.16b,#0xe1
       	ld1	{v20.2d,v21.2d},[x1]	//load twisted H, ...
       	shl	v19.2d,v19.2d,#57
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ext	v3.16b,v17.16b,v17.16b,#8
      @@ -126,7 +126,7 @@ gcm_gmult_v8:
       	eor	v18.16b,v18.16b,v2.16b
       	eor	v0.16b,v0.16b,v18.16b
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v0.16b,v0.16b,v0.16b,#8
      @@ -163,14 +163,14 @@ gcm_ghash_v8:
       	ext	v0.16b,v0.16b,v0.16b,#8		//rotate Xi
       	ld1	{v16.2d},[x2],#16	//load [rotated] I[0]
       	shl	v19.2d,v19.2d,#57		//compose 0xc2.0 constant
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v16.16b,v16.16b
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v3.16b,v16.16b,v16.16b,#8		//rotate I[0]
       	b.lo	.Lodd_tail_v8		//x3 was less than 32
       	ld1	{v17.2d},[x2],x12	//load [rotated] I[1]
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ext	v7.16b,v17.16b,v17.16b,#8
      @@ -202,13 +202,13 @@ gcm_ghash_v8:
       	eor	v18.16b,v0.16b,v2.16b
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v17.2d},[x2],x12	//load [rotated] I[i+3]
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v16.16b,v16.16b
       #endif
       	eor	v1.16b,v1.16b,v18.16b
       	pmull	v18.1q,v0.1d,v19.1d		//1st phase of reduction
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v17.16b,v17.16b
       #endif
       	ins	v2.d[0],v1.d[1]
      @@ -258,7 +258,7 @@ gcm_ghash_v8:
       	eor	v0.16b,v0.16b,v18.16b
       
       .Ldone_v8:
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	ext	v0.16b,v0.16b,v0.16b,#8
      @@ -277,7 +277,7 @@ gcm_ghash_v8_4x:
       	shl	v19.2d,v19.2d,#57		//compose 0xc2.0 constant
       
       	ld1	{v4.2d,v5.2d,v6.2d,v7.2d},[x2],#64
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
      @@ -321,7 +321,7 @@ gcm_ghash_v8_4x:
       	eor	v16.16b,v4.16b,v0.16b
       	ld1	{v4.2d,v5.2d,v6.2d,v7.2d},[x2],#64
       	ext	v3.16b,v16.16b,v16.16b,#8
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
       	rev64	v7.16b,v7.16b
      @@ -404,7 +404,7 @@ gcm_ghash_v8_4x:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d,v5.2d,v6.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v6.16b,v6.16b
       	rev64	v4.16b,v4.16b
      @@ -456,7 +456,7 @@ gcm_ghash_v8_4x:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d,v5.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v5.16b,v5.16b
       	rev64	v4.16b,v4.16b
       #endif
      @@ -499,7 +499,7 @@ gcm_ghash_v8_4x:
       	eor	v1.16b,v1.16b,v17.16b
       	ld1	{v4.2d},[x2]
       	eor	v1.16b,v1.16b,v18.16b
      -#ifndef	__ARMEB__
      +#ifndef	__AARCH64EB__
       	rev64	v4.16b,v4.16b
       #endif
       
      @@ -539,7 +539,7 @@ gcm_ghash_v8_4x:
       	eor	v0.16b,v0.16b,v18.16b
       	ext	v0.16b,v0.16b,v0.16b,#8
       
      -#ifndef __ARMEB__
      +#ifndef __AARCH64EB__
       	rev64	v0.16b,v0.16b
       #endif
       	st1	{v0.2d},[x0]		//write out Xi
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/poly1305/poly1305-armv8.S b/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/poly1305/poly1305-armv8.S
      index ea8f390224053a..98ebf48535e5e9 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/poly1305/poly1305-armv8.S
      +++ b/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/poly1305/poly1305-armv8.S
      @@ -28,7 +28,7 @@ poly1305_init:
       	ldp	x7,x8,[x1]		// load key
       	mov	x9,#0xfffffffc0fffffff
       	movk	x9,#0x0fff,lsl#48
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x7,x7			// flip bytes
       	rev	x8,x8
       #endif
      @@ -75,7 +75,7 @@ poly1305_blocks:
       .Loop:
       	ldp	x10,x11,[x1],#16	// load input
       	sub	x2,x2,#16
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x10,x10
       	rev	x11,x11
       #endif
      @@ -140,13 +140,13 @@ poly1305_emit:
       	csel	x4,x4,x12,eq
       	csel	x5,x5,x13,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	x10,x10,#32		// flip nonce words
       	ror	x11,x11,#32
       #endif
       	adds	x4,x4,x10		// accumulate nonce
       	adc	x5,x5,x11
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x4,x4			// flip output bytes
       	rev	x5,x5
       #endif
      @@ -266,7 +266,7 @@ poly1305_blocks_neon:
       	adcs	x5,x5,xzr
       	adc	x6,x6,xzr
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x12,x12
       	rev	x13,x13
       #endif
      @@ -312,7 +312,7 @@ poly1305_blocks_neon:
       	ldp	x12,x13,[x1],#16	// load input
       	sub	x2,x2,#16
       	add	x9,x8,x8,lsr#2	// s1 = r1 + (r1 >> 2)
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x12,x12
       	rev	x13,x13
       #endif
      @@ -397,7 +397,7 @@ poly1305_blocks_neon:
       	lsl	x3,x3,#24
       	add	x15,x0,#48
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -433,7 +433,7 @@ poly1305_blocks_neon:
       	ld1	{v4.4s,v5.4s,v6.4s,v7.4s},[x15],#64
       	ld1	{v8.4s},[x15]
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -494,7 +494,7 @@ poly1305_blocks_neon:
       	umull	v20.2d,v14.2s,v1.s[2]
       	ldp	x9,x13,[x16],#48
       	umull	v19.2d,v14.2s,v0.s[2]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -559,7 +559,7 @@ poly1305_blocks_neon:
       	umlal	v23.2d,v11.2s,v3.s[0]
       	umlal	v20.2d,v11.2s,v8.s[0]
       	umlal	v21.2d,v11.2s,v0.s[0]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -840,13 +840,13 @@ poly1305_emit_neon:
       	csel	x4,x4,x12,eq
       	csel	x5,x5,x13,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	x10,x10,#32		// flip nonce words
       	ror	x11,x11,#32
       #endif
       	adds	x4,x4,x10		// accumulate nonce
       	adc	x5,x5,x11
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x4,x4			// flip output bytes
       	rev	x5,x5
       #endif
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-aarch64/no-asm/configdata.pm b/deps/openssl/config/archs/linux-aarch64/no-asm/configdata.pm
      index 31514639fa12cd..bf7ab392cebcd7 100644
      --- a/deps/openssl/config/archs/linux-aarch64/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-aarch64/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-aarch64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-aarch64/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-aarch64/no-asm/crypto/buildinf.h
      index 2c556e7c636514..e40fd9e8fa7be3 100644
      --- a/deps/openssl/config/archs/linux-aarch64/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-aarch64/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-aarch64"
      -#define DATE "built on: Sun Aug  6 00:31:14 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:54:15 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-armv4/asm/configdata.pm b/deps/openssl/config/archs/linux-armv4/asm/configdata.pm
      index b6536beee0911a..79653867c073ee 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-armv4/asm/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-armv4",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-armv4/asm/crypto/aes/bsaes-armv7.S b/deps/openssl/config/archs/linux-armv4/asm/crypto/aes/bsaes-armv7.S
      index 4b7f662140fba1..545d7f76c8a168 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm/crypto/aes/bsaes-armv7.S
      +++ b/deps/openssl/config/archs/linux-armv4/asm/crypto/aes/bsaes-armv7.S
      @@ -1131,7 +1131,7 @@ ossl_bsaes_cbc_encrypt:
       	vstmia	r4, {q7}
       
       .align	2
      -
      +0:
       #endif
       
       	vld1.8	{q15}, [r8]		@ load IV
      @@ -1391,7 +1391,7 @@ ossl_bsaes_ctr32_encrypt_blocks:
       	vstmia	r12, {q7}			@ save last round key
       
       .align	2
      -	add	r12, r3, #248
      +0:	add	r12, r3, #248
       	vld1.8	{q0}, [r8]		@ load counter
       	add	r8, r6, #.LREVM0SR-.LM0	@ borrow r8
       	vldmia	r12, {q4}			@ load round0 key
      @@ -1626,7 +1626,7 @@ ossl_bsaes_xts_encrypt:
       	vstmia	r12, {q7}
       
       .align	2
      -	sub	sp, #0x90			@ place for tweak[9]
      +0:	sub	sp, #0x90			@ place for tweak[9]
       #endif
       
       	vld1.8	{q8}, [r0]			@ initial tweak
      @@ -2112,7 +2112,7 @@ ossl_bsaes_xts_decrypt:
       	vstmia	r4, {q7}
       
       .align	2
      -	sub	sp, #0x90			@ place for tweak[9]
      +0:	sub	sp, #0x90			@ place for tweak[9]
       #endif
       	vld1.8	{q8}, [r0]			@ initial tweak
       	adr	r2, .Lxts_magic
      diff --git a/deps/openssl/config/archs/linux-armv4/asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-armv4/asm/crypto/buildinf.h
      index 16acd7cb38014e..470b8436be3e9a 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-armv4/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-armv4"
      -#define DATE "built on: Sun Aug  6 00:31:35 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:54:32 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-armv4/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-armv4/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-armv4/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-armv4/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-armv4/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-armv4/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-armv4/asm_avx2/configdata.pm b/deps/openssl/config/archs/linux-armv4/asm_avx2/configdata.pm
      index 2d6713a69fe77a..61ce2baaf0268d 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/linux-armv4/asm_avx2/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-armv4",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/aes/bsaes-armv7.S b/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/aes/bsaes-armv7.S
      index 4b7f662140fba1..545d7f76c8a168 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/aes/bsaes-armv7.S
      +++ b/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/aes/bsaes-armv7.S
      @@ -1131,7 +1131,7 @@ ossl_bsaes_cbc_encrypt:
       	vstmia	r4, {q7}
       
       .align	2
      -
      +0:
       #endif
       
       	vld1.8	{q15}, [r8]		@ load IV
      @@ -1391,7 +1391,7 @@ ossl_bsaes_ctr32_encrypt_blocks:
       	vstmia	r12, {q7}			@ save last round key
       
       .align	2
      -	add	r12, r3, #248
      +0:	add	r12, r3, #248
       	vld1.8	{q0}, [r8]		@ load counter
       	add	r8, r6, #.LREVM0SR-.LM0	@ borrow r8
       	vldmia	r12, {q4}			@ load round0 key
      @@ -1626,7 +1626,7 @@ ossl_bsaes_xts_encrypt:
       	vstmia	r12, {q7}
       
       .align	2
      -	sub	sp, #0x90			@ place for tweak[9]
      +0:	sub	sp, #0x90			@ place for tweak[9]
       #endif
       
       	vld1.8	{q8}, [r0]			@ initial tweak
      @@ -2112,7 +2112,7 @@ ossl_bsaes_xts_decrypt:
       	vstmia	r4, {q7}
       
       .align	2
      -	sub	sp, #0x90			@ place for tweak[9]
      +0:	sub	sp, #0x90			@ place for tweak[9]
       #endif
       	vld1.8	{q8}, [r0]			@ initial tweak
       	adr	r2, .Lxts_magic
      diff --git a/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/buildinf.h
      index 2ee5795e784c20..34de4e5471460b 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-armv4"
      -#define DATE "built on: Sun Aug  6 00:31:58 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:54:52 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-armv4/no-asm/configdata.pm b/deps/openssl/config/archs/linux-armv4/no-asm/configdata.pm
      index bee312afe923a3..3945676082d3a7 100644
      --- a/deps/openssl/config/archs/linux-armv4/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-armv4/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-armv4",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-armv4/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-armv4/no-asm/crypto/buildinf.h
      index 37415a157b7a5a..06676dd0a62428 100644
      --- a/deps/openssl/config/archs/linux-armv4/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-armv4/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-armv4"
      -#define DATE "built on: Sun Aug  6 00:32:20 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:55:11 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-elf/asm/configdata.pm b/deps/openssl/config/archs/linux-elf/asm/configdata.pm
      index fe754b5ea008b5..f42b25e4813c2c 100644
      --- a/deps/openssl/config/archs/linux-elf/asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-elf/asm/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-elf",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-elf/asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-elf/asm/crypto/buildinf.h
      index f58e1b3b022376..9cfe51eea4fc93 100644
      --- a/deps/openssl/config/archs/linux-elf/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-elf/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-elf"
      -#define DATE "built on: Sun Aug  6 00:32:41 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:55:29 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-elf/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-elf/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-elf/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-elf/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-elf/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-elf/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-elf/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-elf/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-elf/asm_avx2/configdata.pm b/deps/openssl/config/archs/linux-elf/asm_avx2/configdata.pm
      index 083f6bc78525da..0af1ae16add5e7 100644
      --- a/deps/openssl/config/archs/linux-elf/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/linux-elf/asm_avx2/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-elf",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-elf/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/linux-elf/asm_avx2/crypto/buildinf.h
      index cfff344f504f1f..32a9cc3b4e7b0b 100644
      --- a/deps/openssl/config/archs/linux-elf/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-elf/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-elf"
      -#define DATE "built on: Sun Aug  6 00:33:04 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:55:49 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-elf/no-asm/configdata.pm b/deps/openssl/config/archs/linux-elf/no-asm/configdata.pm
      index a5e1137b149e7a..6b8469360a6939 100644
      --- a/deps/openssl/config/archs/linux-elf/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-elf/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-elf",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-elf/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-elf/no-asm/crypto/buildinf.h
      index 0dd30616b28e66..d5ca31dd991bac 100644
      --- a/deps/openssl/config/archs/linux-elf/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-elf/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-elf"
      -#define DATE "built on: Sun Aug  6 00:33:27 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:56:09 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-elf/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-elf/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-elf/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-elf/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-elf/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-elf/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-elf/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-elf/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-ppc64le/asm/configdata.pm b/deps/openssl/config/archs/linux-ppc64le/asm/configdata.pm
      index f979f6f060f9b6..c8aa0d7fe32340 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-ppc64le/asm/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-ppc64le",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-ppc64le/asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-ppc64le/asm/crypto/buildinf.h
      index c45299350be3f9..d1e3acb464a422 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-ppc64le/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-ppc64le"
      -#define DATE "built on: Sun Aug  6 00:35:08 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:57:32 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-ppc64le/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-ppc64le/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-ppc64le/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-ppc64le/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-ppc64le/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-ppc64le/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-ppc64le/asm_avx2/configdata.pm b/deps/openssl/config/archs/linux-ppc64le/asm_avx2/configdata.pm
      index 08080140eb2e78..0ea84d2ce335f5 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/linux-ppc64le/asm_avx2/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-ppc64le",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h
      index 2395cef1030cd0..e29cf2d622f37b 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-ppc64le"
      -#define DATE "built on: Sun Aug  6 00:35:31 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:57:51 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-ppc64le/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-ppc64le/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-ppc64le/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-ppc64le/no-asm/configdata.pm b/deps/openssl/config/archs/linux-ppc64le/no-asm/configdata.pm
      index 189ada48854119..fe396100caff68 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-ppc64le/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-ppc64le",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-ppc64le/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-ppc64le/no-asm/crypto/buildinf.h
      index bf4a292031de3f..38c6d24008d45c 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-ppc64le/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-ppc64le"
      -#define DATE "built on: Sun Aug  6 00:35:54 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:58:10 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-ppc64le/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-ppc64le/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-ppc64le/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-ppc64le/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-x86_64/asm/configdata.pm b/deps/openssl/config/archs/linux-x86_64/asm/configdata.pm
      index 133c99bdb8379f..8c177223983873 100644
      --- a/deps/openssl/config/archs/linux-x86_64/asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-x86_64/asm/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-x86_64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-x86_64/asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-x86_64/asm/crypto/buildinf.h
      index 13c3b4c33b64c4..c453e042ec2cd8 100644
      --- a/deps/openssl/config/archs/linux-x86_64/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-x86_64/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-x86_64"
      -#define DATE "built on: Sun Aug  6 00:33:49 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:56:27 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-x86_64/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-x86_64/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-x86_64/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-x86_64/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-x86_64/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-x86_64/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-x86_64/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-x86_64/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-x86_64/asm_avx2/configdata.pm b/deps/openssl/config/archs/linux-x86_64/asm_avx2/configdata.pm
      index 682f020891c38e..82a028a7500db9 100644
      --- a/deps/openssl/config/archs/linux-x86_64/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/linux-x86_64/asm_avx2/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-x86_64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-x86_64/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/linux-x86_64/asm_avx2/crypto/buildinf.h
      index 1d83deffde45f4..dd77a730662bb9 100644
      --- a/deps/openssl/config/archs/linux-x86_64/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-x86_64/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-x86_64"
      -#define DATE "built on: Sun Aug  6 00:34:19 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:56:50 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux-x86_64/no-asm/configdata.pm b/deps/openssl/config/archs/linux-x86_64/no-asm/configdata.pm
      index 3beffa26651377..74531136b16293 100644
      --- a/deps/openssl/config/archs/linux-x86_64/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux-x86_64/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux-x86_64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux-x86_64/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux-x86_64/no-asm/crypto/buildinf.h
      index c3499dd469d71a..eb1d92ca3b85e8 100644
      --- a/deps/openssl/config/archs/linux-x86_64/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux-x86_64/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux-x86_64"
      -#define DATE "built on: Sun Aug  6 00:34:48 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:57:14 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux-x86_64/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux-x86_64/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux-x86_64/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux-x86_64/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux-x86_64/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux-x86_64/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux-x86_64/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux-x86_64/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux32-s390x/asm/configdata.pm b/deps/openssl/config/archs/linux32-s390x/asm/configdata.pm
      index b4729ad28f92ae..077d1fe8d7f266 100644
      --- a/deps/openssl/config/archs/linux32-s390x/asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux32-s390x/asm/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux32-s390x",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux32-s390x/asm/crypto/buildinf.h b/deps/openssl/config/archs/linux32-s390x/asm/crypto/buildinf.h
      index 210dcc63df0ff1..12e34e0b8d87b4 100644
      --- a/deps/openssl/config/archs/linux32-s390x/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux32-s390x/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux32-s390x"
      -#define DATE "built on: Sun Aug  6 00:36:17 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:58:28 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux32-s390x/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux32-s390x/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux32-s390x/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux32-s390x/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux32-s390x/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux32-s390x/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux32-s390x/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux32-s390x/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux32-s390x/asm_avx2/configdata.pm b/deps/openssl/config/archs/linux32-s390x/asm_avx2/configdata.pm
      index e3ec7d01486663..1a3bfbead00cc9 100644
      --- a/deps/openssl/config/archs/linux32-s390x/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/linux32-s390x/asm_avx2/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux32-s390x",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux32-s390x/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/linux32-s390x/asm_avx2/crypto/buildinf.h
      index e689eb7c7734ff..cc34b5b48f7286 100644
      --- a/deps/openssl/config/archs/linux32-s390x/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux32-s390x/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux32-s390x"
      -#define DATE "built on: Sun Aug  6 00:36:40 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:58:48 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux32-s390x/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux32-s390x/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux32-s390x/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux32-s390x/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux32-s390x/no-asm/configdata.pm b/deps/openssl/config/archs/linux32-s390x/no-asm/configdata.pm
      index a71b8dcf839746..e3a8f82fe7462c 100644
      --- a/deps/openssl/config/archs/linux32-s390x/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux32-s390x/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux32-s390x",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux32-s390x/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux32-s390x/no-asm/crypto/buildinf.h
      index 7c01ad4e90df3b..d228feb5a19ee6 100644
      --- a/deps/openssl/config/archs/linux32-s390x/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux32-s390x/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux32-s390x"
      -#define DATE "built on: Sun Aug  6 00:37:03 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:59:08 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux32-s390x/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux32-s390x/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux32-s390x/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux32-s390x/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux32-s390x/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux32-s390x/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux32-s390x/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux32-s390x/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux64-loongarch64/no-asm/configdata.pm b/deps/openssl/config/archs/linux64-loongarch64/no-asm/configdata.pm
      index 9576c99c906303..f8186f5553dd14 100644
      --- a/deps/openssl/config/archs/linux64-loongarch64/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux64-loongarch64/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux64-loongarch64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux64-loongarch64/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux64-loongarch64/no-asm/crypto/buildinf.h
      index 4e95343a9fb4cd..3ba7a434358453 100644
      --- a/deps/openssl/config/archs/linux64-loongarch64/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux64-loongarch64/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux64-loongarch64"
      -#define DATE "built on: Sun Aug  6 00:45:10 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:05:52 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux64-loongarch64/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux64-loongarch64/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux64-loongarch64/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux64-loongarch64/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux64-loongarch64/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux64-loongarch64/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux64-loongarch64/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux64-loongarch64/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux64-mips64/asm/configdata.pm b/deps/openssl/config/archs/linux64-mips64/asm/configdata.pm
      index dbfc0d2736f05a..223edd33ddacd4 100644
      --- a/deps/openssl/config/archs/linux64-mips64/asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux64-mips64/asm/configdata.pm
      @@ -162,7 +162,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -210,7 +210,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -262,11 +262,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux64-mips64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux64-mips64/asm/crypto/buildinf.h b/deps/openssl/config/archs/linux64-mips64/asm/crypto/buildinf.h
      index 6b70def08e855a..1f63d54c12ba01 100644
      --- a/deps/openssl/config/archs/linux64-mips64/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux64-mips64/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux64-mips64"
      -#define DATE "built on: Sun Aug  6 00:38:36 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:00:22 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux64-mips64/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux64-mips64/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux64-mips64/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux64-mips64/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux64-mips64/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux64-mips64/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux64-mips64/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux64-mips64/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux64-mips64/asm_avx2/configdata.pm b/deps/openssl/config/archs/linux64-mips64/asm_avx2/configdata.pm
      index 3b8e66e40539e8..ab9529b1189573 100644
      --- a/deps/openssl/config/archs/linux64-mips64/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/linux64-mips64/asm_avx2/configdata.pm
      @@ -162,7 +162,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -210,7 +210,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -262,11 +262,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux64-mips64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux64-mips64/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/linux64-mips64/asm_avx2/crypto/buildinf.h
      index 594e838897cbbb..492782784a2fed 100644
      --- a/deps/openssl/config/archs/linux64-mips64/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux64-mips64/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux64-mips64"
      -#define DATE "built on: Sun Aug  6 00:38:59 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:00:41 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux64-mips64/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux64-mips64/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux64-mips64/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux64-mips64/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux64-mips64/no-asm/configdata.pm b/deps/openssl/config/archs/linux64-mips64/no-asm/configdata.pm
      index 01bb1010d678bf..60fd68cd9d1b05 100644
      --- a/deps/openssl/config/archs/linux64-mips64/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux64-mips64/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux64-mips64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux64-mips64/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux64-mips64/no-asm/crypto/buildinf.h
      index 1c1ffc1c348702..b2da592e4a422c 100644
      --- a/deps/openssl/config/archs/linux64-mips64/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux64-mips64/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux64-mips64"
      -#define DATE "built on: Sun Aug  6 00:39:21 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:00:59 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux64-mips64/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux64-mips64/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux64-mips64/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux64-mips64/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux64-mips64/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux64-mips64/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux64-mips64/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux64-mips64/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux64-riscv64/no-asm/configdata.pm b/deps/openssl/config/archs/linux64-riscv64/no-asm/configdata.pm
      index 2618989ca8c17c..b807271a07fd32 100644
      --- a/deps/openssl/config/archs/linux64-riscv64/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux64-riscv64/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux64-riscv64",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux64-riscv64/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux64-riscv64/no-asm/crypto/buildinf.h
      index f8ee87111d60b3..2c8f14b9fd31f8 100644
      --- a/deps/openssl/config/archs/linux64-riscv64/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux64-riscv64/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux64-riscv64"
      -#define DATE "built on: Sun Aug  6 00:44:48 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:05:34 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux64-riscv64/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux64-riscv64/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux64-riscv64/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux64-riscv64/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux64-s390x/asm/configdata.pm b/deps/openssl/config/archs/linux64-s390x/asm/configdata.pm
      index 31e57b928cac04..7ca0547e9d1176 100644
      --- a/deps/openssl/config/archs/linux64-s390x/asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux64-s390x/asm/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux64-s390x",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux64-s390x/asm/crypto/buildinf.h b/deps/openssl/config/archs/linux64-s390x/asm/crypto/buildinf.h
      index b10344ae3019e1..aad4edb0f23308 100644
      --- a/deps/openssl/config/archs/linux64-s390x/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux64-s390x/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux64-s390x"
      -#define DATE "built on: Sun Aug  6 00:37:26 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:59:26 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux64-s390x/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux64-s390x/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux64-s390x/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux64-s390x/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux64-s390x/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux64-s390x/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux64-s390x/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux64-s390x/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux64-s390x/asm_avx2/configdata.pm b/deps/openssl/config/archs/linux64-s390x/asm_avx2/configdata.pm
      index f7a270be6046c4..67f9b59a4f1473 100644
      --- a/deps/openssl/config/archs/linux64-s390x/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/linux64-s390x/asm_avx2/configdata.pm
      @@ -159,7 +159,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -207,7 +207,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux64-s390x",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux64-s390x/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/linux64-s390x/asm_avx2/crypto/buildinf.h
      index c602e1eed19db4..49a18326cda364 100644
      --- a/deps/openssl/config/archs/linux64-s390x/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux64-s390x/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux64-s390x"
      -#define DATE "built on: Sun Aug  6 00:37:50 2023 UTC"
      +#define DATE "built on: Thu Oct 26 14:59:45 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux64-s390x/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux64-s390x/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux64-s390x/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux64-s390x/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/linux64-s390x/no-asm/configdata.pm b/deps/openssl/config/archs/linux64-s390x/no-asm/configdata.pm
      index a44e5d6c7ea1d1..0511cc0ad771f1 100644
      --- a/deps/openssl/config/archs/linux64-s390x/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/linux64-s390x/no-asm/configdata.pm
      @@ -157,7 +157,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -206,7 +206,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -259,11 +259,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned char",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "linux64-s390x",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/linux64-s390x/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/linux64-s390x/no-asm/crypto/buildinf.h
      index 6d7b9134d30329..56f3cb4a199951 100644
      --- a/deps/openssl/config/archs/linux64-s390x/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/linux64-s390x/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: linux64-s390x"
      -#define DATE "built on: Sun Aug  6 00:38:14 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:00:04 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/linux64-s390x/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/linux64-s390x/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/linux64-s390x/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/linux64-s390x/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/linux64-s390x/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/linux64-s390x/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/linux64-s390x/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/linux64-s390x/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/asm/configdata.pm b/deps/openssl/config/archs/solaris-x86-gcc/asm/configdata.pm
      index d60b22c0286e85..5ab80e6faf2eee 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/asm/configdata.pm
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/asm/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -204,7 +204,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -256,11 +256,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "solaris-x86-gcc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/asm/crypto/buildinf.h b/deps/openssl/config/archs/solaris-x86-gcc/asm/crypto/buildinf.h
      index 6c58b044ea9707..468c40de382836 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: solaris-x86-gcc"
      -#define DATE "built on: Sun Aug  6 00:39:44 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:01:17 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/solaris-x86-gcc/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/configdata.pm b/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/configdata.pm
      index ec632ff0f28c57..7e2449164988b9 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -204,7 +204,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -256,11 +256,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "solaris-x86-gcc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h
      index 01fe3449426840..805dcab06bb3b9 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: solaris-x86-gcc"
      -#define DATE "built on: Sun Aug  6 00:40:07 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:01:37 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/no-asm/configdata.pm b/deps/openssl/config/archs/solaris-x86-gcc/no-asm/configdata.pm
      index 5dc7107bb26bbd..cade32bd647c0b 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/no-asm/configdata.pm
      @@ -154,7 +154,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -203,7 +203,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -256,11 +256,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "solaris-x86-gcc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h
      index d9d8f29beefec3..8201c478c71fe0 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: solaris-x86-gcc"
      -#define DATE "built on: Sun Aug  6 00:40:30 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:01:58 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/configdata.pm b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/configdata.pm
      index 199dee44226d9f..48232d7ea1f9e6 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/configdata.pm
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -204,7 +204,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -256,11 +256,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "solaris64-x86_64-gcc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h
      index 45e22d76fd5e66..f953c4d35bb5b0 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: solaris64-x86_64-gcc"
      -#define DATE "built on: Sun Aug  6 00:40:52 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:02:16 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/configdata.pm b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/configdata.pm
      index df9f4cc099ead6..4a7a3cf873a3e4 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/configdata.pm
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/configdata.pm
      @@ -156,7 +156,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -204,7 +204,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -256,11 +256,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "solaris64-x86_64-gcc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h
      index 9bff7519bf2417..0fcdd941db1ba8 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: solaris64-x86_64-gcc"
      -#define DATE "built on: Sun Aug  6 00:41:20 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:02:40 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/pkcs7.h b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/configdata.pm b/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/configdata.pm
      index a15e817f8966e5..902cd2bbbf9f69 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/configdata.pm
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/configdata.pm
      @@ -154,7 +154,7 @@ our %config = (
           ],
           "dynamic_engines" => "0",
           "ex_libs" => [],
      -    "full_version" => "3.0.10+quic",
      +    "full_version" => "3.0.12+quic",
           "includes" => [],
           "lflags" => [],
           "lib_defines" => [
      @@ -203,7 +203,7 @@ our %config = (
           "openssl_sys_defines" => [],
           "openssldir" => "",
           "options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
      -    "patch" => "10",
      +    "patch" => "12",
           "perl_archname" => "x86_64-linux-gnu-thread-multi",
           "perl_cmd" => "/usr/bin/perl",
           "perl_version" => "5.34.0",
      @@ -256,11 +256,11 @@ our %config = (
           "prerelease" => "",
           "processor" => "",
           "rc4_int" => "unsigned int",
      -    "release_date" => "1 Aug 2023",
      +    "release_date" => "24 Oct 2023",
           "shlib_version" => "81.3",
           "sourcedir" => ".",
           "target" => "solaris64-x86_64-gcc",
      -    "version" => "3.0.10"
      +    "version" => "3.0.12"
       );
       our %target = (
           "AR" => "ar",
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h b/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h
      index c9d1cb2473635d..84378d6580e182 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h
      @@ -11,7 +11,7 @@
        */
       
       #define PLATFORM "platform: solaris64-x86_64-gcc"
      -#define DATE "built on: Sun Aug  6 00:41:48 2023 UTC"
      +#define DATE "built on: Thu Oct 26 15:03:03 2023 UTC"
       
       /*
        * Generate compiler_flags as an array of individual characters. This is a
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h b/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h
      index 06ba6600ff29ce..ea36c0ca51c2ab 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h
      @@ -29,7 +29,7 @@ extern "C" {
        */
       # define OPENSSL_VERSION_MAJOR  3
       # define OPENSSL_VERSION_MINOR  0
      -# define OPENSSL_VERSION_PATCH  10
      +# define OPENSSL_VERSION_PATCH  12
       
       /*
        * Additional version information
      @@ -74,21 +74,21 @@ extern "C" {
        * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
        * OPENSSL_VERSION_BUILD_METADATA_STR appended.
        */
      -# define OPENSSL_VERSION_STR "3.0.10"
      -# define OPENSSL_FULL_VERSION_STR "3.0.10+quic"
      +# define OPENSSL_VERSION_STR "3.0.12"
      +# define OPENSSL_FULL_VERSION_STR "3.0.12+quic"
       
       /*
        * SECTION 3: ADDITIONAL METADATA
        *
        * These strings are defined separately to allow them to be parsable.
        */
      -# define OPENSSL_RELEASE_DATE "1 Aug 2023"
      +# define OPENSSL_RELEASE_DATE "24 Oct 2023"
       
       /*
        * SECTION 4: BACKWARD COMPATIBILITY
        */
       
      -# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10+quic 1 Aug 2023"
      +# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.12+quic 24 Oct 2023"
       
       /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
       # ifdef OPENSSL_VERSION_PRE_RELEASE
      diff --git a/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/include/openssl/pkcs7.h b/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/include/openssl/pkcs7.h
      index 557a0a7264beec..0ce79bf4fa160e 100644
      --- a/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/include/openssl/pkcs7.h
      +++ b/deps/openssl/config/archs/solaris64-x86_64-gcc/no-asm/include/openssl/pkcs7.h
      @@ -2,7 +2,7 @@
        * WARNING: do not edit!
        * Generated by Makefile from include/openssl/pkcs7.h.in
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/openssl/CHANGES.md b/deps/openssl/openssl/CHANGES.md
      index 374fdc662cb94c..7d892d57ac0914 100644
      --- a/deps/openssl/openssl/CHANGES.md
      +++ b/deps/openssl/openssl/CHANGES.md
      @@ -28,12 +28,44 @@ breaking changes, and mappings for the large list of deprecated functions.
       
       [Migration guide]: https://github.com/openssl/openssl/tree/master/doc/man7/migration_guide.pod
       
      -### Changes between 3.0.10 and 3.0.10+quic [1 Aug 2023]
      +### Changes between 3.0.12 and 3.0.12+quic [24 Oct 2023]
       
       * Add QUIC API support from BoringSSL
       
          *Todd Short*
       
      +### Changes between 3.0.11 and 3.0.12 [24 Oct 2023]
      +
      + * Fix incorrect key and IV resizing issues when calling EVP_EncryptInit_ex2(),
      +   EVP_DecryptInit_ex2() or EVP_CipherInit_ex2() with OSSL_PARAM parameters
      +   that alter the key or IV length ([CVE-2023-5363]).
      +
      +   *Paul Dale*
      +
      +### Changes between 3.0.10 and 3.0.11 [19 Sep 2023]
      +
      + * Fix POLY1305 MAC implementation corrupting XMM registers on Windows.
      +
      +   The POLY1305 MAC (message authentication code) implementation in OpenSSL
      +   does not save the contents of non-volatile XMM registers on Windows 64
      +   platform when calculating the MAC of data larger than 64 bytes. Before
      +   returning to the caller all the XMM registers are set to zero rather than
      +   restoring their previous content. The vulnerable code is used only on newer
      +   x86_64 processors supporting the AVX512-IFMA instructions.
      +
      +   The consequences of this kind of internal application state corruption can
      +   be various - from no consequences, if the calling application does not
      +   depend on the contents of non-volatile XMM registers at all, to the worst
      +   consequences, where the attacker could get complete control of the
      +   application process. However given the contents of the registers are just
      +   zeroized so the attacker cannot put arbitrary values inside, the most likely
      +   consequence, if any, would be an incorrect result of some application
      +   dependent calculations or a crash leading to a denial of service.
      +
      +   ([CVE-2023-4807])
      +
      +   *Bernd Edlinger*
      +
       ### Changes between 3.0.9 and 3.0.10 [1 Aug 2023]
       
        * Fix excessive time spent checking DH q parameter value.
      @@ -19714,6 +19746,8 @@ ndif
       
       
       
      +[CVE-2023-5363]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-5363
      +[CVE-2023-4807]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-4807
       [CVE-2023-3817]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-3817
       [CVE-2023-3446]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-3446
       [CVE-2023-2975]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-2975
      diff --git a/deps/openssl/openssl/Configurations/10-main.conf b/deps/openssl/openssl/Configurations/10-main.conf
      index 8010087b46dcea..280a75b213f25c 100644
      --- a/deps/openssl/openssl/Configurations/10-main.conf
      +++ b/deps/openssl/openssl/Configurations/10-main.conf
      @@ -9,19 +9,22 @@ sub vc_win64a_info {
                   $vc_win64a_info = { AS        => "nasm",
                                       ASFLAGS   => "-g",
                                       asflags   => "-Ox -f win64 -DNEAR",
      -                                asoutflag => "-o " };
      +                                asoutflag => "-o ",
      +                                perlasm_scheme => "nasm" };
               } elsif ($disabled{asm}) {
                   # assembler is still used to compile uplink shim
                   $vc_win64a_info = { AS        => "ml64",
                                       ASFLAGS   => "/nologo /Zi",
                                       asflags   => "/c /Cp /Cx",
      -                                asoutflag => "/Fo" };
      +                                asoutflag => "/Fo",
      +                                perlasm_scheme => "masm" };
               } else {
                   $die->("NASM not found - make sure it's installed and available on %PATH%\n");
                   $vc_win64a_info = { AS        => "{unknown}",
                                       ASFLAGS   => "",
                                       asflags   => "",
      -                                asoutflag => "" };
      +                                asoutflag => "",
      +                                perlasm_scheme => "auto" };
               }
           }
           return $vc_win64a_info;
      @@ -1416,7 +1419,7 @@ my %targets = (
               sys_id           => "WIN64A",
               uplink_arch      => 'x86_64',
               asm_arch         => 'x86_64',
      -        perlasm_scheme   => "auto",
      +        perlasm_scheme   => sub { vc_win64a_info()->{perlasm_scheme} },
               multilib         => "-x64",
           },
           "VC-WIN32" => {
      diff --git a/deps/openssl/openssl/Configurations/README.md b/deps/openssl/openssl/Configurations/README.md
      index be8c394d0872b2..de3d8bad8a02d4 100644
      --- a/deps/openssl/openssl/Configurations/README.md
      +++ b/deps/openssl/openssl/Configurations/README.md
      @@ -233,8 +233,14 @@ In each table entry, the following keys are significant:
                                                       is ILP32;
                                  RC4_CHAR             RC4 key schedule is made
                                                       up of 'unsigned char's;
      +                                                Note: should not be used
      +                                                for new configuration
      +                                                targets
                                  RC4_INT              RC4 key schedule is made
                                                       up of 'unsigned int's;
      +                                                Note: should not be used
      +                                                for new configuration
      +                                                targets
       
       [1] as part of the target configuration, one can have a key called
         `inherit_from` that indicates what other configurations to inherit
      diff --git a/deps/openssl/openssl/Configurations/unix-Makefile.tmpl b/deps/openssl/openssl/Configurations/unix-Makefile.tmpl
      index 17e194f1ef754a..a48fae5fb8b8fe 100644
      --- a/deps/openssl/openssl/Configurations/unix-Makefile.tmpl
      +++ b/deps/openssl/openssl/Configurations/unix-Makefile.tmpl
      @@ -614,28 +614,28 @@ uninstall_sw: uninstall_runtime uninstall_modules uninstall_engines uninstall_de
       install_docs: install_man_docs install_html_docs
       
       uninstall_docs: uninstall_man_docs uninstall_html_docs
      -	$(RM) -r $(DESTDIR)$(DOCDIR)
      +	$(RM) -r "$(DESTDIR)$(DOCDIR)"
       
       {- output_off() if $disabled{fips}; "" -}
       install_fips: build_sw $(INSTALL_FIPSMODULECONF)
       	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MODULESDIR)
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(MODULESDIR)"
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)"
       	@$(ECHO) "*** Installing FIPS module"
       	@$(ECHO) "install $(INSTALL_FIPSMODULE) -> $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME)"
      -	@cp "$(INSTALL_FIPSMODULE)" $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).new
      -	@chmod 755 $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).new
      -	@mv -f $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).new \
      -	       $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME)
      +	@cp "$(INSTALL_FIPSMODULE)" "$(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).new"
      +	@chmod 755 "$(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).new"
      +	@mv -f "$(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).new" \
      +	       "$(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME)"
       	@$(ECHO) "*** Installing FIPS module configuration"
       	@$(ECHO) "install $(INSTALL_FIPSMODULECONF) -> $(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf"
      -	@cp $(INSTALL_FIPSMODULECONF) $(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf
      +	@cp $(INSTALL_FIPSMODULECONF) "$(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf"
       
       uninstall_fips:
       	@$(ECHO) "*** Uninstalling FIPS module configuration"
      -	$(RM) $(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf
      +	$(RM) "$(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf"
       	@$(ECHO) "*** Uninstalling FIPS module"
      -	$(RM) $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME)
      +	$(RM) "$(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME)"
       {- if ($disabled{fips}) { output_on(); } else { output_off(); } "" -}
       install_fips:
       	@$(ECHO) "The 'install_fips' target requires the 'enable-fips' option"
      @@ -646,75 +646,75 @@ uninstall_fips:
       
       
       install_ssldirs:
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/private
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/misc
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/certs"
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/private"
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/misc"
       	@set -e; for x in dummy $(MISC_SCRIPTS); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		x1=`echo "$$x" | cut -f1 -d:`; \
       		x2=`echo "$$x" | cut -f2 -d:`; \
       		fn=`basename $$x1`; \
       		$(ECHO) "install $$x1 -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
      -		cp $$x1 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
      -		chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
      -		mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new \
      -		      $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
      +		cp $$x1 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new"; \
      +		chmod 755 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new"; \
      +		mv -f "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new" \
      +		      "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
       		if [ "$$x1" != "$$x2" ]; then \
       			ln=`basename "$$x2"`; \
       			: {- output_off() unless windowsdll(); "" -}; \
       			$(ECHO) "copy $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
      -			cp $(DESTDIR)$(OPENSSLDIR)/misc/$$fn $(DESTDIR)$(OPENSSLDIR)/misc/$$ln; \
      +			cp "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn" "$(DESTDIR)$(OPENSSLDIR)/misc/$$ln"; \
       			: {- output_on() unless windowsdll();
       			     output_off() if windowsdll(); "" -}; \
       			$(ECHO) "link $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
      -			ln -sf $$fn $(DESTDIR)$(OPENSSLDIR)/misc/$$ln; \
      +			ln -sf $$fn "$(DESTDIR)$(OPENSSLDIR)/misc/$$ln"; \
       			: {- output_on() if windowsdll(); "" -}; \
       		fi; \
       	done
       	@$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
      -	@cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
      -	@chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
      -	@mv -f  $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist
      +	@cp $(SRCDIR)/apps/openssl.cnf "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new"
      +	@chmod 644 "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new"
      +	@mv -f  "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new" "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
       	@if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
       		$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
      -		cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
      -		chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
      +		cp $(SRCDIR)/apps/openssl.cnf "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
      +		chmod 644 "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
       	fi
       	@$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
      -	@cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
      -	@chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
      -	@mv -f  $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist
      +	@cp $(SRCDIR)/apps/ct_log_list.cnf "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new"
      +	@chmod 644 "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new"
      +	@mv -f  "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new" "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
       	@if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
       		$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
      -		cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
      -		chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
      +		cp $(SRCDIR)/apps/ct_log_list.cnf "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
      +		chmod 644 "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
       	fi
       
       install_dev: install_runtime_libs
       	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
       	@$(ECHO) "*** Installing development files"
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/include/openssl
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(INSTALLTOP)/include/openssl"
       	@ : {- output_off() if $disabled{uplink}; "" -}
       	@$(ECHO) "install $(SRCDIR)/ms/applink.c -> $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
      -	@cp $(SRCDIR)/ms/applink.c $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
      -	@chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
      +	@cp $(SRCDIR)/ms/applink.c "$(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
      +	@chmod 644 "$(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
       	@ : {- output_on() if $disabled{uplink}; "" -}
       	@set -e; for i in $(SRCDIR)/include/openssl/*.h \
       			  $(BLDDIR)/include/openssl/*.h; do \
       		fn=`basename $$i`; \
       		$(ECHO) "install $$i -> $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
      -		cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
      -		chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
      +		cp $$i "$(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
      +		chmod 644 "$(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
       	done
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(libdir)"
       	@set -e; for l in $(INSTALL_LIBS); do \
       		fn=`basename $$l`; \
       		$(ECHO) "install $$l -> $(DESTDIR)$(libdir)/$$fn"; \
      -		cp $$l $(DESTDIR)$(libdir)/$$fn.new; \
      -		$(RANLIB) $(DESTDIR)$(libdir)/$$fn.new; \
      -		chmod 644 $(DESTDIR)$(libdir)/$$fn.new; \
      -		mv -f $(DESTDIR)$(libdir)/$$fn.new \
      -		      $(DESTDIR)$(libdir)/$$fn; \
      +		cp $$l "$(DESTDIR)$(libdir)/$$fn.new"; \
      +		$(RANLIB) "$(DESTDIR)$(libdir)/$$fn.new"; \
      +		chmod 644 "$(DESTDIR)$(libdir)/$$fn.new"; \
      +		mv -f "$(DESTDIR)$(libdir)/$$fn.new" \
      +		      "$(DESTDIR)$(libdir)/$$fn"; \
       	done
       	@ : {- output_off() if $disabled{shared}; "" -}
       	@set -e; for s in $(INSTALL_SHLIB_INFO); do \
      @@ -727,18 +727,18 @@ install_dev: install_runtime_libs
       		: {- output_off(); output_on() unless windowsdll() or sharedaix(); "" -}; \
       		if [ "$$fn2" != "" ]; then \
       			$(ECHO) "link $(DESTDIR)$(libdir)/$$fn2 -> $(DESTDIR)$(libdir)/$$fn1"; \
      -			ln -sf $$fn1 $(DESTDIR)$(libdir)/$$fn2; \
      +			ln -sf $$fn1 "$(DESTDIR)$(libdir)/$$fn2"; \
       		fi; \
       		: {- output_off() unless windowsdll() or sharedaix(); output_on() if windowsdll(); "" -}; \
       		if [ "$$fn3" != "" ]; then \
       			$(ECHO) "install $$s3 -> $(DESTDIR)$(libdir)/$$fn3"; \
      -			cp $$s3 $(DESTDIR)$(libdir)/$$fn3.new; \
      -			chmod 755 $(DESTDIR)$(libdir)/$$fn3.new; \
      -			mv -f $(DESTDIR)$(libdir)/$$fn3.new \
      -			      $(DESTDIR)$(libdir)/$$fn3; \
      +			cp $$s3 "$(DESTDIR)$(libdir)/$$fn3.new"; \
      +			chmod 755 "$(DESTDIR)$(libdir)/$$fn3.new"; \
      +			mv -f "$(DESTDIR)$(libdir)/$$fn3.new" \
      +			      "$(DESTDIR)$(libdir)/$$fn3"; \
       		fi; \
       		: {- output_off() if windowsdll(); output_on() if sharedaix(); "" -}; \
      -		a=$(DESTDIR)$(libdir)/$$fn2; \
      +		a="$(DESTDIR)$(libdir)/$$fn2"; \
       		$(ECHO) "install $$s1 -> $$a"; \
       		if [ -f $$a ]; then ( trap "rm -rf /tmp/ar.$$$$" INT 0; \
       			mkdir /tmp/ar.$$$$; ( cd /tmp/ar.$$$$; \
      @@ -755,35 +755,35 @@ install_dev: install_runtime_libs
       		: {- output_off() if sharedaix(); output_on(); "" -}; \
       	done
       	@ : {- output_on() if $disabled{shared}; "" -}
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)/pkgconfig
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(libdir)/pkgconfig"
       	@$(ECHO) "install libcrypto.pc -> $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc"
      -	@cp libcrypto.pc $(DESTDIR)$(libdir)/pkgconfig
      -	@chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
      +	@cp libcrypto.pc "$(DESTDIR)$(libdir)/pkgconfig"
      +	@chmod 644 "$(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc"
       	@$(ECHO) "install libssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/libssl.pc"
      -	@cp libssl.pc $(DESTDIR)$(libdir)/pkgconfig
      -	@chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
      +	@cp libssl.pc "$(DESTDIR)$(libdir)/pkgconfig"
      +	@chmod 644 "$(DESTDIR)$(libdir)/pkgconfig/libssl.pc"
       	@$(ECHO) "install openssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/openssl.pc"
      -	@cp openssl.pc $(DESTDIR)$(libdir)/pkgconfig
      -	@chmod 644 $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
      +	@cp openssl.pc "$(DESTDIR)$(libdir)/pkgconfig"
      +	@chmod 644 "$(DESTDIR)$(libdir)/pkgconfig/openssl.pc"
       
       uninstall_dev: uninstall_runtime_libs
       	@$(ECHO) "*** Uninstalling development files"
       	@ : {- output_off() if $disabled{uplink}; "" -}
       	@$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
      -	@$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
      +	@$(RM) "$(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
       	@ : {- output_on() if $disabled{uplink}; "" -}
       	@set -e; for i in $(SRCDIR)/include/openssl/*.h \
       			  $(BLDDIR)/include/openssl/*.h; do \
       		fn=`basename $$i`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
      -		$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
      +		$(RM) "$(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
       	done
      -	-$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
      -	-$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
      +	-$(RMDIR) "$(DESTDIR)$(INSTALLTOP)/include/openssl"
      +	-$(RMDIR) "$(DESTDIR)$(INSTALLTOP)/include"
       	@set -e; for l in $(INSTALL_LIBS); do \
       		fn=`basename $$l`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn"; \
      -		$(RM) $(DESTDIR)$(libdir)/$$fn; \
      +		$(RM) "$(DESTDIR)$(libdir)/$$fn"; \
       	done
       	@ : {- output_off() if $disabled{shared}; "" -}
       	@set -e; for s in $(INSTALL_SHLIB_INFO); do \
      @@ -795,39 +795,39 @@ uninstall_dev: uninstall_runtime_libs
       		fn3=`basename "$$s3"`; \
       		: {- output_off() if windowsdll(); "" -}; \
       		$(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn1"; \
      -		$(RM) $(DESTDIR)$(libdir)/$$fn1; \
      +		$(RM) "$(DESTDIR)$(libdir)/$$fn1"; \
       		if [ -n "$$fn2" ]; then \
       			$(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
      -			$(RM) $(DESTDIR)$(libdir)/$$fn2; \
      +			$(RM) "$(DESTDIR)$(libdir)/$$fn2"; \
       		fi; \
       		: {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
       		if [ -n "$$fn3" ]; then \
       			$(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn3"; \
      -			$(RM) $(DESTDIR)$(libdir)/$$fn3; \
      +			$(RM) "$(DESTDIR)$(libdir)/$$fn3"; \
       		fi; \
       		: {- output_on() unless windowsdll(); "" -}; \
       	done
       	@ : {- output_on() if $disabled{shared}; "" -}
      -	$(RM) $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
      -	$(RM) $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
      -	$(RM) $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
      -	-$(RMDIR) $(DESTDIR)$(libdir)/pkgconfig
      -	-$(RMDIR) $(DESTDIR)$(libdir)
      +	$(RM) "$(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc"
      +	$(RM) "$(DESTDIR)$(libdir)/pkgconfig/libssl.pc"
      +	$(RM) "$(DESTDIR)$(libdir)/pkgconfig/openssl.pc"
      +	-$(RMDIR) "$(DESTDIR)$(libdir)/pkgconfig"
      +	-$(RMDIR) "$(DESTDIR)$(libdir)"
       
       _install_modules_deps: install_runtime_libs build_modules
       
       install_engines: _install_modules_deps
       	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(ENGINESDIR)/
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(ENGINESDIR)/"
       	@$(ECHO) "*** Installing engines"
       	@set -e; for e in dummy $(INSTALL_ENGINES); do \
       		if [ "$$e" = "dummy" ]; then continue; fi; \
       		fn=`basename $$e`; \
       		$(ECHO) "install $$e -> $(DESTDIR)$(ENGINESDIR)/$$fn"; \
      -		cp $$e $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
      -		chmod 755 $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
      -		mv -f $(DESTDIR)$(ENGINESDIR)/$$fn.new \
      -		      $(DESTDIR)$(ENGINESDIR)/$$fn; \
      +		cp $$e "$(DESTDIR)$(ENGINESDIR)/$$fn.new"; \
      +		chmod 755 "$(DESTDIR)$(ENGINESDIR)/$$fn.new"; \
      +		mv -f "$(DESTDIR)$(ENGINESDIR)/$$fn.new" \
      +		      "$(DESTDIR)$(ENGINESDIR)/$$fn"; \
       	done
       
       uninstall_engines:
      @@ -836,22 +836,22 @@ uninstall_engines:
       		if [ "$$e" = "dummy" ]; then continue; fi; \
       		fn=`basename $$e`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn"; \
      -		$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn; \
      +		$(RM) "$(DESTDIR)$(ENGINESDIR)/$$fn"; \
       	done
      -	-$(RMDIR) $(DESTDIR)$(ENGINESDIR)
      +	-$(RMDIR) "$(DESTDIR)$(ENGINESDIR)"
       
       install_modules: _install_modules_deps
       	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MODULESDIR)/
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(MODULESDIR)/"
       	@$(ECHO) "*** Installing modules"
       	@set -e; for e in dummy $(INSTALL_MODULES); do \
       		if [ "$$e" = "dummy" ]; then continue; fi; \
       		fn=`basename $$e`; \
       		$(ECHO) "install $$e -> $(DESTDIR)$(MODULESDIR)/$$fn"; \
      -		cp $$e $(DESTDIR)$(MODULESDIR)/$$fn.new; \
      -		chmod 755 $(DESTDIR)$(MODULESDIR)/$$fn.new; \
      -		mv -f $(DESTDIR)$(MODULESDIR)/$$fn.new \
      -		      $(DESTDIR)$(MODULESDIR)/$$fn; \
      +		cp $$e "$(DESTDIR)$(MODULESDIR)/$$fn.new"; \
      +		chmod 755 "$(DESTDIR)$(MODULESDIR)/$$fn.new"; \
      +		mv -f "$(DESTDIR)$(MODULESDIR)/$$fn.new" \
      +		      "$(DESTDIR)$(MODULESDIR)/$$fn"; \
       	done
       
       uninstall_modules:
      @@ -860,18 +860,18 @@ uninstall_modules:
       		if [ "$$e" = "dummy" ]; then continue; fi; \
       		fn=`basename $$e`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(MODULESDIR)/$$fn"; \
      -		$(RM) $(DESTDIR)$(MODULESDIR)/$$fn; \
      +		$(RM) "$(DESTDIR)$(MODULESDIR)/$$fn"; \
       	done
      -	-$(RMDIR) $(DESTDIR)$(MODULESDIR)
      +	-$(RMDIR) "$(DESTDIR)$(MODULESDIR)"
       
       install_runtime: install_programs
       
       install_runtime_libs: build_libs
       	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
       	@ : {- output_off() if windowsdll(); "" -}
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(libdir)"
       	@ : {- output_on() if windowsdll(); output_off() unless windowsdll(); "" -}
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(INSTALLTOP)/bin"
       	@ : {- output_on() unless windowsdll(); "" -}
       	@$(ECHO) "*** Installing runtime libraries"
       	@set -e; for s in dummy $(INSTALL_SHLIBS); do \
      @@ -879,40 +879,40 @@ install_runtime_libs: build_libs
       		fn=`basename $$s`; \
       		: {- output_off() unless windowsdll(); "" -}; \
       		$(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
      -		cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
      -		chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
      -		mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
      -		      $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
      +		cp $$s "$(DESTDIR)$(INSTALLTOP)/bin/$$fn.new"; \
      +		chmod 755 "$(DESTDIR)$(INSTALLTOP)/bin/$$fn.new"; \
      +		mv -f "$(DESTDIR)$(INSTALLTOP)/bin/$$fn.new" \
      +		      "$(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
       		: {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \
       		$(ECHO) "install $$s -> $(DESTDIR)$(libdir)/$$fn"; \
      -		cp $$s $(DESTDIR)$(libdir)/$$fn.new; \
      -		chmod 755 $(DESTDIR)$(libdir)/$$fn.new; \
      -		mv -f $(DESTDIR)$(libdir)/$$fn.new \
      -		      $(DESTDIR)$(libdir)/$$fn; \
      +		cp $$s "$(DESTDIR)$(libdir)/$$fn.new"; \
      +		chmod 755 "$(DESTDIR)$(libdir)/$$fn.new"; \
      +		mv -f "$(DESTDIR)$(libdir)/$$fn.new" \
      +		      "$(DESTDIR)$(libdir)/$$fn"; \
       		: {- output_on() if windowsdll(); "" -}; \
       	done
       
       install_programs: install_runtime_libs build_programs
       	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(INSTALLTOP)/bin"
       	@$(ECHO) "*** Installing runtime programs"
       	@set -e; for x in dummy $(INSTALL_PROGRAMS); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
      -		cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
      -		chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
      -		mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
      -		      $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
      +		cp $$x "$(DESTDIR)$(INSTALLTOP)/bin/$$fn.new"; \
      +		chmod 755 "$(DESTDIR)$(INSTALLTOP)/bin/$$fn.new"; \
      +		mv -f "$(DESTDIR)$(INSTALLTOP)/bin/$$fn.new" \
      +		      "$(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
       	done
       	@set -e; for x in dummy $(BIN_SCRIPTS); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
      -		cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
      -		chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
      -		mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
      -		      $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
      +		cp $$x "$(DESTDIR)$(INSTALLTOP)/bin/$$fn.new"; \
      +		chmod 755 "$(DESTDIR)$(INSTALLTOP)/bin/$$fn.new"; \
      +		mv -f "$(DESTDIR)$(INSTALLTOP)/bin/$$fn.new" \
      +		      "$(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
       	done
       
       uninstall_runtime: uninstall_programs uninstall_runtime_libs
      @@ -924,16 +924,16 @@ uninstall_programs:
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
      -		$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
      +		$(RM) "$(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
       	done;
       	@set -e; for x in dummy $(BIN_SCRIPTS); \
       	do  \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
      -		$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
      +		$(RM) "$(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
       	done
      -	-$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
      +	-$(RMDIR) "$(DESTDIR)$(INSTALLTOP)/bin"
       
       uninstall_runtime_libs:
       	@$(ECHO) "*** Uninstalling runtime libraries"
      @@ -942,49 +942,49 @@ uninstall_runtime_libs:
       		if [ "$$s" = "dummy" ]; then continue; fi; \
       		fn=`basename $$s`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
      -		$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
      +		$(RM) "$(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
       	done
       	@ : {- output_on() unless windowsdll(); "" -}
       
       
       install_man_docs: build_man_docs
       	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man1
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man3
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man5
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man7
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(MANDIR)/man1"
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(MANDIR)/man3"
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(MANDIR)/man5"
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(MANDIR)/man7"
       	@$(ECHO) "*** Installing manpages"
       	@set -e; for x in dummy $(MANDOCS1); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX)"; \
      -		cp $$x $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX); \
      -		chmod 644 $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX); \
      -		$(PERL) $(SRCDIR)/util/write-man-symlinks install $(SRCDIR)/doc/man1 $(BLDDIR)/doc/man1 $${fn}$(MANSUFFIX) $(DESTDIR)$(MANDIR)/man1; \
      +		cp $$x "$(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX)"; \
      +		chmod 644 "$(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX)"; \
      +		$(PERL) $(SRCDIR)/util/write-man-symlinks install $(SRCDIR)/doc/man1 $(BLDDIR)/doc/man1 $${fn}$(MANSUFFIX) "$(DESTDIR)$(MANDIR)/man1"; \
       	done
       	@set -e; for x in dummy $(MANDOCS3); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX)"; \
      -		cp $$x $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX); \
      -		chmod 644 $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX); \
      -		$(PERL) $(SRCDIR)/util/write-man-symlinks install $(SRCDIR)/doc/man3 $(BLDDIR)/doc/man3 $${fn}$(MANSUFFIX) $(DESTDIR)$(MANDIR)/man3; \
      +		cp $$x "$(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX)"; \
      +		chmod 644 "$(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX)"; \
      +		$(PERL) $(SRCDIR)/util/write-man-symlinks install $(SRCDIR)/doc/man3 $(BLDDIR)/doc/man3 $${fn}$(MANSUFFIX) "$(DESTDIR)$(MANDIR)/man3"; \
       	done
       	@set -e; for x in dummy $(MANDOCS5); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX)"; \
      -		cp $$x $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX); \
      -		chmod 644 $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX); \
      -		$(PERL) $(SRCDIR)/util/write-man-symlinks install $(SRCDIR)/doc/man5 $(BLDDIR)/doc/man5 $${fn}$(MANSUFFIX) $(DESTDIR)$(MANDIR)/man5; \
      +		cp $$x "$(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX)"; \
      +		chmod 644 "$(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX)"; \
      +		$(PERL) $(SRCDIR)/util/write-man-symlinks install $(SRCDIR)/doc/man5 $(BLDDIR)/doc/man5 $${fn}$(MANSUFFIX) "$(DESTDIR)$(MANDIR)/man5"; \
       	done
       	@set -e; for x in dummy $(MANDOCS7); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX)"; \
      -		cp $$x $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX); \
      -		chmod 644 $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX); \
      -		$(PERL) $(SRCDIR)/util/write-man-symlinks install $(SRCDIR)/doc/man7 $(BLDDIR)/doc/man7 $${fn}$(MANSUFFIX) $(DESTDIR)$(MANDIR)/man7; \
      +		cp $$x "$(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX)"; \
      +		chmod 644 "$(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX)"; \
      +		$(PERL) $(SRCDIR)/util/write-man-symlinks install $(SRCDIR)/doc/man7 $(BLDDIR)/doc/man7 $${fn}$(MANSUFFIX) "$(DESTDIR)$(MANDIR)/man7"; \
       	done
       
       uninstall_man_docs: build_man_docs
      @@ -993,65 +993,65 @@ uninstall_man_docs: build_man_docs
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX)"; \
      -		$(RM) $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX); \
      -		$(PERL) $(SRCDIR)/util/write-man-symlinks uninstall $(SRCDIR)/doc/man1 $(BLDDIR)/doc/man1 $${fn}$(MANSUFFIX) $(DESTDIR)$(MANDIR)/man1; \
      +		$(RM) "$(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX)"; \
      +		$(PERL) $(SRCDIR)/util/write-man-symlinks uninstall $(SRCDIR)/doc/man1 $(BLDDIR)/doc/man1 $${fn}$(MANSUFFIX) "$(DESTDIR)$(MANDIR)/man1"; \
       	done
       	@set -e; for x in dummy $(MANDOCS3); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX)"; \
      -		$(RM) $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX); \
      -		$(PERL) $(SRCDIR)/util/write-man-symlinks uninstall $(SRCDIR)/doc/man3 $(BLDDIR)/doc/man3 $${fn}$(MANSUFFIX) $(DESTDIR)$(MANDIR)/man3; \
      +		$(RM) "$(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX)"; \
      +		$(PERL) $(SRCDIR)/util/write-man-symlinks uninstall $(SRCDIR)/doc/man3 $(BLDDIR)/doc/man3 $${fn}$(MANSUFFIX) "$(DESTDIR)$(MANDIR)/man3"; \
       	done
       	@set -e; for x in dummy $(MANDOCS5); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX)"; \
      -		$(RM) $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX); \
      -		$(PERL) $(SRCDIR)/util/write-man-symlinks uninstall $(SRCDIR)/doc/man5 $(BLDDIR)/doc/man5 $${fn}$(MANSUFFIX) $(DESTDIR)$(MANDIR)/man5; \
      +		$(RM) "$(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX)"; \
      +		$(PERL) $(SRCDIR)/util/write-man-symlinks uninstall $(SRCDIR)/doc/man5 $(BLDDIR)/doc/man5 $${fn}$(MANSUFFIX) "$(DESTDIR)$(MANDIR)/man5"; \
       	done
       	@set -e; for x in dummy $(MANDOCS7); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX)"; \
      -		$(RM) $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX); \
      -		$(PERL) $(SRCDIR)/util/write-man-symlinks uninstall $(SRCDIR)/doc/man7 $(BLDDIR)/doc/man7 $${fn}$(MANSUFFIX) $(DESTDIR)$(MANDIR)/man7; \
      +		$(RM) "$(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX)"; \
      +		$(PERL) $(SRCDIR)/util/write-man-symlinks uninstall $(SRCDIR)/doc/man7 $(BLDDIR)/doc/man7 $${fn}$(MANSUFFIX) "$(DESTDIR)$(MANDIR)/man7"; \
       	done
       
       install_html_docs: install_image_docs build_html_docs
       	@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man1
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man3
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man5
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man7
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(HTMLDIR)/man1"
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(HTMLDIR)/man3"
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(HTMLDIR)/man5"
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(HTMLDIR)/man7"
       	@$(ECHO) "*** Installing HTML manpages"
       	@set -e; for x in dummy $(HTMLDOCS1); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man1/$$fn"; \
      -		cp $$x $(DESTDIR)$(HTMLDIR)/man1/$$fn; \
      -		chmod 644 $(DESTDIR)$(HTMLDIR)/man1/$$fn; \
      +		cp $$x "$(DESTDIR)$(HTMLDIR)/man1/$$fn"; \
      +		chmod 644 "$(DESTDIR)$(HTMLDIR)/man1/$$fn"; \
       	done
       	@set -e; for x in dummy $(HTMLDOCS3); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man3/$$fn"; \
      -		cp $$x $(DESTDIR)$(HTMLDIR)/man3/$$fn; \
      -		chmod 644 $(DESTDIR)$(HTMLDIR)/man3/$$fn; \
      +		cp $$x "$(DESTDIR)$(HTMLDIR)/man3/$$fn"; \
      +		chmod 644 "$(DESTDIR)$(HTMLDIR)/man3/$$fn"; \
       	done
       	@set -e; for x in dummy $(HTMLDOCS5); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man5/$$fn"; \
      -		cp $$x $(DESTDIR)$(HTMLDIR)/man5/$$fn; \
      -		chmod 644 $(DESTDIR)$(HTMLDIR)/man5/$$fn; \
      +		cp $$x "$(DESTDIR)$(HTMLDIR)/man5/$$fn"; \
      +		chmod 644 "$(DESTDIR)$(HTMLDIR)/man5/$$fn"; \
       	done
       	@set -e; for x in dummy $(HTMLDOCS7); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man7/$$fn"; \
      -		cp $$x $(DESTDIR)$(HTMLDIR)/man7/$$fn; \
      -		chmod 644 $(DESTDIR)$(HTMLDIR)/man7/$$fn; \
      +		cp $$x "$(DESTDIR)$(HTMLDIR)/man7/$$fn"; \
      +		chmod 644 "$(DESTDIR)$(HTMLDIR)/man7/$$fn"; \
       	done
       
       uninstall_html_docs: uninstall_image_docs
      @@ -1060,35 +1060,35 @@ uninstall_html_docs: uninstall_image_docs
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man1/$$fn"; \
      -		$(RM) $(DESTDIR)$(HTMLDIR)/man1/$$fn; \
      +		$(RM) "$(DESTDIR)$(HTMLDIR)/man1/$$fn"; \
       	done
       	@set -e; for x in dummy $(HTMLDOCS3); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man3/$$fn"; \
      -		$(RM) $(DESTDIR)$(HTMLDIR)/man3/$$fn; \
      +		$(RM) "$(DESTDIR)$(HTMLDIR)/man3/$$fn"; \
       	done
       	@set -e; for x in dummy $(HTMLDOCS5); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man5/$$fn"; \
      -		$(RM) $(DESTDIR)$(HTMLDIR)/man5/$$fn; \
      +		$(RM) "$(DESTDIR)$(HTMLDIR)/man5/$$fn"; \
       	done
       	@set -e; for x in dummy $(HTMLDOCS7); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man7/$$fn"; \
      -		$(RM) $(DESTDIR)$(HTMLDIR)/man7/$$fn; \
      +		$(RM) "$(DESTDIR)$(HTMLDIR)/man7/$$fn"; \
       	done
       
       install_image_docs:
      -	@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man7/img
      +	@$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(HTMLDIR)/man7/img"
       	@set -e; for x in dummy $(IMAGEDOCS7); do \
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man7/img/$$fn"; \
      -		cp $(SRCDIR)/$$x $(DESTDIR)$(HTMLDIR)/man7/img/$$fn; \
      -		chmod 644 $(DESTDIR)$(HTMLDIR)/man7/img/$$fn; \
      +		cp $(SRCDIR)/$$x "$(DESTDIR)$(HTMLDIR)/man7/img/$$fn"; \
      +		chmod 644 "$(DESTDIR)$(HTMLDIR)/man7/img/$$fn"; \
       	done
       
       uninstall_image_docs:
      @@ -1096,7 +1096,7 @@ uninstall_image_docs:
       		if [ "$$x" = "dummy" ]; then continue; fi; \
       		fn=`basename $$x`; \
       		$(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man7/img/$$fn"; \
      -		$(RM) $(DESTDIR)$(HTMLDIR)/man7/img/$$fn; \
      +		$(RM) "$(DESTDIR)$(HTMLDIR)/man7/img/$$fn"; \
       	done
       
       # Developer targets (note: these are only available on Unix) #########
      diff --git a/deps/openssl/openssl/INSTALL.md b/deps/openssl/openssl/INSTALL.md
      index fbcebe17e62c9a..87b1faef90f719 100644
      --- a/deps/openssl/openssl/INSTALL.md
      +++ b/deps/openssl/openssl/INSTALL.md
      @@ -2,8 +2,8 @@ Build and Install
       =================
       
       This document describes installation on all supported operating
      -systems (the Unix/Linux family, including macOS), OpenVMS,
      -and Windows).
      +systems: the Unix/Linux family (including macOS), OpenVMS,
      +and Windows.
       
       Table of Contents
       =================
      diff --git a/deps/openssl/openssl/NEWS.md b/deps/openssl/openssl/NEWS.md
      index feed9026976013..8f0d973e057bb8 100644
      --- a/deps/openssl/openssl/NEWS.md
      +++ b/deps/openssl/openssl/NEWS.md
      @@ -18,6 +18,16 @@ OpenSSL Releases
       OpenSSL 3.0
       -----------
       
      +### Major changes between OpenSSL 3.0.11 and OpenSSL 3.0.12 [24 Oct 2023]
      +
      +  * Mitigate incorrect resize handling for symmetric cipher keys and IVs.
      +    ([CVE-2023-5363])
      +
      +### Major changes between OpenSSL 3.0.10 and OpenSSL 3.0.11 [19 Sep 2023]
      +
      +  * Fix POLY1305 MAC implementation corrupting XMM registers on Windows
      +    ([CVE-2023-4807])
      +
       ### Major changes between OpenSSL 3.0.9 and OpenSSL 3.0.10 [1 Aug 2023]
       
         * Fix excessive time spent checking DH q parameter value ([CVE-2023-3817])
      @@ -1448,6 +1458,8 @@ OpenSSL 0.9.x
       
       
       
      +[CVE-2023-5363]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-5363
      +[CVE-2023-4807]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-4807
       [CVE-2023-3817]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-3817
       [CVE-2023-3446]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-3446
       [CVE-2023-2975]: https://www.openssl.org/news/vulnerabilities.html#CVE-2023-2975
      diff --git a/deps/openssl/openssl/README-OpenSSL.md b/deps/openssl/openssl/README-OpenSSL.md
      index f2f4fd39ad05bb..b848d050132aae 100644
      --- a/deps/openssl/openssl/README-OpenSSL.md
      +++ b/deps/openssl/openssl/README-OpenSSL.md
      @@ -166,7 +166,7 @@ attempting to develop or distribute cryptographic code.
       Copyright
       =========
       
      -Copyright (c) 1998-2022 The OpenSSL Project
      +Copyright (c) 1998-2023 The OpenSSL Project
       
       Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
       
      diff --git a/deps/openssl/openssl/README.md b/deps/openssl/openssl/README.md
      index 80090a262c0502..e73b04b378e322 100644
      --- a/deps/openssl/openssl/README.md
      +++ b/deps/openssl/openssl/README.md
      @@ -4,7 +4,7 @@ What This Is
       This is a fork of [OpenSSL](https://www.openssl.org) to enable QUIC. In addition
       to the website, the official source distribution is at
       . The OpenSSL `README` can be found at
      -[README-OpenSSL.md](https://github.com/quictls/openssl/blob/openssl-3.0.10%2Bquic/README-OpenSSL.md)
      +[README-OpenSSL.md](https://github.com/quictls/openssl/blob/openssl-3.0.12%2Bquic/README-OpenSSL.md)
       
       This fork adds APIs that can be used by QUIC implementations for connection
       handshakes. Quoting the IETF Working group
      diff --git a/deps/openssl/openssl/VERSION.dat b/deps/openssl/openssl/VERSION.dat
      index 3388a2ac907c8f..d416c3662e5dd1 100644
      --- a/deps/openssl/openssl/VERSION.dat
      +++ b/deps/openssl/openssl/VERSION.dat
      @@ -1,7 +1,7 @@
       MAJOR=3
       MINOR=0
      -PATCH=10
      +PATCH=12
       PRE_RELEASE_TAG=
       BUILD_METADATA=quic
      -RELEASE_DATE="1 Aug 2023"
      +RELEASE_DATE="24 Oct 2023"
       SHLIB_VERSION=81.3
      diff --git a/deps/openssl/openssl/apps/cmp.c b/deps/openssl/openssl/apps/cmp.c
      index a317fdb0bf3ed4..c479b15496607f 100644
      --- a/deps/openssl/openssl/apps/cmp.c
      +++ b/deps/openssl/openssl/apps/cmp.c
      @@ -2512,7 +2512,7 @@ static int get_opts(int argc, char **argv)
                   }
                   break;
               case OPT_CSR:
      -            opt_csr = opt_arg();
      +            opt_csr = opt_str();
                   break;
               case OPT_OUT_TRUSTED:
                   opt_out_trusted = opt_str();
      diff --git a/deps/openssl/openssl/apps/dgst.c b/deps/openssl/openssl/apps/dgst.c
      index e12389197de4a6..3f02af0d5738ab 100644
      --- a/deps/openssl/openssl/apps/dgst.c
      +++ b/deps/openssl/openssl/apps/dgst.c
      @@ -320,6 +320,8 @@ int dgst_main(int argc, char **argv)
               sigkey = app_keygen(mac_ctx, mac_name, 0, 0 /* not verbose */);
               /* Verbose output would make external-tests gost-engine fail */
               EVP_PKEY_CTX_free(mac_ctx);
      +        if (sigkey == NULL)
      +            goto end;
           }
       
           if (hmac_key != NULL) {
      diff --git a/deps/openssl/openssl/apps/dhparam.c b/deps/openssl/openssl/apps/dhparam.c
      index 43906cea56497b..2a54dca9d8b552 100644
      --- a/deps/openssl/openssl/apps/dhparam.c
      +++ b/deps/openssl/openssl/apps/dhparam.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -222,6 +222,8 @@ int dhparam_main(int argc, char **argv)
               }
       
               tmppkey = app_paramgen(ctx, alg);
      +        if (tmppkey == NULL)
      +            goto end;
               EVP_PKEY_CTX_free(ctx);
               ctx = NULL;
               if (dsaparam) {
      diff --git a/deps/openssl/openssl/apps/dsaparam.c b/deps/openssl/openssl/apps/dsaparam.c
      index b5555282be6e18..ca91beb5b893bb 100644
      --- a/deps/openssl/openssl/apps/dsaparam.c
      +++ b/deps/openssl/openssl/apps/dsaparam.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -218,6 +218,8 @@ int dsaparam_main(int argc, char **argv)
                   goto end;
               }
               pkey = app_keygen(ctx, "DSA", numbits, verbose);
      +        if (pkey == NULL)
      +            goto end;
               assert(private);
               if (outformat == FORMAT_ASN1)
                   i = i2d_PrivateKey_bio(out, pkey);
      diff --git a/deps/openssl/openssl/apps/enc.c b/deps/openssl/openssl/apps/enc.c
      index b3bf4cc2592d01..c275046cf57a64 100644
      --- a/deps/openssl/openssl/apps/enc.c
      +++ b/deps/openssl/openssl/apps/enc.c
      @@ -624,7 +624,10 @@ int enc_main(int argc, char **argv)
               }
           }
           if (!BIO_flush(wbio)) {
      -        BIO_printf(bio_err, "bad decrypt\n");
      +        if (enc)
      +            BIO_printf(bio_err, "bad encrypt\n");
      +        else
      +            BIO_printf(bio_err, "bad decrypt\n");
               goto end;
           }
       
      diff --git a/deps/openssl/openssl/apps/gendsa.c b/deps/openssl/openssl/apps/gendsa.c
      index 27feb793fed23c..8aefca65566c59 100644
      --- a/deps/openssl/openssl/apps/gendsa.c
      +++ b/deps/openssl/openssl/apps/gendsa.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -146,6 +146,8 @@ int gendsa_main(int argc, char **argv)
               goto end;
           }
           pkey = app_keygen(ctx, "DSA", nbits, verbose);
      +    if (pkey == NULL)
      +        goto end;
       
           assert(private);
           if (!PEM_write_bio_PrivateKey(out, pkey, enc, NULL, 0, NULL, passout)) {
      diff --git a/deps/openssl/openssl/apps/genpkey.c b/deps/openssl/openssl/apps/genpkey.c
      index d00754eeaca09f..705e5c76b47dc0 100644
      --- a/deps/openssl/openssl/apps/genpkey.c
      +++ b/deps/openssl/openssl/apps/genpkey.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2006-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -183,6 +183,8 @@ int genpkey_main(int argc, char **argv)
       
           pkey = do_param ? app_paramgen(ctx, algname)
                           : app_keygen(ctx, algname, 0, 0 /* not verbose */);
      +    if (pkey == NULL)
      +        goto end;
       
           if (do_param) {
               rv = PEM_write_bio_Parameters(out, pkey);
      diff --git a/deps/openssl/openssl/apps/genrsa.c b/deps/openssl/openssl/apps/genrsa.c
      index 4436b7fa1745a9..6a683517a15fc7 100644
      --- a/deps/openssl/openssl/apps/genrsa.c
      +++ b/deps/openssl/openssl/apps/genrsa.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -203,6 +203,8 @@ int genrsa_main(int argc, char **argv)
               goto end;
           }
           pkey = app_keygen(ctx, "RSA", num, verbose);
      +    if (pkey == NULL)
      +        goto end;
       
           if (verbose) {
               BIGNUM *e = NULL;
      diff --git a/deps/openssl/openssl/apps/lib/apps.c b/deps/openssl/openssl/apps/lib/apps.c
      index 4baeb352fedfb3..a632b0cff2bf68 100644
      --- a/deps/openssl/openssl/apps/lib/apps.c
      +++ b/deps/openssl/openssl/apps/lib/apps.c
      @@ -944,7 +944,7 @@ int load_key_certs_crls_suppress(const char *uri, int format, int maybe_stdin,
               BIO *bio;
       
               if (!maybe_stdin) {
      -            BIO_printf(bio_err, "No filename or uri specified for loading");
      +            BIO_printf(bio_err, "No filename or uri specified for loading\n");
                   goto end;
               }
               uri = "";
      @@ -964,8 +964,10 @@ int load_key_certs_crls_suppress(const char *uri, int format, int maybe_stdin,
               BIO_printf(bio_err, "Could not open file or uri for loading");
               goto end;
           }
      -    if (expect > 0 && !OSSL_STORE_expect(ctx, expect))
      +    if (expect > 0 && !OSSL_STORE_expect(ctx, expect)) {
      +        BIO_printf(bio_err, "Internal error trying to load");
               goto end;
      +    }
       
           failed = NULL;
           while (cnt_expectations > 0 && !OSSL_STORE_eof(ctx)) {
      @@ -1948,16 +1950,17 @@ X509_NAME *parse_name(const char *cp, int chtype, int canmulti,
               nid = OBJ_txt2nid(typestr);
               if (nid == NID_undef) {
                   BIO_printf(bio_err,
      -                       "%s: Skipping unknown %s name attribute \"%s\"\n",
      +                       "%s warning: Skipping unknown %s name attribute \"%s\"\n",
                              opt_getprog(), desc, typestr);
                   if (ismulti)
                       BIO_printf(bio_err,
      -                           "Hint: a '+' in a value string needs be escaped using '\\' else a new member of a multi-valued RDN is expected\n");
      +                           "%s hint: a '+' in a value string needs be escaped using '\\' else a new member of a multi-valued RDN is expected\n",
      +                           opt_getprog());
                   continue;
               }
               if (*valstr == '\0') {
                   BIO_printf(bio_err,
      -                       "%s: No value provided for %s name attribute \"%s\", skipped\n",
      +                       "%s warning: No value provided for %s name attribute \"%s\", skipped\n",
                              opt_getprog(), desc, typestr);
                   continue;
               }
      @@ -3360,8 +3363,8 @@ EVP_PKEY *app_keygen(EVP_PKEY_CTX *ctx, const char *alg, int bits, int verbose)
               BIO_printf(bio_err, "Warning: generating random key material may take a long time\n"
                          "if the system has a poor entropy source\n");
           if (EVP_PKEY_keygen(ctx, &res) <= 0)
      -        app_bail_out("%s: Error generating %s key\n", opt_getprog(),
      -                     alg != NULL ? alg : "asymmetric");
      +        BIO_printf(bio_err, "%s: Error generating %s key\n", opt_getprog(),
      +                   alg != NULL ? alg : "asymmetric");
           return res;
       }
       
      @@ -3373,8 +3376,8 @@ EVP_PKEY *app_paramgen(EVP_PKEY_CTX *ctx, const char *alg)
               BIO_printf(bio_err, "Warning: generating random key parameters may take a long time\n"
                          "if the system has a poor entropy source\n");
           if (EVP_PKEY_paramgen(ctx, &res) <= 0)
      -        app_bail_out("%s: Generating %s key parameters failed\n",
      -                     opt_getprog(), alg != NULL ? alg : "asymmetric");
      +        BIO_printf(bio_err, "%s: Generating %s key parameters failed\n",
      +                   opt_getprog(), alg != NULL ? alg : "asymmetric");
           return res;
       }
       
      diff --git a/deps/openssl/openssl/apps/req.c b/deps/openssl/openssl/apps/req.c
      index 73b320a7098cf0..41191803aef417 100644
      --- a/deps/openssl/openssl/apps/req.c
      +++ b/deps/openssl/openssl/apps/req.c
      @@ -685,6 +685,8 @@ int req_main(int argc, char **argv)
               EVP_PKEY_CTX_set_app_data(genctx, bio_err);
       
               pkey = app_keygen(genctx, keyalgstr, newkey_len, verbose);
      +        if (pkey == NULL)
      +            goto end;
       
               EVP_PKEY_CTX_free(genctx);
               genctx = NULL;
      @@ -990,10 +992,10 @@ int req_main(int argc, char **argv)
               else
                   tpubkey = X509_REQ_get0_pubkey(req);
               if (tpubkey == NULL) {
      -            fprintf(stdout, "Modulus is unavailable\n");
      +            BIO_puts(bio_err, "Modulus is unavailable\n");
                   goto end;
               }
      -        fprintf(stdout, "Modulus=");
      +        BIO_puts(out, "Modulus=");
               if (EVP_PKEY_is_a(tpubkey, "RSA") || EVP_PKEY_is_a(tpubkey, "RSA-PSS")) {
                   BIGNUM *n = NULL;
       
      @@ -1002,9 +1004,9 @@ int req_main(int argc, char **argv)
                   BN_print(out, n);
                   BN_free(n);
               } else {
      -            fprintf(stdout, "Wrong Algorithm type");
      +            BIO_puts(out, "Wrong Algorithm type");
               }
      -        fprintf(stdout, "\n");
      +        BIO_puts(out, "\n");
           }
       
           if (!noout && !gen_x509) {
      diff --git a/deps/openssl/openssl/apps/s_server.c b/deps/openssl/openssl/apps/s_server.c
      index a203d6a091cac3..c8ccdfd03ca196 100644
      --- a/deps/openssl/openssl/apps/s_server.c
      +++ b/deps/openssl/openssl/apps/s_server.c
      @@ -789,7 +789,7 @@ const OPTIONS s_server_options[] = {
            "second server certificate chain file in PEM format"},
           {"dkey", OPT_DKEY, '<',
            "Second private key file to use (usually for DSA)"},
      -    {"dkeyform", OPT_DKEYFORM, 'F',
      +    {"dkeyform", OPT_DKEYFORM, 'f',
            "Second key file format (ENGINE, other values ignored)"},
           {"dpass", OPT_DPASS, 's',
            "Second private key and cert file pass phrase source"},
      diff --git a/deps/openssl/openssl/apps/speed.c b/deps/openssl/openssl/apps/speed.c
      index f30435704d19ce..1113d775b8ab98 100644
      --- a/deps/openssl/openssl/apps/speed.c
      +++ b/deps/openssl/openssl/apps/speed.c
      @@ -3700,7 +3700,8 @@ static void multiblock_speed(const EVP_CIPHER *evp_cipher, int lengths_single,
                   } else {
                       int pad;
       
      -                RAND_bytes(out, 16);
      +                if (RAND_bytes(inp, 16) <= 0)
      +                    app_bail_out("error setting random bytes\n");
                       len += 16;
                       aad[11] = (unsigned char)(len >> 8);
                       aad[12] = (unsigned char)(len);
      diff --git a/deps/openssl/openssl/appveyor.yml b/deps/openssl/openssl/appveyor.yml
      deleted file mode 100644
      index 9bb6f04e0a44cb..00000000000000
      --- a/deps/openssl/openssl/appveyor.yml
      +++ /dev/null
      @@ -1,82 +0,0 @@
      -image:
      -    - Visual Studio 2017
      -
      -platform:
      -    - x64
      -    - x86
      -
      -environment:
      -    fast_finish: true
      -    matrix:
      -        - VSVER: 15
      -
      -configuration:
      -    - shared
      -    - minimal
      -
      -for:
      -    -
      -        branches:
      -            only:
      -                - master
      -        configuration:
      -            - shared
      -            - plain
      -            - minimal
      -
      -before_build:
      -    - ps: >-
      -        Install-Module VSSetup -Scope CurrentUser
      -    - ps: >-
      -        Get-VSSetupInstance -All
      -    - ps: >-
      -        If ($env:Platform -Match "x86") {
      -            $env:VCVARS_PLATFORM="x86"
      -            $env:TARGET="VC-WIN32 no-asm --strict-warnings"
      -        } Else {
      -            $env:VCVARS_PLATFORM="amd64"
      -            $env:TARGET="VC-WIN64A-masm"
      -        }
      -    - ps: >-
      -        If ($env:Configuration -Match "shared") {
      -            $env:CONFIG_OPTS="enable-fips"
      -        } ElseIf ($env:Configuration -Match "minimal") {
      -            $env:CONFIG_OPTS="no-bulk no-asm -DOPENSSL_SMALL_FOOTPRINT"
      -        } Else {
      -            $env:CONFIG_OPTS="no-fips no-shared"
      -        }
      -    - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" %VCVARS_PLATFORM%
      -    - mkdir _build
      -    - cd _build
      -    - perl ..\Configure %TARGET% no-makedepend %CONFIG_OPTS%
      -    - perl configdata.pm --dump
      -    - cd ..
      -    - ps: >-
      -        If ($env:BUILDONLY -or $env:MAKEVERBOSE) {
      -            $env:NMAKE="nmake"
      -        } Else {
      -            $env:NMAKE="nmake /S"
      -        }
      -    - ps: >-
      -        gci env:* | sort-object name
      -
      -build_script:
      -    - cd _build
      -    - "%NMAKE% build_all_generated"
      -    - "%NMAKE% PERL=no-perl"
      -    - cd ..
      -
      -test_script:
      -    - cd _build
      -    - ps: >-
      -        if ($env:Configuration -Match "plain") {
      -            cmd /c "%NMAKE% test VERBOSE_FAILURE=yes 2>&1"
      -        } Else {
      -            cmd /c "%NMAKE% test VERBOSE_FAILURE=yes TESTS=-test_fuzz 2>&1"
      -        }
      -    - ps: >-
      -        if ($env:Configuration -Match "shared") {
      -            mkdir ..\_install
      -            cmd /c "%NMAKE% install DESTDIR=..\_install 2>&1"
      -        }
      -    - cd ..
      diff --git a/deps/openssl/openssl/crypto/aes/asm/aesv8-armx.pl b/deps/openssl/openssl/crypto/aes/asm/aesv8-armx.pl
      index 544dc7e8effe66..d0e0be6187bd2e 100755
      --- a/deps/openssl/openssl/crypto/aes/asm/aesv8-armx.pl
      +++ b/deps/openssl/openssl/crypto/aes/asm/aesv8-armx.pl
      @@ -3661,6 +3661,9 @@ ()
       	s/\.[ui]?64//o and s/\.16b/\.2d/go;
       	s/\.[42]([sd])\[([0-3])\]/\.$1\[$2\]/o;
       
      +	# Switch preprocessor checks to aarch64 versions.
      +	s/__ARME([BL])__/__AARCH64E$1__/go;
      +
       	print $_,"\n";
           }
       } else {				######## 32-bit code
      diff --git a/deps/openssl/openssl/crypto/arm_arch.h b/deps/openssl/openssl/crypto/arm_arch.h
      index 45d7e155647540..ec4a087fede2fc 100644
      --- a/deps/openssl/openssl/crypto/arm_arch.h
      +++ b/deps/openssl/openssl/crypto/arm_arch.h
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2011-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2011-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -21,11 +21,6 @@
       #  elif defined(__GNUC__)
       #   if   defined(__aarch64__)
       #    define __ARM_ARCH__ 8
      -#    if __BYTE_ORDER__==__ORDER_BIG_ENDIAN__
      -#     define __ARMEB__
      -#    else
      -#     define __ARMEL__
      -#    endif
         /*
          * Why doesn't gcc define __ARM_ARCH__? Instead it defines
          * bunch of below macros. See all_architectures[] table in
      diff --git a/deps/openssl/openssl/crypto/asn1/a_strnid.c b/deps/openssl/openssl/crypto/asn1/a_strnid.c
      index 9e54db929282c5..d052935661d362 100644
      --- a/deps/openssl/openssl/crypto/asn1/a_strnid.c
      +++ b/deps/openssl/openssl/crypto/asn1/a_strnid.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -129,8 +129,10 @@ ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid)
           int idx;
           ASN1_STRING_TABLE fnd;
       
      +#ifndef OPENSSL_NO_AUTOLOAD_CONFIG
           /* "stable" can be impacted by config, so load the config file first */
           OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL);
      +#endif
       
           fnd.nid = nid;
           if (stable) {
      diff --git a/deps/openssl/openssl/crypto/asn1/asn1_gen.c b/deps/openssl/openssl/crypto/asn1/asn1_gen.c
      index 64620a4f28a7f6..402ab34e6a46f7 100644
      --- a/deps/openssl/openssl/crypto/asn1/asn1_gen.c
      +++ b/deps/openssl/openssl/crypto/asn1/asn1_gen.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2002-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2002-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -698,9 +698,12 @@ static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype)
                   atmp->value.asn1_string->data = rdata;
                   atmp->value.asn1_string->length = rdlen;
                   atmp->value.asn1_string->type = utype;
      -        } else if (format == ASN1_GEN_FORMAT_ASCII)
      -            ASN1_STRING_set(atmp->value.asn1_string, str, -1);
      -        else if ((format == ASN1_GEN_FORMAT_BITLIST)
      +        } else if (format == ASN1_GEN_FORMAT_ASCII) {
      +            if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) {
      +                ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
      +                goto bad_str;
      +            }
      +        } else if ((format == ASN1_GEN_FORMAT_BITLIST)
                        && (utype == V_ASN1_BIT_STRING)) {
                   if (!CONF_parse_list
                       (str, ',', 1, bitstr_cb, atmp->value.bit_string)) {
      diff --git a/deps/openssl/openssl/crypto/bn/bn_gcd.c b/deps/openssl/openssl/crypto/bn/bn_gcd.c
      index 59d024f674ebd5..cd0b0151ec7ed6 100644
      --- a/deps/openssl/openssl/crypto/bn/bn_gcd.c
      +++ b/deps/openssl/openssl/crypto/bn/bn_gcd.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -611,9 +611,9 @@ int BN_gcd(BIGNUM *r, const BIGNUM *in_a, const BIGNUM *in_b, BN_CTX *ctx)
       
           for (i = 0; i < m; i++) {
               /* conditionally flip signs if delta is positive and g is odd */
      -        cond = (-delta >> (8 * sizeof(delta) - 1)) & g->d[0] & 1
      +        cond = ((unsigned int)-delta >> (8 * sizeof(delta) - 1)) & g->d[0] & 1
                   /* make sure g->top > 0 (i.e. if top == 0 then g == 0 always) */
      -            & (~((g->top - 1) >> (sizeof(g->top) * 8 - 1)));
      +            & (~((unsigned int)(g->top - 1) >> (sizeof(g->top) * 8 - 1)));
               delta = (-cond & -delta) | ((cond - 1) & delta);
               r->neg ^= cond;
               /* swap */
      @@ -625,7 +625,7 @@ int BN_gcd(BIGNUM *r, const BIGNUM *in_a, const BIGNUM *in_b, BN_CTX *ctx)
                   goto err;
               BN_consttime_swap(g->d[0] & 1 /* g is odd */
                       /* make sure g->top > 0 (i.e. if top == 0 then g == 0 always) */
      -                & (~((g->top - 1) >> (sizeof(g->top) * 8 - 1))),
      +                & (~((unsigned int)(g->top - 1) >> (sizeof(g->top) * 8 - 1))),
                       g, temp, top);
               if (!BN_rshift1(g, g))
                   goto err;
      diff --git a/deps/openssl/openssl/crypto/build.info b/deps/openssl/openssl/crypto/build.info
      index b90390ae864c40..c04db5591120df 100644
      --- a/deps/openssl/openssl/crypto/build.info
      +++ b/deps/openssl/openssl/crypto/build.info
      @@ -97,8 +97,6 @@ $UTIL_COMMON=\
               context.c sparse_array.c asn1_dsa.c packet.c param_build.c \
               param_build_set.c der_writer.c threads_lib.c params_dup.c
       
      -SHARED_SOURCE[../libssl]=sparse_array.c
      -
       SOURCE[../libcrypto]=$UTIL_COMMON \
               mem.c mem_sec.c \
               cversion.c info.c cpt_err.c ebcdic.c uid.c o_time.c o_dir.c \
      diff --git a/deps/openssl/openssl/crypto/chacha/asm/chacha-ia64.pl b/deps/openssl/openssl/crypto/chacha/asm/chacha-ia64.pl
      index b13d972855754d..78201649d55029 100644
      --- a/deps/openssl/openssl/crypto/chacha/asm/chacha-ia64.pl
      +++ b/deps/openssl/openssl/crypto/chacha/asm/chacha-ia64.pl
      @@ -46,6 +46,8 @@
       	ADDP		@k[11]=4,$key
       	.save		ar.lc,r3
       	mov		r3=ar.lc		}
      +{ .mmi;	ADDP		$out=0,$out
      +	ADDP		$inp=0,$inp		}
       { .mmi;	ADDP		$key=0,$key
       	ADDP		$counter=0,$counter
       	.save		pr,r14
      diff --git a/deps/openssl/openssl/crypto/cmp/cmp_asn.c b/deps/openssl/openssl/crypto/cmp/cmp_asn.c
      index 0ca107554c96dd..a8de73ad979b67 100644
      --- a/deps/openssl/openssl/crypto/cmp/cmp_asn.c
      +++ b/deps/openssl/openssl/crypto/cmp/cmp_asn.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
        * Copyright Nokia 2007-2019
        * Copyright Siemens AG 2015-2019
        *
      @@ -188,22 +188,22 @@ int OSSL_CMP_ITAV_push0_stack_item(STACK_OF(OSSL_CMP_ITAV) **itav_sk_p,
           return 0;
       }
       
      -/* get ASN.1 encoded integer, return -1 on error */
      +/* get ASN.1 encoded integer, return -2 on error; -1 is valid for certReqId */
       int ossl_cmp_asn1_get_int(const ASN1_INTEGER *a)
       {
           int64_t res;
       
           if (!ASN1_INTEGER_get_int64(&res, a)) {
               ERR_raise(ERR_LIB_CMP, ASN1_R_INVALID_NUMBER);
      -        return -1;
      +        return -2;
           }
           if (res < INT_MIN) {
               ERR_raise(ERR_LIB_CMP, ASN1_R_TOO_SMALL);
      -        return -1;
      +        return -2;
           }
           if (res > INT_MAX) {
               ERR_raise(ERR_LIB_CMP, ASN1_R_TOO_LARGE);
      -        return -1;
      +        return -2;
           }
           return (int)res;
       }
      diff --git a/deps/openssl/openssl/crypto/cmp/cmp_client.c b/deps/openssl/openssl/crypto/cmp/cmp_client.c
      index dc41f4c3b7d9e2..df334cc0019822 100644
      --- a/deps/openssl/openssl/crypto/cmp/cmp_client.c
      +++ b/deps/openssl/openssl/crypto/cmp/cmp_client.c
      @@ -584,7 +584,7 @@ static int cert_response(OSSL_CMP_CTX *ctx, int sleep, int rid,
               return 0;
           if (rid == OSSL_CMP_CERTREQID_NONE) { /* used for OSSL_CMP_PKIBODY_P10CR */
               rid = ossl_cmp_asn1_get_int(crep->certReqId);
      -        if (rid != OSSL_CMP_CERTREQID_NONE) {
      +        if (rid < OSSL_CMP_CERTREQID_NONE) {
                   ERR_raise(ERR_LIB_CMP, CMP_R_BAD_REQUEST_ID);
                   return 0;
               }
      diff --git a/deps/openssl/openssl/crypto/cmp/cmp_status.c b/deps/openssl/openssl/crypto/cmp/cmp_status.c
      index bfe6cd9906b82a..68144aa4fed878 100644
      --- a/deps/openssl/openssl/crypto/cmp/cmp_status.c
      +++ b/deps/openssl/openssl/crypto/cmp/cmp_status.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
        * Copyright Nokia 2007-2019
        * Copyright Siemens AG 2015-2019
        *
      @@ -30,9 +30,12 @@
       
       int ossl_cmp_pkisi_get_status(const OSSL_CMP_PKISI *si)
       {
      +    int res ;
      +
           if (!ossl_assert(si != NULL && si->status != NULL))
               return -1;
      -    return ossl_cmp_asn1_get_int(si->status);
      +    res = ossl_cmp_asn1_get_int(si->status);
      +    return res == -2 ? -1 : res;
       }
       
       const char *ossl_cmp_PKIStatus_to_string(int status)
      diff --git a/deps/openssl/openssl/crypto/cms/cms_enc.c b/deps/openssl/openssl/crypto/cms/cms_enc.c
      index f7007c12319e66..ae88df33a7f0bf 100644
      --- a/deps/openssl/openssl/crypto/cms/cms_enc.c
      +++ b/deps/openssl/openssl/crypto/cms/cms_enc.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2008-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2008-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -15,6 +15,7 @@
       #include 
       #include 
       #include "crypto/evp.h"
      +#include "crypto/asn1.h"
       #include "cms_local.h"
       
       /* CMS EncryptedData Utilities */
      @@ -81,7 +82,7 @@ BIO *ossl_cms_EncryptedContent_init_bio(CMS_EncryptedContentInfo *ec,
       
           if (enc) {
               calg->algorithm = OBJ_nid2obj(EVP_CIPHER_CTX_get_type(ctx));
      -        if (calg->algorithm == NULL) {
      +        if (calg->algorithm == NULL || calg->algorithm->nid == NID_undef) {
                   ERR_raise(ERR_LIB_CMS, CMS_R_UNSUPPORTED_CONTENT_ENCRYPTION_ALGORITHM);
                   goto err;
               }
      diff --git a/deps/openssl/openssl/crypto/cms/cms_env.c b/deps/openssl/openssl/crypto/cms/cms_env.c
      index bd1f3e7345d400..99cf1dcb396ca5 100644
      --- a/deps/openssl/openssl/crypto/cms/cms_env.c
      +++ b/deps/openssl/openssl/crypto/cms/cms_env.c
      @@ -26,7 +26,7 @@ static void cms_env_set_version(CMS_EnvelopedData *env);
       #define CMS_ENVELOPED_STANDARD 1
       #define CMS_ENVELOPED_AUTH     2
       
      -static int cms_get_enveloped_type(const CMS_ContentInfo *cms)
      +static int cms_get_enveloped_type_simple(const CMS_ContentInfo *cms)
       {
           int nid = OBJ_obj2nid(cms->contentType);
       
      @@ -38,11 +38,28 @@ static int cms_get_enveloped_type(const CMS_ContentInfo *cms)
               return CMS_ENVELOPED_AUTH;
       
           default:
      -        ERR_raise(ERR_LIB_CMS, CMS_R_CONTENT_TYPE_NOT_ENVELOPED_DATA);
               return 0;
           }
       }
       
      +static int cms_get_enveloped_type(const CMS_ContentInfo *cms)
      +{
      +    int ret = cms_get_enveloped_type_simple(cms);
      +
      +    if (ret == 0)
      +        ERR_raise(ERR_LIB_CMS, CMS_R_CONTENT_TYPE_NOT_ENVELOPED_DATA);
      +    return ret;
      +}
      +
      +void ossl_cms_env_enc_content_free(const CMS_ContentInfo *cinf)
      +{
      +    if (cms_get_enveloped_type_simple(cinf) != 0) {
      +        CMS_EncryptedContentInfo *ec = ossl_cms_get0_env_enc_content(cinf);
      +        if (ec != NULL)
      +            OPENSSL_clear_free(ec->key, ec->keylen);
      +    }
      +}
      +
       CMS_EnvelopedData *ossl_cms_get0_enveloped(CMS_ContentInfo *cms)
       {
           if (OBJ_obj2nid(cms->contentType) != NID_pkcs7_enveloped) {
      diff --git a/deps/openssl/openssl/crypto/cms/cms_err.c b/deps/openssl/openssl/crypto/cms/cms_err.c
      index dcbea201c8e5f4..4bd6a0dc1bf101 100644
      --- a/deps/openssl/openssl/crypto/cms/cms_err.c
      +++ b/deps/openssl/openssl/crypto/cms/cms_err.c
      @@ -1,6 +1,6 @@
       /*
        * Generated by util/mkerr.pl DO NOT EDIT
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -154,6 +154,8 @@ static const ERR_STRING_DATA CMS_str_reasons[] = {
           "unsupported recipientinfo type"},
           {ERR_PACK(ERR_LIB_CMS, 0, CMS_R_UNSUPPORTED_RECIPIENT_TYPE),
           "unsupported recipient type"},
      +    {ERR_PACK(ERR_LIB_CMS, 0, CMS_R_UNSUPPORTED_SIGNATURE_ALGORITHM),
      +    "unsupported signature algorithm"},
           {ERR_PACK(ERR_LIB_CMS, 0, CMS_R_UNSUPPORTED_TYPE), "unsupported type"},
           {ERR_PACK(ERR_LIB_CMS, 0, CMS_R_UNWRAP_ERROR), "unwrap error"},
           {ERR_PACK(ERR_LIB_CMS, 0, CMS_R_UNWRAP_FAILURE), "unwrap failure"},
      diff --git a/deps/openssl/openssl/crypto/cms/cms_lib.c b/deps/openssl/openssl/crypto/cms/cms_lib.c
      index 1d2c5bc42288a0..8b135e95aacc81 100644
      --- a/deps/openssl/openssl/crypto/cms/cms_lib.c
      +++ b/deps/openssl/openssl/crypto/cms/cms_lib.c
      @@ -76,10 +76,7 @@ CMS_ContentInfo *CMS_ContentInfo_new(void)
       void CMS_ContentInfo_free(CMS_ContentInfo *cms)
       {
           if (cms != NULL) {
      -        CMS_EncryptedContentInfo *ec = ossl_cms_get0_env_enc_content(cms);
      -
      -        if (ec != NULL)
      -            OPENSSL_clear_free(ec->key, ec->keylen);
      +        ossl_cms_env_enc_content_free(cms);
               OPENSSL_free(cms->ctx.propq);
               ASN1_item_free((ASN1_VALUE *)cms, ASN1_ITEM_rptr(CMS_ContentInfo));
           }
      diff --git a/deps/openssl/openssl/crypto/cms/cms_local.h b/deps/openssl/openssl/crypto/cms/cms_local.h
      index 15b4a29ce03dce..253f6819e43542 100644
      --- a/deps/openssl/openssl/crypto/cms/cms_local.h
      +++ b/deps/openssl/openssl/crypto/cms/cms_local.h
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2008-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2008-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -444,6 +444,7 @@ BIO *ossl_cms_EnvelopedData_init_bio(CMS_ContentInfo *cms);
       int ossl_cms_EnvelopedData_final(CMS_ContentInfo *cms, BIO *chain);
       BIO *ossl_cms_AuthEnvelopedData_init_bio(CMS_ContentInfo *cms);
       int ossl_cms_AuthEnvelopedData_final(CMS_ContentInfo *cms, BIO *cmsbio);
      +void ossl_cms_env_enc_content_free(const CMS_ContentInfo *cinf);
       CMS_EnvelopedData *ossl_cms_get0_enveloped(CMS_ContentInfo *cms);
       CMS_AuthEnvelopedData *ossl_cms_get0_auth_enveloped(CMS_ContentInfo *cms);
       CMS_EncryptedContentInfo *ossl_cms_get0_env_enc_content(const CMS_ContentInfo *cms);
      diff --git a/deps/openssl/openssl/crypto/cms/cms_sd.c b/deps/openssl/openssl/crypto/cms/cms_sd.c
      index 34c021bba64af7..2093657a2a4a69 100644
      --- a/deps/openssl/openssl/crypto/cms/cms_sd.c
      +++ b/deps/openssl/openssl/crypto/cms/cms_sd.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2008-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2008-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -233,9 +233,9 @@ static int cms_sd_asn1_ctrl(CMS_SignerInfo *si, int cmd)
           int i;
       
           if (EVP_PKEY_is_a(pkey, "DSA") || EVP_PKEY_is_a(pkey, "EC"))
      -        return ossl_cms_ecdsa_dsa_sign(si, cmd);
      +        return ossl_cms_ecdsa_dsa_sign(si, cmd) > 0;
           else if (EVP_PKEY_is_a(pkey, "RSA") || EVP_PKEY_is_a(pkey, "RSA-PSS"))
      -        return ossl_cms_rsa_sign(si, cmd);
      +        return ossl_cms_rsa_sign(si, cmd) > 0;
       
           /* Something else? We'll give engines etc a chance to handle this */
           if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL)
      @@ -354,11 +354,16 @@ CMS_SignerInfo *CMS_add1_signer(CMS_ContentInfo *cms,
       
           if (md == NULL) {
               int def_nid;
      -        if (EVP_PKEY_get_default_digest_nid(pk, &def_nid) <= 0)
      +
      +        if (EVP_PKEY_get_default_digest_nid(pk, &def_nid) <= 0) {
      +            ERR_raise_data(ERR_LIB_CMS, CMS_R_NO_DEFAULT_DIGEST,
      +                           "pkey nid=%d", EVP_PKEY_get_id(pk));
                   goto err;
      +        }
               md = EVP_get_digestbynid(def_nid);
               if (md == NULL) {
      -            ERR_raise(ERR_LIB_CMS, CMS_R_NO_DEFAULT_DIGEST);
      +            ERR_raise_data(ERR_LIB_CMS, CMS_R_NO_DEFAULT_DIGEST,
      +                           "default md nid=%d", def_nid);
                   goto err;
               }
           }
      @@ -398,8 +403,11 @@ CMS_SignerInfo *CMS_add1_signer(CMS_ContentInfo *cms,
               }
           }
       
      -    if (!(flags & CMS_KEY_PARAM) && !cms_sd_asn1_ctrl(si, 0))
      +    if (!(flags & CMS_KEY_PARAM) && !cms_sd_asn1_ctrl(si, 0)) {
      +        ERR_raise_data(ERR_LIB_CMS, CMS_R_UNSUPPORTED_SIGNATURE_ALGORITHM,
      +                       "pkey nid=%d", EVP_PKEY_get_id(pk));
               goto err;
      +    }
           if (!(flags & CMS_NOATTR)) {
               /*
                * Initialize signed attributes structure so other attributes
      diff --git a/deps/openssl/openssl/crypto/conf/conf_sap.c b/deps/openssl/openssl/crypto/conf/conf_sap.c
      index 513f8bfc1fb94c..3019bcf31af81a 100644
      --- a/deps/openssl/openssl/crypto/conf/conf_sap.c
      +++ b/deps/openssl/openssl/crypto/conf/conf_sap.c
      @@ -65,7 +65,8 @@ int ossl_config_int(const OPENSSL_INIT_SETTINGS *settings)
       #endif
       
       #ifndef OPENSSL_SYS_UEFI
      -    ret = CONF_modules_load_file(filename, appname, flags);
      +    ret = CONF_modules_load_file_ex(OSSL_LIB_CTX_get0_global_default(),
      +                                    filename, appname, flags);
       #else
           ret = 1;
       #endif
      diff --git a/deps/openssl/openssl/crypto/dh/dh_check.c b/deps/openssl/openssl/crypto/dh/dh_check.c
      index f4173e21371e01..7ba2beae7fd6b9 100644
      --- a/deps/openssl/openssl/crypto/dh/dh_check.c
      +++ b/deps/openssl/openssl/crypto/dh/dh_check.c
      @@ -259,7 +259,8 @@ int DH_check_pub_key(const DH *dh, const BIGNUM *pub_key, int *ret)
        */
       int ossl_dh_check_pub_key_partial(const DH *dh, const BIGNUM *pub_key, int *ret)
       {
      -    return ossl_ffc_validate_public_key_partial(&dh->params, pub_key, ret);
      +    return ossl_ffc_validate_public_key_partial(&dh->params, pub_key, ret)
      +           && *ret == 0;
       }
       
       int ossl_dh_check_priv_key(const DH *dh, const BIGNUM *priv_key, int *ret)
      diff --git a/deps/openssl/openssl/crypto/dh/dh_key.c b/deps/openssl/openssl/crypto/dh/dh_key.c
      index 4e9705beef733b..d84ea99241b9e8 100644
      --- a/deps/openssl/openssl/crypto/dh/dh_key.c
      +++ b/deps/openssl/openssl/crypto/dh/dh_key.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -190,7 +190,6 @@ static int dh_bn_mod_exp(const DH *dh, BIGNUM *r,
       static int dh_init(DH *dh)
       {
           dh->flags |= DH_FLAG_CACHE_MONT_P;
      -    ossl_ffc_params_init(&dh->params);
           dh->dirty_cnt++;
           return 1;
       }
      diff --git a/deps/openssl/openssl/crypto/dh/dh_lib.c b/deps/openssl/openssl/crypto/dh/dh_lib.c
      index 29cda5d7bfa845..5577413e1e0c07 100644
      --- a/deps/openssl/openssl/crypto/dh/dh_lib.c
      +++ b/deps/openssl/openssl/crypto/dh/dh_lib.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -116,6 +116,8 @@ static DH *dh_new_intern(ENGINE *engine, OSSL_LIB_CTX *libctx)
               goto err;
       #endif /* FIPS_MODULE */
       
      +    ossl_ffc_params_init(&ret->params);
      +
           if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
               ERR_raise(ERR_LIB_DH, ERR_R_INIT_FAIL);
               goto err;
      diff --git a/deps/openssl/openssl/crypto/dsa/dsa_check.c b/deps/openssl/openssl/crypto/dsa/dsa_check.c
      index 7ee914a477ecea..fb0e9129a2956b 100644
      --- a/deps/openssl/openssl/crypto/dsa/dsa_check.c
      +++ b/deps/openssl/openssl/crypto/dsa/dsa_check.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -39,7 +39,8 @@ int ossl_dsa_check_params(const DSA *dsa, int checktype, int *ret)
        */
       int ossl_dsa_check_pub_key(const DSA *dsa, const BIGNUM *pub_key, int *ret)
       {
      -    return ossl_ffc_validate_public_key(&dsa->params, pub_key, ret);
      +    return ossl_ffc_validate_public_key(&dsa->params, pub_key, ret)
      +           && *ret == 0;
       }
       
       /*
      @@ -49,7 +50,8 @@ int ossl_dsa_check_pub_key(const DSA *dsa, const BIGNUM *pub_key, int *ret)
        */
       int ossl_dsa_check_pub_key_partial(const DSA *dsa, const BIGNUM *pub_key, int *ret)
       {
      -    return ossl_ffc_validate_public_key_partial(&dsa->params, pub_key, ret);
      +    return ossl_ffc_validate_public_key_partial(&dsa->params, pub_key, ret)
      +           && *ret == 0;
       }
       
       int ossl_dsa_check_priv_key(const DSA *dsa, const BIGNUM *priv_key, int *ret)
      diff --git a/deps/openssl/openssl/crypto/dsa/dsa_lib.c b/deps/openssl/openssl/crypto/dsa/dsa_lib.c
      index ccc70165921764..2ae3f8e36b265f 100644
      --- a/deps/openssl/openssl/crypto/dsa/dsa_lib.c
      +++ b/deps/openssl/openssl/crypto/dsa/dsa_lib.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -176,6 +176,8 @@ static DSA *dsa_new_intern(ENGINE *engine, OSSL_LIB_CTX *libctx)
               goto err;
       #endif
       
      +    ossl_ffc_params_init(&ret->params);
      +
           if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
               ERR_raise(ERR_LIB_DSA, ERR_R_INIT_FAIL);
               goto err;
      diff --git a/deps/openssl/openssl/crypto/dsa/dsa_ossl.c b/deps/openssl/openssl/crypto/dsa/dsa_ossl.c
      index 62f7c70149f4fb..8fd66a950e3739 100644
      --- a/deps/openssl/openssl/crypto/dsa/dsa_ossl.c
      +++ b/deps/openssl/openssl/crypto/dsa/dsa_ossl.c
      @@ -441,7 +441,6 @@ static int dsa_do_verify(const unsigned char *dgst, int dgst_len,
       static int dsa_init(DSA *dsa)
       {
           dsa->flags |= DSA_FLAG_CACHE_MONT_P;
      -    ossl_ffc_params_init(&dsa->params);
           dsa->dirty_cnt++;
           return 1;
       }
      diff --git a/deps/openssl/openssl/crypto/encode_decode/decoder_lib.c b/deps/openssl/openssl/crypto/encode_decode/decoder_lib.c
      index e24d2c6cd588be..2e4b7ed60b9c1c 100644
      --- a/deps/openssl/openssl/crypto/encode_decode/decoder_lib.c
      +++ b/deps/openssl/openssl/crypto/encode_decode/decoder_lib.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -743,10 +743,11 @@ static int decoder_process(const OSSL_PARAM params[], void *arg)
                                  (void *)new_data.ctx, LEVEL, rv);
                   } OSSL_TRACE_END(DECODER);
       
      -            data->flag_construct_called = 1;
                   ok = (rv > 0);
      -            if (ok)
      +            if (ok) {
      +                data->flag_construct_called = 1;
                       goto end;
      +            }
               }
       
               /* The constructor didn't return success */
      diff --git a/deps/openssl/openssl/crypto/encode_decode/decoder_pkey.c b/deps/openssl/openssl/crypto/encode_decode/decoder_pkey.c
      index ed10bb1cee035a..ad5e2805319b57 100644
      --- a/deps/openssl/openssl/crypto/encode_decode/decoder_pkey.c
      +++ b/deps/openssl/openssl/crypto/encode_decode/decoder_pkey.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -150,7 +150,11 @@ static int decoder_construct_pkey(OSSL_DECODER_INSTANCE *decoder_inst,
       
                   import_data.keymgmt = keymgmt;
                   import_data.keydata = NULL;
      -            import_data.selection = data->selection;
      +            if (data->selection == 0)
      +                /* import/export functions do not tolerate 0 selection */
      +                import_data.selection = OSSL_KEYMGMT_SELECT_ALL;
      +            else
      +                import_data.selection = data->selection;
       
                   /*
                    * No need to check for errors here, the value of
      diff --git a/deps/openssl/openssl/crypto/engine/eng_lib.c b/deps/openssl/openssl/crypto/engine/eng_lib.c
      index dfd53a43319559..cfdb5a50f481da 100644
      --- a/deps/openssl/openssl/crypto/engine/eng_lib.c
      +++ b/deps/openssl/openssl/crypto/engine/eng_lib.c
      @@ -133,28 +133,34 @@ static ENGINE_CLEANUP_ITEM *int_cleanup_item(ENGINE_CLEANUP_CB *cb)
           return item;
       }
       
      -void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb)
      +int engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb)
       {
           ENGINE_CLEANUP_ITEM *item;
       
           if (!int_cleanup_check(1))
      -        return;
      +        return 0;
           item = int_cleanup_item(cb);
      -    if (item != NULL)
      -        if (sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0) <= 0)
      -            OPENSSL_free(item);
      +    if (item != NULL) {
      +        if (sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0))
      +            return 1;
      +        OPENSSL_free(item);
      +    }
      +    return 0;
       }
       
      -void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb)
      +int engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb)
       {
           ENGINE_CLEANUP_ITEM *item;
      +
           if (!int_cleanup_check(1))
      -        return;
      +        return 0;
           item = int_cleanup_item(cb);
           if (item != NULL) {
      -        if (sk_ENGINE_CLEANUP_ITEM_push(cleanup_stack, item) <= 0)
      -            OPENSSL_free(item);
      +        if (sk_ENGINE_CLEANUP_ITEM_push(cleanup_stack, item) > 0)
      +            return 1;
      +        OPENSSL_free(item);
           }
      +    return 0;
       }
       
       /* The API function that performs all cleanup */
      diff --git a/deps/openssl/openssl/crypto/engine/eng_list.c b/deps/openssl/openssl/crypto/engine/eng_list.c
      index 04c73c76286486..f2eed3b071746b 100644
      --- a/deps/openssl/openssl/crypto/engine/eng_list.c
      +++ b/deps/openssl/openssl/crypto/engine/eng_list.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2001-2023 The OpenSSL Project Authors. All Rights Reserved.
        * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
      @@ -78,12 +78,15 @@ static int engine_list_add(ENGINE *e)
                   ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR);
                   return 0;
               }
      -        engine_list_head = e;
      -        e->prev = NULL;
               /*
                * The first time the list allocates, we should register the cleanup.
                */
      -        engine_cleanup_add_last(engine_list_cleanup);
      +        if (!engine_cleanup_add_last(engine_list_cleanup)) {
      +            ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR);
      +            return 0;
      +        }
      +        engine_list_head = e;
      +        e->prev = NULL;
           } else {
               /* We are adding to the tail of an existing list. */
               if ((engine_list_tail == NULL) || (engine_list_tail->next != NULL)) {
      diff --git a/deps/openssl/openssl/crypto/engine/eng_local.h b/deps/openssl/openssl/crypto/engine/eng_local.h
      index 03a86299cf88b8..75bc9e6f1675b9 100644
      --- a/deps/openssl/openssl/crypto/engine/eng_local.h
      +++ b/deps/openssl/openssl/crypto/engine/eng_local.h
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2001-2023 The OpenSSL Project Authors. All Rights Reserved.
        * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
      @@ -46,8 +46,8 @@ typedef struct st_engine_cleanup_item {
           ENGINE_CLEANUP_CB *cb;
       } ENGINE_CLEANUP_ITEM;
       DEFINE_STACK_OF(ENGINE_CLEANUP_ITEM)
      -void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb);
      -void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb);
      +int engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb);
      +int engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb);
       
       /* We need stacks of ENGINEs for use in eng_table.c */
       DEFINE_STACK_OF(ENGINE)
      diff --git a/deps/openssl/openssl/crypto/engine/eng_pkey.c b/deps/openssl/openssl/crypto/engine/eng_pkey.c
      index 6e6d6df35b2b9a..f84fcde4601629 100644
      --- a/deps/openssl/openssl/crypto/engine/eng_pkey.c
      +++ b/deps/openssl/openssl/crypto/engine/eng_pkey.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2001-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -79,6 +79,48 @@ EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id,
               ERR_raise(ERR_LIB_ENGINE, ENGINE_R_FAILED_LOADING_PRIVATE_KEY);
               return NULL;
           }
      +    /* We enforce check for legacy key */
      +    switch (EVP_PKEY_get_id(pkey)) {
      +    case EVP_PKEY_RSA:
      +        {
      +        RSA *rsa = EVP_PKEY_get1_RSA(pkey);
      +        EVP_PKEY_set1_RSA(pkey, rsa);
      +        RSA_free(rsa);
      +        }
      +        break;
      +#  ifndef OPENSSL_NO_EC
      +    case EVP_PKEY_SM2:
      +    case EVP_PKEY_EC:
      +        {
      +        EC_KEY *ec = EVP_PKEY_get1_EC_KEY(pkey);
      +        EVP_PKEY_set1_EC_KEY(pkey, ec);
      +        EC_KEY_free(ec);
      +        }
      +        break;
      +#  endif
      +#  ifndef OPENSSL_NO_DSA
      +    case EVP_PKEY_DSA:
      +        {
      +        DSA *dsa = EVP_PKEY_get1_DSA(pkey);
      +        EVP_PKEY_set1_DSA(pkey, dsa);
      +        DSA_free(dsa);
      +        }
      +        break;
      +#endif
      +#  ifndef OPENSSL_NO_DH
      +    case EVP_PKEY_DH:
      +        {
      +        DH *dh = EVP_PKEY_get1_DH(pkey);
      +        EVP_PKEY_set1_DH(pkey, dh);
      +        DH_free(dh);
      +        }
      +        break;
      +#endif
      +    default:
      +        /*Do nothing */
      +        break;
      +    }
      +
           return pkey;
       }
       
      diff --git a/deps/openssl/openssl/crypto/engine/eng_table.c b/deps/openssl/openssl/crypto/engine/eng_table.c
      index a8209d9e71760b..9dc3144bbfd7b6 100644
      --- a/deps/openssl/openssl/crypto/engine/eng_table.c
      +++ b/deps/openssl/openssl/crypto/engine/eng_table.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2001-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -93,9 +93,12 @@ int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
               added = 1;
           if (!int_table_check(table, 1))
               goto end;
      -    if (added)
      -        /* The cleanup callback needs to be added */
      -        engine_cleanup_add_first(cleanup);
      +    /* The cleanup callback needs to be added */
      +    if (added && !engine_cleanup_add_first(cleanup)) {
      +        lh_ENGINE_PILE_free(&(*table)->piles);
      +        *table = NULL;
      +        goto end;
      +    }
           while (num_nids--) {
               tmplate.nid = *nids;
               fnd = lh_ENGINE_PILE_retrieve(&(*table)->piles, &tmplate);
      @@ -201,8 +204,10 @@ ENGINE *ossl_engine_table_select(ENGINE_TABLE **table, int nid,
           ENGINE_PILE tmplate, *fnd = NULL;
           int initres, loop = 0;
       
      +#ifndef OPENSSL_NO_AUTOLOAD_CONFIG
           /* Load the config before trying to check if engines are available */
           OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL);
      +#endif
       
           if (!(*table)) {
               OSSL_TRACE3(ENGINE_TABLE,
      diff --git a/deps/openssl/openssl/crypto/err/openssl.txt b/deps/openssl/openssl/crypto/err/openssl.txt
      index d3ac1b19063272..d62ee33ecc77fe 100644
      --- a/deps/openssl/openssl/crypto/err/openssl.txt
      +++ b/deps/openssl/openssl/crypto/err/openssl.txt
      @@ -375,6 +375,7 @@ CMS_R_UNSUPPORTED_KEY_ENCRYPTION_ALGORITHM:179:\
       CMS_R_UNSUPPORTED_LABEL_SOURCE:193:unsupported label source
       CMS_R_UNSUPPORTED_RECIPIENTINFO_TYPE:155:unsupported recipientinfo type
       CMS_R_UNSUPPORTED_RECIPIENT_TYPE:154:unsupported recipient type
      +CMS_R_UNSUPPORTED_SIGNATURE_ALGORITHM:195:unsupported signature algorithm
       CMS_R_UNSUPPORTED_TYPE:156:unsupported type
       CMS_R_UNWRAP_ERROR:157:unwrap error
       CMS_R_UNWRAP_FAILURE:180:unwrap failure
      diff --git a/deps/openssl/openssl/crypto/evp/ctrl_params_translate.c b/deps/openssl/openssl/crypto/evp/ctrl_params_translate.c
      index b28875037c7281..dcd53b43f92b9c 100644
      --- a/deps/openssl/openssl/crypto/evp/ctrl_params_translate.c
      +++ b/deps/openssl/openssl/crypto/evp/ctrl_params_translate.c
      @@ -1786,7 +1786,8 @@ static int get_rsa_payload_n(enum state state,
       {
           const BIGNUM *bn = NULL;
       
      -    if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA)
      +    if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA
      +        && EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS)
               return 0;
           bn = RSA_get0_n(EVP_PKEY_get0_RSA(ctx->p2));
       
      @@ -1799,7 +1800,8 @@ static int get_rsa_payload_e(enum state state,
       {
           const BIGNUM *bn = NULL;
       
      -    if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA)
      +    if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA
      +        && EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS)
               return 0;
           bn = RSA_get0_e(EVP_PKEY_get0_RSA(ctx->p2));
       
      @@ -1812,7 +1814,8 @@ static int get_rsa_payload_d(enum state state,
       {
           const BIGNUM *bn = NULL;
       
      -    if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA)
      +    if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA
      +        && EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS)
               return 0;
           bn = RSA_get0_d(EVP_PKEY_get0_RSA(ctx->p2));
       
      @@ -1912,7 +1915,8 @@ static int get_rsa_payload_coefficient(enum state state,
                                const struct translation_st *translation,      \
                                struct translation_ctx_st *ctx)                \
           {                                                                   \
      -        if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA)              \
      +        if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA               \
      +            && EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS)       \
                   return 0;                                                   \
               return get_rsa_payload_factor(state, translation, ctx, n - 1);  \
           }
      @@ -1923,7 +1927,8 @@ static int get_rsa_payload_coefficient(enum state state,
                                const struct translation_st *translation,      \
                                struct translation_ctx_st *ctx)                \
           {                                                                   \
      -        if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA)              \
      +        if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA               \
      +            && EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS)       \
                   return 0;                                                   \
               return get_rsa_payload_exponent(state, translation, ctx,        \
                                               n - 1);                         \
      @@ -1935,7 +1940,8 @@ static int get_rsa_payload_coefficient(enum state state,
                                const struct translation_st *translation,      \
                                struct translation_ctx_st *ctx)                \
           {                                                                   \
      -        if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA)              \
      +        if (EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA               \
      +            && EVP_PKEY_get_base_id(ctx->p2) != EVP_PKEY_RSA_PSS)       \
                   return 0;                                                   \
               return get_rsa_payload_coefficient(state, translation, ctx,     \
                                                  n - 1);                      \
      @@ -2271,10 +2277,10 @@ static const struct translation_st evp_pkey_ctx_translations[] = {
           { SET, EVP_PKEY_RSA, EVP_PKEY_RSA_PSS, EVP_PKEY_OP_KEYGEN,
             EVP_PKEY_CTRL_RSA_KEYGEN_BITS, "rsa_keygen_bits", NULL,
             OSSL_PKEY_PARAM_RSA_BITS, OSSL_PARAM_UNSIGNED_INTEGER, NULL },
      -    { SET, EVP_PKEY_RSA, 0, EVP_PKEY_OP_KEYGEN,
      +    { SET, EVP_PKEY_RSA, EVP_PKEY_RSA_PSS, EVP_PKEY_OP_KEYGEN,
             EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, "rsa_keygen_pubexp", NULL,
             OSSL_PKEY_PARAM_RSA_E, OSSL_PARAM_UNSIGNED_INTEGER, NULL },
      -    { SET, EVP_PKEY_RSA, 0, EVP_PKEY_OP_KEYGEN,
      +    { SET, EVP_PKEY_RSA, EVP_PKEY_RSA_PSS, EVP_PKEY_OP_KEYGEN,
             EVP_PKEY_CTRL_RSA_KEYGEN_PRIMES, "rsa_keygen_primes", NULL,
             OSSL_PKEY_PARAM_RSA_PRIMES, OSSL_PARAM_UNSIGNED_INTEGER, NULL },
       
      diff --git a/deps/openssl/openssl/crypto/evp/evp_enc.c b/deps/openssl/openssl/crypto/evp/evp_enc.c
      index b178d1086473f1..4e6f83e3d0a94a 100644
      --- a/deps/openssl/openssl/crypto/evp/evp_enc.c
      +++ b/deps/openssl/openssl/crypto/evp/evp_enc.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -192,7 +192,12 @@ static int evp_cipher_init_internal(EVP_CIPHER_CTX *ctx,
       #endif
           }
       
      -    if (cipher->prov != NULL) {
      +    if (!ossl_assert(cipher->prov != NULL)) {
      +        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
      +        return 0;
      +    }
      +
      +    if (cipher != ctx->fetched_cipher) {
               if (!EVP_CIPHER_up_ref((EVP_CIPHER *)cipher)) {
                   ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
                   return 0;
      @@ -218,6 +223,42 @@ static int evp_cipher_init_internal(EVP_CIPHER_CTX *ctx,
                   return 0;
           }
       
      +#ifndef FIPS_MODULE
      +    /*
      +     * Fix for CVE-2023-5363
      +     * Passing in a size as part of the init call takes effect late
      +     * so, force such to occur before the initialisation.
      +     *
      +     * The FIPS provider's internal library context is used in a manner
      +     * such that this is not an issue.
      +     */
      +    if (params != NULL) {
      +        OSSL_PARAM param_lens[3] = { OSSL_PARAM_END, OSSL_PARAM_END,
      +                                     OSSL_PARAM_END };
      +        OSSL_PARAM *q = param_lens;
      +        const OSSL_PARAM *p;
      +
      +        p = OSSL_PARAM_locate_const(params, OSSL_CIPHER_PARAM_KEYLEN); 
      +        if (p != NULL)
      +            memcpy(q++, p, sizeof(*q));
      +
      +        /*
      +         * Note that OSSL_CIPHER_PARAM_AEAD_IVLEN is a synomym for
      +         * OSSL_CIPHER_PARAM_IVLEN so both are covered here.
      +         */
      +        p = OSSL_PARAM_locate_const(params, OSSL_CIPHER_PARAM_IVLEN);
      +        if (p != NULL)
      +            memcpy(q++, p, sizeof(*q));
      +
      +        if (q != param_lens) {
      +            if (!EVP_CIPHER_CTX_set_params(ctx, param_lens)) {
      +                ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_LENGTH);
      +                return 0;
      +            }
      +        }
      +    }
      +#endif
      +
           if (enc) {
               if (ctx->cipher->einit == NULL) {
                   ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
      diff --git a/deps/openssl/openssl/crypto/evp/legacy_sha.c b/deps/openssl/openssl/crypto/evp/legacy_sha.c
      index 3859286eeb2046..ca9a3264978abe 100644
      --- a/deps/openssl/openssl/crypto/evp/legacy_sha.c
      +++ b/deps/openssl/openssl/crypto/evp/legacy_sha.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -71,7 +71,11 @@ static int sha1_int_ctrl(EVP_MD_CTX *ctx, int cmd, int p1, void *p2)
       
       static int shake_ctrl(EVP_MD_CTX *evp_ctx, int cmd, int p1, void *p2)
       {
      -    KECCAK1600_CTX *ctx = evp_ctx->md_data;
      +    KECCAK1600_CTX *ctx;
      +
      +    if (evp_ctx == NULL)
      +        return 0;
      +    ctx = evp_ctx->md_data;
       
           switch (cmd) {
           case EVP_MD_CTRL_XOF_LEN:
      diff --git a/deps/openssl/openssl/crypto/evp/p_lib.c b/deps/openssl/openssl/crypto/evp/p_lib.c
      index aa6ec31dab6e9e..04b148a912187e 100644
      --- a/deps/openssl/openssl/crypto/evp/p_lib.c
      +++ b/deps/openssl/openssl/crypto/evp/p_lib.c
      @@ -717,6 +717,7 @@ static void detect_foreign_key(EVP_PKEY *pkey)
       {
           switch (pkey->type) {
           case EVP_PKEY_RSA:
      +    case EVP_PKEY_RSA_PSS:
               pkey->foreign = pkey->pkey.rsa != NULL
                               && ossl_rsa_is_foreign(pkey->pkey.rsa);
               break;
      @@ -1075,6 +1076,7 @@ int EVP_PKEY_can_sign(const EVP_PKEY *pkey)
           if (pkey->keymgmt == NULL) {
               switch (EVP_PKEY_get_base_id(pkey)) {
               case EVP_PKEY_RSA:
      +        case EVP_PKEY_RSA_PSS:
                   return 1;
       # ifndef OPENSSL_NO_DSA
               case EVP_PKEY_DSA:
      @@ -1199,7 +1201,7 @@ int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
       int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
                                  int indent, ASN1_PCTX *pctx)
       {
      -    return print_pkey(pkey, out, indent, EVP_PKEY_KEYPAIR, NULL,
      +    return print_pkey(pkey, out, indent, EVP_PKEY_PRIVATE_KEY, NULL,
                             (pkey->ameth != NULL ? pkey->ameth->priv_print : NULL),
                             pctx);
       }
      diff --git a/deps/openssl/openssl/crypto/evp/pmeth_lib.c b/deps/openssl/openssl/crypto/evp/pmeth_lib.c
      index ce6e1a1ccbd577..ba1971ce461d57 100644
      --- a/deps/openssl/openssl/crypto/evp/pmeth_lib.c
      +++ b/deps/openssl/openssl/crypto/evp/pmeth_lib.c
      @@ -251,10 +251,11 @@ static EVP_PKEY_CTX *int_ctx_new(OSSL_LIB_CTX *libctx,
            */
           if (e != NULL)
               pmeth = ENGINE_get_pkey_meth(e, id);
      -    else if (pkey != NULL && pkey->foreign)
      +    else
      +# endif /* OPENSSL_NO_ENGINE */
      +    if (pkey != NULL && pkey->foreign)
               pmeth = EVP_PKEY_meth_find(id);
           else
      -# endif
               app_pmeth = pmeth = evp_pkey_meth_find_added_by_application(id);
       
           /* END legacy */
      diff --git a/deps/openssl/openssl/crypto/ex_data.c b/deps/openssl/openssl/crypto/ex_data.c
      index 40223f06e4ecb6..13b9288994569c 100644
      --- a/deps/openssl/openssl/crypto/ex_data.c
      +++ b/deps/openssl/openssl/crypto/ex_data.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -163,6 +163,8 @@ int ossl_crypto_get_ex_new_index_ex(OSSL_LIB_CTX *ctx, int class_index,
                * "app_data" routines use ex_data index zero.  See RT 3710. */
               if (ip->meth == NULL
                   || !sk_EX_CALLBACK_push(ip->meth, NULL)) {
      +            sk_EX_CALLBACK_free(ip->meth);
      +            ip->meth = NULL;
                   ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
                   goto err;
               }
      diff --git a/deps/openssl/openssl/crypto/ffc/ffc_key_validate.c b/deps/openssl/openssl/crypto/ffc/ffc_key_validate.c
      index 342789621d6df1..a4a2a58e9a7fd9 100644
      --- a/deps/openssl/openssl/crypto/ffc/ffc_key_validate.c
      +++ b/deps/openssl/openssl/crypto/ffc/ffc_key_validate.c
      @@ -26,7 +26,7 @@ int ossl_ffc_validate_public_key_partial(const FFC_PARAMS *params,
           *ret = 0;
           if (params == NULL || pub_key == NULL || params->p == NULL) {
               *ret = FFC_ERROR_PASSED_NULL_PARAM;
      -        return 0;
      +        return 1;
           }
       
           ctx = BN_CTX_new_ex(NULL);
      @@ -39,18 +39,14 @@ int ossl_ffc_validate_public_key_partial(const FFC_PARAMS *params,
           if (tmp == NULL
               || !BN_set_word(tmp, 1))
               goto err;
      -    if (BN_cmp(pub_key, tmp) <= 0) {
      +    if (BN_cmp(pub_key, tmp) <= 0)
               *ret |= FFC_ERROR_PUBKEY_TOO_SMALL;
      -        goto err;
      -    }
           /* Step(1): Verify pub_key <=  p-2 */
           if (BN_copy(tmp, params->p) == NULL
               || !BN_sub_word(tmp, 1))
               goto err;
      -    if (BN_cmp(pub_key, tmp) >= 0) {
      +    if (BN_cmp(pub_key, tmp) >= 0)
               *ret |= FFC_ERROR_PUBKEY_TOO_LARGE;
      -        goto err;
      -    }
           ok = 1;
        err:
           if (ctx != NULL) {
      @@ -73,7 +69,7 @@ int ossl_ffc_validate_public_key(const FFC_PARAMS *params,
           if (!ossl_ffc_validate_public_key_partial(params, pub_key, ret))
               return 0;
       
      -    if (params->q != NULL) {
      +    if (*ret == 0 && params->q != NULL) {
               ctx = BN_CTX_new_ex(NULL);
               if (ctx == NULL)
                   goto err;
      @@ -84,10 +80,8 @@ int ossl_ffc_validate_public_key(const FFC_PARAMS *params,
               if (tmp == NULL
                   || !BN_mod_exp(tmp, pub_key, params->q, params->p, ctx))
                   goto err;
      -        if (!BN_is_one(tmp)) {
      +        if (!BN_is_one(tmp))
                   *ret |= FFC_ERROR_PUBKEY_INVALID;
      -            goto err;
      -        }
           }
       
           ok = 1;
      diff --git a/deps/openssl/openssl/crypto/http/http_client.c b/deps/openssl/openssl/crypto/http/http_client.c
      index ee41c03103e5fc..e3ccc6c4cc2fdd 100644
      --- a/deps/openssl/openssl/crypto/http/http_client.c
      +++ b/deps/openssl/openssl/crypto/http/http_client.c
      @@ -164,7 +164,8 @@ void OSSL_HTTP_REQ_CTX_set_max_response_length(OSSL_HTTP_REQ_CTX *rctx,
       
       /*
        * Create request line using |rctx| and |path| (or "/" in case |path| is NULL).
      - * Server name (and port) must be given if and only if plain HTTP proxy is used.
      + * Server name (and optional port) must be given if and only if
      + * a plain HTTP proxy is used and |path| does not begin with 'http://'.
        */
       int OSSL_HTTP_REQ_CTX_set_request_line(OSSL_HTTP_REQ_CTX *rctx, int method_POST,
                                              const char *server, const char *port,
      @@ -193,11 +194,17 @@ int OSSL_HTTP_REQ_CTX_set_request_line(OSSL_HTTP_REQ_CTX *rctx, int method_POST,
                   return 0;
           }
       
      -    /* Make sure path includes a forward slash */
      -    if (path == NULL)
      +    /* Make sure path includes a forward slash (abs_path) */
      +    if (path == NULL)  {
               path = "/";
      -    if (path[0] != '/' && BIO_printf(rctx->mem, "/") <= 0)
      +    } else if (HAS_PREFIX(path, "http://")) { /* absoluteURI for proxy use */
      +        if (server != NULL) {
      +            ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_INVALID_ARGUMENT);
      +            return 0;
      +        }
      +    } else if (path[0] != '/' && BIO_printf(rctx->mem, "/") <= 0) {
               return 0;
      +    }
           /*
            * Add (the rest of) the path and the HTTP version,
            * which is fixed to 1.0 for straightforward implementation of keep-alive
      diff --git a/deps/openssl/openssl/crypto/lhash/lhash.c b/deps/openssl/openssl/crypto/lhash/lhash.c
      index 1cd988f01fc76a..a01cfa725e38c7 100644
      --- a/deps/openssl/openssl/crypto/lhash/lhash.c
      +++ b/deps/openssl/openssl/crypto/lhash/lhash.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -266,12 +266,12 @@ static void contract(OPENSSL_LHASH *lh)
               if (n == NULL) {
                   /* fputs("realloc error in lhash",stderr); */
                   lh->error++;
      -            return;
      +        } else {
      +            lh->b = n;
               }
               lh->num_alloc_nodes /= 2;
               lh->pmax /= 2;
               lh->p = lh->pmax - 1;
      -        lh->b = n;
           } else
               lh->p--;
       
      diff --git a/deps/openssl/openssl/crypto/mem.c b/deps/openssl/openssl/crypto/mem.c
      index f6cdcf5a423ec7..34128616e2700e 100644
      --- a/deps/openssl/openssl/crypto/mem.c
      +++ b/deps/openssl/openssl/crypto/mem.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -100,6 +100,9 @@ void CRYPTO_get_alloc_counts(int *mcount, int *rcount, int *fcount)
        *    or    100;100@25;0
        * This means 100 mallocs succeed, then next 100 fail 25% of the time, and
        * all remaining (count is zero) succeed.
      + * The failure percentge can have 2 digits after the comma.  For example:
      + *          0@0.01
      + * This means 0.01% of all allocations will fail.
        */
       static void parseit(void)
       {
      @@ -112,26 +115,27 @@ static void parseit(void)
           /* Get the count (atol will stop at the @ if there), and percentage */
           md_count = atol(md_failstring);
           atsign = strchr(md_failstring, '@');
      -    md_fail_percent = atsign == NULL ? 0 : atoi(atsign + 1);
      +    md_fail_percent = atsign == NULL ? 0 : (int)(atof(atsign + 1) * 100 + 0.5);
       
           if (semi != NULL)
               md_failstring = semi;
       }
       
       /*
      - * Windows doesn't have random(), but it has rand()
      + * Windows doesn't have random() and srandom(), but it has rand() and srand().
        * Some rand() implementations aren't good, but we're not
        * dealing with secure randomness here.
        */
       # ifdef _WIN32
       #  define random() rand()
      +#  define srandom(seed) srand(seed)
       # endif
       /*
        * See if the current malloc should fail.
        */
       static int shouldfail(void)
       {
      -    int roll = (int)(random() % 100);
      +    int roll = (int)(random() % 10000);
           int shoulditfail = roll < md_fail_percent;
       # ifndef _WIN32
       /* suppressed on Windows as POSIX-like file descriptors are non-inheritable */
      @@ -165,6 +169,8 @@ void ossl_malloc_setup_failures(void)
               parseit();
           if ((cp = getenv("OPENSSL_MALLOC_FD")) != NULL)
               md_tracefd = atoi(cp);
      +    if ((cp = getenv("OPENSSL_MALLOC_SEED")) != NULL)
      +        srandom(atoi(cp));
       }
       #endif
       
      @@ -195,7 +201,6 @@ void *CRYPTO_zalloc(size_t num, const char *file, int line)
           void *ret;
       
           ret = CRYPTO_malloc(num, file, line);
      -    FAILTEST();
           if (ret != NULL)
               memset(ret, 0, num);
       
      @@ -208,7 +213,6 @@ void *CRYPTO_realloc(void *str, size_t num, const char *file, int line)
           if (realloc_impl != CRYPTO_realloc)
               return realloc_impl(str, num, file, line);
       
      -    FAILTEST();
           if (str == NULL)
               return CRYPTO_malloc(num, file, line);
       
      @@ -217,6 +221,7 @@ void *CRYPTO_realloc(void *str, size_t num, const char *file, int line)
               return NULL;
           }
       
      +    FAILTEST();
           return realloc(str, num);
       }
       
      diff --git a/deps/openssl/openssl/crypto/modes/asm/ghashv8-armx.pl b/deps/openssl/openssl/crypto/modes/asm/ghashv8-armx.pl
      index b1d35d25b5b19f..b3d94041729e6f 100644
      --- a/deps/openssl/openssl/crypto/modes/asm/ghashv8-armx.pl
      +++ b/deps/openssl/openssl/crypto/modes/asm/ghashv8-armx.pl
      @@ -1,5 +1,5 @@
       #! /usr/bin/env perl
      -# Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2014-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -744,6 +744,9 @@
       	s/\.[uisp]?64//o and s/\.16b/\.2d/go;
       	s/\.[42]([sd])\[([0-3])\]/\.$1\[$2\]/o;
       
      +	# Switch preprocessor checks to aarch64 versions.
      +	s/__ARME([BL])__/__AARCH64E$1__/go;
      +
       	print $_,"\n";
           }
       } else {				######## 32-bit code
      diff --git a/deps/openssl/openssl/crypto/objects/obj_dat.c b/deps/openssl/openssl/crypto/objects/obj_dat.c
      index 1a52000e6e9d64..85d30eb58ae013 100644
      --- a/deps/openssl/openssl/crypto/objects/obj_dat.c
      +++ b/deps/openssl/openssl/crypto/objects/obj_dat.c
      @@ -642,13 +642,14 @@ const void *OBJ_bsearch_ex_(const void *key, const void *base, int num,
           if (p == NULL) {
               const char *base_ = base;
               int l, h, i = 0, c = 0;
      +        char *p1;
       
               for (i = 0; i < num; ++i) {
      -            p = &(base_[i * size]);
      -            c = (*cmp) (key, p);
      +            p1 = &(base_[i * size]);
      +            c = (*cmp) (key, p1);
                   if (c == 0
                       || (c < 0 && (flags & OBJ_BSEARCH_VALUE_ON_NOMATCH)))
      -                return p;
      +                return p1;
               }
           }
       #endif
      diff --git a/deps/openssl/openssl/crypto/param_build_set.c b/deps/openssl/openssl/crypto/param_build_set.c
      index 8b570ded96ebb4..5de06cc7ed685c 100644
      --- a/deps/openssl/openssl/crypto/param_build_set.c
      +++ b/deps/openssl/openssl/crypto/param_build_set.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -99,21 +99,22 @@ int ossl_param_build_set_multi_key_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *params,
       {
           int i, sz = sk_BIGNUM_const_num(stk);
           OSSL_PARAM *p;
      -
      +    const BIGNUM *bn;
       
           if (bld != NULL) {
               for (i = 0; i < sz && names[i] != NULL; ++i) {
      -            if (!OSSL_PARAM_BLD_push_BN(bld, names[i],
      -                                        sk_BIGNUM_const_value(stk, i)))
      +            bn = sk_BIGNUM_const_value(stk, i);
      +            if (bn != NULL && !OSSL_PARAM_BLD_push_BN(bld, names[i], bn))
                       return 0;
               }
               return 1;
           }
       
           for (i = 0; i < sz && names[i] != NULL; ++i) {
      +        bn = sk_BIGNUM_const_value(stk, i);
               p = OSSL_PARAM_locate(params, names[i]);
      -        if (p != NULL) {
      -            if (!OSSL_PARAM_set_BN(p, sk_BIGNUM_const_value(stk, i)))
      +        if (p != NULL && bn != NULL) {
      +            if (!OSSL_PARAM_set_BN(p, bn))
                       return 0;
               }
           }
      diff --git a/deps/openssl/openssl/crypto/pem/pem_pkey.c b/deps/openssl/openssl/crypto/pem/pem_pkey.c
      index 3e76852c67a44a..4deee46ce5506f 100644
      --- a/deps/openssl/openssl/crypto/pem/pem_pkey.c
      +++ b/deps/openssl/openssl/crypto/pem/pem_pkey.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -366,10 +366,19 @@ int PEM_write_bio_PrivateKey_traditional(BIO *bp, const EVP_PKEY *x,
           return ret;
       }
       
      +static int no_password_cb(char *buf, int num, int rwflag, void *userdata)
      +{
      +    return -1;
      +}
      +
       EVP_PKEY *PEM_read_bio_Parameters_ex(BIO *bp, EVP_PKEY **x,
                                            OSSL_LIB_CTX *libctx, const char *propq)
       {
      -    return pem_read_bio_key(bp, x, NULL, NULL, libctx, propq,
      +    /*
      +     * PEM_read_bio_Parameters(_ex) should never ask for a password. Any attempt
      +     * to get a password just fails.
      +     */
      +    return pem_read_bio_key(bp, x, no_password_cb, NULL, libctx, propq,
                                   EVP_PKEY_KEY_PARAMETERS);
       }
       
      diff --git a/deps/openssl/openssl/crypto/perlasm/arm-xlate.pl b/deps/openssl/openssl/crypto/perlasm/arm-xlate.pl
      index a90885905c0fdb..38d570c79017c2 100755
      --- a/deps/openssl/openssl/crypto/perlasm/arm-xlate.pl
      +++ b/deps/openssl/openssl/crypto/perlasm/arm-xlate.pl
      @@ -1,5 +1,5 @@
       #! /usr/bin/env perl
      -# Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2015-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -159,9 +159,8 @@ sub expand_line {
           }
       
           {
      -	$line =~ s|(^[\.\w]+)\:\s*||;
      -	my $label = $1;
      -	if ($label) {
      +	if ($line =~ s|(^[\.\w]+)\:\s*||) {
      +	    my $label = $1;
       	    printf "%s:",($GLOBALS{$label} or $label);
       	}
           }
      diff --git a/deps/openssl/openssl/crypto/pkcs12/p12_crt.c b/deps/openssl/openssl/crypto/pkcs12/p12_crt.c
      index 00c71297463d9e..26a444f868b028 100644
      --- a/deps/openssl/openssl/crypto/pkcs12/p12_crt.c
      +++ b/deps/openssl/openssl/crypto/pkcs12/p12_crt.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -14,6 +14,12 @@
       
       static int pkcs12_add_bag(STACK_OF(PKCS12_SAFEBAG) **pbags,
                                 PKCS12_SAFEBAG *bag);
      +static PKCS12_SAFEBAG *pkcs12_add_cert_bag(STACK_OF(PKCS12_SAFEBAG) **pbags,
      +                                           X509 *cert,
      +                                           const char *name,
      +                                           int namelen,
      +                                           unsigned char *keyid,
      +                                           int keyidlen);
       
       static int copy_bag_attr(PKCS12_SAFEBAG *bag, EVP_PKEY *pkey, int nid)
       {
      @@ -40,6 +46,9 @@ PKCS12 *PKCS12_create_ex(const char *pass, const char *name, EVP_PKEY *pkey,
           int i;
           unsigned char keyid[EVP_MAX_MD_SIZE];
           unsigned int keyidlen = 0;
      +    int namelen = -1;
      +    unsigned char *pkeyid = NULL;
      +    int pkeyidlen = -1;
       
           /* Set defaults */
           if (nid_cert == NID_undef)
      @@ -64,11 +73,16 @@ PKCS12 *PKCS12_create_ex(const char *pass, const char *name, EVP_PKEY *pkey,
           }
       
           if (cert) {
      -        bag = PKCS12_add_cert(&bags, cert);
      -        if (name && !PKCS12_add_friendlyname(bag, name, -1))
      -            goto err;
      -        if (keyidlen && !PKCS12_add_localkeyid(bag, keyid, keyidlen))
      -            goto err;
      +        if (name == NULL)
      +            name = (char *)X509_alias_get0(cert, &namelen);
      +        if (keyidlen > 0) {
      +            pkeyid = keyid;
      +            pkeyidlen = keyidlen;
      +        } else {
      +            pkeyid = X509_keyid_get0(cert, &pkeyidlen);
      +        }
      +
      +        bag = pkcs12_add_cert_bag(&bags, cert, name, namelen, pkeyid, pkeyidlen);
           }
       
           /* Add all other certificates */
      @@ -139,30 +153,23 @@ PKCS12 *PKCS12_create(const char *pass, const char *name, EVP_PKEY *pkey, X509 *
                                   iter, mac_iter, keytype, NULL, NULL);
       }
       
      -PKCS12_SAFEBAG *PKCS12_add_cert(STACK_OF(PKCS12_SAFEBAG) **pbags, X509 *cert)
      +static PKCS12_SAFEBAG *pkcs12_add_cert_bag(STACK_OF(PKCS12_SAFEBAG) **pbags,
      +                                           X509 *cert,
      +                                           const char *name,
      +                                           int namelen,
      +                                           unsigned char *keyid,
      +                                           int keyidlen)
       {
           PKCS12_SAFEBAG *bag = NULL;
      -    char *name;
      -    int namelen = -1;
      -    unsigned char *keyid;
      -    int keyidlen = -1;
       
           /* Add user certificate */
           if ((bag = PKCS12_SAFEBAG_create_cert(cert)) == NULL)
               goto err;
       
      -    /*
      -     * Use friendlyName and localKeyID in certificate. (if present)
      -     */
      -
      -    name = (char *)X509_alias_get0(cert, &namelen);
      -
      -    if (name && !PKCS12_add_friendlyname(bag, name, namelen))
      +    if (name != NULL && !PKCS12_add_friendlyname(bag, name, namelen))
               goto err;
       
      -    keyid = X509_keyid_get0(cert, &keyidlen);
      -
      -    if (keyid && !PKCS12_add_localkeyid(bag, keyid, keyidlen))
      +    if (keyid != NULL && !PKCS12_add_localkeyid(bag, keyid, keyidlen))
               goto err;
       
           if (!pkcs12_add_bag(pbags, bag))
      @@ -173,7 +180,22 @@ PKCS12_SAFEBAG *PKCS12_add_cert(STACK_OF(PKCS12_SAFEBAG) **pbags, X509 *cert)
        err:
           PKCS12_SAFEBAG_free(bag);
           return NULL;
      +}
      +
      +PKCS12_SAFEBAG *PKCS12_add_cert(STACK_OF(PKCS12_SAFEBAG) **pbags, X509 *cert)
      +{
      +    char *name = NULL;
      +    int namelen = -1;
      +    unsigned char *keyid = NULL;
      +    int keyidlen = -1;
      +
      +    /*
      +     * Use friendlyName and localKeyID in certificate. (if present)
      +     */
      +    name = (char *)X509_alias_get0(cert, &namelen);
      +    keyid = X509_keyid_get0(cert, &keyidlen);
       
      +    return pkcs12_add_cert_bag(pbags, cert, name, namelen, keyid, keyidlen);
       }
       
       PKCS12_SAFEBAG *PKCS12_add_key_ex(STACK_OF(PKCS12_SAFEBAG) **pbags,
      diff --git a/deps/openssl/openssl/crypto/poly1305/asm/poly1305-armv8.pl b/deps/openssl/openssl/crypto/poly1305/asm/poly1305-armv8.pl
      index 113a2151b6fa14..dc39f4053fe6a9 100755
      --- a/deps/openssl/openssl/crypto/poly1305/asm/poly1305-armv8.pl
      +++ b/deps/openssl/openssl/crypto/poly1305/asm/poly1305-armv8.pl
      @@ -1,5 +1,5 @@
       #! /usr/bin/env perl
      -# Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2016-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -85,7 +85,7 @@
       	ldp	$r0,$r1,[$inp]		// load key
       	mov	$s1,#0xfffffffc0fffffff
       	movk	$s1,#0x0fff,lsl#48
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	$r0,$r0			// flip bytes
       	rev	$r1,$r1
       #endif
      @@ -132,7 +132,7 @@
       .Loop:
       	ldp	$t0,$t1,[$inp],#16	// load input
       	sub	$len,$len,#16
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	$t0,$t0
       	rev	$t1,$t1
       #endif
      @@ -197,13 +197,13 @@
       	csel	$h0,$h0,$d0,eq
       	csel	$h1,$h1,$d1,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	$t0,$t0,#32		// flip nonce words
       	ror	$t1,$t1,#32
       #endif
       	adds	$h0,$h0,$t0		// accumulate nonce
       	adc	$h1,$h1,$t1
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	$h0,$h0			// flip output bytes
       	rev	$h1,$h1
       #endif
      @@ -335,7 +335,7 @@
       	adcs	$h1,$h1,xzr
       	adc	$h2,$h2,xzr
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	$d0,$d0
       	rev	$d1,$d1
       #endif
      @@ -381,7 +381,7 @@
       	ldp	$d0,$d1,[$inp],#16	// load input
       	sub	$len,$len,#16
       	add	$s1,$r1,$r1,lsr#2	// s1 = r1 + (r1 >> 2)
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	$d0,$d0
       	rev	$d1,$d1
       #endif
      @@ -466,7 +466,7 @@
       	lsl	$padbit,$padbit,#24
       	add	x15,$ctx,#48
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -502,7 +502,7 @@
       	ld1	{$S2,$R3,$S3,$R4},[x15],#64
       	ld1	{$S4},[x15]
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	x8,x8
       	rev	x12,x12
       	rev	x9,x9
      @@ -563,7 +563,7 @@
       	umull	$ACC1,$IN23_0,${R1}[2]
       	 ldp	x9,x13,[$in2],#48
       	umull	$ACC0,$IN23_0,${R0}[2]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	 rev	x8,x8
       	 rev	x12,x12
       	 rev	x9,x9
      @@ -628,7 +628,7 @@
       	umlal	$ACC4,$IN01_2,${R2}[0]
       	umlal	$ACC1,$IN01_2,${S4}[0]
       	umlal	$ACC2,$IN01_2,${R0}[0]
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	 rev	x8,x8
       	 rev	x12,x12
       	 rev	x9,x9
      @@ -909,13 +909,13 @@
       	csel	$h0,$h0,$d0,eq
       	csel	$h1,$h1,$d1,eq
       
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	ror	$t0,$t0,#32		// flip nonce words
       	ror	$t1,$t1,#32
       #endif
       	adds	$h0,$h0,$t0		// accumulate nonce
       	adc	$h1,$h1,$t1
      -#ifdef	__ARMEB__
      +#ifdef	__AARCH64EB__
       	rev	$h0,$h0			// flip output bytes
       	rev	$h1,$h1
       #endif
      diff --git a/deps/openssl/openssl/crypto/poly1305/asm/poly1305-x86_64.pl b/deps/openssl/openssl/crypto/poly1305/asm/poly1305-x86_64.pl
      index fa9bfb7a7b814c..4cddca1c514c04 100755
      --- a/deps/openssl/openssl/crypto/poly1305/asm/poly1305-x86_64.pl
      +++ b/deps/openssl/openssl/crypto/poly1305/asm/poly1305-x86_64.pl
      @@ -1,5 +1,5 @@
       #! /usr/bin/env perl
      -# Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2016-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -195,7 +195,7 @@ sub poly1305_iteration {
       	bt	\$`5+32`,%r9		# AVX2?
       	cmovc	%rax,%r10
       ___
      -$code.=<<___	if ($avx>3);
      +$code.=<<___	if ($avx>3 && !$win64);
       	mov	\$`(1<<31|1<<21|1<<16)`,%rax
       	shr	\$32,%r9
       	and	%rax,%r9
      @@ -2724,7 +2724,7 @@ sub poly1305_iteration {
       .cfi_endproc
       .size	poly1305_blocks_avx512,.-poly1305_blocks_avx512
       ___
      -if ($avx>3) {
      +if ($avx>3 && !$win64) {
       ########################################################################
       # VPMADD52 version using 2^44 radix.
       #
      diff --git a/deps/openssl/openssl/crypto/property/property.c b/deps/openssl/openssl/crypto/property/property.c
      index b97861d4862fa8..602db0f3ff54e9 100644
      --- a/deps/openssl/openssl/crypto/property/property.c
      +++ b/deps/openssl/openssl/crypto/property/property.c
      @@ -129,11 +129,11 @@ static const OSSL_LIB_CTX_METHOD ossl_ctx_global_properties_method = {
       };
       
       OSSL_PROPERTY_LIST **ossl_ctx_global_properties(OSSL_LIB_CTX *libctx,
      -                                                int loadconfig)
      +                                                ossl_unused int loadconfig)
       {
           OSSL_GLOBAL_PROPERTIES *globp;
       
      -#ifndef FIPS_MODULE
      +#if !defined(FIPS_MODULE) && !defined(OPENSSL_NO_AUTOLOAD_CONFIG)
           if (loadconfig && !OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL))
               return NULL;
       #endif
      @@ -513,7 +513,7 @@ int ossl_method_store_fetch(OSSL_METHOD_STORE *store,
           if (nid <= 0 || method == NULL || store == NULL)
               return 0;
       
      -#ifndef FIPS_MODULE
      +#if !defined(FIPS_MODULE) && !defined(OPENSSL_NO_AUTOLOAD_CONFIG)
           if (ossl_lib_ctx_is_default(store->ctx)
                   && !OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL))
               return 0;
      diff --git a/deps/openssl/openssl/crypto/property/property_parse.c b/deps/openssl/openssl/crypto/property/property_parse.c
      index ca2bd33381bfdd..e3a4998df11fcb 100644
      --- a/deps/openssl/openssl/crypto/property/property_parse.c
      +++ b/deps/openssl/openssl/crypto/property/property_parse.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
        * Copyright (c) 2019, Oracle and/or its affiliates.  All rights reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
      @@ -588,15 +588,38 @@ static void put_char(char ch, char **buf, size_t *remain, size_t *needed)
       
       static void put_str(const char *str, char **buf, size_t *remain, size_t *needed)
       {
      -    size_t olen, len;
      +    size_t olen, len, i;
      +    char quote = '\0';
      +    int quotes;
       
           len = olen = strlen(str);
           *needed += len;
       
      -    if (*remain == 0)
      +    /*
      +     * Check to see if we need quotes or not.
      +     * Characters that are legal in a PropertyName don't need quoting.
      +     * We simply assume all others require quotes.
      +     */
      +    for (i = 0; i < len; i++)
      +        if (!ossl_isalnum(str[i]) && str[i] != '.' && str[i] != '_') {
      +            /* Default to single quotes ... */
      +            if (quote == '\0')
      +                quote = '\'';
      +            /* ... but use double quotes if a single is present */
      +            if (str[i] == '\'')
      +                quote = '"';
      +        }
      +
      +    quotes = quote != '\0';
      +    if (*remain == 0) {
      +        *needed += 2 * quotes;
               return;
      +    }
       
      -    if (*remain < len + 1)
      +    if (quotes)
      +        put_char(quote, buf, remain, needed);
      +
      +    if (*remain < len + 1 + quotes)
               len = *remain - 1;
       
           if (len > 0) {
      @@ -605,6 +628,9 @@ static void put_str(const char *str, char **buf, size_t *remain, size_t *needed)
               *remain -= len;
           }
       
      +    if (quotes)
      +        put_char(quote, buf, remain, needed);
      +
           if (len < olen && *remain == 1) {
               **buf = '\0';
               ++*buf;
      diff --git a/deps/openssl/openssl/crypto/provider_core.c b/deps/openssl/openssl/crypto/provider_core.c
      index 7a12328121623e..92cce32c5bbf88 100644
      --- a/deps/openssl/openssl/crypto/provider_core.c
      +++ b/deps/openssl/openssl/crypto/provider_core.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -408,7 +408,7 @@ int ossl_provider_info_add_to_store(OSSL_LIB_CTX *libctx,
       }
       
       OSSL_PROVIDER *ossl_provider_find(OSSL_LIB_CTX *libctx, const char *name,
      -                                  int noconfig)
      +                                  ossl_unused int noconfig)
       {
           struct provider_store_st *store = NULL;
           OSSL_PROVIDER *prov = NULL;
      @@ -417,7 +417,7 @@ OSSL_PROVIDER *ossl_provider_find(OSSL_LIB_CTX *libctx, const char *name,
               OSSL_PROVIDER tmpl = { 0, };
               int i;
       
      -#ifndef FIPS_MODULE
      +#if !defined(FIPS_MODULE) && !defined(OPENSSL_NO_AUTOLOAD_CONFIG)
               /*
                * Make sure any providers are loaded from config before we try to find
                * them.
      @@ -1356,7 +1356,7 @@ int ossl_provider_doall_activated(OSSL_LIB_CTX *ctx,
           struct provider_store_st *store = get_provider_store(ctx);
           STACK_OF(OSSL_PROVIDER) *provs = NULL;
       
      -#ifndef FIPS_MODULE
      +#if !defined(FIPS_MODULE) && !defined(OPENSSL_NO_AUTOLOAD_CONFIG)
           /*
            * Make sure any providers are loaded from config before we try to use
            * them.
      diff --git a/deps/openssl/openssl/crypto/rsa/rsa_ameth.c b/deps/openssl/openssl/crypto/rsa/rsa_ameth.c
      index e819780e7d9439..07734077e3228a 100644
      --- a/deps/openssl/openssl/crypto/rsa/rsa_ameth.c
      +++ b/deps/openssl/openssl/crypto/rsa/rsa_ameth.c
      @@ -60,13 +60,16 @@ static int rsa_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
           if (!rsa_param_encode(pkey, &str, &strtype))
               return 0;
           penclen = i2d_RSAPublicKey(pkey->pkey.rsa, &penc);
      -    if (penclen <= 0)
      +    if (penclen <= 0) {
      +        ASN1_STRING_free(str);
               return 0;
      +    }
           if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(pkey->ameth->pkey_id),
                                      strtype, str, penc, penclen))
               return 1;
       
           OPENSSL_free(penc);
      +    ASN1_STRING_free(str);
           return 0;
       }
       
      diff --git a/deps/openssl/openssl/crypto/rsa/rsa_backend.c b/deps/openssl/openssl/crypto/rsa/rsa_backend.c
      index 58187fa2ef59df..f9d1cb361d7704 100644
      --- a/deps/openssl/openssl/crypto/rsa/rsa_backend.c
      +++ b/deps/openssl/openssl/crypto/rsa/rsa_backend.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -141,18 +141,6 @@ int ossl_rsa_todata(RSA *rsa, OSSL_PARAM_BLD *bld, OSSL_PARAM params[],
       
           /* Check private key data integrity */
           if (include_private && rsa_d != NULL) {
      -        int numprimes = sk_BIGNUM_const_num(factors);
      -        int numexps = sk_BIGNUM_const_num(exps);
      -        int numcoeffs = sk_BIGNUM_const_num(coeffs);
      -
      -        /*
      -         * It's permissible to have zero primes, i.e. no CRT params.
      -         * Otherwise, there must be at least two, as many exponents,
      -         * and one coefficient less.
      -         */
      -        if (numprimes != 0
      -            && (numprimes < 2 || numexps < 2 || numcoeffs < 1))
      -            goto err;
       
               if (!ossl_param_build_set_bn(bld, params, OSSL_PKEY_PARAM_RSA_D,
                                            rsa_d)
      diff --git a/deps/openssl/openssl/crypto/rsa/rsa_lib.c b/deps/openssl/openssl/crypto/rsa/rsa_lib.c
      index 449097b8b27afc..71a17a92349d3b 100644
      --- a/deps/openssl/openssl/crypto/rsa/rsa_lib.c
      +++ b/deps/openssl/openssl/crypto/rsa/rsa_lib.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -753,18 +753,22 @@ int ossl_rsa_set0_all_params(RSA *r, const STACK_OF(BIGNUM) *primes,
               return 0;
       
           pnum = sk_BIGNUM_num(primes);
      -    if (pnum < 2
      -        || pnum != sk_BIGNUM_num(exps)
      -        || pnum != sk_BIGNUM_num(coeffs) + 1)
      +    if (pnum < 2)
               return 0;
       
           if (!RSA_set0_factors(r, sk_BIGNUM_value(primes, 0),
      -                          sk_BIGNUM_value(primes, 1))
      -        || !RSA_set0_crt_params(r, sk_BIGNUM_value(exps, 0),
      -                                sk_BIGNUM_value(exps, 1),
      -                                sk_BIGNUM_value(coeffs, 0)))
      +                          sk_BIGNUM_value(primes, 1)))
               return 0;
       
      +    if (pnum == sk_BIGNUM_num(exps)
      +        && pnum == sk_BIGNUM_num(coeffs) + 1) {
      +
      +        if (!RSA_set0_crt_params(r, sk_BIGNUM_value(exps, 0),
      +                                 sk_BIGNUM_value(exps, 1),
      +                                 sk_BIGNUM_value(coeffs, 0)))
      +        return 0;
      +    }
      +
       #ifndef FIPS_MODULE
           old_infos = r->prime_infos;
       #endif
      @@ -1084,6 +1088,12 @@ int EVP_PKEY_CTX_get_rsa_mgf1_md(EVP_PKEY_CTX *ctx, const EVP_MD **md)
       int EVP_PKEY_CTX_set0_rsa_oaep_label(EVP_PKEY_CTX *ctx, void *label, int llen)
       {
           OSSL_PARAM rsa_params[2], *p = rsa_params;
      +    const char *empty = "";
      +    /*
      +     * Needed as we swap label with empty if it is NULL, and label is
      +     * freed at the end of this function.
      +     */
      +    void *plabel = label;
           int ret;
       
           if (ctx == NULL || !EVP_PKEY_CTX_IS_ASYM_CIPHER_OP(ctx)) {
      @@ -1096,9 +1106,13 @@ int EVP_PKEY_CTX_set0_rsa_oaep_label(EVP_PKEY_CTX *ctx, void *label, int llen)
           if (!EVP_PKEY_CTX_is_a(ctx, "RSA"))
               return -1;
       
      +    /* Accept NULL for backward compatibility */
      +    if (label == NULL && llen == 0)
      +        plabel = (void *)empty;
      +
           /* Cast away the const. This is read only so should be safe */
           *p++ = OSSL_PARAM_construct_octet_string(OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL,
      -                                             (void *)label, (size_t)llen);
      +                                             (void *)plabel, (size_t)llen);
           *p++ = OSSL_PARAM_construct_end();
       
           ret = evp_pkey_ctx_set_params_strict(ctx, rsa_params);
      diff --git a/deps/openssl/openssl/crypto/srp/srp_vfy.c b/deps/openssl/openssl/crypto/srp/srp_vfy.c
      index e8beb60d278a08..96d511ffe6368e 100644
      --- a/deps/openssl/openssl/crypto/srp/srp_vfy.c
      +++ b/deps/openssl/openssl/crypto/srp/srp_vfy.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2004-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2004-2023 The OpenSSL Project Authors. All Rights Reserved.
        * Copyright (c) 2004, EdelKey Project. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
      @@ -283,6 +283,7 @@ SRP_VBASE *SRP_VBASE_new(char *seed_key)
               return NULL;
           if ((vb->users_pwd = sk_SRP_user_pwd_new_null()) == NULL
               || (vb->gN_cache = sk_SRP_gN_cache_new_null()) == NULL) {
      +        sk_SRP_user_pwd_free(vb->users_pwd);
               OPENSSL_free(vb);
               return NULL;
           }
      diff --git a/deps/openssl/openssl/crypto/store/store_lib.c b/deps/openssl/openssl/crypto/store/store_lib.c
      index 5ff927862916e5..bc12d8dd13a28e 100644
      --- a/deps/openssl/openssl/crypto/store/store_lib.c
      +++ b/deps/openssl/openssl/crypto/store/store_lib.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2016-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2016-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -424,14 +424,14 @@ OSSL_STORE_INFO *OSSL_STORE_load(OSSL_STORE_CTX *ctx)
       
                   load_data.v = NULL;
                   load_data.ctx = ctx;
      +            ctx->error_flag = 0;
       
                   if (!ctx->fetched_loader->p_load(ctx->loader_ctx,
                                                    ossl_store_handle_load_result,
                                                    &load_data,
                                                    ossl_pw_passphrase_callback_dec,
                                                    &ctx->pwdata)) {
      -                if (!OSSL_STORE_eof(ctx))
      -                    ctx->error_flag = 1;
      +                ctx->error_flag = 1;
                       return NULL;
                   }
                   v = load_data.v;
      diff --git a/deps/openssl/openssl/crypto/threads_pthread.c b/deps/openssl/openssl/crypto/threads_pthread.c
      index bfc05a4e878c25..801855c9306e20 100644
      --- a/deps/openssl/openssl/crypto/threads_pthread.c
      +++ b/deps/openssl/openssl/crypto/threads_pthread.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2016-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2016-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -72,8 +72,6 @@ CRYPTO_RWLOCK *CRYPTO_THREAD_lock_new(void)
       #  if !defined (__TANDEM) && !defined (_SPT_MODEL_)
       #   if !defined(NDEBUG) && !defined(OPENSSL_NO_MUTEX_ERRORCHECK)
           pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
      -#   else
      -    pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL);
       #   endif
       #  else
           /* The SPT Thread Library does not define MUTEX attributes. */
      diff --git a/deps/openssl/openssl/crypto/x509/v3_ist.c b/deps/openssl/openssl/crypto/x509/v3_ist.c
      index e6fef0153c8eb2..4a3cfa12a471b6 100644
      --- a/deps/openssl/openssl/crypto/x509/v3_ist.c
      +++ b/deps/openssl/openssl/crypto/x509/v3_ist.c
      @@ -51,25 +51,25 @@ static ISSUER_SIGN_TOOL *v2i_issuer_sign_tool(X509V3_EXT_METHOD *method, X509V3_
               if (strcmp(cnf->name, "signTool") == 0) {
                   ist->signTool = ASN1_UTF8STRING_new();
                   if (ist->signTool == NULL || !ASN1_STRING_set(ist->signTool, cnf->value, strlen(cnf->value))) {
      -                ERR_raise(ERR_LIB_X509V3, ERR_R_ASN1_LIB);
      +                ERR_raise(ERR_LIB_X509V3, ERR_R_MALLOC_FAILURE);
                       goto err;
                   }
               } else if (strcmp(cnf->name, "cATool") == 0) {
                   ist->cATool = ASN1_UTF8STRING_new();
                   if (ist->cATool == NULL || !ASN1_STRING_set(ist->cATool, cnf->value, strlen(cnf->value))) {
      -                ERR_raise(ERR_LIB_X509V3, ERR_R_ASN1_LIB);
      +                ERR_raise(ERR_LIB_X509V3, ERR_R_MALLOC_FAILURE);
                       goto err;
                   }
               } else if (strcmp(cnf->name, "signToolCert") == 0) {
                   ist->signToolCert = ASN1_UTF8STRING_new();
                   if (ist->signToolCert == NULL || !ASN1_STRING_set(ist->signToolCert, cnf->value, strlen(cnf->value))) {
      -                ERR_raise(ERR_LIB_X509V3, ERR_R_ASN1_LIB);
      +                ERR_raise(ERR_LIB_X509V3, ERR_R_MALLOC_FAILURE);
                       goto err;
                   }
               } else if (strcmp(cnf->name, "cAToolCert") == 0) {
                   ist->cAToolCert = ASN1_UTF8STRING_new();
                   if (ist->cAToolCert == NULL || !ASN1_STRING_set(ist->cAToolCert, cnf->value, strlen(cnf->value))) {
      -                ERR_raise(ERR_LIB_X509V3, ERR_R_ASN1_LIB);
      +                ERR_raise(ERR_LIB_X509V3, ERR_R_MALLOC_FAILURE);
                       goto err;
                   }
               } else {
      diff --git a/deps/openssl/openssl/crypto/x509/x509_cmp.c b/deps/openssl/openssl/crypto/x509/x509_cmp.c
      index 1027bed82e69da..989fb8faa9f465 100644
      --- a/deps/openssl/openssl/crypto/x509/x509_cmp.c
      +++ b/deps/openssl/openssl/crypto/x509/x509_cmp.c
      @@ -292,12 +292,13 @@ unsigned long X509_NAME_hash_ex(const X509_NAME *x, OSSL_LIB_CTX *libctx,
           unsigned long ret = 0;
           unsigned char md[SHA_DIGEST_LENGTH];
           EVP_MD *sha1 = EVP_MD_fetch(libctx, "SHA1", propq);
      +    int i2d_ret;
       
           /* Make sure X509_NAME structure contains valid cached encoding */
      -    i2d_X509_NAME(x, NULL);
      +    i2d_ret = i2d_X509_NAME(x, NULL);
           if (ok != NULL)
               *ok = 0;
      -    if (sha1 != NULL
      +    if (i2d_ret >= 0 && sha1 != NULL
               && EVP_Digest(x->canon_enc, x->canon_enclen, md, NULL, sha1, NULL)) {
               ret = (((unsigned long)md[0]) | ((unsigned long)md[1] << 8L) |
                      ((unsigned long)md[2] << 16L) | ((unsigned long)md[3] << 24L)
      @@ -325,7 +326,9 @@ unsigned long X509_NAME_hash_old(const X509_NAME *x)
               goto end;
       
           /* Make sure X509_NAME structure contains valid cached encoding */
      -    i2d_X509_NAME(x, NULL);
      +    if (i2d_X509_NAME(x, NULL) < 0)
      +        goto end;
      +
           if (EVP_DigestInit_ex(md_ctx, md5, NULL)
               && EVP_DigestUpdate(md_ctx, x->bytes->data, x->bytes->length)
               && EVP_DigestFinal_ex(md_ctx, md, NULL))
      diff --git a/deps/openssl/openssl/doc/man1/openssl-cmp.pod.in b/deps/openssl/openssl/doc/man1/openssl-cmp.pod.in
      index 4250deb426fc15..9240916fce40fe 100644
      --- a/deps/openssl/openssl/doc/man1/openssl-cmp.pod.in
      +++ b/deps/openssl/openssl/doc/man1/openssl-cmp.pod.in
      @@ -659,11 +659,12 @@ is typically used when authenticating with pre-shared key (password-based MAC).
       
       =item B<-secret> I
       
      -Prefer PBM-based message protection with given source of a secret value.
      -The secret is used for creating PBM-based protection of outgoing messages
      -and (as far as needed) for validating PBM-based protection of incoming messages.
      -PBM stands for Password-Based Message Authentication Code.
      +Provides the source of a secret value to use with MAC-based message protection.
       This takes precedence over the B<-cert> and B<-key> options.
      +The secret is used for creating MAC-based protection of outgoing messages
      +and for validating incoming messages that have MAC-based protection.
      +The algorithm used by default is Password-Based Message Authentication Code (PBM)
      +as defined in RFC 4210 section 5.1.3.1.
       
       For more information about the format of I see
       L.
      @@ -682,7 +683,8 @@ while the subject of B<-oldcert> or B<-subjectName> may provide fallback values.
       The issuer of this certificate is used as one of the recipient fallback values
       and as fallback issuer entry in the certificate template of IR/CR/KUR messages.
       
      -When using signature-based message protection, this "protection certificate"
      +When performing signature-based message protection,
      +this "protection certificate", also called "signer certificate",
       will be included first in the extraCerts field of outgoing messages
       and the signature is done with the corresponding key.
       In Initialization Request (IR) messages this can be used for authenticating
      @@ -713,8 +715,8 @@ have no effect on the certificate verification enabled via this option.
       
       The corresponding private key file for the client's current certificate given in
       the B<-cert> option.
      -This will be used for signature-based message protection unless
      -the B<-secret> option indicating PBM or B<-unprotected_requests> is given.
      +This will be used for signature-based message protection unless the B<-secret>
      +option indicating MAC-based protection or B<-unprotected_requests> is given.
       
       It is also used as a fallback for the B<-newkey> option with IR/CR/KUR messages.
       
      @@ -730,7 +732,7 @@ L.
       =item B<-digest> I
       
       Specifies name of supported digest to use in RFC 4210's MSG_SIG_ALG
      -and as the one-way function (OWF) in MSG_MAC_ALG.
      +and as the one-way function (OWF) in C.
       If applicable, this is used for message protection and
       proof-of-possession (POPO) signatures.
       To see the list of supported digests, use C.
      @@ -738,7 +740,7 @@ Defaults to C.
       
       =item B<-mac> I
       
      -Specifies the name of the MAC algorithm in MSG_MAC_ALG.
      +Specifies the name of the MAC algorithm in C.
       To get the names of supported MAC algorithms use C
       and possibly combine such a name with the name of a supported digest algorithm,
       e.g., hmacWithSHA256.
      @@ -1097,6 +1099,13 @@ only affect the certificate verification enabled via the B<-out_trusted> option.
       
       =head1 NOTES
       
      +When a client obtains from a CMP server CA certificates that it is going to
      +trust, for instance via the C field of a certificate response,
      +authentication of the CMP server is particularly critical.
      +So special care must be taken setting up server authentication
      +using B<-trusted> and related options for certificate-based authentication
      +or B<-secret> for MAC-based protection.
      +
       When setting up CMP configurations and experimenting with enrollment options
       typically various errors occur until the configuration is correct and complete.
       When the CMP server reports an error the client will by default
      @@ -1166,7 +1175,7 @@ In order to update the enrolled certificate one may call
       
         openssl cmp -section insta,kur
       
      -using with PBM-based protection or
      +using MAC-based protection with PBM or
       
         openssl cmp -section insta,kur,signature
       
      @@ -1225,7 +1234,7 @@ Then it can start using the new cert and key.
           -newkey cl_key_new.pem -certout cl_cert.pem
         cp cl_key_new.pem cl_key.pem
       
      -This command sequence can be repated as often as needed.
      +This command sequence can be repeated as often as needed.
       
       =head2 Requesting information from CMP server
       
      diff --git a/deps/openssl/openssl/doc/man1/openssl-cms.pod.in b/deps/openssl/openssl/doc/man1/openssl-cms.pod.in
      index c63a7f330ba636..65a61ee97f1d6a 100644
      --- a/deps/openssl/openssl/doc/man1/openssl-cms.pod.in
      +++ b/deps/openssl/openssl/doc/man1/openssl-cms.pod.in
      @@ -391,7 +391,7 @@ option.
       =item I ...
       
       This is an alternative to using the B<-recip> option when encrypting a message.
      -One or more certificate filennames may be given.
      +One or more certificate filenames may be given.
       
       =item B<-I>
       
      @@ -902,7 +902,7 @@ The B<-engine> option was deprecated in OpenSSL 3.0.
       
       =head1 COPYRIGHT
       
      -Copyright 2008-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2008-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man1/openssl-ts.pod.in b/deps/openssl/openssl/doc/man1/openssl-ts.pod.in
      index 6f718202024757..3e7f7c4be94b2d 100644
      --- a/deps/openssl/openssl/doc/man1/openssl-ts.pod.in
      +++ b/deps/openssl/openssl/doc/man1/openssl-ts.pod.in
      @@ -490,7 +490,7 @@ Default is no.  (Optional)
       =item B
       
       This option specifies the hash function to be used to calculate the TSA's
      -public key certificate identifier. Default is sha256. (Optional)
      +public key certificate identifier. Default is sha1. (Optional)
       
       =back
       
      @@ -652,7 +652,7 @@ L
       
       =head1 COPYRIGHT
       
      -Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2006-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/BIO_s_mem.pod b/deps/openssl/openssl/doc/man3/BIO_s_mem.pod
      index 6b3cc6a2dae943..3bbc3e7fcf02c9 100644
      --- a/deps/openssl/openssl/doc/man3/BIO_s_mem.pod
      +++ b/deps/openssl/openssl/doc/man3/BIO_s_mem.pod
      @@ -59,6 +59,8 @@ positive return value B should be set to a negative value, typically -1.
       
       BIO_get_mem_data() sets *B to a pointer to the start of the memory BIOs data
       and returns the total amount of data available. It is implemented as a macro.
      +Note the pointer returned by this call is informative, no transfer of ownership
      +of this memory is implied.  See notes on BIO_set_close().
       
       BIO_set_mem_buf() sets the internal BUF_MEM structure to B and sets the
       close flag to B, that is B should be either BIO_CLOSE or BIO_NOCLOSE.
      @@ -114,6 +116,10 @@ preceding that write operation cannot be undone.
       Calling BIO_get_mem_ptr() prior to a BIO_reset() call with
       BIO_FLAGS_NONCLEAR_RST set has the same effect as a write operation.
       
      +Calling BIO_set_close() with BIO_NOCLOSE orphans the BUF_MEM internal to the
      +BIO, _not_ its actual data buffer. See the examples section for the proper
      +method for claiming ownership of the data pointer for a deferred free operation.
      +
       =head1 BUGS
       
       There should be an option to set the maximum size of a memory BIO.
      @@ -151,10 +157,24 @@ Extract the BUF_MEM structure from a memory BIO and then free up the BIO:
        BIO_set_close(mem, BIO_NOCLOSE); /* So BIO_free() leaves BUF_MEM alone */
        BIO_free(mem);
       
      +Extract the BUF_MEM ptr, claim ownership of the internal data and free the BIO
      +and BUF_MEM structure:
      +
      + BUF_MEM *bptr;
      + char *data;
      +
      + BIO_get_mem_data(bio, &data);
      + BIO_get_mem_ptr(bio, &bptr);
      + BIO_set_close(mem, BIO_NOCLOSE); /* So BIO_free orphans BUF_MEM */
      + BIO_free(bio);
      + bptr->data = NULL; /* Tell BUF_MEM to orphan data */
      + BUF_MEM_free(bptr);
      + ...
      + free(data);
       
       =head1 COPYRIGHT
       
      -Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/CMS_add1_signer.pod b/deps/openssl/openssl/doc/man3/CMS_add1_signer.pod
      index 800085b7b86a9b..d606a02cc1fd81 100644
      --- a/deps/openssl/openssl/doc/man3/CMS_add1_signer.pod
      +++ b/deps/openssl/openssl/doc/man3/CMS_add1_signer.pod
      @@ -31,8 +31,8 @@ Unless the B flag is set the returned CMS_ContentInfo
       structure is not complete and must be finalized either by streaming (if
       applicable) or a call to CMS_final().
       
      -The CMS_SignerInfo_sign() function will explicitly sign a CMS_SignerInfo
      -structure, its main use is when B and B flags
      +The CMS_SignerInfo_sign() function explicitly signs a CMS_SignerInfo
      +structure, its main use is when the B and B flags
       are both set.
       
       =head1 NOTES
      @@ -90,6 +90,8 @@ before it is finalized.
       CMS_add1_signer() returns an internal pointer to the CMS_SignerInfo
       structure just added or NULL if an error occurs.
       
      +CMS_SignerInfo_sign() returns 1 on success, 0 on failure.
      +
       =head1 SEE ALSO
       
       L, L,
      @@ -97,7 +99,7 @@ L,
       
       =head1 COPYRIGHT
       
      -Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2014-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/CMS_sign.pod b/deps/openssl/openssl/doc/man3/CMS_sign.pod
      index 0d812756aef551..03bfc6fce16a74 100644
      --- a/deps/openssl/openssl/doc/man3/CMS_sign.pod
      +++ b/deps/openssl/openssl/doc/man3/CMS_sign.pod
      @@ -105,7 +105,7 @@ The function CMS_sign() is a basic CMS signing function whose output will be
       suitable for many purposes. For finer control of the output format the
       B, B and B parameters can all be B and the
       B flag set. Then one or more signers can be added using the
      -function CMS_sign_add1_signer(), non default digests can be used and custom
      +function CMS_add1_signer(), non default digests can be used and custom
       attributes added. CMS_final() must then be called to finalize the
       structure if streaming is not enabled.
       
      @@ -132,7 +132,7 @@ The CMS_sign_ex() method was added in OpenSSL 3.0.
       
       =head1 COPYRIGHT
       
      -Copyright 2008-2020 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2008-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/DH_generate_parameters.pod b/deps/openssl/openssl/doc/man3/DH_generate_parameters.pod
      index 1098a161ea63f2..9c1dff7aedd9ab 100644
      --- a/deps/openssl/openssl/doc/man3/DH_generate_parameters.pod
      +++ b/deps/openssl/openssl/doc/man3/DH_generate_parameters.pod
      @@ -128,6 +128,10 @@ The parameter B is invalid.
       
       =back
       
      +If 0 is returned or B<*codes> is set to a nonzero value the supplied
      +parameters should not be used for Diffie-Hellman operations otherwise
      +the security properties of the key exchange are not guaranteed.
      +
       DH_check_ex(), DH_check_params() and DH_check_pub_key_ex() are similar to
       DH_check() and DH_check_params() respectively, but the error reasons are added
       to the thread's error queue instead of provided as return values from the
      @@ -160,7 +164,7 @@ DH_generate_parameters_ex() instead.
       
       =head1 COPYRIGHT
       
      -Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/DSA_generate_parameters.pod b/deps/openssl/openssl/doc/man3/DSA_generate_parameters.pod
      index 415c4c8b82ce74..a10dc9ba275940 100644
      --- a/deps/openssl/openssl/doc/man3/DSA_generate_parameters.pod
      +++ b/deps/openssl/openssl/doc/man3/DSA_generate_parameters.pod
      @@ -51,7 +51,7 @@ called as shown below. For information on the BN_GENCB structure and the
       BN_GENCB_call function discussed below, refer to
       L.
       
      -DSA_generate_prime() is similar to DSA_generate_prime_ex() but
      +DSA_generate_parameters() is similar to DSA_generate_parameters_ex() but
       expects an old-style callback function; see
       L for information on the old-style callback.
       
      @@ -126,7 +126,7 @@ DSA_generate_parameters_ex() instead.
       
       =head1 COPYRIGHT
       
      -Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/EVP_MAC.pod b/deps/openssl/openssl/doc/man3/EVP_MAC.pod
      index 13482ac5e188e7..56ac92a486728e 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_MAC.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_MAC.pod
      @@ -181,7 +181,7 @@ EVP_MAC_CTX_set_params() passes chosen parameters to the underlying
       context, given a context I.
       The set of parameters given with I determine exactly what
       parameters are passed down.
      -If I are NULL, the unterlying context should do nothing and return 1.
      +If I are NULL, the underlying context should do nothing and return 1.
       Note that a parameter that is unknown in the underlying context is
       simply ignored.
       Also, what happens when a needed parameter isn't passed down is
      @@ -481,7 +481,7 @@ These functions were added in OpenSSL 3.0.
       
       =head1 COPYRIGHT
       
      -Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2018-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/EVP_SIGNATURE.pod b/deps/openssl/openssl/doc/man3/EVP_SIGNATURE.pod
      index 600522085398c2..1f534ef33810eb 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_SIGNATURE.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_SIGNATURE.pod
      @@ -61,7 +61,7 @@ EVP_SIGNATURE_get0_provider() returns the provider that I was
       fetched from.
       
       EVP_SIGNATURE_do_all_provided() traverses all SIGNATURE implemented by all
      -activated roviders in the given library context I, and for each of the
      +activated providers in the given library context I, and for each of the
       implementations, calls the given function I with the implementation method
       and the given I as argument.
       
      @@ -106,7 +106,7 @@ The functions described here were added in OpenSSL 3.0.
       
       =head1 COPYRIGHT
       
      -Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/EVP_aes_128_gcm.pod b/deps/openssl/openssl/doc/man3/EVP_aes_128_gcm.pod
      index 09cae991295049..485705ea788907 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_aes_128_gcm.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_aes_128_gcm.pod
      @@ -134,13 +134,7 @@ section for details.
       EVP_aes_192_wrap(),
       EVP_aes_256_wrap(),
       EVP_aes_128_wrap_pad(),
      -EVP_aes_128_wrap(),
      -EVP_aes_192_wrap(),
      -EVP_aes_256_wrap(),
       EVP_aes_192_wrap_pad(),
      -EVP_aes_128_wrap(),
      -EVP_aes_192_wrap(),
      -EVP_aes_256_wrap(),
       EVP_aes_256_wrap_pad()
       
       AES key wrap with 128, 192 and 256 bit keys, as according to RFC 3394 section
      @@ -173,7 +167,7 @@ the XTS "tweak" value.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_aria_128_gcm.pod b/deps/openssl/openssl/doc/man3/EVP_aria_128_gcm.pod
      index 92913652630d52..91aa75ec387172 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_aria_128_gcm.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_aria_128_gcm.pod
      @@ -96,7 +96,7 @@ correctly, see the L section for details.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_bf_cbc.pod b/deps/openssl/openssl/doc/man3/EVP_bf_cbc.pod
      index 4df98f4bdf47ec..11a909207ac954 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_bf_cbc.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_bf_cbc.pod
      @@ -41,7 +41,7 @@ Blowfish encryption algorithm in CBC, CFB, ECB and OFB modes respectively.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_blake2b512.pod b/deps/openssl/openssl/doc/man3/EVP_blake2b512.pod
      index 98e1899f6a935d..55bd9f3bce77db 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_blake2b512.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_blake2b512.pod
      @@ -35,7 +35,7 @@ The BLAKE2b algorithm that produces a 512-bit output from a given input.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       While the BLAKE2b and BLAKE2s algorithms supports a variable length digest,
      diff --git a/deps/openssl/openssl/doc/man3/EVP_camellia_128_ecb.pod b/deps/openssl/openssl/doc/man3/EVP_camellia_128_ecb.pod
      index a6b597156a77a9..cb6e12e2122b76 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_camellia_128_ecb.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_camellia_128_ecb.pod
      @@ -79,7 +79,7 @@ Camellia for 128, 192 and 256 bit keys in the following modes: CBC, CFB with
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_cast5_cbc.pod b/deps/openssl/openssl/doc/man3/EVP_cast5_cbc.pod
      index 85ff2ad014888f..7fef0598151d85 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_cast5_cbc.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_cast5_cbc.pod
      @@ -41,7 +41,7 @@ CAST encryption algorithm in CBC, ECB, CFB and OFB modes respectively.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_chacha20.pod b/deps/openssl/openssl/doc/man3/EVP_chacha20.pod
      index 683faa326e1453..7e80c8de40c9ec 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_chacha20.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_chacha20.pod
      @@ -44,7 +44,7 @@ L section for more information.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       L
      diff --git a/deps/openssl/openssl/doc/man3/EVP_des_cbc.pod b/deps/openssl/openssl/doc/man3/EVP_des_cbc.pod
      index 501216cd6d77b3..442be8993a29f7 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_des_cbc.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_des_cbc.pod
      @@ -89,7 +89,7 @@ Triple-DES key wrap according to RFC 3217 Section 3.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_desx_cbc.pod b/deps/openssl/openssl/doc/man3/EVP_desx_cbc.pod
      index fae827192ee995..c22c0de47900c8 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_desx_cbc.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_desx_cbc.pod
      @@ -31,7 +31,7 @@ implementation.
       
       Developers should be aware of the negative performance implications of
       calling this function multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_idea_cbc.pod b/deps/openssl/openssl/doc/man3/EVP_idea_cbc.pod
      index 5a9adaedc4462c..a36aae0bc999e3 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_idea_cbc.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_idea_cbc.pod
      @@ -39,7 +39,7 @@ The IDEA encryption algorithm in CBC, CFB, ECB and OFB modes respectively.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_md2.pod b/deps/openssl/openssl/doc/man3/EVP_md2.pod
      index 0b473887e01b97..a6f3a010deb5aa 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_md2.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_md2.pod
      @@ -28,7 +28,7 @@ The MD2 algorithm which produces a 128-bit output from a given input.
       
       Developers should be aware of the negative performance implications of
       calling this function multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_md4.pod b/deps/openssl/openssl/doc/man3/EVP_md4.pod
      index baaff9e4eaa2ac..a4e1a7d0a6e910 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_md4.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_md4.pod
      @@ -29,7 +29,7 @@ The MD4 algorithm which produces a 128-bit output from a given input.
       
       Developers should be aware of the negative performance implications of
       calling this function multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_md5.pod b/deps/openssl/openssl/doc/man3/EVP_md5.pod
      index 752fdd1f6c37b3..42370fb3d0a329 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_md5.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_md5.pod
      @@ -40,7 +40,7 @@ WARNING: this algorithm is not intended for non-SSL usage.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L or L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_mdc2.pod b/deps/openssl/openssl/doc/man3/EVP_mdc2.pod
      index e9de6f3c560a61..3681bd06a63cd9 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_mdc2.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_mdc2.pod
      @@ -30,7 +30,7 @@ The MDC-2DES algorithm of using MDC-2 with the DES block cipher. It produces a
       
       Developers should be aware of the negative performance implications of
       calling this function multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_rc2_cbc.pod b/deps/openssl/openssl/doc/man3/EVP_rc2_cbc.pod
      index bf4a13ba45c19c..17f6f4b3e254da 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_rc2_cbc.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_rc2_cbc.pod
      @@ -55,7 +55,7 @@ functions to set the key length and effective key length.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_rc4.pod b/deps/openssl/openssl/doc/man3/EVP_rc4.pod
      index f22e88a6521477..0311ef278ca12d 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_rc4.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_rc4.pod
      @@ -47,7 +47,7 @@ interface.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_rc5_32_12_16_cbc.pod b/deps/openssl/openssl/doc/man3/EVP_rc5_32_12_16_cbc.pod
      index c177b1845196f2..69fc2f2cc656b9 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_rc5_32_12_16_cbc.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_rc5_32_12_16_cbc.pod
      @@ -60,7 +60,7 @@ is an int.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_ripemd160.pod b/deps/openssl/openssl/doc/man3/EVP_ripemd160.pod
      index 6ad2d3e0186968..5b96fd09f85037 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_ripemd160.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_ripemd160.pod
      @@ -29,7 +29,7 @@ The RIPEMD-160 algorithm which produces a 160-bit output from a given input.
       
       Developers should be aware of the negative performance implications of
       calling this function multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_seed_cbc.pod b/deps/openssl/openssl/doc/man3/EVP_seed_cbc.pod
      index 010607e5740590..2c821d07c3993a 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_seed_cbc.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_seed_cbc.pod
      @@ -41,7 +41,7 @@ The SEED encryption algorithm in CBC, CFB, ECB and OFB modes respectively.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_sha1.pod b/deps/openssl/openssl/doc/man3/EVP_sha1.pod
      index 264ddd1addb717..6fc8f07b066a6f 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_sha1.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_sha1.pod
      @@ -29,7 +29,7 @@ The SHA-1 algorithm which produces a 160-bit output from a given input.
       
       Developers should be aware of the negative performance implications of
       calling this function multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_sha224.pod b/deps/openssl/openssl/doc/man3/EVP_sha224.pod
      index 7a50cf9b6c3f15..be09e49ee39325 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_sha224.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_sha224.pod
      @@ -49,7 +49,7 @@ their outputs are of the same size.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with Linstead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_sha3_224.pod b/deps/openssl/openssl/doc/man3/EVP_sha3_224.pod
      index 5bb9ae1b89e550..93c0d0b9fb1e0f 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_sha3_224.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_sha3_224.pod
      @@ -54,7 +54,7 @@ B provides that of 256 bits.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L or L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_sm3.pod b/deps/openssl/openssl/doc/man3/EVP_sm3.pod
      index 4e8112dc0afee2..65be55e88dba8d 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_sm3.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_sm3.pod
      @@ -28,7 +28,7 @@ The SM3 hash function.
       
       Developers should be aware of the negative performance implications of
       calling this function multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_sm4_cbc.pod b/deps/openssl/openssl/doc/man3/EVP_sm4_cbc.pod
      index b67ade549968c5..48be7a31ad756d 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_sm4_cbc.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_sm4_cbc.pod
      @@ -45,7 +45,7 @@ respectively.
       
       Developers should be aware of the negative performance implications of
       calling these functions multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/EVP_whirlpool.pod b/deps/openssl/openssl/doc/man3/EVP_whirlpool.pod
      index a9826e290a4279..c5d465b16f0c3c 100644
      --- a/deps/openssl/openssl/doc/man3/EVP_whirlpool.pod
      +++ b/deps/openssl/openssl/doc/man3/EVP_whirlpool.pod
      @@ -30,7 +30,7 @@ input.
       
       Developers should be aware of the negative performance implications of
       calling this function multiple times and should consider using
      -L instead.
      +L with L instead.
       See L for further information.
       
       =head1 RETURN VALUES
      diff --git a/deps/openssl/openssl/doc/man3/OSSL_CMP_CTX_new.pod b/deps/openssl/openssl/doc/man3/OSSL_CMP_CTX_new.pod
      index e81fb08b00d613..ce7db8f2f08628 100644
      --- a/deps/openssl/openssl/doc/man3/OSSL_CMP_CTX_new.pod
      +++ b/deps/openssl/openssl/doc/man3/OSSL_CMP_CTX_new.pod
      @@ -182,7 +182,7 @@ clearing the internal CMP transaction (aka session) status, PKIStatusInfo,
       and any previous results (newCert, newChain, caPubs, and extraCertsIn)
       from the last executed transaction.
       It also clears any ITAVs that were added by OSSL_CMP_CTX_push0_genm_ITAV().
      -All other field values (i.e., CMP options) are retained for potential re-use.
      +All other field values (i.e., CMP options) are retained for potential reuse.
       
       OSSL_CMP_CTX_set_option() sets the given value for the given option
       (e.g., OSSL_CMP_OPT_IMPLICIT_CONFIRM) in the given OSSL_CMP_CTX structure.
      @@ -260,12 +260,12 @@ The following options can be set:
       
       =item B
               The NID of the digest algorithm to be used as one-way function (OWF)
      -        in RFC 4210's MSG_MAC_ALG for PBM-based message protection.
      +        for MAC-based message protection with password-based MAC (PBM).
      +        See RFC 4210 section 5.1.3.1 for details.
               Default is SHA256.
       
       =item B
      -        The NID of the MAC algorithm to be used in RFC 4210's MSG_MAC_ALG
      -        for PBM-based message protection.
      +        The NID of the MAC algorithm to be used for message protection with PBM.
               Default is HMAC-SHA1 as per RFC 4210.
       
       =item B
      @@ -450,8 +450,8 @@ The reference counts of those certificates handled successfully are increased.
       OSSL_CMP_CTX_get0_untrusted(OSSL_CMP_CTX *ctx) returns a pointer to the
       list of untrusted certs, which may be empty if unset.
       
      -OSSL_CMP_CTX_set1_cert() sets the CMP signer certificate
      -related to the private key used for CMP message protection.
      +OSSL_CMP_CTX_set1_cert() sets the CMP signer certificate, also called protection
      +certificate, related to the private key for signature-based message protection.
       Therefore the public key of this I must correspond to
       the private key set before or thereafter via OSSL_CMP_CTX_set1_pkey().
       When using signature-based protection of CMP request messages
      @@ -481,15 +481,15 @@ OSSL_CMP_CTX_set1_pkey() sets the client's private key corresponding to the
       CMP signer certificate set via OSSL_CMP_CTX_set1_cert().
       This key is used create signature-based protection (protectionAlg = MSG_SIG_ALG)
       of outgoing messages
      -unless a PBM secret has been set via OSSL_CMP_CTX_set1_secretValue().
      +unless a symmetric secret has been set via OSSL_CMP_CTX_set1_secretValue().
       The I argument may be NULL to clear the entry.
       
      -OSSL_CMP_CTX_set1_secretValue() sets the byte string I with length I
      -as PBM secret in the given I or clears it if the I argument is NULL.
      -If present, this secret is used to create PBM-based protection of outgoing
      -messages and to verify any PBM-based protection of incoming messages
      -(protectionAlg = MSG_MAC_ALG). PBM stands for Password-Based MAC.
      -PBM-based protection takes precedence over signature-based protection.
      +OSSL_CMP_CTX_set1_secretValue() sets in I the byte string I of length
      +I to use as pre-shared secret, or clears it if the I argument is NULL.
      +If present, this secret is used to create MAC-based authentication and integrity
      +protection (rather than applying signature-based protection)
      +of outgoing messages and to verify authenticity and integrity of incoming
      +messages that have MAC-based protection (protectionAlg = C).
       
       OSSL_CMP_CTX_set1_referenceValue() sets the given referenceValue I with
       length I in the given I or clears it if the I argument is NULL.
      @@ -500,7 +500,7 @@ then the sender field will contain the NULL-DN
       and the senderKID field of the CMP message header must be set.
       When signature-based protection is used the senderKID will be set to
       the subjectKeyIdentifier of the CMP signer certificate as far as present.
      -If not present or when PBM-based protection is used
      +If not present or when MAC-based protection is used
       the I value is taken as the fallback value for the senderKID.
       
       OSSL_CMP_CTX_set1_recipient() sets the recipient name that will be used in the
      @@ -731,7 +731,7 @@ Set up a CMP client context for sending requests and verifying responses:
           OSSL_CMP_CTX_set1_serverPath(cmp_ctx, path_or_alias);
           OSSL_CMP_CTX_set0_trustedStore(cmp_ctx, ts);
       
      -Set up client credentials for password-based protection (PBM):
      +Set up symmetric credentials for MAC-based message protection such as PBM:
       
           OSSL_CMP_CTX_set1_referenceValue(cmp_ctx, ref, ref_len);
           OSSL_CMP_CTX_set1_secretValue(cmp_ctx, sec, sec_len);
      diff --git a/deps/openssl/openssl/doc/man3/OSSL_CMP_exec_certreq.pod b/deps/openssl/openssl/doc/man3/OSSL_CMP_exec_certreq.pod
      index b0d81c7c41a968..0cabc3bad5ac96 100644
      --- a/deps/openssl/openssl/doc/man3/OSSL_CMP_exec_certreq.pod
      +++ b/deps/openssl/openssl/doc/man3/OSSL_CMP_exec_certreq.pod
      @@ -42,7 +42,7 @@ client-server transactions, i.e., sequences of CMP requests and responses.
       
       All functions take a populated OSSL_CMP_CTX structure as their first argument.
       Usually the server name, port, and path ("CMP alias") need to be set, as well as
      -credentials the client can use for authenticating itself to the client.
      +credentials the client can use for authenticating itself to the server.
       In order to authenticate the server the client typically needs a trust store.
       The functions return their respective main results directly, while there are
       also accessor functions for retrieving various results and status information
      @@ -72,7 +72,7 @@ and need to be filled in using L,
       L, L, etc.
       For P10CR, L needs to be used instead.
       The enrollment session may be blocked by sleeping until the addressed
      -CA (or an intermedate PKI component) can fully process and answer the request.
      +CA (or an intermediate PKI component) can fully process and answer the request.
       
       OSSL_CMP_try_certreq() is an alternative to the above functions that is
       more flexible regarding what to do after receiving a checkAfter value.
      @@ -119,9 +119,17 @@ See RFC 4210 section 5.3.19 and appendix E.5 for details.
       
       CMP is defined in RFC 4210 (and CRMF in RFC 4211).
       
      -So far the CMP client implementation is limited to one request per CMP message
      +The CMP client implementation is limited to one request per CMP message
       (and consequently to at most one response component per CMP message).
       
      +When a client obtains from a CMP server CA certificates that it is going to
      +trust, for instance via the caPubs field of a certificate response,
      +authentication of the CMP server is particularly critical.
      +So special care must be taken setting up server authentication in I
      +using functions such as
      +L (for certificate-based authentication) or
      +L (for MAC-based protection).
      +
       =head1 RETURN VALUES
       
       OSSL_CMP_exec_certreq(), OSSL_CMP_exec_IR_ses(), OSSL_CMP_exec_CR_ses(),
      @@ -163,7 +171,7 @@ The OpenSSL CMP support was added in OpenSSL 3.0.
       
       =head1 COPYRIGHT
       
      -Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/OSSL_HTTP_REQ_CTX.pod b/deps/openssl/openssl/doc/man3/OSSL_HTTP_REQ_CTX.pod
      index ee61034aa731a7..6216420e4ffe92 100644
      --- a/deps/openssl/openssl/doc/man3/OSSL_HTTP_REQ_CTX.pod
      +++ b/deps/openssl/openssl/doc/man3/OSSL_HTTP_REQ_CTX.pod
      @@ -72,12 +72,16 @@ which collects the HTTP request header lines.
       OSSL_HTTP_REQ_CTX_free() frees up the HTTP request context I.
       The I is not free'd, I will be free'd if I is set.
       
      -OSSL_HTTP_REQ_CTX_set_request_line() adds the HTTP request line to the context.
      +OSSL_HTTP_REQ_CTX_set_request_line() adds the 1st HTTP request line to I.
       The HTTP method is determined by I,
       which should be 1 to indicate C or 0 to indicate C.
      -I and I may be set to indicate a proxy server and port
      -that the request should go through, otherwise they should be left NULL.
      -I is the HTTP request path; if left NULL, C is used.
      +I and I may be set to give the server and the optional port that
      +an HTTP proxy shall forward the request to, otherwise they must be left NULL.
      +I provides the HTTP request path; if left NULL, C is used.
      +For backward compatibility, I may begin with C and thus convey
      +an absoluteURI. In this case it indicates HTTP proxy use and provides also the
      +server (and optionally the port) that the proxy shall forward the request to.
      +In this case the I and I arguments must be NULL.
       
       OSSL_HTTP_REQ_CTX_add1_header() adds header I with value I to the
       context I. It can be called more than once to add multiple header lines.
      diff --git a/deps/openssl/openssl/doc/man3/OSSL_HTTP_transfer.pod b/deps/openssl/openssl/doc/man3/OSSL_HTTP_transfer.pod
      index 3337f6d4a35e51..716e365ef50db0 100644
      --- a/deps/openssl/openssl/doc/man3/OSSL_HTTP_transfer.pod
      +++ b/deps/openssl/openssl/doc/man3/OSSL_HTTP_transfer.pod
      @@ -161,8 +161,11 @@ NULL) to print additional diagnostic information in a user-oriented way.
       
       OSSL_HTTP_set1_request() sets up in I the request header and content data
       and expectations on the response using the following parameters.
      -If  indicates using a proxy for HTTP (but not HTTPS), the server hostname
      -(and optionally port) needs to be placed in the header and thus must be present.
      +If  indicates using a proxy for HTTP (but not HTTPS), the server host
      +(and optionally port) needs to be placed in the header; thus it must be present
      +in I.
      +For backward compatibility, the server (and optional port) may also be given in
      +the I argument beginning with C (thus giving an absoluteURI).
       If I is NULL it defaults to "/".
       If I is NULL the HTTP GET method will be used to send the request
       else HTTP POST with the contents of I and optional I, where
      @@ -274,7 +277,7 @@ All the functions described here were added in OpenSSL 3.0.
       
       =head1 COPYRIGHT
       
      -Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/PKCS12_create.pod b/deps/openssl/openssl/doc/man3/PKCS12_create.pod
      index dc0f06d9d323c7..92e588062a36ed 100644
      --- a/deps/openssl/openssl/doc/man3/PKCS12_create.pod
      +++ b/deps/openssl/openssl/doc/man3/PKCS12_create.pod
      @@ -42,7 +42,8 @@ can all be set to zero and sensible defaults will be used.
       These defaults are: AES password based encryption (PBES2 with PBKDF2 and
       AES-256-CBC) for private keys and certificates, the PBKDF2 and MAC key
       derivation iteration count of B (currently 2048), and
      -MAC algorithm HMAC with SHA2-256.
      +MAC algorithm HMAC with SHA2-256. The MAC key derivation algorithm used
      +for the outer PKCS#12 structure is PKCS12KDF.
       
       The default MAC iteration count is 1 in order to retain compatibility with
       old software which did not interpret MAC iteration counts. If such compatibility
      @@ -68,6 +69,8 @@ I or I can be set to -1 indicating that no encryption
       should be used.
       
       I can be set to -1 and the MAC will then be omitted entirely.
      +This can be useful when running with the FIPS provider as the PKCS12KDF
      +is not a FIPS approvable algorithm.
       
       PKCS12_create() makes assumptions regarding the encoding of the given pass
       phrase.
      @@ -83,7 +86,9 @@ IETF RFC 7292 (L)
       
       =head1 SEE ALSO
       
      +L,
       L,
      +L,
       L
       
       =head1 HISTORY
      @@ -96,7 +101,7 @@ standards.
       
       =head1 COPYRIGHT
       
      -Copyright 2002-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2002-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/PKCS12_gen_mac.pod b/deps/openssl/openssl/doc/man3/PKCS12_gen_mac.pod
      index 37bcd572d841ce..a72df145fedd70 100644
      --- a/deps/openssl/openssl/doc/man3/PKCS12_gen_mac.pod
      +++ b/deps/openssl/openssl/doc/man3/PKCS12_gen_mac.pod
      @@ -22,6 +22,7 @@ PKCS12_verify_mac - Functions to create and manipulate a PKCS#12 structure
       
       PKCS12_gen_mac() generates an HMAC over the entire PKCS#12 object using the
       supplied password along with a set of already configured parameters.
      +The default key generation mechanism used is PKCS12KDF.
       
       PKCS12_verify_mac() verifies the PKCS#12 object's HMAC using the supplied
       password.
      @@ -57,6 +58,7 @@ IETF RFC 7292 (L)
       =head1 SEE ALSO
       
       L,
      +L,
       L,
       L
       
      diff --git a/deps/openssl/openssl/doc/man3/PKCS5_PBKDF2_HMAC.pod b/deps/openssl/openssl/doc/man3/PKCS5_PBKDF2_HMAC.pod
      index 0984e993daefa5..8b5feff9192c02 100644
      --- a/deps/openssl/openssl/doc/man3/PKCS5_PBKDF2_HMAC.pod
      +++ b/deps/openssl/openssl/doc/man3/PKCS5_PBKDF2_HMAC.pod
      @@ -33,7 +33,8 @@ be NULL terminated.
       
       B is the iteration count and its value should be greater than or
       equal to 1. RFC 2898 suggests an iteration count of at least 1000. Any
      -B less than 1 is treated as a single iteration.
      +B value less than 1 is invalid; such values will result in failure
      +and raise the PROV_R_INVALID_ITERATION_COUNT error.
       
       B is the message digest function used in the derivation.
       PKCS5_PBKDF2_HMAC_SHA1() calls PKCS5_PBKDF2_HMAC() with EVP_sha1().
      @@ -66,7 +67,7 @@ L
       
       =head1 COPYRIGHT
       
      -Copyright 2014-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2014-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/SSL_CONF_CTX_set_ssl_ctx.pod b/deps/openssl/openssl/doc/man3/SSL_CONF_CTX_set_ssl_ctx.pod
      index 06cc1e4ec539d2..3913ea9390079d 100644
      --- a/deps/openssl/openssl/doc/man3/SSL_CONF_CTX_set_ssl_ctx.pod
      +++ b/deps/openssl/openssl/doc/man3/SSL_CONF_CTX_set_ssl_ctx.pod
      @@ -2,6 +2,7 @@
       
       =head1 NAME
       
      +SSL_CONF_CTX_finish,
       SSL_CONF_CTX_set_ssl_ctx, SSL_CONF_CTX_set_ssl - set context to configure
       
       =head1 SYNOPSIS
      @@ -10,6 +11,7 @@ SSL_CONF_CTX_set_ssl_ctx, SSL_CONF_CTX_set_ssl - set context to configure
       
        void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx);
        void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl);
      + int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx);
       
       =head1 DESCRIPTION
       
      @@ -23,6 +25,10 @@ B structure B. Any previous B or B associated with
       B is cleared. Subsequent calls to SSL_CONF_cmd() will be sent to
       B.
       
      +The function SSL_CONF_CTX_finish() must be called after all configuration
      +operations have been completed. It is used to finalise any operations
      +or to process defaults.
      +
       =head1 NOTES
       
       The context need not be set or it can be set to B in which case only
      @@ -32,6 +38,8 @@ syntax checking of commands is performed, where possible.
       
       SSL_CONF_CTX_set_ssl_ctx() and SSL_CTX_set_ssl() do not return a value.
       
      +SSL_CONF_CTX_finish() returns 1 for success and 0 for failure.
      +
       =head1 SEE ALSO
       
       L,
      @@ -47,7 +55,7 @@ These functions were added in OpenSSL 1.0.2.
       
       =head1 COPYRIGHT
       
      -Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2012-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/SSL_CTX_set_info_callback.pod b/deps/openssl/openssl/doc/man3/SSL_CTX_set_info_callback.pod
      index 9cee6420738486..c1c6a67f85a7d7 100644
      --- a/deps/openssl/openssl/doc/man3/SSL_CTX_set_info_callback.pod
      +++ b/deps/openssl/openssl/doc/man3/SSL_CTX_set_info_callback.pod
      @@ -12,11 +12,15 @@ SSL_get_info_callback
       
        #include 
       
      - void SSL_CTX_set_info_callback(SSL_CTX *ctx, void (*callback)());
      - void (*SSL_CTX_get_info_callback(const SSL_CTX *ctx))();
      + void SSL_CTX_set_info_callback(SSL_CTX *ctx,
      +                                void (*callback) (const SSL *ssl, int type, int val));
       
      - void SSL_set_info_callback(SSL *ssl, void (*callback)());
      - void (*SSL_get_info_callback(const SSL *ssl))();
      + void (*SSL_CTX_get_info_callback(SSL_CTX *ctx)) (const SSL *ssl, int type, int val);
      +
      + void SSL_set_info_callback(SSL *ssl,
      +                            void (*callback) (const SSL *ssl, int type, int val));
      +
      + void (*SSL_get_info_callback(const SSL *ssl)) (const SSL *ssl, int type, int val);
       
       =head1 DESCRIPTION
       
      @@ -119,7 +123,7 @@ SSL_get_info_callback() returns the current setting.
       The following example callback function prints state strings, information
       about alerts being handled and error messages to the B BIO.
       
      - void apps_ssl_info_callback(SSL *s, int where, int ret)
      + void apps_ssl_info_callback(const SSL *s, int where, int ret)
        {
            const char *str;
            int w = where & ~SSL_ST_MASK;
      @@ -156,7 +160,7 @@ L
       
       =head1 COPYRIGHT
       
      -Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2001-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/SSL_new.pod b/deps/openssl/openssl/doc/man3/SSL_new.pod
      index 59d275523f98e7..2b522769169b77 100644
      --- a/deps/openssl/openssl/doc/man3/SSL_new.pod
      +++ b/deps/openssl/openssl/doc/man3/SSL_new.pod
      @@ -35,7 +35,7 @@ MUST NOT have yet started the SSL handshake.  For connections that are not in
       their initial state SSL_dup() just increments an internal
       reference count and returns the I handle.  It may be possible to
       use L to recycle an SSL handle that is not in its initial
      -state for re-use, but this is best avoided.  Instead, save and restore
      +state for reuse, but this is best avoided.  Instead, save and restore
       the session, if desired, and construct a fresh handle for each connection.
       
       The subset of settings in I that are duplicated are:
      @@ -124,7 +124,7 @@ L
       
       =head1 COPYRIGHT
       
      -Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/d2i_PKCS8PrivateKey_bio.pod b/deps/openssl/openssl/doc/man3/d2i_PKCS8PrivateKey_bio.pod
      index 5b5371b70f19cd..51d8aa8cfb474d 100644
      --- a/deps/openssl/openssl/doc/man3/d2i_PKCS8PrivateKey_bio.pod
      +++ b/deps/openssl/openssl/doc/man3/d2i_PKCS8PrivateKey_bio.pod
      @@ -8,7 +8,7 @@ i2d_PKCS8PrivateKey_nid_bio, i2d_PKCS8PrivateKey_nid_fp - PKCS#8 format private
       
       =head1 SYNOPSIS
       
      - #include 
      + #include 
       
        EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u);
        EVP_PKEY *d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u);
      @@ -64,7 +64,7 @@ L
       
       =head1 COPYRIGHT
       
      -Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2002-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/d2i_RSAPrivateKey.pod b/deps/openssl/openssl/doc/man3/d2i_RSAPrivateKey.pod
      index b4f5b466090004..08cd2c85e5bd79 100644
      --- a/deps/openssl/openssl/doc/man3/d2i_RSAPrivateKey.pod
      +++ b/deps/openssl/openssl/doc/man3/d2i_RSAPrivateKey.pod
      @@ -28,7 +28,6 @@ d2i_RSA_PUBKEY_fp,
       d2i_DHparams,
       d2i_DHparams_bio,
       d2i_DHparams_fp,
      -d2i_ECPKParameters,
       d2i_ECParameters,
       d2i_ECPrivateKey,
       d2i_ECPrivateKey_bio,
      @@ -56,7 +55,6 @@ i2d_DSA_PUBKEY,
       i2d_DSA_PUBKEY_bio,
       i2d_DSA_PUBKEY_fp,
       i2d_DSAparams,
      -i2d_ECPKParameters,
       i2d_ECParameters,
       i2d_ECPrivateKey,
       i2d_ECPrivateKey_bio,
      @@ -205,7 +203,7 @@ I and I as follows:
       
       =item BPrivateKey>() translates into:
       
      - int selection = EVP_PKEY_PRIVATE_KEY;
      + int selection = EVP_PKEY_KEYPAIR;
        const char *structure = "type-specific";
       
       =item BPublicKey>() translates into:
      @@ -309,7 +307,7 @@ L
       
       =head1 COPYRIGHT
       
      -Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man3/d2i_X509.pod b/deps/openssl/openssl/doc/man3/d2i_X509.pod
      index c79a964e6d7f98..00efb603581661 100644
      --- a/deps/openssl/openssl/doc/man3/d2i_X509.pod
      +++ b/deps/openssl/openssl/doc/man3/d2i_X509.pod
      @@ -53,6 +53,7 @@ d2i_DIST_POINT,
       d2i_DIST_POINT_NAME,
       d2i_DSA_SIG,
       d2i_ECDSA_SIG,
      +d2i_ECPKParameters,
       d2i_EDIPARTYNAME,
       d2i_ESS_CERT_ID,
       d2i_ESS_CERT_ID_V2,
      @@ -223,6 +224,7 @@ i2d_DIST_POINT,
       i2d_DIST_POINT_NAME,
       i2d_DSA_SIG,
       i2d_ECDSA_SIG,
      +i2d_ECPKParameters,
       i2d_EDIPARTYNAME,
       i2d_ESS_CERT_ID,
       i2d_ESS_CERT_ID_V2,
      @@ -388,10 +390,12 @@ to the returned structure is also written to I<*a>.  If an error occurred
       then NULL is returned.
       
       On a successful return, if I<*a> is not NULL then it is assumed that I<*a>
      -contains a valid B> structure and an attempt is made to reuse it. This
      -"reuse" capability is present for historical compatibility but its use is
      -B (see BUGS below, and the discussion in the RETURN
      -VALUES section).
      +contains a valid B> structure and an attempt is made to reuse it.
      +For B> structures where it matters it is possible to set up a library
      +context on the decoded structure this way (see the B section).
      +However using the "reuse" capability for other purposes is B (see B below, and the discussion in the B
      +section).
       
       B_bio>() is similar to B>() except it attempts
       to parse data from BIO I.
      @@ -536,6 +540,22 @@ Alternative technique:
        if (d2i_X509(&x, &p, len) == NULL)
            /* error */
       
      +Setting up a library context and property query:
      +
      + X509 *x;
      + unsigned char *buf;
      + const unsigned char *p;
      + int len;
      + OSSL_LIB_CTX *libctx = ....;
      + const char *propq = ....;
      +
      + /* Set up buf and len to point to the input buffer. */
      + p = buf;
      + x = X509_new_ex(libctx, propq);
      +
      + if (d2i_X509(&x, &p, len) == NULL)
      +     /* error, x was freed and NULL assigned to it (see RETURN VALUES) */
      +
       =head1 WARNINGS
       
       Using a temporary variable is mandatory. A common
      diff --git a/deps/openssl/openssl/doc/man5/x509v3_config.pod b/deps/openssl/openssl/doc/man5/x509v3_config.pod
      index 1830092394bc90..044904022d894e 100644
      --- a/deps/openssl/openssl/doc/man5/x509v3_config.pod
      +++ b/deps/openssl/openssl/doc/man5/x509v3_config.pod
      @@ -93,7 +93,7 @@ numeric identifier, as shown here:
        email.2 = steve@example.org
       
       The syntax of raw extensions is defined by the source code that parses
      -the extension but should be documened.
      +the extension but should be documented.
       See L for an example of a raw extension.
       
       If an extension type is unsupported, then the I extension syntax
      @@ -590,7 +590,7 @@ L
       
       =head1 COPYRIGHT
       
      -Copyright 2004-2021 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2004-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man7/EVP_KDF-PKCS12KDF.pod b/deps/openssl/openssl/doc/man7/EVP_KDF-PKCS12KDF.pod
      index 7edde1dc9bf7f0..98653656986427 100644
      --- a/deps/openssl/openssl/doc/man7/EVP_KDF-PKCS12KDF.pod
      +++ b/deps/openssl/openssl/doc/man7/EVP_KDF-PKCS12KDF.pod
      @@ -46,6 +46,9 @@ RFC 7292 section B.3.
       
       =head1 NOTES
       
      +This algorithm is not available in the FIPS provider as it is not FIPS
      +approvable.
      +
       A typical application of this algorithm is to derive keying material for an
       encryption algorithm from a password in the "pass", a salt in "salt",
       and an iteration count.
      @@ -68,7 +71,8 @@ L,
       L,
       L,
       L,
      -L
      +L,
      +L
       
       =head1 HISTORY
       
      @@ -76,7 +80,7 @@ This functionality was added in OpenSSL 3.0.
       
       =head1 COPYRIGHT
       
      -Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
      +Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
       
       Licensed under the Apache License 2.0 (the "License").  You may not use
       this file except in compliance with the License.  You can obtain a copy
      diff --git a/deps/openssl/openssl/doc/man7/migration_guide.pod b/deps/openssl/openssl/doc/man7/migration_guide.pod
      index 1847e9813cbbaf..61641324a7fc9d 100644
      --- a/deps/openssl/openssl/doc/man7/migration_guide.pod
      +++ b/deps/openssl/openssl/doc/man7/migration_guide.pod
      @@ -306,6 +306,15 @@ context and property query and will call an extended version of the key/IV
       derivation function which supports these parameters. This includes
       L, L and L.
       
      +=head4 PKCS#12 KDF versus FIPS
      +
      +Unlike in 1.x.y, the PKCS12KDF algorithm used when a PKCS#12 structure
      +is created with a MAC that does not work with the FIPS provider as the PKCS12KDF
      +is not a FIPS approvable mechanism.
      +
      +See L, L, L,
      +L.
      +
       =head4 Windows thread synchronization changes
       
       Windows thread synchronization uses read/write primitives (SRWLock) when
      diff --git a/deps/openssl/openssl/fuzz/build.info b/deps/openssl/openssl/fuzz/build.info
      index 7b26b8c15228f8..dc976b70f06796 100644
      --- a/deps/openssl/openssl/fuzz/build.info
      +++ b/deps/openssl/openssl/fuzz/build.info
      @@ -9,7 +9,7 @@
       -}
       
       IF[{- !$disabled{"fuzz-afl"} || !$disabled{"fuzz-libfuzzer"} -}]
      -  PROGRAMS{noinst}=asn1 asn1parse bignum bndiv client conf crl server x509
      +  PROGRAMS{noinst}=asn1 asn1parse bignum bndiv client conf crl server
       
         IF[{- !$disabled{"cmp"} -}]
           PROGRAMS{noinst}=cmp
      @@ -23,6 +23,10 @@ IF[{- !$disabled{"fuzz-afl"} || !$disabled{"fuzz-libfuzzer"} -}]
           PROGRAMS{noinst}=ct
         ENDIF
       
      +  IF[{- !$disabled{"ocsp"} -}]
      +    PROGRAMS{noinst}=x509
      +  ENDIF
      +
         SOURCE[asn1]=asn1.c driver.c fuzz_rand.c
         INCLUDE[asn1]=../include {- $ex_inc -}
         DEPEND[asn1]=../libcrypto ../libssl {- $ex_lib -}
      @@ -73,7 +77,7 @@ IF[{- !$disabled{"fuzz-afl"} || !$disabled{"fuzz-libfuzzer"} -}]
       ENDIF
       
       IF[{- !$disabled{tests} -}]
      -  PROGRAMS{noinst}=asn1-test asn1parse-test bignum-test bndiv-test client-test conf-test crl-test server-test x509-test
      +  PROGRAMS{noinst}=asn1-test asn1parse-test bignum-test bndiv-test client-test conf-test crl-test server-test
       
         IF[{- !$disabled{"cmp"} -}]
           PROGRAMS{noinst}=cmp-test
      @@ -87,6 +91,10 @@ IF[{- !$disabled{tests} -}]
           PROGRAMS{noinst}=ct-test
         ENDIF
       
      +  IF[{- !$disabled{"ocsp"} -}]
      +    PROGRAMS{noinst}=x509-test
      +  ENDIF
      +
         SOURCE[asn1-test]=asn1.c test-corpus.c fuzz_rand.c
         INCLUDE[asn1-test]=../include
         DEPEND[asn1-test]=../libcrypto ../libssl
      diff --git a/deps/openssl/openssl/fuzz/x509.c b/deps/openssl/openssl/fuzz/x509.c
      index 78061d176af792..e2d2639164c01d 100644
      --- a/deps/openssl/openssl/fuzz/x509.c
      +++ b/deps/openssl/openssl/fuzz/x509.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2016-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License");
        * you may not use this file except in compliance with the License.
      @@ -9,6 +9,7 @@
        */
       
       #include 
      +#include 
       #include 
       #include 
       #include 
      @@ -17,31 +18,131 @@
       int FuzzerInitialize(int *argc, char ***argv)
       {
           FuzzerSetRand();
      -    OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
      +    OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS
      +       | OPENSSL_INIT_ADD_ALL_CIPHERS | OPENSSL_INIT_ADD_ALL_DIGESTS, NULL);
           ERR_clear_error();
           CRYPTO_free_ex_index(0, -1);
           return 1;
       }
       
      +static int cb(int ok, X509_STORE_CTX *ctx)
      +{
      +    return 1;
      +}
      +
       int FuzzerTestOneInput(const uint8_t *buf, size_t len)
       {
           const unsigned char *p = buf;
      +    size_t orig_len = len;
           unsigned char *der = NULL;
      +    BIO *bio = NULL;
      +    X509 *x509_1 = NULL, *x509_2 = NULL;
      +    X509_STORE *store = NULL;
      +    X509_VERIFY_PARAM *param = NULL;
      +    X509_STORE_CTX *ctx = NULL;
      +    X509_CRL *crl = NULL;
      +    STACK_OF(X509_CRL) *crls = NULL;
      +    STACK_OF(X509) *certs = NULL;
      +    OCSP_RESPONSE *resp = NULL;
      +    OCSP_BASICRESP *bs = NULL;
      +    OCSP_CERTID *id = NULL;
      +
      +    x509_1 = d2i_X509(NULL, &p, len);
      +    if (x509_1 == NULL)
      +        goto err;
      +
      +    bio = BIO_new(BIO_s_null());
      +    if (bio == NULL)
      +        goto err;
      +
      +    /* This will load and print the public key as well as extensions */
      +    X509_print(bio, x509_1);
      +    BIO_free(bio);
      +
      +    X509_issuer_and_serial_hash(x509_1);
      +
      +    i2d_X509(x509_1, &der);
      +    OPENSSL_free(der);
      +
      +    len = orig_len - (p - buf);
      +    x509_2 = d2i_X509(NULL, &p, len);
      +    if (x509_2 == NULL)
      +        goto err;
      +
      +    len = orig_len - (p - buf);
      +    crl = d2i_X509_CRL(NULL, &p, len);
      +    if (crl == NULL)
      +        goto err;
      +
      +    len = orig_len - (p - buf);
      +    resp = d2i_OCSP_RESPONSE(NULL, &p, len);
      +
      +    store = X509_STORE_new();
      +    X509_STORE_add_cert(store, x509_2);
       
      -    X509 *x509 = d2i_X509(NULL, &p, len);
      -    if (x509 != NULL) {
      -        BIO *bio = BIO_new(BIO_s_null());
      -        /* This will load and print the public key as well as extensions */
      -        X509_print(bio, x509);
      -        BIO_free(bio);
      +    param = X509_VERIFY_PARAM_new();
      +    X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_NO_CHECK_TIME);
      +    X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_X509_STRICT);
      +    X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_PARTIAL_CHAIN);
      +    X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_CRL_CHECK);
       
      -        X509_issuer_and_serial_hash(x509);
      +    X509_STORE_set1_param(store, param);
       
      -        i2d_X509(x509, &der);
      -        OPENSSL_free(der);
      +    X509_STORE_set_verify_cb(store, cb);
       
      -        X509_free(x509);
      +    ctx = X509_STORE_CTX_new();
      +    if (ctx == NULL)
      +        goto err;
      +
      +    X509_STORE_CTX_init(ctx, store, x509_1, NULL);
      +
      +    if (crl != NULL) {
      +        crls = sk_X509_CRL_new_null();
      +        if (crls == NULL)
      +            goto err;
      +
      +        sk_X509_CRL_push(crls, crl);
      +        X509_STORE_CTX_set0_crls(ctx, crls);
           }
      +
      +    X509_verify_cert(ctx);
      +
      +    if (resp != NULL)
      +        bs = OCSP_response_get1_basic(resp);
      +
      +    if (bs != NULL) {
      +        int status, reason;
      +        ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd;
      +
      +        certs = sk_X509_new_null();
      +        if (certs == NULL)
      +            goto err;
      +
      +        sk_X509_push(certs, x509_1);
      +        sk_X509_push(certs, x509_2);
      +
      +        OCSP_basic_verify(bs, certs, store, OCSP_PARTIAL_CHAIN);
      +
      +        id = OCSP_cert_to_id(NULL, x509_1, x509_2);
      +        if (id == NULL)
      +            goto err;
      +        OCSP_resp_find_status(bs, id, &status, &reason, &revtime, &thisupd,
      +                              &nextupd);
      +    }
      +
      +err:
      +    X509_STORE_CTX_free(ctx);
      +    X509_VERIFY_PARAM_free(param);
      +    X509_STORE_free(store);
      +    X509_free(x509_1);
      +    X509_free(x509_2);
      +    X509_CRL_free(crl);
      +    OCSP_CERTID_free(id);
      +    OCSP_BASICRESP_free(bs);
      +    OCSP_RESPONSE_free(resp);
      +    sk_X509_CRL_free(crls);
      +    sk_X509_free(certs);
      +
           ERR_clear_error();
           return 0;
       }
      diff --git a/deps/openssl/openssl/include/openssl/cmserr.h b/deps/openssl/openssl/include/openssl/cmserr.h
      index d48c2a4ab89f03..f2d7708f10c8d6 100644
      --- a/deps/openssl/openssl/include/openssl/cmserr.h
      +++ b/deps/openssl/openssl/include/openssl/cmserr.h
      @@ -1,6 +1,6 @@
       /*
        * Generated by util/mkerr.pl DO NOT EDIT
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -113,6 +113,7 @@
       #  define CMS_R_UNSUPPORTED_LABEL_SOURCE                   193
       #  define CMS_R_UNSUPPORTED_RECIPIENTINFO_TYPE             155
       #  define CMS_R_UNSUPPORTED_RECIPIENT_TYPE                 154
      +#  define CMS_R_UNSUPPORTED_SIGNATURE_ALGORITHM            195
       #  define CMS_R_UNSUPPORTED_TYPE                           156
       #  define CMS_R_UNWRAP_ERROR                               157
       #  define CMS_R_UNWRAP_FAILURE                             180
      diff --git a/deps/openssl/openssl/include/openssl/evp.h b/deps/openssl/openssl/include/openssl/evp.h
      index 49e8e1df786516..e64072f9656263 100644
      --- a/deps/openssl/openssl/include/openssl/evp.h
      +++ b/deps/openssl/openssl/include/openssl/evp.h
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -85,6 +85,8 @@
       /* Easy to use macros for EVP_PKEY related selections */
       # define EVP_PKEY_KEY_PARAMETERS                                            \
           ( OSSL_KEYMGMT_SELECT_ALL_PARAMETERS )
      +# define EVP_PKEY_PRIVATE_KEY                                               \
      +    ( EVP_PKEY_KEY_PARAMETERS | OSSL_KEYMGMT_SELECT_PRIVATE_KEY )
       # define EVP_PKEY_PUBLIC_KEY                                                \
           ( EVP_PKEY_KEY_PARAMETERS | OSSL_KEYMGMT_SELECT_PUBLIC_KEY )
       # define EVP_PKEY_KEYPAIR                                                   \
      diff --git a/deps/openssl/openssl/include/openssl/pkcs7.h.in b/deps/openssl/openssl/include/openssl/pkcs7.h.in
      index f5c55a3fbe5761..006b38b604110b 100644
      --- a/deps/openssl/openssl/include/openssl/pkcs7.h.in
      +++ b/deps/openssl/openssl/include/openssl/pkcs7.h.in
      @@ -1,7 +1,7 @@
       /*
        * {- join("\n * ", @autowarntext) -}
        *
      - * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -57,8 +57,8 @@ typedef struct pkcs7_signer_info_st {
           PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
           X509_ALGOR *digest_alg;
           STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
      -    X509_ALGOR *digest_enc_alg;
      -    ASN1_OCTET_STRING *enc_digest;
      +    X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
      +    ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
           STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
           /* The private key to sign with */
           EVP_PKEY *pkey;
      diff --git a/deps/openssl/openssl/providers/fips-sources.checksums b/deps/openssl/openssl/providers/fips-sources.checksums
      index 42785c33a0d2e0..fa977f5a983829 100644
      --- a/deps/openssl/openssl/providers/fips-sources.checksums
      +++ b/deps/openssl/openssl/providers/fips-sources.checksums
      @@ -21,7 +21,7 @@ c56c324667b67d726e040d70379efba5b270e2937f403c1b5979018b836903c7  crypto/aes/asm
       c7c6694480bb5319690f94826139a93f5c460ebea6dba101b520a76cb956ec93  crypto/aes/asm/aesni-x86_64.pl
       f3a8f3c960c0f47aaa8fc2633d18b14e7c7feeccc536b0115a08bc58333122b6  crypto/aes/asm/aesp8-ppc.pl
       e397a5781893e97dd90a5a52049633be12a43f379ec5751bca2a6350c39444c8  crypto/aes/asm/aest4-sparcv9.pl
      -a097f9d71de7cefa8e93629033ff1986fb01128623ec051d9b5afef55c0e5ebb  crypto/aes/asm/aesv8-armx.pl
      +e3955352a92d56905d63e68937e4758f13190a14a10a3dcb1e5c641c49913c0c  crypto/aes/asm/aesv8-armx.pl
       5e8005fdb6641df465bdda20c3476f7176e6bcd63d5073044a0c02a327c7f172  crypto/aes/asm/bsaes-armv7.pl
       0726a2c4c15c27a12b2f7d5e16863df4a1b1daa7b7d9b728f621b2b224d290e6  crypto/aes/asm/bsaes-x86_64.pl
       1ff94d6bf6c8ae4809f64657eb89260fe3cb22137f649d3c73f72cb190258196  crypto/aes/asm/vpaes-armv8.pl
      @@ -79,7 +79,7 @@ d94295953ab91469fe2b9da2a542b8ea11ac38551ecde8f8202b7f645c2dea16  crypto/bn/bn_d
       74b63a4515894592b7241fb30b91b21510beaa3d397809e3d74bc9a73e879d18  crypto/bn/bn_div.c
       a29b8b7fa8460f11e50f880e3c3c9e0755b93889bcbb5476206c4d938a9c5735  crypto/bn/bn_exp.c
       ec2b6e3af6df473a23e7f1a8522f2554cb0eb5d34e3282458c4a66d242278434  crypto/bn/bn_exp2.c
      -1abab2cc5466b005b939d156e7d8664a4d42a191c9040dbb83941269d6844f0c  crypto/bn/bn_gcd.c
      +baba7c8ae95af6aa36bc9f4be3a2eed33d500451e568ca4bfc6bc7cb48d4f7ea  crypto/bn/bn_gcd.c
       4d6cc7ed36978247a191df1eea0120f8ee97b639ba228793dabe5a8355a1a609  crypto/bn/bn_gf2m.c
       081e8a6abc23599307dab3b1a92113a65e0bf8717cbc40c970c7469350bc4581  crypto/bn/bn_intern.c
       602ed46fbfe12c899dfb7d9d99ff0dbfff96b454fce3cd02817f3e2488dd9192  crypto/bn/bn_kron.c
      @@ -122,20 +122,20 @@ eeef5722ad56bf1af2ff71681bcc8b8525bc7077e973c98cee920ce9bcc66c81  crypto/des/ecb
       61926e30dd940616e80936d1c94c5f522daf0d475fb3a40a9e589e78f322901e  crypto/des/set_key.c
       8344811b14d151f6cd40a7bc45c8f4a1106252b119c1d5e6a589a023f39b107d  crypto/des/spr.h
       816472a54c273906d0a2b58650e0b9d28cc2c8023d120f0d77160f1fe34c4ca3  crypto/dh/dh_backend.c
      -d2d0569bea2598bd405f23b60e5283a6ce353f1145a25ff8f28cf15711743156  crypto/dh/dh_check.c
      +fcbfe5acb73e1b4094efec56a754b803d2c1a53644c78cf6a73ae868e3f3886d  crypto/dh/dh_check.c
       7838e9a35870b0fbcba0aff2f52a2439f64d026e9922bce6e5978c2f22c51120  crypto/dh/dh_gen.c
       6b17861887b2535159b9e6ca4f927767dad3e71b6e8be50055bc784f78e92d64  crypto/dh/dh_group_params.c
       a5cf5cb464b40f1bc5457dc2a6f2c5ec0f050196603cd2ba7037a23ab64adbf7  crypto/dh/dh_kdf.c
      -0afa7dd237f9b21b0cfb0de10505facd57eb07ded905d888d43a1de2356d4002  crypto/dh/dh_key.c
      -b0046b2c4e1d74ff4e93f2486a00f63728909b8a75cbdd29b9100e607f97995c  crypto/dh/dh_lib.c
      +9e61a0b5017d835b348b15e93760c42d8d899ffae4251455c7b3085cfd25294c  crypto/dh/dh_key.c
      +92345c259ea2a8c09e6d6b069d0942bd6ca4642231580f3e8148ae7a832a1115  crypto/dh/dh_lib.c
       8300775d88db0a1aa26a77eb49d6c4f7252e7fee69e1440de4c40edadc9da044  crypto/dh/dh_local.h
       bbcf4fc3067ac462a27d7277973180b7dc140df9262a686c7fbe4318ca01f7b8  crypto/dsa/dsa_backend.c
      -b9c5992089203123c3fae46e39bb4d05e19854087bca7a30ad1f82a3505deec7  crypto/dsa/dsa_check.c
      +d7e0d87494e3b3f0898a56785a219e87a2ce14416393ec32d8c0b5f539c7bdbf  crypto/dsa/dsa_check.c
       ae727bf6319eb57e682de35d75ea357921987953b3688365c710e7fba51c7c58  crypto/dsa/dsa_gen.c
       b1de1624e590dbf76f76953802ff162cc8de7c5e2eaba897313c866424d6902b  crypto/dsa/dsa_key.c
      -9e436a2e0867920c3a5ac58bc14300cad4ab2c4c8fe5e40b355dfd21bfdfe146  crypto/dsa/dsa_lib.c
      +9f4837c5abe53613a2dc1c5db81d073d4f42bd28b6a2d1e93a2b350d8e25d52a  crypto/dsa/dsa_lib.c
       f4d52d3897219786c6046bf76abb2f174655c584caa50272bf5d281720df5022  crypto/dsa/dsa_local.h
      -38062c6eebdb2f88fa0c6592837a96a49de2ae520d3ad483a3e02921c8adb094  crypto/dsa/dsa_ossl.c
      +c5c252f205482a71efeabe226d51a1c541a6ba2dfa9b8b8a70901087a9dc1667  crypto/dsa/dsa_ossl.c
       d612fd05ff98816ba6cf37f84c0e31443ad9d840ed587a7ab2066027da390325  crypto/dsa/dsa_sign.c
       53fa10cc87ac63e35df661882852dc46ae68e6fee83b842f1aeefe00b8900ee1  crypto/dsa/dsa_vrf.c
       d9722ad8c6b6e209865a921f3cda831d09bf54a55cacd1edd9802edb6559190a  crypto/ec/asm/ecp_nistp521-ppc64.pl
      @@ -193,7 +193,7 @@ b4b7c683279454ba41438f50a015cb63ef056ccb9be0168918dfbae00313dc68  crypto/ec/ecp_
       0e75a058dcbbb62cfe39fec6c4a85385dc1a8fce794e4278ce6cebb29763b82b  crypto/evp/dh_support.c
       1af3872164b4a4757bc7896a24b4d2f8eb2cfb4cba0d872a93db69975693e0a6  crypto/evp/digest.c
       838277f228cd3025cf95a9cd435e5606ad1fb5d207bbb057aa29892e6a657c55  crypto/evp/ec_support.c
      -1c3d1b1f800b1f1f5adb1fdbdd67cdf37ca7ea93b264d1468c72a63c140873ce  crypto/evp/evp_enc.c
      +61df3942752307b7006f09d7628348a0cc9e5555469a3a8862349067a52824b7  crypto/evp/evp_enc.c
       7f10367f9b6191c4a8c01784130d26b2d778485a41cdac5fa17c9a1c4096f132  crypto/evp/evp_fetch.c
       ebe32b2895f7f9767710674352c8949efe93b4bbb5e7b71c27bb5d1822339b46  crypto/evp/evp_lib.c
       78f07bf50b6999611a4e9414ab3a20b219b0ab29ca2bd05002d6919a3f67b8eb  crypto/evp/evp_local.h
      @@ -213,11 +213,11 @@ e7e8eb5683cd3fbd409df888020dc353b65ac291361829cc4131d5bc86c9fcb3  crypto/evp/mac
       1f0e9e94e9b0ad322956521b438b78d44cfcd8eb974e8921d05f9e21ba1c05cf  crypto/evp/pmeth_gn.c
       76511fba789089a50ef87774817a5482c33633a76a94ecf7b6e8eb915585575d  crypto/evp/pmeth_lib.c
       4b2dbddf0f9ceed34c3822347138be754fb194febca1c21c46bcc3a5cce33674  crypto/evp/signature.c
      -b06cb8fd4bd95aae1f66e1e145269c82169257f1a60ef0f78f80a3d4c5131fac  crypto/ex_data.c
      +f2acfb82aac20251d05a9c252cc6c282bd44e43feac4ac2e0faf68b9a38aef57  crypto/ex_data.c
       1c8389c5d49616d491978f0f2b2a54ba82d805ec41c8f75c67853216953cf46a  crypto/ffc/ffc_backend.c
       a12af33e605315cdddd6d759e70cd9632f0f33682b9aa7103ed1ecd354fc7e55  crypto/ffc/ffc_dh.c
       854378f57707e31ad02cca6eec94369f91f327288d3665713e249c12f7b13211  crypto/ffc/ffc_key_generate.c
      -2695c9c8ad9193a8c1ab53d5d09712d50d12c91eb8d62e8a15cbc78f327afe84  crypto/ffc/ffc_key_validate.c
      +4e973d956d4ec2087994de8e963be1a512da1441f22e6e7b9cd7ee536e3ff834  crypto/ffc/ffc_key_validate.c
       8b72d5a7452b2c15aec6d20027053a83f7df89d49a3b6cfedd77e2b1a29e9fc1  crypto/ffc/ffc_params.c
       1a1d227f9a0f427d2ec93bc646c726c9cd49a84a343b4aff0c9c744fa6df05a9  crypto/ffc/ffc_params_generate.c
       73dac805abab36cd9df53a421221c71d06a366a4ce479fa788be777f11b47159  crypto/ffc/ffc_params_validate.c
      @@ -225,7 +225,7 @@ a12af33e605315cdddd6d759e70cd9632f0f33682b9aa7103ed1ecd354fc7e55  crypto/ffc/ffc
       0395c1b0834f2f4a0ca1756385f4dc1a4ef6fb925b2db3743df7f57256c5166f  crypto/hmac/hmac_local.h
       0e2d6129504d15ffaf5baa63158ccec0e4b6193a8275333956d8f868ef35127e  crypto/ia64cpuid.S
       f897493b50f4e9dd4cacb2a7accda6683c10ece602641874cdff1dac7128a751  crypto/initthread.c
      -5482c47c266523129980302426d25839fda662f1544f4b684707e6b272a952c9  crypto/lhash/lhash.c
      +7290d8d7ec31a98b17618f218d4f27b393501c7606c814a43db8af1975ad1d10  crypto/lhash/lhash.c
       5d49ce00fc06df1b64cbc139ef45c71e0faf08a33f966bc608c82d574521a49e  crypto/lhash/lhash_local.h
       f866aafae928db1b439ac950dc90744a2397dfe222672fe68b3798396190c8b0  crypto/mem_clr.c
       e14f48d4112c0efe3826b4aa390cc24045a85298cc551ec7f3f36ac4236d7d81  crypto/modes/asm/aes-gcm-armv8_64.pl
      @@ -240,7 +240,7 @@ e472d73d06933667a51a0af973479993eed333c71b43af03095450acb36dbeb4  crypto/modes/a
       26f55a57e77f774d17dfba93d757f78edfa3a03f68a71ffa37ccf3bfc468b1e2  crypto/modes/asm/ghash-x86.pl
       72744131007d2389c09665a59a862f5f6bb61b64bd3456e9b400985cb56586b8  crypto/modes/asm/ghash-x86_64.pl
       a4e9f2e496bd9362b17a1b5989aa4682647cefcff6117f0607122a9e11a9dfd9  crypto/modes/asm/ghashp8-ppc.pl
      -0029b5beb1d4cd4c5ad47164c23f3e7c9d1eaff66ef54af025ee26795b11a1c7  crypto/modes/asm/ghashv8-armx.pl
      +69a13f423ca74c22543900c14aef4a848e3bc75504b65d2f51c6903aebcc17a7  crypto/modes/asm/ghashv8-armx.pl
       65112dfe63cd59487e7bdb1706b44acfcf48ecede12cc3ae51daa5b661f41f06  crypto/modes/cbc128.c
       1611e73dc1e01b5c2201f51756a7405b7673aa0bb872e2957d1ec80c3530486f  crypto/modes/ccm128.c
       d8c2f256532a4b94db6d03aea5cb609cccc938069f644b2fc77c5015648d148d  crypto/modes/cfb128.c
      @@ -252,29 +252,29 @@ e55a816c356b2d526bc6e40c8b81afa02576e4d44c7d7b6bbe444fb8b01aad41  crypto/modes/w
       8aa2504f84a0637b5122f0c963c9d82773ba248bad972ab92be7169995d162b5  crypto/o_str.c
       8ddbbdf43131c10dcd4428aef0eff2b1e98b0410accada0fad41a4925868beef  crypto/packet.c
       a20bfd927d69737c86ca95d3cf636afa8cefd8fe23412d1a3897644a0da21211  crypto/param_build.c
      -c2fe815fb3fd5efe9a6544cae55f9469063a0f6fb728361737b927f6182ae0bb  crypto/param_build_set.c
      +2a0f272dd553b698e8c6fa57962694ebd6064cb03fe26a60df529205568d315d  crypto/param_build_set.c
       0e4a5388a92fabbe5a540176c0b4c5ce258b78dc9168ecc2e805352a06aaf0ba  crypto/params.c
       4fda13f6af05d80b0ab89ec4f5813c274a21a9b4565be958a02d006236cef05c  crypto/params_dup.c
       a0097ff2da8955fe15ba204cb54f3fd48a06f846e2b9826f507b26acf65715c3  crypto/params_from_text.c
       97cb7414dc2f165d5849ee3b46cdfff0afb067729435d9c01a747e0ca41e230c  crypto/ppccap.c
       3ca43596a7528dec8ff9d1a3cd0d68b62640f84b1d6a8b5e4842cfd0be1133ad  crypto/ppccpuid.pl
       b4d34272a0bd1fbe6562022bf7ea6259b6a5a021a48222d415be47ef5ef2a905  crypto/property/defn_cache.c
      -7da6ae864beb1a4daa4be31eb41d48141a3a7eb7a263a4937a6889e05656a595  crypto/property/property.c
      +3c4ade2fed4605e374d85ec1134a98da34e7124f89f44b81a754e8cfe81f14ba  crypto/property/property.c
       66da4f28d408133fb544b14aeb9ad4913e7c5c67e2826e53f0dc5bf4d8fada26  crypto/property/property_local.h
      -921305e62749aec22da4843738bee3448b61e7e30d5309beddc7141ad07a8004  crypto/property/property_parse.c
      +099407e68e705f1458b701b9336f633565fc0843355fedf1ec83794349548a51  crypto/property/property_parse.c
       a7cefda6a117550e2c76e0f307565ce1e11640b11ba10c80e469a837fd1212a3  crypto/property/property_query.c
       065698c8d88a5facc0cbc02a3bd0c642c94687a8c5dd79901c942138b406067d  crypto/property/property_string.c
      -9653ec9c1476350a94b9cc7f8be3d99961fd803870c9ac03315298d2909a6a8e  crypto/provider_core.c
      +0ba5d0297837940c972224c97cbbf3ea4a723c1eed9ce1112538c9bb26208639  crypto/provider_core.c
       d0af10d4091b2032aac1b7db80f8c2e14fa7176592716b25b9437ab6b53c0a89  crypto/provider_local.h
       5ba2e1c74ddcd0453d02e32612299d1eef18eff8493a7606c15d0dc3738ad1d9  crypto/provider_predefined.c
       a5a4472636b8b0095ad8d4acd37e275ad79da1a67ecff7b7b5c3e46c9ebc65b7  crypto/rand/rand_lib.c
       fd03b9bb2c23470fa40880ed3bf9847bb17d50592101a78c0ad7a0f121209788  crypto/rand/rand_local.h
       f0c8792a99132e0b9c027cfa7370f45594a115934cdc9e8f23bdd64abecaf7fd  crypto/rsa/rsa_acvp_test_params.c
      -9e7dd6fc91d3266d4aa4f0f41b7986381122b7d98114e63ebf04c5ee298b5fda  crypto/rsa/rsa_backend.c
      +5834d7c518ad53ea0dd3db811c0e51568c81cc6c117012030101d29003d0725c  crypto/rsa/rsa_backend.c
       38a102cd1da1f6ca5a46e6a22f018237964336274385f5c70cbedcaa6997647e  crypto/rsa/rsa_chk.c
       e32cfa04221a2a3ea33f7bcb93ee51b84cbeba97e94c1fbf6e420b24f97fc9ce  crypto/rsa/rsa_crpt.c
       e995da1c2e5007bd7f5907f369fe45ed15f4e657143a85078c755bd5e6863d0b  crypto/rsa/rsa_gen.c
      -74ed75d1d8e0844800504a137bfd81c3dbcb6c4bd58b5d5fe9d0a362092b6e88  crypto/rsa/rsa_lib.c
      +f2222f270e57559537d3da8abbeb1390bc5376b73dae59d536af6e73eb48bba0  crypto/rsa/rsa_lib.c
       a65e85be5269d8cb88e86b3413c978fa8994419a671092cbf104ff1a08fda23b  crypto/rsa/rsa_local.h
       cf0b75cd54b61b9b9a290ef18d0ddce9fb26a029a54eb3f720d9b25188440f00  crypto/rsa/rsa_mp_names.c
       5c60f6e05db82e13178d805deb1947b8eee4a905e6e77523d3b288da70a46bb5  crypto/rsa/rsa_none.c
      @@ -344,7 +344,7 @@ c50c584c55e56347bb43aca4b796b5344d70daece3061f586b79c871c21f5d1a  crypto/sparse_
       8da78169fa8c09dc3c29c9bf1602b22e88c5eac4815e274ba1864c166e31584b  crypto/stack/stack.c
       7b4efa594d8d1f3ecbf4605cf54f72fb296a3b1d951bdc69e415aaa08f34e5c8  crypto/threads_lib.c
       a41ae93a755e2ec89b3cb5b4932e2b508fdda92ace2e025a2650a6da0e9e972c  crypto/threads_none.c
      -2637a8727dee790812b000f2e02b336f7907949df633dda72938bbaafdb204fe  crypto/threads_pthread.c
      +3729e2bd36f945808b578e0d89fac0fcb3114e4fc9381614bcbd8a9869991716  crypto/threads_pthread.c
       88423960f0414f6fd41fba4f4c67f9f7260c2741e4788adcd52493e895ec8027  crypto/threads_win.c
       fd6c27cf7c6b5449b17f2b725f4203c4c10207f1973db09fd41571efe5de08fd  crypto/x86_64cpuid.pl
       bbec287bb9bf35379885f8f8998b7fd9e8fc22efee9e1b299109af0f33a7ee16  crypto/x86cpuid.pl
      @@ -430,7 +430,7 @@ bc9ec2be442a4f49980ba2c63c8f0da701de1f6e23d7db35d781658f833dd7b9  include/openss
       61c76ee3f12ed0e42503a56421ca00f1cb9a0f4caa5f9c4421c374bcd45917d7  include/openssl/encoder.h
       69dd983f45b8ccd551f084796519446552963a18c52b70470d978b597c81b2dc  include/openssl/encodererr.h
       c6ee8f17d7252bdd0807a124dc6d50a95c32c04e17688b7c2e061998570b7028  include/openssl/err.h.in
      -12ec111c0e22581e0169be5e1838353a085fb51e3042ef59a7db1cee7da73c5b  include/openssl/evp.h
      +b23bf3e2d0a60fe4d768afbe7aab48b47791e1274ae42b28895255119ae7f61d  include/openssl/evp.h
       5bd1b5dcd14067a1fe490d49df911002793c0b4f0bd4492cd8f71cfed7bf9f2a  include/openssl/evperr.h
       5381d96fe867a4ee0ebc09b9e3a262a0d7a27edc5f91dccfb010c7d713cd0820  include/openssl/fips_names.h
       b1d41beba560a41383f899a361b786e04f889106fb5960ec831b0af7996c9783  include/openssl/fipskey.h.in
      @@ -567,18 +567,18 @@ abe2b0f3711eaa34846e155cffc9242e4051c45de896f747afd5ac9d87f637dc  providers/impl
       589f6133799da80760e8bc3ab0191a341ab6d4d2706e92e6eb4a24b0250fefa6  providers/implementations/kdfs/tls1_prf.c
       4d4a6d9a562d2dcfec941d3f113a544663b5ac2fbe4accd89ec70c1cc11751d0  providers/implementations/kdfs/x942kdf.c
       6b6c776b12664164f3cb54c21df61e1c4477c7855d89431a16fb338cdae58d43  providers/implementations/kem/rsa_kem.c
      -37120f8a420de0e44b7dc1f31b50d59520e5318cf546e83684e0c3de5c7b76c5  providers/implementations/keymgmt/dh_kmgmt.c
      -2a4493c9e68f41d37d7ec69c272005c6df7b1a34db2d49663f52e836e4fd888c  providers/implementations/keymgmt/dsa_kmgmt.c
      +11a0d0fb88ed88e965f10b3a0ef6c880f60341df995128f57ad943053aaf15b2  providers/implementations/keymgmt/dh_kmgmt.c
      +a329f57cb041cd03907e9d996fbc2f378ee116c7f8d7fbf1ea08b7a5df7e0304  providers/implementations/keymgmt/dsa_kmgmt.c
       9bc88451d3ae110c7a108ee73d3b3b6bda801ec3494d2dfb9c9970b85c2d34fe  providers/implementations/keymgmt/ec_kmgmt.c
       258ae17bb2dd87ed1511a8eb3fe99eed9b77f5c2f757215ff6b3d0e8791fc251  providers/implementations/keymgmt/ec_kmgmt_imexport.inc
      -d77ece2494e6b12a6201a2806ee5fb24a6dc2fa3e1891a46012a870e0b781ab1  providers/implementations/keymgmt/ecx_kmgmt.c
      +011c36aad6834729043f23eacab417732541ee23916d9afa5bb9164862be00bb  providers/implementations/keymgmt/ecx_kmgmt.c
       053a2be39a87f50b877ebdbbf799cf5faf8b2de33b04311d819d212ee1ea329b  providers/implementations/keymgmt/kdf_legacy_kmgmt.c
      -e30357311e4a3e1c78266af6315fd1fc99584bfb09f4a7cd0ddc7261cf1e17e1  providers/implementations/keymgmt/mac_legacy_kmgmt.c
      +1646b477fa231dd0f6c22444c99098f9b447cab0d39ff69b811262469d4dbe09  providers/implementations/keymgmt/mac_legacy_kmgmt.c
       19f22fc70a6321441e56d5bd4aab3d01d52d17069d4e4b5cefce0f411ecece75  providers/implementations/keymgmt/rsa_kmgmt.c
       aeb42590728ca87b916b8a3d337351b1c82ee0747213e5ce740c2350b3db7185  providers/implementations/macs/cmac_prov.c
       e69aa06f8f3c6f5a26702b9f44a844b8589b99dc0ee590953a29e8b9ef10acbe  providers/implementations/macs/gmac_prov.c
       895c8dc7235b9ad5ff893be0293cbc245a5455e8850195ac7d446646e4ea71d0  providers/implementations/macs/hmac_prov.c
      -f75fbfe5348f93ad610da7d310f4e8fecf18c0549f27605da25d393c33e0edc2  providers/implementations/macs/kmac_prov.c
      +8640b63fd8325aaf8f7128d6cc448d9af448a65bf51a8978075467d33a67944e  providers/implementations/macs/kmac_prov.c
       bf30274dd6b528ae913984775bd8f29c6c48c0ef06d464d0f738217727b7aa5c  providers/implementations/rands/crngt.c
       9d23df7f99beec7392c9d4ed813407050bc2d150098888fe802e2c9705fc33fa  providers/implementations/rands/drbg.c
       bb5f8161a80d0d1a7ee919af2b167972b00afd62e326252ca6aa93101f315f19  providers/implementations/rands/drbg_ctr.c
      diff --git a/deps/openssl/openssl/providers/fips.checksum b/deps/openssl/openssl/providers/fips.checksum
      index ec1978c7fedec1..347a9614339ee8 100644
      --- a/deps/openssl/openssl/providers/fips.checksum
      +++ b/deps/openssl/openssl/providers/fips.checksum
      @@ -1 +1 @@
      -f07990ec634ec6ea3c8c42a664768debcf92a1b0c39bde7041c24df33dd7f052  providers/fips-sources.checksums
      +114b59f288ec2d6ddfcd26187f43cad614c6d4e4a7aba24410494f46f627671c  providers/fips-sources.checksums
      diff --git a/deps/openssl/openssl/providers/implementations/ciphers/cipher_chacha20.c b/deps/openssl/openssl/providers/implementations/ciphers/cipher_chacha20.c
      index 386c865d832e0f..ef80a515d756dc 100644
      --- a/deps/openssl/openssl/providers/implementations/ciphers/cipher_chacha20.c
      +++ b/deps/openssl/openssl/providers/implementations/ciphers/cipher_chacha20.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -21,6 +21,7 @@
       
       static OSSL_FUNC_cipher_newctx_fn chacha20_newctx;
       static OSSL_FUNC_cipher_freectx_fn chacha20_freectx;
      +static OSSL_FUNC_cipher_dupctx_fn chacha20_dupctx;
       static OSSL_FUNC_cipher_get_params_fn chacha20_get_params;
       static OSSL_FUNC_cipher_get_ctx_params_fn chacha20_get_ctx_params;
       static OSSL_FUNC_cipher_set_ctx_params_fn chacha20_set_ctx_params;
      @@ -64,6 +65,25 @@ static void chacha20_freectx(void *vctx)
           }
       }
       
      +static void *chacha20_dupctx(void *vctx)
      +{
      +    PROV_CHACHA20_CTX *ctx = (PROV_CHACHA20_CTX *)vctx;
      +    PROV_CHACHA20_CTX *dupctx = NULL;
      +
      +    if (ctx != NULL) {
      +        dupctx = OPENSSL_memdup(ctx, sizeof(*dupctx));
      +        if (dupctx != NULL && dupctx->base.tlsmac != NULL && dupctx->base.alloced) {
      +            dupctx->base.tlsmac = OPENSSL_memdup(dupctx->base.tlsmac,
      +                                                 dupctx->base.tlsmacsize);
      +            if (dupctx->base.tlsmac == NULL) {
      +                OPENSSL_free(dupctx);
      +                dupctx = NULL;
      +            }
      +        }
      +    }
      +    return dupctx;
      +}
      +
       static int chacha20_get_params(OSSL_PARAM params[])
       {
           return ossl_cipher_generic_get_params(params, 0, CHACHA20_FLAGS,
      @@ -187,6 +207,7 @@ int ossl_chacha20_dinit(void *vctx, const unsigned char *key, size_t keylen,
       const OSSL_DISPATCH ossl_chacha20_functions[] = {
           { OSSL_FUNC_CIPHER_NEWCTX, (void (*)(void))chacha20_newctx },
           { OSSL_FUNC_CIPHER_FREECTX, (void (*)(void))chacha20_freectx },
      +    { OSSL_FUNC_CIPHER_DUPCTX, (void (*)(void))chacha20_dupctx },
           { OSSL_FUNC_CIPHER_ENCRYPT_INIT, (void (*)(void))ossl_chacha20_einit },
           { OSSL_FUNC_CIPHER_DECRYPT_INIT, (void (*)(void))ossl_chacha20_dinit },
           { OSSL_FUNC_CIPHER_UPDATE, (void (*)(void))chacha20_update },
      diff --git a/deps/openssl/openssl/providers/implementations/encode_decode/decode_der2key.c b/deps/openssl/openssl/providers/implementations/encode_decode/decode_der2key.c
      index b9cee2571bf392..d598f7eba1acc9 100644
      --- a/deps/openssl/openssl/providers/implementations/encode_decode/decode_der2key.c
      +++ b/deps/openssl/openssl/providers/implementations/encode_decode/decode_der2key.c
      @@ -316,10 +316,14 @@ static int der2key_export_object(void *vctx,
           void *keydata;
       
           if (reference_sz == sizeof(keydata) && export != NULL) {
      +        int selection = ctx->selection;
      +
      +        if (selection == 0)
      +            selection = OSSL_KEYMGMT_SELECT_ALL;
               /* The contents of the reference is the address to our object */
               keydata = *(void **)reference;
       
      -        return export(keydata, ctx->selection, export_cb, export_cbarg);
      +        return export(keydata, selection, export_cb, export_cbarg);
           }
           return 0;
       }
      diff --git a/deps/openssl/openssl/providers/implementations/encode_decode/decode_msblob2key.c b/deps/openssl/openssl/providers/implementations/encode_decode/decode_msblob2key.c
      index 501957faba0117..b9d0cabadae2e4 100644
      --- a/deps/openssl/openssl/providers/implementations/encode_decode/decode_msblob2key.c
      +++ b/deps/openssl/openssl/providers/implementations/encode_decode/decode_msblob2key.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -79,6 +79,18 @@ static void msblob2key_freectx(void *vctx)
           OPENSSL_free(ctx);
       }
       
      +static int msblob2key_does_selection(void *provctx, int selection)
      +{
      +    if (selection == 0)
      +        return 1;
      +
      +    if ((selection & (OSSL_KEYMGMT_SELECT_PRIVATE_KEY
      +                      | OSSL_KEYMGMT_SELECT_PUBLIC_KEY))  != 0)
      +        return 1;
      +
      +    return 0;
      +}
      +
       static int msblob2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection,
                                    OSSL_CALLBACK *data_cb, void *data_cbarg,
                                    OSSL_PASSPHRASE_CALLBACK *pw_cb, void *pw_cbarg)
      @@ -211,10 +223,14 @@ msblob2key_export_object(void *vctx,
           void *keydata;
       
           if (reference_sz == sizeof(keydata) && export != NULL) {
      +        int selection = ctx->selection;
      +
      +        if (selection == 0)
      +            selection = OSSL_KEYMGMT_SELECT_ALL;
               /* The contents of the reference is the address to our object */
               keydata = *(void **)reference;
       
      -        return export(keydata, ctx->selection, export_cb, export_cbarg);
      +        return export(keydata, selection, export_cb, export_cbarg);
           }
           return 0;
       }
      @@ -260,6 +276,8 @@ static void rsa_adjust(void *key, struct msblob2key_ctx_st *ctx)
                 (void (*)(void))msblob2##keytype##_newctx },                  \
               { OSSL_FUNC_DECODER_FREECTX,                                    \
                 (void (*)(void))msblob2key_freectx },                         \
      +        { OSSL_FUNC_DECODER_DOES_SELECTION,                             \
      +          (void (*)(void))msblob2key_does_selection },                  \
               { OSSL_FUNC_DECODER_DECODE,                                     \
                 (void (*)(void))msblob2key_decode },                          \
               { OSSL_FUNC_DECODER_EXPORT_OBJECT,                              \
      diff --git a/deps/openssl/openssl/providers/implementations/encode_decode/decode_pvk2key.c b/deps/openssl/openssl/providers/implementations/encode_decode/decode_pvk2key.c
      index c6424165b03bf7..2d7cb15e53e0ae 100644
      --- a/deps/openssl/openssl/providers/implementations/encode_decode/decode_pvk2key.c
      +++ b/deps/openssl/openssl/providers/implementations/encode_decode/decode_pvk2key.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -79,6 +79,17 @@ static void pvk2key_freectx(void *vctx)
           OPENSSL_free(ctx);
       }
       
      +static int pvk2key_does_selection(void *provctx, int selection)
      +{
      +    if (selection == 0)
      +        return 1;
      +
      +    if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY)  != 0)
      +        return 1;
      +
      +    return 0;
      +}
      +
       static int pvk2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection,
                                OSSL_CALLBACK *data_cb, void *data_cbarg,
                                OSSL_PASSPHRASE_CALLBACK *pw_cb, void *pw_cbarg)
      @@ -179,10 +190,14 @@ static int pvk2key_export_object(void *vctx,
           void *keydata;
       
           if (reference_sz == sizeof(keydata) && export != NULL) {
      +        int selection = ctx->selection;
      +
      +        if (selection == 0)
      +            selection = OSSL_KEYMGMT_SELECT_ALL;
               /* The contents of the reference is the address to our object */
               keydata = *(void **)reference;
       
      -        return export(keydata, ctx->selection, export_cb, export_cbarg);
      +        return export(keydata, selection, export_cb, export_cbarg);
           }
           return 0;
       }
      @@ -226,6 +241,8 @@ static void rsa_adjust(void *key, struct pvk2key_ctx_st *ctx)
                 (void (*)(void))pvk2##keytype##_newctx },                     \
               { OSSL_FUNC_DECODER_FREECTX,                                    \
                 (void (*)(void))pvk2key_freectx },                            \
      +        { OSSL_FUNC_DECODER_DOES_SELECTION,                             \
      +          (void (*)(void))pvk2key_does_selection },                     \
               { OSSL_FUNC_DECODER_DECODE,                                     \
                 (void (*)(void))pvk2key_decode },                             \
               { OSSL_FUNC_DECODER_EXPORT_OBJECT,                              \
      diff --git a/deps/openssl/openssl/providers/implementations/encode_decode/encode_key2any.c b/deps/openssl/openssl/providers/implementations/encode_decode/encode_key2any.c
      index c7b01cb2b3e5ef..0f4c62962ddcd4 100644
      --- a/deps/openssl/openssl/providers/implementations/encode_decode/encode_key2any.c
      +++ b/deps/openssl/openssl/providers/implementations/encode_decode/encode_key2any.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -858,14 +858,17 @@ static int prepare_rsa_params(const void *rsa, int nid, int save,
                       case 1:
                           if ((str = OPENSSL_malloc(str_sz)) == NULL
                               || !WPACKET_init_der(&pkt, str, str_sz)) {
      +                        WPACKET_cleanup(&pkt);
                               goto err;
                           }
                           break;
                       }
                       if (!ossl_DER_w_RSASSA_PSS_params(&pkt, -1, pss)
                           || !WPACKET_finish(&pkt)
      -                    || !WPACKET_get_total_written(&pkt, &str_sz))
      +                    || !WPACKET_get_total_written(&pkt, &str_sz)) {
      +                    WPACKET_cleanup(&pkt);
                           goto err;
      +                }
                       WPACKET_cleanup(&pkt);
       
                       /*
      diff --git a/deps/openssl/openssl/providers/implementations/encode_decode/encode_key2text.c b/deps/openssl/openssl/providers/implementations/encode_decode/encode_key2text.c
      index 7d983f5e51c6df..3e75a9afb370c6 100644
      --- a/deps/openssl/openssl/providers/implementations/encode_decode/encode_key2text.c
      +++ b/deps/openssl/openssl/providers/implementations/encode_decode/encode_key2text.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -241,7 +241,7 @@ static int dh_to_text(BIO *out, const void *key, int selection)
                   return 0;
               }
           }
      -    if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) {
      +    if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
               pub_key = DH_get0_pub_key(dh);
               if (pub_key == NULL) {
                   ERR_raise(ERR_LIB_PROV, PROV_R_NOT_A_PUBLIC_KEY);
      @@ -316,7 +316,7 @@ static int dsa_to_text(BIO *out, const void *key, int selection)
                   return 0;
               }
           }
      -    if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) {
      +    if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
               pub_key = DSA_get0_pub_key(dsa);
               if (pub_key == NULL) {
                   ERR_raise(ERR_LIB_PROV, PROV_R_NOT_A_PUBLIC_KEY);
      @@ -525,7 +525,7 @@ static int ec_to_text(BIO *out, const void *key, int selection)
               if (priv_len == 0)
                   goto err;
           }
      -    if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) {
      +    if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
               const EC_POINT *pub_pt = EC_KEY_get0_public_key(ec);
       
               if (pub_pt == NULL) {
      @@ -575,26 +575,31 @@ static int ecx_to_text(BIO *out, const void *key, int selection)
               return 0;
           }
       
      +    switch (ecx->type) {
      +    case ECX_KEY_TYPE_X25519:
      +        type_label = "X25519";
      +        break;
      +    case ECX_KEY_TYPE_X448:
      +        type_label = "X448";
      +        break;
      +    case ECX_KEY_TYPE_ED25519:
      +        type_label = "ED25519";
      +        break;
      +    case ECX_KEY_TYPE_ED448:
      +        type_label = "ED448";
      +        break;
      +    }
      +
           if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) {
               if (ecx->privkey == NULL) {
                   ERR_raise(ERR_LIB_PROV, PROV_R_NOT_A_PRIVATE_KEY);
                   return 0;
               }
       
      -        switch (ecx->type) {
      -        case ECX_KEY_TYPE_X25519:
      -            type_label = "X25519 Private-Key";
      -            break;
      -        case ECX_KEY_TYPE_X448:
      -            type_label = "X448 Private-Key";
      -            break;
      -        case ECX_KEY_TYPE_ED25519:
      -            type_label = "ED25519 Private-Key";
      -            break;
      -        case ECX_KEY_TYPE_ED448:
      -            type_label = "ED448 Private-Key";
      -            break;
      -        }
      +        if (BIO_printf(out, "%s Private-Key:\n", type_label) <= 0)
      +            return 0;
      +        if (!print_labeled_buf(out, "priv:", ecx->privkey, ecx->keylen))
      +            return 0;
           } else if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) {
               /* ecx->pubkey is an array, not a pointer... */
               if (!ecx->haspubkey) {
      @@ -602,29 +607,11 @@ static int ecx_to_text(BIO *out, const void *key, int selection)
                   return 0;
               }
       
      -        switch (ecx->type) {
      -        case ECX_KEY_TYPE_X25519:
      -            type_label = "X25519 Public-Key";
      -            break;
      -        case ECX_KEY_TYPE_X448:
      -            type_label = "X448 Public-Key";
      -            break;
      -        case ECX_KEY_TYPE_ED25519:
      -            type_label = "ED25519 Public-Key";
      -            break;
      -        case ECX_KEY_TYPE_ED448:
      -            type_label = "ED448 Public-Key";
      -            break;
      -        }
      +        if (BIO_printf(out, "%s Public-Key:\n", type_label) <= 0)
      +            return 0;
           }
       
      -    if (BIO_printf(out, "%s:\n", type_label) <= 0)
      -        return 0;
      -    if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0
      -        && !print_labeled_buf(out, "priv:", ecx->privkey, ecx->keylen))
      -        return 0;
      -    if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0
      -        && !print_labeled_buf(out, "pub:", ecx->pubkey, ecx->keylen))
      +    if (!print_labeled_buf(out, "pub:", ecx->pubkey, ecx->keylen))
               return 0;
       
           return 1;
      diff --git a/deps/openssl/openssl/providers/implementations/keymgmt/dh_kmgmt.c b/deps/openssl/openssl/providers/implementations/keymgmt/dh_kmgmt.c
      index 9a7dde7c66273b..c14b9765d11b30 100644
      --- a/deps/openssl/openssl/providers/implementations/keymgmt/dh_kmgmt.c
      +++ b/deps/openssl/openssl/providers/implementations/keymgmt/dh_kmgmt.c
      @@ -222,6 +222,9 @@ static int dh_export(void *keydata, int selection, OSSL_CALLBACK *param_cb,
           if (!ossl_prov_is_running() || dh == NULL)
               return 0;
       
      +    if ((selection & DH_POSSIBLE_SELECTIONS) == 0)
      +        return 0;
      +
           tmpl = OSSL_PARAM_BLD_new();
           if (tmpl == NULL)
               return 0;
      @@ -389,7 +392,7 @@ static int dh_validate_public(const DH *dh, int checktype)
               && ossl_dh_is_named_safe_prime_group(dh))
               return ossl_dh_check_pub_key_partial(dh, pub_key, &res);
       
      -    return DH_check_pub_key(dh, pub_key, &res);
      +    return DH_check_pub_key_ex(dh, pub_key);
       }
       
       static int dh_validate_private(const DH *dh)
      diff --git a/deps/openssl/openssl/providers/implementations/keymgmt/dsa_kmgmt.c b/deps/openssl/openssl/providers/implementations/keymgmt/dsa_kmgmt.c
      index cd8b4410b0db63..2f5742cfcc07ce 100644
      --- a/deps/openssl/openssl/providers/implementations/keymgmt/dsa_kmgmt.c
      +++ b/deps/openssl/openssl/providers/implementations/keymgmt/dsa_kmgmt.c
      @@ -223,6 +223,9 @@ static int dsa_export(void *keydata, int selection, OSSL_CALLBACK *param_cb,
           if (!ossl_prov_is_running() || dsa == NULL)
               return 0;
       
      +    if ((selection & DSA_POSSIBLE_SELECTIONS) == 0)
      +        return 0;
      +
           tmpl = OSSL_PARAM_BLD_new();
           if (tmpl == NULL)
               return 0;
      diff --git a/deps/openssl/openssl/providers/implementations/keymgmt/ecx_kmgmt.c b/deps/openssl/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
      index 2a7f867aa56b3b..987d38456fba41 100644
      --- a/deps/openssl/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
      +++ b/deps/openssl/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -238,6 +238,9 @@ static int ecx_export(void *keydata, int selection, OSSL_CALLBACK *param_cb,
           if (!ossl_prov_is_running() || key == NULL)
               return 0;
       
      +    if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) == 0)
      +        return 0;
      +
           tmpl = OSSL_PARAM_BLD_new();
           if (tmpl == NULL)
               return 0;
      diff --git a/deps/openssl/openssl/providers/implementations/keymgmt/mac_legacy_kmgmt.c b/deps/openssl/openssl/providers/implementations/keymgmt/mac_legacy_kmgmt.c
      index c934ff16409415..1fae4407fca609 100644
      --- a/deps/openssl/openssl/providers/implementations/keymgmt/mac_legacy_kmgmt.c
      +++ b/deps/openssl/openssl/providers/implementations/keymgmt/mac_legacy_kmgmt.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -281,6 +281,9 @@ static int mac_export(void *keydata, int selection, OSSL_CALLBACK *param_cb,
           if (!ossl_prov_is_running() || key == NULL)
               return 0;
       
      +    if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) == 0)
      +        return 0;
      +
           tmpl = OSSL_PARAM_BLD_new();
           if (tmpl == NULL)
               return 0;
      diff --git a/deps/openssl/openssl/providers/implementations/macs/kmac_prov.c b/deps/openssl/openssl/providers/implementations/macs/kmac_prov.c
      index b2f85398b4e284..99e7c60a74ce50 100644
      --- a/deps/openssl/openssl/providers/implementations/macs/kmac_prov.c
      +++ b/deps/openssl/openssl/providers/implementations/macs/kmac_prov.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2018-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -249,7 +249,7 @@ static int kmac_setkey(struct kmac_data_st *kctx, const unsigned char *key,
               ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY_LENGTH);
               return 0;
           }
      -    if (w < 0) {
      +    if (w <= 0) {
               ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_DIGEST_LENGTH);
               return 0;
           }
      @@ -289,7 +289,7 @@ static int kmac_init(void *vmacctx, const unsigned char *key,
               return 0;
       
           t = EVP_MD_get_block_size(ossl_prov_digest_md(&kctx->digest));
      -    if (t < 0) {
      +    if (t <= 0) {
               ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_DIGEST_LENGTH);
               return 0;
           }
      diff --git a/deps/openssl/openssl/ssl/ssl_lib.c b/deps/openssl/openssl/ssl/ssl_lib.c
      index a00e1fe3621c9c..b0ab5c6ef80042 100644
      --- a/deps/openssl/openssl/ssl/ssl_lib.c
      +++ b/deps/openssl/openssl/ssl/ssl_lib.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
        * Copyright 2005 Nokia. All rights reserved.
        *
      @@ -631,7 +631,7 @@ int SSL_clear(SSL *s)
           OPENSSL_free(s->psksession_id);
           s->psksession_id = NULL;
           s->psksession_id_len = 0;
      -    s->hello_retry_request = 0;
      +    s->hello_retry_request = SSL_HRR_NONE;
           s->sent_tickets = 0;
       
           s->error = 0;
      @@ -2894,14 +2894,14 @@ char *SSL_get_shared_ciphers(const SSL *s, char *buf, int size)
               if (sk_SSL_CIPHER_find(srvrsk, c) < 0)
                   continue;
       
      -        n = strlen(c->name);
      -        if (n + 1 > size) {
      +        n = OPENSSL_strnlen(c->name, size);
      +        if (n >= size) {
                   if (p != buf)
                       --p;
                   *p = '\0';
                   return buf;
               }
      -        strcpy(p, c->name);
      +        memcpy(p, c->name, n);
               p += n;
               *(p++) = ':';
               size -= n + 1;
      diff --git a/deps/openssl/openssl/ssl/ssl_sess.c b/deps/openssl/openssl/ssl/ssl_sess.c
      index c322a11d9c52a5..d836b33ed0e81d 100644
      --- a/deps/openssl/openssl/ssl/ssl_sess.c
      +++ b/deps/openssl/openssl/ssl/ssl_sess.c
      @@ -198,8 +198,11 @@ SSL_SESSION *ssl_session_dup(const SSL_SESSION *src, int ticket)
           dest->references = 1;
       
           dest->lock = CRYPTO_THREAD_lock_new();
      -    if (dest->lock == NULL)
      +    if (dest->lock == NULL) {
      +        OPENSSL_free(dest);
      +        dest = NULL;
               goto err;
      +    }
       
           if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, dest, &dest->ex_data))
               goto err;
      diff --git a/deps/openssl/openssl/ssl/statem/extensions_srvr.c b/deps/openssl/openssl/ssl/statem/extensions_srvr.c
      index ed53b28aba80ab..0dfbfed9a4af6c 100644
      --- a/deps/openssl/openssl/ssl/statem/extensions_srvr.c
      +++ b/deps/openssl/openssl/ssl/statem/extensions_srvr.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2016-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2016-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -883,7 +883,7 @@ int tls_parse_ctos_cookie(SSL *s, PACKET *pkt, unsigned int context, X509 *x,
           }
       
           /* Act as if this ClientHello came after a HelloRetryRequest */
      -    s->hello_retry_request = 1;
      +    s->hello_retry_request = SSL_HRR_PENDING;
       
           s->ext.cookieok = 1;
       #endif
      diff --git a/deps/openssl/openssl/test/README-dev.md b/deps/openssl/openssl/test/README-dev.md
      index d015bcf5bfb019..d8922de000800f 100644
      --- a/deps/openssl/openssl/test/README-dev.md
      +++ b/deps/openssl/openssl/test/README-dev.md
      @@ -130,7 +130,11 @@ Generic form of C test executables
           int setup_tests(void)
           {
               ADD_TEST(my_test);                  /* Add each test separately     */
      -        return 1;                           /* Indicate success             */
      +        return 1;                           /* Indicates success.  Return 0 */
      +                                            /* to produce an error with a   */
      +                                            /* usage message and -1 for     */
      +                                            /* failure to set up with no    */
      +                                            /* usage message.               */
           }
       
       You should use the `TEST_xxx` macros provided by `testutil.h` to test all failure
      diff --git a/deps/openssl/openssl/test/chacha_internal_test.c b/deps/openssl/openssl/test/chacha_internal_test.c
      index 878bd752e054bb..d316bfd7b36170 100644
      --- a/deps/openssl/openssl/test/chacha_internal_test.c
      +++ b/deps/openssl/openssl/test/chacha_internal_test.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -181,7 +181,7 @@ static int test_cha_cha_internal(int n)
       
       int setup_tests(void)
       {
      -#ifdef CPUID_OBJ
      +#ifdef OPENSSL_CPUID_OBJ
           OPENSSL_cpuid_setup();
       #endif
       
      diff --git a/deps/openssl/openssl/test/cmp_asn_test.c b/deps/openssl/openssl/test/cmp_asn_test.c
      index 1e65b383753eab..42a6b93b6b2732 100644
      --- a/deps/openssl/openssl/test/cmp_asn_test.c
      +++ b/deps/openssl/openssl/test/cmp_asn_test.c
      @@ -42,16 +42,28 @@ static void tear_down(CMP_ASN_TEST_FIXTURE *fixture)
       
       static int execute_cmp_asn1_get_int_test(CMP_ASN_TEST_FIXTURE *fixture)
       {
      -    int res;
      +    int res = 0;
           ASN1_INTEGER *asn1integer = ASN1_INTEGER_new();
      +    const int good_int = 77;
      +    const int64_t max_int = INT_MAX;
       
           if (!TEST_ptr(asn1integer))
      -        return 0;
      -    if (!TEST_true(ASN1_INTEGER_set(asn1integer, 77))) {
      +        return res;
      +
      +    if (!TEST_true(ASN1_INTEGER_set(asn1integer, good_int))) {
               ASN1_INTEGER_free(asn1integer);
               return 0;
           }
      -    res = TEST_int_eq(77, ossl_cmp_asn1_get_int(asn1integer));
      +    res = TEST_int_eq(good_int, ossl_cmp_asn1_get_int(asn1integer));
      +    if (res == 0)
      +        goto err;
      +
      +    res = 0;
      +    if (!TEST_true(ASN1_INTEGER_set_int64(asn1integer, max_int + 1)))
      +        goto err;
      +    res = TEST_int_eq(-2, ossl_cmp_asn1_get_int(asn1integer));
      +
      + err:
           ASN1_INTEGER_free(asn1integer);
           return res;
       }
      diff --git a/deps/openssl/openssl/test/cmp_protect_test.c b/deps/openssl/openssl/test/cmp_protect_test.c
      index 32dae32d9398d9..09bf2ec17faffa 100644
      --- a/deps/openssl/openssl/test/cmp_protect_test.c
      +++ b/deps/openssl/openssl/test/cmp_protect_test.c
      @@ -37,15 +37,17 @@ static OSSL_PROVIDER *default_null_provider = NULL, *provider = NULL;
       
       static void tear_down(CMP_PROTECT_TEST_FIXTURE *fixture)
       {
      -    OSSL_CMP_CTX_free(fixture->cmp_ctx);
      -    OSSL_CMP_MSG_free(fixture->msg);
      -    OSSL_CMP_PKISI_free(fixture->si);
      +    if (fixture != NULL) {
      +        OSSL_CMP_CTX_free(fixture->cmp_ctx);
      +        OSSL_CMP_MSG_free(fixture->msg);
      +        OSSL_CMP_PKISI_free(fixture->si);
       
      -    OPENSSL_free(fixture->mem);
      -    sk_X509_free(fixture->certs);
      -    sk_X509_free(fixture->chain);
      +        OPENSSL_free(fixture->mem);
      +        sk_X509_free(fixture->certs);
      +        sk_X509_free(fixture->chain);
       
      -    OPENSSL_free(fixture);
      +        OPENSSL_free(fixture);
      +    }
       }
       
       static CMP_PROTECT_TEST_FIXTURE *set_up(const char *const test_case_name)
      diff --git a/deps/openssl/openssl/test/cmsapitest.c b/deps/openssl/openssl/test/cmsapitest.c
      index d5c4cb8481c210..dbb05cd4962269 100644
      --- a/deps/openssl/openssl/test/cmsapitest.c
      +++ b/deps/openssl/openssl/test/cmsapitest.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2018-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2018-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -56,7 +56,7 @@ static int test_encrypt_decrypt(const EVP_CIPHER *cipher)
           BIO_free(outmsgbio);
           CMS_ContentInfo_free(content);
       
      -    return testresult;
      +    return testresult && TEST_int_eq(ERR_peek_error(), 0);
       }
       
       static int test_encrypt_decrypt_aes_cbc(void)
      @@ -286,7 +286,7 @@ static int test_d2i_CMS_bio_NULL(void)
                                         CMS_NO_SIGNER_CERT_VERIFY));
           CMS_ContentInfo_free(cms);
           BIO_free(bio);
      -    return ret;
      +    return ret && TEST_int_eq(ERR_peek_error(), 0);
       }
       
       static unsigned char *read_all(BIO *bio, long *p_len)
      diff --git a/deps/openssl/openssl/test/endecode_test.c b/deps/openssl/openssl/test/endecode_test.c
      index e3f7b81f693077..5158b39ee41f19 100644
      --- a/deps/openssl/openssl/test/endecode_test.c
      +++ b/deps/openssl/openssl/test/endecode_test.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -158,6 +158,7 @@ static int test_encode_decode(const char *file, const int line,
           void *encoded = NULL;
           long encoded_len = 0;
           EVP_PKEY *pkey2 = NULL;
      +    EVP_PKEY *pkey3 = NULL;
           void *encoded2 = NULL;
           long encoded2_len = 0;
           int ok = 0;
      @@ -185,15 +186,25 @@ static int test_encode_decode(const char *file, const int line,
                                       output_type, output_structure,
                                       (flags & FLAG_DECODE_WITH_TYPE ? type : NULL),
                                       selection, pass))
      +        || ((output_structure == NULL
      +             || strcmp(output_structure, "type-specific") != 0)
      +            && !TEST_true(decode_cb(file, line, (void **)&pkey3, encoded, encoded_len,
      +                                    output_type, output_structure,
      +                                    (flags & FLAG_DECODE_WITH_TYPE ? type : NULL),
      +                                    0, pass)))
               || !TEST_true(encode_cb(file, line, &encoded2, &encoded2_len, pkey2, selection,
                                       output_type, output_structure, pass, pcipher)))
               goto end;
       
           if (selection == OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) {
      -        if (!TEST_int_eq(EVP_PKEY_parameters_eq(pkey, pkey2), 1))
      +        if (!TEST_int_eq(EVP_PKEY_parameters_eq(pkey, pkey2), 1)
      +            || (pkey3 != NULL
      +                && !TEST_int_eq(EVP_PKEY_parameters_eq(pkey, pkey3), 1)))
                   goto end;
           } else {
      -        if (!TEST_int_eq(EVP_PKEY_eq(pkey, pkey2), 1))
      +        if (!TEST_int_eq(EVP_PKEY_eq(pkey, pkey2), 1)
      +            || (pkey3 != NULL
      +                && !TEST_int_eq(EVP_PKEY_eq(pkey, pkey3), 1)))
                   goto end;
           }
       
      @@ -218,6 +229,7 @@ static int test_encode_decode(const char *file, const int line,
           OPENSSL_free(encoded);
           OPENSSL_free(encoded2);
           EVP_PKEY_free(pkey2);
      +    EVP_PKEY_free(pkey3);
           return ok;
       }
       
      diff --git a/deps/openssl/openssl/test/evp_extra_test.c b/deps/openssl/openssl/test/evp_extra_test.c
      index a6667105dcdcda..2318bf6a68c9fe 100644
      --- a/deps/openssl/openssl/test/evp_extra_test.c
      +++ b/deps/openssl/openssl/test/evp_extra_test.c
      @@ -1133,11 +1133,11 @@ static int test_EVP_PKEY_sign(int tst)
       
           if (tst == 0 ) {
               if (!TEST_ptr(pkey = load_example_rsa_key()))
      -                goto out;
      +            goto out;
           } else if (tst == 1) {
       #ifndef OPENSSL_NO_DSA
               if (!TEST_ptr(pkey = load_example_dsa_key()))
      -                goto out;
      +            goto out;
       #else
               ret = 1;
               goto out;
      @@ -1145,7 +1145,82 @@ static int test_EVP_PKEY_sign(int tst)
           } else {
       #ifndef OPENSSL_NO_EC
               if (!TEST_ptr(pkey = load_example_ec_key()))
      +            goto out;
      +#else
      +        ret = 1;
      +        goto out;
      +#endif
      +    }
      +
      +    ctx = EVP_PKEY_CTX_new_from_pkey(testctx, pkey, NULL);
      +    if (!TEST_ptr(ctx)
      +            || !TEST_int_gt(EVP_PKEY_sign_init(ctx), 0)
      +            || !TEST_int_gt(EVP_PKEY_sign(ctx, NULL, &sig_len, tbs,
      +                                          sizeof(tbs)), 0))
      +        goto out;
      +    sig = OPENSSL_malloc(sig_len);
      +    if (!TEST_ptr(sig)
      +            /* Test sending a signature buffer that is too short is rejected */
      +            || !TEST_int_le(EVP_PKEY_sign(ctx, sig, &shortsig_len, tbs,
      +                                          sizeof(tbs)), 0)
      +            || !TEST_int_gt(EVP_PKEY_sign(ctx, sig, &sig_len, tbs, sizeof(tbs)),
      +                            0)
      +            /* Test the signature round-trips */
      +            || !TEST_int_gt(EVP_PKEY_verify_init(ctx), 0)
      +            || !TEST_int_gt(EVP_PKEY_verify(ctx, sig, sig_len, tbs, sizeof(tbs)),
      +                            0))
      +        goto out;
      +
      +    ret = 1;
      + out:
      +    EVP_PKEY_CTX_free(ctx);
      +    OPENSSL_free(sig);
      +    EVP_PKEY_free(pkey);
      +    return ret;
      +}
      +
      +#ifndef OPENSSL_NO_DEPRECATED_3_0
      +static int test_EVP_PKEY_sign_with_app_method(int tst)
      +{
      +    int ret = 0;
      +    EVP_PKEY *pkey = NULL;
      +    RSA *rsa = NULL;
      +    RSA_METHOD *rsa_meth = NULL;
      +#ifndef OPENSSL_NO_DSA
      +    DSA *dsa = NULL;
      +    DSA_METHOD *dsa_meth = NULL;
      +#endif
      +    unsigned char *sig = NULL;
      +    size_t sig_len = 0, shortsig_len = 1;
      +    EVP_PKEY_CTX *ctx = NULL;
      +    unsigned char tbs[] = {
      +        0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
      +        0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13
      +    };
      +
      +    if (tst == 0) {
      +        if (!TEST_ptr(pkey = load_example_rsa_key()))
      +            goto out;
      +        if (!TEST_ptr(rsa_meth = RSA_meth_dup(RSA_get_default_method())))
      +            goto out;
      +
      +        if (!TEST_ptr(rsa = EVP_PKEY_get1_RSA(pkey))
      +            || !TEST_int_gt(RSA_set_method(rsa, rsa_meth), 0)
      +            || !TEST_int_gt(EVP_PKEY_assign_RSA(pkey, rsa), 0))
      +            goto out;
      +        rsa = NULL; /* now owned by the pkey */
      +    } else {
      +#ifndef OPENSSL_NO_DSA
      +        if (!TEST_ptr(pkey = load_example_dsa_key()))
                       goto out;
      +        if (!TEST_ptr(dsa_meth = DSA_meth_dup(DSA_get_default_method())))
      +            goto out;
      +
      +        if (!TEST_ptr(dsa = EVP_PKEY_get1_DSA(pkey))
      +            || !TEST_int_gt(DSA_set_method(dsa, dsa_meth), 0)
      +            || !TEST_int_gt(EVP_PKEY_assign_DSA(pkey, dsa), 0))
      +            goto out;
      +        dsa = NULL; /* now owned by the pkey */
       #else
               ret = 1;
               goto out;
      @@ -1176,8 +1251,15 @@ static int test_EVP_PKEY_sign(int tst)
           EVP_PKEY_CTX_free(ctx);
           OPENSSL_free(sig);
           EVP_PKEY_free(pkey);
      +    RSA_free(rsa);
      +    RSA_meth_free(rsa_meth);
      +#ifndef OPENSSL_NO_DSA
      +    DSA_free(dsa);
      +    DSA_meth_free(dsa_meth);
      +#endif
           return ret;
       }
      +#endif /* !OPENSSL_NO_DEPRECATED_3_0 */
       
       /*
        * n = 0 => test using legacy cipher
      @@ -2830,6 +2912,36 @@ static int test_RSA_OAEP_set_get_params(void)
           return ret;
       }
       
      +/* https://github.com/openssl/openssl/issues/21288 */
      +static int test_RSA_OAEP_set_null_label(void)
      +{
      +    int ret = 0;
      +    EVP_PKEY *key = NULL;
      +    EVP_PKEY_CTX *key_ctx = NULL;
      +
      +    if (!TEST_ptr(key = load_example_rsa_key())
      +        || !TEST_ptr(key_ctx = EVP_PKEY_CTX_new_from_pkey(testctx, key, NULL))
      +        || !TEST_true(EVP_PKEY_encrypt_init(key_ctx)))
      +        goto err;
      +
      +    if (!TEST_true(EVP_PKEY_CTX_set_rsa_padding(key_ctx, RSA_PKCS1_OAEP_PADDING)))
      +        goto err;
      +
      +    if (!TEST_true(EVP_PKEY_CTX_set0_rsa_oaep_label(key_ctx, OPENSSL_strdup("foo"), 0)))
      +        goto err;
      +
      +    if (!TEST_true(EVP_PKEY_CTX_set0_rsa_oaep_label(key_ctx, NULL, 0)))
      +        goto err;
      +
      +    ret = 1;
      +
      + err:
      +    EVP_PKEY_free(key);
      +    EVP_PKEY_CTX_free(key_ctx);
      +
      +    return ret;
      +}
      +
       #if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305)
       static int test_decrypt_null_chunks(void)
       {
      @@ -4739,6 +4851,253 @@ static int test_ecx_not_private_key(int tst)
       }
       #endif /* OPENSSL_NO_EC */
       
      +static int aes_gcm_encrypt(const unsigned char *gcm_key, size_t gcm_key_s,
      +                           const unsigned char *gcm_iv, size_t gcm_ivlen,
      +                           const unsigned char *gcm_pt, size_t gcm_pt_s,
      +                           const unsigned char *gcm_aad, size_t gcm_aad_s,
      +                           const unsigned char *gcm_ct, size_t gcm_ct_s,
      +                           const unsigned char *gcm_tag, size_t gcm_tag_s)
      +{
      +    int ret = 0;
      +    EVP_CIPHER_CTX *ctx;
      +    EVP_CIPHER *cipher = NULL;
      +    int outlen, tmplen;
      +    unsigned char outbuf[1024];
      +    unsigned char outtag[16];
      +    OSSL_PARAM params[2] = {
      +        OSSL_PARAM_END, OSSL_PARAM_END
      +    };
      +
      +    if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new())
      +            || !TEST_ptr(cipher = EVP_CIPHER_fetch(testctx, "AES-256-GCM", "")))
      +        goto err;
      +
      +    params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_AEAD_IVLEN,
      +                                            &gcm_ivlen);
      +
      +    if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params))
      +            || (gcm_aad != NULL
      +                && !TEST_true(EVP_EncryptUpdate(ctx, NULL, &outlen,
      +                                                gcm_aad, gcm_aad_s)))
      +            || !TEST_true(EVP_EncryptUpdate(ctx, outbuf, &outlen,
      +                                            gcm_pt, gcm_pt_s))
      +            || !TEST_true(EVP_EncryptFinal_ex(ctx, outbuf, &tmplen)))
      +        goto err;
      +
      +    params[0] = OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_AEAD_TAG,
      +                                                  outtag, sizeof(outtag));
      +
      +    if (!TEST_true(EVP_CIPHER_CTX_get_params(ctx, params))
      +            || !TEST_mem_eq(outbuf, outlen, gcm_ct, gcm_ct_s)
      +            || !TEST_mem_eq(outtag, gcm_tag_s, gcm_tag, gcm_tag_s))
      +        goto err;
      +
      +    ret = 1;
      +err:
      +    EVP_CIPHER_free(cipher);
      +    EVP_CIPHER_CTX_free(ctx);
      +
      +    return ret;
      +}
      +
      +static int aes_gcm_decrypt(const unsigned char *gcm_key, size_t gcm_key_s,
      +                           const unsigned char *gcm_iv, size_t gcm_ivlen,
      +                           const unsigned char *gcm_pt, size_t gcm_pt_s,
      +                           const unsigned char *gcm_aad, size_t gcm_aad_s,
      +                           const unsigned char *gcm_ct, size_t gcm_ct_s,
      +                           const unsigned char *gcm_tag, size_t gcm_tag_s)
      +{
      +    int ret = 0;
      +    EVP_CIPHER_CTX *ctx;
      +    EVP_CIPHER *cipher = NULL;
      +    int outlen;
      +    unsigned char outbuf[1024];
      +    OSSL_PARAM params[2] = {
      +        OSSL_PARAM_END, OSSL_PARAM_END
      +    };
      +
      +    if ((ctx = EVP_CIPHER_CTX_new()) == NULL)
      +        goto err;
      +
      +    if ((cipher = EVP_CIPHER_fetch(testctx, "AES-256-GCM", "")) == NULL)
      +        goto err;
      +
      +    params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_AEAD_IVLEN,
      +                                            &gcm_ivlen);
      +
      +    if (!TEST_true(EVP_DecryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params))
      +            || (gcm_aad != NULL
      +                && !TEST_true(EVP_DecryptUpdate(ctx, NULL, &outlen,
      +                                                gcm_aad, gcm_aad_s)))
      +            || !TEST_true(EVP_DecryptUpdate(ctx, outbuf, &outlen,
      +                                            gcm_ct, gcm_ct_s))
      +            || !TEST_mem_eq(outbuf, outlen, gcm_pt, gcm_pt_s))
      +        goto err;
      +
      +    params[0] = OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_AEAD_TAG,
      +                                                  (void*)gcm_tag, gcm_tag_s);
      +
      +    if (!TEST_true(EVP_CIPHER_CTX_set_params(ctx, params))
      +            ||!TEST_true(EVP_DecryptFinal_ex(ctx, outbuf, &outlen)))
      +        goto err;
      +
      +    ret = 1;
      +err:
      +    EVP_CIPHER_free(cipher);
      +    EVP_CIPHER_CTX_free(ctx);
      +
      +    return ret;
      +}
      +
      +static int test_aes_gcm_ivlen_change_cve_2023_5363(void)
      +{
      +    /* AES-GCM test data obtained from NIST public test vectors */
      +    static const unsigned char gcm_key[] = {
      +        0xd0, 0xc2, 0x67, 0xc1, 0x9f, 0x30, 0xd8, 0x0b, 0x89, 0x14, 0xbb, 0xbf,
      +        0xb7, 0x2f, 0x73, 0xb8, 0xd3, 0xcd, 0x5f, 0x6a, 0x78, 0x70, 0x15, 0x84,
      +        0x8a, 0x7b, 0x30, 0xe3, 0x8f, 0x16, 0xf1, 0x8b,
      +    };
      +    static const unsigned char gcm_iv[] = {
      +        0xb6, 0xdc, 0xda, 0x95, 0xac, 0x99, 0x77, 0x76, 0x25, 0xae, 0x87, 0xf8,
      +        0xa3, 0xa9, 0xdd, 0x64, 0xd7, 0x9b, 0xbd, 0x5f, 0x4a, 0x0e, 0x54, 0xca,
      +        0x1a, 0x9f, 0xa2, 0xe3, 0xf4, 0x5f, 0x5f, 0xc2, 0xce, 0xa7, 0xb6, 0x14,
      +        0x12, 0x6f, 0xf0, 0xaf, 0xfd, 0x3e, 0x17, 0x35, 0x6e, 0xa0, 0x16, 0x09,
      +        0xdd, 0xa1, 0x3f, 0xd8, 0xdd, 0xf3, 0xdf, 0x4f, 0xcb, 0x18, 0x49, 0xb8,
      +        0xb3, 0x69, 0x2c, 0x5d, 0x4f, 0xad, 0x30, 0x91, 0x08, 0xbc, 0xbe, 0x24,
      +        0x01, 0x0f, 0xbe, 0x9c, 0xfb, 0x4f, 0x5d, 0x19, 0x7f, 0x4c, 0x53, 0xb0,
      +        0x95, 0x90, 0xac, 0x7b, 0x1f, 0x7b, 0xa0, 0x99, 0xe1, 0xf3, 0x48, 0x54,
      +        0xd0, 0xfc, 0xa9, 0xcc, 0x91, 0xf8, 0x1f, 0x9b, 0x6c, 0x9a, 0xe0, 0xdc,
      +        0x63, 0xea, 0x7d, 0x2a, 0x4a, 0x7d, 0xa5, 0xed, 0x68, 0x57, 0x27, 0x6b,
      +        0x68, 0xe0, 0xf2, 0xb8, 0x51, 0x50, 0x8d, 0x3d,
      +    };
      +    static const unsigned char gcm_pt[] = {
      +        0xb8, 0xb6, 0x88, 0x36, 0x44, 0xe2, 0x34, 0xdf, 0x24, 0x32, 0x91, 0x07,
      +        0x4f, 0xe3, 0x6f, 0x81,
      +    };
      +    static const unsigned char gcm_ct[] = {
      +        0xff, 0x4f, 0xb3, 0xf3, 0xf9, 0xa2, 0x51, 0xd4, 0x82, 0xc2, 0xbe, 0xf3,
      +        0xe2, 0xd0, 0xec, 0xed,
      +    };
      +    static const unsigned char gcm_tag[] = {
      +        0xbd, 0x06, 0x38, 0x09, 0xf7, 0xe1, 0xc4, 0x72, 0x0e, 0xf2, 0xea, 0x63,
      +        0xdb, 0x99, 0x6c, 0x21,
      +    };
      +
      +    return aes_gcm_encrypt(gcm_key, sizeof(gcm_key), gcm_iv, sizeof(gcm_iv),
      +                           gcm_pt, sizeof(gcm_pt), NULL, 0,
      +                           gcm_ct, sizeof(gcm_ct), gcm_tag, sizeof(gcm_tag))
      +        && aes_gcm_decrypt(gcm_key, sizeof(gcm_key), gcm_iv, sizeof(gcm_iv),
      +                           gcm_pt, sizeof(gcm_pt), NULL, 0,
      +                           gcm_ct, sizeof(gcm_ct), gcm_tag, sizeof(gcm_tag));
      +}
      +
      +#ifndef OPENSSL_NO_RC4
      +static int rc4_encrypt(const unsigned char *rc4_key, size_t rc4_key_s,
      +                       const unsigned char *rc4_pt, size_t rc4_pt_s,
      +                       const unsigned char *rc4_ct, size_t rc4_ct_s)
      +{
      +    int ret = 0;
      +    EVP_CIPHER_CTX *ctx;
      +    EVP_CIPHER *cipher = NULL;
      +    int outlen, tmplen;
      +    unsigned char outbuf[1024];
      +    OSSL_PARAM params[2] = {
      +        OSSL_PARAM_END, OSSL_PARAM_END
      +    };
      +
      +    if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new())
      +            || !TEST_ptr(cipher = EVP_CIPHER_fetch(testctx, "RC4", "")))
      +        goto err;
      +
      +    params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_KEYLEN,
      +                                            &rc4_key_s);
      +
      +    if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, rc4_key, NULL, params))
      +            || !TEST_true(EVP_EncryptUpdate(ctx, outbuf, &outlen,
      +                                            rc4_pt, rc4_pt_s))
      +            || !TEST_true(EVP_EncryptFinal_ex(ctx, outbuf, &tmplen)))
      +        goto err;
      +
      +    if (!TEST_mem_eq(outbuf, outlen, rc4_ct, rc4_ct_s))
      +        goto err;
      +
      +    ret = 1;
      +err:
      +    EVP_CIPHER_free(cipher);
      +    EVP_CIPHER_CTX_free(ctx);
      +
      +    return ret;
      +}
      +
      +static int rc4_decrypt(const unsigned char *rc4_key, size_t rc4_key_s,
      +                       const unsigned char *rc4_pt, size_t rc4_pt_s,
      +                       const unsigned char *rc4_ct, size_t rc4_ct_s)
      +{
      +    int ret = 0;
      +    EVP_CIPHER_CTX *ctx;
      +    EVP_CIPHER *cipher = NULL;
      +    int outlen;
      +    unsigned char outbuf[1024];
      +    OSSL_PARAM params[2] = {
      +        OSSL_PARAM_END, OSSL_PARAM_END
      +    };
      +
      +    if ((ctx = EVP_CIPHER_CTX_new()) == NULL)
      +        goto err;
      +
      +    if ((cipher = EVP_CIPHER_fetch(testctx, "RC4", "")) == NULL)
      +        goto err;
      +
      +    params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_KEYLEN,
      +                                            &rc4_key_s);
      +
      +    if (!TEST_true(EVP_DecryptInit_ex2(ctx, cipher, rc4_key, NULL, params))
      +            || !TEST_true(EVP_DecryptUpdate(ctx, outbuf, &outlen,
      +                                            rc4_ct, rc4_ct_s))
      +            || !TEST_mem_eq(outbuf, outlen, rc4_pt, rc4_pt_s))
      +        goto err;
      +
      +    ret = 1;
      +err:
      +    EVP_CIPHER_free(cipher);
      +    EVP_CIPHER_CTX_free(ctx);
      +
      +    return ret;
      +}
      +
      +static int test_aes_rc4_keylen_change_cve_2023_5363(void)
      +{
      +    /* RC4 test data obtained from RFC 6229 */
      +    static const struct {
      +        unsigned char key[5];
      +        unsigned char padding[11];
      +    } rc4_key = {
      +        {   /* Five bytes of key material */
      +            0x83, 0x32, 0x22, 0x77, 0x2a,
      +        },
      +        {   /* Random padding to 16 bytes */
      +            0x80, 0xad, 0x97, 0xbd, 0xc9, 0x73, 0xdf, 0x8a, 0xaa, 0x32, 0x91
      +        }
      +    };
      +    static const unsigned char rc4_pt[] = {
      +        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
      +        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
      +    };
      +    static const unsigned char rc4_ct[] = {
      +        0x80, 0xad, 0x97, 0xbd, 0xc9, 0x73, 0xdf, 0x8a,
      +        0x2e, 0x87, 0x9e, 0x92, 0xa4, 0x97, 0xef, 0xda
      +    };
      +
      +    if (lgcyprov == NULL)
      +        return TEST_skip("Test requires legacy provider to be loaded");
      +
      +    return rc4_encrypt(rc4_key.key, sizeof(rc4_key.key),
      +                       rc4_pt, sizeof(rc4_pt), rc4_ct, sizeof(rc4_ct))
      +        && rc4_decrypt(rc4_key.key, sizeof(rc4_key.key),
      +                       rc4_pt, sizeof(rc4_pt), rc4_ct, sizeof(rc4_ct));
      +}
      +#endif
      +
       int setup_tests(void)
       {
           OPTION_CHOICE o;
      @@ -4771,6 +5130,9 @@ int setup_tests(void)
           ADD_TEST(test_EVP_Digest);
           ADD_TEST(test_EVP_md_null);
           ADD_ALL_TESTS(test_EVP_PKEY_sign, 3);
      +#ifndef OPENSSL_NO_DEPRECATED_3_0
      +    ADD_ALL_TESTS(test_EVP_PKEY_sign_with_app_method, 2);
      +#endif
           ADD_ALL_TESTS(test_EVP_Enveloped, 2);
           ADD_ALL_TESTS(test_d2i_AutoPrivateKey, OSSL_NELEM(keydata));
           ADD_TEST(test_privatekey_to_pkcs8);
      @@ -4814,6 +5176,7 @@ int setup_tests(void)
       #endif
           ADD_TEST(test_RSA_get_set_params);
           ADD_TEST(test_RSA_OAEP_set_get_params);
      +    ADD_TEST(test_RSA_OAEP_set_null_label);
       #if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305)
           ADD_TEST(test_decrypt_null_chunks);
       #endif
      @@ -4878,6 +5241,12 @@ int setup_tests(void)
           ADD_ALL_TESTS(test_ecx_not_private_key, OSSL_NELEM(keys));
       #endif
       
      +    /* Test cases for CVE-2023-5363 */
      +    ADD_TEST(test_aes_gcm_ivlen_change_cve_2023_5363);
      +#ifndef OPENSSL_NO_RC4
      +    ADD_TEST(test_aes_rc4_keylen_change_cve_2023_5363);
      +#endif
      +
           return 1;
       }
       
      diff --git a/deps/openssl/openssl/test/ffc_internal_test.c b/deps/openssl/openssl/test/ffc_internal_test.c
      index 7f8f44c8a9fdc7..83dec13c8c9b33 100644
      --- a/deps/openssl/openssl/test/ffc_internal_test.c
      +++ b/deps/openssl/openssl/test/ffc_internal_test.c
      @@ -455,22 +455,20 @@ static int ffc_public_validate_test(void)
           if (!TEST_true(BN_set_word(pub, 1)))
               goto err;
           BN_set_negative(pub, 1);
      -    /* Fail if public key is negative */
      -    if (!TEST_false(ossl_ffc_validate_public_key(params, pub, &res)))
      +    /* Check must succeed but set res if public key is negative */
      +    if (!TEST_true(ossl_ffc_validate_public_key(params, pub, &res)))
               goto err;
           if (!TEST_int_eq(FFC_ERROR_PUBKEY_TOO_SMALL, res))
               goto err;
           if (!TEST_true(BN_set_word(pub, 0)))
               goto err;
      -    if (!TEST_int_eq(FFC_ERROR_PUBKEY_TOO_SMALL, res))
      -        goto err;
      -    /* Fail if public key is zero */
      -    if (!TEST_false(ossl_ffc_validate_public_key(params, pub, &res)))
      +    /* Check must succeed but set res if public key is zero */
      +    if (!TEST_true(ossl_ffc_validate_public_key(params, pub, &res)))
               goto err;
           if (!TEST_int_eq(FFC_ERROR_PUBKEY_TOO_SMALL, res))
               goto err;
      -    /* Fail if public key is 1 */
      -    if (!TEST_false(ossl_ffc_validate_public_key(params, BN_value_one(), &res)))
      +    /* Check must succeed but set res if public key is 1 */
      +    if (!TEST_true(ossl_ffc_validate_public_key(params, BN_value_one(), &res)))
               goto err;
           if (!TEST_int_eq(FFC_ERROR_PUBKEY_TOO_SMALL, res))
               goto err;
      @@ -482,24 +480,24 @@ static int ffc_public_validate_test(void)
       
           if (!TEST_ptr(BN_copy(pub, params->p)))
               goto err;
      -    /* Fail if public key = p */
      -    if (!TEST_false(ossl_ffc_validate_public_key(params, pub, &res)))
      +    /* Check must succeed but set res if public key = p */
      +    if (!TEST_true(ossl_ffc_validate_public_key(params, pub, &res)))
               goto err;
           if (!TEST_int_eq(FFC_ERROR_PUBKEY_TOO_LARGE, res))
               goto err;
       
           if (!TEST_true(BN_sub_word(pub, 1)))
               goto err;
      -    /* Fail if public key = p - 1 */
      -    if (!TEST_false(ossl_ffc_validate_public_key(params, pub, &res)))
      +    /* Check must succeed but set res if public key = p - 1 */
      +    if (!TEST_true(ossl_ffc_validate_public_key(params, pub, &res)))
               goto err;
           if (!TEST_int_eq(FFC_ERROR_PUBKEY_TOO_LARGE, res))
               goto err;
       
           if (!TEST_true(BN_sub_word(pub, 1)))
               goto err;
      -    /* Fail if public key is not related to p & q */
      -    if (!TEST_false(ossl_ffc_validate_public_key(params, pub, &res)))
      +    /* Check must succeed but set res if public key is not related to p & q */
      +    if (!TEST_true(ossl_ffc_validate_public_key(params, pub, &res)))
               goto err;
           if (!TEST_int_eq(FFC_ERROR_PUBKEY_INVALID, res))
               goto err;
      @@ -510,14 +508,14 @@ static int ffc_public_validate_test(void)
           if (!TEST_true(ossl_ffc_validate_public_key(params, pub, &res)))
               goto err;
       
      -    /* Fail if params is NULL */
      -    if (!TEST_false(ossl_ffc_validate_public_key(NULL, pub, &res)))
      +    /* Check must succeed but set res if params is NULL */
      +    if (!TEST_true(ossl_ffc_validate_public_key(NULL, pub, &res)))
               goto err;
           if (!TEST_int_eq(FFC_ERROR_PASSED_NULL_PARAM, res))
               goto err;
           res = -1;
      -    /* Fail if pubkey is NULL */
      -    if (!TEST_false(ossl_ffc_validate_public_key(params, NULL, &res)))
      +    /* Check must succeed but set res if pubkey is NULL */
      +    if (!TEST_true(ossl_ffc_validate_public_key(params, NULL, &res)))
               goto err;
           if (!TEST_int_eq(FFC_ERROR_PASSED_NULL_PARAM, res))
               goto err;
      @@ -525,8 +523,8 @@ static int ffc_public_validate_test(void)
       
           BN_free(params->p);
           params->p = NULL;
      -    /* Fail if params->p is NULL */
      -    if (!TEST_false(ossl_ffc_validate_public_key(params, pub, &res)))
      +    /* Check must succeed but set res if params->p is NULL */
      +    if (!TEST_true(ossl_ffc_validate_public_key(params, pub, &res)))
               goto err;
           if (!TEST_int_eq(FFC_ERROR_PASSED_NULL_PARAM, res))
               goto err;
      diff --git a/deps/openssl/openssl/test/pbetest.c b/deps/openssl/openssl/test/pbetest.c
      index d73ae66fa536af..cfffc2b9323327 100644
      --- a/deps/openssl/openssl/test/pbetest.c
      +++ b/deps/openssl/openssl/test/pbetest.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2021-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -15,6 +15,8 @@
       #include 
       #include 
       #include 
      +#include 
      +#include 
       
       #if !defined OPENSSL_NO_RC4 && !defined OPENSSL_NO_MD5 \
           || !defined OPENSSL_NO_DES && !defined OPENSSL_NO_SHA1
      @@ -123,8 +125,27 @@ static int test_pkcs5_pbe_des_sha1(void)
       }
       #endif
       
      +#ifdef OPENSSL_NO_AUTOLOAD_CONFIG
      +/*
      + * For configurations where we are not autoloading configuration, we need
      + * to access the legacy provider.  The easiest way is to load both the
      + * legacy and default providers directly and unload them on termination.
      + */
      +static OSSL_PROVIDER *legacy, *dflt;
      +#endif
      +
       int setup_tests(void)
       {
      +#ifdef OPENSSL_NO_AUTOLOAD_CONFIG
      +    /* Load required providers if not done via configuration */
      +    legacy = OSSL_PROVIDER_load(NULL, "legacy");
      +    dflt = OSSL_PROVIDER_load(NULL, "default");
      +    if (!TEST_ptr(legacy) || !TEST_ptr(dflt)) {
      +        cleanup_tests();
      +        return -1;
      +    }
      +#endif
      +
       #if !defined OPENSSL_NO_RC4 && !defined OPENSSL_NO_MD5
           ADD_TEST(test_pkcs5_pbe_rc4_md5);
       #endif
      @@ -134,3 +155,13 @@ int setup_tests(void)
       
           return 1;
       }
      +
      +#ifdef OPENSSL_NO_AUTOLOAD_CONFIG
      +void cleanup_tests(void)
      +{
      +    /* Dispose of providers */
      +    OSSL_PROVIDER_unload(legacy);
      +    OSSL_PROVIDER_unload(dflt);
      +    legacy = dflt = NULL;
      +}
      +#endif
      diff --git a/deps/openssl/openssl/test/pemtest.c b/deps/openssl/openssl/test/pemtest.c
      index c8c88bf1f1656f..bf970983654439 100644
      --- a/deps/openssl/openssl/test/pemtest.c
      +++ b/deps/openssl/openssl/test/pemtest.c
      @@ -125,6 +125,35 @@ static int test_empty_payload(void)
           return ret;
       }
       
      +static int test_protected_params(void)
      +{
      +    BIO *b;
      +    static char *protectedpay =
      +        "-----BEGIN RSA PRIVATE KEY-----\n"
      +        "Proc-Type: 4,ENCRYPTED\n"
      +        "DEK-Info: AES-256-CBC,4A44448ED28992710556549B35100CEA\n"
      +        "\n"
      +        "Xw3INxKeH+rUUF57mjATpvj6zknVhedwrlRmRvnwlLv5wqIy5Ae4UVLPh7SUswfC\n"
      +        "-----END RSA PRIVATE KEY-----\n";
      +    EVP_PKEY *pkey = NULL;
      +    int ret = 0;
      +
      +    b = BIO_new_mem_buf(protectedpay, strlen(protectedpay));
      +    if (!TEST_ptr(b))
      +        return 0;
      +
      +    /* Expected to fail because we cannot decrypt protected PEM files */
      +    pkey = PEM_read_bio_Parameters(b, NULL);
      +    if (!TEST_ptr_null(pkey))
      +        goto err;
      +
      +    ret = 1;
      + err:
      +    EVP_PKEY_free(pkey);
      +    BIO_free(b);
      +    return ret;
      +}
      +
       int setup_tests(void)
       {
           if (!TEST_ptr(pemfile = test_get_argument(0)))
      @@ -133,5 +162,6 @@ int setup_tests(void)
           ADD_TEST(test_invalid);
           ADD_TEST(test_cert_key_cert);
           ADD_TEST(test_empty_payload);
      +    ADD_TEST(test_protected_params);
           return 1;
       }
      diff --git a/deps/openssl/openssl/test/pkcs12_format_test.c b/deps/openssl/openssl/test/pkcs12_format_test.c
      index d4129d2522bce8..c142093f72bbbc 100644
      --- a/deps/openssl/openssl/test/pkcs12_format_test.c
      +++ b/deps/openssl/openssl/test/pkcs12_format_test.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -792,6 +792,70 @@ static int pkcs12_create_test(void)
       }
       #endif
       
      +static int pkcs12_recreate_test(void)
      +{
      +    int ret = 0;
      +    X509 *cert = NULL;
      +    X509 *cert_parsed = NULL;
      +    EVP_PKEY *pkey = NULL;
      +    EVP_PKEY *pkey_parsed = NULL;
      +    PKCS12 *p12 = NULL;
      +    PKCS12 *p12_parsed = NULL;
      +    PKCS12 *p12_recreated = NULL;
      +    const unsigned char *cert_bytes = CERT1;
      +    const unsigned char *key_bytes = KEY1;
      +    BIO *bio = NULL;
      +
      +    cert = d2i_X509(NULL, &cert_bytes, sizeof(CERT1));
      +    if (!TEST_ptr(cert))
      +        goto err;
      +    pkey = d2i_AutoPrivateKey(NULL, &key_bytes, sizeof(KEY1));
      +    if (!TEST_ptr(pkey))
      +        goto err;
      +    p12 = PKCS12_create("pass", NULL, pkey, cert, NULL, NID_aes_256_cbc,
      +                        NID_aes_256_cbc, 2, 1, 0);
      +    if (!TEST_ptr(p12))
      +        goto err;
      +    if (!TEST_int_eq(ERR_peek_error(), 0))
      +        goto err;
      +
      +    bio = BIO_new(BIO_s_mem());
      +    if (!TEST_ptr(bio))
      +        goto err;
      +    if (!TEST_int_eq(i2d_PKCS12_bio(bio, p12), 1))
      +        goto err;
      +    p12_parsed = PKCS12_init_ex(NID_pkcs7_data, testctx, NULL);
      +    if (!TEST_ptr(p12_parsed))
      +        goto err;
      +    p12_parsed = d2i_PKCS12_bio(bio, &p12_parsed);
      +    if (!TEST_ptr(p12_parsed))
      +        goto err;
      +    if (!TEST_int_eq(PKCS12_parse(p12_parsed, "pass", &pkey_parsed,
      +                                  &cert_parsed, NULL), 1))
      +        goto err;
      +
      +    /* cert_parsed also contains auxiliary data */
      +    p12_recreated = PKCS12_create("new_pass", NULL, pkey_parsed, cert_parsed,
      +                                  NULL, NID_aes_256_cbc, NID_aes_256_cbc,
      +                                  2, 1, 0);
      +    if (!TEST_ptr(p12_recreated))
      +        goto err;
      +    if (!TEST_int_eq(ERR_peek_error(), 0))
      +        goto err;
      +
      +    ret = 1;
      +err:
      +    BIO_free(bio);
      +    PKCS12_free(p12);
      +    PKCS12_free(p12_parsed);
      +    PKCS12_free(p12_recreated);
      +    EVP_PKEY_free(pkey);
      +    EVP_PKEY_free(pkey_parsed);
      +    X509_free(cert);
      +    X509_free(cert_parsed);
      +    return ret;
      +}
      +
       typedef enum OPTION_choice {
           OPT_ERR = -1,
           OPT_EOF = 0,
      @@ -873,6 +937,8 @@ int setup_tests(void)
           if (default_libctx)
               ADD_TEST(pkcs12_create_test);
       #endif
      +    if (default_libctx)
      +        ADD_TEST(pkcs12_recreate_test);
           ADD_ALL_TESTS(test_single_key_enc_pass, OSSL_NELEM(passwords));
           ADD_ALL_TESTS(test_single_key_enc_iter, OSSL_NELEM(iters));
           ADD_TEST(test_single_key_with_attrs);
      diff --git a/deps/openssl/openssl/test/property_test.c b/deps/openssl/openssl/test/property_test.c
      index 6a405e364baf10..1005b9952c9a6c 100644
      --- a/deps/openssl/openssl/test/property_test.c
      +++ b/deps/openssl/openssl/test/property_test.c
      @@ -616,6 +616,9 @@ static struct {
           { "", "" },
           { "fips=3", "fips=3" },
           { "fips=-3", "fips=-3" },
      +    { "provider='foo bar'", "provider='foo bar'" },
      +    { "provider=\"foo bar'\"", "provider=\"foo bar'\"" },
      +    { "provider=abc***", "provider='abc***'" },
           { NULL, "" }
       };
       
      diff --git a/deps/openssl/openssl/test/provider_internal_test.c b/deps/openssl/openssl/test/provider_internal_test.c
      index cb7d5efcf54889..1fe8fb0cc5c412 100644
      --- a/deps/openssl/openssl/test/provider_internal_test.c
      +++ b/deps/openssl/openssl/test/provider_internal_test.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -83,6 +83,7 @@ static int test_loaded_provider(void)
               && test_provider(prov, expected_greeting1(name));
       }
       
      +# ifndef OPENSSL_NO_AUTOLOAD_CONFIG
       static int test_configured_provider(void)
       {
           const char *name = "p_test_configured";
      @@ -95,6 +96,7 @@ static int test_configured_provider(void)
               TEST_ptr(prov = ossl_provider_find(NULL, name, 0))
               && test_provider(prov, expected_greeting);
       }
      +# endif
       #endif
       
       static int test_cache_flushes(void)
      @@ -139,7 +141,9 @@ int setup_tests(void)
           ADD_TEST(test_builtin_provider);
       #ifndef NO_PROVIDER_MODULE
           ADD_TEST(test_loaded_provider);
      +# ifndef OPENSSL_NO_AUTOLOAD_CONFIG
           ADD_TEST(test_configured_provider);
      +# endif
       #endif
           ADD_TEST(test_cache_flushes);
           return 1;
      diff --git a/deps/openssl/openssl/test/recipes/05-test_rand.t b/deps/openssl/openssl/test/recipes/05-test_rand.t
      index 3f352db9df3a6d..aa012c1907adee 100644
      --- a/deps/openssl/openssl/test/recipes/05-test_rand.t
      +++ b/deps/openssl/openssl/test/recipes/05-test_rand.t
      @@ -1,5 +1,5 @@
       #! /usr/bin/env perl
      -# Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2015-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -29,12 +29,12 @@ SKIP: {
           @randdata = run(app(['openssl', 'rand', '-engine', 'ossltest', '-hex', '16' ]),
                           capture => 1, statusvar => \$success);
           chomp(@randdata);
      -    ok($success and $randdata[0] eq $expected,
      +    ok($success && $randdata[0] eq $expected,
              "rand with ossltest: Check rand output is as expected");
       
           @randdata = run(app(['openssl', 'rand', '-engine', 'dasync', '-hex', '16' ]),
                           capture => 1, statusvar => \$success);
           chomp(@randdata);
      -    ok($success and length($randdata[0]) == 32,
      +    ok($success && length($randdata[0]) == 32,
              "rand with dasync: Check rand output is of expected length");
       }
      diff --git a/deps/openssl/openssl/test/recipes/15-test_rsapss.t b/deps/openssl/openssl/test/recipes/15-test_rsapss.t
      index c566ade933e9d6..44721a32372f78 100644
      --- a/deps/openssl/openssl/test/recipes/15-test_rsapss.t
      +++ b/deps/openssl/openssl/test/recipes/15-test_rsapss.t
      @@ -1,5 +1,5 @@
       #! /usr/bin/env perl
      -# Copyright 2017-2022 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -16,7 +16,7 @@ use OpenSSL::Test::Utils;
       
       setup("test_rsapss");
       
      -plan tests => 11;
      +plan tests => 13;
       
       #using test/testrsa.pem which happens to be a 512 bit RSA
       ok(run(app(['openssl', 'dgst', '-sign', srctop_file('test', 'testrsa.pem'), '-sha1',
      @@ -79,6 +79,8 @@ ok(run(app(['openssl', 'dgst', '-prverify', srctop_file('test', 'testrsa.pem'),
          my $rsapss = "rsapss.key";
          ok(run(app(['openssl', 'genpkey', '-algorithm', 'RSA-PSS',
                      '-pkeyopt', 'rsa_keygen_bits:1024',
      +               '-pkeyopt', 'rsa_keygen_pubexp:65537',
      +               '-pkeyopt', 'rsa_keygen_primes:2',
                      '--out', $rsapss])));
          ok(run(app(['openssl', 'rsa', '-check',
                      '-in', $rsapss])));
      @@ -87,3 +89,11 @@ ok(run(app(['openssl', 'dgst', '-prverify', srctop_file('test', 'testrsa.pem'),
       ok(!run(app([ 'openssl', 'rsa',
                    '-in' => data_file('negativesaltlen.pem')],
                    '-out' => 'badout')));
      +
      +ok(run(app(['openssl', 'genpkey', '-algorithm', 'RSA-PSS', '-pkeyopt', 'rsa_keygen_bits:1024',
      +            '-pkeyopt', 'rsa_pss_keygen_md:SHA256', '-pkeyopt', 'rsa_pss_keygen_saltlen:10',
      +            '-out', 'testrsapss.pem'])),
      +   "openssl genpkey RSA-PSS with pss parameters");
      +ok(run(app(['openssl', 'pkey', '-in', 'testrsapss.pem', '-pubout', '-text'])),
      +   "openssl pkey, execute rsa_pub_encode with pss parameters");
      +unlink 'testrsapss.pem';
      diff --git a/deps/openssl/openssl/test/recipes/25-test_req.t b/deps/openssl/openssl/test/recipes/25-test_req.t
      index e615f1b338855f..8c8274aee699ce 100644
      --- a/deps/openssl/openssl/test/recipes/25-test_req.t
      +++ b/deps/openssl/openssl/test/recipes/25-test_req.t
      @@ -1,5 +1,5 @@
       #! /usr/bin/env perl
      -# Copyright 2015-2022 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2015-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -15,7 +15,7 @@ use OpenSSL::Test qw/:DEFAULT srctop_file/;
       
       setup("test_req");
       
      -plan tests => 44;
      +plan tests => 46;
       
       require_ok(srctop_file('test', 'recipes', 'tconversion.pl'));
       
      @@ -473,3 +473,14 @@ my $cert = "self-signed_CA_with_keyUsages.pem";
       generate_cert($cert, "-in", srctop_file(@certs, "ext-check.csr"),
           "-copy_extensions", "copy");
       has_keyUsage($cert, 1);
      +
      +# Generate cert using req with '-modulus'
      +ok(run(app(["openssl", "req", "-x509", "-new", "-days", "365",
      +            "-key", srctop_file("test", "testrsa.pem"),
      +            "-config", srctop_file('test', 'test.cnf'),
      +            "-out", "testreq-cert.pem",
      +            "-modulus"])), "cert req creation - with -modulus");
      +
      +# Verify cert
      +ok(run(app(["openssl", "x509", "-in", "testreq-cert.pem",
      +            "-noout", "-text"])), "cert verification");
      diff --git a/deps/openssl/openssl/test/recipes/30-test_defltfips.t b/deps/openssl/openssl/test/recipes/30-test_defltfips.t
      index 426bd660d1fd61..c8f145405b2b4e 100644
      --- a/deps/openssl/openssl/test/recipes/30-test_defltfips.t
      +++ b/deps/openssl/openssl/test/recipes/30-test_defltfips.t
      @@ -1,5 +1,5 @@
       #! /usr/bin/env perl
      -# Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2015-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -21,6 +21,9 @@ BEGIN {
       use lib srctop_dir('Configurations');
       use lib bldtop_dir('.');
       
      +plan skip_all => "Configuration loading is turned off"
      +    if disabled("autoload-config");
      +
       my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
       
       plan tests =>
      diff --git a/deps/openssl/openssl/test/recipes/30-test_evp.t b/deps/openssl/openssl/test/recipes/30-test_evp.t
      index 0a036b7da01826..af823515f9bd64 100644
      --- a/deps/openssl/openssl/test/recipes/30-test_evp.t
      +++ b/deps/openssl/openssl/test/recipes/30-test_evp.t
      @@ -1,5 +1,5 @@
       #! /usr/bin/env perl
      -# Copyright 2015-2022 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2015-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -173,7 +173,8 @@ sub test_errors { # actually tests diagnostics of OSSL_STORE
       }
       
       SKIP: {
      -    skip "DSA not disabled", 2 if !disabled("dsa");
      +    skip "DSA not disabled or ERR disabled", 2
      +        if !disabled("dsa") || disabled("err");
       
           ok(test_errors(key => 'server-dsa-key.pem',
                          out => 'server-dsa-key.err'),
      diff --git a/deps/openssl/openssl/test/recipes/80-test_cms.t b/deps/openssl/openssl/test/recipes/80-test_cms.t
      index cabbe3ecdf1a5d..be779233130e20 100644
      --- a/deps/openssl/openssl/test/recipes/80-test_cms.t
      +++ b/deps/openssl/openssl/test/recipes/80-test_cms.t
      @@ -50,7 +50,7 @@ my ($no_des, $no_dh, $no_dsa, $no_ec, $no_ec2m, $no_rc2, $no_zlib)
       
       $no_rc2 = 1 if disabled("legacy");
       
      -plan tests => 16;
      +plan tests => 18;
       
       ok(run(test(["pkcs7_test"])), "test pkcs7");
       
      @@ -994,3 +994,28 @@ with({ exit_checker => sub { return shift == 6; } },
                          ])),
                   "Check failure during BIO setup with -stream is handled correctly");
           });
      +
      +# Test case for return value mis-check reported in #21986
      +with({ exit_checker => sub { return shift == 3; } },
      +    sub {
      +        SKIP: {
      +          skip "DSA is not supported in this build", 1 if $no_dsa;
      +
      +          ok(run(app(['openssl', 'cms', '-sign',
      +                      '-in', srctop_file("test", "smcont.txt"),
      +                      '-signer', srctop_file("test/smime-certs", "smdsa1.pem"),
      +                      '-md', 'SHAKE256'])),
      +            "issue#21986");
      +        }
      +    });
      +
      +# Test for problem reported in #22225
      +with({ exit_checker => sub { return shift == 3; } },
      +    sub {
      +	ok(run(app(['openssl', 'cms', '-encrypt',
      +		    '-in', srctop_file("test", "smcont.txt"),
      +		    '-aes-256-ctr', '-recip',
      +		    catfile($smdir, "smec1.pem"),
      +		   ])),
      +	   "Check for failure when cipher does not have an assigned OID (issue#22225)");
      +     });
      diff --git a/deps/openssl/openssl/test/recipes/99-test_fuzz_x509.t b/deps/openssl/openssl/test/recipes/99-test_fuzz_x509.t
      index 9a1e3a19cadce4..b0b86365d10193 100644
      --- a/deps/openssl/openssl/test/recipes/99-test_fuzz_x509.t
      +++ b/deps/openssl/openssl/test/recipes/99-test_fuzz_x509.t
      @@ -1,5 +1,5 @@
       #!/usr/bin/env perl
      -# Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
      +# Copyright 2016-2023 The OpenSSL Project Authors. All Rights Reserved.
       #
       # Licensed under the Apache License 2.0 (the "License").  You may not use
       # this file except in compliance with the License.  You can obtain a copy
      @@ -15,6 +15,9 @@ use OpenSSL::Test::Utils;
       my $fuzzer = "x509";
       setup("test_fuzz_${fuzzer}");
       
      +plan skip_all => "This test requires ocsp support"
      +    if disabled("ocsp");
      +
       plan tests => 2; # one more due to below require_ok(...)
       
       require_ok(srctop_file('test','recipes','fuzz.pl'));
      diff --git a/deps/openssl/openssl/test/rsa_test.c b/deps/openssl/openssl/test/rsa_test.c
      index 62a54df74d89db..18345b431a7cc5 100644
      --- a/deps/openssl/openssl/test/rsa_test.c
      +++ b/deps/openssl/openssl/test/rsa_test.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved.
        *
        * Licensed under the Apache License 2.0 (the "License").  You may not use
        * this file except in compliance with the License.  You can obtain a copy
      @@ -391,10 +391,126 @@ static int test_rsa_security_bit(int n)
           return r;
       }
       
      +static int test_EVP_rsa_legacy_key(void)
      +{
      +    int ret;
      +    size_t buflen = 384;
      +    size_t msglen = 64;
      +    unsigned char sigbuf[384];
      +    unsigned char msgbuf[64];
      +    BIGNUM *p;
      +    BIGNUM *q;
      +    BIGNUM *n;
      +    BIGNUM *d;
      +    BIGNUM *e;
      +    RSA *rsa;
      +    const EVP_MD *md;
      +    EVP_MD_CTX *ctx = NULL;
      +    EVP_PKEY *pkey = NULL;
      +
      +    unsigned char n_data[] = {
      +    0x00, 0xc7, 0x28, 0x7a, 0x28, 0x91, 0x51, 0xa5, 0xe8, 0x3c, 0x45, 0xcf,
      +    0x1d, 0xa9, 0x69, 0x7a, 0x0d, 0xdb, 0xdd, 0x8f, 0xe2, 0xde, 0x85, 0xdd,
      +    0x85, 0x6d, 0x8f, 0x78, 0x20, 0xd6, 0xe, 0xe5, 0x06, 0xcb, 0x9c, 0xd6,
      +    0xd3, 0xca, 0xef, 0x1d, 0x80, 0xd3, 0x18, 0x23, 0x91, 0x5c, 0xe5, 0xc8,
      +    0x44, 0x37, 0x56, 0x1b, 0x68, 0x7f, 0x08, 0xa3, 0x1c, 0xf6, 0xe8, 0x11,
      +    0x38, 0x0f, 0x2e, 0xad, 0xb1, 0x89, 0x8b, 0x08, 0xe8, 0x35, 0xaf, 0x3b,
      +    0xfe, 0x37, 0x8d, 0x21, 0xd5, 0x3f, 0x1f, 0x4b, 0x01, 0x30, 0xd8, 0xd0,
      +    0x24, 0xf7, 0xab, 0x57, 0xad, 0xac, 0xbc, 0x53, 0x6d, 0x84, 0x8e, 0xa1,
      +    0xb2, 0x5b, 0x8e, 0xe7, 0xb3, 0xac, 0xfc, 0x60, 0x22, 0x10, 0x1e, 0x99,
      +    0xfa, 0xa0, 0x60, 0x00, 0x69, 0x5f, 0x8e, 0xca, 0x6d, 0x9c, 0xee, 0x5e,
      +    0x84, 0x4e, 0x53, 0x83, 0x42, 0x76, 0x4d, 0xb8, 0xc1, 0xeb, 0x4e, 0x3d,
      +    0xc3, 0xce, 0xac, 0x79, 0xbb, 0x29, 0x5d, 0x92, 0x33, 0x6e, 0xcf, 0x8f,
      +    0x5a, 0xf0, 0xb3, 0xb5, 0xdc, 0xd5, 0xa3, 0xaf, 0x40, 0x4b, 0x0f, 0x05,
      +    0xac, 0x46, 0x53, 0x2d, 0x5f, 0x20, 0x96, 0x42, 0xa8, 0x47, 0x61, 0x54,
      +    0x05, 0x2c, 0x8a, 0x26, 0x5d, 0x92, 0x1d, 0x01, 0x2a, 0x27, 0x8a, 0xfc,
      +    0x64, 0x24, 0x5c, 0x34, 0xde, 0x92, 0xc6, 0x82, 0xea, 0x4d, 0xe2, 0x52,
      +    0xe5, 0xad, 0x62, 0x00, 0xc6, 0xc8, 0xe9, 0x0c, 0x22, 0xf0, 0x9e, 0xbe,
      +    0xdc, 0x51, 0x58, 0xad, 0x3b, 0xba, 0x2e, 0x45, 0x65, 0xcc, 0x5b, 0x55,
      +    0x46, 0x67, 0x18, 0x4a, 0x80, 0x67, 0x5b, 0x84, 0x7f, 0x13, 0x37, 0x45,
      +    0xd8, 0x03, 0xc6, 0x22, 0xc3, 0x4a, 0x46, 0x6b, 0xde, 0x50, 0xbf, 0x16,
      +    0x0a, 0x23, 0x0b, 0xaa, 0x50, 0x54, 0xf6, 0x20, 0x83, 0x74, 0x33, 0x97,
      +    0x2e, 0xf2, 0x8e, 0x7e, 0x13 };
      +
      +    unsigned char e_data[]  = { 0x01, 0x00, 0x01 };
      +
      +    unsigned char d_data[] = {
      +    0x09, 0x2d, 0xcb, 0xe7, 0x87, 0xbf, 0x10, 0x1a, 0xf2, 0x80, 0x33, 0x2a,
      +    0x06, 0x4f, 0x56, 0xb1, 0x41, 0xd3, 0x65, 0xd8, 0xca, 0x71, 0xb8, 0x02,
      +    0x78, 0xc8, 0xb6, 0x7c, 0x28, 0xf4, 0x6c, 0xe8, 0xd1, 0xc4, 0x92, 0x40,
      +    0x23, 0xa7, 0xbe, 0x9f, 0xdb, 0xda, 0xce, 0x74, 0xda, 0x27, 0xbb, 0x01,
      +    0xad, 0xdd, 0x39, 0x99, 0x28, 0xd5, 0xb0, 0x92, 0xda, 0xac, 0x5a, 0x72,
      +    0xcf, 0x7c, 0x52, 0xc4, 0x0e, 0x77, 0x4a, 0x7b, 0x4d, 0x52, 0x1c, 0xbd,
      +    0x3c, 0x39, 0x34, 0x78, 0x7c, 0x16, 0xc8, 0xa1, 0xae, 0xeb, 0x27, 0x38,
      +    0xb4, 0xf3, 0x80, 0x30, 0x80, 0x78, 0x13, 0x8e, 0x46, 0x20, 0x3e, 0xc2,
      +    0x96, 0x26, 0xb1, 0x76, 0x1e, 0x00, 0x69, 0xbb, 0xd8, 0x2b, 0x58, 0xe4,
      +    0x6c, 0xb4, 0xd0, 0x00, 0x0b, 0x47, 0xec, 0xfb, 0x7d, 0x52, 0x9d, 0x27,
      +    0x92, 0xe6, 0x95, 0x73, 0xa0, 0x39, 0x37, 0xcd, 0x1f, 0x60, 0x13, 0x1c,
      +    0x87, 0x9d, 0xa7, 0x91, 0x90, 0xf9, 0x36, 0xc5, 0xfa, 0x3f, 0xf9, 0x7f,
      +    0x50, 0xf8, 0xb3, 0x54, 0x65, 0xff, 0x6f, 0xa6, 0x22, 0xcc, 0x4a, 0x1e,
      +    0x49, 0x3f, 0x07, 0xc6, 0xf2, 0x65, 0x73, 0x13, 0x1b, 0x2d, 0xb6, 0x15,
      +    0xff, 0xcd, 0x9a, 0x1c, 0xea, 0xef, 0x58, 0x56, 0x91, 0x2d, 0x47, 0x81,
      +    0x56, 0x0d, 0xc3, 0xb0, 0x47, 0x58, 0x8d, 0x05, 0x7d, 0x5b, 0xc0, 0x22,
      +    0xa4, 0xf0, 0x2e, 0x70, 0x36, 0x01, 0x89, 0xa1, 0x71, 0xed, 0x76, 0xe9,
      +    0x8d, 0xf5, 0x49, 0xaf, 0x11, 0xbe, 0xe4, 0xd4, 0x48, 0x92, 0xb6, 0x5b,
      +    0xc2, 0x04, 0xd4, 0x0c, 0x5c, 0x8b, 0xe3, 0xfa, 0x29, 0x63, 0x86, 0xb4,
      +    0x10, 0xad, 0x32, 0x07, 0x85, 0xe2, 0x43, 0x76, 0x16, 0x90, 0xab, 0xdf,
      +    0xb3, 0x36, 0x0a, 0xc4, 0x49, 0x7b, 0x95, 0x48, 0x50, 0x72, 0x8f, 0x7d,
      +    0xf4, 0xfa, 0x60, 0xc1 };
      +
      +    unsigned char p_data[] = {
      +    0x00, 0xed, 0xf7, 0xa7, 0x00, 0x5a, 0xbb, 0xd1, 0x52, 0x65, 0x9b, 0xec,
      +    0xfe, 0x27, 0x8b, 0xe2, 0xbe, 0x40, 0x8c, 0x2f, 0x6f, 0xb4, 0x26, 0xb2,
      +    0xbe, 0x45, 0x4b, 0x3b, 0x5a, 0xaa, 0xc6, 0xaa, 0xfa, 0xc1, 0x3a, 0xa9,
      +    0xa1, 0xba, 0xb7, 0x86, 0x1a, 0x98, 0x15, 0x5f, 0x5c, 0x1c, 0x57, 0x78,
      +    0x78, 0x6a, 0x13, 0xc2, 0x40, 0x7d, 0x07, 0x87, 0x47, 0xc6, 0x96, 0xd5,
      +    0x92, 0xc9, 0x65, 0x2c, 0xfe, 0xbb, 0xe0, 0xd6, 0x76, 0x25, 0x5a, 0xa3,
      +    0xdf, 0x97, 0x4b, 0x64, 0xfd, 0x3b, 0x2b, 0xbc, 0xfb, 0x80, 0xad, 0x3b,
      +    0x7d, 0x1f, 0x48, 0x56, 0x27, 0xf7, 0x2f, 0x8e, 0x92, 0x07, 0xa8, 0x9f,
      +    0xbc, 0x5a, 0xce, 0xfa, 0xd5, 0x67, 0xad, 0xf4, 0xbf, 0xe0, 0xc9, 0x3e,
      +    0x8e, 0xb5, 0x90, 0x58, 0x54, 0x92, 0x9f, 0xda, 0x36, 0xc0, 0x0d, 0x57,
      +    0xfe, 0x6c, 0x23, 0x63, 0x8b, 0xd1, 0x1e, 0x4f, 0xd3 };
      +
      +    unsigned char q_data[] = {
      +    0x00, 0xd6, 0x3f, 0xf5, 0xee, 0xff, 0x4d, 0x7d, 0x8c, 0x1a, 0x85, 0x5d,
      +    0x3c, 0x4f, 0x9d, 0xdf, 0xc7, 0x68, 0x27, 0x7f, 0xe4, 0x4f, 0x4f, 0xd7,
      +    0xa2, 0x3b, 0xcd, 0x4a, 0x34, 0xd8, 0x55, 0x4a, 0x3e, 0x8e, 0xb3, 0xa8,
      +    0xe9, 0x8a, 0xc5, 0x94, 0xd1, 0x09, 0x32, 0x4b, 0x79, 0x8d, 0x7b, 0x03,
      +    0x0b, 0x5d, 0xca, 0x91, 0x41, 0xbc, 0x82, 0xc3, 0x89, 0x67, 0x4d, 0x03,
      +    0x68, 0x03, 0x2d, 0x0e, 0x4e, 0x97, 0x6c, 0xf6, 0x3e, 0x1f, 0xf4, 0x50,
      +    0x06, 0x5d, 0x05, 0x22, 0xf2, 0xf8, 0xf2, 0xde, 0xad, 0x2e, 0x9d, 0xc3,
      +    0x97, 0x1b, 0xc3, 0x75, 0xe7, 0x86, 0xde, 0xc5, 0x11, 0x89, 0xed, 0x6a,
      +    0x13, 0x14, 0x23, 0x4b, 0x98, 0x81, 0xf7, 0xd4, 0x1c, 0xee, 0x30, 0x92,
      +    0x85, 0x20, 0x4f, 0x35, 0x02, 0xfa, 0xda, 0x14, 0x77, 0xfa, 0x08, 0x34,
      +    0x60, 0xc7, 0x93, 0x72, 0xdc, 0xc4, 0x18, 0x70, 0xc1 };
      +
      +    memset(msgbuf, 0xef, 64);
      +
      +    ret = (TEST_ptr((p = BN_bin2bn(p_data, sizeof(p_data), NULL)))
      +           && TEST_ptr((q = BN_bin2bn(q_data, sizeof(q_data), NULL)))
      +           && TEST_ptr((n = BN_bin2bn(n_data, sizeof(n_data), NULL)))
      +           && TEST_ptr((d = BN_bin2bn(d_data, sizeof(d_data), NULL)))
      +           && TEST_ptr((e = BN_bin2bn(e_data, sizeof(e_data), NULL)))
      +           && TEST_ptr((rsa = RSA_new()))
      +           && TEST_ptr((md = EVP_sha256()))
      +           && TEST_ptr((ctx = EVP_MD_CTX_new()))
      +           && TEST_ptr((pkey = EVP_PKEY_new()))
      +           && TEST_true(RSA_set0_factors(rsa, p, q))
      +           && TEST_true(RSA_set0_key(rsa, n, e, d))
      +           && TEST_true(EVP_PKEY_assign_RSA(pkey, rsa))
      +           && TEST_true(EVP_DigestSignInit(ctx, NULL, md, NULL, pkey))
      +           && TEST_true(EVP_DigestSign(ctx, sigbuf, &buflen, msgbuf, msglen)));
      +
      +    EVP_MD_CTX_free(ctx);
      +    EVP_PKEY_free(pkey);
      +    return ret;
      +}
      +
       int setup_tests(void)
       {
           ADD_ALL_TESTS(test_rsa_pkcs1, 3);
           ADD_ALL_TESTS(test_rsa_oaep, 3);
           ADD_ALL_TESTS(test_rsa_security_bit, OSSL_NELEM(rsa_security_bits_cases));
      +    ADD_TEST(test_EVP_rsa_legacy_key);
           return 1;
       }
      diff --git a/deps/openssl/openssl/test/ssl_old_test.c b/deps/openssl/openssl/test/ssl_old_test.c
      index 91c8b5b7b535f6..6b56754b824017 100644
      --- a/deps/openssl/openssl/test/ssl_old_test.c
      +++ b/deps/openssl/openssl/test/ssl_old_test.c
      @@ -1,5 +1,5 @@
       /*
      - * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
      + * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
        * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
        * Copyright 2005 Nokia. All rights reserved.
        *
      @@ -1525,8 +1525,10 @@ int main(int argc, char *argv[])
                   ERR_print_errors(bio_err);
                   goto end;
               }
      -        SSL_CTX_set0_tmp_dh_pkey(s_ctx, dhpkey);
      -        SSL_CTX_set0_tmp_dh_pkey(s_ctx2, dhpkey);
      +        if (!SSL_CTX_set0_tmp_dh_pkey(s_ctx, dhpkey))
      +            EVP_PKEY_free(dhpkey);
      +        if (!SSL_CTX_set0_tmp_dh_pkey(s_ctx2, dhpkey))
      +            EVP_PKEY_free(dhpkey);
           }
       #endif
       
      diff --git a/deps/openssl/openssl/test/sslapitest.c b/deps/openssl/openssl/test/sslapitest.c
      index 3d0319ee3881af..a7df6552eb16b2 100644
      --- a/deps/openssl/openssl/test/sslapitest.c
      +++ b/deps/openssl/openssl/test/sslapitest.c
      @@ -1681,6 +1681,8 @@ static int test_large_app_data(int tst)
           return testresult;
       }
       
      +#if !defined(OPENSSL_NO_TLS1_2) || !defined(OSSL_NO_USABLE_TLS1_3) \
      +    || !defined(OPENSSL_NO_DTLS)
       static int execute_cleanse_plaintext(const SSL_METHOD *smeth,
                                            const SSL_METHOD *cmeth,
                                            int min_version, int max_version)
      @@ -1702,15 +1704,13 @@ static int execute_cleanse_plaintext(const SSL_METHOD *smeth,
                                              privkey)))
               goto end;
       
      -#ifdef OPENSSL_NO_DTLS1_2
      -    if (smeth == DTLS_server_method()) {
       # ifdef OPENSSL_NO_DTLS1_2
      +    if (smeth == DTLS_server_method()) {
               /* Not supported in the FIPS provider */
               if (is_fips) {
                   testresult = 1;
                   goto end;
               };
      -# endif
               /*
                * Default sigalgs are SHA1 based in  0) {
               ret = run_tests(argv[0]);
               cleanup_tests();
               opt_check_usage();
      -    } else {
      +    } else if (setup_res == 0) {
               opt_help(test_get_options());
           }
       end:
      diff --git a/deps/openssl/openssl/util/missingssl.txt b/deps/openssl/openssl/util/missingssl.txt
      index 48219fd99a9a47..41ca8a8bbc0022 100644
      --- a/deps/openssl/openssl/util/missingssl.txt
      +++ b/deps/openssl/openssl/util/missingssl.txt
      @@ -3,7 +3,6 @@ ERR_load_SSL_strings(3)
       SRP_Calc_A_param(3)
       SSL_COMP_get_name(3)
       SSL_COMP_set0_compression_methods(3)
      -SSL_CONF_CTX_finish(3)
       SSL_CTX_SRP_CTX_free(3)
       SSL_CTX_SRP_CTX_init(3)
       SSL_CTX_get0_certificate(3)
      diff --git a/deps/openssl/unofficial.gni b/deps/openssl/unofficial.gni
      new file mode 100644
      index 00000000000000..9b94ccb275e7bc
      --- /dev/null
      +++ b/deps/openssl/unofficial.gni
      @@ -0,0 +1,151 @@
      +# Copyright 2019 the V8 project authors. All rights reserved.
      +# Copyright 2023 Microsoft Inc.
      +# Use of this source code is governed by a BSD-style license that can be
      +# found in the LICENSE file.
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please edit the gyp files if you are making changes to build system.
      +
      +declare_args() {
      +  # Do not build optimized assembly for OpenSSL
      +  # FIXME(zcbenz): asm code does not compile with clang.
      +  openssl_no_asm = true
      +}
      +
      +# The actual configurations are put inside a template in unofficial.gni to
      +# prevent accidental edits from contributors.
      +template("openssl_gn_build") {
      +  config("openssl_external_config") {
      +    include_dirs = [
      +      "openssl/crypto/include",
      +      "openssl/include",
      +    ]
      +  }
      +
      +  config("openssl_internal_config") {
      +    gypi_values = exec_script("../../tools/gypi_to_gn.py",
      +                              [ rebase_path("openssl.gypi") ],
      +                              "scope",
      +                              [ "openssl.gypi" ])
      +
      +    defines = [
      +      "MODULESDIR=\"deps/openssl/lib/openssl-modules\"",
      +      "OPENSSL_API_COMPAT=0x10100001L",
      +      "STATIC_LEGACY",
      +    ] + gypi_values.openssl_default_defines_all
      +    if (is_win) {
      +      defines += [
      +        ## default of Win. See INSTALL in openssl repo.
      +        "OPENSSLDIR=\"C:\\\Program\ Files\\\Common\ Files\\\SSL\"",
      +        "ENGINESDIR=\"NUL\"",
      +        "OPENSSL_SYS_WIN32", "WIN32_LEAN_AND_MEAN", "L_ENDIAN",
      +        "_CRT_SECURE_NO_DEPRECATE", "UNICODE", "_UNICODE",
      +      ]
      +    } else if (is_mac) {
      +      defines += [
      +        "OPENSSLDIR=\"/System/Library/OpenSSL/\"",
      +        "ENGINESDIR=\"/dev/null\"",
      +      ]
      +    } else {
      +      defines += [
      +        "OPENSSLDIR=\"/etc/ssl\"",
      +        "ENGINESDIR=\"/dev/null\"",
      +        "TERMIOS",
      +      ]
      +    }
      +
      +    if (is_posix) {
      +      asmflags = [ "-fPIC" ]
      +      cflags = [ "-fPIC" ]
      +      ldflags = [ "-fPIC" ]
      +    }
      +    if (is_clang || !is_win) {
      +      cflags_c = [
      +        "-Wno-atomic-alignment",
      +        "-Wno-constant-conversion",
      +        "-Wno-implicit-fallthrough",
      +        "-Wno-implicit-function-declaration",
      +        "-Wno-sign-compare",
      +        "-Wno-unknown-escape-sequence",
      +        "-Wno-unreachable-code",
      +        "-Wno-unreachable-code-break",
      +        "-Wno-unreachable-code-return",
      +        "-Wno-unused-function",
      +      ]
      +    }
      +    if (is_win) {
      +      libs = [ "crypt32.lib" ]
      +    } else if (is_linux) {
      +      libs = [ "atomic" ]
      +    }
      +
      +    common_gypi_values = exec_script("../../tools/gypi_to_gn.py",
      +                                     [ rebase_path("openssl_common.gypi") ],
      +                                     "scope",
      +                                     [ "openssl_common.gypi" ])
      +    include_dirs = common_gypi_values.include_dirs
      +  }
      +
      +  static_library(target_name) {
      +    forward_variables_from(invoker, "*")
      +
      +    configs += [ ":openssl_internal_config" ]
      +    public_configs = [ ":openssl_external_config" ]
      +
      +    config_path_name = ""
      +    if (is_win) {
      +      if (target_cpu == "x86") {
      +        config_path_name = "VC-WIN32"
      +      } else if (target_cpu == "x64") {
      +        config_path_name = "VC-WIN64A"
      +      } else if (target_cpu == "arm64") {
      +        config_path_name = "VC-WIN64-ARM"
      +      }
      +    } else if (is_linux) {
      +      if (target_cpu == "x86") {
      +        config_path_name = "linux-elf"
      +      } else if (target_cpu == "x64") {
      +        config_path_name = "linux-x86_64"
      +      } else if (target_cpu == "arm") {
      +        config_path_name = "linux-armv4"
      +      } else if (target_cpu == "arm64") {
      +        config_path_name = "linux-aarch64"
      +      }
      +    } else if (is_apple) {
      +      if (target_cpu == "x86") {
      +        config_path_name = "darwin-i386-cc"
      +      } else if (target_cpu == "x64") {
      +        config_path_name = "darwin64-x86_64-cc"
      +      } else if (target_cpu == "arm64") {
      +        config_path_name = "darwin64-arm64-cc"
      +      }
      +    }
      +    assert(config_path_name != "", "Unsupported platform")
      +
      +    # GN variables can not have - in name.
      +    config_name = string_replace(config_path_name, "-", "_")
      +
      +    if (openssl_no_asm) {
      +      asm_name = "no-asm"
      +    } else {
      +      # TODO(zcbenz): Check gas_version and nasm_version.
      +      asm_name = "asm_avx2"
      +    }
      +    if (is_win && target_cpu == "arm64") {
      +      asm_name = "no-asm"
      +    }
      +    config_path = "config/archs/" + config_path_name + "/" + asm_name
      +
      +    gypi_values = exec_script("../../tools/gypi_to_gn.py",
      +                              [ rebase_path(config_path + "/openssl.gypi"), ],
      +                              "scope",
      +                              [ config_path + "/openssl.gypi" ])
      +
      +    include_dirs = rebase_path(gypi_values.include_dirs, ".", config_path)
      +    defines = gypi_values["openssl_defines_" + config_name]
      +    sources = filter_exclude(gypi_values.openssl_sources +
      +                             gypi_values["openssl_sources_" + config_name],
      +                             [ "*.ld" ])
      +  }
      +}
      diff --git a/deps/postject/BUILD.gn b/deps/postject/BUILD.gn
      new file mode 100644
      index 00000000000000..895b5bfc5b3a1a
      --- /dev/null
      +++ b/deps/postject/BUILD.gn
      @@ -0,0 +1,14 @@
      +##############################################################################
      +#                                                                            #
      +#                       DO NOT EDIT THIS FILE!                               #
      +#                                                                            #
      +##############################################################################
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please modify the gyp files if you are making changes to build system.
      +
      +import("unofficial.gni")
      +
      +postject_gn_build("postject") {
      +}
      diff --git a/deps/postject/unofficial.gni b/deps/postject/unofficial.gni
      new file mode 100644
      index 00000000000000..6a4d2ddb36e782
      --- /dev/null
      +++ b/deps/postject/unofficial.gni
      @@ -0,0 +1,21 @@
      +# Copyright 2023 Microsoft Inc.
      +# Use of this source code is governed by a BSD-style license that can be
      +# found in the LICENSE file.
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please edit the gyp files if you are making changes to build system.
      +
      +# The actual configurations are put inside a template in unofficial.gni to
      +# prevent accidental edits from contributors.
      +template("postject_gn_build") {
      +  config("postject_config") {
      +    include_dirs = [ "." ]
      +  }
      +
      +  source_set(target_name) {
      +    forward_variables_from(invoker, "*")
      +    public_configs = [ ":postject_config" ]
      +    sources = [ "postject-api.h" ]
      +  }
      +}
      diff --git a/deps/simdutf/BUILD.gn b/deps/simdutf/BUILD.gn
      new file mode 100644
      index 00000000000000..119d49456911e9
      --- /dev/null
      +++ b/deps/simdutf/BUILD.gn
      @@ -0,0 +1,14 @@
      +##############################################################################
      +#                                                                            #
      +#                       DO NOT EDIT THIS FILE!                               #
      +#                                                                            #
      +##############################################################################
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please modify the gyp files if you are making changes to build system.
      +
      +import("unofficial.gni")
      +
      +simdutf_gn_build("simdutf") {
      +}
      diff --git a/deps/simdutf/unofficial.gni b/deps/simdutf/unofficial.gni
      new file mode 100644
      index 00000000000000..d623de36312e3e
      --- /dev/null
      +++ b/deps/simdutf/unofficial.gni
      @@ -0,0 +1,37 @@
      +# Copyright (c) 2013-2019 GitHub Inc.
      +# Copyright 2019 the V8 project authors. All rights reserved.
      +# Use of this source code is governed by a BSD-style license that can be
      +# found in the LICENSE file.
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please edit the gyp files if you are making changes to build system.
      +
      +# The actual configurations are put inside a template in unofficial.gni to
      +# prevent accidental edits from contributors.
      +template("simdutf_gn_build") {
      +  config("simdutf_config") {
      +    include_dirs = [ "." ]
      +  }
      +
      +  gypi_values = exec_script("../../tools/gypi_to_gn.py",
      +                            [ rebase_path("simdutf.gyp") ],
      +                            "scope",
      +                            [ "simdutf.gyp" ])
      +
      +  source_set(target_name) {
      +    forward_variables_from(invoker, "*")
      +    public_configs = [ ":simdutf_config" ]
      +    sources = gypi_values.simdutf_sources
      +    if (is_clang || !is_win) {
      +      cflags_cc = [
      +        "-Wno-#pragma-messages",
      +        "-Wno-ambiguous-reversed-operator",
      +        "-Wno-unreachable-code-break",
      +        "-Wno-unused-const-variable",
      +        "-Wno-unused-function",
      +        "-Wno-c++98-compat-extra-semi",
      +      ]
      +    }
      +  }
      +}
      diff --git a/deps/undici/src/index-fetch.js b/deps/undici/src/index-fetch.js
      index 23ac530600769e..ba31a65f25c184 100644
      --- a/deps/undici/src/index-fetch.js
      +++ b/deps/undici/src/index-fetch.js
      @@ -2,13 +2,11 @@
       
       const fetchImpl = require('./lib/fetch').fetch
       
      -module.exports.fetch = async function fetch (resource, init = undefined) {
      -  try {
      -    return await fetchImpl(resource, init)
      -  } catch (err) {
      +module.exports.fetch = function fetch (resource, init = undefined) {
      +  return fetchImpl(resource, init).catch((err) => {
           Error.captureStackTrace(err, this)
           throw err
      -  }
      +  })
       }
       module.exports.FormData = require('./lib/fetch/formdata').FormData
       module.exports.Headers = require('./lib/fetch/headers').Headers
      diff --git a/deps/undici/src/lib/core/request.js b/deps/undici/src/lib/core/request.js
      index 50be01c0dc8355..43973884f1a3c8 100644
      --- a/deps/undici/src/lib/core/request.js
      +++ b/deps/undici/src/lib/core/request.js
      @@ -222,6 +222,14 @@ class Request {
           if (channels.bodySent.hasSubscribers) {
             channels.bodySent.publish({ request: this })
           }
      +
      +    if (this[kHandler].onRequestSent) {
      +      try {
      +        this[kHandler].onRequestSent()
      +      } catch (err) {
      +        this.onError(err)
      +      }
      +    }
         }
       
         onConnect (abort) {
      diff --git a/deps/undici/src/lib/fetch/body.js b/deps/undici/src/lib/fetch/body.js
      index 1d9f17d7e330c6..fd8481b796d847 100644
      --- a/deps/undici/src/lib/fetch/body.js
      +++ b/deps/undici/src/lib/fetch/body.js
      @@ -26,6 +26,8 @@ let ReadableStream = globalThis.ReadableStream
       
       /** @type {globalThis['File']} */
       const File = NativeFile ?? UndiciFile
      +const textEncoder = new TextEncoder()
      +const textDecoder = new TextDecoder()
       
       // https://fetch.spec.whatwg.org/#concept-bodyinit-extract
       function extractBody (object, keepalive = false) {
      @@ -49,7 +51,7 @@ function extractBody (object, keepalive = false) {
           stream = new ReadableStream({
             async pull (controller) {
               controller.enqueue(
      -          typeof source === 'string' ? new TextEncoder().encode(source) : source
      +          typeof source === 'string' ? textEncoder.encode(source) : source
               )
               queueMicrotask(() => readableStreamClose(controller))
             },
      @@ -119,7 +121,6 @@ function extractBody (object, keepalive = false) {
           // - That the content-length is calculated in advance.
           // - And that all parts are pre-encoded and ready to be sent.
       
      -    const enc = new TextEncoder()
           const blobParts = []
           const rn = new Uint8Array([13, 10]) // '\r\n'
           length = 0
      @@ -127,13 +128,13 @@ function extractBody (object, keepalive = false) {
       
           for (const [name, value] of object) {
             if (typeof value === 'string') {
      -        const chunk = enc.encode(prefix +
      +        const chunk = textEncoder.encode(prefix +
                 `; name="${escape(normalizeLinefeeds(name))}"` +
                 `\r\n\r\n${normalizeLinefeeds(value)}\r\n`)
               blobParts.push(chunk)
               length += chunk.byteLength
             } else {
      -        const chunk = enc.encode(`${prefix}; name="${escape(normalizeLinefeeds(name))}"` +
      +        const chunk = textEncoder.encode(`${prefix}; name="${escape(normalizeLinefeeds(name))}"` +
                 (value.name ? `; filename="${escape(value.name)}"` : '') + '\r\n' +
                 `Content-Type: ${
                   value.type || 'application/octet-stream'
      @@ -147,7 +148,7 @@ function extractBody (object, keepalive = false) {
             }
           }
       
      -    const chunk = enc.encode(`--${boundary}--`)
      +    const chunk = textEncoder.encode(`--${boundary}--`)
           blobParts.push(chunk)
           length += chunk.byteLength
           if (hasUnknownSizeValue) {
      @@ -443,14 +444,16 @@ function bodyMixinMethods (instance) {
                 let text = ''
                 // application/x-www-form-urlencoded parser will keep the BOM.
                 // https://url.spec.whatwg.org/#concept-urlencoded-parser
      -          const textDecoder = new TextDecoder('utf-8', { ignoreBOM: true })
      +          // Note that streaming decoder is stateful and cannot be reused
      +          const streamingDecoder = new TextDecoder('utf-8', { ignoreBOM: true })
      +
                 for await (const chunk of consumeBody(this[kState].body)) {
                   if (!isUint8Array(chunk)) {
                     throw new TypeError('Expected Uint8Array chunk')
                   }
      -            text += textDecoder.decode(chunk, { stream: true })
      +            text += streamingDecoder.decode(chunk, { stream: true })
                 }
      -          text += textDecoder.decode()
      +          text += streamingDecoder.decode()
                 entries = new URLSearchParams(text)
               } catch (err) {
                 // istanbul ignore next: Unclear when new URLSearchParams can fail on a string.
      @@ -565,7 +568,7 @@ function utf8DecodeBytes (buffer) {
       
         // 3. Process a queue with an instance of UTF-8’s
         //    decoder, ioQueue, output, and "replacement".
      -  const output = new TextDecoder().decode(buffer)
      +  const output = textDecoder.decode(buffer)
       
         // 4. Return output.
         return output
      diff --git a/deps/undici/src/lib/fetch/constants.js b/deps/undici/src/lib/fetch/constants.js
      index a5294a994fbc45..218fcbee4da4c7 100644
      --- a/deps/undici/src/lib/fetch/constants.js
      +++ b/deps/undici/src/lib/fetch/constants.js
      @@ -3,10 +3,12 @@
       const { MessageChannel, receiveMessageOnPort } = require('worker_threads')
       
       const corsSafeListedMethods = ['GET', 'HEAD', 'POST']
      +const corsSafeListedMethodsSet = new Set(corsSafeListedMethods)
       
       const nullBodyStatus = [101, 204, 205, 304]
       
       const redirectStatus = [301, 302, 303, 307, 308]
      +const redirectStatusSet = new Set(redirectStatus)
       
       // https://fetch.spec.whatwg.org/#block-bad-port
       const badPorts = [
      @@ -18,6 +20,8 @@ const badPorts = [
         '10080'
       ]
       
      +const badPortsSet = new Set(badPorts)
      +
       // https://w3c.github.io/webappsec-referrer-policy/#referrer-policies
       const referrerPolicy = [
         '',
      @@ -30,10 +34,12 @@ const referrerPolicy = [
         'strict-origin-when-cross-origin',
         'unsafe-url'
       ]
      +const referrerPolicySet = new Set(referrerPolicy)
       
       const requestRedirect = ['follow', 'manual', 'error']
       
       const safeMethods = ['GET', 'HEAD', 'OPTIONS', 'TRACE']
      +const safeMethodsSet = new Set(safeMethods)
       
       const requestMode = ['navigate', 'same-origin', 'no-cors', 'cors']
       
      @@ -68,6 +74,7 @@ const requestDuplex = [
       
       // http://fetch.spec.whatwg.org/#forbidden-method
       const forbiddenMethods = ['CONNECT', 'TRACE', 'TRACK']
      +const forbiddenMethodsSet = new Set(forbiddenMethods)
       
       const subresource = [
         'audio',
      @@ -83,6 +90,7 @@ const subresource = [
         'xslt',
         ''
       ]
      +const subresourceSet = new Set(subresource)
       
       /** @type {globalThis['DOMException']} */
       const DOMException = globalThis.DOMException ?? (() => {
      @@ -132,5 +140,12 @@ module.exports = {
         nullBodyStatus,
         safeMethods,
         badPorts,
      -  requestDuplex
      +  requestDuplex,
      +  subresourceSet,
      +  badPortsSet,
      +  redirectStatusSet,
      +  corsSafeListedMethodsSet,
      +  safeMethodsSet,
      +  forbiddenMethodsSet,
      +  referrerPolicySet
       }
      diff --git a/deps/undici/src/lib/fetch/file.js b/deps/undici/src/lib/fetch/file.js
      index 81bb7b2441aaa2..3133d255ecdcdb 100644
      --- a/deps/undici/src/lib/fetch/file.js
      +++ b/deps/undici/src/lib/fetch/file.js
      @@ -7,6 +7,7 @@ const { isBlobLike } = require('./util')
       const { webidl } = require('./webidl')
       const { parseMIMEType, serializeAMimeType } = require('./dataURL')
       const { kEnumerableProperty } = require('../core/util')
      +const encoder = new TextEncoder()
       
       class File extends Blob {
         constructor (fileBits, fileName, options = {}) {
      @@ -280,7 +281,7 @@ function processBlobParts (parts, options) {
             }
       
             // 3. Append the result of UTF-8 encoding s to bytes.
      -      bytes.push(new TextEncoder().encode(s))
      +      bytes.push(encoder.encode(s))
           } else if (
             types.isAnyArrayBuffer(element) ||
             types.isTypedArray(element)
      diff --git a/deps/undici/src/lib/fetch/index.js b/deps/undici/src/lib/fetch/index.js
      index 5323c30abc8791..298b3ddb27c04c 100644
      --- a/deps/undici/src/lib/fetch/index.js
      +++ b/deps/undici/src/lib/fetch/index.js
      @@ -46,11 +46,11 @@ const { kState, kHeaders, kGuard, kRealm } = require('./symbols')
       const assert = require('assert')
       const { safelyExtractBody } = require('./body')
       const {
      -  redirectStatus,
      +  redirectStatusSet,
         nullBodyStatus,
      -  safeMethods,
      +  safeMethodsSet,
         requestBodyHeader,
      -  subresource,
      +  subresourceSet,
         DOMException
       } = require('./constants')
       const { kHeadersList } = require('../core/symbols')
      @@ -62,6 +62,7 @@ const { TransformStream } = require('stream/web')
       const { getGlobalDispatcher } = require('../global')
       const { webidl } = require('./webidl')
       const { STATUS_CODES } = require('http')
      +const GET_OR_HEAD = ['GET', 'HEAD']
       
       /** @type {import('buffer').resolveObjectURL} */
       let resolveObjectURL
      @@ -121,7 +122,7 @@ class Fetch extends EE {
       }
       
       // https://fetch.spec.whatwg.org/#fetch-method
      -async function fetch (input, init = {}) {
      +function fetch (input, init = {}) {
         webidl.argumentLengthCheck(arguments, 1, { header: 'globalThis.fetch' })
       
         // 1. Let p be a new promise.
      @@ -204,7 +205,7 @@ async function fetch (input, init = {}) {
         const processResponse = (response) => {
           // 1. If locallyAborted is true, terminate these substeps.
           if (locallyAborted) {
      -      return
      +      return Promise.resolve()
           }
       
           // 2. If response’s aborted flag is set, then:
      @@ -217,7 +218,7 @@ async function fetch (input, init = {}) {
             //    deserializedError.
       
             abortFetch(p, request, responseObject, controller.serializedAbortReason)
      -      return
      +      return Promise.resolve()
           }
       
           // 3. If response is a network error, then reject p with a TypeError
      @@ -226,7 +227,7 @@ async function fetch (input, init = {}) {
             p.reject(
               Object.assign(new TypeError('fetch failed'), { cause: response.error })
             )
      -      return
      +      return Promise.resolve()
           }
       
           // 4. Set responseObject to the result of creating a Response object,
      @@ -509,7 +510,7 @@ function fetching ({
         }
       
         // 15. If request is a subresource request, then:
      -  if (subresource.includes(request.destination)) {
      +  if (subresourceSet.has(request.destination)) {
           // TODO
         }
       
      @@ -776,13 +777,13 @@ async function mainFetch (fetchParams, recursive = false) {
       
       // https://fetch.spec.whatwg.org/#concept-scheme-fetch
       // given a fetch params fetchParams
      -async function schemeFetch (fetchParams) {
      +function schemeFetch (fetchParams) {
         // Note: since the connection is destroyed on redirect, which sets fetchParams to a
         // cancelled state, we do not want this condition to trigger *unless* there have been
         // no redirects. See https://github.com/nodejs/undici/issues/1776
         // 1. If fetchParams is canceled, then return the appropriate network error for fetchParams.
         if (isCancelled(fetchParams) && fetchParams.request.redirectCount === 0) {
      -    return makeAppropriateNetworkError(fetchParams)
      +    return Promise.resolve(makeAppropriateNetworkError(fetchParams))
         }
       
         // 2. Let request be fetchParams’s request.
      @@ -798,7 +799,7 @@ async function schemeFetch (fetchParams) {
             // and body is the empty byte sequence as a body.
       
             // Otherwise, return a network error.
      -      return makeNetworkError('about scheme is not supported')
      +      return Promise.resolve(makeNetworkError('about scheme is not supported'))
           }
           case 'blob:': {
             if (!resolveObjectURL) {
      @@ -811,7 +812,7 @@ async function schemeFetch (fetchParams) {
             // https://github.com/web-platform-tests/wpt/blob/7b0ebaccc62b566a1965396e5be7bb2bc06f841f/FileAPI/url/resources/fetch-tests.js#L52-L56
             // Buffer.resolveObjectURL does not ignore URL queries.
             if (blobURLEntry.search.length !== 0) {
      -        return makeNetworkError('NetworkError when attempting to fetch resource.')
      +        return Promise.resolve(makeNetworkError('NetworkError when attempting to fetch resource.'))
             }
       
             const blobURLEntryObject = resolveObjectURL(blobURLEntry.toString())
      @@ -819,7 +820,7 @@ async function schemeFetch (fetchParams) {
             // 2. If request’s method is not `GET`, blobURLEntry is null, or blobURLEntry’s
             //    object is not a Blob object, then return a network error.
             if (request.method !== 'GET' || !isBlobLike(blobURLEntryObject)) {
      -        return makeNetworkError('invalid method')
      +        return Promise.resolve(makeNetworkError('invalid method'))
             }
       
             // 3. Let bodyWithType be the result of safely extracting blobURLEntry’s object.
      @@ -846,7 +847,7 @@ async function schemeFetch (fetchParams) {
       
             response.body = body
       
      -      return response
      +      return Promise.resolve(response)
           }
           case 'data:': {
             // 1. Let dataURLStruct be the result of running the
      @@ -857,7 +858,7 @@ async function schemeFetch (fetchParams) {
             // 2. If dataURLStruct is failure, then return a
             //    network error.
             if (dataURLStruct === 'failure') {
      -        return makeNetworkError('failed to fetch the data URL')
      +        return Promise.resolve(makeNetworkError('failed to fetch the data URL'))
             }
       
             // 3. Let mimeType be dataURLStruct’s MIME type, serialized.
      @@ -866,28 +867,28 @@ async function schemeFetch (fetchParams) {
             // 4. Return a response whose status message is `OK`,
             //    header list is « (`Content-Type`, mimeType) »,
             //    and body is dataURLStruct’s body as a body.
      -      return makeResponse({
      +      return Promise.resolve(makeResponse({
               statusText: 'OK',
               headersList: [
                 ['content-type', { name: 'Content-Type', value: mimeType }]
               ],
               body: safelyExtractBody(dataURLStruct.body)[0]
      -      })
      +      }))
           }
           case 'file:': {
             // For now, unfortunate as it is, file URLs are left as an exercise for the reader.
             // When in doubt, return a network error.
      -      return makeNetworkError('not implemented... yet...')
      +      return Promise.resolve(makeNetworkError('not implemented... yet...'))
           }
           case 'http:':
           case 'https:': {
             // Return the result of running HTTP fetch given fetchParams.
       
      -      return await httpFetch(fetchParams)
      +      return httpFetch(fetchParams)
               .catch((err) => makeNetworkError(err))
           }
           default: {
      -      return makeNetworkError('unknown scheme')
      +      return Promise.resolve(makeNetworkError('unknown scheme'))
           }
         }
       }
      @@ -906,7 +907,7 @@ function finalizeResponse (fetchParams, response) {
       }
       
       // https://fetch.spec.whatwg.org/#fetch-finale
      -async function fetchFinale (fetchParams, response) {
      +function fetchFinale (fetchParams, response) {
         // 1. If response is a network error, then:
         if (response.type === 'error') {
           // 1. Set response’s URL list to « fetchParams’s request’s URL list[0] ».
      @@ -990,8 +991,9 @@ async function fetchFinale (fetchParams, response) {
           } else {
             // 4. Otherwise, fully read response’s body given processBody, processBodyError,
             // and fetchParams’s task destination.
      -      await fullyReadBody(response.body, processBody, processBodyError)
      +      return fullyReadBody(response.body, processBody, processBodyError)
           }
      +    return Promise.resolve()
         }
       }
       
      @@ -1062,7 +1064,7 @@ async function httpFetch (fetchParams) {
         }
       
         // 8. If actualResponse’s status is a redirect status, then:
      -  if (redirectStatus.includes(actualResponse.status)) {
      +  if (redirectStatusSet.has(actualResponse.status)) {
           // 1. If actualResponse’s status is not 303, request’s body is not null,
           // and the connection uses HTTP/2, then user agents may, and are even
           // encouraged to, transmit an RST_STREAM frame.
      @@ -1099,7 +1101,7 @@ async function httpFetch (fetchParams) {
       }
       
       // https://fetch.spec.whatwg.org/#http-redirect-fetch
      -async function httpRedirectFetch (fetchParams, response) {
      +function httpRedirectFetch (fetchParams, response) {
         // 1. Let request be fetchParams’s request.
         const request = fetchParams.request
       
      @@ -1125,18 +1127,18 @@ async function httpRedirectFetch (fetchParams, response) {
           }
         } catch (err) {
           // 5. If locationURL is failure, then return a network error.
      -    return makeNetworkError(err)
      +    return Promise.resolve(makeNetworkError(err))
         }
       
         // 6. If locationURL’s scheme is not an HTTP(S) scheme, then return a network
         // error.
         if (!urlIsHttpHttpsScheme(locationURL)) {
      -    return makeNetworkError('URL scheme must be a HTTP(S) scheme')
      +    return Promise.resolve(makeNetworkError('URL scheme must be a HTTP(S) scheme'))
         }
       
         // 7. If request’s redirect count is 20, then return a network error.
         if (request.redirectCount === 20) {
      -    return makeNetworkError('redirect count exceeded')
      +    return Promise.resolve(makeNetworkError('redirect count exceeded'))
         }
       
         // 8. Increase request’s redirect count by 1.
      @@ -1150,7 +1152,7 @@ async function httpRedirectFetch (fetchParams, response) {
           (locationURL.username || locationURL.password) &&
           !sameOrigin(request, locationURL)
         ) {
      -    return makeNetworkError('cross origin not allowed for request mode "cors"')
      +    return Promise.resolve(makeNetworkError('cross origin not allowed for request mode "cors"'))
         }
       
         // 10. If request’s response tainting is "cors" and locationURL includes
      @@ -1159,9 +1161,9 @@ async function httpRedirectFetch (fetchParams, response) {
           request.responseTainting === 'cors' &&
           (locationURL.username || locationURL.password)
         ) {
      -    return makeNetworkError(
      +    return Promise.resolve(makeNetworkError(
             'URL cannot contain credentials for request mode "cors"'
      -    )
      +    ))
         }
       
         // 11. If actualResponse’s status is not 303, request’s body is non-null,
      @@ -1171,7 +1173,7 @@ async function httpRedirectFetch (fetchParams, response) {
           request.body != null &&
           request.body.source == null
         ) {
      -    return makeNetworkError()
      +    return Promise.resolve(makeNetworkError())
         }
       
         // 12. If one of the following is true
      @@ -1180,7 +1182,7 @@ async function httpRedirectFetch (fetchParams, response) {
         if (
           ([301, 302].includes(actualResponse.status) && request.method === 'POST') ||
           (actualResponse.status === 303 &&
      -      !['GET', 'HEAD'].includes(request.method))
      +      !GET_OR_HEAD.includes(request.method))
         ) {
           // then:
           // 1. Set request’s method to `GET` and request’s body to null.
      @@ -1464,7 +1466,7 @@ async function httpNetworkOrCacheFetch (
           // responses in httpCache, as per the "Invalidation" chapter of HTTP
           // Caching, and set storedResponse to null. [HTTP-CACHING]
           if (
      -      !safeMethods.includes(httpRequest.method) &&
      +      !safeMethodsSet.has(httpRequest.method) &&
             forwardResponse.status >= 200 &&
             forwardResponse.status <= 399
           ) {
      @@ -2024,7 +2026,7 @@ async function httpNetworkFetch (
       
                 const willFollow = request.redirect === 'follow' &&
                   location &&
      -            redirectStatus.includes(status)
      +            redirectStatusSet.has(status)
       
                 // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding
                 if (request.method !== 'HEAD' && request.method !== 'CONNECT' && !nullBodyStatus.includes(status) && !willFollow) {
      diff --git a/deps/undici/src/lib/fetch/request.js b/deps/undici/src/lib/fetch/request.js
      index 912bd5b8c988af..60e654eca112cd 100644
      --- a/deps/undici/src/lib/fetch/request.js
      +++ b/deps/undici/src/lib/fetch/request.js
      @@ -13,8 +13,8 @@ const {
         makePolicyContainer
       } = require('./util')
       const {
      -  forbiddenMethods,
      -  corsSafeListedMethods,
      +  forbiddenMethodsSet,
      +  corsSafeListedMethodsSet,
         referrerPolicy,
         requestRedirect,
         requestMode,
      @@ -319,7 +319,7 @@ class Request {
               throw TypeError(`'${init.method}' is not a valid HTTP method.`)
             }
       
      -      if (forbiddenMethods.indexOf(method.toUpperCase()) !== -1) {
      +      if (forbiddenMethodsSet.has(method.toUpperCase())) {
               throw TypeError(`'${init.method}' HTTP method is unsupported.`)
             }
       
      @@ -404,7 +404,7 @@ class Request {
           if (mode === 'no-cors') {
             // 1. If this’s request’s method is not a CORS-safelisted method,
             // then throw a TypeError.
      -      if (!corsSafeListedMethods.includes(request.method)) {
      +      if (!corsSafeListedMethodsSet.has(request.method)) {
               throw new TypeError(
                 `'${request.method} is unsupported in no-cors mode.`
               )
      diff --git a/deps/undici/src/lib/fetch/response.js b/deps/undici/src/lib/fetch/response.js
      index 88deb71a06285e..23cf55c51dc1c5 100644
      --- a/deps/undici/src/lib/fetch/response.js
      +++ b/deps/undici/src/lib/fetch/response.js
      @@ -14,7 +14,7 @@ const {
         isomorphicEncode
       } = require('./util')
       const {
      -  redirectStatus,
      +  redirectStatusSet,
         nullBodyStatus,
         DOMException
       } = require('./constants')
      @@ -28,6 +28,7 @@ const assert = require('assert')
       const { types } = require('util')
       
       const ReadableStream = globalThis.ReadableStream || require('stream/web').ReadableStream
      +const textEncoder = new TextEncoder('utf-8')
       
       // https://fetch.spec.whatwg.org/#response-class
       class Response {
      @@ -57,7 +58,7 @@ class Response {
           }
       
           // 1. Let bytes the result of running serialize a JavaScript value to JSON bytes on data.
      -    const bytes = new TextEncoder('utf-8').encode(
      +    const bytes = textEncoder.encode(
             serializeJavascriptValueToJSONString(data)
           )
       
      @@ -102,7 +103,7 @@ class Response {
           }
       
           // 3. If status is not a redirect status, then throw a RangeError.
      -    if (!redirectStatus.includes(status)) {
      +    if (!redirectStatusSet.has(status)) {
             throw new RangeError('Invalid status code ' + status)
           }
       
      diff --git a/deps/undici/src/lib/fetch/util.js b/deps/undici/src/lib/fetch/util.js
      index fcbba84bc9a8b0..033fa206aedc3e 100644
      --- a/deps/undici/src/lib/fetch/util.js
      +++ b/deps/undici/src/lib/fetch/util.js
      @@ -1,6 +1,6 @@
       'use strict'
       
      -const { redirectStatus, badPorts, referrerPolicy: referrerPolicyTokens } = require('./constants')
      +const { redirectStatusSet, referrerPolicySet: referrerPolicyTokens, badPortsSet } = require('./constants')
       const { getGlobalOrigin } = require('./global')
       const { performance } = require('perf_hooks')
       const { isBlobLike, toUSVString, ReadableStreamFrom } = require('../core/util')
      @@ -29,7 +29,7 @@ function responseURL (response) {
       // https://fetch.spec.whatwg.org/#concept-response-location-url
       function responseLocationURL (response, requestFragment) {
         // 1. If response’s status is not a redirect status, then return null.
      -  if (!redirectStatus.includes(response.status)) {
      +  if (!redirectStatusSet.has(response.status)) {
           return null
         }
       
      @@ -64,7 +64,7 @@ function requestBadPort (request) {
       
         // 2. If url’s scheme is an HTTP(S) scheme and url’s port is a bad port,
         // then return blocked.
      -  if (urlIsHttpHttpsScheme(url) && badPorts.includes(url.port)) {
      +  if (urlIsHttpHttpsScheme(url) && badPortsSet.has(url.port)) {
           return 'blocked'
         }
       
      @@ -206,7 +206,7 @@ function setRequestReferrerPolicyOnRedirect (request, actualResponse) {
           // The left-most policy is the fallback.
           for (let i = policyHeader.length; i !== 0; i--) {
             const token = policyHeader[i - 1].trim()
      -      if (referrerPolicyTokens.includes(token)) {
      +      if (referrerPolicyTokens.has(token)) {
               policy = token
               break
             }
      diff --git a/deps/undici/src/package-lock.json b/deps/undici/src/package-lock.json
      index eb929e548c2d86..d6f048345a665b 100644
      --- a/deps/undici/src/package-lock.json
      +++ b/deps/undici/src/package-lock.json
      @@ -1,12 +1,12 @@
       {
         "name": "undici",
      -  "version": "5.26.4",
      +  "version": "5.27.0",
         "lockfileVersion": 3,
         "requires": true,
         "packages": {
           "": {
             "name": "undici",
      -      "version": "5.26.4",
      +      "version": "5.27.0",
             "license": "MIT",
             "dependencies": {
               "@fastify/busboy": "^2.0.0"
      @@ -795,9 +795,9 @@
             }
           },
           "node_modules/@eslint-community/regexpp": {
      -      "version": "4.9.1",
      -      "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.1.tgz",
      -      "integrity": "sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==",
      +      "version": "4.10.0",
      +      "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
      +      "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
             "dev": true,
             "engines": {
               "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
      @@ -1634,10 +1634,22 @@
             "dev": true
           },
           "node_modules/@types/node": {
      -      "version": "18.18.6",
      -      "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.6.tgz",
      -      "integrity": "sha512-wf3Vz+jCmOQ2HV1YUJuCWdL64adYxumkrxtc+H1VUQlnQI04+5HtH+qZCOE21lBE7gIrt+CwX2Wv8Acrw5Ak6w==",
      -      "dev": true
      +      "version": "18.18.7",
      +      "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.7.tgz",
      +      "integrity": "sha512-bw+lEsxis6eqJYW8Ql6+yTqkE6RuFtsQPSe5JxXbqYRFQEER5aJA9a5UH9igqDWm3X4iLHIKOHlnAXLM4mi7uQ==",
      +      "dev": true,
      +      "dependencies": {
      +        "undici-types": "~5.26.4"
      +      }
      +    },
      +    "node_modules/@types/node-forge": {
      +      "version": "1.3.8",
      +      "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.8.tgz",
      +      "integrity": "sha512-vGXshY9vim9CJjrpcS5raqSjEfKlJcWy2HNdgUasR66fAnVEYarrf1ULV4nfvpC1nZq/moA9qyqBcu83x+Jlrg==",
      +      "dev": true,
      +      "dependencies": {
      +        "@types/node": "*"
      +      }
           },
           "node_modules/@types/normalize-package-data": {
             "version": "2.4.3",
      @@ -1691,9 +1703,9 @@
             }
           },
           "node_modules/acorn": {
      -      "version": "8.10.0",
      -      "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
      -      "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
      +      "version": "8.11.2",
      +      "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz",
      +      "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==",
             "dev": true,
             "bin": {
               "acorn": "bin/acorn"
      @@ -1712,12 +1724,12 @@
             }
           },
           "node_modules/acquerello": {
      -      "version": "1.0.12",
      -      "resolved": "https://registry.npmjs.org/acquerello/-/acquerello-1.0.12.tgz",
      -      "integrity": "sha512-6yCYGUNctkYqF7DLmm0D/CxlRmM/OrzyuHOU+mbaO6VRxHmRg4EV0phvyBexRt6jTyDtEQIb09YFiwu5LExXsA==",
      +      "version": "1.1.2",
      +      "resolved": "https://registry.npmjs.org/acquerello/-/acquerello-1.1.2.tgz",
      +      "integrity": "sha512-V/ynq+ekRAls3iWOQMxA8G9pi40aTL9mheHHxA8x8oowZVjY7bROD99t+TSOKKp3BviACYOsNMlL+b+8jZ7ImQ==",
             "dev": true,
             "engines": {
      -        "node": ">=14.15.0"
      +        "node": ">= 18.18.0"
             }
           },
           "node_modules/agent-base": {
      @@ -2658,9 +2670,9 @@
             }
           },
           "node_modules/caniuse-lite": {
      -      "version": "1.0.30001551",
      -      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001551.tgz",
      -      "integrity": "sha512-vtBAez47BoGMMzlbYhfXrMV1kvRF2WP/lqiMuDu1Sb4EE4LKEgjopFDSRtZfdVnslNRpOqV/woE+Xgrwj6VQlg==",
      +      "version": "1.0.30001557",
      +      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001557.tgz",
      +      "integrity": "sha512-91oR7hLNUP3gG6MLU+n96em322a8Xzes8wWdBKhLgUoiJsAF5irZnxSUCbc+qUZXNnPCfUwLOi9ZCZpkvjQajw==",
             "dev": true,
             "funding": [
               {
      @@ -3125,17 +3137,17 @@
             }
           },
           "node_modules/cronometro": {
      -      "version": "1.1.5",
      -      "resolved": "https://registry.npmjs.org/cronometro/-/cronometro-1.1.5.tgz",
      -      "integrity": "sha512-uotkltVBg4WLAeCgbSsLhqpEyvYTn1J++bYcsq0i/RPNMHkMp4sN/7Hx+0O3UaCqIWJ4AG1dNrzDSkzt69jwQQ==",
      +      "version": "1.2.0",
      +      "resolved": "https://registry.npmjs.org/cronometro/-/cronometro-1.2.0.tgz",
      +      "integrity": "sha512-QeNGCuvNFimu4IJhZSL4oNopAmxfjRkSqh4rci4PZuNWKLRhqPC0oemw6gdbfgz0evqxOOS3uwtSt2FMR8dDXw==",
             "dev": true,
             "dependencies": {
      -        "acquerello": "^1.0.12",
      +        "acquerello": "^1.1.2",
               "hdr-histogram-js": "^3.0.0",
               "table": "^6.8.1"
             },
             "engines": {
      -        "node": ">=14.15.0"
      +        "node": ">= 18.18.0"
             }
           },
           "node_modules/cross-spawn": {
      @@ -3782,9 +3794,9 @@
             "dev": true
           },
           "node_modules/electron-to-chromium": {
      -      "version": "1.4.563",
      -      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.563.tgz",
      -      "integrity": "sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==",
      +      "version": "1.4.569",
      +      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.569.tgz",
      +      "integrity": "sha512-LsrJjZ0IbVy12ApW3gpYpcmHS3iRxH4bkKOW98y1/D+3cvDUWGcbzbsFinfUS8knpcZk/PG/2p/RnkMCYN7PVg==",
             "dev": true
           },
           "node_modules/emittery": {
      @@ -4268,26 +4280,26 @@
             }
           },
           "node_modules/eslint-plugin-import": {
      -      "version": "2.28.1",
      -      "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz",
      -      "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==",
      +      "version": "2.29.0",
      +      "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz",
      +      "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==",
             "dev": true,
             "dependencies": {
      -        "array-includes": "^3.1.6",
      -        "array.prototype.findlastindex": "^1.2.2",
      -        "array.prototype.flat": "^1.3.1",
      -        "array.prototype.flatmap": "^1.3.1",
      +        "array-includes": "^3.1.7",
      +        "array.prototype.findlastindex": "^1.2.3",
      +        "array.prototype.flat": "^1.3.2",
      +        "array.prototype.flatmap": "^1.3.2",
               "debug": "^3.2.7",
               "doctrine": "^2.1.0",
      -        "eslint-import-resolver-node": "^0.3.7",
      +        "eslint-import-resolver-node": "^0.3.9",
               "eslint-module-utils": "^2.8.0",
      -        "has": "^1.0.3",
      -        "is-core-module": "^2.13.0",
      +        "hasown": "^2.0.0",
      +        "is-core-module": "^2.13.1",
               "is-glob": "^4.0.3",
               "minimatch": "^3.1.2",
      -        "object.fromentries": "^2.0.6",
      -        "object.groupby": "^1.0.0",
      -        "object.values": "^1.1.6",
      +        "object.fromentries": "^2.0.7",
      +        "object.groupby": "^1.0.1",
      +        "object.values": "^1.1.7",
               "semver": "^6.3.1",
               "tsconfig-paths": "^3.14.2"
             },
      @@ -4910,9 +4922,9 @@
             }
           },
           "node_modules/figlet": {
      -      "version": "1.6.0",
      -      "resolved": "https://registry.npmjs.org/figlet/-/figlet-1.6.0.tgz",
      -      "integrity": "sha512-31EQGhCEITv6+hi2ORRPyn3bulaV9Fl4xOdR169cBzH/n1UqcxsiSB/noo6SJdD7Kfb1Ljit+IgR1USvF/XbdA==",
      +      "version": "1.7.0",
      +      "resolved": "https://registry.npmjs.org/figlet/-/figlet-1.7.0.tgz",
      +      "integrity": "sha512-gO8l3wvqo0V7wEFLXPbkX83b7MVjRrk1oRLfYlZXol8nEpb/ON9pcKLI4qpBv5YtOTfrINtqb7b40iYY2FTWFg==",
             "dev": true,
             "bin": {
               "figlet": "bin/index.js"
      @@ -5624,15 +5636,6 @@
               "node": ">=6"
             }
           },
      -    "node_modules/has": {
      -      "version": "1.0.4",
      -      "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz",
      -      "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==",
      -      "dev": true,
      -      "engines": {
      -        "node": ">= 0.4.0"
      -      }
      -    },
           "node_modules/has-ansi": {
             "version": "2.0.0",
             "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
      @@ -10764,11 +10767,12 @@
             }
           },
           "node_modules/selfsigned": {
      -      "version": "2.1.1",
      -      "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz",
      -      "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==",
      +      "version": "2.4.1",
      +      "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz",
      +      "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==",
             "dev": true,
             "dependencies": {
      +        "@types/node-forge": "^1.3.0",
               "node-forge": "^1"
             },
             "engines": {
      @@ -14300,6 +14304,12 @@
               "url": "https://github.com/sponsors/ljharb"
             }
           },
      +    "node_modules/undici-types": {
      +      "version": "5.26.5",
      +      "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
      +      "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
      +      "dev": true
      +    },
           "node_modules/unicode-length": {
             "version": "2.1.0",
             "resolved": "https://registry.npmjs.org/unicode-length/-/unicode-length-2.1.0.tgz",
      diff --git a/deps/undici/src/package.json b/deps/undici/src/package.json
      index 31e157de002b20..454271d7b466f4 100644
      --- a/deps/undici/src/package.json
      +++ b/deps/undici/src/package.json
      @@ -1,6 +1,6 @@
       {
         "name": "undici",
      -  "version": "5.26.4",
      +  "version": "5.27.0",
         "description": "An HTTP/1.1 client, written from scratch for Node.js",
         "homepage": "https://undici.nodejs.org",
         "bugs": {
      @@ -84,7 +84,7 @@
           "test:tdd": "tap test/*.js test/diagnostics-channel/*.js -w",
           "test:typescript": "node scripts/verifyVersion.js 14 || tsd && tsc --skipLibCheck test/imports/undici-import.ts",
           "test:websocket": "node scripts/verifyVersion.js 18 || tap test/websocket/*.js",
      -    "test:wpt": "node scripts/verifyVersion 18 || (node test/wpt/start-fetch.mjs && node test/wpt/start-FileAPI.mjs && node test/wpt/start-mimesniff.mjs && node test/wpt/start-xhr.mjs && node --no-warnings --expose-internals test/wpt/start-websockets.mjs)",
      +    "test:wpt": "node scripts/verifyVersion 18 || (node test/wpt/start-fetch.mjs && node test/wpt/start-FileAPI.mjs && node test/wpt/start-mimesniff.mjs && node test/wpt/start-xhr.mjs && node test/wpt/start-websockets.mjs)",
           "coverage": "nyc --reporter=text --reporter=html npm run test",
           "coverage:ci": "nyc --reporter=lcov npm run test",
           "bench": "PORT=3042 concurrently -k -s first npm:bench:server npm:bench:run",
      diff --git a/deps/undici/src/types/index.d.ts b/deps/undici/src/types/index.d.ts
      index c7532d69a073cc..4589845b4a9bd2 100644
      --- a/deps/undici/src/types/index.d.ts
      +++ b/deps/undici/src/types/index.d.ts
      @@ -53,5 +53,11 @@ declare namespace Undici {
         var MockAgent: typeof import('./mock-agent').default;
         var mockErrors: typeof import('./mock-errors').default;
         var fetch: typeof import('./fetch').fetch;
      +  var Headers: typeof import('./fetch').Headers;
      +  var Response: typeof import('./fetch').Response;
      +  var Request: typeof import('./fetch').Request;
      +  var FormData: typeof import('./formdata').FormData;
      +  var File: typeof import('./file').File;
      +  var FileReader: typeof import('./filereader').FileReader;
         var caches: typeof import('./cache').caches;
       }
      diff --git a/deps/undici/undici.js b/deps/undici/undici.js
      index 068edd28b16ee5..a5da33fa3b0075 100644
      --- a/deps/undici/undici.js
      +++ b/deps/undici/undici.js
      @@ -762,8 +762,10 @@ var require_constants = __commonJS({
           "use strict";
           var { MessageChannel, receiveMessageOnPort } = require("worker_threads");
           var corsSafeListedMethods = ["GET", "HEAD", "POST"];
      +    var corsSafeListedMethodsSet = new Set(corsSafeListedMethods);
           var nullBodyStatus = [101, 204, 205, 304];
           var redirectStatus = [301, 302, 303, 307, 308];
      +    var redirectStatusSet = new Set(redirectStatus);
           var badPorts = [
             "1",
             "7",
      @@ -846,6 +848,7 @@ var require_constants = __commonJS({
             "6697",
             "10080"
           ];
      +    var badPortsSet = new Set(badPorts);
           var referrerPolicy = [
             "",
             "no-referrer",
      @@ -857,8 +860,10 @@ var require_constants = __commonJS({
             "strict-origin-when-cross-origin",
             "unsafe-url"
           ];
      +    var referrerPolicySet = new Set(referrerPolicy);
           var requestRedirect = ["follow", "manual", "error"];
           var safeMethods = ["GET", "HEAD", "OPTIONS", "TRACE"];
      +    var safeMethodsSet = new Set(safeMethods);
           var requestMode = ["navigate", "same-origin", "no-cors", "cors"];
           var requestCredentials = ["omit", "same-origin", "include"];
           var requestCache = [
      @@ -884,6 +889,7 @@ var require_constants = __commonJS({
             "half"
           ];
           var forbiddenMethods = ["CONNECT", "TRACE", "TRACK"];
      +    var forbiddenMethodsSet = new Set(forbiddenMethods);
           var subresource = [
             "audio",
             "audioworklet",
      @@ -898,6 +904,7 @@ var require_constants = __commonJS({
             "xslt",
             ""
           ];
      +    var subresourceSet = new Set(subresource);
           var DOMException = globalThis.DOMException ?? (() => {
             try {
               atob("~");
      @@ -936,7 +943,14 @@ var require_constants = __commonJS({
             nullBodyStatus,
             safeMethods,
             badPorts,
      -      requestDuplex
      +      requestDuplex,
      +      subresourceSet,
      +      badPortsSet,
      +      redirectStatusSet,
      +      corsSafeListedMethodsSet,
      +      safeMethodsSet,
      +      forbiddenMethodsSet,
      +      referrerPolicySet
           };
         }
       });
      @@ -983,7 +997,7 @@ var require_global = __commonJS({
       var require_util2 = __commonJS({
         "lib/fetch/util.js"(exports2, module2) {
           "use strict";
      -    var { redirectStatus, badPorts, referrerPolicy: referrerPolicyTokens } = require_constants();
      +    var { redirectStatusSet, referrerPolicySet: referrerPolicyTokens, badPortsSet } = require_constants();
           var { getGlobalOrigin } = require_global();
           var { performance: performance2 } = require("perf_hooks");
           var { isBlobLike, toUSVString, ReadableStreamFrom } = require_util();
      @@ -1001,7 +1015,7 @@ var require_util2 = __commonJS({
           }
           __name(responseURL, "responseURL");
           function responseLocationURL(response, requestFragment) {
      -      if (!redirectStatus.includes(response.status)) {
      +      if (!redirectStatusSet.has(response.status)) {
               return null;
             }
             let location = response.headersList.get("location");
      @@ -1020,7 +1034,7 @@ var require_util2 = __commonJS({
           __name(requestCurrentURL, "requestCurrentURL");
           function requestBadPort(request) {
             const url = requestCurrentURL(request);
      -      if (urlIsHttpHttpsScheme(url) && badPorts.includes(url.port)) {
      +      if (urlIsHttpHttpsScheme(url) && badPortsSet.has(url.port)) {
               return "blocked";
             }
             return "allowed";
      @@ -1083,7 +1097,7 @@ var require_util2 = __commonJS({
             if (policyHeader.length > 0) {
               for (let i = policyHeader.length; i !== 0; i--) {
                 const token = policyHeader[i - 1].trim();
      -          if (referrerPolicyTokens.includes(token)) {
      +          if (referrerPolicyTokens.has(token)) {
                   policy = token;
                   break;
                 }
      @@ -4037,6 +4051,7 @@ var require_file = __commonJS({
           var { webidl } = require_webidl();
           var { parseMIMEType, serializeAMimeType } = require_dataURL();
           var { kEnumerableProperty } = require_util();
      +    var encoder = new TextEncoder();
           var File = class _File extends Blob2 {
             static {
               __name(this, "File");
      @@ -4188,7 +4203,7 @@ var require_file = __commonJS({
                 if (options.endings === "native") {
                   s = convertLineEndingsNative(s);
                 }
      -          bytes.push(new TextEncoder().encode(s));
      +          bytes.push(encoder.encode(s));
               } else if (types.isAnyArrayBuffer(element) || types.isTypedArray(element)) {
                 if (!element.buffer) {
                   bytes.push(new Uint8Array(element));
      @@ -4407,6 +4422,8 @@ var require_body = __commonJS({
           var { parseMIMEType, serializeAMimeType } = require_dataURL();
           var ReadableStream = globalThis.ReadableStream;
           var File = NativeFile ?? UndiciFile;
      +    var textEncoder = new TextEncoder();
      +    var textDecoder = new TextDecoder();
           function extractBody(object, keepalive = false) {
             if (!ReadableStream) {
               ReadableStream = require("stream/web").ReadableStream;
      @@ -4420,7 +4437,7 @@ var require_body = __commonJS({
               stream = new ReadableStream({
                 async pull(controller) {
                   controller.enqueue(
      -              typeof source === "string" ? new TextEncoder().encode(source) : source
      +              typeof source === "string" ? textEncoder.encode(source) : source
                   );
                   queueMicrotask(() => readableStreamClose(controller));
                 },
      @@ -4450,21 +4467,20 @@ var require_body = __commonJS({
       Content-Disposition: form-data`;
               const escape = /* @__PURE__ */ __name((str) => str.replace(/\n/g, "%0A").replace(/\r/g, "%0D").replace(/"/g, "%22"), "escape");
               const normalizeLinefeeds = /* @__PURE__ */ __name((value) => value.replace(/\r?\n|\r/g, "\r\n"), "normalizeLinefeeds");
      -        const enc = new TextEncoder();
               const blobParts = [];
               const rn = new Uint8Array([13, 10]);
               length = 0;
               let hasUnknownSizeValue = false;
               for (const [name, value] of object) {
                 if (typeof value === "string") {
      -            const chunk2 = enc.encode(prefix + `; name="${escape(normalizeLinefeeds(name))}"\r
      +            const chunk2 = textEncoder.encode(prefix + `; name="${escape(normalizeLinefeeds(name))}"\r
       \r
       ${normalizeLinefeeds(value)}\r
       `);
                   blobParts.push(chunk2);
                   length += chunk2.byteLength;
                 } else {
      -            const chunk2 = enc.encode(`${prefix}; name="${escape(normalizeLinefeeds(name))}"` + (value.name ? `; filename="${escape(value.name)}"` : "") + `\r
      +            const chunk2 = textEncoder.encode(`${prefix}; name="${escape(normalizeLinefeeds(name))}"` + (value.name ? `; filename="${escape(value.name)}"` : "") + `\r
       Content-Type: ${value.type || "application/octet-stream"}\r
       \r
       `);
      @@ -4476,7 +4492,7 @@ Content-Type: ${value.type || "application/octet-stream"}\r
                   }
                 }
               }
      -        const chunk = enc.encode(`--${boundary}--`);
      +        const chunk = textEncoder.encode(`--${boundary}--`);
               blobParts.push(chunk);
               length += chunk.byteLength;
               if (hasUnknownSizeValue) {
      @@ -4671,14 +4687,14 @@ Content-Type: ${value.type || "application/octet-stream"}\r
                   let entries;
                   try {
                     let text = "";
      -              const textDecoder = new TextDecoder("utf-8", { ignoreBOM: true });
      +              const streamingDecoder = new TextDecoder("utf-8", { ignoreBOM: true });
                     for await (const chunk of consumeBody(this[kState].body)) {
                       if (!isUint8Array(chunk)) {
                         throw new TypeError("Expected Uint8Array chunk");
                       }
      -                text += textDecoder.decode(chunk, { stream: true });
      +                text += streamingDecoder.decode(chunk, { stream: true });
                     }
      -              text += textDecoder.decode();
      +              text += streamingDecoder.decode();
                     entries = new URLSearchParams(text);
                   } catch (err) {
                     throw Object.assign(new TypeError(), { cause: err });
      @@ -4739,7 +4755,7 @@ Content-Type: ${value.type || "application/octet-stream"}\r
             if (buffer[0] === 239 && buffer[1] === 187 && buffer[2] === 191) {
               buffer = buffer.subarray(3);
             }
      -      const output = new TextDecoder().decode(buffer);
      +      const output = textDecoder.decode(buffer);
             return output;
           }
           __name(utf8DecodeBytes, "utf8DecodeBytes");
      @@ -4783,7 +4799,7 @@ var require_response = __commonJS({
             isomorphicEncode
           } = require_util2();
           var {
      -      redirectStatus,
      +      redirectStatusSet,
             nullBodyStatus,
             DOMException
           } = require_constants();
      @@ -4796,6 +4812,7 @@ var require_response = __commonJS({
           var assert = require("assert");
           var { types } = require("util");
           var ReadableStream = globalThis.ReadableStream || require("stream/web").ReadableStream;
      +    var textEncoder = new TextEncoder("utf-8");
           var Response = class _Response {
             static {
               __name(this, "Response");
      @@ -4817,7 +4834,7 @@ var require_response = __commonJS({
               if (init !== null) {
                 init = webidl.converters.ResponseInit(init);
               }
      -        const bytes = new TextEncoder("utf-8").encode(
      +        const bytes = textEncoder.encode(
                 serializeJavascriptValueToJSONString(data)
               );
               const body = extractBody(bytes);
      @@ -4843,7 +4860,7 @@ var require_response = __commonJS({
                   cause: err
                 });
               }
      -        if (!redirectStatus.includes(status)) {
      +        if (!redirectStatusSet.has(status)) {
                 throw new RangeError("Invalid status code " + status);
               }
               const responseObject = new _Response();
      @@ -5216,8 +5233,8 @@ var require_request = __commonJS({
             makePolicyContainer
           } = require_util2();
           var {
      -      forbiddenMethods,
      -      corsSafeListedMethods,
      +      forbiddenMethodsSet,
      +      corsSafeListedMethodsSet,
             referrerPolicy,
             requestRedirect,
             requestMode,
      @@ -5410,7 +5427,7 @@ var require_request = __commonJS({
                 if (!isValidHTTPToken(init.method)) {
                   throw TypeError(`'${init.method}' is not a valid HTTP method.`);
                 }
      -          if (forbiddenMethods.indexOf(method.toUpperCase()) !== -1) {
      +          if (forbiddenMethodsSet.has(method.toUpperCase())) {
                   throw TypeError(`'${init.method}' HTTP method is unsupported.`);
                 }
                 method = normalizeMethod(init.method);
      @@ -5457,7 +5474,7 @@ var require_request = __commonJS({
               this[kHeaders][kGuard] = "request";
               this[kHeaders][kRealm] = this[kRealm];
               if (mode === "no-cors") {
      -          if (!corsSafeListedMethods.includes(request.method)) {
      +          if (!corsSafeListedMethodsSet.has(request.method)) {
                   throw new TypeError(
                     `'${request.method} is unsupported in no-cors mode.`
                   );
      @@ -6544,6 +6561,13 @@ var require_request2 = __commonJS({
               if (channels.bodySent.hasSubscribers) {
                 channels.bodySent.publish({ request: this });
               }
      +        if (this[kHandler].onRequestSent) {
      +          try {
      +            this[kHandler].onRequestSent();
      +          } catch (err) {
      +            this.onError(err);
      +          }
      +        }
             }
             onConnect(abort) {
               assert(!this.aborted);
      @@ -9448,11 +9472,11 @@ var require_fetch = __commonJS({
           var assert = require("assert");
           var { safelyExtractBody } = require_body();
           var {
      -      redirectStatus,
      +      redirectStatusSet,
             nullBodyStatus,
      -      safeMethods,
      +      safeMethodsSet,
             requestBodyHeader,
      -      subresource,
      +      subresourceSet,
             DOMException
           } = require_constants();
           var { kHeadersList } = require_symbols();
      @@ -9464,6 +9488,7 @@ var require_fetch = __commonJS({
           var { getGlobalDispatcher } = require_global2();
           var { webidl } = require_webidl();
           var { STATUS_CODES } = require("http");
      +    var GET_OR_HEAD = ["GET", "HEAD"];
           var resolveObjectURL;
           var ReadableStream = globalThis.ReadableStream;
           var Fetch = class extends EE {
      @@ -9500,7 +9525,7 @@ var require_fetch = __commonJS({
               this.emit("terminated", error);
             }
           };
      -    async function fetch2(input, init = {}) {
      +    function fetch2(input, init = {}) {
             webidl.argumentLengthCheck(arguments, 1, { header: "globalThis.fetch" });
             const p = createDeferredPromise();
             let requestObject;
      @@ -9535,17 +9560,17 @@ var require_fetch = __commonJS({
             const handleFetchDone = /* @__PURE__ */ __name((response) => finalizeAndReportTiming(response, "fetch"), "handleFetchDone");
             const processResponse = /* @__PURE__ */ __name((response) => {
               if (locallyAborted) {
      -          return;
      +          return Promise.resolve();
               }
               if (response.aborted) {
                 abortFetch(p, request, responseObject, controller.serializedAbortReason);
      -          return;
      +          return Promise.resolve();
               }
               if (response.type === "error") {
                 p.reject(
                   Object.assign(new TypeError("fetch failed"), { cause: response.error })
                 );
      -          return;
      +          return Promise.resolve();
               }
               responseObject = new Response();
               responseObject[kState] = response;
      @@ -9689,7 +9714,7 @@ var require_fetch = __commonJS({
             }
             if (request.priority === null) {
             }
      -      if (subresource.includes(request.destination)) {
      +      if (subresourceSet.has(request.destination)) {
             }
             mainFetch(fetchParams).catch((err) => {
               fetchParams.controller.terminate(err);
      @@ -9795,15 +9820,15 @@ var require_fetch = __commonJS({
             }
           }
           __name(mainFetch, "mainFetch");
      -    async function schemeFetch(fetchParams) {
      +    function schemeFetch(fetchParams) {
             if (isCancelled(fetchParams) && fetchParams.request.redirectCount === 0) {
      -        return makeAppropriateNetworkError(fetchParams);
      +        return Promise.resolve(makeAppropriateNetworkError(fetchParams));
             }
             const { request } = fetchParams;
             const { protocol: scheme } = requestCurrentURL(request);
             switch (scheme) {
               case "about:": {
      -          return makeNetworkError("about scheme is not supported");
      +          return Promise.resolve(makeNetworkError("about scheme is not supported"));
               }
               case "blob:": {
                 if (!resolveObjectURL) {
      @@ -9811,11 +9836,11 @@ var require_fetch = __commonJS({
                 }
                 const blobURLEntry = requestCurrentURL(request);
                 if (blobURLEntry.search.length !== 0) {
      -            return makeNetworkError("NetworkError when attempting to fetch resource.");
      +            return Promise.resolve(makeNetworkError("NetworkError when attempting to fetch resource."));
                 }
                 const blobURLEntryObject = resolveObjectURL(blobURLEntry.toString());
                 if (request.method !== "GET" || !isBlobLike(blobURLEntryObject)) {
      -            return makeNetworkError("invalid method");
      +            return Promise.resolve(makeNetworkError("invalid method"));
                 }
                 const bodyWithType = safelyExtractBody(blobURLEntryObject);
                 const body = bodyWithType[0];
      @@ -9829,32 +9854,32 @@ var require_fetch = __commonJS({
                   ]
                 });
                 response.body = body;
      -          return response;
      +          return Promise.resolve(response);
               }
               case "data:": {
                 const currentURL = requestCurrentURL(request);
                 const dataURLStruct = dataURLProcessor(currentURL);
                 if (dataURLStruct === "failure") {
      -            return makeNetworkError("failed to fetch the data URL");
      +            return Promise.resolve(makeNetworkError("failed to fetch the data URL"));
                 }
                 const mimeType = serializeAMimeType(dataURLStruct.mimeType);
      -          return makeResponse({
      +          return Promise.resolve(makeResponse({
                   statusText: "OK",
                   headersList: [
                     ["content-type", { name: "Content-Type", value: mimeType }]
                   ],
                   body: safelyExtractBody(dataURLStruct.body)[0]
      -          });
      +          }));
               }
               case "file:": {
      -          return makeNetworkError("not implemented... yet...");
      +          return Promise.resolve(makeNetworkError("not implemented... yet..."));
               }
               case "http:":
               case "https:": {
      -          return await httpFetch(fetchParams).catch((err) => makeNetworkError(err));
      +          return httpFetch(fetchParams).catch((err) => makeNetworkError(err));
               }
               default: {
      -          return makeNetworkError("unknown scheme");
      +          return Promise.resolve(makeNetworkError("unknown scheme"));
               }
             }
           }
      @@ -9866,7 +9891,7 @@ var require_fetch = __commonJS({
             }
           }
           __name(finalizeResponse, "finalizeResponse");
      -    async function fetchFinale(fetchParams, response) {
      +    function fetchFinale(fetchParams, response) {
             if (response.type === "error") {
               response.urlList = [fetchParams.request.urlList[0]];
               response.timingInfo = createOpaqueTimingInfo({
      @@ -9910,8 +9935,9 @@ var require_fetch = __commonJS({
               if (response.body == null) {
                 queueMicrotask(() => processBody(null));
               } else {
      -          await fullyReadBody(response.body, processBody, processBodyError);
      +          return fullyReadBody(response.body, processBody, processBodyError);
               }
      +        return Promise.resolve();
             }
           }
           __name(fetchFinale, "fetchFinale");
      @@ -9942,7 +9968,7 @@ var require_fetch = __commonJS({
             ) === "blocked") {
               return makeNetworkError("blocked");
             }
      -      if (redirectStatus.includes(actualResponse.status)) {
      +      if (redirectStatusSet.has(actualResponse.status)) {
               if (request.redirect !== "manual") {
                 fetchParams.controller.connection.destroy();
               }
      @@ -9960,7 +9986,7 @@ var require_fetch = __commonJS({
             return response;
           }
           __name(httpFetch, "httpFetch");
      -    async function httpRedirectFetch(fetchParams, response) {
      +    function httpRedirectFetch(fetchParams, response) {
             const request = fetchParams.request;
             const actualResponse = response.internalResponse ? response.internalResponse : response;
             let locationURL;
      @@ -9973,27 +9999,27 @@ var require_fetch = __commonJS({
                 return response;
               }
             } catch (err) {
      -        return makeNetworkError(err);
      +        return Promise.resolve(makeNetworkError(err));
             }
             if (!urlIsHttpHttpsScheme(locationURL)) {
      -        return makeNetworkError("URL scheme must be a HTTP(S) scheme");
      +        return Promise.resolve(makeNetworkError("URL scheme must be a HTTP(S) scheme"));
             }
             if (request.redirectCount === 20) {
      -        return makeNetworkError("redirect count exceeded");
      +        return Promise.resolve(makeNetworkError("redirect count exceeded"));
             }
             request.redirectCount += 1;
             if (request.mode === "cors" && (locationURL.username || locationURL.password) && !sameOrigin(request, locationURL)) {
      -        return makeNetworkError('cross origin not allowed for request mode "cors"');
      +        return Promise.resolve(makeNetworkError('cross origin not allowed for request mode "cors"'));
             }
             if (request.responseTainting === "cors" && (locationURL.username || locationURL.password)) {
      -        return makeNetworkError(
      +        return Promise.resolve(makeNetworkError(
                 'URL cannot contain credentials for request mode "cors"'
      -        );
      +        ));
             }
             if (actualResponse.status !== 303 && request.body != null && request.body.source == null) {
      -        return makeNetworkError();
      +        return Promise.resolve(makeNetworkError());
             }
      -      if ([301, 302].includes(actualResponse.status) && request.method === "POST" || actualResponse.status === 303 && !["GET", "HEAD"].includes(request.method)) {
      +      if ([301, 302].includes(actualResponse.status) && request.method === "POST" || actualResponse.status === 303 && !GET_OR_HEAD.includes(request.method)) {
               request.method = "GET";
               request.body = null;
               for (const headerName of requestBodyHeader) {
      @@ -10097,7 +10123,7 @@ var require_fetch = __commonJS({
                 includeCredentials,
                 isNewConnectionFetch
               );
      -        if (!safeMethods.includes(httpRequest.method) && forwardResponse.status >= 200 && forwardResponse.status <= 399) {
      +        if (!safeMethodsSet.has(httpRequest.method) && forwardResponse.status >= 200 && forwardResponse.status <= 399) {
               }
               if (revalidatingFlag && forwardResponse.status === 304) {
               }
      @@ -10363,7 +10389,7 @@ var require_fetch = __commonJS({
                     }
                     this.body = new Readable({ read: resume });
                     const decoders = [];
      -              const willFollow = request.redirect === "follow" && location && redirectStatus.includes(status);
      +              const willFollow = request.redirect === "follow" && location && redirectStatusSet.has(status);
                     if (request.method !== "HEAD" && request.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) {
                       for (const coding of codings) {
                         if (coding === "x-gzip" || coding === "gzip") {
      @@ -11723,13 +11749,11 @@ var require_websocket = __commonJS({
       
       // index-fetch.js
       var fetchImpl = require_fetch().fetch;
      -module.exports.fetch = /* @__PURE__ */ __name(async function fetch(resource, init = void 0) {
      -  try {
      -    return await fetchImpl(resource, init);
      -  } catch (err) {
      +module.exports.fetch = /* @__PURE__ */ __name(function fetch(resource, init = void 0) {
      +  return fetchImpl(resource, init).catch((err) => {
           Error.captureStackTrace(err, this);
           throw err;
      -  }
      +  });
       }, "fetch");
       module.exports.FormData = require_formdata().FormData;
       module.exports.Headers = require_headers().Headers;
      diff --git a/deps/uv/BUILD.gn b/deps/uv/BUILD.gn
      new file mode 100644
      index 00000000000000..8e6ac27048b596
      --- /dev/null
      +++ b/deps/uv/BUILD.gn
      @@ -0,0 +1,14 @@
      +##############################################################################
      +#                                                                            #
      +#                       DO NOT EDIT THIS FILE!                               #
      +#                                                                            #
      +##############################################################################
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please modify the gyp files if you are making changes to build system.
      +
      +import("unofficial.gni")
      +
      +uv_gn_build("uv") {
      +}
      diff --git a/deps/uv/unofficial.gni b/deps/uv/unofficial.gni
      new file mode 100644
      index 00000000000000..64d6bcbc5c13da
      --- /dev/null
      +++ b/deps/uv/unofficial.gni
      @@ -0,0 +1,110 @@
      +# Copyright (c) 2013-2019 GitHub Inc.
      +# Copyright 2019 the V8 project authors. All rights reserved.
      +# Copyright 2023 Microsoft Inc.
      +# Use of this source code is governed by a BSD-style license that can be
      +# found in the LICENSE file.
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please edit the gyp files if you are making changes to build system.
      +
      +# The actual configurations are put inside a template in unofficial.gni to
      +# prevent accidental edits from contributors.
      +template("uv_gn_build") {
      +  config("uv_external_config") {
      +    include_dirs = [ "include" ]
      +  }
      +
      +  config("uv_internal_config") {
      +    include_dirs = [
      +      "include",
      +      "src",
      +    ]
      +
      +    defines = [ "BUILDING_UV_SHARED" ]  # always export symbols
      +    if (is_posix) {
      +      defines += [
      +        "_LARGEFILE_SOURCE",
      +        "_FILE_OFFSET_BITS=64",
      +      ]
      +    }
      +    if (is_linux) {
      +      defines += [
      +        "_POSIX_C_SOURCE=200112",
      +        "_GNU_SOURCE",
      +      ]
      +    }
      +    if (is_apple) {
      +      defines += [
      +        "_DARWIN_USE_64_BIT_INODE=1",
      +        "_DARWIN_UNLIMITED_SELECT=1",
      +      ]
      +    }
      +    if (is_clang || !is_win) {
      +      cflags_c = [
      +        "-Wno-deprecated-declarations",
      +        "-Wno-extra-semi",
      +        "-Wno-implicit-fallthrough",
      +        "-Wno-missing-braces",
      +        "-Wno-string-conversion",
      +        "-Wno-shadow",
      +        "-Wno-unreachable-code",
      +        "-Wno-unreachable-code-return",
      +        "-Wno-unused-but-set-variable",
      +        "-Wno-unused-function",
      +        "-Wno-unused-result",
      +        "-Wno-unused-variable",
      +      ]
      +    }
      +  }
      +
      +  gypi_values = exec_script("../../tools/gypi_to_gn.py",
      +                            [ rebase_path("uv.gyp") ],
      +                            "scope",
      +                            [ "uv.gyp" ])
      +
      +  component(target_name) {
      +    forward_variables_from(invoker, "*")
      +
      +    configs += [ ":uv_internal_config" ]
      +    public_configs = [ ":uv_external_config" ]
      +
      +    if (is_win) {
      +      libs = [
      +        "advapi32.lib",
      +        "iphlpapi.lib",
      +        "psapi.lib",
      +        "shell32.lib",
      +        "user32.lib",
      +        "userenv.lib",
      +        "ws2_32.lib",
      +      ]
      +    }
      +    if (is_posix) {
      +      libs = [ "m" ]
      +      ldflags = [ "-pthread" ]
      +    }
      +    if (is_linux) {
      +      libs += [
      +        "dl",
      +        "rt",
      +      ]
      +    }
      +
      +    sources = gypi_values.uv_sources_common
      +    if (is_win) {
      +      sources += gypi_values.uv_sources_win
      +    }
      +    if (is_posix) {
      +      sources += gypi_values.uv_sources_posix +
      +                 [ "src/unix/proctitle.c" ]
      +    }
      +    if (is_linux) {
      +      sources += gypi_values.uv_sources_linux
      +    }
      +    if (is_apple) {
      +      sources += gypi_values.uv_sources_apple +
      +                 gypi_values.uv_sources_bsd_common
      +    }
      +  }
      +}
      diff --git a/deps/uvwasi/BUILD.gn b/deps/uvwasi/BUILD.gn
      new file mode 100644
      index 00000000000000..4f8fb081df805a
      --- /dev/null
      +++ b/deps/uvwasi/BUILD.gn
      @@ -0,0 +1,14 @@
      +##############################################################################
      +#                                                                            #
      +#                       DO NOT EDIT THIS FILE!                               #
      +#                                                                            #
      +##############################################################################
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please modify the gyp files if you are making changes to build system.
      +
      +import("unofficial.gni")
      +
      +uvwasi_gn_build("uvwasi") {
      +}
      diff --git a/deps/uvwasi/unofficial.gni b/deps/uvwasi/unofficial.gni
      new file mode 100644
      index 00000000000000..17f4c8e6eed0b3
      --- /dev/null
      +++ b/deps/uvwasi/unofficial.gni
      @@ -0,0 +1,38 @@
      +# Copyright (c) 2013-2019 GitHub Inc.
      +# Copyright 2019 the V8 project authors. All rights reserved.
      +# Copyright 2023 Microsoft Inc.
      +# Use of this source code is governed by a BSD-style license that can be
      +# found in the LICENSE file.
      +
      +# This file is used by GN for building, which is NOT the build system used for
      +# building official binaries.
      +# Please edit the gyp files if you are making changes to build system.
      +
      +# The actual configurations are put inside a template in unofficial.gni to
      +# prevent accidental edits from contributors.
      +template("uvwasi_gn_build") {
      +  config("uvwasi_config") {
      +    include_dirs = [ "include" ]
      +  }
      +
      +  gypi_values = exec_script("../../tools/gypi_to_gn.py",
      +                            [ rebase_path("uvwasi.gyp") ],
      +                            "scope",
      +                            [ "uvwasi.gyp" ])
      +
      +  source_set(target_name) {
      +    forward_variables_from(invoker, "*")
      +
      +    public_configs = [ ":uvwasi_config" ]
      +    sources = gypi_values.uvwasi_sources
      +    include_dirs = [ "src" ]
      +    deps = [ "../uv" ]
      +
      +    if (is_clang || !is_win) {
      +      cflags_c = [
      +        "-Wno-extra-semi",
      +        "-Wno-shadow",
      +      ]
      +    }
      +  }
      +}
      diff --git a/deps/v8/include/v8-version.h b/deps/v8/include/v8-version.h
      index e34be9b283f45c..074d0e9ce39017 100644
      --- a/deps/v8/include/v8-version.h
      +++ b/deps/v8/include/v8-version.h
      @@ -11,7 +11,7 @@
       #define V8_MAJOR_VERSION 11
       #define V8_MINOR_VERSION 8
       #define V8_BUILD_NUMBER 172
      -#define V8_PATCH_LEVEL 15
      +#define V8_PATCH_LEVEL 17
       
       // Use 1 for candidates and 0 otherwise.
       // (Boolean macro values are not supported by all preprocessors.)
      diff --git a/deps/v8/infra/mb/mb_config.pyl b/deps/v8/infra/mb/mb_config.pyl
      index 989584b8dd58d5..77e6b109cf6696 100644
      --- a/deps/v8/infra/mb/mb_config.pyl
      +++ b/deps/v8/infra/mb/mb_config.pyl
      @@ -579,7 +579,7 @@
           'release_x64_gcmole': [
             'release_bot', 'x64', 'gcmole'],
           'release_x64_msvc': [
      -      'release_bot_no_goma', 'x64', 'minimal_symbols', 'msvc'],
      +      'release_bot_no_reclient', 'x64', 'minimal_symbols', 'msvc'],
           'release_x64_correctness_fuzzer' : [
             'release_bot', 'x64', 'v8_correctness_fuzzer'],
           'release_x64_disable_runtime_call_stats': [
      @@ -589,7 +589,7 @@
           'release_x64_fuchsia_trybot': [
             'release_trybot', 'x64', 'fuchsia'],
           'release_x64_gcc': [
      -      'release_bot_no_goma', 'x64', 'gcc', 'lld', 'no_custom_libcxx'],
      +      'release_bot_no_reclient', 'x64', 'gcc', 'lld', 'no_custom_libcxx'],
           'release_x64_ios_simulator': [
             'release_bot', 'x64', 'ios_simulator'],
           'release_x64_internal': [
      @@ -648,7 +648,7 @@
           'debug_x64_asan': [
             'debug_bot', 'x64', 'asan', 'lsan'],
           'debug_x64_asan_no_lsan_static': [
      -      'debug', 'static', 'goma', 'v8_enable_slow_dchecks', 'v8_optimized_debug',
      +      'debug', 'static', 'reclient', 'v8_enable_slow_dchecks', 'v8_optimized_debug',
             'x64', 'asan'],
           'debug_x64_conservative_stack_scanning': [
             'debug_bot', 'x64', 'conservative_stack_scanning'],
      @@ -661,7 +661,7 @@
           'debug_x64_fuchsia': [
             'debug_bot', 'x64', 'fuchsia'],
           'debug_x64_gcc': [
      -      'debug_bot_no_goma', 'x64', 'gcc', 'lld', 'no_custom_libcxx'],
      +      'debug_bot_no_reclient', 'x64', 'gcc', 'lld', 'no_custom_libcxx'],
           'debug_x64_header_includes': [
             'debug_bot', 'x64', 'v8_check_header_includes'],
           'debug_x64_no_shared_cage': [
      @@ -696,7 +696,7 @@
           'debug_x86_minimal_symbols': [
             'debug_bot', 'x86', 'minimal_symbols'],
           'debug_x86_msvc': [
      -      'debug_bot_no_goma', 'x86', 'minimal_symbols', 'msvc'],
      +      'debug_bot_no_reclient', 'x86', 'minimal_symbols', 'msvc'],
           'debug_x86_no_i18n': [
             'debug_bot', 'x86', 'v8_no_i18n'],
           'debug_x86_trybot': [
      @@ -704,7 +704,7 @@
           'debug_x86_vtunejit': [
             'debug_bot', 'x86', 'v8_enable_vtunejit'],
           'full_debug_x86': [
      -      'debug', 'x86', 'goma', 'v8_enable_slow_dchecks', 'v8_full_debug'],
      +      'debug', 'x86', 'reclient', 'v8_enable_slow_dchecks', 'v8_full_debug'],
       
           # Release configs for x86.
           'release_x86': [
      @@ -725,7 +725,7 @@
           'release_x64_predictable': [
             'release_bot', 'x64', 'v8_enable_verify_predictable'],
           'release_x86_shared_verify_heap': [
      -      'release', 'x86', 'goma', 'shared', 'v8_verify_heap'],
      +      'release', 'x86', 'reclient', 'shared', 'v8_verify_heap'],
           'release_x86_trybot': [
             'release_trybot', 'x86'],
           'release_x86_verify_csa': [
      @@ -813,19 +813,19 @@
       
           'debug_bot_no_slow_dchecks': {
             'mixins': [
      -        'debug', 'shared', 'goma', 'v8_disable_slow_dchecks',
      +        'debug', 'shared', 'reclient', 'v8_disable_slow_dchecks',
               'v8_optimized_debug', 'v8_enable_google_benchmark'],
           },
       
           'debug_bot': {
             'mixins': [
      -        'debug', 'shared', 'goma', 'v8_enable_slow_dchecks',
      +        'debug', 'shared', 'reclient', 'v8_enable_slow_dchecks',
               'v8_optimized_debug', 'v8_enable_google_benchmark'],
           },
       
      -    'debug_bot_no_goma': {
      +    'debug_bot_no_reclient': {
             'mixins': [
      -        'debug', 'shared', 'no_goma', 'v8_enable_slow_dchecks',
      +        'debug', 'shared', 'no_reclient', 'v8_enable_slow_dchecks',
               'v8_optimized_debug'],
           },
       
      @@ -867,10 +867,6 @@
             'gn_args': 'v8_gcmole=true',
           },
       
      -    'goma': {
      -      'gn_args': 'use_goma=true',
      -    },
      -
           'hard_float': {
             'gn_args': 'arm_float_abi="hard"',
           },
      @@ -910,8 +906,8 @@
             'gn_args': 'use_custom_libcxx=false',
           },
       
      -    'no_goma': {
      -      'gn_args': 'use_goma=false',
      +    'no_reclient': {
      +      'gn_args': 'use_remoteexec=false',
           },
       
           'no_sandbox': {
      @@ -935,15 +931,15 @@
           },
       
           'release_bot': {
      -      'mixins': ['release', 'static', 'goma', 'v8_enable_google_benchmark'],
      +      'mixins': ['release', 'static', 'reclient', 'v8_enable_google_benchmark'],
           },
       
      -    'release_bot_no_goma': {
      -      'mixins': ['release', 'static', 'no_goma'],
      +    'release_bot_no_reclient': {
      +      'mixins': ['release', 'static', 'no_reclient'],
           },
       
           'release_bot_reclient': {
      -      'mixins': ['release', 'static', 'no_goma', 'reclient'],
      +      'mixins': ['release', 'static', 'reclient'],
           },
       
           'release_trybot': {
      diff --git a/deps/v8/src/builtins/riscv/builtins-riscv.cc b/deps/v8/src/builtins/riscv/builtins-riscv.cc
      index 326001fdd18add..638001f90549cc 100644
      --- a/deps/v8/src/builtins/riscv/builtins-riscv.cc
      +++ b/deps/v8/src/builtins/riscv/builtins-riscv.cc
      @@ -1673,7 +1673,7 @@ static void Generate_InterpreterEnterBytecode(MacroAssembler* masm) {
         // Set the return address to the correct point in the interpreter entry
         // trampoline.
         Label builtin_trampoline, trampoline_loaded;
      -  Smi interpreter_entry_return_pc_offset(
      +  Tagged interpreter_entry_return_pc_offset(
             masm->isolate()->heap()->interpreter_entry_return_pc_offset());
         DCHECK_NE(interpreter_entry_return_pc_offset, Smi::zero());
       
      diff --git a/deps/v8/src/codegen/riscv/assembler-riscv-inl.h b/deps/v8/src/codegen/riscv/assembler-riscv-inl.h
      index 773dc560da1e64..8abf4b3239ff6d 100644
      --- a/deps/v8/src/codegen/riscv/assembler-riscv-inl.h
      +++ b/deps/v8/src/codegen/riscv/assembler-riscv-inl.h
      @@ -128,9 +128,9 @@ Handle Assembler::compressed_embedded_object_handle_at(
       }
       
       void Assembler::deserialization_set_special_target_at(
      -    Address instruction_payload, Code code, Address target) {
      +    Address instruction_payload, Tagged code, Address target) {
         set_target_address_at(instruction_payload,
      -                        !code.is_null() ? code.constant_pool() : kNullAddress,
      +                        !code.is_null() ? code->constant_pool() : kNullAddress,
                               target);
       }
       
      @@ -159,12 +159,13 @@ void Assembler::deserialization_set_target_internal_reference_at(
         }
       }
       
      -HeapObject RelocInfo::target_object(PtrComprCageBase cage_base) {
      +Tagged RelocInfo::target_object(PtrComprCageBase cage_base) {
         DCHECK(IsCodeTarget(rmode_) || IsEmbeddedObjectMode(rmode_));
         if (IsCompressedEmbeddedObject(rmode_)) {
      -    return HeapObject::cast(Object(V8HeapCompressionScheme::DecompressTagged(
      -        cage_base,
      -        Assembler::target_compressed_address_at(pc_, constant_pool_))));
      +    return HeapObject::cast(
      +        Tagged(V8HeapCompressionScheme::DecompressTagged(
      +            cage_base,
      +            Assembler::target_compressed_address_at(pc_, constant_pool_))));
         } else {
           return HeapObject::cast(
               Object(Assembler::target_address_at(pc_, constant_pool_)));
      @@ -186,7 +187,7 @@ Handle RelocInfo::target_object_handle(Assembler* origin) {
         }
       }
       
      -void RelocInfo::set_target_object(HeapObject target,
      +void RelocInfo::set_target_object(Tagged target,
                                         ICacheFlushMode icache_flush_mode) {
         DCHECK(IsCodeTarget(rmode_) || IsEmbeddedObjectMode(rmode_));
         if (IsCompressedEmbeddedObject(rmode_)) {
      diff --git a/deps/v8/src/codegen/riscv/assembler-riscv.h b/deps/v8/src/codegen/riscv/assembler-riscv.h
      index 65c317ad018126..ced4dd8aee8591 100644
      --- a/deps/v8/src/codegen/riscv/assembler-riscv.h
      +++ b/deps/v8/src/codegen/riscv/assembler-riscv.h
      @@ -288,7 +288,7 @@ class V8_EXPORT_PRIVATE Assembler : public AssemblerBase,
         // This is for calls and branches within generated code.  The serializer
         // has already deserialized the lui/ori instructions etc.
         inline static void deserialization_set_special_target_at(Address location,
      -                                                           Code code,
      +                                                           Tagged code,
                                                                  Address target);
       
         // Get the size of the special target encoded at 'instruction_payload'.
      diff --git a/deps/v8/src/execution/riscv/simulator-riscv.cc b/deps/v8/src/execution/riscv/simulator-riscv.cc
      index 1baf9eb6c66457..5b5411cb3e237c 100644
      --- a/deps/v8/src/execution/riscv/simulator-riscv.cc
      +++ b/deps/v8/src/execution/riscv/simulator-riscv.cc
      @@ -1889,7 +1889,7 @@ void RiscvDebugger::Debug() {
                 sreg_t value;
                 StdoutStream os;
                 if (GetValue(arg1, &value)) {
      -            Object obj(value);
      +            Tagged obj(value);
                   os << arg1 << ": \n";
       #ifdef DEBUG
                   Print(obj, os);
      @@ -1938,7 +1938,7 @@ void RiscvDebugger::Debug() {
                 PrintF("  0x%012" PRIxPTR " :  0x%016" REGIx_FORMAT
                        "  %14" REGId_FORMAT " ",
                        reinterpret_cast(cur), *cur, *cur);
      -          Object obj(*cur);
      +          Tagged obj(*cur);
                 Heap* current_heap = sim_->isolate_->heap();
                 if (IsSmi(obj) ||
                     IsValidHeapObject(current_heap, HeapObject::cast(obj))) {
      @@ -4815,7 +4815,7 @@ bool Simulator::DecodeRvvVS() {
       Builtin Simulator::LookUp(Address pc) {
         for (Builtin builtin = Builtins::kFirst; builtin <= Builtins::kLast;
              ++builtin) {
      -    if (builtins_.code(builtin).contains(isolate_, pc)) return builtin;
      +    if (builtins_.code(builtin)->contains(isolate_, pc)) return builtin;
         }
         return Builtin::kNoBuiltinId;
       }
      @@ -4832,7 +4832,7 @@ void Simulator::DecodeRVIType() {
               if (builtin != Builtin::kNoBuiltinId) {
                 auto code = builtins_.code(builtin);
                 if ((rs1_reg() != ra || imm12() != 0)) {
      -            if ((Address)get_pc() == code.instruction_start()) {
      +            if ((Address)get_pc() == code->instruction_start()) {
                     sreg_t arg0 = get_register(a0);
                     sreg_t arg1 = get_register(a1);
                     sreg_t arg2 = get_register(a2);
      diff --git a/deps/v8/src/objects/js-function.cc b/deps/v8/src/objects/js-function.cc
      index 64cb8265b93ba1..8bb87b5d3d3df6 100644
      --- a/deps/v8/src/objects/js-function.cc
      +++ b/deps/v8/src/objects/js-function.cc
      @@ -1083,13 +1083,13 @@ MaybeHandle JSFunction::GetDerivedMap(Isolate* isolate,
                                                isolate);
           prototype = handle(realm_constructor->prototype(), isolate);
         }
      -  CHECK(IsJSReceiver(*prototype));
      -  DCHECK_EQ(constructor_initial_map->constructor_or_back_pointer(),
      -            *constructor);
       
      -  Handle map = Map::TransitionToDerivedMap(
      -      isolate, constructor_initial_map, Handle::cast(prototype));
      -  DCHECK_EQ(map->constructor_or_back_pointer(), *constructor);
      +  Handle map = Map::CopyInitialMap(isolate, constructor_initial_map);
      +  map->set_new_target_is_base(false);
      +  CHECK(IsJSReceiver(*prototype));
      +  if (map->prototype() != *prototype)
      +    Map::SetPrototype(isolate, map, Handle::cast(prototype));
      +  map->SetConstructor(*constructor);
         return map;
       }
       
      diff --git a/deps/v8/src/objects/map.cc b/deps/v8/src/objects/map.cc
      index 798c9c595357d3..4909c9d46af4df 100644
      --- a/deps/v8/src/objects/map.cc
      +++ b/deps/v8/src/objects/map.cc
      @@ -2344,31 +2344,13 @@ void Map::StartInobjectSlackTracking() {
       
       Handle Map::TransitionToPrototype(Isolate* isolate, Handle map,
                                              Handle prototype) {
      -  Handle new_map = TransitionsAccessor::GetPrototypeTransition(
      -      isolate, map, prototype, map->new_target_is_base());
      +  Handle new_map =
      +      TransitionsAccessor::GetPrototypeTransition(isolate, map, prototype);
         if (new_map.is_null()) {
           new_map = Copy(isolate, map, "TransitionToPrototype");
           TransitionsAccessor::PutPrototypeTransition(isolate, map, prototype,
                                                       new_map);
      -    if (*prototype != map->prototype()) {
      -      Map::SetPrototype(isolate, new_map, prototype);
      -    }
      -  }
      -  return new_map;
      -}
      -
      -Handle Map::TransitionToDerivedMap(Isolate* isolate, Handle map,
      -                                        Handle prototype) {
      -  Handle new_map = TransitionsAccessor::GetPrototypeTransition(
      -      isolate, map, prototype, /* new_target_is_base */ false);
      -  if (new_map.is_null()) {
      -    new_map = CopyInitialMap(isolate, map);
      -    TransitionsAccessor::PutPrototypeTransition(isolate, map, prototype,
      -                                                new_map);
      -    if (*prototype != map->prototype()) {
      -      Map::SetPrototype(isolate, new_map, prototype);
      -    }
      -    new_map->set_new_target_is_base(false);
      +    Map::SetPrototype(isolate, new_map, prototype);
         }
         return new_map;
       }
      diff --git a/deps/v8/src/objects/map.h b/deps/v8/src/objects/map.h
      index 2853bdc738fefd..07a1ff595a58b1 100644
      --- a/deps/v8/src/objects/map.h
      +++ b/deps/v8/src/objects/map.h
      @@ -863,9 +863,6 @@ class Map : public TorqueGeneratedMap {
         V8_EXPORT_PRIVATE static Handle TransitionToPrototype(
             Isolate* isolate, Handle map, Handle prototype);
       
      -  V8_EXPORT_PRIVATE static Handle TransitionToDerivedMap(
      -      Isolate* isolate, Handle map, Handle prototype);
      -
         static Handle TransitionToImmutableProto(Isolate* isolate,
                                                       Handle map);
       
      diff --git a/deps/v8/src/objects/transitions.cc b/deps/v8/src/objects/transitions.cc
      index a1bfb38c41438d..b0731161ab8936 100644
      --- a/deps/v8/src/objects/transitions.cc
      +++ b/deps/v8/src/objects/transitions.cc
      @@ -443,8 +443,7 @@ void TransitionsAccessor::PutPrototypeTransition(Isolate* isolate,
       
       // static
       Handle TransitionsAccessor::GetPrototypeTransition(
      -    Isolate* isolate, Handle map, Handle prototype_handle,
      -    bool new_target_is_base) {
      +    Isolate* isolate, Handle map, Handle prototype_handle) {
         DisallowGarbageCollection no_gc;
         Object prototype = *prototype_handle;
         Tagged cache = GetPrototypeTransitions(isolate, map);
      @@ -456,8 +455,7 @@ Handle TransitionsAccessor::GetPrototypeTransition(
           Tagged heap_object;
           if (target.GetHeapObjectIfWeak(&heap_object)) {
             Tagged target_map = Map::cast(heap_object);
      -      if (target_map->prototype() == prototype &&
      -          target_map->new_target_is_base() == new_target_is_base) {
      +      if (target_map->prototype() == prototype) {
               return handle(target_map, isolate);
             }
           }
      diff --git a/deps/v8/src/objects/transitions.h b/deps/v8/src/objects/transitions.h
      index 66e80f1704bccb..f86cdb41edfd3f 100644
      --- a/deps/v8/src/objects/transitions.h
      +++ b/deps/v8/src/objects/transitions.h
      @@ -124,20 +124,19 @@ class V8_EXPORT_PRIVATE TransitionsAccessor {
         }
       
         // ===== PROTOTYPE TRANSITIONS =====
      -  // When you set the prototype of an object using the __proto__ accessor, or if
      -  // an unrelated new.target is passed to a constructor you need a new map for
      -  // the object (the prototype is stored in the map).  In order not to multiply
      -  // maps unnecessarily we store these as transitions in the original map.  That
      -  // way we can transition to the same map if the same prototype is set, rather
      -  // than creating a new map every time.  The transitions are in the form of a
      -  // map where the keys are prototype objects and the values are the maps they
      -  // transition to. PutPrototypeTransition can trigger GC.
      +  // When you set the prototype of an object using the __proto__ accessor you
      +  // need a new map for the object (the prototype is stored in the map).  In
      +  // order not to multiply maps unnecessarily we store these as transitions in
      +  // the original map.  That way we can transition to the same map if the same
      +  // prototype is set, rather than creating a new map every time.  The
      +  // transitions are in the form of a map where the keys are prototype objects
      +  // and the values are the maps they transition to.
      +  // PutPrototypeTransition can trigger GC.
         static void PutPrototypeTransition(Isolate* isolate, Handle,
                                            Handle prototype,
                                            Handle target_map);
         static Handle GetPrototypeTransition(Isolate* isolate, Handle map,
      -                                            Handle prototype,
      -                                            bool new_target_is_base);
      +                                            Handle prototype);
       
         // During the first-time Map::Update and Map::TryUpdate, the migration target
         // map could be cached in the raw_transitions slot of the old map that is
      diff --git a/deps/v8/src/regexp/riscv/regexp-macro-assembler-riscv.cc b/deps/v8/src/regexp/riscv/regexp-macro-assembler-riscv.cc
      index 3b57e613eefc15..f60f03e5eee6d0 100644
      --- a/deps/v8/src/regexp/riscv/regexp-macro-assembler-riscv.cc
      +++ b/deps/v8/src/regexp/riscv/regexp-macro-assembler-riscv.cc
      @@ -1216,7 +1216,7 @@ static T* frame_entry_address(Address re_frame, int frame_offset) {
       int64_t RegExpMacroAssemblerRISCV::CheckStackGuardState(Address* return_address,
                                                               Address raw_code,
                                                               Address re_frame) {
      -  InstructionStream re_code = InstructionStream::cast(Object(raw_code));
      +  Tagged re_code = InstructionStream::cast(Object(raw_code));
         return NativeRegExpMacroAssembler::CheckStackGuardState(
             frame_entry(re_frame, kIsolateOffset),
             static_cast(frame_entry(re_frame, kStartIndexOffset)),
      diff --git a/deps/v8/test/mjsunit/regress/regress-reflect-construct.js b/deps/v8/test/mjsunit/regress/regress-reflect-construct.js
      deleted file mode 100644
      index 35f1c47f592983..00000000000000
      --- a/deps/v8/test/mjsunit/regress/regress-reflect-construct.js
      +++ /dev/null
      @@ -1,31 +0,0 @@
      -// Copyright 2023 the V8 project authors. All rights reserved.
      -// Use of this source code is governed by a BSD-style license that can be
      -// found in the LICENSE file.
      -
      -// Flags: --allow-natives-syntax
      -
      -
      -class A {};
      -class B {};
      -class C {};
      -class D {};
      -class E {};
      -class V { constructor() { this.v = 1 } };
      -class W { constructor() { this.w = 1 } };
      -class X { constructor() { this.x = 1 } };
      -class Y { constructor() { this.y = 1 } };
      -class Z { constructor() { this.z = 1 } };
      -
      -var ctrs = [
      -  function() {},
      -  A,B,C,D,E,V,W,X,Y,Z
      -];
      -
      -for (var it = 0; it < 20; ++it) {
      -  for (var i in ctrs) {
      -    for (var j in ctrs) {
      -      assertTrue(%HaveSameMap(Reflect.construct(ctrs[i],[],ctrs[j]),
      -                              Reflect.construct(ctrs[i],[],ctrs[j])));
      -    }
      -  }
      -}
      diff --git a/deps/zlib/google/zip_reader_unittest.cc b/deps/zlib/google/zip_reader_unittest.cc
      index 6086c97c49b622..8ef0274e112483 100644
      --- a/deps/zlib/google/zip_reader_unittest.cc
      +++ b/deps/zlib/google/zip_reader_unittest.cc
      @@ -157,7 +157,7 @@ class ZipReaderTest : public PlatformTest {
       
         static base::FilePath GetTestDataDirectory() {
           base::FilePath path;
      -    CHECK(base::PathService::Get(base::DIR_SOURCE_ROOT, &path));
      +    CHECK(base::PathService::Get(base::DIR_SRC_TEST_DATA_ROOT, &path));
           return path.AppendASCII("third_party")
               .AppendASCII("zlib")
               .AppendASCII("google")
      diff --git a/deps/zlib/google/zip_unittest.cc b/deps/zlib/google/zip_unittest.cc
      index d0fc02fd939a15..922d38303ce845 100644
      --- a/deps/zlib/google/zip_unittest.cc
      +++ b/deps/zlib/google/zip_unittest.cc
      @@ -206,7 +206,7 @@ class VirtualFileSystem : public zip::FileAccessor {
       
           info->is_directory = !files_.count(path);
           info->last_modified =
      -        base::Time::FromDoubleT(172097977);  // Some random date.
      +        base::Time::FromSecondsSinceUnixEpoch(172097977);  // Some random date.
       
           return true;
         }
      @@ -256,7 +256,7 @@ class ZipTest : public PlatformTest {
       
         static base::FilePath GetDataDirectory() {
           base::FilePath path;
      -    bool success = base::PathService::Get(base::DIR_SOURCE_ROOT, &path);
      +    bool success = base::PathService::Get(base::DIR_SRC_TEST_DATA_ROOT, &path);
           EXPECT_TRUE(success);
           return std::move(path)
               .AppendASCII("third_party")
      diff --git a/doc/api/cli.md b/doc/api/cli.md
      index 3cb36818ae4997..6b1860ecc81980 100644
      --- a/doc/api/cli.md
      +++ b/doc/api/cli.md
      @@ -1007,7 +1007,9 @@ added:
       
       > Stability: 1 - Experimental
       
      -Preload the specified module at startup.
      +Preload the specified module at startup. If the flag is provided several times,
      +each module will be executed sequentially in the order they appear, starting
      +with the ones provided in [`NODE_OPTIONS`][].
       
       Follows [ECMAScript module][] resolution rules.
       Use [`--require`][] to load a [CommonJS module][].
      @@ -1194,6 +1196,16 @@ added: v19.0.0
       
       Disable exposition of [CustomEvent Web API][] on the global scope.
       
      +### `--no-experimental-global-navigator`
      +
      +
      +
      +> Stability: 1 - Experimental
      +
      +Disable exposition of [Navigator API][] on the global scope.
      +
       ### `--no-experimental-global-webcrypto`
       
       
      +
      +A number of milliseconds the test execution will fail after. If unspecified,
      +subtests inherit this value from their parent. The default value is `Infinity`.
      +
       ### `--throw-deprecation`
       
       
      +
      +> Stability: 1.2 - Release candidate
      +
      +* {string} The directory name of the current module. This is the same as the
      +  [`path.dirname()`][] of the [`import.meta.filename`][].
      +
      +> **Caveat**: only present on `file:` modules.
      +
      +### `import.meta.filename`
      +
      +
      +
      +> Stability: 1.2 - Release candidate
      +
      +* {string} The full absolute path and filename of the current module, with
      +* symlinks resolved.
      +* This is the same as the [`url.fileURLToPath()`][] of the
      +* [`import.meta.url`][].
      +
      +> **Caveat** only local modules support this property. Modules not using the
      +> `file:` protocol will not provide it.
      +
       ### `import.meta.url`
       
       * {string} The absolute `file:` URL of the module.
      @@ -526,7 +555,7 @@ If needed, a `require` function can be constructed within an ES module using
       These CommonJS variables are not available in ES modules.
       
       `__filename` and `__dirname` use cases can be replicated via
      -[`import.meta.url`][].
      +[`import.meta.filename`][] and [`import.meta.dirname`][].
       
       #### No Addon Loading
       
      @@ -1107,13 +1136,17 @@ resolution for ESM specifiers is [commonjs-extension-resolution-loader][].
       [`data:` URLs]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs
       [`export`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export
       [`import()`]: #import-expressions
      +[`import.meta.dirname`]: #importmetadirname
      +[`import.meta.filename`]: #importmetafilename
       [`import.meta.resolve`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta/resolve
       [`import.meta.url`]: #importmetaurl
       [`import`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import
       [`module.createRequire()`]: module.md#modulecreaterequirefilename
       [`module.syncBuiltinESMExports()`]: module.md#modulesyncbuiltinesmexports
       [`package.json`]: packages.md#nodejs-packagejson-field-definitions
      +[`path.dirname()`]: path.md#pathdirnamepath
       [`process.dlopen`]: process.md#processdlopenmodule-filename-flags
      +[`url.fileURLToPath()`]: url.md#urlfileurltopathurl
       [cjs-module-lexer]: https://github.com/nodejs/cjs-module-lexer/tree/1.2.2
       [commonjs-extension-resolution-loader]: https://github.com/nodejs/loaders-test/tree/main/commonjs-extension-resolution-loader
       [custom https loader]: module.md#import-from-https
      diff --git a/doc/api/fs.md b/doc/api/fs.md
      index 8079b7cc316fec..243ab75ca72541 100644
      --- a/doc/api/fs.md
      +++ b/doc/api/fs.md
      @@ -3814,7 +3814,7 @@ system requests but rather the internal buffering `fs.readFile` performs.
       2. If a file descriptor is specified as the `path`, it will not be closed
          automatically.
       3. The reading will begin at the current position. For example, if the file
      -   already had `'Hello World`' and six bytes are read with the file descriptor,
      +   already had `'Hello World'` and six bytes are read with the file descriptor,
          the call to `fs.readFile()` with the same file descriptor, would give
          `'World'`, rather than `'Hello World'`.
       
      diff --git a/doc/api/globals.md b/doc/api/globals.md
      index ebaaf2a6e0012e..b767c33a0a870c 100644
      --- a/doc/api/globals.md
      +++ b/doc/api/globals.md
      @@ -600,7 +600,8 @@ This variable may appear to be global but is not. See [`module`][].
       added: v21.0.0
       -->
       
      -> Stability: 1.1 - Active development
      +> Stability: 1.1 - Active development. Disable this API with the
      +> [`--no-experimental-global-navigator`][] CLI flag.
       
       A partial implementation of the [Navigator API][].
       
      @@ -610,18 +611,11 @@ A partial implementation of the [Navigator API][].
       added: v21.0.0
       -->
       
      -> Stability: 1.1 - Active development
      +> Stability: 1.1 - Active development. Disable this API with the
      +> [`--no-experimental-global-navigator`][] CLI flag.
       
       A partial implementation of [`window.navigator`][].
       
      -If your app or a dependency uses a check for `navigator` to determine whether it
      -is running in a browser, the following can be used to delete the `navigator`
      -global before app code runs:
      -
      -```bash
      -node --import 'data:text/javascript,delete globalThis.navigator' app.js
      -```
      -
       ### `navigator.hardwareConcurrency`
       
       
      +
      +* {string}
      +
      +The `navigator.language` read-only property returns a string representing the
      +preferred language of the Node.js instance. The language will be determined by
      +the ICU library used by Node.js at runtime based on the
      +default language of the operating system.
      +
      +The value is representing the language version as defined in [RFC 5646][].
      +
      +The fallback value on builds without ICU is `'en-US'`.
      +
      +```js
      +console.log(`The preferred language of the Node.js instance has the tag '${navigator.language}'`);
      +```
      +
      +### `navigator.languages`
      +
      +
      +
      +* {Array}
      +
      +The `navigator.languages` read-only property returns an array of strings
      +representing the preferred languages of the Node.js instance.
      +By default `navigator.languages` contains only the value of
      +`navigator.language`, which will be determined by the ICU library used by
      +Node.js at runtime based on the default language of the operating system.
      +
      +The fallback value on builds without ICU is `['en-US']`.
      +
      +```js
      +console.log(`The preferred languages are '${navigator.languages}'`);
      +```
      +
      +### `navigator.platform`
      +
      +
      +
      +* {string}
      +
      +The `navigator.platform` read-only property returns a string identifying the
      +platform on which the Node.js instance is running.
      +
      +```js
      +console.log(`This process is running on ${navigator.platform}`);
      +```
      +
       ### `navigator.userAgent`
       
       
       
       Enables timer mocking for the specified timers.
       
      -* `timers` {Array} An optional array containing the timers to mock.
      -  The currently supported timer values are `'setInterval'`, `'setTimeout'`,
      -  and `'setImmediate'`.  If no value is provided, all timers (`'setInterval'`,
      -  `'clearInterval'`, `'setTimeout'`, `'clearTimeout'`, `'setImmediate'`,
      -  and `'clearImmediate'`) will be mocked by default.
      +* `enableOptions` {Object} Optional configuration options for enabling timer
      +  mocking. The following properties are supported:
      +  * `apis` {Array} An optional array containing the timers to mock.
      +    The currently supported timer values are `'setInterval'`, `'setTimeout'`, `'setImmediate'`,
      +    and `'Date'`. **Default:** `['setInterval', 'setTimeout', 'setImmediate', 'Date']`.
      +    If no array is provided, all time related APIs (`'setInterval'`, `'clearInterval'`,
      +    `'setTimeout'`, `'clearTimeout'`, and `'Date'`) will be mocked by default.
      +  * `now` {number | Date} An optional number or Date object representing the
      +    initial time (in milliseconds) to use as the value
      +    for `Date.now()`. **Default:** `0`.
       
       **Note:** When you enable mocking for a specific timer, its associated
       clear function will also be implicitly mocked.
       
      -Example usage:
      +**Note:** Mocking `Date` will affect the behavior of the mocked timers
      +as they use the same internal clock.
      +
      +Example usage without setting initial time:
       
       ```mjs
       import { mock } from 'node:test';
      -mock.timers.enable(['setInterval']);
      +mock.timers.enable({ apis: ['setInterval'] });
       ```
       
       ```cjs
       const { mock } = require('node:test');
      -mock.timers.enable(['setInterval']);
      +mock.timers.enable({ apis: ['setInterval'] });
       ```
       
       The above example enables mocking for the `setInterval` timer and
      @@ -1615,12 +1860,36 @@ and `clearInterval` functions from [node:timers](./timers.md),
       [node:timers/promises](./timers.md#timers-promises-api), and
       `globalThis` will be mocked.
       
      +Example usage with initial time set
      +
      +```mjs
      +import { mock } from 'node:test';
      +mock.timers.enable({ apis: ['Date'], now: 1000 });
      +```
      +
      +```cjs
      +const { mock } = require('node:test');
      +mock.timers.enable({ apis: ['Date'], now: 1000 });
      +```
      +
      +Example usage with initial Date object as time set
      +
      +```mjs
      +import { mock } from 'node:test';
      +mock.timers.enable({ apis: ['Date'], now: new Date() });
      +```
      +
      +```cjs
      +const { mock } = require('node:test');
      +mock.timers.enable({ apis: ['Date'], now: new Date() });
      +```
      +
       Alternatively, if you call `mock.timers.enable()` without any parameters:
       
       All timers (`'setInterval'`, `'clearInterval'`, `'setTimeout'`, and `'clearTimeout'`)
       will be mocked. The `setInterval`, `clearInterval`, `setTimeout`, and `clearTimeout`
       functions from `node:timers`, `node:timers/promises`,
      -and `globalThis` will be mocked.
      +and `globalThis` will be mocked. As well as the global `Date` object.
       
       ### `timers.reset()`
       
      @@ -1677,7 +1946,7 @@ import { test } from 'node:test';
       test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {
         const fn = context.mock.fn();
       
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout'] });
       
         setTimeout(fn, 9999);
       
      @@ -1696,7 +1965,7 @@ const { test } = require('node:test');
       
       test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {
         const fn = context.mock.fn();
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout'] });
       
         setTimeout(fn, 9999);
         assert.strictEqual(fn.mock.callCount(), 0);
      @@ -1716,7 +1985,7 @@ import { test } from 'node:test';
       
       test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {
         const fn = context.mock.fn();
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout'] });
         const nineSecs = 9000;
         setTimeout(fn, nineSecs);
       
      @@ -1735,7 +2004,7 @@ const { test } = require('node:test');
       
       test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {
         const fn = context.mock.fn();
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout'] });
         const nineSecs = 9000;
         setTimeout(fn, nineSecs);
       
      @@ -1748,6 +2017,48 @@ test('mocks setTimeout to be executed synchronously without having to actually w
       });
       ```
       
      +Advancing time using `.tick` will also advance the time for any `Date` object
      +created after the mock was enabled (if `Date` was also set to be mocked).
      +
      +```mjs
      +import assert from 'node:assert';
      +import { test } from 'node:test';
      +
      +test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {
      +  const fn = context.mock.fn();
      +
      +  context.mock.timers.enable({ apis: ['setTimeout', 'Date'] });
      +  setTimeout(fn, 9999);
      +
      +  assert.strictEqual(fn.mock.callCount(), 0);
      +  assert.strictEqual(Date.now(), 0);
      +
      +  // Advance in time
      +  context.mock.timers.tick(9999);
      +  assert.strictEqual(fn.mock.callCount(), 1);
      +  assert.strictEqual(Date.now(), 9999);
      +});
      +```
      +
      +```cjs
      +const assert = require('node:assert');
      +const { test } = require('node:test');
      +
      +test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {
      +  const fn = context.mock.fn();
      +  context.mock.timers.enable({ apis: ['setTimeout', 'Date'] });
      +
      +  setTimeout(fn, 9999);
      +  assert.strictEqual(fn.mock.callCount(), 0);
      +  assert.strictEqual(Date.now(), 0);
      +
      +  // Advance in time
      +  context.mock.timers.tick(9999);
      +  assert.strictEqual(fn.mock.callCount(), 1);
      +  assert.strictEqual(Date.now(), 9999);
      +});
      +```
      +
       #### Using clear functions
       
       As mentioned, all clear functions from timers (`clearTimeout` and `clearInterval`)
      @@ -1761,7 +2072,7 @@ test('mocks setTimeout to be executed synchronously without having to actually w
         const fn = context.mock.fn();
       
         // Optionally choose what to mock
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout'] });
         const id = setTimeout(fn, 9999);
       
         // Implicity mocked as well
      @@ -1781,7 +2092,7 @@ test('mocks setTimeout to be executed synchronously without having to actually w
         const fn = context.mock.fn();
       
         // Optionally choose what to mock
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout'] });
         const id = setTimeout(fn, 9999);
       
         // Implicity mocked as well
      @@ -1815,7 +2126,7 @@ test('mocks setTimeout to be executed synchronously without having to actually w
         const nodeTimerPromiseSpy = context.mock.fn();
       
         // Optionally choose what to mock
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout'] });
         setTimeout(globalTimeoutObjectSpy, 9999);
         nodeTimers.setTimeout(nodeTimerSpy, 9999);
       
      @@ -1842,7 +2153,7 @@ test('mocks setTimeout to be executed synchronously without having to actually w
         const nodeTimerPromiseSpy = context.mock.fn();
       
         // Optionally choose what to mock
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout'] });
         setTimeout(globalTimeoutObjectSpy, 9999);
         nodeTimers.setTimeout(nodeTimerSpy, 9999);
       
      @@ -1865,7 +2176,7 @@ import assert from 'node:assert';
       import { test } from 'node:test';
       import nodeTimersPromises from 'node:timers/promises';
       test('should tick five times testing a real use case', async (context) => {
      -  context.mock.timers.enable(['setInterval']);
      +  context.mock.timers.enable({ apis: ['setInterval'] });
       
         const expectedIterations = 3;
         const interval = 1000;
      @@ -1897,7 +2208,7 @@ const assert = require('node:assert');
       const { test } = require('node:test');
       const nodeTimersPromises = require('node:timers/promises');
       test('should tick five times testing a real use case', async (context) => {
      -  context.mock.timers.enable(['setInterval']);
      +  context.mock.timers.enable({ apis: ['setInterval'] });
       
         const expectedIterations = 3;
         const interval = 1000;
      @@ -1931,7 +2242,8 @@ added:
         - v20.4.0
       -->
       
      -Triggers all pending mocked timers immediately.
      +Triggers all pending mocked timers immediately. If the `Date` object is also
      +mocked, it will also advance the `Date` object to the furthest timer's time.
       
       The example below triggers all pending timers immediately,
       causing them to execute without any delay.
      @@ -1941,7 +2253,7 @@ import assert from 'node:assert';
       import { test } from 'node:test';
       
       test('runAll functions following the given order', (context) => {
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout', 'Date'] });
         const results = [];
         setTimeout(() => results.push(1), 9999);
       
      @@ -1953,8 +2265,9 @@ test('runAll functions following the given order', (context) => {
         assert.deepStrictEqual(results, []);
       
         context.mock.timers.runAll();
      -
         assert.deepStrictEqual(results, [3, 2, 1]);
      +  // The Date object is also advanced to the furthest timer's time
      +  assert.strictEqual(Date.now(), 9999);
       });
       ```
       
      @@ -1963,7 +2276,7 @@ const assert = require('node:assert');
       const { test } = require('node:test');
       
       test('runAll functions following the given order', (context) => {
      -  context.mock.timers.enable(['setTimeout']);
      +  context.mock.timers.enable({ apis: ['setTimeout', 'Date'] });
         const results = [];
         setTimeout(() => results.push(1), 9999);
       
      @@ -1975,8 +2288,9 @@ test('runAll functions following the given order', (context) => {
         assert.deepStrictEqual(results, []);
       
         context.mock.timers.runAll();
      -
         assert.deepStrictEqual(results, [3, 2, 1]);
      +  // The Date object is also advanced to the furthest timer's time
      +  assert.strictEqual(Date.now(), 9999);
       });
       ```
       
      @@ -1985,6 +2299,92 @@ triggering timers in the context of timer mocking.
       It does not have any effect on real-time system
       clocks or actual timers outside of the mocking environment.
       
      +### `timers.setTime(milliseconds)`
      +
      +
      +
      +Sets the current Unix timestamp that will be used as reference for any mocked
      +`Date` objects.
      +
      +```mjs
      +import assert from 'node:assert';
      +import { test } from 'node:test';
      +
      +test('runAll functions following the given order', (context) => {
      +  const now = Date.now();
      +  const setTime = 1000;
      +  // Date.now is not mocked
      +  assert.deepStrictEqual(Date.now(), now);
      +
      +  context.mock.timers.enable({ apis: ['Date'] });
      +  context.mock.timers.setTime(setTime);
      +  // Date.now is now 1000
      +  assert.strictEqual(Date.now(), setTime);
      +});
      +```
      +
      +```cjs
      +const assert = require('node:assert');
      +const { test } = require('node:test');
      +
      +test('setTime replaces current time', (context) => {
      +  const now = Date.now();
      +  const setTime = 1000;
      +  // Date.now is not mocked
      +  assert.deepStrictEqual(Date.now(), now);
      +
      +  context.mock.timers.enable({ apis: ['Date'] });
      +  context.mock.timers.setTime(setTime);
      +  // Date.now is now 1000
      +  assert.strictEqual(Date.now(), setTime);
      +});
      +```
      +
      +#### Dates and Timers working together
      +
      +Dates and timer objects are dependent on each other. If you use `setTime()` to
      +pass the current time to the mocked `Date` object, the set timers with
      +`setTimeout` and `setInterval` will **not** be affected.
      +
      +However, the `tick` method **will** advanced the mocked `Date` object.
      +
      +```mjs
      +import assert from 'node:assert';
      +import { test } from 'node:test';
      +
      +test('runAll functions following the given order', (context) => {
      +  context.mock.timers.enable({ apis: ['setTimeout', 'Date'] });
      +  const results = [];
      +  setTimeout(() => results.push(1), 9999);
      +
      +  assert.deepStrictEqual(results, []);
      +  context.mock.timers.setTime(12000);
      +  assert.deepStrictEqual(results, []);
      +  // The date is advanced but the timers don't tick
      +  assert.strictEqual(Date.now(), 12000);
      +});
      +```
      +
      +```cjs
      +const assert = require('node:assert');
      +const { test } = require('node:test');
      +
      +test('runAll functions following the given order', (context) => {
      +  context.mock.timers.enable({ apis: ['setTimeout', 'Date'] });
      +  const results = [];
      +  setTimeout(() => results.push(1), 9999);
      +
      +  assert.deepStrictEqual(results, []);
      +  context.mock.timers.setTime(12000);
      +  assert.deepStrictEqual(results, []);
      +  // The date is advanced but the timers don't tick
      +  assert.strictEqual(Date.now(), 12000);
      +});
      +```
      +
       ## Class: `TestsStream`
       
       
       
       The WASI API provides an implementation of the [WebAssembly System Interface][]
      -specification. WASI gives sandboxed WebAssembly applications access to the
      -underlying operating system via a collection of POSIX-like functions.
      +specification. WASI gives WebAssembly applications access to the underlying
      +operating system via a collection of POSIX-like functions.
       
       ```mjs
       import { readFile } from 'node:fs/promises';
      @@ -20,7 +25,7 @@ const wasi = new WASI({
         args: argv,
         env,
         preopens: {
      -    '/sandbox': '/some/real/path/that/wasm/can/access',
      +    '/local': '/some/real/path/that/wasm/can/access',
         },
       });
       
      @@ -44,7 +49,7 @@ const wasi = new WASI({
         args: argv,
         env,
         preopens: {
      -    '/sandbox': '/some/real/path/that/wasm/can/access',
      +    '/local': '/some/real/path/that/wasm/can/access',
         },
       });
       
      @@ -97,6 +102,28 @@ Use [wabt](https://github.com/WebAssembly/wabt) to compile `.wat` to `.wasm`
       wat2wasm demo.wat
       ```
       
      +## Security
      +
      +
      +
      +WASI provides a capabilities-based model through which applications are provided
      +their own custom `env`, `preopens`, `stdin`, `stdout`, `stderr`, and `exit`
      +capabilities.
      +
      +**The current Node.js threat model does not provide secure sandboxing as is
      +present in some WASI runtimes.**
      +
      +While the capability features are supported, they do not form a security model
      +in Node.js. For example, the file system sandboxing can be escaped with various
      +techniques. The project is exploring whether these security guarantees could be
      +added in future.
      +
       ## Class: `WASI`
       
       
       
      -* `format` {string} One of either `'deflate'` or `'gzip'`.
      +* `format` {string} One of `'deflate'`, `'deflate-raw'`, or `'gzip'`.
       
       #### `compressionStream.readable`
       
      @@ -1454,9 +1458,13 @@ changes:
       
       
       
      -* `format` {string} One of either `'deflate'` or `'gzip'`.
      +* `format` {string} One of `'deflate'`, `'deflate-raw'`, or `'gzip'`.
       
       #### `decompressionStream.readable`
       
      diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css
      index d5c708be0bf3ef..674a218a882276 100644
      --- a/doc/api_assets/style.css
      +++ b/doc/api_assets/style.css
      @@ -136,7 +136,6 @@ a:link,
       a:active,
       a:visited {
         color: var(--color-links);
      -  text-decoration: none;
         border-radius: 2px;
         padding: 1px 3px;
       }
      diff --git a/doc/changelogs/CHANGELOG_V20.md b/doc/changelogs/CHANGELOG_V20.md
      index 10c032fa21e322..05d03d37f2a519 100644
      --- a/doc/changelogs/CHANGELOG_V20.md
      +++ b/doc/changelogs/CHANGELOG_V20.md
      @@ -468,7 +468,7 @@ node --import ./file-that-calls-register.js ./app.js
       
       Using `--import` ensures that the customization hooks are registered before any application code runs, even the entry point.
       
      -This feature was contributed by Izaak Schroeder in  and 
      +This feature was contributed by João Lenon and Jacob Smith in , Izaak Schroeder and Jacob Smith in  and 
       
       #### Module customization `load` hook can now support CommonJS
       
      diff --git a/doc/changelogs/CHANGELOG_V21.md b/doc/changelogs/CHANGELOG_V21.md
      index 7bb8fbb54a958a..83fb0ea4bd3a66 100644
      --- a/doc/changelogs/CHANGELOG_V21.md
      +++ b/doc/changelogs/CHANGELOG_V21.md
      @@ -8,6 +8,7 @@
       
       
       
      +21.2.0
      21.1.0
      21.0.0
      @@ -37,6 +38,172 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2023-11-14, Version 21.2.0 (Current), @targos + +### Notable Changes + +* \[[`e25c65ee2f`](https://github.com/nodejs/node/commit/e25c65ee2f)] - **doc**: add MrJithil to collaborators (Jithil P Ponnan) [#50666](https://github.com/nodejs/node/pull/50666) +* \[[`f2366573f9`](https://github.com/nodejs/node/commit/f2366573f9)] - **doc**: add Ethan-Arrowood as a collaborator (Ethan Arrowood) [#50393](https://github.com/nodejs/node/pull/50393) +* \[[`eac9cc5fcb`](https://github.com/nodejs/node/commit/eac9cc5fcb)] - **(SEMVER-MINOR)** **esm**: add import.meta.dirname and import.meta.filename (James Sumners) [#48740](https://github.com/nodejs/node/pull/48740) +* \[[`7e151114b1`](https://github.com/nodejs/node/commit/7e151114b1)] - **fs**: add stacktrace to fs/promises (翠 / green) [#49849](https://github.com/nodejs/node/pull/49849) +* \[[`6dbb280733`](https://github.com/nodejs/node/commit/6dbb280733)] - **(SEMVER-MINOR)** **lib**: add `--no-experimental-global-navigator` CLI flag (Antoine du Hamel) [#50562](https://github.com/nodejs/node/pull/50562) +* \[[`03c730b931`](https://github.com/nodejs/node/commit/03c730b931)] - **(SEMVER-MINOR)** **lib**: add navigator.language & navigator.languages (Aras Abbasi) [#50303](https://github.com/nodejs/node/pull/50303) +* \[[`f932f4c518`](https://github.com/nodejs/node/commit/f932f4c518)] - **(SEMVER-MINOR)** **lib**: add navigator.platform (Aras Abbasi) [#50385](https://github.com/nodejs/node/pull/50385) +* \[[`91f37d1dc3`](https://github.com/nodejs/node/commit/91f37d1dc3)] - **(SEMVER-MINOR)** **stream**: add support for `deflate-raw` format to webstreams compression (Damian Krzeminski) [#50097](https://github.com/nodejs/node/pull/50097) +* \[[`65850a67c7`](https://github.com/nodejs/node/commit/65850a67c7)] - **stream**: use Array for Readable buffer (Robert Nagy) [#50341](https://github.com/nodejs/node/pull/50341) +* \[[`e433fa54b7`](https://github.com/nodejs/node/commit/e433fa54b7)] - **stream**: optimize creation (Robert Nagy) [#50337](https://github.com/nodejs/node/pull/50337) +* \[[`c9b92bba58`](https://github.com/nodejs/node/commit/c9b92bba58)] - **(SEMVER-MINOR)** **test\_runner**: adds built in lcov reporter (Phil Nash) [#50018](https://github.com/nodejs/node/pull/50018) +* \[[`f6c496563e`](https://github.com/nodejs/node/commit/f6c496563e)] - **(SEMVER-MINOR)** **test\_runner**: add Date to the supported mock APIs (Lucas Santos) [#48638](https://github.com/nodejs/node/pull/48638) +* \[[`05e8b6ef20`](https://github.com/nodejs/node/commit/05e8b6ef20)] - **(SEMVER-MINOR)** **test\_runner, cli**: add --test-timeout flag (Shubham Pandey) [#50443](https://github.com/nodejs/node/pull/50443) + +### Commits + +* \[[`065d8844c5`](https://github.com/nodejs/node/commit/065d8844c5)] - **benchmark**: change iterations in benchmark/es/string-concatenations.js (Liu Jia) [#50585](https://github.com/nodejs/node/pull/50585) +* \[[`3f37ed9f0f`](https://github.com/nodejs/node/commit/3f37ed9f0f)] - **benchmark**: add benchmarks for encodings (Aras Abbasi) [#50348](https://github.com/nodejs/node/pull/50348) +* \[[`c4b6e1e9e4`](https://github.com/nodejs/node/commit/c4b6e1e9e4)] - **benchmark**: add more cases to Readable.from (Raz Luvaton) [#50351](https://github.com/nodejs/node/pull/50351) +* \[[`2006b57a9a`](https://github.com/nodejs/node/commit/2006b57a9a)] - **benchmark**: skip test-benchmark-os on IBMi (Michael Dawson) [#50286](https://github.com/nodejs/node/pull/50286) +* \[[`800206b04a`](https://github.com/nodejs/node/commit/800206b04a)] - **benchmark**: move permission-fs-read to permission-processhas-fs-read (Aki Hasegawa-Johnson) [#49770](https://github.com/nodejs/node/pull/49770) +* \[[`3bedaf9405`](https://github.com/nodejs/node/commit/3bedaf9405)] - **buffer**: improve Buffer.equals performance (kylo5aby) [#50621](https://github.com/nodejs/node/pull/50621) +* \[[`b9f3613908`](https://github.com/nodejs/node/commit/b9f3613908)] - **build**: add GN build files (Cheng Zhao) [#47637](https://github.com/nodejs/node/pull/47637) +* \[[`22eb0257d8`](https://github.com/nodejs/node/commit/22eb0257d8)] - **build**: fix build with Python 3.12 (Luigi Pinca) [#50582](https://github.com/nodejs/node/pull/50582) +* \[[`642c057299`](https://github.com/nodejs/node/commit/642c057299)] - **build**: support Python 3.12 (Shi Pujin) [#50209](https://github.com/nodejs/node/pull/50209) +* \[[`54ebfc10cb`](https://github.com/nodejs/node/commit/54ebfc10cb)] - **build**: fix building when there is only python3 (Cheng Zhao) [#48462](https://github.com/nodejs/node/pull/48462) +* \[[`5073a3e16d`](https://github.com/nodejs/node/commit/5073a3e16d)] - **deps**: update base64 to 0.5.1 (Node.js GitHub Bot) [#50629](https://github.com/nodejs/node/pull/50629) +* \[[`f70a59f4fa`](https://github.com/nodejs/node/commit/f70a59f4fa)] - **deps**: update corepack to 0.23.0 (Node.js GitHub Bot) [#50563](https://github.com/nodejs/node/pull/50563) +* \[[`78b3432be5`](https://github.com/nodejs/node/commit/78b3432be5)] - **deps**: V8: cherry-pick 13192d6e10fa (Levi Zim) [#50552](https://github.com/nodejs/node/pull/50552) +* \[[`93e3cc3907`](https://github.com/nodejs/node/commit/93e3cc3907)] - **deps**: upgrade npm to 10.2.3 (npm team) [#50531](https://github.com/nodejs/node/pull/50531) +* \[[`189e5e5326`](https://github.com/nodejs/node/commit/189e5e5326)] - **deps**: update nghttp2 to 1.58.0 (Node.js GitHub Bot) [#50441](https://github.com/nodejs/node/pull/50441) +* \[[`57bfe53095`](https://github.com/nodejs/node/commit/57bfe53095)] - **deps**: update zlib to 1.2.13.1-motley-dfc48fc (Node.js GitHub Bot) [#50456](https://github.com/nodejs/node/pull/50456) +* \[[`1e6922e67a`](https://github.com/nodejs/node/commit/1e6922e67a)] - **deps**: patch V8 to 11.8.172.17 (Michaël Zasso) [#50292](https://github.com/nodejs/node/pull/50292) +* \[[`28453ff966`](https://github.com/nodejs/node/commit/28453ff966)] - **deps**: update acorn to 8.11.2 (Node.js GitHub Bot) [#50460](https://github.com/nodejs/node/pull/50460) +* \[[`0a793a2566`](https://github.com/nodejs/node/commit/0a793a2566)] - **deps**: update undici to 5.27.0 (Node.js GitHub Bot) [#50463](https://github.com/nodejs/node/pull/50463) +* \[[`a90c6d669c`](https://github.com/nodejs/node/commit/a90c6d669c)] - **deps**: update archs files for openssl-3.0.12+quic1 (Node.js GitHub Bot) [#50411](https://github.com/nodejs/node/pull/50411) +* \[[`a64217c116`](https://github.com/nodejs/node/commit/a64217c116)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.12+quic1 (Node.js GitHub Bot) [#50411](https://github.com/nodejs/node/pull/50411) +* \[[`62515e118c`](https://github.com/nodejs/node/commit/62515e118c)] - **deps**: update llhttp to 9.1.3 (Node.js GitHub Bot) [#50080](https://github.com/nodejs/node/pull/50080) +* \[[`d6f49c7bdc`](https://github.com/nodejs/node/commit/d6f49c7bdc)] - **deps**: update googletest to 116b7e5 (Node.js GitHub Bot) [#50324](https://github.com/nodejs/node/pull/50324) +* \[[`e25c65ee2f`](https://github.com/nodejs/node/commit/e25c65ee2f)] - **doc**: add MrJithil to collaborators (Jithil P Ponnan) [#50666](https://github.com/nodejs/node/pull/50666) +* \[[`8be0efd68f`](https://github.com/nodejs/node/commit/8be0efd68f)] - **doc**: fix typo in fs.md (fwio) [#50570](https://github.com/nodejs/node/pull/50570) +* \[[`a656bf2dee`](https://github.com/nodejs/node/commit/a656bf2dee)] - **doc**: add missing description of argument in `subtle.encrypt` (Deokjin Kim) [#50578](https://github.com/nodejs/node/pull/50578) +* \[[`4cbe44ed6f`](https://github.com/nodejs/node/commit/4cbe44ed6f)] - **doc**: update pm documentation to include resource (Ranieri Innocenti Spada) [#50601](https://github.com/nodejs/node/pull/50601) +* \[[`479c1ea9fe`](https://github.com/nodejs/node/commit/479c1ea9fe)] - **doc**: correct attribution in v20.6.0 changelog (Jacob Smith) [#50564](https://github.com/nodejs/node/pull/50564) +* \[[`1668798902`](https://github.com/nodejs/node/commit/1668798902)] - **doc**: update to align `console.table` row to the left (Jungku Lee) [#50553](https://github.com/nodejs/node/pull/50553) +* \[[`886fc48f87`](https://github.com/nodejs/node/commit/886fc48f87)] - **doc**: underline links (Rich Trott) [#50481](https://github.com/nodejs/node/pull/50481) +* \[[`98cfa3a72b`](https://github.com/nodejs/node/commit/98cfa3a72b)] - **doc**: recommend supported Python versions (Luigi Pinca) [#50407](https://github.com/nodejs/node/pull/50407) +* \[[`921e36ece9`](https://github.com/nodejs/node/commit/921e36ece9)] - **doc**: remove duplicate word (Gerhard Stöbich) [#50475](https://github.com/nodejs/node/pull/50475) +* \[[`43074ee21c`](https://github.com/nodejs/node/commit/43074ee21c)] - **doc**: fix typo in `webstreams.md` (André Santos) [#50426](https://github.com/nodejs/node/pull/50426) +* \[[`0b11bf16e8`](https://github.com/nodejs/node/commit/0b11bf16e8)] - **doc**: update notable changes in v21.1.0 (Joyee Cheung) [#50388](https://github.com/nodejs/node/pull/50388) +* \[[`d62e81229c`](https://github.com/nodejs/node/commit/d62e81229c)] - **doc**: add information about Node-API versions >=9 (Michael Dawson) [#50168](https://github.com/nodejs/node/pull/50168) +* \[[`f2366573f9`](https://github.com/nodejs/node/commit/f2366573f9)] - **doc**: add Ethan-Arrowood as a collaborator (Ethan Arrowood) [#50393](https://github.com/nodejs/node/pull/50393) +* \[[`d9f92bc042`](https://github.com/nodejs/node/commit/d9f92bc042)] - **doc**: fix TOC in `releases.md` (Bryce Seefieldt) [#50372](https://github.com/nodejs/node/pull/50372) +* \[[`14e3675b13`](https://github.com/nodejs/node/commit/14e3675b13)] - **errors**: improve hideStackFrames (Aras Abbasi) [#49990](https://github.com/nodejs/node/pull/49990) +* \[[`09c02ed26b`](https://github.com/nodejs/node/commit/09c02ed26b)] - **esm**: bypass CJS loader in default load under `--default-type=module` (Antoine du Hamel) [#50004](https://github.com/nodejs/node/pull/50004) +* \[[`eac9cc5fcb`](https://github.com/nodejs/node/commit/eac9cc5fcb)] - **(SEMVER-MINOR)** **esm**: add import.meta.dirname and import.meta.filename (James Sumners) [#48740](https://github.com/nodejs/node/pull/48740) +* \[[`44f19ce394`](https://github.com/nodejs/node/commit/44f19ce394)] - **fs**: update param in jsdoc for `readdir` (Jungku Lee) [#50448](https://github.com/nodejs/node/pull/50448) +* \[[`7e151114b1`](https://github.com/nodejs/node/commit/7e151114b1)] - **fs**: add stacktrace to fs/promises (翠 / green) [#49849](https://github.com/nodejs/node/pull/49849) +* \[[`3e7226a12f`](https://github.com/nodejs/node/commit/3e7226a12f)] - **fs**: do not throw error on cpSync internals (Yagiz Nizipli) [#50185](https://github.com/nodejs/node/pull/50185) +* \[[`67cbe1b80f`](https://github.com/nodejs/node/commit/67cbe1b80f)] - **fs,url**: move `FromNamespacedPath` to `node_url` (Yagiz Nizipli) [#50090](https://github.com/nodejs/node/pull/50090) +* \[[`b4db32e9cb`](https://github.com/nodejs/node/commit/b4db32e9cb)] - **fs,url**: refactor `FileURLToPath` method (Yagiz Nizipli) [#50090](https://github.com/nodejs/node/pull/50090) +* \[[`4345ee2ede`](https://github.com/nodejs/node/commit/4345ee2ede)] - **fs,url**: move `FileURLToPath` to node\_url (Yagiz Nizipli) [#50090](https://github.com/nodejs/node/pull/50090) +* \[[`ed293fc520`](https://github.com/nodejs/node/commit/ed293fc520)] - **lib**: remove deprecated string methods (Jithil P Ponnan) [#50592](https://github.com/nodejs/node/pull/50592) +* \[[`363bc46b92`](https://github.com/nodejs/node/commit/363bc46b92)] - **lib**: fix assert shows diff messages in ESM and CJS (Jithil P Ponnan) [#50634](https://github.com/nodejs/node/pull/50634) +* \[[`5fa40bea9e`](https://github.com/nodejs/node/commit/5fa40bea9e)] - **lib**: make event static properties non writable and configurable (Muthukumar) [#50425](https://github.com/nodejs/node/pull/50425) +* \[[`6dbb280733`](https://github.com/nodejs/node/commit/6dbb280733)] - **(SEMVER-MINOR)** **lib**: add `--no-experimental-global-navigator` CLI flag (Antoine du Hamel) [#50562](https://github.com/nodejs/node/pull/50562) +* \[[`03c730b931`](https://github.com/nodejs/node/commit/03c730b931)] - **(SEMVER-MINOR)** **lib**: add navigator.language & navigator.languages (Aras Abbasi) [#50303](https://github.com/nodejs/node/pull/50303) +* \[[`f932f4c518`](https://github.com/nodejs/node/commit/f932f4c518)] - **(SEMVER-MINOR)** **lib**: add navigator.platform (Aras Abbasi) [#50385](https://github.com/nodejs/node/pull/50385) +* \[[`c9bd0c5000`](https://github.com/nodejs/node/commit/c9bd0c5000)] - **lib**: use primordials for navigator.userAgent (Aras Abbasi) [#50467](https://github.com/nodejs/node/pull/50467) +* \[[`6dabe7cf60`](https://github.com/nodejs/node/commit/6dabe7cf60)] - **lib**: avoid memory allocation on nodeprecation flag (Vinicius Lourenço) [#50231](https://github.com/nodejs/node/pull/50231) +* \[[`3615a61ac8`](https://github.com/nodejs/node/commit/3615a61ac8)] - **lib**: align console.table row to the left (Jithil P Ponnan) [#50135](https://github.com/nodejs/node/pull/50135) +* \[[`9e7131ffda`](https://github.com/nodejs/node/commit/9e7131ffda)] - **meta**: add web-standards as WPTs owner (Filip Skokan) [#50636](https://github.com/nodejs/node/pull/50636) +* \[[`dedfb5ab26`](https://github.com/nodejs/node/commit/dedfb5ab26)] - **meta**: bump github/codeql-action from 2.21.9 to 2.22.5 (dependabot\[bot]) [#50513](https://github.com/nodejs/node/pull/50513) +* \[[`4e83036d89`](https://github.com/nodejs/node/commit/4e83036d89)] - **meta**: bump step-security/harden-runner from 2.5.1 to 2.6.0 (dependabot\[bot]) [#50512](https://github.com/nodejs/node/pull/50512) +* \[[`4bf9cffa95`](https://github.com/nodejs/node/commit/4bf9cffa95)] - **meta**: bump ossf/scorecard-action from 2.2.0 to 2.3.1 (dependabot\[bot]) [#50509](https://github.com/nodejs/node/pull/50509) +* \[[`49cce7634b`](https://github.com/nodejs/node/commit/49cce7634b)] - **meta**: fix spacing in collaborator list (Antoine du Hamel) [#50641](https://github.com/nodejs/node/pull/50641) +* \[[`12e54e360c`](https://github.com/nodejs/node/commit/12e54e360c)] - **meta**: bump actions/setup-python from 4.7.0 to 4.7.1 (dependabot\[bot]) [#50510](https://github.com/nodejs/node/pull/50510) +* \[[`85a527e6e0`](https://github.com/nodejs/node/commit/85a527e6e0)] - **meta**: add crypto as crypto and webcrypto docs owner (Filip Skokan) [#50579](https://github.com/nodejs/node/pull/50579) +* \[[`ff9b3bdf34`](https://github.com/nodejs/node/commit/ff9b3bdf34)] - **meta**: bump actions/setup-node from 3.8.1 to 4.0.0 (dependabot\[bot]) [#50514](https://github.com/nodejs/node/pull/50514) +* \[[`840303078f`](https://github.com/nodejs/node/commit/840303078f)] - **meta**: bump actions/checkout from 4.1.0 to 4.1.1 (dependabot\[bot]) [#50511](https://github.com/nodejs/node/pull/50511) +* \[[`c9e6e4e739`](https://github.com/nodejs/node/commit/c9e6e4e739)] - **meta**: add to mailmap (Ethan Arrowood) [#50491](https://github.com/nodejs/node/pull/50491) +* \[[`d94010b745`](https://github.com/nodejs/node/commit/d94010b745)] - **meta**: add web-standards as web api visibility owner (Chengzhong Wu) [#50418](https://github.com/nodejs/node/pull/50418) +* \[[`e008336b17`](https://github.com/nodejs/node/commit/e008336b17)] - **meta**: mention other notable changes section (Rafael Gonzaga) [#50309](https://github.com/nodejs/node/pull/50309) +* \[[`3606a0a848`](https://github.com/nodejs/node/commit/3606a0a848)] - **module**: execute `--import` sequentially (Antoine du Hamel) [#50474](https://github.com/nodejs/node/pull/50474) +* \[[`667d245e75`](https://github.com/nodejs/node/commit/667d245e75)] - **module**: add application/json in accept header when fetching json module (Marco Ippolito) [#50119](https://github.com/nodejs/node/pull/50119) +* \[[`905ca00cbc`](https://github.com/nodejs/node/commit/905ca00cbc)] - **perf\_hooks**: reduce overhead of createHistogram (Vinícius Lourenço) [#50074](https://github.com/nodejs/node/pull/50074) +* \[[`7c35055c8e`](https://github.com/nodejs/node/commit/7c35055c8e)] - **permission**: address coverity warning (Michael Dawson) [#50215](https://github.com/nodejs/node/pull/50215) +* \[[`b740324f7c`](https://github.com/nodejs/node/commit/b740324f7c)] - **src**: use v8::Isolate::TryGetCurrent() in DumpJavaScriptBacktrace() (Joyee Cheung) [#50518](https://github.com/nodejs/node/pull/50518) +* \[[`6e20e083dd`](https://github.com/nodejs/node/commit/6e20e083dd)] - **src**: print more information in C++ assertions (Joyee Cheung) [#50242](https://github.com/nodejs/node/pull/50242) +* \[[`9f55dfc266`](https://github.com/nodejs/node/commit/9f55dfc266)] - **src**: hide node::credentials::HasOnly outside unit (Tobias Nießen) [#50450](https://github.com/nodejs/node/pull/50450) +* \[[`4eb74a2c24`](https://github.com/nodejs/node/commit/4eb74a2c24)] - **src**: readiterable entries may be empty (Matthew Aitken) [#50398](https://github.com/nodejs/node/pull/50398) +* \[[`5b453d45d6`](https://github.com/nodejs/node/commit/5b453d45d6)] - **src**: implement structuredClone in native (Joyee Cheung) [#50330](https://github.com/nodejs/node/pull/50330) +* \[[`f1d79b3cbb`](https://github.com/nodejs/node/commit/f1d79b3cbb)] - **src**: use find instead of char-by-char in FromFilePath() (Daniel Lemire) [#50288](https://github.com/nodejs/node/pull/50288) +* \[[`541bdf1e92`](https://github.com/nodejs/node/commit/541bdf1e92)] - **src**: add commit hash shorthand in zlib version (Jithil P Ponnan) [#50158](https://github.com/nodejs/node/pull/50158) +* \[[`91f37d1dc3`](https://github.com/nodejs/node/commit/91f37d1dc3)] - **(SEMVER-MINOR)** **stream**: add support for `deflate-raw` format to webstreams compression (Damian Krzeminski) [#50097](https://github.com/nodejs/node/pull/50097) +* \[[`360f5d9088`](https://github.com/nodejs/node/commit/360f5d9088)] - **stream**: fix Writable.destroy performance regression (Robert Nagy) [#50478](https://github.com/nodejs/node/pull/50478) +* \[[`0116ae7601`](https://github.com/nodejs/node/commit/0116ae7601)] - **stream**: pre-allocate \_events (Robert Nagy) [#50428](https://github.com/nodejs/node/pull/50428) +* \[[`2c0d88e83e`](https://github.com/nodejs/node/commit/2c0d88e83e)] - **stream**: remove no longer relevant comment (Robert Nagy) [#50446](https://github.com/nodejs/node/pull/50446) +* \[[`03c4ff760d`](https://github.com/nodejs/node/commit/03c4ff760d)] - **stream**: use bit fields for construct/destroy (Robert Nagy) [#50408](https://github.com/nodejs/node/pull/50408) +* \[[`e20b272d46`](https://github.com/nodejs/node/commit/e20b272d46)] - **stream**: improve from perf (Raz Luvaton) [#50359](https://github.com/nodejs/node/pull/50359) +* \[[`893024cb7c`](https://github.com/nodejs/node/commit/893024cb7c)] - **stream**: avoid calls to listenerCount (Robert Nagy) [#50357](https://github.com/nodejs/node/pull/50357) +* \[[`586ec48e5f`](https://github.com/nodejs/node/commit/586ec48e5f)] - **stream**: readable use bitmap accessors (Robert Nagy) [#50350](https://github.com/nodejs/node/pull/50350) +* \[[`65850a67c7`](https://github.com/nodejs/node/commit/65850a67c7)] - **stream**: use Array for Readable buffer (Robert Nagy) [#50341](https://github.com/nodejs/node/pull/50341) +* \[[`e433fa54b7`](https://github.com/nodejs/node/commit/e433fa54b7)] - **stream**: optimize creation (Robert Nagy) [#50337](https://github.com/nodejs/node/pull/50337) +* \[[`f56ae67c7b`](https://github.com/nodejs/node/commit/f56ae67c7b)] - **stream**: refactor writable \_write (Robert Nagy) [#50198](https://github.com/nodejs/node/pull/50198) +* \[[`766bd9c8cc`](https://github.com/nodejs/node/commit/766bd9c8cc)] - **stream**: avoid getter for defaultEncoding (Robert Nagy) [#50203](https://github.com/nodejs/node/pull/50203) +* \[[`8be718a0bd`](https://github.com/nodejs/node/commit/8be718a0bd)] - **test**: use destructuring for accessing setting values (Honza Jedlička) [#50609](https://github.com/nodejs/node/pull/50609) +* \[[`b701567a46`](https://github.com/nodejs/node/commit/b701567a46)] - **test**: replace forEach() with for .. of (Evgenia Blajer) [#50605](https://github.com/nodejs/node/pull/50605) +* \[[`e978fd4375`](https://github.com/nodejs/node/commit/e978fd4375)] - **test**: replace forEach() with for ... of in test-readline-keys.js (William Liang) [#50604](https://github.com/nodejs/node/pull/50604) +* \[[`bc92be4ca9`](https://github.com/nodejs/node/commit/bc92be4ca9)] - **test**: replace forEach() with for ... of in test-http2-single-headers.js (spiritualized) [#50606](https://github.com/nodejs/node/pull/50606) +* \[[`864cd32003`](https://github.com/nodejs/node/commit/864cd32003)] - **test**: replace forEach with for of (john-mcinall) [#50602](https://github.com/nodejs/node/pull/50602) +* \[[`2fdcf5c3da`](https://github.com/nodejs/node/commit/2fdcf5c3da)] - **test**: remove unused file (James Sumners) [#50528](https://github.com/nodejs/node/pull/50528) +* \[[`2eeda3f09b`](https://github.com/nodejs/node/commit/2eeda3f09b)] - **test**: replace forEach with for of (Kevin Kühnemund) [#50597](https://github.com/nodejs/node/pull/50597) +* \[[`1d52a57cba`](https://github.com/nodejs/node/commit/1d52a57cba)] - **test**: replace forEach with for of (CorrWu) [#49785](https://github.com/nodejs/node/pull/49785) +* \[[`52b517f4ec`](https://github.com/nodejs/node/commit/52b517f4ec)] - **test**: replace forEach with for \[...] of (Gabriel Bota) [#50615](https://github.com/nodejs/node/pull/50615) +* \[[`931e1e756a`](https://github.com/nodejs/node/commit/931e1e756a)] - **test**: relax version check with shared OpenSSL (Luigi Pinca) [#50505](https://github.com/nodejs/node/pull/50505) +* \[[`6ed8fbf612`](https://github.com/nodejs/node/commit/6ed8fbf612)] - **test**: add WPT report test duration (Filip Skokan) [#50574](https://github.com/nodejs/node/pull/50574) +* \[[`7c7be517b4`](https://github.com/nodejs/node/commit/7c7be517b4)] - **test**: replace forEach() with for ... of loop in test-global.js (Kajol) [#49772](https://github.com/nodejs/node/pull/49772) +* \[[`de46a346ab`](https://github.com/nodejs/node/commit/de46a346ab)] - **test**: skip test-diagnostics-channel-memory-leak.js (Joyee Cheung) [#50327](https://github.com/nodejs/node/pull/50327) +* \[[`8487cac24c`](https://github.com/nodejs/node/commit/8487cac24c)] - **test**: improve `UV_THREADPOOL_SIZE` tests on `.env` (Yagiz Nizipli) [#49213](https://github.com/nodejs/node/pull/49213) +* \[[`ee751102a4`](https://github.com/nodejs/node/commit/ee751102a4)] - **test**: recognize wpt completion error (Chengzhong Wu) [#50429](https://github.com/nodejs/node/pull/50429) +* \[[`7e3eb02252`](https://github.com/nodejs/node/commit/7e3eb02252)] - **test**: report error wpt test results (Chengzhong Wu) [#50429](https://github.com/nodejs/node/pull/50429) +* \[[`90833a89a9`](https://github.com/nodejs/node/commit/90833a89a9)] - **test**: replace forEach() with for...of (Ram) [#49794](https://github.com/nodejs/node/pull/49794) +* \[[`f40435d143`](https://github.com/nodejs/node/commit/f40435d143)] - **test**: replace forEach() with for...of in test-trace-events-http (Chand) [#49795](https://github.com/nodejs/node/pull/49795) +* \[[`f70a2dd70d`](https://github.com/nodejs/node/commit/f70a2dd70d)] - **test**: fix testsuite against zlib version 1.3 (Dominique Leuenberger) [#50364](https://github.com/nodejs/node/pull/50364) +* \[[`d24de129a7`](https://github.com/nodejs/node/commit/d24de129a7)] - **test**: replace forEach with for...of in test-fs-realpath-buffer-encoding (Niya Shiyas) [#49804](https://github.com/nodejs/node/pull/49804) +* \[[`2b6d283265`](https://github.com/nodejs/node/commit/2b6d283265)] - **test**: fix timeout of test-cpu-prof-dir-worker.js in LoongArch devices (Shi Pujin) [#50363](https://github.com/nodejs/node/pull/50363) +* \[[`bd5b61fa6c`](https://github.com/nodejs/node/commit/bd5b61fa6c)] - **test**: fix crypto-dh error message for OpenSSL 3.x (Kerem Kat) [#50395](https://github.com/nodejs/node/pull/50395) +* \[[`aa86c78a9c`](https://github.com/nodejs/node/commit/aa86c78a9c)] - **test**: fix vm assertion actual and expected order (Chengzhong Wu) [#50371](https://github.com/nodejs/node/pull/50371) +* \[[`ab9cad8107`](https://github.com/nodejs/node/commit/ab9cad8107)] - **test**: v8: Add test-linux-perf-logger test suite (Luke Albao) [#50352](https://github.com/nodejs/node/pull/50352) +* \[[`31cd05c39f`](https://github.com/nodejs/node/commit/31cd05c39f)] - **test**: ensure never settling promises are detected (Antoine du Hamel) [#50318](https://github.com/nodejs/node/pull/50318) +* \[[`ad316419dd`](https://github.com/nodejs/node/commit/ad316419dd)] - **test**: avoid v8 deadcode on performance function (Vinícius Lourenço) [#50074](https://github.com/nodejs/node/pull/50074) +* \[[`01bed64cbb`](https://github.com/nodejs/node/commit/01bed64cbb)] - **test\_runner**: pass abortSignal to test files (Moshe Atlow) [#50630](https://github.com/nodejs/node/pull/50630) +* \[[`ae4a7ba991`](https://github.com/nodejs/node/commit/ae4a7ba991)] - **test\_runner**: replace forEach with for of (Tom Haddad) [#50595](https://github.com/nodejs/node/pull/50595) +* \[[`913e4b9173`](https://github.com/nodejs/node/commit/913e4b9173)] - **test\_runner**: output errors of suites (Moshe Atlow) [#50361](https://github.com/nodejs/node/pull/50361) +* \[[`c9b92bba58`](https://github.com/nodejs/node/commit/c9b92bba58)] - **(SEMVER-MINOR)** **test\_runner**: adds built in lcov reporter (Phil Nash) [#50018](https://github.com/nodejs/node/pull/50018) +* \[[`e2c3b015cd`](https://github.com/nodejs/node/commit/e2c3b015cd)] - **test\_runner**: test return value of mocked promisified timers (Mika Fischer) [#50331](https://github.com/nodejs/node/pull/50331) +* \[[`f6c496563e`](https://github.com/nodejs/node/commit/f6c496563e)] - **(SEMVER-MINOR)** **test\_runner**: add Date to the supported mock APIs (Lucas Santos) [#48638](https://github.com/nodejs/node/pull/48638) +* \[[`05e8b6ef20`](https://github.com/nodejs/node/commit/05e8b6ef20)] - **(SEMVER-MINOR)** **test\_runner, cli**: add --test-timeout flag (Shubham Pandey) [#50443](https://github.com/nodejs/node/pull/50443) +* \[[`b71c8c447e`](https://github.com/nodejs/node/commit/b71c8c447e)] - **tls**: use `validateFunction` for `options.SNICallback` (Deokjin Kim) [#50530](https://github.com/nodejs/node/pull/50530) +* \[[`5fcd67a8ea`](https://github.com/nodejs/node/commit/5fcd67a8ea)] - **tools**: add macOS notarization stapler (Ulises Gascón) [#50625](https://github.com/nodejs/node/pull/50625) +* \[[`253e206fe9`](https://github.com/nodejs/node/commit/253e206fe9)] - **tools**: update eslint to 8.53.0 (Node.js GitHub Bot) [#50559](https://github.com/nodejs/node/pull/50559) +* \[[`f5e1c95447`](https://github.com/nodejs/node/commit/f5e1c95447)] - **tools**: update lint-md-dependencies to rollup\@4.3.0 (Node.js GitHub Bot) [#50556](https://github.com/nodejs/node/pull/50556) +* \[[`257e22073e`](https://github.com/nodejs/node/commit/257e22073e)] - **tools**: compare ICU checksums before file changes (Michaël Zasso) [#50522](https://github.com/nodejs/node/pull/50522) +* \[[`aa8feea5f1`](https://github.com/nodejs/node/commit/aa8feea5f1)] - **tools**: improve update acorn-walk script (Marco Ippolito) [#50473](https://github.com/nodejs/node/pull/50473) +* \[[`c0206bf44c`](https://github.com/nodejs/node/commit/c0206bf44c)] - **tools**: update lint-md-dependencies to rollup\@4.2.0 (Node.js GitHub Bot) [#50496](https://github.com/nodejs/node/pull/50496) +* \[[`02dec645f3`](https://github.com/nodejs/node/commit/02dec645f3)] - **tools**: improve macOS notarization process output readability (Ulises Gascón) [#50389](https://github.com/nodejs/node/pull/50389) +* \[[`52e7b6d29a`](https://github.com/nodejs/node/commit/52e7b6d29a)] - **tools**: update gyp-next to v0.16.1 (Michaël Zasso) [#50380](https://github.com/nodejs/node/pull/50380) +* \[[`9fc29c909b`](https://github.com/nodejs/node/commit/9fc29c909b)] - **tools**: skip ruff on tools/gyp (Michaël Zasso) [#50380](https://github.com/nodejs/node/pull/50380) +* \[[`ec7005abff`](https://github.com/nodejs/node/commit/ec7005abff)] - **tools**: update lint-md-dependencies to rollup\@4.1.5 unified\@11.0.4 (Node.js GitHub Bot) [#50461](https://github.com/nodejs/node/pull/50461) +* \[[`aed590035f`](https://github.com/nodejs/node/commit/aed590035f)] - **tools**: remove unused `version` function (Ulises Gascón) [#50390](https://github.com/nodejs/node/pull/50390) +* \[[`f7590481f2`](https://github.com/nodejs/node/commit/f7590481f2)] - **tools**: avoid npm install in deps installation (Marco Ippolito) [#50413](https://github.com/nodejs/node/pull/50413) +* \[[`92d64035c6`](https://github.com/nodejs/node/commit/92d64035c6)] - _**Revert**_ "**tools**: update doc dependencies" (Richard Lau) [#50414](https://github.com/nodejs/node/pull/50414) +* \[[`90c9dd3e0e`](https://github.com/nodejs/node/commit/90c9dd3e0e)] - **tools**: update doc dependencies (Node.js GitHub Bot) [#49988](https://github.com/nodejs/node/pull/49988) +* \[[`f210915681`](https://github.com/nodejs/node/commit/f210915681)] - **tools**: run coverage CI only on relevant files (Antoine du Hamel) [#50349](https://github.com/nodejs/node/pull/50349) +* \[[`5ccdda4004`](https://github.com/nodejs/node/commit/5ccdda4004)] - **tools**: update eslint to 8.52.0 (Node.js GitHub Bot) [#50326](https://github.com/nodejs/node/pull/50326) +* \[[`bd4634874c`](https://github.com/nodejs/node/commit/bd4634874c)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#50190](https://github.com/nodejs/node/pull/50190) +* \[[`773cfa59bb`](https://github.com/nodejs/node/commit/773cfa59bb)] - **vm**: allow dynamic import with a referrer realm (Chengzhong Wu) [#50360](https://github.com/nodejs/node/pull/50360) +* \[[`2f86d50e70`](https://github.com/nodejs/node/commit/2f86d50e70)] - **wasi**: document security sandboxing status (Guy Bedford) [#50396](https://github.com/nodejs/node/pull/50396) + ## 2023-10-24, Version 21.1.0 (Current), @targos @@ -60,6 +227,22 @@ such as `.mjs` or `.cjs`, will opt out of detection. Contributed by Geoffrey Booth in [#50096](https://github.com/nodejs/node/pull/50096). +### vm: fix V8 compilation cache support for vm.Script + +Previously repeated compilation of the same source code using `vm.Script` +stopped hitting the V8 compilation cache after v16.x when support for +`importModuleDynamically` was added to `vm.Script`, resulting in a performance +regression that blocked users (in particular Jest users) from upgrading from +v16.x. + +The recent fixes landed in v21.1.0 allow the compilation cache to be hit again +for `vm.Script` when `--experimental-vm-modules` is not used even in the +presence of the `importModuleDynamically` option, so that users affected by the +performance regression can now upgrade. Ongoing work is also being done to +enable compilation cache support for `vm.CompileFunction`. + +Contributed by Joyee Cheung in [#50137](https://github.com/nodejs/node/pull/50137). + #### Other Notable Changes * \[[`3729e33358`](https://github.com/nodejs/node/commit/3729e33358)] - **doc**: add H4ad to collaborators (Vinícius Lourenço) [#50217](https://github.com/nodejs/node/pull/50217) @@ -67,9 +250,6 @@ Contributed by Geoffrey Booth in [#50096](https://github.com/nodejs/node/pull/50 * \[[`5a52c518ef`](https://github.com/nodejs/node/commit/5a52c518ef)] - **(SEMVER-MINOR)** **lib**: add `navigator.userAgent` (Yagiz Nizipli) [#50200](https://github.com/nodejs/node/pull/50200) * \[[`789372a072`](https://github.com/nodejs/node/commit/789372a072)] - **(SEMVER-MINOR)** **stream**: allow pass stream class to `stream.compose` (Alex Yang) [#50187](https://github.com/nodejs/node/pull/50187) * \[[`f3a9ea0bc4`](https://github.com/nodejs/node/commit/f3a9ea0bc4)] - **stream**: improve performance of readable stream reads (Raz Luvaton) [#50173](https://github.com/nodejs/node/pull/50173) -* \[[`dda33c2bf1`](https://github.com/nodejs/node/commit/dda33c2bf1)] - **vm**: reject in importModuleDynamically without --experimental-vm-modules (Joyee Cheung) [#50137](https://github.com/nodejs/node/pull/50137) -* \[[`3999362c59`](https://github.com/nodejs/node/commit/3999362c59)] - **vm**: use internal versions of compileFunction and Script (Joyee Cheung) [#50137](https://github.com/nodejs/node/pull/50137) -* \[[`a54179f0e0`](https://github.com/nodejs/node/commit/a54179f0e0)] - **vm**: unify host-defined option generation in vm.compileFunction (Joyee Cheung) [#50137](https://github.com/nodejs/node/pull/50137) ### Commits diff --git a/doc/contributing/maintaining/maintaining-dependencies.md b/doc/contributing/maintaining/maintaining-dependencies.md index c048c58c8ff1cd..dc78a9dd2b533c 100644 --- a/doc/contributing/maintaining/maintaining-dependencies.md +++ b/doc/contributing/maintaining/maintaining-dependencies.md @@ -8,30 +8,30 @@ directories to create the Node.js binaries. All dependencies are located within the `deps` directory. This a list of all the dependencies: -* [acorn 8.10.0][] +* [acorn 8.11.2][] * [ada 2.7.2][] -* [base64 0.5.0][] +* [base64 0.5.1][] * [brotli 1.0.9][] * [c-ares 1.20.1][] * [cjs-module-lexer 1.2.2][] * [corepack][] -* [googletest 2dd1c13][] +* [googletest 116b7e5][] * [histogram 0.11.8][] * [icu-small 73.2][] * [libuv 1.46.0][] -* [llhttp 9.1.2][] +* [llhttp 9.1.3][] * [minimatch 9.0.3][] -* [nghttp2 1.57.0][] +* [nghttp2 1.58.0][] * [nghttp3 0.7.0][] * [ngtcp2 0.8.1][] * [npm 9.6.7][] * [openssl 3.0.8][] * [postject 1.0.0-alpha.6][] * [simdutf 3.2.18][] -* [undici 5.26.4][] +* [undici 5.27.0][] * [uvwasi 0.0.19][] * [V8 11.8.172.12][] -* [zlib 1.2.13.1-motley-fef5869][] +* [zlib 1.2.13.1-motley-dfc48fc][] Any code which meets one or more of these conditions should be managed as a dependency: @@ -144,7 +144,7 @@ takes care of npm update, it is maintained by the npm team. ## Dependency list -### acorn 8.10.0 +### acorn 8.11.2 The [acorn](https://github.com/acornjs/acorn) dependency is a JavaScript parser. [acorn-walk](https://github.com/acornjs/acorn/tree/master/acorn-walk) is @@ -155,7 +155,7 @@ an abstract syntax tree walker for the ESTree format. The [ada](https://github.com/ada-url/ada) dependency is a fast and spec-compliant URL parser written in C++. -### base64 0.5.0 +### base64 0.5.1 The [base64](https://github.com/aklomp/base64) dependency is a base64 stream encoding/decoding library in C99 with SIMD and OpenMP acceleration. @@ -189,7 +189,7 @@ In practical terms, Corepack will let you use Yarn and pnpm without having to install them - just like what currently happens with npm, which is shipped by Node.js by default. -### googletest 2dd1c13 +### googletest 116b7e5 The [googletest](https://github.com/google/googletest) dependency is Google’s C++ testing and mocking framework. @@ -212,7 +212,7 @@ The [libuv](https://github.com/libuv/libuv) dependency is a multi-platform support library with a focus on asynchronous I/O. It was primarily developed for use by Node.js. -### llhttp 9.1.2 +### llhttp 9.1.3 The [llhttp](https://github.com/nodejs/llhttp) dependency is the http parser used by Node.js. @@ -223,7 +223,7 @@ See [maintaining-http][] for more informations. The [minimatch](https://github.com/isaacs/minimatch) dependency is a minimal matching utility. -### nghttp2 1.57.0 +### nghttp2 1.58.0 The [nghttp2](https://github.com/nghttp2/nghttp2) dependency is a C library implementing HTTP/2 protocol. @@ -291,7 +291,7 @@ The [postject](https://github.com/nodejs/postject) dependency is used for the The [simdutf](https://github.com/simdutf/simdutf) dependency is a C++ library for fast UTF-8 decoding and encoding. -### undici 5.26.4 +### undici 5.27.0 The [undici](https://github.com/nodejs/undici) dependency is an HTTP/1.1 client, written from scratch for Node.js.. @@ -311,26 +311,26 @@ See [maintaining-web-assembly][] for more informations. high-performance JavaScript and WebAssembly engine, written in C++. See [maintaining-V8][] for more informations. -### zlib 1.2.13.1-motley-fef5869 +### zlib 1.2.13.1-motley-dfc48fc The [zlib](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/third_party/zlib) dependency lossless data-compression library, it comes from the Chromium team's zlib fork which incorporated performance improvements not currently available in standard zlib. -[acorn 8.10.0]: #acorn-8100 +[acorn 8.11.2]: #acorn-8112 [ada 2.7.2]: #ada-272 -[base64 0.5.0]: #base64-050 +[base64 0.5.1]: #base64-051 [brotli 1.0.9]: #brotli-109 [c-ares 1.20.1]: #c-ares-1201 [cjs-module-lexer 1.2.2]: #cjs-module-lexer-122 [corepack]: #corepack [dependency-update-action]: ../../../.github/workflows/tools.yml -[googletest 2dd1c13]: #googletest-2dd1c13 +[googletest 116b7e5]: #googletest-116b7e5 [histogram 0.11.8]: #histogram-0118 [icu-small 73.2]: #icu-small-732 [libuv 1.46.0]: #libuv-1460 -[llhttp 9.1.2]: #llhttp-912 +[llhttp 9.1.3]: #llhttp-913 [maintaining-V8]: ./maintaining-V8.md [maintaining-cjs-module-lexer]: ./maintaining-cjs-module-lexer.md [maintaining-http]: ./maintaining-http.md @@ -338,15 +338,15 @@ performance improvements not currently available in standard zlib. [maintaining-openssl]: ./maintaining-openssl.md [maintaining-web-assembly]: ./maintaining-web-assembly.md [minimatch 9.0.3]: #minimatch-903 -[nghttp2 1.57.0]: #nghttp2-1570 +[nghttp2 1.58.0]: #nghttp2-1580 [nghttp3 0.7.0]: #nghttp3-070 [ngtcp2 0.8.1]: #ngtcp2-081 [npm 9.6.7]: #npm-967 [openssl 3.0.8]: #openssl-308 [postject 1.0.0-alpha.6]: #postject-100-alpha6 [simdutf 3.2.18]: #simdutf-3218 -[undici 5.26.4]: #undici-5264 +[undici 5.27.0]: #undici-5270 [update-openssl-action]: ../../../.github/workflows/update-openssl.yml [uvwasi 0.0.19]: #uvwasi-0019 [v8 11.8.172.12]: #v8-11817212 -[zlib 1.2.13.1-motley-fef5869]: #zlib-12131-motley-fef5869 +[zlib 1.2.13.1-motley-dfc48fc]: #zlib-12131-motley-dfc48fc diff --git a/doc/contributing/releases.md b/doc/contributing/releases.md index 39d6d0d66f5b84..1f8eb24fcbb985 100644 --- a/doc/contributing/releases.md +++ b/doc/contributing/releases.md @@ -20,7 +20,7 @@ official release builds for Node.js, hosted on . * [5. Create release commit](#5-create-release-commit) * [6. Propose release on GitHub](#6-propose-release-on-github) * [7. Ensure that the release branch is stable](#7-ensure-that-the-release-branch-is-stable) - * [7.1 Updating the release _(optional)_](#7-1-updating-the-release-optional) + * [7.1 Updating the release _(optional)_](#71-updating-the-release-optional) * [8. Produce a nightly build _(optional)_](#8-produce-a-nightly-build-optional) * [9. Produce release builds](#9-produce-release-builds) * [10. Test the build](#10-test-the-build) diff --git a/doc/node.1 b/doc/node.1 index 48ac6dc82130c2..fe862dece6c1e7 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -438,6 +438,9 @@ option set. . .It Fl -test-shard Test suite shard to execute in a format of /. + +.It Fl -test-timeout +A number of milliseconds the test execution will fail after. . .It Fl -throw-deprecation Throw errors for deprecations. diff --git a/lib/.eslintrc.yaml b/lib/.eslintrc.yaml index 5b7fa7d3882d7d..3eb3b2089b0596 100644 --- a/lib/.eslintrc.yaml +++ b/lib/.eslintrc.yaml @@ -19,7 +19,7 @@ rules: - selector: ThrowStatement > CallExpression[callee.name=/Error$/] message: Use new keyword when throwing an Error. # Config specific to lib - - selector: NewExpression[callee.name=/Error$/]:not([callee.name=/^(AssertionError|NghttpError|AbortError)$/]) + - selector: NewExpression[callee.name=/Error$/]:not([callee.name=/^(AssertionError|NghttpError|AbortError|NodeAggregateError)$/]) message: Use an error exported by the internal/errors module. - selector: CallExpression[callee.object.name='Error'][callee.property.name='captureStackTrace'] message: Please use `require('internal/errors').hideStackFrames()` instead. @@ -172,7 +172,7 @@ rules: - name: setTimeout message: Use `const { setTimeout } = require('timers');` instead of the global. - name: structuredClone - message: Use `const { structuredClone } = require('internal/structured_clone');` instead of the global. + message: Use `const { structuredClone } = internalBinding('messaging');` instead of the global. - name: SubtleCrypto message: Use `const { SubtleCrypto } = require('internal/crypto/webcrypto');` instead of the global. no-restricted-modules: diff --git a/lib/_http_agent.js b/lib/_http_agent.js index e23409f2ee797f..a4829526f6e138 100644 --- a/lib/_http_agent.js +++ b/lib/_http_agent.js @@ -38,7 +38,7 @@ const { StringPrototypeIndexOf, StringPrototypeSplit, StringPrototypeStartsWith, - StringPrototypeSubstr, + StringPrototypeSubstring, Symbol, } = primordials; @@ -363,7 +363,7 @@ function calculateServerName(options, req) { // Leading '[', but no ']'. Need to do something... servername = hostHeader; } else { - servername = StringPrototypeSubstr(hostHeader, 1, index - 1); + servername = StringPrototypeSubstring(hostHeader, 1, index); } } else { servername = StringPrototypeSplit(hostHeader, ':', 1)[0]; diff --git a/lib/_http_client.js b/lib/_http_client.js index 9fd07e1676b8ff..8db3f8a2766887 100644 --- a/lib/_http_client.js +++ b/lib/_http_client.js @@ -72,7 +72,7 @@ const { traceEnd, getNextTraceEventId, } = require('internal/http'); -const { connResetException, codes } = require('internal/errors'); +const { ConnResetException, codes } = require('internal/errors'); const { ERR_HTTP_HEADERS_SENT, ERR_INVALID_ARG_TYPE, @@ -452,7 +452,7 @@ function socketCloseListener() { if (res) { // Socket closed before we emitted 'end' below. if (!res.complete) { - res.destroy(connResetException('aborted')); + res.destroy(new ConnResetException('aborted')); } req._closed = true; req.emit('close'); @@ -465,7 +465,7 @@ function socketCloseListener() { // receive a response. The error needs to // fire on the request. req.socket._hadError = true; - req.emit('error', connResetException('socket hang up')); + req.emit('error', new ConnResetException('socket hang up')); } req._closed = true; req.emit('close'); @@ -516,7 +516,7 @@ function socketOnEnd() { // If we don't have a response then we know that the socket // ended prematurely and we need to emit an error on the request. req.socket._hadError = true; - req.emit('error', connResetException('socket hang up')); + req.emit('error', new ConnResetException('socket hang up')); } if (parser) { parser.finish(); @@ -869,7 +869,7 @@ function onSocketNT(req, socket, err) { function _destroy(req, err) { if (!req.aborted && !err) { - err = connResetException('socket hang up'); + err = new ConnResetException('socket hang up'); } if (err) { req.emit('error', err); diff --git a/lib/_http_outgoing.js b/lib/_http_outgoing.js index 64e0d4ab714d79..7303bd88aaa37a 100644 --- a/lib/_http_outgoing.js +++ b/lib/_http_outgoing.js @@ -663,17 +663,17 @@ function matchHeader(self, state, field, value) { const validateHeaderName = hideStackFrames((name, label) => { if (typeof name !== 'string' || !name || !checkIsHttpToken(name)) { - throw new ERR_INVALID_HTTP_TOKEN(label || 'Header name', name); + throw new ERR_INVALID_HTTP_TOKEN.HideStackFramesError(label || 'Header name', name); } }); const validateHeaderValue = hideStackFrames((name, value) => { if (value === undefined) { - throw new ERR_HTTP_INVALID_HEADER_VALUE(value, name); + throw new ERR_HTTP_INVALID_HEADER_VALUE.HideStackFramesError(value, name); } if (checkInvalidHeaderChar(value)) { debug('Header "%s" contains invalid characters', name); - throw new ERR_INVALID_CHAR('header content', name); + throw new ERR_INVALID_CHAR.HideStackFramesError('header content', name); } }); diff --git a/lib/_http_server.js b/lib/_http_server.js index c62ea17599512f..3e19f1ba78e7cc 100644 --- a/lib/_http_server.js +++ b/lib/_http_server.js @@ -69,7 +69,7 @@ const { } = require('internal/async_hooks'); const { IncomingMessage } = require('_http_incoming'); const { - connResetException, + ConnResetException, codes, } = require('internal/errors'); const { @@ -790,7 +790,7 @@ function socketOnClose(socket, state) { function abortIncoming(incoming) { while (incoming.length) { const req = incoming.shift(); - req.destroy(connResetException('aborted')); + req.destroy(new ConnResetException('aborted')); } // Abort socket._httpMessage ? } diff --git a/lib/_tls_wrap.js b/lib/_tls_wrap.js index 9cf3fc41485080..95f61cb9f6c289 100644 --- a/lib/_tls_wrap.js +++ b/lib/_tls_wrap.js @@ -66,7 +66,7 @@ const { Pipe, constants: PipeConstants } = internalBinding('pipe_wrap'); const { owner_symbol } = require('internal/async_hooks').symbols; const { isArrayBufferView } = require('internal/util/types'); const { SecureContext: NativeSecureContext } = internalBinding('crypto'); -const { connResetException, codes } = require('internal/errors'); +const { ConnResetException, codes } = require('internal/errors'); const { ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, @@ -909,7 +909,7 @@ TLSSocket.prototype._init = function(socket, wrap) { options.SNICallback && (options.SNICallback !== SNICallback || (options.server && options.server._contexts.length))) { - assert(typeof options.SNICallback === 'function'); + validateFunction(options.SNICallback, 'options.SNICallback'); this._SNICallback = options.SNICallback; ssl.enableCertCb(); } @@ -1218,7 +1218,7 @@ function onSocketClose(err) { // Emit ECONNRESET if (!this._controlReleased && !this[kErrorEmitted]) { this[kErrorEmitted] = true; - const connReset = connResetException('socket hang up'); + const connReset = new ConnResetException('socket hang up'); this._tlsOptions.server.emit('tlsClientError', connReset, this); } } @@ -1724,9 +1724,9 @@ function onConnectEnd() { if (!this._hadError) { const options = this[kConnectOptions]; this._hadError = true; - const error = connResetException('Client network socket disconnected ' + - 'before secure TLS connection was ' + - 'established'); + const error = new ConnResetException('Client network socket disconnected ' + + 'before secure TLS connection was ' + + 'established'); error.path = options.path; error.host = options.host; error.port = options.port; diff --git a/lib/assert.js b/lib/assert.js index b7d7a3da01d520..9dfcf80a913942 100644 --- a/lib/assert.js +++ b/lib/assert.js @@ -73,6 +73,7 @@ const CallTracker = require('internal/assert/calltracker'); const { validateFunction, } = require('internal/validators'); +const { fileURLToPath } = require('internal/url'); let isDeepEqual; let isDeepStrictEqual; @@ -296,7 +297,7 @@ function getErrMessage(message, fn) { overrideStackTrace.set(err, (_, stack) => stack); const call = err.stack[0]; - const filename = call.getFileName(); + let filename = call.getFileName(); const line = call.getLineNumber() - 1; let column = call.getColumnNumber() - 1; let identifier; @@ -330,6 +331,14 @@ function getErrMessage(message, fn) { const { StringDecoder } = require('string_decoder'); decoder = new StringDecoder('utf8'); } + + // ESM file prop is a file proto. Convert that to path. + // This ensure opensync will not throw ENOENT for ESM files. + const fileProtoPrefix = 'file://'; + if (StringPrototypeStartsWith(filename, fileProtoPrefix)) { + filename = fileURLToPath(filename); + } + fd = openSync(filename, 'r', 0o666); // Reset column and message. ({ 0: column, 1: message } = getCode(fd, line, column)); diff --git a/lib/buffer.js b/lib/buffer.js index ee30c69cc9611c..59a125960c276f 100644 --- a/lib/buffer.js +++ b/lib/buffer.js @@ -108,7 +108,6 @@ const { ERR_UNKNOWN_ENCODING, }, genericNodeError, - hideStackFrames, } = require('internal/errors'); const { validateArray, @@ -386,19 +385,12 @@ Buffer.of = of; ObjectSetPrototypeOf(Buffer, Uint8Array); -// The 'assertSize' method will remove itself from the callstack when an error -// occurs. This is done simply to keep the internal details of the -// implementation from bleeding out to users. -const assertSize = hideStackFrames((size) => { - validateNumber(size, 'size', 0, kMaxLength); -}); - /** * Creates a new filled Buffer instance. * alloc(size[, fill[, encoding]]) */ Buffer.alloc = function alloc(size, fill, encoding) { - assertSize(size); + validateNumber(size, 'size', 0, kMaxLength); if (fill !== undefined && fill !== 0 && size > 0) { const buf = createUnsafeBuffer(size); return _fill(buf, fill, 0, buf.length, encoding); @@ -411,7 +403,7 @@ Buffer.alloc = function alloc(size, fill, encoding) { * instance. If `--zero-fill-buffers` is set, will zero-fill the buffer. */ Buffer.allocUnsafe = function allocUnsafe(size) { - assertSize(size); + validateNumber(size, 'size', 0, kMaxLength); return allocate(size); }; @@ -421,15 +413,15 @@ Buffer.allocUnsafe = function allocUnsafe(size) { * If `--zero-fill-buffers` is set, will zero-fill the buffer. */ Buffer.allocUnsafeSlow = function allocUnsafeSlow(size) { - assertSize(size); + validateNumber(size, 'size', 0, kMaxLength); return createUnsafeBuffer(size); }; // If --zero-fill-buffers command line argument is set, a zero-filled // buffer is returned. -function SlowBuffer(length) { - assertSize(length); - return createUnsafeBuffer(length); +function SlowBuffer(size) { + validateNumber(size, 'size', 0, kMaxLength); + return createUnsafeBuffer(size); } ObjectSetPrototypeOf(SlowBuffer.prototype, Uint8ArrayPrototype); @@ -860,11 +852,11 @@ Buffer.prototype.equals = function equals(otherBuffer) { if (this === otherBuffer) return true; - - if (this.byteLength !== otherBuffer.byteLength) + const len = TypedArrayPrototypeGetByteLength(this); + if (len !== TypedArrayPrototypeGetByteLength(otherBuffer)) return false; - return this.byteLength === 0 || _compare(this, otherBuffer) === 0; + return len === 0 || _compare(this, otherBuffer) === 0; }; let INSPECT_MAX_BYTES = 50; diff --git a/lib/dgram.js b/lib/dgram.js index 01b5886d72fa29..8c8da1ad8856b5 100644 --- a/lib/dgram.js +++ b/lib/dgram.js @@ -96,9 +96,10 @@ function lazyLoadCluster() { return _cluster; } -const errnoException = errors.errnoException; -const exceptionWithHostPort = errors.exceptionWithHostPort; - +const { + ErrnoException, + ExceptionWithHostPort, +} = errors; function Socket(type, listener) { FunctionPrototypeCall(EventEmitter, this); @@ -286,7 +287,7 @@ Socket.prototype.bind = function(port_, address_ /* , callback */) { flags: null, }, (err) => { // Callback to handle error. - const ex = errnoException(err, 'open'); + const ex = new ErrnoException(err, 'open'); state.bindState = BIND_STATE_UNBOUND; this.emit('error', ex); }); @@ -299,7 +300,7 @@ Socket.prototype.bind = function(port_, address_ /* , callback */) { const err = state.handle.open(fd); if (err) - throw errnoException(err, 'open'); + throw new ErrnoException(err, 'open'); startListening(this); return this; @@ -350,7 +351,7 @@ Socket.prototype.bind = function(port_, address_ /* , callback */) { flags: flags, }, (err) => { // Callback to handle error. - const ex = exceptionWithHostPort(err, 'bind', ip, port); + const ex = new ExceptionWithHostPort(err, 'bind', ip, port); state.bindState = BIND_STATE_UNBOUND; this.emit('error', ex); }); @@ -360,7 +361,7 @@ Socket.prototype.bind = function(port_, address_ /* , callback */) { const err = state.handle.bind(ip, port || 0, flags); if (err) { - const ex = exceptionWithHostPort(err, 'bind', ip, port); + const ex = new ExceptionWithHostPort(err, 'bind', ip, port); state.bindState = BIND_STATE_UNBOUND; this.emit('error', ex); // Todo: close? @@ -429,7 +430,7 @@ function doConnect(ex, self, ip, address, port, callback) { if (!ex) { const err = state.handle.connect(ip, port); if (err) { - ex = exceptionWithHostPort(err, 'connect', address, port); + ex = new ExceptionWithHostPort(err, 'connect', address, port); } } @@ -457,7 +458,7 @@ Socket.prototype.disconnect = function() { const err = state.handle.disconnect(); if (err) - throw errnoException(err, 'connect'); + throw new ErrnoException(err, 'connect'); else state.connectState = CONNECT_STATE_DISCONNECTED; }; @@ -714,14 +715,14 @@ function doSend(ex, self, ip, list, address, port, callback) { if (err && callback) { // Don't emit as error, dgram_legacy.js compatibility - const ex = exceptionWithHostPort(err, 'send', address, port); + const ex = new ExceptionWithHostPort(err, 'send', address, port); process.nextTick(callback, ex); } } function afterSend(err, sent) { if (err) { - err = exceptionWithHostPort(err, 'send', this.address, this.port); + err = new ExceptionWithHostPort(err, 'send', this.address, this.port); } else { err = null; } @@ -772,7 +773,7 @@ Socket.prototype.address = function() { const out = {}; const err = this[kStateSymbol].handle.getsockname(out); if (err) { - throw errnoException(err, 'getsockname'); + throw new ErrnoException(err, 'getsockname'); } return out; @@ -788,7 +789,7 @@ Socket.prototype.remoteAddress = function() { const out = {}; const err = state.handle.getpeername(out); if (err) - throw errnoException(err, 'getpeername'); + throw new ErrnoException(err, 'getpeername'); return out; }; @@ -797,7 +798,7 @@ Socket.prototype.remoteAddress = function() { Socket.prototype.setBroadcast = function(arg) { const err = this[kStateSymbol].handle.setBroadcast(arg ? 1 : 0); if (err) { - throw errnoException(err, 'setBroadcast'); + throw new ErrnoException(err, 'setBroadcast'); } }; @@ -807,7 +808,7 @@ Socket.prototype.setTTL = function(ttl) { const err = this[kStateSymbol].handle.setTTL(ttl); if (err) { - throw errnoException(err, 'setTTL'); + throw new ErrnoException(err, 'setTTL'); } return ttl; @@ -819,7 +820,7 @@ Socket.prototype.setMulticastTTL = function(ttl) { const err = this[kStateSymbol].handle.setMulticastTTL(ttl); if (err) { - throw errnoException(err, 'setMulticastTTL'); + throw new ErrnoException(err, 'setMulticastTTL'); } return ttl; @@ -829,7 +830,7 @@ Socket.prototype.setMulticastTTL = function(ttl) { Socket.prototype.setMulticastLoopback = function(arg) { const err = this[kStateSymbol].handle.setMulticastLoopback(arg ? 1 : 0); if (err) { - throw errnoException(err, 'setMulticastLoopback'); + throw new ErrnoException(err, 'setMulticastLoopback'); } return arg; // 0.4 compatibility @@ -842,7 +843,7 @@ Socket.prototype.setMulticastInterface = function(interfaceAddress) { const err = this[kStateSymbol].handle.setMulticastInterface(interfaceAddress); if (err) { - throw errnoException(err, 'setMulticastInterface'); + throw new ErrnoException(err, 'setMulticastInterface'); } }; @@ -857,7 +858,7 @@ Socket.prototype.addMembership = function(multicastAddress, const { handle } = this[kStateSymbol]; const err = handle.addMembership(multicastAddress, interfaceAddress); if (err) { - throw errnoException(err, 'addMembership'); + throw new ErrnoException(err, 'addMembership'); } }; @@ -873,7 +874,7 @@ Socket.prototype.dropMembership = function(multicastAddress, const { handle } = this[kStateSymbol]; const err = handle.dropMembership(multicastAddress, interfaceAddress); if (err) { - throw errnoException(err, 'dropMembership'); + throw new ErrnoException(err, 'dropMembership'); } }; @@ -890,7 +891,7 @@ Socket.prototype.addSourceSpecificMembership = function(sourceAddress, groupAddress, interfaceAddress); if (err) { - throw errnoException(err, 'addSourceSpecificMembership'); + throw new ErrnoException(err, 'addSourceSpecificMembership'); } }; @@ -908,7 +909,7 @@ Socket.prototype.dropSourceSpecificMembership = function(sourceAddress, groupAddress, interfaceAddress); if (err) { - throw errnoException(err, 'dropSourceSpecificMembership'); + throw new ErrnoException(err, 'dropSourceSpecificMembership'); } }; @@ -935,7 +936,7 @@ function stopReceiving(socket) { function onMessage(nread, handle, buf, rinfo) { const self = handle[owner_symbol]; if (nread < 0) { - return self.emit('error', errnoException(nread, 'recvmsg')); + return self.emit('error', new ErrnoException(nread, 'recvmsg')); } rinfo.size = buf.length; // compatibility self.emit('message', buf, rinfo); diff --git a/lib/dns.js b/lib/dns.js index ca932ad05f4da7..681f0aa3e58ecf 100644 --- a/lib/dns.js +++ b/lib/dns.js @@ -30,7 +30,14 @@ const { const cares = internalBinding('cares_wrap'); const { isIP } = require('internal/net'); const { customPromisifyArgs } = require('internal/util'); -const errors = require('internal/errors'); +const { + codes: { + ERR_INVALID_ARG_TYPE, + ERR_INVALID_ARG_VALUE, + ERR_MISSING_ARGS, + }, + DNSException, +} = require('internal/errors'); const { bindDefaultResolver, setDefaultResolver, @@ -70,11 +77,6 @@ const { ADDRGETNETWORKPARAMS, CANCELLED, } = dnsErrorCodes; -const { - ERR_INVALID_ARG_TYPE, - ERR_INVALID_ARG_VALUE, - ERR_MISSING_ARGS, -} = errors.codes; const { validateBoolean, validateFunction, @@ -98,13 +100,11 @@ const { stopPerf, } = require('internal/perf/observe'); -const dnsException = errors.dnsException; - let promises = null; // Lazy loaded function onlookup(err, addresses) { if (err) { - return this.callback(dnsException(err, 'getaddrinfo', this.hostname)); + return this.callback(new DNSException(err, 'getaddrinfo', this.hostname)); } this.callback(null, addresses[0], this.family || isIP(addresses[0])); if (this[kPerfHooksDnsLookupContext] && hasObserver('dns')) { @@ -115,7 +115,7 @@ function onlookup(err, addresses) { function onlookupall(err, addresses) { if (err) { - return this.callback(dnsException(err, 'getaddrinfo', this.hostname)); + return this.callback(new DNSException(err, 'getaddrinfo', this.hostname)); } const family = this.family; @@ -222,7 +222,7 @@ function lookup(hostname, options, callback) { req, hostname, family, hints, verbatim, ); if (err) { - process.nextTick(callback, dnsException(err, 'getaddrinfo', hostname)); + process.nextTick(callback, new DNSException(err, 'getaddrinfo', hostname)); return {}; } if (hasObserver('dns')) { @@ -243,7 +243,7 @@ ObjectDefineProperty(lookup, customPromisifyArgs, function onlookupservice(err, hostname, service) { if (err) - return this.callback(dnsException(err, 'getnameinfo', this.hostname)); + return this.callback(new DNSException(err, 'getnameinfo', this.hostname)); this.callback(null, hostname, service); if (this[kPerfHooksDnsLookupServiceContext] && hasObserver('dns')) { @@ -272,7 +272,7 @@ function lookupService(address, port, callback) { req.oncomplete = onlookupservice; const err = cares.getnameinfo(req, address, port); - if (err) throw dnsException(err, 'getnameinfo', address); + if (err) throw new DNSException(err, 'getnameinfo', address); if (hasObserver('dns')) { startPerf(req, kPerfHooksDnsLookupServiceContext, { type: 'dns', diff --git a/lib/events.js b/lib/events.js index a1837cc1a9107e..3ba2484ece938f 100644 --- a/lib/events.js +++ b/lib/events.js @@ -87,6 +87,7 @@ const { const kCapture = Symbol('kCapture'); const kErrorMonitor = Symbol('events.errorMonitor'); +const kShapeMode = Symbol('shapeMode'); const kMaxEventTargetListeners = Symbol('events.maxEventTargetListeners'); const kMaxEventTargetListenersWarned = Symbol('events.maxEventTargetListenersWarned'); @@ -344,6 +345,9 @@ EventEmitter.init = function(opts) { this._events === ObjectGetPrototypeOf(this)._events) { this._events = { __proto__: null }; this._eventsCount = 0; + this[kShapeMode] = false; + } else { + this[kShapeMode] = true; } this._maxListeners = this._maxListeners || undefined; @@ -686,9 +690,13 @@ EventEmitter.prototype.removeListener = return this; if (list === listener || list.listener === listener) { - if (--this._eventsCount === 0) + this._eventsCount -= 1; + + if (this[kShapeMode]) { + events[type] = undefined; + } else if (this._eventsCount === 0) { this._events = { __proto__: null }; - else { + } else { delete events[type]; if (events.removeListener) this.emit('removeListener', type, list.listener || listener); @@ -750,6 +758,7 @@ EventEmitter.prototype.removeAllListeners = else delete events[type]; } + this[kShapeMode] = false; return this; } @@ -762,6 +771,7 @@ EventEmitter.prototype.removeAllListeners = this.removeAllListeners('removeListener'); this._events = { __proto__: null }; this._eventsCount = 0; + this[kShapeMode] = false; return this; } diff --git a/lib/fs.js b/lib/fs.js index 53885d9478017f..1c811ad8332009 100644 --- a/lib/fs.js +++ b/lib/fs.js @@ -73,7 +73,7 @@ const { }, AbortError, uvErrmapGet, - uvException, + UVException, } = require('internal/errors'); const { @@ -402,7 +402,7 @@ function tryStatSync(fd, isUserFd) { const stats = binding.fstat(fd, false, undefined, ctx); if (ctx.errno !== undefined && !isUserFd) { fs.closeSync(fd); - throw uvException(ctx); + throw new UVException(ctx); } return stats; } @@ -1456,10 +1456,11 @@ function readdirSyncRecursive(basePath, options) { * @param {string | { * encoding?: string; * withFileTypes?: boolean; + * recursive?: boolean; * }} [options] * @param {( * err?: Error, - * files?: string[] | Buffer[] | Direct[]; + * files?: string[] | Buffer[] | Dirent[]; * ) => any} callback * @returns {void} */ diff --git a/lib/internal/bootstrap/web/exposed-window-or-worker.js b/lib/internal/bootstrap/web/exposed-window-or-worker.js index 3cc555b82f35a7..37e4518a5400b5 100644 --- a/lib/internal/bootstrap/web/exposed-window-or-worker.js +++ b/lib/internal/bootstrap/web/exposed-window-or-worker.js @@ -31,11 +31,8 @@ const { } = require('internal/process/task_queues'); defineOperation(globalThis, 'queueMicrotask', queueMicrotask); -defineLazyProperties( - globalThis, - 'internal/structured_clone', - ['structuredClone'], -); +const { structuredClone } = internalBinding('messaging'); +defineOperation(globalThis, 'structuredClone', structuredClone); defineLazyProperties(globalThis, 'buffer', ['atob', 'btoa']); // https://html.spec.whatwg.org/multipage/web-messaging.html#broadcasting-to-other-browsing-contexts @@ -55,10 +52,6 @@ exposeLazyInterfaces(globalThis, 'perf_hooks', [ defineReplaceableLazyAttribute(globalThis, 'perf_hooks', ['performance']); -// https://html.spec.whatwg.org/multipage/system-state.html#the-navigator-object -exposeLazyInterfaces(globalThis, 'internal/navigator', ['Navigator']); -defineReplaceableLazyAttribute(globalThis, 'internal/navigator', ['navigator'], false); - // https://w3c.github.io/FileAPI/#creating-revoking const { installObjectURLMethods } = require('internal/url'); installObjectURLMethods(); diff --git a/lib/internal/child_process.js b/lib/internal/child_process.js index 2cad5aaf71cec9..49edaba5b558e9 100644 --- a/lib/internal/child_process.js +++ b/lib/internal/child_process.js @@ -17,7 +17,7 @@ const { } = primordials; const { - errnoException, + ErrnoException, codes: { ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, @@ -283,7 +283,7 @@ function ChildProcess() { if (exitCode < 0) { const syscall = this.spawnfile ? 'spawn ' + this.spawnfile : 'spawn'; - const err = errnoException(exitCode, syscall); + const err = new ErrnoException(exitCode, syscall); if (this.spawnfile) err.path = this.spawnfile; @@ -418,7 +418,7 @@ ChildProcess.prototype.spawn = function(options) { this._handle.close(); this._handle = null; - throw errnoException(err, 'spawn'); + throw new ErrnoException(err, 'spawn'); } else { process.nextTick(onSpawnNT, this); } @@ -506,10 +506,10 @@ ChildProcess.prototype.kill = function(sig) { /* Already dead. */ } else if (err === UV_EINVAL || err === UV_ENOSYS) { /* The underlying platform doesn't support this signal. */ - throw errnoException(err, 'kill'); + throw new ErrnoException(err, 'kill'); } else { /* Other error, almost certainly EPERM. */ - this.emit('error', errnoException(err, 'kill')); + this.emit('error', new ErrnoException(err, 'kill')); } } @@ -876,7 +876,7 @@ function setupChannel(target, channel, serializationMode) { obj.postSend(message, handle, options, callback); if (!options.swallowErrors) { - const ex = errnoException(err, 'write'); + const ex = new ErrnoException(err, 'write'); if (typeof callback === 'function') { process.nextTick(callback, ex); } else { @@ -1121,7 +1121,7 @@ function spawnSync(options) { result.stderr = result.output && result.output[2]; if (result.error) { - result.error = errnoException(result.error, 'spawnSync ' + options.file); + result.error = new ErrnoException(result.error, 'spawnSync ' + options.file); result.error.path = options.file; result.error.spawnargs = ArrayPrototypeSlice(options.args, 1); } diff --git a/lib/internal/cli_table.js b/lib/internal/cli_table.js index 79b15a38f49bb5..be0bd44bbc36fe 100644 --- a/lib/internal/cli_table.js +++ b/lib/internal/cli_table.js @@ -40,11 +40,10 @@ const renderRow = (row, columnWidths) => { for (let i = 0; i < row.length; i++) { const cell = row[i]; const len = getStringWidth(cell); - const needed = (columnWidths[i] - len) / 2; + const needed = (columnWidths[i] - len); // round(needed) + ceil(needed) will always add up to the amount // of spaces we need while also left justifying the output. - out += StringPrototypeRepeat(' ', needed) + cell + - StringPrototypeRepeat(' ', MathCeil(needed)); + out += cell + StringPrototypeRepeat(' ', MathCeil(needed)); if (i !== row.length - 1) out += tableChars.middle; } diff --git a/lib/internal/crypto/hkdf.js b/lib/internal/crypto/hkdf.js index cf3c39e8d9da5a..757a2391a0167f 100644 --- a/lib/internal/crypto/hkdf.js +++ b/lib/internal/crypto/hkdf.js @@ -49,15 +49,15 @@ const { } = require('internal/errors'); const validateParameters = hideStackFrames((hash, key, salt, info, length) => { - validateString(hash, 'digest'); + validateString.withoutStackTrace(hash, 'digest'); key = prepareKey(key); - salt = validateByteSource(salt, 'salt'); - info = validateByteSource(info, 'info'); + salt = validateByteSource.withoutStackTrace(salt, 'salt'); + info = validateByteSource.withoutStackTrace(info, 'info'); - validateInteger(length, 'length', 0, kMaxLength); + validateInteger.withoutStackTrace(length, 'length', 0, kMaxLength); if (info.byteLength > 1024) { - throw new ERR_OUT_OF_RANGE( + throw new ERR_OUT_OF_RANGE.HideStackFramesError( 'info', 'must not contain more than 1024 bytes', info.byteLength); diff --git a/lib/internal/crypto/util.js b/lib/internal/crypto/util.js index 51ca3f4c056fb9..45a236a1130249 100644 --- a/lib/internal/crypto/util.js +++ b/lib/internal/crypto/util.js @@ -116,7 +116,7 @@ const getArrayBufferOrView = hideStackFrames((buffer, name, encoding) => { return Buffer.from(buffer, encoding); } if (!isArrayBufferView(buffer)) { - throw new ERR_INVALID_ARG_TYPE( + throw new ERR_INVALID_ARG_TYPE.HideStackFramesError( name, [ 'string', @@ -403,7 +403,7 @@ const validateByteSource = hideStackFrames((val, name) => { if (isAnyArrayBuffer(val) || isArrayBufferView(val)) return val; - throw new ERR_INVALID_ARG_TYPE( + throw new ERR_INVALID_ARG_TYPE.HideStackFramesError( name, [ 'string', diff --git a/lib/internal/dns/callback_resolver.js b/lib/internal/dns/callback_resolver.js index e57a597c08c716..5b7758865a85c6 100644 --- a/lib/internal/dns/callback_resolver.js +++ b/lib/internal/dns/callback_resolver.js @@ -12,7 +12,7 @@ const { ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, }, - dnsException, + DNSException, } = require('internal/errors'); const { @@ -42,7 +42,7 @@ function onresolve(err, result, ttls) { result, (address, index) => ({ address, ttl: ttls[index] })); if (err) - this.callback(dnsException(err, this.bindingName, this.hostname)); + this.callback(new DNSException(err, this.bindingName, this.hostname)); else { this.callback(null, result); if (this[kPerfHooksDnsLookupResolveContext] && hasObserver('dns')) { @@ -69,7 +69,7 @@ function resolver(bindingName) { req.oncomplete = onresolve; req.ttl = !!(options && options.ttl); const err = this._handle[bindingName](req, name); - if (err) throw dnsException(err, bindingName, name); + if (err) throw new DNSException(err, bindingName, name); if (hasObserver('dns')) { startPerf(req, kPerfHooksDnsLookupResolveContext, { type: 'dns', diff --git a/lib/internal/dns/promises.js b/lib/internal/dns/promises.js index 1169b2735d4efe..56276fdbae7db7 100644 --- a/lib/internal/dns/promises.js +++ b/lib/internal/dns/promises.js @@ -45,7 +45,7 @@ const { ADDRGETNETWORKPARAMS, CANCELLED, } = dnsErrorCodes; -const { codes, dnsException } = require('internal/errors'); +const { codes, DNSException } = require('internal/errors'); const { isIP } = require('internal/net'); const { getaddrinfo, @@ -79,7 +79,7 @@ const { function onlookup(err, addresses) { if (err) { - this.reject(dnsException(err, 'getaddrinfo', this.hostname)); + this.reject(new DNSException(err, 'getaddrinfo', this.hostname)); return; } @@ -92,7 +92,7 @@ function onlookup(err, addresses) { function onlookupall(err, addresses) { if (err) { - this.reject(dnsException(err, 'getaddrinfo', this.hostname)); + this.reject(new DNSException(err, 'getaddrinfo', this.hostname)); return; } @@ -153,7 +153,7 @@ function createLookupPromise(family, hostname, all, hints, verbatim) { const err = getaddrinfo(req, hostname, family, hints, verbatim); if (err) { - reject(dnsException(err, 'getaddrinfo', hostname)); + reject(new DNSException(err, 'getaddrinfo', hostname)); } else if (hasObserver('dns')) { const detail = { hostname, @@ -220,7 +220,7 @@ function lookup(hostname, options) { function onlookupservice(err, hostname, service) { if (err) { - this.reject(dnsException(err, 'getnameinfo', this.host)); + this.reject(new DNSException(err, 'getnameinfo', this.host)); return; } @@ -243,7 +243,7 @@ function createLookupServicePromise(hostname, port) { const err = getnameinfo(req, hostname, port); if (err) - reject(dnsException(err, 'getnameinfo', hostname)); + reject(new DNSException(err, 'getnameinfo', hostname)); else if (hasObserver('dns')) { startPerf(req, kPerfHooksDnsLookupServiceContext, { type: 'dns', @@ -272,7 +272,7 @@ function lookupService(address, port) { function onresolve(err, result, ttls) { if (err) { - this.reject(dnsException(err, this.bindingName, this.hostname)); + this.reject(new DNSException(err, this.bindingName, this.hostname)); return; } @@ -300,7 +300,7 @@ function createResolverPromise(resolver, bindingName, hostname, ttl) { const err = resolver._handle[bindingName](req, hostname); if (err) - reject(dnsException(err, bindingName, hostname)); + reject(new DNSException(err, bindingName, hostname)); else if (hasObserver('dns')) { startPerf(req, kPerfHooksDnsLookupResolveContext, { type: 'dns', diff --git a/lib/internal/errors.js b/lib/internal/errors.js index 363b9d3bb8fe8b..39e512762a470c 100644 --- a/lib/internal/errors.js +++ b/lib/internal/errors.js @@ -86,8 +86,7 @@ const kTypes = [ const MainContextError = Error; const overrideStackTrace = new SafeWeakMap(); const kNoOverride = Symbol('kNoOverride'); -let userStackTraceLimit; -const nodeInternalPrefix = '__node_internal_'; + const prepareStackTrace = (globalThis, error, trace) => { // API for node internals to override error stack formatting // without interfering with userland code. @@ -97,21 +96,6 @@ const prepareStackTrace = (globalThis, error, trace) => { return f(error, trace); } - const firstFrame = trace[0]?.getFunctionName(); - if (firstFrame && StringPrototypeStartsWith(firstFrame, nodeInternalPrefix)) { - for (let l = trace.length - 1; l >= 0; l--) { - const fn = trace[l]?.getFunctionName(); - if (fn && StringPrototypeStartsWith(fn, nodeInternalPrefix)) { - ArrayPrototypeSplice(trace, 0, l + 1); - break; - } - } - // `userStackTraceLimit` is the user value for `Error.stackTraceLimit`, - // it is updated at every new exception in `captureLargerStackTrace`. - if (trace.length > userStackTraceLimit) - ArrayPrototypeSplice(trace, userStackTraceLimit); - } - const globalOverride = maybeOverridePrepareStackTrace(globalThis, error, trace); if (globalOverride !== kNoOverride) return globalOverride; @@ -151,30 +135,51 @@ const maybeOverridePrepareStackTrace = (globalThis, error, trace) => { return kNoOverride; }; -const aggregateTwoErrors = hideStackFrames((innerError, outerError) => { +const aggregateTwoErrors = (innerError, outerError) => { if (innerError && outerError && innerError !== outerError) { if (ArrayIsArray(outerError.errors)) { // If `outerError` is already an `AggregateError`. ArrayPrototypePush(outerError.errors, innerError); return outerError; } - // eslint-disable-next-line no-restricted-syntax - const err = new AggregateError(new SafeArrayIterator([ - outerError, - innerError, - ]), outerError.message); + let err; + if (isErrorStackTraceLimitWritable()) { + const limit = Error.stackTraceLimit; + Error.stackTraceLimit = 0; + // eslint-disable-next-line no-restricted-syntax + err = new AggregateError(new SafeArrayIterator([ + outerError, + innerError, + ]), outerError.message); + Error.stackTraceLimit = limit; + ErrorCaptureStackTrace(err, aggregateTwoErrors); + } else { + // eslint-disable-next-line no-restricted-syntax + err = new AggregateError(new SafeArrayIterator([ + outerError, + innerError, + ]), outerError.message); + } err.code = outerError.code; return err; } return innerError || outerError; -}); +}; -const aggregateErrors = hideStackFrames((errors, message, code) => { - // eslint-disable-next-line no-restricted-syntax - const err = new AggregateError(new SafeArrayIterator(errors), message); - err.code = errors[0]?.code; - return err; -}); +class NodeAggregateError extends AggregateError { + constructor(errors, message) { + super(new SafeArrayIterator(errors), message); + this.code = errors[0]?.code; + } + + get [kIsNodeError]() { + return true; + } + + get ['constructor']() { + return AggregateError; + } +} const assert = require('internal/assert'); @@ -242,11 +247,7 @@ function inspectWithNoCustomRetry(obj, options) { // and may have .path and .dest. class SystemError extends Error { constructor(key, context) { - const limit = Error.stackTraceLimit; - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = 0; super(); - // Reset the limit and setting the name property. - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = limit; const prefix = getMessage(key, [], this); let message = `${prefix}: ${context.syscall} returned ` + `${context.code} (${context.message})`; @@ -256,8 +257,6 @@ class SystemError extends Error { if (context.dest !== undefined) message += ` => ${context.dest}`; - captureLargerStackTrace(this); - this.code = key; ObjectDefineProperties(this, { @@ -372,6 +371,33 @@ function makeSystemErrorWithCode(key) { }; } +// This is a special error type that is only used for the E function. +class HideStackFramesError extends Error { +} + +function makeNodeErrorForHideStackFrame(Base, clazz) { + class HideStackFramesError extends Base { + constructor(...args) { + if (isErrorStackTraceLimitWritable()) { + const limit = Error.stackTraceLimit; + Error.stackTraceLimit = 0; + super(...args); + Error.stackTraceLimit = limit; + } else { + super(...args); + } + } + + // This is a workaround for wpt tests that expect that the error + // constructor has a `name` property of the base class. + get ['constructor']() { + return clazz; + } + } + + return HideStackFramesError; +} + function makeNodeErrorWithCode(Base, key) { const msg = messages.get(key); const expectedLength = typeof msg !== 'string' ? -1 : getExpectedArgumentLength(msg); @@ -479,11 +505,16 @@ function makeNodeErrorWithCode(Base, key) { * @returns {T} */ function hideStackFrames(fn) { - // We rename the functions that will be hidden to cut off the stacktrace - // at the outermost one - const hidden = nodeInternalPrefix + fn.name; - ObjectDefineProperty(fn, 'name', { __proto__: null, value: hidden }); - return fn; + function wrappedFn(...args) { + try { + return ReflectApply(fn, this, args); + } catch (error) { + Error.stackTraceLimit && ErrorCaptureStackTrace(error, wrappedFn); + throw error; + } + } + wrappedFn.withoutStackTrace = fn; + return wrappedFn; } // Utility function for registering the error codes. Only used here. Exported @@ -492,18 +523,33 @@ function E(sym, val, def, ...otherClasses) { // Special case for SystemError that formats the error message differently // The SystemErrors only have SystemError as their base classes. messages.set(sym, val); - if (def === SystemError) { - def = makeSystemErrorWithCode(sym); - } else { - def = makeNodeErrorWithCode(def, sym); - } + + const ErrClass = def === SystemError ? + makeSystemErrorWithCode(sym) : + makeNodeErrorWithCode(def, sym); if (otherClasses.length !== 0) { - otherClasses.forEach((clazz) => { - def[clazz.name] = makeNodeErrorWithCode(clazz, sym); - }); + if (otherClasses.includes(HideStackFramesError)) { + if (otherClasses.length !== 1) { + otherClasses.forEach((clazz) => { + if (clazz !== HideStackFramesError) { + ErrClass[clazz.name] = makeNodeErrorWithCode(clazz, sym); + ErrClass[clazz.name].HideStackFramesError = makeNodeErrorForHideStackFrame(ErrClass[clazz.name], clazz); + } + }); + } + } else { + otherClasses.forEach((clazz) => { + ErrClass[clazz.name] = makeNodeErrorWithCode(clazz, sym); + }); + } } - codes[sym] = def; + + if (otherClasses.includes(HideStackFramesError)) { + ErrClass.HideStackFramesError = makeNodeErrorForHideStackFrame(ErrClass, def); + } + + codes[sym] = ErrClass; } function getExpectedArgumentLength(msg) { @@ -553,84 +599,67 @@ function uvErrmapGet(name) { return MapPrototypeGet(uvBinding.errmap, name); } -const captureLargerStackTrace = hideStackFrames( - function captureLargerStackTrace(err) { - const stackTraceLimitIsWritable = isErrorStackTraceLimitWritable(); - if (stackTraceLimitIsWritable) { - userStackTraceLimit = Error.stackTraceLimit; - Error.stackTraceLimit = Infinity; - } - ErrorCaptureStackTrace(err); - // Reset the limit - if (stackTraceLimitIsWritable) Error.stackTraceLimit = userStackTraceLimit; - - return err; - }); - /** * This creates an error compatible with errors produced in the C++ * function UVException using a context object with data assembled in C++. * The goal is to migrate them to ERR_* errors later when compatibility is * not a concern. - * @param {object} ctx - * @returns {Error} */ -const uvException = hideStackFrames(function uvException(ctx) { - const { 0: code, 1: uvmsg } = uvErrmapGet(ctx.errno) || uvUnmappedError; - let message = `${code}: ${ctx.message || uvmsg}, ${ctx.syscall}`; - - let path; - let dest; - if (ctx.path) { - path = ctx.path.toString(); - message += ` '${path}'`; - } - if (ctx.dest) { - dest = ctx.dest.toString(); - message += ` -> '${dest}'`; - } +class UVException extends Error { + /** + * @param {object} ctx + */ + constructor(ctx) { + const { 0: code, 1: uvmsg } = uvErrmapGet(ctx.errno) || uvUnmappedError; + let message = `${code}: ${ctx.message || uvmsg}, ${ctx.syscall}`; + + let path; + let dest; + if (ctx.path) { + path = ctx.path.toString(); + message += ` '${path}'`; + } + if (ctx.dest) { + dest = ctx.dest.toString(); + message += ` -> '${dest}'`; + } - // Reducing the limit improves the performance significantly. We do not lose - // the stack frames due to the `captureStackTrace()` function that is called - // later. - const tmpLimit = Error.stackTraceLimit; - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = 0; - // Pass the message to the constructor instead of setting it on the object - // to make sure it is the same as the one created in C++ - // eslint-disable-next-line no-restricted-syntax - const err = new Error(message); - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = tmpLimit; + super(message); - for (const prop of ObjectKeys(ctx)) { - if (prop === 'message' || prop === 'path' || prop === 'dest') { - continue; + for (const prop of ObjectKeys(ctx)) { + if (prop === 'message' || prop === 'path' || prop === 'dest') { + continue; + } + this[prop] = ctx[prop]; } - err[prop] = ctx[prop]; - } - err.code = code; - if (path) { - err.path = path; - } - if (dest) { - err.dest = dest; + this.code = code; + if (path) { + this.path = path; + } + if (dest) { + this.dest = dest; + } } - return captureLargerStackTrace(err); -}); + get ['constructor']() { + return Error; + } +} /** * This creates an error compatible with errors produced in the C++ * This function should replace the deprecated * `exceptionWithHostPort()` function. - * @param {number} err - A libuv error number - * @param {string} syscall - * @param {string} address - * @param {number} [port] - * @returns {Error} */ -const uvExceptionWithHostPort = hideStackFrames( - function uvExceptionWithHostPort(err, syscall, address, port) { +class UVExceptionWithHostPort extends Error { + /** + * @param {number} err - A libuv error number + * @param {string} syscall + * @param {string} address + * @param {number} [port] + */ + constructor(err, syscall, address, port) { const { 0: code, 1: uvmsg } = uvErrmapGet(err) || uvUnmappedError; const message = `${syscall} ${code}: ${uvmsg}`; let details = ''; @@ -641,34 +670,32 @@ const uvExceptionWithHostPort = hideStackFrames( details = ` ${address}`; } - // Reducing the limit improves the performance significantly. We do not - // lose the stack frames due to the `captureStackTrace()` function that - // is called later. - const tmpLimit = Error.stackTraceLimit; - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = 0; - // eslint-disable-next-line no-restricted-syntax - const ex = new Error(`${message}${details}`); - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = tmpLimit; - ex.code = code; - ex.errno = err; - ex.syscall = syscall; - ex.address = address; + super(`${message}${details}`); + + this.code = code; + this.errno = err; + this.syscall = syscall; + this.address = address; if (port) { - ex.port = port; + this.port = port; } + } - return captureLargerStackTrace(ex); - }); + get ['constructor']() { + return Error; + } +} /** * This used to be util._errnoException(). - * @param {number} err - A libuv error number - * @param {string} syscall - * @param {string} [original] - * @returns {Error} */ -const errnoException = hideStackFrames( - function errnoException(err, syscall, original) { +class ErrnoException extends Error { + /** + * @param {number} err - A libuv error number + * @param {string} syscall + * @param {string} [original] err + */ + constructor(err, syscall, original) { // TODO(joyeecheung): We have to use the type-checked // getSystemErrorName(err) to guard against invalid arguments from users. // This can be replaced with [ code ] = errmap.get(err) when this method @@ -678,20 +705,20 @@ const errnoException = hideStackFrames( const message = original ? `${syscall} ${code} ${original}` : `${syscall} ${code}`; - const tmpLimit = Error.stackTraceLimit; - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = 0; - // eslint-disable-next-line no-restricted-syntax - const ex = new Error(message); - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = tmpLimit; - ex.errno = err; - ex.code = code; - ex.syscall = syscall; + super(message); - return captureLargerStackTrace(ex); - }); + this.errno = err; + this.code = code; + this.syscall = syscall; + } + + get ['constructor']() { + return Error; + } +} /** - * Deprecated, new function is `uvExceptionWithHostPort()` + * Deprecated, new Error is `UVExceptionWithHostPort()` * New function added the error description directly * from C++. this method for backwards compatibility * @param {number} err - A libuv error number @@ -701,8 +728,8 @@ const errnoException = hideStackFrames( * @param {string} [additional] * @returns {Error} */ -const exceptionWithHostPort = hideStackFrames( - function exceptionWithHostPort(err, syscall, address, port, additional) { +class ExceptionWithHostPort extends Error { + constructor(err, syscall, address, port, additional) { // TODO(joyeecheung): We have to use the type-checked // getSystemErrorName(err) to guard against invalid arguments from users. // This can be replaced with [ code ] = errmap.get(err) when this method @@ -719,78 +746,75 @@ const exceptionWithHostPort = hideStackFrames( details += ` - Local (${additional})`; } - // Reducing the limit improves the performance significantly. We do not - // lose the stack frames due to the `captureStackTrace()` function that - // is called later. - const tmpLimit = Error.stackTraceLimit; - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = 0; - // eslint-disable-next-line no-restricted-syntax - const ex = new Error(`${syscall} ${code}${details}`); - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = tmpLimit; - ex.errno = err; - ex.code = code; - ex.syscall = syscall; - ex.address = address; + super(`${syscall} ${code}${details}`); + + this.errno = err; + this.code = code; + this.syscall = syscall; + this.address = address; if (port) { - ex.port = port; + this.port = port; } + } - return captureLargerStackTrace(ex); - }); + get ['constructor']() { + return Error; + } +} -/** - * @param {number|string} code - A libuv error number or a c-ares error code - * @param {string} syscall - * @param {string} [hostname] - * @returns {Error} - */ -const dnsException = hideStackFrames(function(code, syscall, hostname) { - let errno; - // If `code` is of type number, it is a libuv error number, else it is a - // c-ares error code. - // TODO(joyeecheung): translate c-ares error codes into numeric ones and - // make them available in a property that's not error.errno (since they - // can be in conflict with libuv error codes). Also make sure - // util.getSystemErrorName() can understand them when an being informed that - // the number is a c-ares error code. - if (typeof code === 'number') { - errno = code; - // ENOTFOUND is not a proper POSIX error, but this error has been in place - // long enough that it's not practical to remove it. - if (code === lazyUv().UV_EAI_NODATA || code === lazyUv().UV_EAI_NONAME) { - code = 'ENOTFOUND'; // Fabricated error name. - } else { - code = lazyInternalUtil().getSystemErrorName(code); +class DNSException extends Error { + /** + * @param {number|string} code - A libuv error number or a c-ares error code + * @param {string} syscall + * @param {string} [hostname] + */ + constructor(code, syscall, hostname) { + let errno; + // If `code` is of type number, it is a libuv error number, else it is a + // c-ares error code. + // TODO(joyeecheung): translate c-ares error codes into numeric ones and + // make them available in a property that's not error.errno (since they + // can be in conflict with libuv error codes). Also make sure + // util.getSystemErrorName() can understand them when an being informed that + // the number is a c-ares error code. + if (typeof code === 'number') { + errno = code; + // ENOTFOUND is not a proper POSIX error, but this error has been in place + // long enough that it's not practical to remove it. + if (code === lazyUv().UV_EAI_NODATA || code === lazyUv().UV_EAI_NONAME) { + code = 'ENOTFOUND'; // Fabricated error name. + } else { + code = lazyInternalUtil().getSystemErrorName(code); + } + } + super(`${syscall} ${code}${hostname ? ` ${hostname}` : ''}`); + this.errno = errno; + this.code = code; + this.syscall = syscall; + if (hostname) { + this.hostname = hostname; } } - const message = `${syscall} ${code}${hostname ? ` ${hostname}` : ''}`; - // Reducing the limit improves the performance significantly. We do not lose - // the stack frames due to the `captureStackTrace()` function that is called - // later. - const tmpLimit = Error.stackTraceLimit; - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = 0; - // eslint-disable-next-line no-restricted-syntax - const ex = new Error(message); - if (isErrorStackTraceLimitWritable()) Error.stackTraceLimit = tmpLimit; - ex.errno = errno; - ex.code = code; - ex.syscall = syscall; - if (hostname) { - ex.hostname = hostname; + + get ['constructor']() { + return Error; } +} - return captureLargerStackTrace(ex); -}); +class ConnResetException extends Error { + constructor(msg) { + super(msg); + this.code = 'ECONNRESET'; + } -function connResetException(msg) { - // eslint-disable-next-line no-restricted-syntax - const ex = new Error(msg); - ex.code = 'ECONNRESET'; - return ex; + get ['constructor']() { + return Error; + } } let maxStack_ErrorName; let maxStack_ErrorMessage; + /** * Returns true if `err.name` and `err.message` are equal to engine-specific * values indicating max call stack size has been exceeded. @@ -1011,16 +1035,15 @@ function formatList(array, type = 'and') { module.exports = { AbortError, aggregateTwoErrors, - aggregateErrors, - captureLargerStackTrace, + NodeAggregateError, codes, - connResetException, - dnsException, + ConnResetException, + DNSException, // This is exported only to facilitate testing. determineSpecificType, E, - errnoException, - exceptionWithHostPort, + ErrnoException, + ExceptionWithHostPort, fatalExceptionStackEnhancers, formatList, genericNodeError, @@ -1039,8 +1062,8 @@ module.exports = { setArrowMessage, SystemError, uvErrmapGet, - uvException, - uvExceptionWithHostPort, + UVException, + UVExceptionWithHostPort, }; // To declare an error message, use the E(sym, val, def) function above. The sym @@ -1147,7 +1170,7 @@ E('ERR_EVENT_RECURSION', 'The event "%s" is already being dispatched', Error); E('ERR_FALSY_VALUE_REJECTION', function(reason) { this.reason = reason; return 'Promise was rejected with falsy value'; -}, Error); +}, Error, HideStackFramesError); E('ERR_FEATURE_UNAVAILABLE_ON_PLATFORM', 'The feature %s is unavailable on the current platform' + ', which is being used to run Node.js', @@ -1163,7 +1186,7 @@ E('ERR_FS_CP_SOCKET', 'Cannot copy a socket file', SystemError); E('ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY', 'Cannot overwrite symlink in subdirectory of self', SystemError); E('ERR_FS_CP_UNKNOWN', 'Cannot copy an unknown file type', SystemError); -E('ERR_FS_EISDIR', 'Path is a directory', SystemError); +E('ERR_FS_EISDIR', 'Path is a directory', SystemError, HideStackFramesError); E('ERR_FS_FILE_TOO_LARGE', 'File size (%s) is greater than 2 GiB', RangeError); E('ERR_FS_INVALID_SYMLINK_TYPE', 'Symlink type must be one of "dir", "file", or "junction". Received "%s"', @@ -1190,7 +1213,7 @@ E('ERR_HTTP2_INFO_STATUS_NOT_ALLOWED', E('ERR_HTTP2_INVALID_CONNECTION_HEADERS', 'HTTP/1 Connection specific headers are forbidden: "%s"', TypeError); E('ERR_HTTP2_INVALID_HEADER_VALUE', - 'Invalid value "%s" for header "%s"', TypeError); + 'Invalid value "%s" for header "%s"', TypeError, HideStackFramesError); E('ERR_HTTP2_INVALID_INFO_STATUS', 'Invalid informational status code: %s', RangeError); E('ERR_HTTP2_INVALID_ORIGIN', @@ -1198,7 +1221,7 @@ E('ERR_HTTP2_INVALID_ORIGIN', E('ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH', 'Packed settings length must be a multiple of six', RangeError); E('ERR_HTTP2_INVALID_PSEUDOHEADER', - '"%s" is an invalid pseudoheader or is used incorrectly', TypeError); + '"%s" is an invalid pseudoheader or is used incorrectly', TypeError, HideStackFramesError); E('ERR_HTTP2_INVALID_SESSION', 'The session has been destroyed', Error); E('ERR_HTTP2_INVALID_SETTING_VALUE', // Using default arguments here is important so the arguments are not counted @@ -1210,7 +1233,7 @@ E('ERR_HTTP2_INVALID_SETTING_VALUE', this.max = max; } return `Invalid value for setting "${name}": ${actual}`; - }, TypeError, RangeError); + }, TypeError, RangeError, HideStackFramesError); E('ERR_HTTP2_INVALID_STREAM', 'The stream has been destroyed', Error); E('ERR_HTTP2_MAX_PENDING_SETTINGS_ACK', 'Maximum number of pending settings acknowledgements', Error); @@ -1230,7 +1253,7 @@ E('ERR_HTTP2_PAYLOAD_FORBIDDEN', E('ERR_HTTP2_PING_CANCEL', 'HTTP2 ping cancelled', Error); E('ERR_HTTP2_PING_LENGTH', 'HTTP2 ping payload must be 8 bytes', RangeError); E('ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED', - 'Cannot set HTTP/2 pseudo-headers', TypeError); + 'Cannot set HTTP/2 pseudo-headers', TypeError, HideStackFramesError); E('ERR_HTTP2_PUSH_DISABLED', 'HTTP/2 client has disabled push streams', Error); E('ERR_HTTP2_SEND_FILE', 'Directories cannot be sent', Error); E('ERR_HTTP2_SEND_FILE_NOSEEK', @@ -1270,7 +1293,7 @@ E('ERR_HTTP_CONTENT_LENGTH_MISMATCH', E('ERR_HTTP_HEADERS_SENT', 'Cannot %s headers after they are sent to the client', Error); E('ERR_HTTP_INVALID_HEADER_VALUE', - 'Invalid value "%s" for header "%s"', TypeError); + 'Invalid value "%s" for header "%s"', TypeError, HideStackFramesError); E('ERR_HTTP_INVALID_STATUS_CODE', 'Invalid status code: %s', RangeError); E('ERR_HTTP_REQUEST_TIMEOUT', 'Request timeout', Error); E('ERR_HTTP_SOCKET_ASSIGNED', @@ -1287,7 +1310,7 @@ E('ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE', E('ERR_IMPORT_ATTRIBUTE_UNSUPPORTED', 'Import attribute "%s" with value "%s" is not supported', TypeError); E('ERR_INCOMPATIBLE_OPTION_PAIR', - 'Option "%s" cannot be used in combination with option "%s"', TypeError); + 'Option "%s" cannot be used in combination with option "%s"', TypeError, HideStackFramesError); E('ERR_INPUT_TYPE_NOT_ALLOWED', '--input-type can only be used with string ' + 'input via --eval, --print, or STDIN', Error); E('ERR_INSPECTOR_ALREADY_ACTIVATED', @@ -1383,7 +1406,7 @@ E('ERR_INVALID_ARG_TYPE', msg += `. Received ${determineSpecificType(actual)}`; return msg; - }, TypeError); + }, TypeError, HideStackFramesError); E('ERR_INVALID_ARG_VALUE', (name, value, reason = 'is invalid') => { let inspected = lazyInternalUtilInspect().inspect(value); if (inspected.length > 128) { @@ -1391,7 +1414,7 @@ E('ERR_INVALID_ARG_VALUE', (name, value, reason = 'is invalid') => { } const type = StringPrototypeIncludes(name, '.') ? 'property' : 'argument'; return `The ${type} '${name}' ${reason}. Received ${inspected}`; -}, TypeError, RangeError); +}, TypeError, RangeError, HideStackFramesError); E('ERR_INVALID_ASYNC_ID', 'Invalid %s value: %s', RangeError); E('ERR_INVALID_BUFFER_SIZE', 'Buffer size must be a multiple of %s', RangeError); @@ -1404,7 +1427,7 @@ E('ERR_INVALID_CHAR', msg += ` ["${field}"]`; } return msg; - }, TypeError); + }, TypeError, HideStackFramesError); E('ERR_INVALID_CURSOR_POS', 'Cannot set cursor row without setting its column', TypeError); E('ERR_INVALID_FD', @@ -1414,7 +1437,7 @@ E('ERR_INVALID_FILE_URL_HOST', 'File URL host must be "localhost" or empty on %s', TypeError); E('ERR_INVALID_FILE_URL_PATH', 'File URL path %s', TypeError); E('ERR_INVALID_HANDLE_TYPE', 'This handle type cannot be sent', TypeError); -E('ERR_INVALID_HTTP_TOKEN', '%s must be a valid HTTP token ["%s"]', TypeError); +E('ERR_INVALID_HTTP_TOKEN', '%s must be a valid HTTP token ["%s"]', TypeError, HideStackFramesError); E('ERR_INVALID_IP_ADDRESS', 'Invalid IP address: %s', TypeError); E('ERR_INVALID_MIME_SYNTAX', (production, str, invalidIndex) => { const msg = invalidIndex !== -1 ? ` at ${invalidIndex}` : ''; @@ -1603,7 +1626,7 @@ E('ERR_OUT_OF_RANGE', } msg += ` It must be ${range}. Received ${received}`; return msg; - }, RangeError); + }, RangeError, HideStackFramesError); E('ERR_PACKAGE_IMPORT_NOT_DEFINED', (specifier, packagePath, base) => { return `Package import specifier "${specifier}" is not defined${packagePath ? ` in package ${packagePath}package.json` : ''} imported from ${base}`; @@ -1669,7 +1692,7 @@ E('ERR_SOCKET_BAD_PORT', (name, port, allowZero = true) => { "The 'allowZero' argument must be of type boolean."); const operator = allowZero ? '>=' : '>'; return `${name} should be ${operator} 0 and < 65536. Received ${determineSpecificType(port)}.`; -}, RangeError); +}, RangeError, HideStackFramesError); E('ERR_SOCKET_BAD_TYPE', 'Bad socket type specified. Valid types are: udp4, udp6', TypeError); E('ERR_SOCKET_BUFFER_SIZE', @@ -1700,7 +1723,7 @@ E('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', E('ERR_STREAM_WRAP', 'Stream has StringDecoder set or is in objectMode', Error); E('ERR_STREAM_WRITE_AFTER_END', 'write after end', Error); E('ERR_SYNTHETIC', 'JavaScript Callstack', Error); -E('ERR_SYSTEM_ERROR', 'A system error occurred', SystemError); +E('ERR_SYSTEM_ERROR', 'A system error occurred', SystemError, HideStackFramesError); E('ERR_TAP_LEXER_ERROR', function(errorMsg) { hideInternalStackFrames(this); return errorMsg; @@ -1794,7 +1817,7 @@ E('ERR_UNKNOWN_ENCODING', 'Unknown encoding: %s', TypeError); E('ERR_UNKNOWN_FILE_EXTENSION', 'Unknown file extension "%s" for %s', TypeError); E('ERR_UNKNOWN_MODULE_FORMAT', 'Unknown module format: %s for URL %s', RangeError); -E('ERR_UNKNOWN_SIGNAL', 'Unknown signal: %s', TypeError); +E('ERR_UNKNOWN_SIGNAL', 'Unknown signal: %s', TypeError, HideStackFramesError); E('ERR_UNSUPPORTED_DIR_IMPORT', function(path, base, exactUrl) { lazyInternalUtil().setOwnProperty(this, 'url', exactUrl); return `Directory import '${path}' is not supported ` + diff --git a/lib/internal/event_target.js b/lib/internal/event_target.js index 0236f3a53c5276..4c67453fea4c59 100644 --- a/lib/internal/event_target.js +++ b/lib/internal/event_target.js @@ -2,6 +2,7 @@ const { ArrayFrom, + ArrayPrototypeReduce, Boolean, Error, FunctionPrototypeCall, @@ -314,11 +315,6 @@ class Event { throw new ERR_INVALID_THIS('Event'); this.#propagationStopped = true; } - - static NONE = 0; - static CAPTURING_PHASE = 1; - static AT_TARGET = 2; - static BUBBLING_PHASE = 3; } ObjectDefineProperties( @@ -354,6 +350,22 @@ ObjectDefineProperties( isTrusted: isTrustedDescriptor, }); +const staticProps = ['NONE', 'CAPTURING_PHASE', 'AT_TARGET', 'BUBBLING_PHASE']; + +ObjectDefineProperties( + Event, + ArrayPrototypeReduce(staticProps, (result, staticProp, index = 0) => { + result[staticProp] = { + __proto__: null, + writable: false, + configurable: false, + enumerable: true, + value: index, + }; + return result; + }, {}), +); + function isCustomEvent(value) { return isEvent(value) && (value?.[kDetail] !== undefined); } diff --git a/lib/internal/fs/cp/cp-sync.js b/lib/internal/fs/cp/cp-sync.js index 348d45adcd7c4e..fe342f2dda19ec 100644 --- a/lib/internal/fs/cp/cp-sync.js +++ b/lib/internal/fs/cp/cp-sync.js @@ -116,17 +116,9 @@ function checkPathsSync(src, dest, opts) { } function getStatsSync(src, dest, opts) { - let destStat; - const statFunc = opts.dereference ? - (file) => statSync(file, { bigint: true }) : - (file) => lstatSync(file, { bigint: true }); - const srcStat = statFunc(src); - try { - destStat = statFunc(dest); - } catch (err) { - if (err.code === 'ENOENT') return { srcStat, destStat: null }; - throw err; - } + const statFunc = opts.dereference ? statSync : lstatSync; + const srcStat = statFunc(src, { bigint: true, throwIfNoEntry: true }); + const destStat = statFunc(dest, { bigint: true, throwIfNoEntry: false }); return { srcStat, destStat }; } @@ -134,13 +126,12 @@ function checkParentPathsSync(src, srcStat, dest) { const srcParent = resolve(dirname(src)); const destParent = resolve(dirname(dest)); if (destParent === srcParent || destParent === parse(destParent).root) return; - let destStat; - try { - destStat = statSync(destParent, { bigint: true }); - } catch (err) { - if (err.code === 'ENOENT') return; - throw err; + const destStat = statSync(destParent, { bigint: true, throwIfNoEntry: false }); + + if (destStat === undefined) { + return; } + if (areIdentical(srcStat, destStat)) { throw new ERR_FS_CP_EINVAL({ message: `cannot copy ${src} to a subdirectory of self ${dest}`, diff --git a/lib/internal/fs/promises.js b/lib/internal/fs/promises.js index f58dfae182811b..e9a82ab64b16bf 100644 --- a/lib/internal/fs/promises.js +++ b/lib/internal/fs/promises.js @@ -4,6 +4,7 @@ const { ArrayPrototypePush, ArrayPrototypePop, Error, + ErrorCaptureStackTrace, MathMax, MathMin, Promise, @@ -130,6 +131,15 @@ function lazyFsStreams() { return fsStreams ??= require('internal/fs/streams'); } +// By the time the C++ land creates an error for a promise rejection (likely from a +// libuv callback), there is already no JS frames on the stack. So we need to +// wait until V8 resumes execution back to JS land before we have enough information +// to re-capture the stack trace. +function handleErrorFromBinding(error) { + ErrorCaptureStackTrace(error, handleErrorFromBinding); + return PromiseReject(error); +} + class FileHandle extends EventEmitter { /** * @param {InternalFSBinding.FileHandle | undefined} filehandle @@ -494,7 +504,11 @@ async function readFileHandle(filehandle, options) { checkAborted(signal); - const statFields = await binding.fstat(filehandle.fd, false, kUsePromises); + const statFields = await PromisePrototypeThen( + binding.fstat(filehandle.fd, false, kUsePromises), + undefined, + handleErrorFromBinding, + ); checkAborted(signal); @@ -525,8 +539,11 @@ async function readFileHandle(filehandle, options) { length = MathMin(size - totalRead, kReadFileBufferLength); } - const bytesRead = (await binding.read(filehandle.fd, buffer, offset, - length, -1, kUsePromises)) ?? 0; + const bytesRead = (await PromisePrototypeThen( + binding.read(filehandle.fd, buffer, offset, length, -1, kUsePromises), + undefined, + handleErrorFromBinding, + )) ?? 0; totalRead += bytesRead; if (bytesRead === 0 || @@ -574,8 +591,11 @@ async function access(path, mode = F_OK) { path = getValidatedPath(path); mode = getValidMode(mode, 'access'); - return binding.access(pathModule.toNamespacedPath(path), mode, - kUsePromises); + return await PromisePrototypeThen( + binding.access(pathModule.toNamespacedPath(path), mode, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function cp(src, dest, options) { @@ -589,10 +609,14 @@ async function copyFile(src, dest, mode) { src = getValidatedPath(src, 'src'); dest = getValidatedPath(dest, 'dest'); mode = getValidMode(mode, 'copyFile'); - return binding.copyFile(pathModule.toNamespacedPath(src), - pathModule.toNamespacedPath(dest), - mode, - kUsePromises); + return await PromisePrototypeThen( + binding.copyFile(pathModule.toNamespacedPath(src), + pathModule.toNamespacedPath(dest), + mode, + kUsePromises), + undefined, + handleErrorFromBinding, + ); } // Note that unlike fs.open() which uses numeric file descriptors, @@ -601,9 +625,12 @@ async function open(path, flags, mode) { path = getValidatedPath(path); const flagsNumber = stringToFlags(flags); mode = parseFileMode(mode, 'mode', 0o666); - return new FileHandle( - await binding.openFileHandle(pathModule.toNamespacedPath(path), - flagsNumber, mode, kUsePromises)); + return new FileHandle(await PromisePrototypeThen( + binding.openFileHandle(pathModule.toNamespacedPath(path), + flagsNumber, mode, kUsePromises), + undefined, + handleErrorFromBinding, + )); } async function read(handle, bufferOrParams, offset, length, position) { @@ -656,8 +683,11 @@ async function read(handle, bufferOrParams, offset, length, position) { validatePosition(position, 'position', length); } - const bytesRead = (await binding.read(handle.fd, buffer, offset, length, - position, kUsePromises)) || 0; + const bytesRead = (await PromisePrototypeThen( + binding.read(handle.fd, buffer, offset, length, position, kUsePromises), + undefined, + handleErrorFromBinding, + )) || 0; return { __proto__: null, bytesRead, buffer }; } @@ -668,8 +698,11 @@ async function readv(handle, buffers, position) { if (typeof position !== 'number') position = null; - const bytesRead = (await binding.readBuffers(handle.fd, buffers, position, - kUsePromises)) || 0; + const bytesRead = (await PromisePrototypeThen( + binding.readBuffers(handle.fd, buffers, position, kUsePromises), + undefined, + handleErrorFromBinding, + )) || 0; return { __proto__: null, bytesRead, buffers }; } @@ -698,15 +731,22 @@ async function write(handle, buffer, offsetOrOptions, length, position) { position = null; validateOffsetLengthWrite(offset, length, buffer.byteLength); const bytesWritten = - (await binding.writeBuffer(handle.fd, buffer, offset, - length, position, kUsePromises)) || 0; + (await PromisePrototypeThen( + binding.writeBuffer(handle.fd, buffer, offset, + length, position, kUsePromises), + undefined, + handleErrorFromBinding, + )) || 0; return { __proto__: null, bytesWritten, buffer }; } validateStringAfterArrayBufferView(buffer, 'buffer'); validateEncoding(buffer, length); - const bytesWritten = (await binding.writeString(handle.fd, buffer, offset, - length, kUsePromises)) || 0; + const bytesWritten = (await PromisePrototypeThen( + binding.writeString(handle.fd, buffer, offset, length, kUsePromises), + undefined, + handleErrorFromBinding, + )) || 0; return { __proto__: null, bytesWritten, buffer }; } @@ -720,17 +760,24 @@ async function writev(handle, buffers, position) { return { __proto__: null, bytesWritten: 0, buffers }; } - const bytesWritten = (await binding.writeBuffers(handle.fd, buffers, position, - kUsePromises)) || 0; + const bytesWritten = (await PromisePrototypeThen( + binding.writeBuffers(handle.fd, buffers, position, kUsePromises), + undefined, + handleErrorFromBinding, + )) || 0; return { __proto__: null, bytesWritten, buffers }; } async function rename(oldPath, newPath) { oldPath = getValidatedPath(oldPath, 'oldPath'); newPath = getValidatedPath(newPath, 'newPath'); - return binding.rename(pathModule.toNamespacedPath(oldPath), - pathModule.toNamespacedPath(newPath), - kUsePromises); + return await PromisePrototypeThen( + binding.rename(pathModule.toNamespacedPath(oldPath), + pathModule.toNamespacedPath(newPath), + kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function truncate(path, len = 0) { @@ -741,7 +788,11 @@ async function truncate(path, len = 0) { async function ftruncate(handle, len = 0) { validateInteger(len, 'len'); len = MathMax(0, len); - return binding.ftruncate(handle.fd, len, kUsePromises); + return await PromisePrototypeThen( + binding.ftruncate(handle.fd, len, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function rm(path, options) { @@ -762,15 +813,27 @@ async function rmdir(path, options) { } } - return binding.rmdir(path, kUsePromises); + return await PromisePrototypeThen( + binding.rmdir(path, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function fdatasync(handle) { - return binding.fdatasync(handle.fd, kUsePromises); + return await PromisePrototypeThen( + binding.fdatasync(handle.fd, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function fsync(handle) { - return binding.fsync(handle.fd, kUsePromises); + return await PromisePrototypeThen( + binding.fsync(handle.fd, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function mkdir(path, options) { @@ -784,9 +847,13 @@ async function mkdir(path, options) { path = getValidatedPath(path); validateBoolean(recursive, 'options.recursive'); - return binding.mkdir(pathModule.toNamespacedPath(path), - parseFileMode(mode, 'mode', 0o777), recursive, - kUsePromises); + return await PromisePrototypeThen( + binding.mkdir(pathModule.toNamespacedPath(path), + parseFileMode(mode, 'mode', 0o777), recursive, + kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function readdirRecursive(originalPath, options) { @@ -794,11 +861,15 @@ async function readdirRecursive(originalPath, options) { const queue = [ [ originalPath, - await binding.readdir( - pathModule.toNamespacedPath(originalPath), - options.encoding, - !!options.withFileTypes, - kUsePromises, + await PromisePrototypeThen( + binding.readdir( + pathModule.toNamespacedPath(originalPath), + options.encoding, + !!options.withFileTypes, + kUsePromises, + ), + undefined, + handleErrorFromBinding, ), ], ]; @@ -814,11 +885,15 @@ async function readdirRecursive(originalPath, options) { const direntPath = pathModule.join(path, dirent.name); ArrayPrototypePush(queue, [ direntPath, - await binding.readdir( - direntPath, - options.encoding, - true, - kUsePromises, + await PromisePrototypeThen( + binding.readdir( + direntPath, + options.encoding, + true, + kUsePromises, + ), + undefined, + handleErrorFromBinding, ), ]); } @@ -837,11 +912,15 @@ async function readdirRecursive(originalPath, options) { if (stat === 1) { ArrayPrototypePush(queue, [ direntPath, - await binding.readdir( - pathModule.toNamespacedPath(direntPath), - options.encoding, - false, - kUsePromises, + await PromisePrototypeThen( + binding.readdir( + pathModule.toNamespacedPath(direntPath), + options.encoding, + false, + kUsePromises, + ), + undefined, + handleErrorFromBinding, ), ]); } @@ -858,11 +937,15 @@ async function readdir(path, options) { if (options.recursive) { return readdirRecursive(path, options); } - const result = await binding.readdir( - pathModule.toNamespacedPath(path), - options.encoding, - !!options.withFileTypes, - kUsePromises, + const result = await PromisePrototypeThen( + binding.readdir( + pathModule.toNamespacedPath(path), + options.encoding, + !!options.withFileTypes, + kUsePromises, + ), + undefined, + handleErrorFromBinding, ); return options.withFileTypes ? getDirectoryEntriesPromise(path, result) : @@ -872,8 +955,12 @@ async function readdir(path, options) { async function readlink(path, options) { options = getOptions(options); path = getValidatedPath(path, 'oldPath'); - return binding.readlink(pathModule.toNamespacedPath(path), - options.encoding, kUsePromises); + return await PromisePrototypeThen( + binding.readlink(pathModule.toNamespacedPath(path), + options.encoding, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function symlink(target, path, type_) { @@ -889,60 +976,96 @@ async function symlink(target, path, type_) { } target = getValidatedPath(target, 'target'); path = getValidatedPath(path); - return binding.symlink(preprocessSymlinkDestination(target, type, path), - pathModule.toNamespacedPath(path), - stringToSymlinkType(type), - kUsePromises); + return await PromisePrototypeThen( + binding.symlink(preprocessSymlinkDestination(target, type, path), + pathModule.toNamespacedPath(path), + stringToSymlinkType(type), + kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function fstat(handle, options = { bigint: false }) { - const result = await binding.fstat(handle.fd, options.bigint, kUsePromises); + const result = await PromisePrototypeThen( + binding.fstat(handle.fd, options.bigint, kUsePromises), + undefined, + handleErrorFromBinding, + ); return getStatsFromBinding(result); } async function lstat(path, options = { bigint: false }) { path = getValidatedPath(path); - const result = await binding.lstat(pathModule.toNamespacedPath(path), - options.bigint, kUsePromises); + const result = await PromisePrototypeThen( + binding.lstat(pathModule.toNamespacedPath(path), + options.bigint, kUsePromises), + undefined, + handleErrorFromBinding, + ); return getStatsFromBinding(result); } async function stat(path, options = { bigint: false }) { path = getValidatedPath(path); - const result = await binding.stat(pathModule.toNamespacedPath(path), - options.bigint, kUsePromises); + const result = await PromisePrototypeThen( + binding.stat(pathModule.toNamespacedPath(path), + options.bigint, kUsePromises), + undefined, + handleErrorFromBinding, + ); return getStatsFromBinding(result); } async function statfs(path, options = { bigint: false }) { path = getValidatedPath(path); - const result = await binding.statfs(pathModule.toNamespacedPath(path), - options.bigint, kUsePromises); + const result = await PromisePrototypeThen( + binding.statfs(pathModule.toNamespacedPath(path), + options.bigint, kUsePromises), + undefined, + handleErrorFromBinding, + ); return getStatFsFromBinding(result); } async function link(existingPath, newPath) { existingPath = getValidatedPath(existingPath, 'existingPath'); newPath = getValidatedPath(newPath, 'newPath'); - return binding.link(pathModule.toNamespacedPath(existingPath), - pathModule.toNamespacedPath(newPath), - kUsePromises); + return await PromisePrototypeThen( + binding.link(pathModule.toNamespacedPath(existingPath), + pathModule.toNamespacedPath(newPath), + kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function unlink(path) { path = getValidatedPath(path); - return binding.unlink(pathModule.toNamespacedPath(path), kUsePromises); + return await PromisePrototypeThen( + binding.unlink(pathModule.toNamespacedPath(path), kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function fchmod(handle, mode) { mode = parseFileMode(mode, 'mode'); - return binding.fchmod(handle.fd, mode, kUsePromises); + return await PromisePrototypeThen( + binding.fchmod(handle.fd, mode, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function chmod(path, mode) { path = getValidatedPath(path); mode = parseFileMode(mode, 'mode'); - return binding.chmod(pathModule.toNamespacedPath(path), mode, kUsePromises); + return await PromisePrototypeThen( + binding.chmod(pathModule.toNamespacedPath(path), mode, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function lchmod(path, mode) { @@ -957,50 +1080,76 @@ async function lchown(path, uid, gid) { path = getValidatedPath(path); validateInteger(uid, 'uid', -1, kMaxUserId); validateInteger(gid, 'gid', -1, kMaxUserId); - return binding.lchown(pathModule.toNamespacedPath(path), - uid, gid, kUsePromises); + return await PromisePrototypeThen( + binding.lchown(pathModule.toNamespacedPath(path), uid, gid, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function fchown(handle, uid, gid) { validateInteger(uid, 'uid', -1, kMaxUserId); validateInteger(gid, 'gid', -1, kMaxUserId); - return binding.fchown(handle.fd, uid, gid, kUsePromises); + return await PromisePrototypeThen( + binding.fchown(handle.fd, uid, gid, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function chown(path, uid, gid) { path = getValidatedPath(path); validateInteger(uid, 'uid', -1, kMaxUserId); validateInteger(gid, 'gid', -1, kMaxUserId); - return binding.chown(pathModule.toNamespacedPath(path), - uid, gid, kUsePromises); + return await PromisePrototypeThen( + binding.chown(pathModule.toNamespacedPath(path), uid, gid, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function utimes(path, atime, mtime) { path = getValidatedPath(path); - return binding.utimes(pathModule.toNamespacedPath(path), - toUnixTimestamp(atime), - toUnixTimestamp(mtime), - kUsePromises); + return await PromisePrototypeThen( + binding.utimes(pathModule.toNamespacedPath(path), + toUnixTimestamp(atime), + toUnixTimestamp(mtime), + kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function futimes(handle, atime, mtime) { atime = toUnixTimestamp(atime, 'atime'); mtime = toUnixTimestamp(mtime, 'mtime'); - return binding.futimes(handle.fd, atime, mtime, kUsePromises); + return await PromisePrototypeThen( + binding.futimes(handle.fd, atime, mtime, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function lutimes(path, atime, mtime) { path = getValidatedPath(path); - return binding.lutimes(pathModule.toNamespacedPath(path), - toUnixTimestamp(atime), - toUnixTimestamp(mtime), - kUsePromises); + return await PromisePrototypeThen( + binding.lutimes(pathModule.toNamespacedPath(path), + toUnixTimestamp(atime), + toUnixTimestamp(mtime), + kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function realpath(path, options) { options = getOptions(options); path = getValidatedPath(path); - return binding.realpath(path, options.encoding, kUsePromises); + return await PromisePrototypeThen( + binding.realpath(path, options.encoding, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function mkdtemp(prefix, options) { @@ -1016,7 +1165,11 @@ async function mkdtemp(prefix, options) { path = Buffer.concat([prefix, Buffer.from('XXXXXX')]); } - return binding.mkdtemp(path, options.encoding, kUsePromises); + return await PromisePrototypeThen( + binding.mkdtemp(path, options.encoding, kUsePromises), + undefined, + handleErrorFromBinding, + ); } async function writeFile(path, data, options) { diff --git a/lib/internal/fs/utils.js b/lib/internal/fs/utils.js index 611b6c242047b9..9f5ad9bf5f6c0e 100644 --- a/lib/internal/fs/utils.js +++ b/lib/internal/fs/utils.js @@ -38,7 +38,7 @@ const { ERR_OUT_OF_RANGE, }, hideStackFrames, - uvException, + UVException, } = require('internal/errors'); const { isArrayBufferView, @@ -348,7 +348,7 @@ function getOptions(options, defaultOptions = kEmptyObject) { */ function handleErrorFromBinding(ctx) { if (ctx.errno !== undefined) { // libuv error numbers - const err = uvException(ctx); + const err = new UVException(ctx); ErrorCaptureStackTrace(err, handleErrorFromBinding); throw err; } @@ -361,30 +361,6 @@ function handleErrorFromBinding(ctx) { } } -// Check if the path contains null types if it is a string nor Uint8Array, -// otherwise return silently. -const nullCheck = hideStackFrames((path, propName, throwError = true) => { - const pathIsString = typeof path === 'string'; - const pathIsUint8Array = isUint8Array(path); - - // We can only perform meaningful checks on strings and Uint8Arrays. - if ((!pathIsString && !pathIsUint8Array) || - (pathIsString && !StringPrototypeIncludes(path, '\u0000')) || - (pathIsUint8Array && !TypedArrayPrototypeIncludes(path, 0))) { - return; - } - - const err = new ERR_INVALID_ARG_VALUE( - propName, - path, - 'must be a string, Uint8Array, or URL without null bytes', - ); - if (throwError) { - throw err; - } - return err; -}); - function preprocessSymlinkDestination(path, type, linkPath) { if (!isWindows) { // No preprocessing is needed on Unix. @@ -664,14 +640,14 @@ function toUnixTimestamp(time, name = 'time') { const validateOffsetLengthRead = hideStackFrames( (offset, length, bufferLength) => { if (offset < 0) { - throw new ERR_OUT_OF_RANGE('offset', '>= 0', offset); + throw new ERR_OUT_OF_RANGE.HideStackFramesError('offset', '>= 0', offset); } if (length < 0) { - throw new ERR_OUT_OF_RANGE('length', '>= 0', length); + throw new ERR_OUT_OF_RANGE.HideStackFramesError('length', '>= 0', length); } if (offset + length > bufferLength) { - throw new ERR_OUT_OF_RANGE('length', - `<= ${bufferLength - offset}`, length); + throw new ERR_OUT_OF_RANGE.HideStackFramesError('length', + `<= ${bufferLength - offset}`, length); } }, ); @@ -679,31 +655,41 @@ const validateOffsetLengthRead = hideStackFrames( const validateOffsetLengthWrite = hideStackFrames( (offset, length, byteLength) => { if (offset > byteLength) { - throw new ERR_OUT_OF_RANGE('offset', `<= ${byteLength}`, offset); + throw new ERR_OUT_OF_RANGE.HideStackFramesError('offset', `<= ${byteLength}`, offset); } if (length > byteLength - offset) { - throw new ERR_OUT_OF_RANGE('length', `<= ${byteLength - offset}`, length); + throw new ERR_OUT_OF_RANGE.HideStackFramesError('length', `<= ${byteLength - offset}`, length); } if (length < 0) { - throw new ERR_OUT_OF_RANGE('length', '>= 0', length); + throw new ERR_OUT_OF_RANGE.HideStackFramesError('length', '>= 0', length); } - validateInt32(length, 'length', 0); + validateInt32.withoutStackTrace(length, 'length', 0); }, ); const validatePath = hideStackFrames((path, propName = 'path') => { if (typeof path !== 'string' && !isUint8Array(path)) { - throw new ERR_INVALID_ARG_TYPE(propName, ['string', 'Buffer', 'URL'], path); + throw new ERR_INVALID_ARG_TYPE.HideStackFramesError(propName, ['string', 'Buffer', 'URL'], path); } - const err = nullCheck(path, propName, false); + const pathIsString = typeof path === 'string'; + const pathIsUint8Array = isUint8Array(path); - if (err !== undefined) { - throw err; + // We can only perform meaningful checks on strings and Uint8Arrays. + if ((!pathIsString && !pathIsUint8Array) || + (pathIsString && !StringPrototypeIncludes(path, '\u0000')) || + (pathIsUint8Array && !TypedArrayPrototypeIncludes(path, 0))) { + return; } + + throw new ERR_INVALID_ARG_VALUE.HideStackFramesError( + propName, + path, + 'must be a string, Uint8Array, or URL without null bytes', + ); }); // TODO(rafaelgss): implement the path.resolve on C++ side @@ -742,11 +728,11 @@ const getValidatedFd = hideStackFrames((fd, propName = 'fd') => { const validateBufferArray = hideStackFrames((buffers, propName = 'buffers') => { if (!ArrayIsArray(buffers)) - throw new ERR_INVALID_ARG_TYPE(propName, 'ArrayBufferView[]', buffers); + throw new ERR_INVALID_ARG_TYPE.HideStackFramesError(propName, 'ArrayBufferView[]', buffers); for (let i = 0; i < buffers.length; i++) { if (!isArrayBufferView(buffers[i])) - throw new ERR_INVALID_ARG_TYPE(propName, 'ArrayBufferView[]', buffers); + throw new ERR_INVALID_ARG_TYPE.HideStackFramesError(propName, 'ArrayBufferView[]', buffers); } return buffers; @@ -802,7 +788,7 @@ const validateCpOptions = hideStackFrames((options) => { validateBoolean(options.verbatimSymlinks, 'options.verbatimSymlinks'); options.mode = getValidMode(options.mode, 'copyFile'); if (options.dereference === true && options.verbatimSymlinks === true) { - throw new ERR_INCOMPATIBLE_OPTION_PAIR('dereference', 'verbatimSymlinks'); + throw new ERR_INCOMPATIBLE_OPTION_PAIR.HideStackFramesError('dereference', 'verbatimSymlinks'); } if (options.filter !== undefined) { validateFunction(options.filter, 'options.filter'); @@ -827,21 +813,23 @@ const validateRmOptions = hideStackFrames((path, options, expectDir, cb) => { } if (stats.isDirectory() && !options.recursive) { - return cb(new ERR_FS_EISDIR({ + const err = new ERR_FS_EISDIR.HideStackFramesError({ code: 'EISDIR', message: 'is a directory', path, syscall: 'rm', errno: EISDIR, - })); + }); + + return cb(err); } return cb(null, options); }); }); const validateRmOptionsSync = hideStackFrames((path, options, expectDir) => { - options = validateRmdirOptions(options, defaultRmOptions); - validateBoolean(options.force, 'options.force'); + options = validateRmdirOptions.withoutStackTrace(options, defaultRmOptions); + validateBoolean.withoutStackTrace(options.force, 'options.force'); if (!options.force || expectDir || !options.recursive) { const isDirectory = lazyLoadFs() @@ -852,7 +840,7 @@ const validateRmOptionsSync = hideStackFrames((path, options, expectDir) => { } if (isDirectory && !options.recursive) { - throw new ERR_FS_EISDIR({ + throw new ERR_FS_EISDIR.HideStackFramesError({ code: 'EISDIR', message: 'is a directory', path, @@ -882,13 +870,13 @@ const validateRmdirOptions = hideStackFrames( (options, defaults = defaultRmdirOptions) => { if (options === undefined) return defaults; - validateObject(options, 'options'); + validateObject.withoutStackTrace(options, 'options'); options = { ...defaults, ...options }; - validateBoolean(options.recursive, 'options.recursive'); - validateInt32(options.retryDelay, 'options.retryDelay', 0); - validateUint32(options.maxRetries, 'options.maxRetries'); + validateBoolean.withoutStackTrace(options.recursive, 'options.recursive'); + validateInt32.withoutStackTrace(options.retryDelay, 'options.retryDelay', 0); + validateUint32.withoutStackTrace(options.maxRetries, 'options.maxRetries'); return options; }); @@ -907,13 +895,13 @@ const getValidMode = hideStackFrames((mode, type) => { if (mode == null) { return def; } - validateInteger(mode, 'mode', min, max); + validateInteger.withoutStackTrace(mode, 'mode', min, max); return mode; }); const validateStringAfterArrayBufferView = hideStackFrames((buffer, name) => { if (typeof buffer !== 'string') { - throw new ERR_INVALID_ARG_TYPE( + throw new ERR_INVALID_ARG_TYPE.HideStackFramesError( name, ['string', 'Buffer', 'TypedArray', 'DataView'], buffer, @@ -923,16 +911,16 @@ const validateStringAfterArrayBufferView = hideStackFrames((buffer, name) => { const validatePosition = hideStackFrames((position, name, length) => { if (typeof position === 'number') { - validateInteger(position, name, -1); + validateInteger.withoutStackTrace(position, name, -1); } else if (typeof position === 'bigint') { const maxPosition = 2n ** 63n - 1n - BigInt(length); if (!(position >= -1n && position <= maxPosition)) { - throw new ERR_OUT_OF_RANGE(name, - `>= -1 && <= ${maxPosition}`, - position); + throw new ERR_OUT_OF_RANGE.HideStackFramesError(name, + `>= -1 && <= ${maxPosition}`, + position); } } else { - throw new ERR_INVALID_ARG_TYPE(name, ['integer', 'bigint'], position); + throw new ERR_INVALID_ARG_TYPE.HideStackFramesError(name, ['integer', 'bigint'], position); } }); @@ -956,7 +944,6 @@ module.exports = { getValidatedPath, getValidMode, handleErrorFromBinding, - nullCheck, possiblyTransformPath, preprocessSymlinkDestination, realpathCacheKey: Symbol('realpathCacheKey'), diff --git a/lib/internal/fs/watchers.js b/lib/internal/fs/watchers.js index 99212fa713bf3f..f5ecc15159f457 100644 --- a/lib/internal/fs/watchers.js +++ b/lib/internal/fs/watchers.js @@ -9,7 +9,7 @@ const { const { AbortError, - uvException, + UVException, codes: { ERR_INVALID_ARG_VALUE, }, @@ -119,7 +119,7 @@ StatWatcher.prototype[kFSStatWatcherStart] = function(filename, validateUint32(interval, 'interval'); const err = this._handle.start(toNamespacedPath(filename), interval); if (err) { - const error = uvException({ + const error = new UVException({ errno: err, syscall: 'watch', path: filename, @@ -204,7 +204,7 @@ function FSWatcher() { this._handle.close(); this._handle = null; // Make the handle garbage collectable. } - const error = uvException({ + const error = new UVException({ errno: status, syscall: 'watch', path: filename, @@ -244,7 +244,7 @@ FSWatcher.prototype[kFSWatchStart] = function(filename, recursive, encoding); if (err) { - const error = uvException({ + const error = new UVException({ errno: err, syscall: 'watch', path: filename, @@ -338,7 +338,7 @@ async function* watch(filename, options = kEmptyObject) { } handle.onchange = (status, eventType, filename) => { if (status < 0) { - const error = uvException({ + const error = new UVException({ errno: status, syscall: 'watch', path: filename, @@ -354,7 +354,7 @@ async function* watch(filename, options = kEmptyObject) { const err = handle.start(path, persistent, recursive, encoding); if (err) { - const error = uvException({ + const error = new UVException({ errno: err, syscall: 'watch', path: filename, diff --git a/lib/internal/histogram.js b/lib/internal/histogram.js index 079fbce50d54e3..cb757313009dc0 100644 --- a/lib/internal/histogram.js +++ b/lib/internal/histogram.js @@ -52,9 +52,13 @@ function isHistogram(object) { return object?.[kHandle] !== undefined; } +const kSkipThrow = Symbol('kSkipThrow'); + class Histogram { - constructor() { - throw new ERR_ILLEGAL_CONSTRUCTOR(); + constructor(skipThrowSymbol = undefined) { + if (skipThrowSymbol !== kSkipThrow) { + throw new ERR_ILLEGAL_CONSTRUCTOR(); + } } [kInspect](depth, options) { @@ -242,7 +246,7 @@ class Histogram { const handle = this[kHandle]; return { data: { handle }, - deserializeInfo: 'internal/histogram:internalHistogram', + deserializeInfo: 'internal/histogram:ClonedHistogram', }; } @@ -264,8 +268,12 @@ class Histogram { } class RecordableHistogram extends Histogram { - constructor() { - throw new ERR_ILLEGAL_CONSTRUCTOR(); + constructor(skipThrowSymbol = undefined) { + if (skipThrowSymbol !== kSkipThrow) { + throw new ERR_ILLEGAL_CONSTRUCTOR(); + } + + super(skipThrowSymbol); } /** @@ -309,7 +317,7 @@ class RecordableHistogram extends Histogram { const handle = this[kHandle]; return { data: { handle }, - deserializeInfo: 'internal/histogram:internalRecordableHistogram', + deserializeInfo: 'internal/histogram:ClonedRecordableHistogram', }; } @@ -318,7 +326,7 @@ class RecordableHistogram extends Histogram { } } -function internalHistogram(handle) { +function ClonedHistogram(handle) { return ReflectConstruct( function() { markTransferMode(this, true, false); @@ -326,18 +334,26 @@ function internalHistogram(handle) { this[kMap] = new SafeMap(); }, [], Histogram); } -internalHistogram.prototype[kDeserialize] = () => {}; -function internalRecordableHistogram(handle) { - return ReflectConstruct( - function() { - markTransferMode(this, true, false); - this[kHandle] = handle; - this[kMap] = new SafeMap(); - this[kRecordable] = true; - }, [], RecordableHistogram); +ClonedHistogram.prototype[kDeserialize] = () => { }; + +function ClonedRecordableHistogram(handle) { + const histogram = new RecordableHistogram(kSkipThrow); + + markTransferMode(histogram, true, false); + histogram[kRecordable] = true; + histogram[kMap] = new SafeMap(); + histogram[kHandle] = handle; + histogram.constructor = RecordableHistogram; + + return histogram; +} + +ClonedRecordableHistogram.prototype[kDeserialize] = () => { }; + +function createRecordableHistogram(handle) { + return new ClonedRecordableHistogram(handle); } -internalRecordableHistogram.prototype[kDeserialize] = () => {}; /** * @param {{ @@ -363,14 +379,14 @@ function createHistogram(options = kEmptyObject) { throw new ERR_INVALID_ARG_VALUE.RangeError('options.highest', highest); } validateInteger(figures, 'options.figures', 1, 5); - return internalRecordableHistogram(new _Histogram(lowest, highest, figures)); + return createRecordableHistogram(new _Histogram(lowest, highest, figures)); } module.exports = { Histogram, RecordableHistogram, - internalHistogram, - internalRecordableHistogram, + ClonedHistogram, + ClonedRecordableHistogram, isHistogram, kDestroy, kHandle, diff --git a/lib/internal/http2/compat.js b/lib/internal/http2/compat.js index 2ab9c70ccd7402..7bf079900c652f 100644 --- a/lib/internal/http2/compat.js +++ b/lib/internal/http2/compat.js @@ -89,13 +89,13 @@ const assertValidHeader = hideStackFrames((name, value) => { if (name === '' || typeof name !== 'string' || StringPrototypeIncludes(name, ' ')) { - throw new ERR_INVALID_HTTP_TOKEN('Header name', name); + throw new ERR_INVALID_HTTP_TOKEN.HideStackFramesError('Header name', name); } if (isPseudoHeader(name)) { - throw new ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED(); + throw new ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED.HideStackFramesError(); } if (value === undefined || value === null) { - throw new ERR_HTTP2_INVALID_HEADER_VALUE(value, name); + throw new ERR_HTTP2_INVALID_HEADER_VALUE.HideStackFramesError(value, name); } if (!isConnectionHeaderAllowed(name, value)) { connectionHeaderMessageWarn(); diff --git a/lib/internal/http2/core.js b/lib/internal/http2/core.js index 909946816c7495..58d0783701286d 100644 --- a/lib/internal/http2/core.js +++ b/lib/internal/http2/core.js @@ -766,25 +766,25 @@ const setAndValidatePriorityOptions = hideStackFrames((options) => { if (options.weight === undefined) { options.weight = NGHTTP2_DEFAULT_WEIGHT; } else { - validateNumber(options.weight, 'options.weight'); + validateNumber.withoutStackTrace(options.weight, 'options.weight'); } if (options.parent === undefined) { options.parent = 0; } else { - validateNumber(options.parent, 'options.parent', 0); + validateNumber.withoutStackTrace(options.parent, 'options.parent', 0); } if (options.exclusive === undefined) { options.exclusive = false; } else { - validateBoolean(options.exclusive, 'options.exclusive'); + validateBoolean.withoutStackTrace(options.exclusive, 'options.exclusive'); } if (options.silent === undefined) { options.silent = false; } else { - validateBoolean(options.silent, 'options.silent'); + validateBoolean.withoutStackTrace(options.silent, 'options.silent'); } }); @@ -946,33 +946,33 @@ function pingCallback(cb) { // All settings are optional and may be left undefined const validateSettings = hideStackFrames((settings) => { if (settings === undefined) return; - assertWithinRange('headerTableSize', - settings.headerTableSize, - 0, kMaxInt); - assertWithinRange('initialWindowSize', - settings.initialWindowSize, - 0, kMaxInt); - assertWithinRange('maxFrameSize', - settings.maxFrameSize, - 16384, kMaxFrameSize); - assertWithinRange('maxConcurrentStreams', - settings.maxConcurrentStreams, - 0, kMaxStreams); - assertWithinRange('maxHeaderListSize', - settings.maxHeaderListSize, - 0, kMaxInt); - assertWithinRange('maxHeaderSize', - settings.maxHeaderSize, - 0, kMaxInt); + assertWithinRange.withoutStackTrace('headerTableSize', + settings.headerTableSize, + 0, kMaxInt); + assertWithinRange.withoutStackTrace('initialWindowSize', + settings.initialWindowSize, + 0, kMaxInt); + assertWithinRange.withoutStackTrace('maxFrameSize', + settings.maxFrameSize, + 16384, kMaxFrameSize); + assertWithinRange.withoutStackTrace('maxConcurrentStreams', + settings.maxConcurrentStreams, + 0, kMaxStreams); + assertWithinRange.withoutStackTrace('maxHeaderListSize', + settings.maxHeaderListSize, + 0, kMaxInt); + assertWithinRange.withoutStackTrace('maxHeaderSize', + settings.maxHeaderSize, + 0, kMaxInt); if (settings.enablePush !== undefined && typeof settings.enablePush !== 'boolean') { - throw new ERR_HTTP2_INVALID_SETTING_VALUE('enablePush', - settings.enablePush); + throw new ERR_HTTP2_INVALID_SETTING_VALUE.HideStackFramesError('enablePush', + settings.enablePush); } if (settings.enableConnectProtocol !== undefined && typeof settings.enableConnectProtocol !== 'boolean') { - throw new ERR_HTTP2_INVALID_SETTING_VALUE('enableConnectProtocol', - settings.enableConnectProtocol); + throw new ERR_HTTP2_INVALID_SETTING_VALUE.HideStackFramesError('enableConnectProtocol', + settings.enableConnectProtocol); } }); diff --git a/lib/internal/http2/util.js b/lib/internal/http2/util.js index 6d4a7f94b3d11a..a9d636c2f20581 100644 --- a/lib/internal/http2/util.js +++ b/lib/internal/http2/util.js @@ -8,7 +8,6 @@ const { Error, MathMax, Number, - ObjectDefineProperty, ObjectKeys, SafeSet, String, @@ -23,12 +22,11 @@ const { codes: { ERR_HTTP2_HEADER_SINGLE_VALUE, ERR_HTTP2_INVALID_CONNECTION_HEADERS, - ERR_HTTP2_INVALID_PSEUDOHEADER, + ERR_HTTP2_INVALID_PSEUDOHEADER: { HideStackFramesError: ERR_HTTP2_INVALID_PSEUDOHEADER }, ERR_HTTP2_INVALID_SETTING_VALUE, ERR_INVALID_ARG_TYPE, ERR_INVALID_HTTP_TOKEN, }, - captureLargerStackTrace, getMessage, hideStackFrames, kIsNodeError, @@ -552,14 +550,10 @@ class NghttpError extends Error { binding.nghttp2ErrorString(integerCode)); this.code = customErrorCode || 'ERR_HTTP2_ERROR'; this.errno = integerCode; - captureLargerStackTrace(this); - ObjectDefineProperty(this, kIsNodeError, { - __proto__: null, - value: true, - enumerable: false, - writable: false, - configurable: true, - }); + } + + get [kIsNodeError]() { + return true; } toString() { @@ -572,7 +566,7 @@ const assertIsObject = hideStackFrames((value, name, types) => { (value === null || typeof value !== 'object' || ArrayIsArray(value))) { - throw new ERR_INVALID_ARG_TYPE(name, types || 'Object', value); + throw new ERR_INVALID_ARG_TYPE.HideStackFramesError(name, types || 'Object', value); } }); @@ -580,7 +574,7 @@ const assertWithinRange = hideStackFrames( (name, value, min = 0, max = Infinity) => { if (value !== undefined && (typeof value !== 'number' || value < min || value > max)) { - throw new ERR_HTTP2_INVALID_SETTING_VALUE.RangeError( + throw new ERR_HTTP2_INVALID_SETTING_VALUE.RangeError.HideStackFramesError( name, value, min, max); } }, diff --git a/lib/internal/main/print_help.js b/lib/internal/main/print_help.js index edb861668cac3d..73227fbd9cb456 100644 --- a/lib/internal/main/print_help.js +++ b/lib/internal/main/print_help.js @@ -11,7 +11,7 @@ const { RegExpPrototypeSymbolReplace, StringPrototypeLocaleCompare, StringPrototypeSlice, - StringPrototypeTrimLeft, + StringPrototypeTrimStart, StringPrototypeRepeat, SafeMap, } = primordials; @@ -180,7 +180,7 @@ function format( else text += StringPrototypeRepeat(' ', firstColumn - displayName.length); - text += StringPrototypeTrimLeft( + text += StringPrototypeTrimStart( indent(fold(displayHelpText, secondColumn), firstColumn)) + '\n'; } diff --git a/lib/internal/main/test_runner.js b/lib/internal/main/test_runner.js index 7e6f3079a509a9..4f3f067cc74242 100644 --- a/lib/internal/main/test_runner.js +++ b/lib/internal/main/test_runner.js @@ -60,11 +60,14 @@ if (shardOption) { }; } +const timeout = getOptionValue('--test-timeout') || Infinity; + const options = { concurrency, inspectPort, watch: getOptionValue('--watch'), setup: setupTestReporters, + timeout, shard, }; debug('test runner configuration:', options); diff --git a/lib/internal/modules/esm/fetch_module.js b/lib/internal/modules/esm/fetch_module.js index 21b7456899604f..b3491d97cb99c7 100644 --- a/lib/internal/modules/esm/fetch_module.js +++ b/lib/internal/modules/esm/fetch_module.js @@ -134,19 +134,32 @@ function isRedirect(statusCode) { } } +/** + * @typedef AcceptMimes possible values of Accept header when fetching a module + * @property {Promise | string} default default Accept header value. + * @property {Record} json Accept header value when fetching module with importAttributes json. + * @type {AcceptMimes} + */ +const acceptMimes = { + __proto_: null, + default: '*/*', + json: 'application/json,*/*;charset=utf-8;q=0.5', +}; + /** * @param {URL} parsed * @returns {Promise | CacheEntry} */ -function fetchWithRedirects(parsed) { +function fetchWithRedirects(parsed, context) { const existing = cacheForGET.get(parsed.href); if (existing) { return existing; } const handler = parsed.protocol === 'http:' ? HTTPGet : HTTPSGet; const result = (async () => { + const accept = acceptMimes[context.importAttributes?.type] ?? acceptMimes.default; const req = handler(parsed, { - headers: { Accept: '*/*' }, + headers: { Accept: accept }, }); // Note that `once` is used here to handle `error` and that it hits the // `finally` on network error/timeout. @@ -162,7 +175,7 @@ function fetchWithRedirects(parsed) { 'cannot redirect to non-network location', ); } - const entry = await fetchWithRedirects(location); + const entry = await fetchWithRedirects(location, context); cacheForGET.set(parsed.href, entry); return entry; } @@ -262,7 +275,8 @@ async function isLocalAddress(hostname) { * @param {ESModuleContext} context * @returns {ReturnType} */ -function fetchModule(parsed, { parentURL }) { +function fetchModule(parsed, context) { + const { parentURL } = context; const { href } = parsed; const existing = cacheForGET.get(href); if (existing) { @@ -277,10 +291,10 @@ function fetchModule(parsed, { parentURL }) { 'http can only be used to load local resources (use https instead).', ); } - return fetchWithRedirects(parsed); + return fetchWithRedirects(parsed, context); }); } - return fetchWithRedirects(parsed); + return fetchWithRedirects(parsed, context); } module.exports = { diff --git a/lib/internal/modules/esm/initialize_import_meta.js b/lib/internal/modules/esm/initialize_import_meta.js index f55f60a5b7647a..818c99479cd068 100644 --- a/lib/internal/modules/esm/initialize_import_meta.js +++ b/lib/internal/modules/esm/initialize_import_meta.js @@ -1,6 +1,9 @@ 'use strict'; +const { StringPrototypeStartsWith } = primordials; const { getOptionValue } = require('internal/options'); +const { fileURLToPath } = require('internal/url'); +const { dirname } = require('path'); const experimentalImportMetaResolve = getOptionValue('--experimental-import-meta-resolve'); /** @@ -45,12 +48,20 @@ function createImportMetaResolve(defaultParentURL, loader, allowParentURL) { * @param {object} meta * @param {{url: string}} context * @param {typeof import('./loader.js').ModuleLoader} loader Reference to the current module loader - * @returns {{url: string, resolve?: Function}} + * @returns {{dirname?: string, filename?: string, url: string, resolve?: Function}} */ function initializeImportMeta(meta, context, loader) { const { url } = context; // Alphabetical + if (StringPrototypeStartsWith(url, 'file:') === true) { + // These only make sense for locally loaded modules, + // i.e. network modules are not supported. + const filePath = fileURLToPath(url); + meta.dirname = dirname(filePath); + meta.filename = filePath; + } + if (!loader || loader.allowImportMetaResolve) { meta.resolve = createImportMetaResolve(url, loader, experimentalImportMetaResolve); } diff --git a/lib/internal/modules/esm/load.js b/lib/internal/modules/esm/load.js index 6f9b73abd8a761..bcebc283828ad5 100644 --- a/lib/internal/modules/esm/load.js +++ b/lib/internal/modules/esm/load.js @@ -18,6 +18,8 @@ const policy = getOptionValue('--experimental-policy') ? null; const experimentalNetworkImports = getOptionValue('--experimental-network-imports'); +const defaultType = + getOptionValue('--experimental-default-type'); const { Buffer: { from: BufferFrom } } = require('buffer'); @@ -140,7 +142,7 @@ async function defaultLoad(url, context = kEmptyObject) { // Now that we have the source for the module, run `defaultGetFormat` again in case we detect ESM syntax. format ??= await defaultGetFormat(urlInstance, contextToPass); - if (format === 'commonjs' && contextToPass !== context) { + if (format === 'commonjs' && contextToPass !== context && defaultType !== 'module') { // For backward compatibility reasons, we need to discard the source in // order for the CJS loader to re-fetch it. source = null; diff --git a/lib/internal/modules/esm/resolve.js b/lib/internal/modules/esm/resolve.js index 58e7df07ca5275..06a34c11254a2f 100644 --- a/lib/internal/modules/esm/resolve.js +++ b/lib/internal/modules/esm/resolve.js @@ -75,6 +75,9 @@ const emittedPackageWarnings = new SafeSet(); * @param {string} base - The URL of the module that imported the package. */ function emitTrailingSlashPatternDeprecation(match, pjsonUrl, base) { + if (process.noDeprecation) { + return; + } const pjsonPath = fileURLToPath(pjsonUrl); if (emittedPackageWarnings.has(pjsonPath + '|' + match)) { return; } emittedPackageWarnings.add(pjsonPath + '|' + match); @@ -101,6 +104,9 @@ const doubleSlashRegEx = /[/\\][/\\]/; * @param {boolean} isTarget - Whether the target is a module. */ function emitInvalidSegmentDeprecation(target, request, match, pjsonUrl, internal, base, isTarget) { + if (process.noDeprecation) { + return; + } const pjsonPath = fileURLToPath(pjsonUrl); const double = RegExpPrototypeExec(doubleSlashRegEx, isTarget ? target : request) !== null; process.emitWarning( @@ -123,6 +129,9 @@ function emitInvalidSegmentDeprecation(target, request, match, pjsonUrl, interna * @param {string} [main] - The "main" field from the package.json file. */ function emitLegacyIndexDeprecation(url, packageJSONUrl, base, main) { + if (process.noDeprecation) { + return; + } const format = defaultGetFormatWithoutErrors(url); if (format !== 'module') { return; } const path = fileURLToPath(url); diff --git a/lib/internal/modules/esm/utils.js b/lib/internal/modules/esm/utils.js index 9d3e1aefbe3a31..3fe1daabe98f1d 100644 --- a/lib/internal/modules/esm/utils.js +++ b/lib/internal/modules/esm/utils.js @@ -113,6 +113,16 @@ function getConditionsSet(conditions) { */ const moduleRegistries = new SafeWeakMap(); +/** + * @typedef {ContextifyScript|Function|ModuleWrap|ContextifiedObject} Referrer + * A referrer can be a Script Record, a Cyclic Module Record, or a Realm Record + * as defined in https://tc39.es/ecma262/#sec-HostLoadImportedModule. + * + * In Node.js, a referrer is represented by a wrapper object of these records. + * A referrer object has a field |host_defined_option_symbol| initialized with + * a symbol. + */ + /** * V8 would make sure that as long as import() can still be initiated from * the referrer, the symbol referenced by |host_defined_option_symbol| should @@ -127,7 +137,7 @@ const moduleRegistries = new SafeWeakMap(); * referrer wrap is still around and can be passed into the callbacks. * 2 is only there so that we can get the id symbol to configure the * weak map. - * @param {ModuleWrap|ContextifyScript|Function} referrer The referrer to + * @param {Referrer} referrer The referrer to * get the id symbol from. This is different from callbackReferrer which * could be set by the caller. * @param {ModuleRegistry} registry @@ -163,20 +173,20 @@ function initializeImportMetaObject(symbol, meta) { /** * Asynchronously imports a module dynamically using a callback function. The native callback. - * @param {symbol} symbol - Reference to the module. + * @param {symbol} referrerSymbol - Referrer symbol of the registered script, function, module, or contextified object. * @param {string} specifier - The module specifier string. * @param {Record} attributes - The import attributes object. * @returns {Promise} - The imported module object. * @throws {ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING} - If the callback function is missing. */ -async function importModuleDynamicallyCallback(symbol, specifier, attributes) { - if (moduleRegistries.has(symbol)) { - const { importModuleDynamically, callbackReferrer } = moduleRegistries.get(symbol); +async function importModuleDynamicallyCallback(referrerSymbol, specifier, attributes) { + if (moduleRegistries.has(referrerSymbol)) { + const { importModuleDynamically, callbackReferrer } = moduleRegistries.get(referrerSymbol); if (importModuleDynamically !== undefined) { return importModuleDynamically(specifier, callbackReferrer, attributes); } } - if (symbol === vm_dynamic_import_missing_flag) { + if (referrerSymbol === vm_dynamic_import_missing_flag) { throw new ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG(); } throw new ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING(); diff --git a/lib/internal/navigator.js b/lib/internal/navigator.js index bfd2813414b26d..db956fd02aba57 100644 --- a/lib/internal/navigator.js +++ b/lib/internal/navigator.js @@ -2,9 +2,18 @@ const { ObjectDefineProperties, + StringPrototypeIndexOf, + StringPrototypeSlice, + StringPrototypeToUpperCase, + ObjectFreeze, + globalThis, Symbol, } = primordials; +const { + Intl, +} = globalThis; + const { ERR_ILLEGAL_CONSTRUCTOR, } = require('internal/errors').codes; @@ -20,10 +29,59 @@ const { const kInitialize = Symbol('kInitialize'); const nodeVersion = process.version; +/** + * @param {object} process + * @param {string} process.platform + * @param {string} process.arch + * @returns {string} + */ +function getNavigatorPlatform(process) { + if (process.platform === 'darwin') { + // On macOS, modern browsers return 'MacIntel' even if running on Apple Silicon. + return 'MacIntel'; + } else if (process.platform === 'win32') { + // On Windows, modern browsers return 'Win32' even if running on a 64-bit version of Windows. + // https://developer.mozilla.org/en-US/docs/Web/API/Navigator/platform#usage_notes + return 'Win32'; + } else if (process.platform === 'linux') { + if (process.arch === 'ia32') { + return 'Linux i686'; + } else if (process.arch === 'x64') { + return 'Linux x86_64'; + } + return `Linux ${process.arch}`; + } else if (process.platform === 'freebsd') { + if (process.arch === 'ia32') { + return 'FreeBSD i386'; + } else if (process.arch === 'x64') { + return 'FreeBSD amd64'; + } + return `FreeBSD ${process.arch}`; + } else if (process.platform === 'openbsd') { + if (process.arch === 'ia32') { + return 'OpenBSD i386'; + } else if (process.arch === 'x64') { + return 'OpenBSD amd64'; + } + return `OpenBSD ${process.arch}`; + } else if (process.platform === 'sunos') { + if (process.arch === 'ia32') { + return 'SunOS i86pc'; + } + return `SunOS ${process.arch}`; + } else if (process.platform === 'aix') { + return 'AIX'; + } + return `${StringPrototypeToUpperCase(process.platform[0])}${StringPrototypeSlice(process.platform, 1)} ${process.arch}`; +} + class Navigator { // Private properties are used to avoid brand validations. #availableParallelism; - #userAgent = `Node.js/${nodeVersion.slice(1, nodeVersion.indexOf('.'))}`; + #userAgent = `Node.js/${StringPrototypeSlice(nodeVersion, 1, StringPrototypeIndexOf(nodeVersion, '.'))}`; + #platform = getNavigatorPlatform(process); + #language = Intl?.Collator().resolvedOptions().locale || 'en-US'; + #languages = ObjectFreeze([this.#language]); constructor() { if (arguments[0] === kInitialize) { @@ -40,20 +98,45 @@ class Navigator { return this.#availableParallelism; } + /** + * @return {string} + */ + get language() { + return this.#language; + } + + /** + * @return {Array} + */ + get languages() { + return this.#languages; + } + /** * @return {string} */ get userAgent() { return this.#userAgent; } + + /** + * @return {string} + */ + get platform() { + return this.#platform; + } } ObjectDefineProperties(Navigator.prototype, { hardwareConcurrency: kEnumerableProperty, + language: kEnumerableProperty, + languages: kEnumerableProperty, userAgent: kEnumerableProperty, + platform: kEnumerableProperty, }); module.exports = { + getNavigatorPlatform, navigator: new Navigator(kInitialize), Navigator, }; diff --git a/lib/internal/net.js b/lib/internal/net.js index 8b04d5f226eb17..0f2fc5dfff5ea8 100644 --- a/lib/internal/net.js +++ b/lib/internal/net.js @@ -58,7 +58,7 @@ function makeSyncWrite(fd) { const ctx = {}; writeBuffer(fd, chunk, 0, chunk.length, null, undefined, ctx); if (ctx.errno !== undefined) { - const ex = errors.uvException(ctx); + const ex = new errors.UVException(ctx); ex.errno = ctx.errno; return cb(ex); } diff --git a/lib/internal/perf/usertiming.js b/lib/internal/perf/usertiming.js index ff417d94700550..cb7cfdd8596369 100644 --- a/lib/internal/perf/usertiming.js +++ b/lib/internal/perf/usertiming.js @@ -31,7 +31,7 @@ const { }, } = require('internal/errors'); -const { structuredClone } = require('internal/structured_clone'); +const { structuredClone } = internalBinding('messaging'); const { lazyDOMException, kEnumerableProperty, diff --git a/lib/internal/priority_queue.js b/lib/internal/priority_queue.js index 22f89a90ef07f1..e61cc04c101b7c 100644 --- a/lib/internal/priority_queue.js +++ b/lib/internal/priority_queue.js @@ -38,6 +38,10 @@ module.exports = class PriorityQueue { return this.#heap[1]; } + peekBottom() { + return this.#heap[this.#size]; + } + percolateDown(pos) { const compare = this.#compare; const setPosition = this.#setPosition; diff --git a/lib/internal/process/esm_loader.js b/lib/internal/process/esm_loader.js index a3451ddab307f2..47c909c9e55435 100644 --- a/lib/internal/process/esm_loader.js +++ b/lib/internal/process/esm_loader.js @@ -1,9 +1,5 @@ 'use strict'; -const { - SafePromiseAllReturnVoid, -} = primordials; - const { createModuleLoader } = require('internal/modules/esm/loader'); const { getOptionValue } = require('internal/options'); const { @@ -23,11 +19,9 @@ module.exports = { const userImports = getOptionValue('--import'); if (userImports.length > 0) { const parentURL = getCWDURL().href; - await SafePromiseAllReturnVoid(userImports, (specifier) => esmLoader.import( - specifier, - parentURL, - kEmptyObject, - )); + for (let i = 0; i < userImports.length; i++) { + await esmLoader.import(userImports[i], parentURL, kEmptyObject); + } } else { esmLoader.forceLoadHooks(); } diff --git a/lib/internal/process/per_thread.js b/lib/internal/process/per_thread.js index ce4822af019d5f..fb8014dcb39178 100644 --- a/lib/internal/process/per_thread.js +++ b/lib/internal/process/per_thread.js @@ -32,7 +32,7 @@ const { } = primordials; const { - errnoException, + ErrnoException, codes: { ERR_ASSERTION, ERR_INVALID_ARG_TYPE, @@ -231,7 +231,7 @@ function wrapProcessMethods(binding) { } if (err) - throw errnoException(err, 'kill'); + throw new ErrnoException(err, 'kill'); return true; } diff --git a/lib/internal/process/pre_execution.js b/lib/internal/process/pre_execution.js index 917ba90a1c8bbb..c535f8e8ed8a5d 100644 --- a/lib/internal/process/pre_execution.js +++ b/lib/internal/process/pre_execution.js @@ -77,6 +77,7 @@ function prepareExecution(options) { const mainEntry = patchProcessObject(expandArgv1); setupTraceCategoryState(); setupInspectorHooks(); + setupNavigator(); setupWarningHandler(); setupUndici(); setupWebCrypto(); @@ -336,6 +337,19 @@ function setupUndici() { } } +// TODO(aduh95): move this to internal/bootstrap/web/* when the CLI flag is +// removed. +function setupNavigator() { + if (getEmbedderOptions().noBrowserGlobals || + getOptionValue('--no-experimental-global-navigator')) { + return; + } + + // https://html.spec.whatwg.org/multipage/system-state.html#the-navigator-object + exposeLazyInterfaces(globalThis, 'internal/navigator', ['Navigator']); + defineReplaceableLazyAttribute(globalThis, 'internal/navigator', ['navigator'], false); +} + // TODO(aduh95): move this to internal/bootstrap/web/* when the CLI flag is // removed. function setupWebCrypto() { diff --git a/lib/internal/process/signal.js b/lib/internal/process/signal.js index 548f19a65c7602..b636a4be086007 100644 --- a/lib/internal/process/signal.js +++ b/lib/internal/process/signal.js @@ -6,7 +6,7 @@ const { } = primordials; const { - errnoException, + ErrnoException, } = require('internal/errors'); const { signals } = internalBinding('constants').os; @@ -33,7 +33,7 @@ function startListeningIfSignal(type) { const err = wrap.start(signum); if (err) { wrap.close(); - throw errnoException(err, 'uv_signal_start'); + throw new ErrnoException(err, 'uv_signal_start'); } signalWraps.set(type, wrap); diff --git a/lib/internal/process/warning.js b/lib/internal/process/warning.js index 3ce00004dab476..4aa86b9df58a87 100644 --- a/lib/internal/process/warning.js +++ b/lib/internal/process/warning.js @@ -127,6 +127,11 @@ function onWarning(warning) { // process.emitWarning(str[, type[, code]][, ctor]) // process.emitWarning(str[, options]) function emitWarning(warning, type, code, ctor) { + // Fast path to avoid memory allocation, + // this doesn't eliminate the other if a few lines below + if (process.noDeprecation && type === 'DeprecationWarning') { + return; + } let detail; if (type !== null && typeof type === 'object' && !ArrayIsArray(type)) { ctor = type.ctor; diff --git a/lib/internal/stream_base_commons.js b/lib/internal/stream_base_commons.js index 1555956affe6c3..b692e3c30c3869 100644 --- a/lib/internal/stream_base_commons.js +++ b/lib/internal/stream_base_commons.js @@ -17,7 +17,7 @@ const { } = internalBinding('stream_wrap'); const { UV_EOF } = internalBinding('uv'); const { - errnoException, + ErrnoException, } = require('internal/errors'); const { owner_symbol } = require('internal/async_hooks').symbols; const { @@ -91,7 +91,7 @@ function onWriteComplete(status) { // TODO (ronag): This should be moved before if(stream.destroyed) // in order to avoid swallowing error. if (status < 0) { - const ex = errnoException(status, 'write', this.error); + const ex = new ErrnoException(status, 'write', this.error); if (typeof this.callback === 'function') this.callback(ex); else @@ -157,7 +157,7 @@ function afterWriteDispatched(req, err, cb) { req.async = !!streamBaseState[kLastWriteWasAsync]; if (err !== 0) - return cb(errnoException(err, 'write', req.error)); + return cb(new ErrnoException(err, 'write', req.error)); if (!req.async && typeof req.callback === 'function') { req.callback(); @@ -194,7 +194,7 @@ function onStreamRead(arrayBuffer) { if (!stream.destroyed) { const err = handle.readStop(); if (err) - stream.destroy(errnoException(err, 'read')); + stream.destroy(new ErrnoException(err, 'read')); } } @@ -214,7 +214,7 @@ function onStreamRead(arrayBuffer) { if (nread !== UV_EOF) { // CallJSOnreadMethod expects the return value to be a buffer. // Ref: https://github.com/nodejs/node/pull/34375 - stream.destroy(errnoException(nread, 'read')); + stream.destroy(new ErrnoException(nread, 'read')); return; } diff --git a/lib/internal/streams/buffer_list.js b/lib/internal/streams/buffer_list.js deleted file mode 100644 index 4629bdbf165e4f..00000000000000 --- a/lib/internal/streams/buffer_list.js +++ /dev/null @@ -1,181 +0,0 @@ -'use strict'; - -const { - StringPrototypeSlice, - SymbolIterator, - TypedArrayPrototypeSet, - Uint8Array, -} = primordials; - -const { Buffer } = require('buffer'); -const { inspect } = require('internal/util/inspect'); - -module.exports = class BufferList { - constructor() { - this.head = null; - this.tail = null; - this.length = 0; - } - - push(v) { - const entry = { data: v, next: null }; - if (this.length > 0) - this.tail.next = entry; - else - this.head = entry; - this.tail = entry; - ++this.length; - } - - unshift(v) { - const entry = { data: v, next: this.head }; - if (this.length === 0) - this.tail = entry; - this.head = entry; - ++this.length; - } - - shift() { - if (this.length === 0) - return; - const ret = this.head.data; - if (this.length === 1) - this.head = this.tail = null; - else - this.head = this.head.next; - --this.length; - return ret; - } - - clear() { - this.head = this.tail = null; - this.length = 0; - } - - join(s) { - if (this.length === 0) - return ''; - let p = this.head; - let ret = '' + p.data; - while ((p = p.next) !== null) - ret += s + p.data; - return ret; - } - - concat(n) { - if (this.length === 0) - return Buffer.alloc(0); - const ret = Buffer.allocUnsafe(n >>> 0); - let p = this.head; - let i = 0; - while (p) { - TypedArrayPrototypeSet(ret, p.data, i); - i += p.data.length; - p = p.next; - } - return ret; - } - - // Consumes a specified amount of bytes or characters from the buffered data. - consume(n, hasStrings) { - const data = this.head.data; - if (n < data.length) { - // `slice` is the same for buffers and strings. - const slice = data.slice(0, n); - this.head.data = data.slice(n); - return slice; - } - if (n === data.length) { - // First chunk is a perfect match. - return this.shift(); - } - // Result spans more than one buffer. - return hasStrings ? this._getString(n) : this._getBuffer(n); - } - - first() { - return this.head.data; - } - - *[SymbolIterator]() { - for (let p = this.head; p; p = p.next) { - yield p.data; - } - } - - // Consumes a specified amount of characters from the buffered data. - _getString(n) { - let ret = ''; - let p = this.head; - let c = 0; - do { - const str = p.data; - if (n > str.length) { - ret += str; - n -= str.length; - } else { - if (n === str.length) { - ret += str; - ++c; - if (p.next) - this.head = p.next; - else - this.head = this.tail = null; - } else { - ret += StringPrototypeSlice(str, 0, n); - this.head = p; - p.data = StringPrototypeSlice(str, n); - } - break; - } - ++c; - } while ((p = p.next) !== null); - this.length -= c; - return ret; - } - - // Consumes a specified amount of bytes from the buffered data. - _getBuffer(n) { - const ret = Buffer.allocUnsafe(n); - const retLen = n; - let p = this.head; - let c = 0; - do { - const buf = p.data; - if (n > buf.length) { - TypedArrayPrototypeSet(ret, buf, retLen - n); - n -= buf.length; - } else { - if (n === buf.length) { - TypedArrayPrototypeSet(ret, buf, retLen - n); - ++c; - if (p.next) - this.head = p.next; - else - this.head = this.tail = null; - } else { - TypedArrayPrototypeSet(ret, - new Uint8Array(buf.buffer, buf.byteOffset, n), - retLen - n); - this.head = p; - p.data = buf.slice(n); - } - break; - } - ++c; - } while ((p = p.next) !== null); - this.length -= c; - return ret; - } - - // Make sure the linked list only shows the minimal necessary information. - [inspect.custom](_, options) { - return inspect(this, { - ...options, - // Only inspect one level. - depth: 0, - // It should not recurse. - customInspect: false, - }); - } -}; diff --git a/lib/internal/streams/destroy.js b/lib/internal/streams/destroy.js index cfb49f2c7c7273..28802cae5eff32 100644 --- a/lib/internal/streams/destroy.js +++ b/lib/internal/streams/destroy.js @@ -15,6 +15,15 @@ const { isDestroyed, isFinished, isServerRequest, + kState, + kErrorEmitted, + kEmitClose, + kClosed, + kCloseEmitted, + kConstructed, + kDestroyed, + kAutoDestroy, + kErrored, } = require('internal/streams/utils'); const kDestroy = Symbol('kDestroy'); @@ -42,7 +51,10 @@ function destroy(err, cb) { // With duplex streams we use the writable side for state. const s = w || r; - if (w?.destroyed || r?.destroyed) { + if ( + (w && (w[kState] & kDestroyed) !== 0) || + (r && (r[kState] & kDestroyed) !== 0) + ) { if (typeof cb === 'function') { cb(); } @@ -56,14 +68,14 @@ function destroy(err, cb) { checkError(err, w, r); if (w) { - w.destroyed = true; + w[kState] |= kDestroyed; } if (r) { - r.destroyed = true; + r[kState] |= kDestroyed; } // If still constructing then defer calling _destroy. - if (!s.constructed) { + if ((s[kState] & kConstructed) === 0) { this.once(kDestroy, function(er) { _destroy(this, aggregateTwoErrors(er, err), cb); }); @@ -89,10 +101,10 @@ function _destroy(self, err, cb) { checkError(err, w, r); if (w) { - w.closed = true; + w[kState] |= kClosed; } if (r) { - r.closed = true; + r[kState] |= kClosed; } if (typeof cb === 'function') { @@ -122,13 +134,16 @@ function emitCloseNT(self) { const w = self._writableState; if (w) { - w.closeEmitted = true; + w[kState] |= kCloseEmitted; } if (r) { - r.closeEmitted = true; + r[kState] |= kCloseEmitted; } - if (w?.emitClose || r?.emitClose) { + if ( + (w && (w[kState] & kEmitClose) !== 0) || + (r && (r[kState] & kEmitClose) !== 0) + ) { self.emit('close'); } } @@ -137,15 +152,18 @@ function emitErrorNT(self, err) { const r = self._readableState; const w = self._writableState; - if (w?.errorEmitted || r?.errorEmitted) { + if ( + (w && (w[kState] & kErrorEmitted) !== 0) || + (r && (r[kState] & kErrorEmitted) !== 0) + ) { return; } if (w) { - w.errorEmitted = true; + w[kState] |= kErrorEmitted; } if (r) { - r.errorEmitted = true; + r[kState] |= kErrorEmitted; } self.emit('error', err); @@ -192,20 +210,26 @@ function errorOrDestroy(stream, err, sync) { const r = stream._readableState; const w = stream._writableState; - if (w?.destroyed || r?.destroyed) { + if ( + (w && (w[kState] ? (w[kState] & kDestroyed) !== 0 : w.destroyed)) || + (r && (r[kState] ? (r[kState] & kDestroyed) !== 0 : r.destroyed)) + ) { return this; } - if (r?.autoDestroy || w?.autoDestroy) + if ( + (r && (r[kState] & kAutoDestroy) !== 0) || + (w && (w[kState] & kAutoDestroy) !== 0) + ) { stream.destroy(err); - else if (err) { + } else if (err) { // Avoid V8 leak, https://github.com/nodejs/node/pull/34103#issuecomment-652002364 err.stack; // eslint-disable-line no-unused-expressions - if (w && !w.errored) { + if (w && (w[kState] & kErrored) === 0) { w.errored = err; } - if (r && !r.errored) { + if (r && (r[kState] & kErrored) === 0) { r.errored = err; } if (sync) { @@ -225,10 +249,10 @@ function construct(stream, cb) { const w = stream._writableState; if (r) { - r.constructed = false; + r[kState] &= ~kConstructed; } if (w) { - w.constructed = false; + w[kState] &= ~kConstructed; } stream.once(kConstruct, cb); @@ -256,10 +280,10 @@ function constructNT(stream) { const s = w || r; if (r) { - r.constructed = true; + r[kState] |= kConstructed; } if (w) { - w.constructed = true; + w[kState] |= kConstructed; } if (s.destroyed) { diff --git a/lib/internal/streams/duplex.js b/lib/internal/streams/duplex.js index 799eb5a32022da..35f6ff4b199de1 100644 --- a/lib/internal/streams/duplex.js +++ b/lib/internal/streams/duplex.js @@ -35,9 +35,17 @@ const { module.exports = Duplex; +const Stream = require('internal/streams/legacy').Stream; const Readable = require('internal/streams/readable'); const Writable = require('internal/streams/writable'); +const { + addAbortSignal, +} = require('internal/streams/add-abort-signal'); + +const destroyImpl = require('internal/streams/destroy'); +const { kOnConstructed } = require('internal/streams/utils'); + ObjectSetPrototypeOf(Duplex.prototype, Readable.prototype); ObjectSetPrototypeOf(Duplex, Readable); @@ -55,8 +63,26 @@ function Duplex(options) { if (!(this instanceof Duplex)) return new Duplex(options); - Readable.call(this, options); - Writable.call(this, options); + this._events ??= { + close: undefined, + error: undefined, + prefinish: undefined, + finish: undefined, + drain: undefined, + data: undefined, + end: undefined, + readable: undefined, + // Skip uncommon events... + // pause: undefined, + // resume: undefined, + // pipe: undefined, + // unpipe: undefined, + // [destroyImpl.kConstruct]: undefined, + // [destroyImpl.kDestroy]: undefined, + }; + + this._readableState = new Readable.ReadableState(options, this, true); + this._writableState = new Writable.WritableState(options, this, true); if (options) { this.allowHalfOpen = options.allowHalfOpen !== false; @@ -73,9 +99,39 @@ function Duplex(options) { this._writableState.ended = true; this._writableState.finished = true; } + + if (typeof options.read === 'function') + this._read = options.read; + + if (typeof options.write === 'function') + this._write = options.write; + + if (typeof options.writev === 'function') + this._writev = options.writev; + + if (typeof options.destroy === 'function') + this._destroy = options.destroy; + + if (typeof options.final === 'function') + this._final = options.final; + + if (typeof options.construct === 'function') + this._construct = options.construct; + + if (options.signal) + addAbortSignal(options.signal, this); } else { this.allowHalfOpen = true; } + + Stream.call(this, options); + + if (this._construct != null) { + destroyImpl.construct(this, () => { + this._readableState[kOnConstructed](this); + this._writableState[kOnConstructed](this); + }); + } } ObjectDefineProperties(Duplex.prototype, { diff --git a/lib/internal/streams/from.js b/lib/internal/streams/from.js index c272a01f418dce..aa7e031d3e48d4 100644 --- a/lib/internal/streams/from.js +++ b/lib/internal/streams/from.js @@ -36,6 +36,7 @@ function from(Readable, iterable, opts) { throw new ERR_INVALID_ARG_TYPE('iterable', ['Iterable'], iterable); } + const readable = new Readable({ objectMode: true, highWaterMark: 1, @@ -46,11 +47,19 @@ function from(Readable, iterable, opts) { // Flag to protect against _read // being called before last iteration completion. let reading = false; + let isAsyncValues = false; readable._read = function() { if (!reading) { reading = true; - next(); + + if (isAsync) { + nextAsync(); + } else if (isAsyncValues) { + nextSyncWithAsyncValues(); + } else { + nextSyncWithSyncValues(); + } } }; @@ -78,29 +87,115 @@ function from(Readable, iterable, opts) { } } - async function next() { + // There are a lot of duplication here, it's done on purpose for performance + // reasons - avoid await when not needed. + + function nextSyncWithSyncValues() { + for (;;) { + try { + const { value, done } = iterator.next(); + + if (done) { + readable.push(null); + return; + } + + if (value && + typeof value.then === 'function') { + return changeToAsyncValues(value); + } + + if (value === null) { + reading = false; + throw new ERR_STREAM_NULL_VALUES(); + } + + if (readable.push(value)) { + continue; + } + + reading = false; + } catch (err) { + readable.destroy(err); + } + break; + } + } + + async function changeToAsyncValues(value) { + isAsyncValues = true; + + try { + const res = await value; + + if (res === null) { + reading = false; + throw new ERR_STREAM_NULL_VALUES(); + } + + if (readable.push(res)) { + nextSyncWithAsyncValues(); + return; + } + + reading = false; + } catch (err) { + readable.destroy(err); + } + } + + async function nextSyncWithAsyncValues() { for (;;) { try { - const { value, done } = isAsync ? - await iterator.next() : - iterator.next(); + const { value, done } = iterator.next(); if (done) { readable.push(null); - } else { - const res = (value && - typeof value.then === 'function') ? - await value : - value; - if (res === null) { - reading = false; - throw new ERR_STREAM_NULL_VALUES(); - } else if (readable.push(res)) { - continue; - } else { - reading = false; - } + return; + } + + const res = (value && + typeof value.then === 'function') ? + await value : + value; + + if (res === null) { + reading = false; + throw new ERR_STREAM_NULL_VALUES(); } + + if (readable.push(res)) { + continue; + } + + reading = false; + } catch (err) { + readable.destroy(err); + } + break; + } + } + + async function nextAsync() { + for (;;) { + try { + const { value, done } = await iterator.next(); + + if (done) { + readable.push(null); + return; + } + + if (value === null) { + reading = false; + throw new ERR_STREAM_NULL_VALUES(); + } + + if (readable.push(value)) { + continue; + } + + reading = false; } catch (err) { readable.destroy(err); } diff --git a/lib/internal/streams/readable.js b/lib/internal/streams/readable.js index a129b1b6f4b75d..3800399c82ad62 100644 --- a/lib/internal/streams/readable.js +++ b/lib/internal/streams/readable.js @@ -31,9 +31,11 @@ const { ObjectSetPrototypeOf, Promise, SafeSet, + Symbol, SymbolAsyncDispose, SymbolAsyncIterator, - Symbol, + SymbolSpecies, + TypedArrayPrototypeSet, } = primordials; module.exports = Readable; @@ -51,12 +53,25 @@ const eos = require('internal/streams/end-of-stream'); let debug = require('internal/util/debuglog').debuglog('stream', (fn) => { debug = fn; }); -const BufferList = require('internal/streams/buffer_list'); const destroyImpl = require('internal/streams/destroy'); const { getHighWaterMark, getDefaultHighWaterMark, } = require('internal/streams/state'); +const { + kState, + // bitfields + kObjectMode, + kErrorEmitted, + kAutoDestroy, + kEmitClose, + kDestroyed, + kClosed, + kCloseEmitted, + kErrored, + kConstructed, + kOnConstructed, +} = require('internal/streams/utils'); const { aggregateTwoErrors, @@ -72,7 +87,7 @@ const { } = require('internal/errors'); const { validateObject } = require('internal/validators'); -const kState = Symbol('kState'); +const FastBuffer = Buffer[SymbolSpecies]; const { StringDecoder } = require('string_decoder'); const from = require('internal/streams/from'); @@ -88,26 +103,17 @@ const kDefaultEncodingValue = Symbol('kDefaultEncodingValue'); const kDecoderValue = Symbol('kDecoderValue'); const kEncodingValue = Symbol('kEncodingValue'); -const kObjectMode = 1 << 0; -const kEnded = 1 << 1; -const kEndEmitted = 1 << 2; -const kReading = 1 << 3; -const kConstructed = 1 << 4; -const kSync = 1 << 5; -const kNeedReadable = 1 << 6; -const kEmittedReadable = 1 << 7; -const kReadableListening = 1 << 8; -const kResumeScheduled = 1 << 9; -const kErrorEmitted = 1 << 10; -const kEmitClose = 1 << 11; -const kAutoDestroy = 1 << 12; -const kDestroyed = 1 << 13; -const kClosed = 1 << 14; -const kCloseEmitted = 1 << 15; -const kMultiAwaitDrain = 1 << 16; -const kReadingMore = 1 << 17; -const kDataEmitted = 1 << 18; -const kErrored = 1 << 19; +const kEnded = 1 << 9; +const kEndEmitted = 1 << 10; +const kReading = 1 << 11; +const kSync = 1 << 12; +const kNeedReadable = 1 << 13; +const kEmittedReadable = 1 << 14; +const kReadableListening = 1 << 15; +const kResumeScheduled = 1 << 16; +const kMultiAwaitDrain = 1 << 17; +const kReadingMore = 1 << 18; +const kDataEmitted = 1 << 19; const kDefaultUTF8Encoding = 1 << 20; const kDecoder = 1 << 21; const kEncoding = 1 << 22; @@ -115,6 +121,7 @@ const kHasFlowing = 1 << 23; const kFlowing = 1 << 24; const kHasPaused = 1 << 25; const kPaused = 1 << 26; +const kDataListening = 1 << 27; // TODO(benjamingr) it is likely slower to do it this way than with free functions function makeBitMapDescriptor(bit) { @@ -251,20 +258,14 @@ ObjectDefineProperties(ReadableState.prototype, { function ReadableState(options, stream, isDuplex) { - // Duplex streams are both readable and writable, but share - // the same options object. - // However, some cases require setting options to different - // values for the readable and the writable sides of the duplex stream. - // These options can be provided separately as readableXXX and writableXXX. - if (typeof isDuplex !== 'boolean') - isDuplex = stream instanceof Stream.Duplex; - // Bit map field to store ReadableState more effciently with 1 bit per field // instead of a V8 slot per field. this[kState] = kEmitClose | kAutoDestroy | kConstructed | kSync; + // Object stream flag. Used to make read(n) ignore n and to // make all the buffer merging and length checks go away. - if (options && options.objectMode) this[kState] |= kObjectMode; + if (options && options.objectMode) + this[kState] |= kObjectMode; if (isDuplex && options && options.readableObjectMode) this[kState] |= kObjectMode; @@ -275,10 +276,8 @@ function ReadableState(options, stream, isDuplex) { getHighWaterMark(this, options, 'readableHighWaterMark', isDuplex) : getDefaultHighWaterMark(false); - // A linked list is used to store data chunks instead of an array because the - // linked list can remove elements from the beginning faster than - // array.shift(). - this.buffer = new BufferList(); + this.buffer = []; + this.bufferIndex = 0; this.length = 0; this.pipes = []; @@ -310,16 +309,32 @@ function ReadableState(options, stream, isDuplex) { } } +ReadableState.prototype[kOnConstructed] = function onConstructed(stream) { + if ((this[kState] & kNeedReadable) !== 0) { + maybeReadMore(stream, this); + } +}; function Readable(options) { if (!(this instanceof Readable)) return new Readable(options); - // Checking for a Stream.Duplex instance is faster here instead of inside - // the ReadableState constructor, at least with V8 6.5. - const isDuplex = this instanceof Stream.Duplex; + this._events ??= { + close: undefined, + error: undefined, + data: undefined, + end: undefined, + readable: undefined, + // Skip uncommon events... + // pause: undefined, + // resume: undefined, + // pipe: undefined, + // unpipe: undefined, + // [destroyImpl.kConstruct]: undefined, + // [destroyImpl.kDestroy]: undefined, + }; - this._readableState = new ReadableState(options, this, isDuplex); + this._readableState = new ReadableState(options, this, false); if (options) { if (typeof options.read === 'function') @@ -331,17 +346,17 @@ function Readable(options) { if (typeof options.construct === 'function') this._construct = options.construct; - if (options.signal && !isDuplex) + if (options.signal) addAbortSignal(options.signal, this); } Stream.call(this, options); - destroyImpl.construct(this, () => { - if (this._readableState.needReadable) { - maybeReadMore(this, this._readableState); - } - }); + if (this._construct != null) { + destroyImpl.construct(this, () => { + this._readableState[kOnConstructed](this); + }); + } } Readable.prototype.destroy = destroyImpl.destroy; @@ -435,7 +450,7 @@ function readableAddChunkUnshiftObjectMode(stream, state, chunk) { function readableAddChunkUnshiftValue(stream, state, chunk) { if ((state[kState] & kEndEmitted) !== 0) errorOrDestroy(stream, new ERR_STREAM_UNSHIFT_AFTER_END_EVENT()); - else if (state.destroyed || state.errored) + else if ((state[kState] & (kDestroyed | kErrored)) !== 0) return false; else addChunk(stream, state, chunk, true); @@ -531,8 +546,7 @@ function canPushMore(state) { } function addChunk(stream, state, chunk, addToFront) { - if ((state[kState] & (kFlowing | kSync)) === kFlowing && state.length === 0 && - stream.listenerCount('data') > 0) { + if ((state[kState] & (kFlowing | kSync | kDataListening)) === (kFlowing | kDataListening) && state.length === 0) { // Use the guard to avoid creating `Set()` repeatedly // when we have multiple pipes. if ((state[kState] & kMultiAwaitDrain) !== 0) { @@ -546,10 +560,15 @@ function addChunk(stream, state, chunk, addToFront) { } else { // Update the buffer info. state.length += (state[kState] & kObjectMode) !== 0 ? 1 : chunk.length; - if (addToFront) - state.buffer.unshift(chunk); - else + if (addToFront) { + if (state.bufferIndex > 0) { + state.buffer[--state.bufferIndex] = chunk; + } else { + state.buffer.unshift(chunk); // Slow path + } + } else { state.buffer.push(chunk); + } if ((state[kState] & kNeedReadable) !== 0) emitReadable(stream); @@ -564,21 +583,24 @@ Readable.prototype.isPaused = function() { // Backwards compatibility. Readable.prototype.setEncoding = function(enc) { + const state = this._readableState; + const decoder = new StringDecoder(enc); - this._readableState.decoder = decoder; + state.decoder = decoder; // If setEncoding(null), decoder.encoding equals utf8. - this._readableState.encoding = this._readableState.decoder.encoding; + state.encoding = state.decoder.encoding; - const buffer = this._readableState.buffer; // Iterate over current buffer to convert already stored Buffers: let content = ''; - for (const data of buffer) { + for (const data of state.buffer.slice(state.bufferIndex)) { content += decoder.write(data); } - buffer.clear(); + state.buffer.length = 0; + state.bufferIndex = 0; + if (content !== '') - buffer.push(content); - this._readableState.length = content.length; + state.buffer.push(content); + state.length = content.length; return this; }; @@ -604,14 +626,14 @@ function computeNewHighWaterMark(n) { // This function is designed to be inlinable, so please take care when making // changes to the function body. function howMuchToRead(n, state) { - if (n <= 0 || (state.length === 0 && state.ended)) + if (n <= 0 || (state.length === 0 && (state[kState] & kEnded) !== 0)) return 0; if ((state[kState] & kObjectMode) !== 0) return 1; if (NumberIsNaN(n)) { // Only flow one buffer at a time. if ((state[kState] & kFlowing) !== 0 && state.length) - return state.buffer.first().length; + return state.buffer[state.bufferIndex].length; return state.length; } if (n <= state.length) @@ -648,7 +670,7 @@ Readable.prototype.read = function(n) { state.length >= state.highWaterMark : state.length > 0) || (state[kState] & kEnded) !== 0)) { - debug('read: emitReadable', state.length, (state[kState] & kEnded) !== 0); + debug('read: emitReadable'); if (state.length === 0 && (state[kState] & kEnded) !== 0) endReadable(this); else @@ -806,7 +828,7 @@ function emitReadable(stream) { function emitReadable_(stream) { const state = stream._readableState; debug('emitReadable_'); - if ((state[kState] & (kDestroyed | kErrored)) === 0 && (state.length || state.ended)) { + if ((state[kState] & (kDestroyed | kErrored)) === 0 && (state.length || (state[kState] & kEnded) !== 0)) { stream.emit('readable'); state[kState] &= ~kEmittedReadable; } @@ -887,7 +909,7 @@ Readable.prototype.pipe = function(dest, pipeOpts) { const state = this._readableState; if (state.pipes.length === 1) { - if (!state.multiAwaitDrain) { + if ((state[kState] & kMultiAwaitDrain) === 0) { state[kState] |= kMultiAwaitDrain; state.awaitDrainWriters = new SafeSet( state.awaitDrainWriters ? [state.awaitDrainWriters] : [], @@ -903,7 +925,7 @@ Readable.prototype.pipe = function(dest, pipeOpts) { dest !== process.stderr; const endFn = doEnd ? onend : unpipe; - if (state.endEmitted) + if ((state[kState] & kEndEmitted) !== 0) process.nextTick(endFn); else src.once('end', endFn); @@ -962,7 +984,7 @@ Readable.prototype.pipe = function(dest, pipeOpts) { if (state.pipes.length === 1 && state.pipes[0] === dest) { debug('false write response, pause', 0); state.awaitDrainWriters = dest; - state.multiAwaitDrain = false; + state[kState] &= ~kMultiAwaitDrain; } else if (state.pipes.length > 1 && state.pipes.includes(dest)) { debug('false write response, pause', state.awaitDrainWriters.size); state.awaitDrainWriters.add(dest); @@ -1034,7 +1056,7 @@ Readable.prototype.pipe = function(dest, pipeOpts) { if (dest.writableNeedDrain === true) { pause(); - } else if (!state.flowing) { + } else if ((state[kState] & kFlowing) === 0) { debug('pipe resume'); src.resume(); } @@ -1052,13 +1074,13 @@ function pipeOnDrain(src, dest) { if (state.awaitDrainWriters === dest) { debug('pipeOnDrain', 1); state.awaitDrainWriters = null; - } else if (state.multiAwaitDrain) { + } else if ((state[kState] & kMultiAwaitDrain) !== 0) { debug('pipeOnDrain', state.awaitDrainWriters.size); state.awaitDrainWriters.delete(dest); } if ((!state.awaitDrainWriters || state.awaitDrainWriters.size === 0) && - src.listenerCount('data')) { + (state[kState] & kDataListening) !== 0) { src.resume(); } }; @@ -1105,22 +1127,24 @@ Readable.prototype.on = function(ev, fn) { const state = this._readableState; if (ev === 'data') { + state[kState] |= kDataListening; + // Update readableListening so that resume() may be a no-op // a few lines down. This is needed to support once('readable'). - state.readableListening = this.listenerCount('readable') > 0; + state[kState] |= this.listenerCount('readable') > 0 ? kReadableListening : 0; // Try start flowing on next tick if stream isn't explicitly paused. - if (state.flowing !== false) + if ((state[kState] & (kHasFlowing | kFlowing)) !== kHasFlowing) { this.resume(); + } } else if (ev === 'readable') { - if (!state.endEmitted && !state.readableListening) { - state.readableListening = state.needReadable = true; - state.flowing = false; - state.emittedReadable = false; - debug('on readable', state.length, state.reading); + if ((state[kState] & (kEndEmitted | kReadableListening)) === 0) { + state[kState] |= kReadableListening | kNeedReadable | kHasFlowing; + state[kState] &= ~(kFlowing | kEmittedReadable); + debug('on readable'); if (state.length) { emitReadable(this); - } else if (!state.reading) { + } else if ((state[kState] & kReading) === 0) { process.nextTick(nReadingNextTick, this); } } @@ -1131,6 +1155,8 @@ Readable.prototype.on = function(ev, fn) { Readable.prototype.addListener = Readable.prototype.on; Readable.prototype.removeListener = function(ev, fn) { + const state = this._readableState; + const res = Stream.prototype.removeListener.call(this, ev, fn); @@ -1142,6 +1168,8 @@ Readable.prototype.removeListener = function(ev, fn) { // resume within the same tick will have no // effect. process.nextTick(updateReadableListening, this); + } else if (ev === 'data' && this.listenerCount('data') === 0) { + state[kState] &= ~kDataListening; } return res; @@ -1167,7 +1195,12 @@ Readable.prototype.removeAllListeners = function(ev) { function updateReadableListening(self) { const state = self._readableState; - state.readableListening = self.listenerCount('readable') > 0; + + if (self.listenerCount('readable') > 0) { + state[kState] |= kReadableListening; + } else { + state[kState] &= ~kReadableListening; + } if ((state[kState] & (kHasPaused | kPaused | kResumeScheduled)) === (kHasPaused | kResumeScheduled)) { // Flowing needs to be set to true now, otherwise @@ -1175,7 +1208,7 @@ function updateReadableListening(self) { state[kState] |= kHasFlowing | kFlowing; // Crude way to check if we should resume. - } else if (self.listenerCount('data') > 0) { + } else if ((state[kState] & kDataListening) !== 0) { self.resume(); } else if ((state[kState] & kReadableListening) === 0) { state[kState] &= ~(kHasFlowing | kFlowing); @@ -1197,7 +1230,7 @@ Readable.prototype.resume = function() { // for readable, but we still have to call // resume(). state[kState] |= kHasFlowing; - if (!state.readableListening) { + if ((state[kState] & kReadableListening) === 0) { state[kState] |= kFlowing; } else { state[kState] &= ~kFlowing; @@ -1210,8 +1243,8 @@ Readable.prototype.resume = function() { }; function resume(stream, state) { - if (!state.resumeScheduled) { - state.resumeScheduled = true; + if ((state[kState] & kResumeScheduled) === 0) { + state[kState] |= kResumeScheduled; process.nextTick(resume_, stream, state); } } @@ -1232,7 +1265,7 @@ function resume_(stream, state) { Readable.prototype.pause = function() { const state = this._readableState; debug('call pause'); - if (state.flowing !== false) { + if ((state[kState] & (kHasFlowing | kFlowing)) !== kHasFlowing) { debug('pause'); state[kState] |= kHasFlowing; state[kState] &= ~kFlowing; @@ -1549,21 +1582,96 @@ function fromList(n, state) { if (state.length === 0) return null; + let idx = state.bufferIndex; let ret; - if (state.objectMode) - ret = state.buffer.shift(); - else if (!n || n >= state.length) { + + const buf = state.buffer; + const len = buf.length; + + if ((state[kState] & kObjectMode) !== 0) { + ret = buf[idx]; + buf[idx++] = null; + } else if (!n || n >= state.length) { // Read it all, truncate the list. - if (state.decoder) - ret = state.buffer.join(''); - else if (state.buffer.length === 1) - ret = state.buffer.first(); - else - ret = state.buffer.concat(state.length); - state.buffer.clear(); + if ((state[kState] & kDecoder) !== 0) { + ret = ''; + while (idx < len) { + ret += buf[idx]; + buf[idx++] = null; + } + } else if (len - idx === 0) { + ret = Buffer.alloc(0); + } else if (len - idx === 1) { + ret = buf[idx]; + buf[idx++] = null; + } else { + ret = Buffer.allocUnsafe(state.length); + + let i = 0; + while (idx < len) { + TypedArrayPrototypeSet(ret, buf[idx], i); + i += buf[idx].length; + buf[idx++] = null; + } + } + } else if (n < buf[idx].length) { + // `slice` is the same for buffers and strings. + ret = buf[idx].slice(0, n); + buf[idx] = buf[idx].slice(n); + } else if (n === buf[idx].length) { + // First chunk is a perfect match. + ret = buf[idx]; + buf[idx++] = null; + } else if ((state[kState] & kDecoder) !== 0) { + ret = ''; + while (idx < len) { + const str = buf[idx]; + if (n > str.length) { + ret += str; + n -= str.length; + buf[idx++] = null; + } else { + if (n === buf.length) { + ret += str; + buf[idx++] = null; + } else { + ret += str.slice(0, n); + buf[idx] = str.slice(n); + } + break; + } + } + } else { + ret = Buffer.allocUnsafe(n); + + const retLen = n; + while (idx < len) { + const data = buf[idx]; + if (n > data.length) { + TypedArrayPrototypeSet(ret, data, retLen - n); + n -= data.length; + buf[idx++] = null; + } else { + if (n === data.length) { + TypedArrayPrototypeSet(ret, data, retLen - n); + buf[idx++] = null; + } else { + TypedArrayPrototypeSet(ret, new FastBuffer(data.buffer, data.byteOffset, n), retLen - n); + buf[idx] = new FastBuffer(data.buffer, data.byteOffset + n, data.length - n); + } + break; + } + } + } + + if (idx === len) { + state.buffer.length = 0; + state.bufferIndex = 0; + } else if (idx > 1024) { + state.buffer.splice(0, idx); + state.bufferIndex = 0; } else { - // read part of list. - ret = state.buffer.consume(n, state.decoder); + state.bufferIndex = idx; } return ret; @@ -1572,7 +1680,7 @@ function fromList(n, state) { function endReadable(stream) { const state = stream._readableState; - debug('endReadable', (state[kState] & kEndEmitted) !== 0); + debug('endReadable'); if ((state[kState] & kEndEmitted) === 0) { state[kState] |= kEnded; process.nextTick(endReadableNT, state, stream); @@ -1580,12 +1688,11 @@ function endReadable(stream) { } function endReadableNT(state, stream) { - debug('endReadableNT', state.endEmitted, state.length); + debug('endReadableNT'); // Check that we didn't get one last unshift. - if (!state.errored && !state.closeEmitted && - !state.endEmitted && state.length === 0) { - state.endEmitted = true; + if ((state[kState] & (kErrored | kCloseEmitted | kEndEmitted)) === 0 && state.length === 0) { + state[kState] |= kEndEmitted; stream.emit('end'); if (stream.writable && stream.allowHalfOpen === false) { diff --git a/lib/internal/streams/transform.js b/lib/internal/streams/transform.js index 02646f44344901..42e1adda618b87 100644 --- a/lib/internal/streams/transform.js +++ b/lib/internal/streams/transform.js @@ -95,10 +95,6 @@ function Transform(options) { ...options, highWaterMark: null, readableHighWaterMark, - // TODO (ronag): 0 is not optimal since we have - // a "bug" where we check needDrain before calling _write and not after. - // Refs: https://github.com/nodejs/node/pull/32887 - // Refs: https://github.com/nodejs/node/pull/35941 writableHighWaterMark: options.writableHighWaterMark || 0, }; } diff --git a/lib/internal/streams/utils.js b/lib/internal/streams/utils.js index 1b2a6c0fbf6a05..2c6b841a89e6e5 100644 --- a/lib/internal/streams/utils.js +++ b/lib/internal/streams/utils.js @@ -4,6 +4,7 @@ const { SymbolAsyncIterator, SymbolIterator, SymbolFor, + Symbol, } = primordials; // We need to use SymbolFor to make these globally available @@ -16,9 +17,22 @@ const kIsReadable = SymbolFor('nodejs.stream.readable'); const kIsWritable = SymbolFor('nodejs.stream.writable'); const kIsDisturbed = SymbolFor('nodejs.stream.disturbed'); +const kOnConstructed = Symbol('kOnConstructed'); + const kIsClosedPromise = SymbolFor('nodejs.webstream.isClosedPromise'); const kControllerErrorFunction = SymbolFor('nodejs.webstream.controllerErrorFunction'); +const kState = Symbol('kState'); +const kObjectMode = 1 << 0; +const kErrorEmitted = 1 << 1; +const kAutoDestroy = 1 << 2; +const kEmitClose = 1 << 3; +const kDestroyed = 1 << 4; +const kClosed = 1 << 5; +const kCloseEmitted = 1 << 6; +const kErrored = 1 << 7; +const kConstructed = 1 << 8; + function isReadableNodeStream(obj, strict = false) { return !!( obj && @@ -303,6 +317,7 @@ function isErrored(stream) { } module.exports = { + kOnConstructed, isDestroyed, kIsDestroyed, isDisturbed, @@ -335,4 +350,15 @@ module.exports = { isServerResponse, willEmitClose, isTransformStream, + kState, + // bitfields + kObjectMode, + kErrorEmitted, + kAutoDestroy, + kEmitClose, + kDestroyed, + kClosed, + kCloseEmitted, + kErrored, + kConstructed, }; diff --git a/lib/internal/streams/writable.js b/lib/internal/streams/writable.js index f75d2ac5dc7015..e55ddc1796cf6c 100644 --- a/lib/internal/streams/writable.js +++ b/lib/internal/streams/writable.js @@ -64,6 +64,20 @@ const { ERR_STREAM_WRITE_AFTER_END, ERR_UNKNOWN_ENCODING, } = require('internal/errors').codes; +const { + kState, + // bitfields + kObjectMode, + kErrorEmitted, + kAutoDestroy, + kEmitClose, + kDestroyed, + kClosed, + kCloseEmitted, + kErrored, + kConstructed, + kOnConstructed, +} = require('internal/streams/utils'); const { errorOrDestroy } = destroyImpl; @@ -78,18 +92,8 @@ const kDefaultEncodingValue = Symbol('kDefaultEncodingValue'); const kWriteCbValue = Symbol('kWriteCbValue'); const kAfterWriteTickInfoValue = Symbol('kAfterWriteTickInfoValue'); const kBufferedValue = Symbol('kBufferedValue'); -const kState = Symbol('kState'); - -const kObjectMode = 1 << 0; -const kEnded = 1 << 1; -const kConstructed = 1 << 2; -const kSync = 1 << 3; -const kErrorEmitted = 1 << 4; -const kEmitClose = 1 << 5; -const kAutoDestroy = 1 << 6; -const kDestroyed = 1 << 7; -const kClosed = 1 << 8; -const kCloseEmitted = 1 << 9; + +const kSync = 1 << 9; const kFinalCalled = 1 << 10; const kNeedDrain = 1 << 11; const kEnding = 1 << 12; @@ -101,16 +105,16 @@ const kPrefinished = 1 << 17; const kAllBuffers = 1 << 18; const kAllNoop = 1 << 19; const kOnFinished = 1 << 20; -const kErrored = 1 << 21; -const kHasWritable = 1 << 22; -const kWritable = 1 << 23; -const kCorked = 1 << 24; -const kDefaultUTF8Encoding = 1 << 25; -const kWriteCb = 1 << 26; -const kExpectWriteCb = 1 << 27; -const kAfterWriteTickInfo = 1 << 28; -const kAfterWritePending = 1 << 29; -const kBuffered = 1 << 30; +const kHasWritable = 1 << 21; +const kWritable = 1 << 22; +const kCorked = 1 << 23; +const kDefaultUTF8Encoding = 1 << 24; +const kWriteCb = 1 << 25; +const kExpectWriteCb = 1 << 26; +const kAfterWriteTickInfo = 1 << 27; +const kAfterWritePending = 1 << 28; +const kBuffered = 1 << 29; +const kEnded = 1 << 30; // TODO(benjamingr) it is likely slower to do it this way than with free functions function makeBitMapDescriptor(bit) { @@ -290,20 +294,15 @@ ObjectDefineProperties(WritableState.prototype, { }); function WritableState(options, stream, isDuplex) { - // Duplex streams are both readable and writable, but share - // the same options object. - // However, some cases require setting options to different - // values for the readable and the writable sides of the duplex stream, - // e.g. options.readableObjectMode vs. options.writableObjectMode, etc. - if (typeof isDuplex !== 'boolean') - isDuplex = stream instanceof Stream.Duplex; - // Bit map field to store WritableState more effciently with 1 bit per field // instead of a V8 slot per field. this[kState] = kSync | kConstructed | kEmitClose | kAutoDestroy; - if (options && options.objectMode) this[kState] |= kObjectMode; - if (isDuplex && options && options.writableObjectMode) this[kState] |= kObjectMode; + if (options && options.objectMode) + this[kState] |= kObjectMode; + + if (isDuplex && options && options.writableObjectMode) + this[kState] |= kObjectMode; // The point at which write() starts returning false // Note: 0 is a valid value, means that we always return false if @@ -323,7 +322,7 @@ function WritableState(options, stream, isDuplex) { // Crypto is kind of old and crusty. Historically, its default string // encoding is 'binary' so we have to make this configurable. // Everything else in the universe uses 'utf8', though. - const defaultEncoding = options?.defaultEncoding; + const defaultEncoding = options ? options.defaultEncoding : null; if (defaultEncoding == null || defaultEncoding === 'utf8' || defaultEncoding === 'utf-8') { this[kState] |= kDefaultUTF8Encoding; } else if (Buffer.isEncoding(defaultEncoding)) { @@ -372,23 +371,32 @@ ObjectDefineProperty(WritableState.prototype, 'bufferedRequestCount', { }, }); -function Writable(options) { - // Writable ctor is applied to Duplexes, too. - // `realHasInstance` is necessary because using plain `instanceof` - // would return false, as no `_writableState` property is attached. - - // Trying to use the custom `instanceof` for Writable here will also break the - // Node.js LazyTransform implementation, which has a non-trivial getter for - // `_writableState` that would lead to infinite recursion. +WritableState.prototype[kOnConstructed] = function onConstructed(stream) { + if ((this[kState] & kWriting) === 0) { + clearBuffer(stream, this); + } - // Checking for a Stream.Duplex instance is faster here instead of inside - // the WritableState constructor, at least with V8 6.5. - const isDuplex = (this instanceof Stream.Duplex); + if ((this[kState] & kEnding) !== 0) { + finishMaybe(stream, this); + } +}; - if (!isDuplex && !FunctionPrototypeSymbolHasInstance(Writable, this)) +function Writable(options) { + if (!(this instanceof Writable)) return new Writable(options); - this._writableState = new WritableState(options, this, isDuplex); + this._events ??= { + close: undefined, + error: undefined, + prefinish: undefined, + finish: undefined, + drain: undefined, + // Skip uncommon events... + // [destroyImpl.kConstruct]: undefined, + // [destroyImpl.kDestroy]: undefined, + }; + + this._writableState = new WritableState(options, this, false); if (options) { if (typeof options.write === 'function') @@ -412,17 +420,11 @@ function Writable(options) { Stream.call(this, options); - destroyImpl.construct(this, () => { - const state = this._writableState; - - if ((state[kState] & kWriting) === 0) { - clearBuffer(this, state); - } - - if ((state[kState] & kEnding) !== 0) { - finishMaybe(this, state); - } - }); + if (this._construct != null) { + destroyImpl.construct(this, () => { + this._writableState[kOnConstructed](this); + }); + } } ObjectDefineProperty(Writable, SymbolHasInstance, { @@ -443,21 +445,21 @@ Writable.prototype.pipe = function() { function _write(stream, chunk, encoding, cb) { const state = stream._writableState; - if (typeof encoding === 'function') { - cb = encoding; - encoding = (state[kState] & kDefaultUTF8Encoding) !== 0 ? 'utf8' : state.defaultEncoding; - } else { - if (!encoding) - encoding = (state[kState] & kDefaultUTF8Encoding) !== 0 ? 'utf8' : state.defaultEncoding; - else if (encoding !== 'buffer' && !Buffer.isEncoding(encoding)) - throw new ERR_UNKNOWN_ENCODING(encoding); - if (typeof cb !== 'function') - cb = nop; + if (cb == null || typeof cb !== 'function') { + cb = nop; } if (chunk === null) { throw new ERR_STREAM_NULL_VALUES(); - } else if ((state[kState] & kObjectMode) === 0) { + } + + if ((state[kState] & kObjectMode) === 0) { + if (!encoding) { + encoding = (state[kState] & kDefaultUTF8Encoding) !== 0 ? 'utf8' : state.defaultEncoding; + } else if (encoding !== 'buffer' && !Buffer.isEncoding(encoding)) { + throw new ERR_UNKNOWN_ENCODING(encoding); + } + if (typeof chunk === 'string') { if ((state[kState] & kDecodeStrings) !== 0) { chunk = Buffer.from(chunk, encoding); @@ -486,11 +488,17 @@ function _write(stream, chunk, encoding, cb) { errorOrDestroy(stream, err, true); return err; } + state.pendingcb++; return writeOrBuffer(stream, state, chunk, encoding, cb); } Writable.prototype.write = function(chunk, encoding, cb) { + if (encoding != null && typeof encoding === 'function') { + cb = encoding; + encoding = null; + } + return _write(this, chunk, encoding, cb) === true; }; @@ -1097,7 +1105,7 @@ Writable.prototype.destroy = function(err, cb) { const state = this._writableState; // Invoke pending callbacks. - if ((state[kState] & (kBuffered | kOnFinished | kDestroyed)) !== kDestroyed) { + if ((state[kState] & (kBuffered | kOnFinished)) !== 0 && (state[kState] & kDestroyed) === 0) { process.nextTick(errorBuffer, state); } diff --git a/lib/internal/structured_clone.js b/lib/internal/structured_clone.js deleted file mode 100644 index 0392232badf9fc..00000000000000 --- a/lib/internal/structured_clone.js +++ /dev/null @@ -1,29 +0,0 @@ -'use strict'; - -const { - codes: { ERR_MISSING_ARGS }, -} = require('internal/errors'); - -const { - MessageChannel, - receiveMessageOnPort, -} = require('internal/worker/io'); - -let channel; -function structuredClone(value, options = undefined) { - if (arguments.length === 0) { - throw new ERR_MISSING_ARGS('value'); - } - - // TODO: Improve this with a more efficient solution that avoids - // instantiating a MessageChannel - channel ??= new MessageChannel(); - channel.port1.unref(); - channel.port2.unref(); - channel.port1.postMessage(value, options?.transfer); - return receiveMessageOnPort(channel.port2).message; -} - -module.exports = { - structuredClone, -}; diff --git a/lib/internal/test_runner/mock/mock_timers.js b/lib/internal/test_runner/mock/mock_timers.js index 1ff6489885fe30..8fac645e9a3617 100644 --- a/lib/internal/test_runner/mock/mock_timers.js +++ b/lib/internal/test_runner/mock/mock_timers.js @@ -8,27 +8,31 @@ const { ArrayPrototypeAt, ArrayPrototypeForEach, ArrayPrototypeIncludes, - DateNow, + DatePrototypeGetTime, + DatePrototypeToString, FunctionPrototypeApply, FunctionPrototypeBind, + FunctionPrototypeToString, + globalThis, + NumberIsNaN, ObjectDefineProperty, + ObjectDefineProperties, ObjectGetOwnPropertyDescriptor, + ObjectGetOwnPropertyDescriptors, Promise, + Symbol, SymbolAsyncIterator, SymbolDispose, - globalThis, } = primordials; const { validateAbortSignal, validateArray, + validateNumber, } = require('internal/validators'); const { AbortError, - codes: { - ERR_INVALID_STATE, - ERR_INVALID_ARG_VALUE, - }, + codes: { ERR_INVALID_STATE, ERR_INVALID_ARG_VALUE }, } = require('internal/errors'); const PriorityQueue = require('internal/priority_queue'); @@ -37,6 +41,10 @@ const nodeTimersPromises = require('timers/promises'); const EventEmitter = require('events'); let kResistStopPropagation; +// Internal reference to the MockTimers class inside MockDate +let kMock; +// Initial epoch to which #now should be set to +const kInitialEpoch = 0; function compareTimersLists(a, b) { return (a.runAt - b.runAt) || (a.id - b.id); @@ -50,7 +58,10 @@ function abortIt(signal) { return new AbortError(undefined, { __proto__: null, cause: signal.reason }); } -const SUPPORTED_TIMERS = ['setTimeout', 'setInterval', 'setImmediate']; +/** + * @enum {('setTimeout'|'setInterval'|'setImmediate'|'Date')[]} Supported timers + */ +const SUPPORTED_APIS = ['setTimeout', 'setInterval', 'setImmediate', 'Date']; const TIMERS_DEFAULT_INTERVAL = { __proto__: null, setImmediate: -1, @@ -75,10 +86,12 @@ class MockTimers { #realTimersClearImmediate; #realPromisifiedSetImmediate; + #nativeDateDescriptor; + #timersInContext = []; #isEnabled = false; #currentTimer = 1; - #now = DateNow(); + #now = kInitialEpoch; #executionQueue = new PriorityQueue(compareTimersLists, setPosition); @@ -86,21 +99,165 @@ class MockTimers { #clearTimeout = FunctionPrototypeBind(this.#clearTimer, this); #setInterval = FunctionPrototypeBind(this.#createTimer, this, true); #clearInterval = FunctionPrototypeBind(this.#clearTimer, this); - - #setImmediate = (callback, ...args) => { - return this.#createTimer( - false, - callback, - TIMERS_DEFAULT_INTERVAL.setImmediate, - ...args, - ); - }; - #clearImmediate = FunctionPrototypeBind(this.#clearTimer, this); + constructor() { emitExperimentalWarning('The MockTimers API'); } + #restoreSetImmediate() { + ObjectDefineProperty( + globalThis, + 'setImmediate', + this.#realSetImmediate, + ); + ObjectDefineProperty( + globalThis, + 'clearImmediate', + this.#realClearImmediate, + ); + ObjectDefineProperty( + nodeTimers, + 'setImmediate', + this.#realTimersSetImmediate, + ); + ObjectDefineProperty( + nodeTimers, + 'clearImmediate', + this.#realTimersClearImmediate, + ); + ObjectDefineProperty( + nodeTimersPromises, + 'setImmediate', + this.#realPromisifiedSetImmediate, + ); + } + + #restoreOriginalSetInterval() { + ObjectDefineProperty( + globalThis, + 'setInterval', + this.#realSetInterval, + ); + ObjectDefineProperty( + globalThis, + 'clearInterval', + this.#realClearInterval, + ); + ObjectDefineProperty( + nodeTimers, + 'setInterval', + this.#realTimersSetInterval, + ); + ObjectDefineProperty( + nodeTimers, + 'clearInterval', + this.#realTimersClearInterval, + ); + ObjectDefineProperty( + nodeTimersPromises, + 'setInterval', + this.#realPromisifiedSetInterval, + ); + } + + #restoreOriginalSetTimeout() { + ObjectDefineProperty( + globalThis, + 'setTimeout', + this.#realSetTimeout, + ); + ObjectDefineProperty( + globalThis, + 'clearTimeout', + this.#realClearTimeout, + ); + ObjectDefineProperty( + nodeTimers, + 'setTimeout', + this.#realTimersSetTimeout, + ); + ObjectDefineProperty( + nodeTimers, + 'clearTimeout', + this.#realTimersClearTimeout, + ); + ObjectDefineProperty( + nodeTimersPromises, + 'setTimeout', + this.#realPromisifiedSetTimeout, + ); + } + + #storeOriginalSetImmediate() { + this.#realSetImmediate = ObjectGetOwnPropertyDescriptor( + globalThis, + 'setImmediate', + ); + this.#realClearImmediate = ObjectGetOwnPropertyDescriptor( + globalThis, + 'clearImmediate', + ); + this.#realTimersSetImmediate = ObjectGetOwnPropertyDescriptor( + nodeTimers, + 'setImmediate', + ); + this.#realTimersClearImmediate = ObjectGetOwnPropertyDescriptor( + nodeTimers, + 'clearImmediate', + ); + this.#realPromisifiedSetImmediate = ObjectGetOwnPropertyDescriptor( + nodeTimersPromises, + 'setImmediate', + ); + } + + #storeOriginalSetInterval() { + this.#realSetInterval = ObjectGetOwnPropertyDescriptor( + globalThis, + 'setInterval', + ); + this.#realClearInterval = ObjectGetOwnPropertyDescriptor( + globalThis, + 'clearInterval', + ); + this.#realTimersSetInterval = ObjectGetOwnPropertyDescriptor( + nodeTimers, + 'setInterval', + ); + this.#realTimersClearInterval = ObjectGetOwnPropertyDescriptor( + nodeTimers, + 'clearInterval', + ); + this.#realPromisifiedSetInterval = ObjectGetOwnPropertyDescriptor( + nodeTimersPromises, + 'setInterval', + ); + } + + #storeOriginalSetTimeout() { + this.#realSetTimeout = ObjectGetOwnPropertyDescriptor( + globalThis, + 'setTimeout', + ); + this.#realClearTimeout = ObjectGetOwnPropertyDescriptor( + globalThis, + 'clearTimeout', + ); + this.#realTimersSetTimeout = ObjectGetOwnPropertyDescriptor( + nodeTimers, + 'setTimeout', + ); + this.#realTimersClearTimeout = ObjectGetOwnPropertyDescriptor( + nodeTimers, + 'clearTimeout', + ); + this.#realPromisifiedSetTimeout = ObjectGetOwnPropertyDescriptor( + nodeTimersPromises, + 'setTimeout', + ); + } + #createTimer(isInterval, callback, delay, ...args) { const timerId = this.#currentTimer++; this.#executionQueue.insert({ @@ -119,7 +276,101 @@ class MockTimers { this.#executionQueue.removeAt(position); } - async * #setIntervalPromisified(interval, startTime, options) { + #createDate() { + kMock ??= Symbol('MockTimers'); + const NativeDateConstructor = this.#nativeDateDescriptor.value; + /** + * Function to mock the Date constructor, treats cases as per ECMA-262 + * and returns a Date object with a mocked implementation + * @typedef {Date} MockDate + * @returns {MockDate} a mocked Date object + */ + function MockDate(year, month, date, hours, minutes, seconds, ms) { + const mockTimersSource = MockDate[kMock]; + const nativeDate = mockTimersSource.#nativeDateDescriptor.value; + + // As of the fake-timers implementation for Sinon + // ref https://github.com/sinonjs/fake-timers/blob/a4c757f80840829e45e0852ea1b17d87a998388e/src/fake-timers-src.js#L456 + // This covers the Date constructor called as a function ref. + // ECMA-262 Edition 5.1 section 15.9.2. + // and ECMA-262 Edition 14 Section 21.4.2.1 + // replaces 'this instanceof MockDate' with a more reliable check + // from ECMA-262 Edition 14 Section 13.3.12.1 NewTarget + if (!new.target) { + return DatePrototypeToString(new nativeDate(mockTimersSource.#now)); + } + + // Cases where Date is called as a constructor + // This is intended as a defensive implementation to avoid + // having unexpected returns + switch (arguments.length) { + case 0: + return new nativeDate(MockDate[kMock].#now); + case 1: + return new nativeDate(year); + case 2: + return new nativeDate(year, month); + case 3: + return new nativeDate(year, month, date); + case 4: + return new nativeDate(year, month, date, hours); + case 5: + return new nativeDate(year, month, date, hours, minutes); + case 6: + return new nativeDate(year, month, date, hours, minutes, seconds); + default: + return new nativeDate(year, month, date, hours, minutes, seconds, ms); + } + } + + // Prototype is read-only, and non assignable through Object.defineProperties + // eslint-disable-next-line no-unused-vars -- used to get the prototype out of the object + const { prototype, ...dateProps } = ObjectGetOwnPropertyDescriptors(NativeDateConstructor); + + // Binds all the properties of Date to the MockDate function + ObjectDefineProperties( + MockDate, + dateProps, + ); + + MockDate.now = function now() { + return MockDate[kMock].#now; + }; + + // This is just to print the function { native code } in the console + // when the user prints the function and not the internal code + MockDate.toString = function toString() { + return FunctionPrototypeToString(MockDate[kMock].#nativeDateDescriptor.value); + }; + + // We need to polute the prototype of this + ObjectDefineProperties(MockDate, { + __proto__: null, + [kMock]: { + __proto__: null, + enumerable: false, + configurable: false, + writable: false, + value: this, + }, + + isMock: { + __proto__: null, + enumerable: true, + configurable: false, + writable: false, + value: true, + }, + }); + + MockDate.prototype = NativeDateConstructor.prototype; + MockDate.parse = NativeDateConstructor.parse; + MockDate.UTC = NativeDateConstructor.UTC; + MockDate.prototype.toUTCString = NativeDateConstructor.prototype.toUTCString; + return MockDate; + } + + async * #setIntervalPromisified(interval, result, options) { const context = this; const emitter = new EventEmitter(); if (options?.signal) { @@ -143,8 +394,7 @@ class MockTimers { const eventIt = EventEmitter.on(emitter, 'data'); const callback = () => { - startTime += interval; - emitter.emit('data', startTime); + emitter.emit('data', result); }; const timerId = this.#createTimer(true, callback, interval, options); @@ -179,6 +429,15 @@ class MockTimers { yield* iterator; } + #setImmediate(callback, ...args) { + return this.#createTimer( + false, + callback, + TIMERS_DEFAULT_INTERVAL.setImmediate, + ...args, + ); + } + #promisifyTimer({ timerFn, clearFn, ms, result, options }) { return new Promise((resolve, reject) => { if (options?.signal) { @@ -235,6 +494,30 @@ class MockTimers { }); } + #assertTimersAreEnabled() { + if (!this.#isEnabled) { + throw new ERR_INVALID_STATE( + 'You should enable MockTimers first by calling the .enable function', + ); + } + } + + #assertTimeArg(time) { + if (time < 0) { + throw new ERR_INVALID_ARG_VALUE('time', 'positive integer', time); + } + } + + #isValidDateWithGetTime(maybeDate) { + // Validation inspired on https://github.com/inspect-js/is-date-object/blob/main/index.js#L3-L11 + try { + DatePrototypeGetTime(maybeDate); + return true; + } catch { + return false; + } + } + #toggleEnableTimers(activate) { const options = { __proto__: null, @@ -271,17 +554,31 @@ class MockTimers { setImmediate: () => { this.#storeOriginalSetImmediate(); - globalThis.setImmediate = this.#setImmediate; + // setImmediate functions needs to bind MockTimers + // otherwise it will throw an error when called + // "Receiver must be an instance of MockTimers" + // because #setImmediate is the only function here + // that calls #createTimer and it's not bound to MockTimers + globalThis.setImmediate = FunctionPrototypeBind( + this.#setImmediate, + this, + ); globalThis.clearImmediate = this.#clearImmediate; - nodeTimers.setImmediate = this.#setImmediate; + nodeTimers.setImmediate = FunctionPrototypeBind( + this.#setImmediate, + this, + ); nodeTimers.clearImmediate = this.#clearImmediate; - nodeTimersPromises.setImmediate = FunctionPrototypeBind( this.#setImmediatePromisified, this, ); }, + Date: () => { + this.#nativeDateDescriptor = ObjectGetOwnPropertyDescriptor(globalThis, 'Date'); + globalThis.Date = this.#createDate(); + }, }, toReal: { __proto__: null, @@ -294,6 +591,9 @@ class MockTimers { setImmediate: () => { this.#restoreSetImmediate(); }, + Date: () => { + ObjectDefineProperty(globalThis, 'Date', this.#nativeDateDescriptor); + }, }, }; @@ -302,159 +602,6 @@ class MockTimers { this.#isEnabled = activate; } - #restoreSetImmediate() { - ObjectDefineProperty( - globalThis, - 'setImmediate', - this.#realSetImmediate, - ); - ObjectDefineProperty( - globalThis, - 'clearImmediate', - this.#realClearImmediate, - ); - ObjectDefineProperty( - nodeTimers, - 'setImmediate', - this.#realTimersSetImmediate, - ); - ObjectDefineProperty( - nodeTimers, - 'clearImmediate', - this.#realTimersClearImmediate, - ); - ObjectDefineProperty( - nodeTimersPromises, - 'setImmediate', - this.#realPromisifiedSetImmediate, - ); - } - - #restoreOriginalSetInterval() { - ObjectDefineProperty( - globalThis, - 'setInterval', - this.#realSetInterval, - ); - ObjectDefineProperty( - globalThis, - 'clearInterval', - this.#realClearInterval, - ); - ObjectDefineProperty( - nodeTimers, - 'setInterval', - this.#realTimersSetInterval, - ); - ObjectDefineProperty( - nodeTimers, - 'clearInterval', - this.#realTimersClearInterval, - ); - ObjectDefineProperty( - nodeTimersPromises, - 'setInterval', - this.#realPromisifiedSetInterval, - ); - } - - #restoreOriginalSetTimeout() { - ObjectDefineProperty( - globalThis, - 'setTimeout', - this.#realSetTimeout, - ); - ObjectDefineProperty( - globalThis, - 'clearTimeout', - this.#realClearTimeout, - ); - ObjectDefineProperty( - nodeTimers, - 'setTimeout', - this.#realTimersSetTimeout, - ); - ObjectDefineProperty( - nodeTimers, - 'clearTimeout', - this.#realTimersClearTimeout, - ); - ObjectDefineProperty( - nodeTimersPromises, - 'setTimeout', - this.#realPromisifiedSetTimeout, - ); - } - - #storeOriginalSetImmediate() { - this.#realSetImmediate = ObjectGetOwnPropertyDescriptor( - globalThis, - 'setImmediate', - ); - this.#realClearImmediate = ObjectGetOwnPropertyDescriptor( - globalThis, - 'clearImmediate', - ); - this.#realTimersSetImmediate = ObjectGetOwnPropertyDescriptor( - nodeTimers, - 'setImmediate', - ); - this.#realTimersClearImmediate = ObjectGetOwnPropertyDescriptor( - nodeTimers, - 'clearImmediate', - ); - this.#realPromisifiedSetImmediate = ObjectGetOwnPropertyDescriptor( - nodeTimersPromises, - 'setImmediate', - ); - } - - #storeOriginalSetInterval() { - this.#realSetInterval = ObjectGetOwnPropertyDescriptor( - globalThis, - 'setInterval', - ); - this.#realClearInterval = ObjectGetOwnPropertyDescriptor( - globalThis, - 'clearInterval', - ); - this.#realTimersSetInterval = ObjectGetOwnPropertyDescriptor( - nodeTimers, - 'setInterval', - ); - this.#realTimersClearInterval = ObjectGetOwnPropertyDescriptor( - nodeTimers, - 'clearInterval', - ); - this.#realPromisifiedSetInterval = ObjectGetOwnPropertyDescriptor( - nodeTimersPromises, - 'setInterval', - ); - } - - #storeOriginalSetTimeout() { - this.#realSetTimeout = ObjectGetOwnPropertyDescriptor( - globalThis, - 'setTimeout', - ); - this.#realClearTimeout = ObjectGetOwnPropertyDescriptor( - globalThis, - 'clearTimeout', - ); - this.#realTimersSetTimeout = ObjectGetOwnPropertyDescriptor( - nodeTimers, - 'setTimeout', - ); - this.#realTimersClearTimeout = ObjectGetOwnPropertyDescriptor( - nodeTimers, - 'clearTimeout', - ); - this.#realPromisifiedSetTimeout = ObjectGetOwnPropertyDescriptor( - nodeTimersPromises, - 'setTimeout', - ); - } - /** * Advances the virtual time of MockTimers by the specified duration (in milliseconds). * This method simulates the passage of time and triggers any scheduled timers that are due. @@ -463,19 +610,8 @@ class MockTimers { * @throws {ERR_INVALID_ARG_VALUE} If a negative time value is provided. */ tick(time = 1) { - if (!this.#isEnabled) { - throw new ERR_INVALID_STATE( - 'You should enable MockTimers first by calling the .enable function', - ); - } - - if (time < 0) { - throw new ERR_INVALID_ARG_VALUE( - 'time', - 'positive integer', - time, - ); - } + this.#assertTimersAreEnabled(); + this.#assertTimeArg(time); this.#now += time; let timer = this.#executionQueue.peek(); @@ -496,36 +632,68 @@ class MockTimers { } /** - * Enables MockTimers for the specified timers. - * @param {string[]} timers - An array of timer types to enable, e.g., ['setTimeout', 'setInterval']. - * @throws {ERR_INVALID_STATE} If MockTimers are already enabled. - * @throws {ERR_INVALID_ARG_VALUE} If an unsupported timer type is specified. + * @typedef {{apis: SUPPORTED_APIS;now: number | Date;}} EnableOptions Options to enable the timers + * @property {SUPPORTED_APIS} apis List of timers to enable, defaults to all + * @property {number | Date} now The epoch to which the timers should be set to, defaults to 0 */ - enable(timers = SUPPORTED_TIMERS) { + /** + * Enables the MockTimers replacing the native timers with the fake ones. + * @param {EnableOptions} options + */ + enable(options = { __proto__: null, apis: SUPPORTED_APIS, now: 0 }) { + const internalOptions = { __proto__: null, ...options }; if (this.#isEnabled) { - throw new ERR_INVALID_STATE( - 'MockTimers is already enabled!', - ); + throw new ERR_INVALID_STATE('MockTimers is already enabled!'); + } + + if (NumberIsNaN(internalOptions.now)) { + throw new ERR_INVALID_ARG_VALUE('now', internalOptions.now, `epoch must be a positive integer received ${internalOptions.now}`); } - validateArray(timers, 'timers'); + if (!internalOptions.now) { + internalOptions.now = 0; + } + + if (!internalOptions.apis) { + internalOptions.apis = SUPPORTED_APIS; + } + validateArray(internalOptions.apis, 'options.apis'); // Check that the timers passed are supported - ArrayPrototypeForEach(timers, (timer) => { - if (!ArrayPrototypeIncludes(SUPPORTED_TIMERS, timer)) { + ArrayPrototypeForEach(internalOptions.apis, (timer) => { + if (!ArrayPrototypeIncludes(SUPPORTED_APIS, timer)) { throw new ERR_INVALID_ARG_VALUE( - 'timers', + 'options.apis', timer, `option ${timer} is not supported`, ); } }); + this.#timersInContext = internalOptions.apis; + + // Checks if the second argument is the initial time + if (this.#isValidDateWithGetTime(internalOptions.now)) { + this.#now = DatePrototypeGetTime(internalOptions.now); + } else if (validateNumber(internalOptions.now, 'initialTime') === undefined) { + this.#assertTimeArg(internalOptions.now); + this.#now = internalOptions.now; + } - this.#timersInContext = timers; - this.#now = DateNow(); this.#toggleEnableTimers(true); } + /** + * Sets the current time to the given epoch. + * @param {number} time The epoch to set the current time to. + */ + setTime(time = kInitialEpoch) { + validateNumber(time, 'time'); + this.#assertTimeArg(time); + this.#assertTimersAreEnabled(); + + this.#now = time; + } + /** * An alias for `this.reset()`, allowing the disposal of the `MockTimers` instance. */ @@ -543,6 +711,7 @@ class MockTimers { this.#toggleEnableTimers(false); this.#timersInContext = []; + this.#now = kInitialEpoch; let timer = this.#executionQueue.peek(); while (timer) { @@ -556,13 +725,10 @@ class MockTimers { * @throws {ERR_INVALID_STATE} If MockTimers are not enabled. */ runAll() { - if (!this.#isEnabled) { - throw new ERR_INVALID_STATE( - 'You should enable MockTimers first by calling the .enable function', - ); - } - - this.tick(Infinity); + this.#assertTimersAreEnabled(); + const longestTimer = this.#executionQueue.peekBottom(); + if (!longestTimer) return; + this.tick(longestTimer.runAt - this.#now); } } diff --git a/lib/internal/test_runner/reporter/lcov.js b/lib/internal/test_runner/reporter/lcov.js new file mode 100644 index 00000000000000..698913d79dec02 --- /dev/null +++ b/lib/internal/test_runner/reporter/lcov.js @@ -0,0 +1,107 @@ +'use strict'; + +const { relative } = require('path'); +const Transform = require('internal/streams/transform'); + +// This reporter is based on the LCOV format, as described here: +// https://ltp.sourceforge.net/coverage/lcov/geninfo.1.php +// Excerpts from this documentation are included in the comments that make up +// the _transform function below. +class LcovReporter extends Transform { + constructor(options) { + super({ ...options, writableObjectMode: true, __proto__: null }); + } + + _transform(event, _encoding, callback) { + if (event.type !== 'test:coverage') { + return callback(null); + } + let lcov = ''; + // A tracefile is made up of several human-readable lines of text, divided + // into sections. If available, a tracefile begins with the testname which + // is stored in the following format: + // ## TN:\ + lcov += 'TN:\n'; + const { + data: { + summary: { workingDirectory }, + }, + } = event; + try { + for (let i = 0; i < event.data.summary.files.length; i++) { + const file = event.data.summary.files[i]; + // For each source file referenced in the .da file, there is a section + // containing filename and coverage data: + // ## SF:\ + lcov += `SF:${relative(workingDirectory, file.path)}\n`; + + // Following is a list of line numbers for each function name found in + // the source file: + // ## FN:\,\ + // + // After, there is a list of execution counts for each instrumented + // function: + // ## FNDA:\,\ + // + // This loop adds the FN lines to the lcov variable as it goes and + // gathers the FNDA lines to be added later. This way we only loop + // through the list of functions once. + let fnda = ''; + for (let j = 0; j < file.functions.length; j++) { + const func = file.functions[j]; + const name = func.name || `anonymous_${j}`; + lcov += `FN:${func.line},${name}\n`; + fnda += `FNDA:${func.count},${name}\n`; + } + lcov += fnda; + + // This list is followed by two lines containing the number of + // functions found and hit: + // ## FNF:\ + // ## FNH:\ + lcov += `FNF:${file.totalFunctionCount}\n`; + lcov += `FNH:${file.coveredFunctionCount}\n`; + + // Branch coverage information is stored which one line per branch: + // ## BRDA:\,\,\,\ + // Block number and branch number are gcc internal IDs for the branch. + // Taken is either '-' if the basic block containing the branch was + // never executed or a number indicating how often that branch was + // taken. + for (let j = 0; j < file.branches.length; j++) { + lcov += `BRDA:${file.branches[j].line},${j},0,${file.branches[j].count}\n`; + } + + // Branch coverage summaries are stored in two lines: + // ## BRF:\ + // ## BRH:\ + lcov += `BRF:${file.totalBranchCount}\n`; + lcov += `BRH:${file.coveredBranchCount}\n`; + + // Then there is a list of execution counts for each instrumented line + // (i.e. a line which resulted in executable code): + // ## DA:\,\[,\] + const sortedLines = file.lines.toSorted((a, b) => a.line - b.line); + for (let j = 0; j < sortedLines.length; j++) { + lcov += `DA:${sortedLines[j].line},${sortedLines[j].count}\n`; + } + + // At the end of a section, there is a summary about how many lines + // were found and how many were actually instrumented: + // ## LH:\ + // ## LF:\ + lcov += `LH:${file.coveredLineCount}\n`; + lcov += `LF:${file.totalLineCount}\n`; + + // Each sections ends with: + // end_of_record + lcov += 'end_of_record\n'; + } + } catch (error) { + return callback(error); + } + return callback(null, lcov); + } +} + +module.exports = LcovReporter; diff --git a/lib/internal/test_runner/reporter/spec.js b/lib/internal/test_runner/reporter/spec.js index 0c5a3e95c7c75a..75b4d9773c4161 100644 --- a/lib/internal/test_runner/reporter/spec.js +++ b/lib/internal/test_runner/reporter/spec.js @@ -78,11 +78,12 @@ class SpecReporter extends Transform { } else if (todo !== undefined) { title += ` # ${typeof todo === 'string' && todo.length ? todo : 'TODO'}`; } + const error = this.#formatError(data.details?.error, indent); if (hasChildren) { // If this test has had children - it was already reported, so slightly modify the output - return `${prefix}${indent}${color}${symbols['arrow:right']}${white}${title}\n`; + const err = data.details?.error?.failureType === 'subtestsFailed' ? '' : error; + return `${prefix}${indent}${color}${symbols['arrow:right']}${white}${title}\n${err}`; } - const error = this.#formatError(data.details?.error, indent); if (skip !== undefined) { color = gray; symbol = symbols['hyphen:minus']; diff --git a/lib/internal/test_runner/runner.js b/lib/internal/test_runner/runner.js index cc9bcc09b714fe..c4194923cc0f44 100644 --- a/lib/internal/test_runner/runner.js +++ b/lib/internal/test_runner/runner.js @@ -318,7 +318,7 @@ class FileTest extends Test { function runTestFile(path, filesWatcher, opts) { const watchMode = filesWatcher != null; - const subtest = opts.root.createSubtest(FileTest, path, async (t) => { + const subtest = opts.root.createSubtest(FileTest, path, { __proto__: null, signal: opts.signal }, async (t) => { const args = getRunArgs(path, opts); const stdio = ['pipe', 'pipe', 'pipe']; const env = { __proto__: null, ...process.env, NODE_TEST_CONTEXT: 'child-v8' }; diff --git a/lib/internal/test_runner/utils.js b/lib/internal/test_runner/utils.js index b70ca649c8b8df..6b4663f14302c3 100644 --- a/lib/internal/test_runner/utils.js +++ b/lib/internal/test_runner/utils.js @@ -112,6 +112,7 @@ const kBuiltinReporters = new SafeMap([ ['dot', 'internal/test_runner/reporter/dot'], ['tap', 'internal/test_runner/reporter/tap'], ['junit', 'internal/test_runner/reporter/junit'], + ['lcov', 'internal/test_runner/reporter/lcov'], ]); const kDefaultReporter = process.stdout.isTTY ? 'spec' : 'tap'; diff --git a/lib/internal/util.js b/lib/internal/util.js index 558a5da69773bb..4149840b244adc 100644 --- a/lib/internal/util.js +++ b/lib/internal/util.js @@ -8,6 +8,7 @@ const { ArrayPrototypeSlice, ArrayPrototypeSort, Error, + ErrorCaptureStackTrace, FunctionPrototypeCall, ObjectDefineProperties, ObjectDefineProperty, @@ -44,11 +45,11 @@ const { } = primordials; const { - hideStackFrames, codes: { ERR_NO_CRYPTO, ERR_UNKNOWN_SIGNAL, }, + isErrorStackTraceLimitWritable, uvErrmapGet, overrideStackTrace, } = require('internal/errors'); @@ -693,10 +694,19 @@ const lazyDOMExceptionClass = () => { return _DOMException; }; -const lazyDOMException = hideStackFrames((message, name) => { +const lazyDOMException = (message, name) => { _DOMException ??= internalBinding('messaging').DOMException; + if (isErrorStackTraceLimitWritable()) { + const limit = Error.stackTraceLimit; + Error.stackTraceLimit = 0; + const ex = new _DOMException(message, name); + Error.stackTraceLimit = limit; + ErrorCaptureStackTrace(ex, lazyDOMException); + return ex; + } return new _DOMException(message, name); -}); + +}; const kEnumerableProperty = { __proto__: null }; kEnumerableProperty.enumerable = true; diff --git a/lib/internal/validators.js b/lib/internal/validators.js index 77b67a4a37ff91..6abf4d9a3cd7d3 100644 --- a/lib/internal/validators.js +++ b/lib/internal/validators.js @@ -22,11 +22,11 @@ const { const { hideStackFrames, codes: { - ERR_SOCKET_BAD_PORT, - ERR_INVALID_ARG_TYPE, - ERR_INVALID_ARG_VALUE, - ERR_OUT_OF_RANGE, - ERR_UNKNOWN_SIGNAL, + ERR_SOCKET_BAD_PORT: { HideStackFramesError: ERR_SOCKET_BAD_PORT }, + ERR_INVALID_ARG_TYPE: { HideStackFramesError: ERR_INVALID_ARG_TYPE }, + ERR_INVALID_ARG_VALUE: { HideStackFramesError: ERR_INVALID_ARG_VALUE }, + ERR_OUT_OF_RANGE: { HideStackFramesError: ERR_OUT_OF_RANGE }, + ERR_UNKNOWN_SIGNAL: { HideStackFramesError: ERR_UNKNOWN_SIGNAL }, }, } = require('internal/errors'); const { normalizeEncoding } = require('internal/util'); @@ -157,10 +157,10 @@ const validateUint32 = hideStackFrames((value, name, positive = false) => { */ /** @type {validateString} */ -function validateString(value, name) { +const validateString = hideStackFrames((value, name) => { if (typeof value !== 'string') throw new ERR_INVALID_ARG_TYPE(name, 'string', value); -} +}); /** * @callback validateNumber @@ -172,7 +172,7 @@ function validateString(value, name) { */ /** @type {validateNumber} */ -function validateNumber(value, name, min = undefined, max) { +const validateNumber = hideStackFrames((value, name, min = undefined, max) => { if (typeof value !== 'number') throw new ERR_INVALID_ARG_TYPE(name, 'number', value); @@ -183,7 +183,7 @@ function validateNumber(value, name, min = undefined, max) { `${min != null ? `>= ${min}` : ''}${min != null && max != null ? ' && ' : ''}${max != null ? `<= ${max}` : ''}`, value); } -} +}); /** * @callback validateOneOf @@ -213,10 +213,10 @@ const validateOneOf = hideStackFrames((value, name, oneOf) => { */ /** @type {validateBoolean} */ -function validateBoolean(value, name) { +const validateBoolean = hideStackFrames((value, name) => { if (typeof value !== 'boolean') throw new ERR_INVALID_ARG_TYPE(name, 'boolean', value); -} +}); const kValidateObjectNone = 0; const kValidateObjectAllowNullable = 1 << 0; @@ -309,7 +309,7 @@ const validateArray = hideStackFrames((value, name, minLength = 0) => { */ /** @type {validateStringArray} */ -function validateStringArray(value, name) { +const validateStringArray = hideStackFrames((value, name) => { validateArray(value, name); for (let i = 0; i < value.length; ++i) { // Don't use validateString here for performance reasons, as @@ -318,7 +318,7 @@ function validateStringArray(value, name) { throw new ERR_INVALID_ARG_TYPE(`${name}[${i}]`, 'string', value[i]); } } -} +}); /** * @callback validateBooleanArray @@ -328,7 +328,7 @@ function validateStringArray(value, name) { */ /** @type {validateBooleanArray} */ -function validateBooleanArray(value, name) { +const validateBooleanArray = hideStackFrames((value, name) => { validateArray(value, name); for (let i = 0; i < value.length; ++i) { // Don't use validateBoolean here for performance reasons, as @@ -337,7 +337,7 @@ function validateBooleanArray(value, name) { throw new ERR_INVALID_ARG_TYPE(`${name}[${i}]`, 'boolean', value[i]); } } -} +}); /** * @callback validateAbortSignalArray @@ -364,7 +364,7 @@ function validateAbortSignalArray(value, name) { * @param {string} [name='signal'] * @returns {asserts signal is keyof signals} */ -function validateSignalName(signal, name = 'signal') { +const validateSignalName = hideStackFrames((signal, name = 'signal') => { validateString(signal, name); if (signals[signal] === undefined) { @@ -375,7 +375,7 @@ function validateSignalName(signal, name = 'signal') { throw new ERR_UNKNOWN_SIGNAL(signal); } -} +}); /** * @callback validateBuffer @@ -397,7 +397,7 @@ const validateBuffer = hideStackFrames((buffer, name = 'buffer') => { * @param {string} data * @param {string} encoding */ -function validateEncoding(data, encoding) { +const validateEncoding = hideStackFrames((data, encoding) => { const normalizedEncoding = normalizeEncoding(encoding); const length = data.length; @@ -405,7 +405,7 @@ function validateEncoding(data, encoding) { throw new ERR_INVALID_ARG_VALUE('encoding', encoding, `is invalid for data of length ${length}`); } -} +}); /** * Check that the port number is not NaN when coerced to a number, @@ -415,7 +415,7 @@ function validateEncoding(data, encoding) { * @param {boolean} [allowZero=true] * @returns {number} */ -function validatePort(port, name = 'Port', allowZero = true) { +const validatePort = hideStackFrames((port, name = 'Port', allowZero = true) => { if ((typeof port !== 'number' && typeof port !== 'string') || (typeof port === 'string' && StringPrototypeTrim(port).length === 0) || +port !== (+port >>> 0) || @@ -424,7 +424,7 @@ function validatePort(port, name = 'Port', allowZero = true) { throw new ERR_SOCKET_BAD_PORT(name, port, allowZero); } return port | 0; -} +}); /** * @callback validateAbortSignal @@ -507,7 +507,7 @@ const linkValueRegExp = /^(?:<[^>]*>)(?:\s*;\s*[^;"\s]+(?:=(")?[^;"\s]*\1)?)*$/; * @param {any} value * @param {string} name */ -function validateLinkHeaderFormat(value, name) { +const validateLinkHeaderFormat = hideStackFrames((value, name) => { if ( typeof value === 'undefined' || !RegExpPrototypeExec(linkValueRegExp, value) @@ -518,7 +518,7 @@ function validateLinkHeaderFormat(value, name) { 'must be an array or string of format "; rel=preload; as=style"', ); } -} +}); const validateInternalField = hideStackFrames((object, fieldKey, className) => { if (typeof object !== 'object' || object === null || !ObjectPrototypeHasOwnProperty(object, fieldKey)) { @@ -530,9 +530,9 @@ const validateInternalField = hideStackFrames((object, fieldKey, className) => { * @param {any} hints * @return {string} */ -function validateLinkHeaderValue(hints) { +const validateLinkHeaderValue = hideStackFrames((hints) => { if (typeof hints === 'string') { - validateLinkHeaderFormat(hints, 'hints'); + validateLinkHeaderFormat.withoutStackTrace(hints, 'hints'); return hints; } else if (ArrayIsArray(hints)) { const hintsLength = hints.length; @@ -544,7 +544,7 @@ function validateLinkHeaderValue(hints) { for (let i = 0; i < hintsLength; i++) { const link = hints[i]; - validateLinkHeaderFormat(link, 'hints'); + validateLinkHeaderFormat.withoutStackTrace(link, 'hints'); result += link; if (i !== hintsLength - 1) { @@ -560,7 +560,7 @@ function validateLinkHeaderValue(hints) { hints, 'must be an array or string of format "; rel=preload; as=style"', ); -} +}); module.exports = { isInt32, diff --git a/lib/internal/vm.js b/lib/internal/vm.js index b67eb177b35f07..6c7872fbf27b94 100644 --- a/lib/internal/vm.js +++ b/lib/internal/vm.js @@ -34,7 +34,7 @@ function isContext(object) { return _isContext(object); } -function getHostDefinedOptionId(importModuleDynamically, filename) { +function getHostDefinedOptionId(importModuleDynamically, hint) { if (importModuleDynamically !== undefined) { // Check that it's either undefined or a function before we pass // it into the native constructor. @@ -57,7 +57,7 @@ function getHostDefinedOptionId(importModuleDynamically, filename) { return vm_dynamic_import_missing_flag; } - return Symbol(filename); + return Symbol(hint); } function registerImportModuleDynamically(referrer, importModuleDynamically) { diff --git a/lib/internal/webstreams/adapters.js b/lib/internal/webstreams/adapters.js index 3e5fd69d4d6a03..878fd0a0d4d76b 100644 --- a/lib/internal/webstreams/adapters.js +++ b/lib/internal/webstreams/adapters.js @@ -46,7 +46,7 @@ const { } = require('buffer'); const { - errnoException, + ErrnoException, codes: { ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, @@ -856,7 +856,7 @@ function newWritableStreamFromStreamBase(streamBase, strategy) { function onWriteComplete(status) { if (status < 0) { - const error = errnoException(status, 'write', this.error); + const error = new ErrnoException(status, 'write', this.error); this.promise.reject(error); this.controller.error(error); return; @@ -879,7 +879,7 @@ function newWritableStreamFromStreamBase(streamBase, strategy) { } if (ret !== 0) - promise.reject(errnoException(ret, 'write', req)); + promise.reject(new ErrnoException(ret, 'write', req)); else if (!req.async) promise.resolve(); diff --git a/lib/internal/webstreams/compression.js b/lib/internal/webstreams/compression.js index 6cbaa3f3250e73..d912959e29fd23 100644 --- a/lib/internal/webstreams/compression.js +++ b/lib/internal/webstreams/compression.js @@ -35,13 +35,16 @@ class CompressionStream { #transform; /** - * @param {'deflate'|'gzip'} format + * @param {'deflate'|'deflate-raw'|'gzip'} format */ constructor(format) { switch (format) { case 'deflate': this.#handle = lazyZlib().createDeflate(); break; + case 'deflate-raw': + this.#handle = lazyZlib().createDeflateRaw(); + break; case 'gzip': this.#handle = lazyZlib().createGzip(); break; @@ -80,13 +83,16 @@ class DecompressionStream { #transform; /** - * @param {'deflate'|'gzip'} format + * @param {'deflate'|'deflate-raw'|'gzip'} format */ constructor(format) { switch (format) { case 'deflate': this.#handle = lazyZlib().createInflate(); break; + case 'deflate-raw': + this.#handle = lazyZlib().createInflateRaw(); + break; case 'gzip': this.#handle = lazyZlib().createGunzip(); break; diff --git a/lib/internal/webstreams/readablestream.js b/lib/internal/webstreams/readablestream.js index 83b49028eae8e0..a5f95596e3082a 100644 --- a/lib/internal/webstreams/readablestream.js +++ b/lib/internal/webstreams/readablestream.js @@ -85,9 +85,7 @@ const { kControllerErrorFunction, } = require('internal/streams/utils'); -const { - structuredClone, -} = require('internal/structured_clone'); +const { structuredClone } = internalBinding('messaging'); const { ArrayBufferViewGetBuffer, diff --git a/lib/net.js b/lib/net.js index 7f9b1e5c084d8c..02bc1cd713770e 100644 --- a/lib/net.js +++ b/lib/net.js @@ -106,11 +106,11 @@ const { ERR_SOCKET_CLOSED_BEFORE_CONNECTION, ERR_MISSING_ARGS, }, - aggregateErrors, - errnoException, - exceptionWithHostPort, + ErrnoException, + ExceptionWithHostPort, genericNodeError, - uvExceptionWithHostPort, + NodeAggregateError, + UVExceptionWithHostPort, } = require('internal/errors'); const { isUint8Array } = require('internal/util/types'); const { queueMicrotask } = require('internal/process/task_queues'); @@ -425,7 +425,7 @@ function Socket(options) { // which cannot be opened. This is difficult to test as most // un-openable fds will throw on `createHandle` if (err) - throw errnoException(err, 'open'); + throw new ErrnoException(err, 'open'); this[async_id_symbol] = this._handle.getAsyncId(); @@ -434,7 +434,7 @@ function Socket(options) { // Make stdout and stderr blocking on Windows err = this._handle.setBlocking(true); if (err) - throw errnoException(err, 'setBlocking'); + throw new ErrnoException(err, 'setBlocking'); this._writev = null; this._write = makeSyncWrite(fd); @@ -533,7 +533,7 @@ Socket.prototype._final = function(cb) { if (err === 1 || err === UV_ENOTCONN) // synchronous finish return cb(); else if (err !== 0) - return cb(errnoException(err, 'shutdown')); + return cb(new ErrnoException(err, 'shutdown')); }; function afterShutdown() { @@ -698,7 +698,7 @@ function tryReadStart(socket) { socket._handle.reading = true; const err = socket._handle.readStart(); if (err) - socket.destroy(errnoException(err, 'read')); + socket.destroy(new ErrnoException(err, 'read')); } // Just call handle.readStart until we have enough in the buffer @@ -747,7 +747,7 @@ Socket.prototype.pause = function() { if (!this.destroyed) { const err = this._handle.readStop(); if (err) - this.destroy(errnoException(err, 'read')); + this.destroy(new ErrnoException(err, 'read')); } } return stream.Duplex.prototype.pause.call(this); @@ -816,7 +816,7 @@ Socket.prototype._destroy = function(exception, cb) { this.emit('close', isException); }); if (err) - this.emit('error', errnoException(err, 'reset')); + this.emit('error', new ErrnoException(err, 'reset')); } else if (this._closeAfterHandlingError) { // Enqueue closing the socket as a microtask, so that the socket can be // accessible when an `error` event is handled in the `next tick queue`. @@ -1051,7 +1051,7 @@ function internalConnect( err = checkBindError(err, localPort, self._handle); if (err) { - const ex = exceptionWithHostPort(err, 'bind', localAddress, localPort); + const ex = new ExceptionWithHostPort(err, 'bind', localAddress, localPort); self.destroy(ex); return; } @@ -1087,7 +1087,7 @@ function internalConnect( details = sockname.address + ':' + sockname.port; } - const ex = exceptionWithHostPort(err, 'connect', address, port, details); + const ex = new ExceptionWithHostPort(err, 'connect', address, port, details); self.destroy(ex); } else if ((addressType === 6 || addressType === 4) && hasObserver('net')) { startPerf(self, kPerfHooksNetConnectContext, { type: 'net', name: 'connect', detail: { host: address, port } }); @@ -1111,7 +1111,7 @@ function internalConnectMultiple(context, canceled) { return; } - self.destroy(aggregateErrors(context.errors)); + self.destroy(new NodeAggregateError(context.errors)); return; } @@ -1142,7 +1142,7 @@ function internalConnectMultiple(context, canceled) { err = checkBindError(err, localPort, self._handle); if (err) { - ArrayPrototypePush(context.errors, exceptionWithHostPort(err, 'bind', localAddress, localPort)); + ArrayPrototypePush(context.errors, new ExceptionWithHostPort(err, 'bind', localAddress, localPort)); internalConnectMultiple(context); return; } @@ -1173,7 +1173,7 @@ function internalConnectMultiple(context, canceled) { details = sockname.address + ':' + sockname.port; } - ArrayPrototypePush(context.errors, exceptionWithHostPort(err, 'connect', address, port, details)); + ArrayPrototypePush(context.errors, new ExceptionWithHostPort(err, 'connect', address, port, details)); internalConnectMultiple(context); return; } @@ -1592,11 +1592,11 @@ function afterConnect(status, handle, req, readable, writable) { if (req.localAddress && req.localPort) { details = req.localAddress + ':' + req.localPort; } - const ex = exceptionWithHostPort(status, - 'connect', - req.address, - req.port, - details); + const ex = new ExceptionWithHostPort(status, + 'connect', + req.address, + req.port, + details); if (details) { ex.localAddress = req.localAddress; ex.localPort = req.localPort; @@ -1631,11 +1631,11 @@ function createConnectionError(req, status) { details = req.localAddress + ':' + req.localPort; } - const ex = exceptionWithHostPort(status, - 'connect', - req.address, - req.port, - details); + const ex = new ExceptionWithHostPort(status, + 'connect', + req.address, + req.port, + details); if (details) { ex.localAddress = req.localAddress; ex.localPort = req.localPort; @@ -1852,7 +1852,7 @@ function setupListenHandle(address, port, addressType, backlog, fd, flags) { rval = createServerHandle(address, port, addressType, fd, flags); if (typeof rval === 'number') { - const error = uvExceptionWithHostPort(rval, 'listen', address, port); + const error = new UVExceptionWithHostPort(rval, 'listen', address, port); process.nextTick(emitErrorNT, this, error); return; } @@ -1869,7 +1869,7 @@ function setupListenHandle(address, port, addressType, backlog, fd, flags) { const err = this._handle.listen(backlog || 511); if (err) { - const ex = uvExceptionWithHostPort(err, 'listen', address, port); + const ex = new UVExceptionWithHostPort(err, 'listen', address, port); this._handle.close(); this._handle = null; defaultTriggerAsyncIdScope(this[async_id_symbol], @@ -1937,7 +1937,7 @@ function listenInCluster(server, address, port, addressType, err = checkBindError(err, port, handle); if (err) { - const ex = exceptionWithHostPort(err, 'bind', address, port); + const ex = new ExceptionWithHostPort(err, 'bind', address, port); return server.emit('error', ex); } @@ -2045,7 +2045,7 @@ Server.prototype.listen = function(...args) { if (err) { this._handle.close(); this._handle = null; - throw errnoException(err, 'uv_pipe_chmod'); + throw new ErrnoException(err, 'uv_pipe_chmod'); } } return this; @@ -2086,7 +2086,7 @@ Server.prototype.address = function() { const out = {}; const err = this._handle.getsockname(out); if (err) { - throw errnoException(err, 'address'); + throw new ErrnoException(err, 'address'); } return out; } else if (this._pipeName) { @@ -2102,7 +2102,7 @@ function onconnection(err, clientHandle) { debug('onconnection'); if (err) { - self.emit('error', errnoException(err, 'accept')); + self.emit('error', new ErrnoException(err, 'accept')); return; } diff --git a/lib/os.js b/lib/os.js index 1ad17c635182d4..bef4936c7c0bbe 100644 --- a/lib/os.js +++ b/lib/os.js @@ -65,7 +65,7 @@ function getCheckedFunction(fn) { const ctx = {}; const ret = fn(ctx); if (ret === undefined) { - throw new ERR_SYSTEM_ERROR(ctx); + throw new ERR_SYSTEM_ERROR.HideStackFramesError(ctx); } return ret; }); diff --git a/lib/repl.js b/lib/repl.js index d8021215b3f425..3029c94b1e1ac0 100644 --- a/lib/repl.js +++ b/lib/repl.js @@ -90,7 +90,7 @@ const { StringPrototypeSplit, StringPrototypeStartsWith, StringPrototypeTrim, - StringPrototypeTrimLeft, + StringPrototypeTrimStart, StringPrototypeToLocaleLowerCase, Symbol, SyntaxError, @@ -1326,7 +1326,7 @@ function complete(line, callback) { let completeOn, group; // Ignore right whitespace. It could change the outcome. - line = StringPrototypeTrimLeft(line); + line = StringPrototypeTrimStart(line); let filter = ''; diff --git a/lib/test/reporters.js b/lib/test/reporters.js index 06a0b27ee58275..6316074e6e64aa 100644 --- a/lib/test/reporters.js +++ b/lib/test/reporters.js @@ -6,6 +6,7 @@ let dot; let junit; let spec; let tap; +let lcov; ObjectDefineProperties(module.exports, { __proto__: null, @@ -45,4 +46,13 @@ ObjectDefineProperties(module.exports, { return tap; }, }, + lcov: { + __proto__: null, + configurable: true, + enumerable: true, + get() { + lcov ??= require('internal/test_runner/reporter/lcov'); + return ReflectConstruct(lcov, arguments); + }, + }, }); diff --git a/lib/tty.js b/lib/tty.js index fb0319f93ebe67..aa929cd9ba0d08 100644 --- a/lib/tty.js +++ b/lib/tty.js @@ -74,7 +74,7 @@ ReadStream.prototype.setRawMode = function(flag) { flag = !!flag; const err = this._handle?.setRawMode(flag); if (err) { - this.emit('error', errors.errnoException(err, 'setRawMode')); + this.emit('error', new errors.ErrnoException(err, 'setRawMode')); return this; } this.isRaw = flag; @@ -129,7 +129,7 @@ WriteStream.prototype._refreshSize = function() { const winSize = new Array(2); const err = this._handle.getWindowSize(winSize); if (err) { - this.emit('error', errors.errnoException(err, 'getWindowSize')); + this.emit('error', new errors.ErrnoException(err, 'getWindowSize')); return; } const { 0: newCols, 1: newRows } = winSize; diff --git a/lib/util.js b/lib/util.js index 7fb7994e6536ba..9ddb332f866355 100644 --- a/lib/util.js +++ b/lib/util.js @@ -32,6 +32,7 @@ const { DatePrototypeGetMonth, DatePrototypeGetSeconds, Error, + ErrorCaptureStackTrace, FunctionPrototypeBind, NumberIsSafeInteger, ObjectDefineProperties, @@ -51,9 +52,9 @@ const { ERR_INVALID_ARG_TYPE, ERR_OUT_OF_RANGE, }, - errnoException, - exceptionWithHostPort, - hideStackFrames, + isErrorStackTraceLimitWritable, + ErrnoException, + ExceptionWithHostPort, } = require('internal/errors'); const { format, @@ -278,16 +279,17 @@ function _extend(target, source) { return target; } -const callbackifyOnRejected = hideStackFrames((reason, cb) => { +const callbackifyOnRejected = (reason, cb) => { // `!reason` guard inspired by bluebird (Ref: https://goo.gl/t5IS6M). // Because `null` is a special error value in callbacks which means "no error // occurred", we error-wrap so the callback consumer can distinguish between // "the promise rejected with null" or "the promise fulfilled with undefined". if (!reason) { - reason = new ERR_FALSY_VALUE_REJECTION(reason); + reason = new ERR_FALSY_VALUE_REJECTION.HideStackFramesError(reason); + ErrorCaptureStackTrace(reason, callbackifyOnRejected); } return cb(reason); -}); +}; /** * @template {(...args: any[]) => Promise} T @@ -345,10 +347,34 @@ function getSystemErrorName(err) { return internalErrorName(err); } +function _errnoException(...args) { + if (isErrorStackTraceLimitWritable()) { + const limit = Error.stackTraceLimit; + Error.stackTraceLimit = 0; + const e = new ErrnoException(...args); + Error.stackTraceLimit = limit; + ErrorCaptureStackTrace(e, _exceptionWithHostPort); + return e; + } + return new ErrnoException(...args); +} + +function _exceptionWithHostPort(...args) { + if (isErrorStackTraceLimitWritable()) { + const limit = Error.stackTraceLimit; + Error.stackTraceLimit = 0; + const e = new ExceptionWithHostPort(...args); + Error.stackTraceLimit = limit; + ErrorCaptureStackTrace(e, _exceptionWithHostPort); + return e; + } + return new ExceptionWithHostPort(...args); +} + // Keep the `exports =` so that various functions can still be monkeypatched module.exports = { - _errnoException: errnoException, - _exceptionWithHostPort: exceptionWithHostPort, + _errnoException, + _exceptionWithHostPort, _extend, callbackify, debug: debuglog, diff --git a/lib/vm.js b/lib/vm.js index d396a3df8c0e13..44861be46dafd2 100644 --- a/lib/vm.js +++ b/lib/vm.js @@ -218,6 +218,7 @@ function createContext(contextObject = {}, options = kEmptyObject) { origin, codeGeneration, microtaskMode, + importModuleDynamically, } = options; validateString(name, 'options.name'); @@ -239,7 +240,14 @@ function createContext(contextObject = {}, options = kEmptyObject) { ['afterEvaluate', undefined]); const microtaskQueue = (microtaskMode === 'afterEvaluate'); - makeContext(contextObject, name, origin, strings, wasm, microtaskQueue); + const hostDefinedOptionId = + getHostDefinedOptionId(importModuleDynamically, name); + + makeContext(contextObject, name, origin, strings, wasm, microtaskQueue, hostDefinedOptionId); + // Register the context scope callback after the context was initialized. + if (importModuleDynamically !== undefined) { + registerImportModuleDynamically(contextObject, importModuleDynamically); + } return contextObject; } diff --git a/lib/zlib.js b/lib/zlib.js index 2b90c6f91fed76..3766938f6bc7bb 100644 --- a/lib/zlib.js +++ b/lib/zlib.js @@ -211,10 +211,10 @@ const checkFiniteNumber = hideStackFrames((number, name) => { return false; } - validateNumber(number, name); + validateNumber.withoutStackTrace(number, name); // Infinite numbers - throw new ERR_OUT_OF_RANGE(name, 'a finite number', number); + throw new ERR_OUT_OF_RANGE.HideStackFramesError(name, 'a finite number', number); }); // 1. Returns def for number when it's undefined or NaN @@ -223,12 +223,12 @@ const checkFiniteNumber = hideStackFrames((number, name) => { // 4. Throws ERR_OUT_OF_RANGE for infinite numbers or numbers > upper or < lower const checkRangesOrGetDefault = hideStackFrames( (number, name, lower, upper, def) => { - if (!checkFiniteNumber(number, name)) { + if (!checkFiniteNumber.withoutStackTrace(number, name)) { return def; } if (number < lower || number > upper) { - throw new ERR_OUT_OF_RANGE(name, - `>= ${lower} and <= ${upper}`, number); + throw new ERR_OUT_OF_RANGE.HideStackFramesError(name, + `>= ${lower} and <= ${upper}`, number); } return number; }, diff --git a/node.gni b/node.gni new file mode 100644 index 00000000000000..2be97a17a2f710 --- /dev/null +++ b/node.gni @@ -0,0 +1,67 @@ +# Copyright 2019 the V8 project authors. All rights reserved. +# Copyright 2023 Microsoft Inc. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please take a look at node.gyp if you are making changes to build system. + +# Embedder options. +declare_args() { + # The location of Node.js in source code tree. + node_path = "//node" + + # The location of V8, use the one from node's deps by default. + node_v8_path = "$node_path/deps/v8" + + # The NODE_MODULE_VERSION defined in node_version.h. + node_module_version = exec_script("$node_path/tools/getmoduleversion.py", [], "value") + + # Support for external shareable builtins. + # TODO(zcbenz): This is currently copied from configure.py, we should share + # the list between configure.py and GN configurations. + node_builtin_shareable_builtins = [ + "deps/cjs-module-lexer/lexer.js", + "deps/cjs-module-lexer/dist/lexer.js", + "deps/undici/undici.js", + ] +} + +# Equivalent of gyp file's configurations. +declare_args() { + # Enable the V8 inspector protocol for use with node. + node_enable_inspector = true + + # Build node with SSL support. + # The variable is called "openssl" for parity with node's GYP build. + node_use_openssl = true + + # Use the specified path to system CA (PEM format) in addition to + # the BoringSSL supplied CA store or compiled-in Mozilla CA copy. + node_openssl_system_ca_path = "" + + # Initialize v8 platform during node.js startup. + node_use_v8_platform = true + + # Custom build tag. + node_tag = "" + + # V8 options to pass, see `node --v8-options` for examples. + node_v8_options = "" + + # Provide a custom URL prefix for the `process.release` properties + # `sourceUrl` and `headersUrl`. When compiling a release build, this will + # default to https://nodejs.org/download/release/'). + node_release_urlbase = "" + + # Use code cache to speed up startup. Disabled for cross compilation. + node_use_node_code_cache = host_os == target_os && host_cpu == target_cpu + + # Use snapshot to speed up startup. + # TODO(zcbenz): node_mksnapshot is not ready for cross-os compilation. + node_use_node_snapshot = host_os == target_os +} + +assert(!node_enable_inspector || node_use_openssl, + "node_enable_inspector requires node_use_openssl") diff --git a/node.gyp b/node.gyp index 93e4235a0f3efd..3f6915b266fc38 100644 --- a/node.gyp +++ b/node.gyp @@ -762,7 +762,7 @@ '<(fipsmodule)', ], 'action': [ - 'python', 'tools/copyfile.py', + '<(python)', 'tools/copyfile.py', '<(fipsmodule_internal)', '<(fipsmodule)', ], @@ -772,7 +772,7 @@ 'inputs': [ '<(opensslconfig)', ], 'outputs': [ '<(opensslconfig_internal)', ], 'action': [ - 'python', 'tools/enable_fips_include.py', + '<(python)', 'tools/enable_fips_include.py', '<(opensslconfig)', '<(opensslconfig_internal)', '<(fipsconfig)', diff --git a/pyproject.toml b/pyproject.toml index d0c3a056f2e92c..b7ec8b42944028 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ select = [ ] exclude = [ "deps", + "tools/gyp", "tools/inspector_protocol", "tools/node_modules", ] diff --git a/src/acorn_version.h b/src/acorn_version.h index 7e0add93c19bf8..4639cc6353328a 100644 --- a/src/acorn_version.h +++ b/src/acorn_version.h @@ -2,5 +2,5 @@ // Refer to tools/dep_updaters/update-acorn.sh #ifndef SRC_ACORN_VERSION_H_ #define SRC_ACORN_VERSION_H_ -#define ACORN_VERSION "8.10.0" +#define ACORN_VERSION "8.11.2" #endif // SRC_ACORN_VERSION_H_ diff --git a/src/base64_version.h b/src/base64_version.h index fa492a293b40e1..c3737f4beebfcb 100644 --- a/src/base64_version.h +++ b/src/base64_version.h @@ -2,5 +2,5 @@ // Refer to tools/dep_updaters/update-base64.sh #ifndef SRC_BASE64_VERSION_H_ #define SRC_BASE64_VERSION_H_ -#define BASE64_VERSION "0.5.0" +#define BASE64_VERSION "0.5.1" #endif // SRC_BASE64_VERSION_H_ diff --git a/src/debug_utils.cc b/src/debug_utils.cc index fadf321c3d925f..d3436c62079e6a 100644 --- a/src/debug_utils.cc +++ b/src/debug_utils.cc @@ -59,6 +59,9 @@ namespace per_process { EnabledDebugList enabled_debug_list; } +using v8::Local; +using v8::StackTrace; + void EnabledDebugList::Parse(std::shared_ptr env_vars, v8::Isolate* isolate) { std::string cats; @@ -303,7 +306,8 @@ std::string NativeSymbolDebuggingContext::SymbolInfo::Display() const { return oss.str(); } -void DumpBacktrace(FILE* fp) { +void DumpNativeBacktrace(FILE* fp) { + fprintf(fp, "----- Native stack trace -----\n\n"); auto sym_ctx = NativeSymbolDebuggingContext::New(); void* frames[256]; const int size = sym_ctx->GetStackTrace(frames, arraysize(frames)); @@ -314,6 +318,22 @@ void DumpBacktrace(FILE* fp) { } } +void DumpJavaScriptBacktrace(FILE* fp) { + v8::Isolate* isolate = v8::Isolate::TryGetCurrent(); + if (isolate == nullptr) { + return; + } + + Local stack; + if (!GetCurrentStackTrace(isolate).ToLocal(&stack)) { + return; + } + + fprintf(fp, "\n----- JavaScript stack trace -----\n\n"); + PrintStackTrace(isolate, stack, StackTracePrefix::kNumber); + fprintf(fp, "\n"); +} + void CheckedUvLoopClose(uv_loop_t* loop) { if (uv_loop_close(loop) == 0) return; @@ -514,5 +534,6 @@ void FWrite(FILE* file, const std::string& str) { } // namespace node extern "C" void __DumpBacktrace(FILE* fp) { - node::DumpBacktrace(fp); + node::DumpNativeBacktrace(fp); + node::DumpJavaScriptBacktrace(fp); } diff --git a/src/env.cc b/src/env.cc index 1d8df40c3446ac..4a25309449c8c7 100644 --- a/src/env.cc +++ b/src/env.cc @@ -1662,7 +1662,8 @@ void AsyncHooks::FailWithCorruptedAsyncStack(double expected_async_id) { "actual: %.f, expected: %.f)\n", async_id_fields_.GetValue(kExecutionAsyncId), expected_async_id); - DumpBacktrace(stderr); + DumpNativeBacktrace(stderr); + DumpJavaScriptBacktrace(stderr); fflush(stderr); // TODO(joyeecheung): should this exit code be more specific? if (!env()->abort_on_uncaught_exception()) Exit(ExitCode::kGenericUserError); diff --git a/src/inspector/BUILD.gn b/src/inspector/BUILD.gn new file mode 100644 index 00000000000000..909fd14345fcd9 --- /dev/null +++ b/src/inspector/BUILD.gn @@ -0,0 +1,14 @@ +############################################################################## +# # +# DO NOT EDIT THIS FILE! # +# # +############################################################################## + +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please modify the gyp files if you are making changes to build system. + +import("unofficial.gni") + +inspector_gn_build("inspector") { +} diff --git a/src/inspector/unofficial.gni b/src/inspector/unofficial.gni new file mode 100644 index 00000000000000..b562109e94c17d --- /dev/null +++ b/src/inspector/unofficial.gni @@ -0,0 +1,81 @@ +# Copyright (c) 2013-2019 GitHub Inc. +# Copyright 2019 the V8 project authors. All rights reserved. +# Copyright 2023 Microsoft Inc. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +import("../../node.gni") +import("$node_v8_path/gni/v8.gni") + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("inspector_gn_build") { + group(target_name) { + forward_variables_from(invoker, "*") + deps = [ + ":node_protocol_generated_sources", + ":v8_inspector_compress_protocol_json", + ] + } + + node_gen_dir = get_label_info("../..", "target_gen_dir") + protocol_tool_path = "../../tools/inspector_protocol" + + gypi_values = exec_script( + "../../tools/gypi_to_gn.py", + [ rebase_path("node_inspector.gypi"), + "--replace=<(SHARED_INTERMEDIATE_DIR)=$node_gen_dir", + "--replace=<(protocol_tool_path)=$protocol_tool_path" ], + "scope", + [ "node_inspector.gypi" ]) + + action("node_protocol_generated_sources") { + script = "$protocol_tool_path/code_generator.py" + + deps = [ ":node_protocol_json" ] + + outputs = gypi_values.node_inspector_generated_sources + inputs = gypi_values.node_protocol_files + [ + "node_protocol_config.json", + "$node_gen_dir/src/node_protocol.json", + ] + + args = [ + "--jinja_dir", + # jinja is in third_party. + rebase_path("//third_party/", root_build_dir), + "--output_base", + rebase_path("$node_gen_dir/src", root_build_dir), + "--config", + rebase_path("node_protocol_config.json", root_build_dir), + ] + } + + action("v8_inspector_compress_protocol_json") { + script = "../../tools/compress_json.py" + deps = [ ":concatenate_protocols" ] + inputs = [ "$target_gen_dir/concatenated_protocol.json" ] + outputs = [ "$target_gen_dir/v8_inspector_protocol_json.h" ] + args = rebase_path(inputs + outputs, root_build_dir) + } + + action("concatenate_protocols") { + script = "$protocol_tool_path/concatenate_protocols.py" + deps = [ ":node_protocol_json" ] + inputs = [ + "$node_gen_dir/src/js_protocol.json", + "$node_gen_dir/src/node_protocol.json", + ] + outputs = [ + "$target_gen_dir/concatenated_protocol.json", + ] + args = rebase_path(inputs + outputs, root_build_dir) + } + + action_foreach("node_protocol_json") { + script = "$node_v8_path/third_party/inspector_protocol/convert_protocol_to_json.py" + sources = [ "node_protocol.pdl", v8_inspector_js_protocol ] + outputs = [ "$node_gen_dir/src/{{source_name_part}}.json" ] + args = [ "{{source}}" ] + rebase_path(outputs, root_build_dir) + } +} diff --git a/src/module_wrap.cc b/src/module_wrap.cc index 99802b372f432f..1d61fe5f0522ba 100644 --- a/src/module_wrap.cc +++ b/src/module_wrap.cc @@ -564,22 +564,20 @@ static MaybeLocal ImportModuleDynamically( Local import_callback = env->host_import_module_dynamically_callback(); + Local id; Local options = host_defined_options.As(); - if (options->Length() != HostDefinedOptions::kLength) { - Local resolver; - if (!Promise::Resolver::New(context).ToLocal(&resolver)) return {}; - resolver - ->Reject(context, - v8::Exception::TypeError(FIXED_ONE_BYTE_STRING( - context->GetIsolate(), "Invalid host defined options"))) - .ToChecked(); - return handle_scope.Escape(resolver->GetPromise()); + // Get referrer id symbol from the host-defined options. + // If the host-defined options are empty, get the referrer id symbol + // from the realm global object. + if (options->Length() == HostDefinedOptions::kLength) { + id = options->Get(context, HostDefinedOptions::kID).As(); + } else { + id = context->Global() + ->GetPrivate(context, env->host_defined_option_symbol()) + .ToLocalChecked(); } - Local id = - options->Get(context, HostDefinedOptions::kID).As(); - Local attributes = createImportAttributesContainer(env, isolate, import_attributes); diff --git a/src/node_contextify.cc b/src/node_contextify.cc index a849efcc9c334d..8b27b000f7da06 100644 --- a/src/node_contextify.cc +++ b/src/node_contextify.cc @@ -288,6 +288,19 @@ BaseObjectPtr ContextifyContext::New( .IsNothing()) { return BaseObjectPtr(); } + + // Assign host_defined_options_id to the global object so that in the + // callback of ImportModuleDynamically, we can get the + // host_defined_options_id from the v8::Context without accessing the + // wrapper object. + if (new_context_global + ->SetPrivate(v8_context, + env->host_defined_option_symbol(), + options->host_defined_options_id) + .IsNothing()) { + return BaseObjectPtr(); + } + env->AssignToContext(v8_context, nullptr, info); if (!env->contextify_wrapper_template() @@ -308,6 +321,16 @@ BaseObjectPtr ContextifyContext::New( .IsNothing()) { return BaseObjectPtr(); } + // Assign host_defined_options_id to the sandbox object so that module + // callbacks like importModuleDynamically can be registered once back to the + // JS land. + if (sandbox_obj + ->SetPrivate(v8_context, + env->host_defined_option_symbol(), + options->host_defined_options_id) + .IsNothing()) { + return BaseObjectPtr(); + } return result; } @@ -344,7 +367,7 @@ void ContextifyContext::RegisterExternalReferences( void ContextifyContext::MakeContext(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); - CHECK_EQ(args.Length(), 6); + CHECK_EQ(args.Length(), 7); CHECK(args[0]->IsObject()); Local sandbox = args[0].As(); @@ -375,6 +398,9 @@ void ContextifyContext::MakeContext(const FunctionCallbackInfo& args) { MicrotaskQueue::New(env->isolate(), MicrotasksPolicy::kExplicit); } + CHECK(args[6]->IsSymbol()); + options.host_defined_options_id = args[6].As(); + TryCatchScope try_catch(env); BaseObjectPtr context_ptr = ContextifyContext::New(env, sandbox, &options); diff --git a/src/node_contextify.h b/src/node_contextify.h index 721c146ff88c35..cce062622b70d8 100644 --- a/src/node_contextify.h +++ b/src/node_contextify.h @@ -18,6 +18,7 @@ struct ContextOptions { v8::Local allow_code_gen_strings; v8::Local allow_code_gen_wasm; std::unique_ptr own_microtask_queue; + v8::Local host_defined_options_id; }; class ContextifyContext : public BaseObject { diff --git a/src/node_credentials.cc b/src/node_credentials.cc index 8a832b0e3efb3a..76088144950e49 100644 --- a/src/node_credentials.cc +++ b/src/node_credentials.cc @@ -49,7 +49,7 @@ namespace credentials { #if defined(__linux__) // Returns true if the current process only has the passed-in capability. -bool HasOnly(int capability) { +static bool HasOnly(int capability) { DCHECK(cap_valid(capability)); struct __user_cap_data_struct cap_data[2]; diff --git a/src/node_errors.cc b/src/node_errors.cc index fe74717d00e140..9c4ebbe4502698 100644 --- a/src/node_errors.cc +++ b/src/node_errors.cc @@ -1,5 +1,6 @@ #include #include +#include #include "debug_utils-inl.h" #include "node_errors.h" @@ -15,6 +16,7 @@ namespace node { using errors::TryCatchScope; using v8::Boolean; using v8::Context; +using v8::EscapableHandleScope; using v8::Exception; using v8::Function; using v8::FunctionCallbackInfo; @@ -185,7 +187,46 @@ static std::string GetErrorSource(Isolate* isolate, return buf + std::string(underline_buf, off); } -static std::string FormatStackTrace(Isolate* isolate, Local stack) { +static std::atomic is_in_oom{false}; +static std::atomic is_retrieving_js_stacktrace{false}; +MaybeLocal GetCurrentStackTrace(Isolate* isolate, int frame_count) { + if (isolate == nullptr) { + return MaybeLocal(); + } + // Generating JavaScript stack trace can result in V8 fatal error, + // which can re-enter this function. + if (is_retrieving_js_stacktrace.load()) { + return MaybeLocal(); + } + + // Can not capture the stacktrace when the isolate is in a OOM state or no + // context is entered. + if (is_in_oom.load() || !isolate->InContext()) { + return MaybeLocal(); + } + + constexpr StackTrace::StackTraceOptions options = + static_cast( + StackTrace::kDetailed | + StackTrace::kExposeFramesAcrossSecurityOrigins); + + is_retrieving_js_stacktrace.store(true); + EscapableHandleScope scope(isolate); + Local stack = + StackTrace::CurrentStackTrace(isolate, frame_count, options); + + is_retrieving_js_stacktrace.store(false); + if (stack->GetFrameCount() == 0) { + return MaybeLocal(); + } + + return scope.Escape(stack); +} + +static std::string FormatStackTrace( + Isolate* isolate, + Local stack, + StackTracePrefix prefix = StackTracePrefix::kAt) { std::string result; for (int i = 0; i < stack->GetFrameCount(); i++) { Local stack_frame = stack->GetFrame(isolate, i); @@ -193,15 +234,18 @@ static std::string FormatStackTrace(Isolate* isolate, Local stack) { node::Utf8Value script_name(isolate, stack_frame->GetScriptName()); const int line_number = stack_frame->GetLineNumber(); const int column = stack_frame->GetColumn(); - + std::string prefix_str = prefix == StackTracePrefix::kAt + ? " at " + : std::to_string(i + 1) + ": "; if (stack_frame->IsEval()) { if (stack_frame->GetScriptId() == Message::kNoScriptIdInfo) { - result += SPrintF(" at [eval]:%i:%i\n", line_number, column); + result += SPrintF("%s[eval]:%i:%i\n", prefix_str, line_number, column); } else { std::vector buf(script_name.length() + 64); snprintf(buf.data(), buf.size(), - " at [eval] (%s:%i:%i)\n", + "%s[eval] (%s:%i:%i)\n", + prefix_str.c_str(), *script_name, line_number, column); @@ -214,7 +258,8 @@ static std::string FormatStackTrace(Isolate* isolate, Local stack) { std::vector buf(script_name.length() + 64); snprintf(buf.data(), buf.size(), - " at %s:%i:%i\n", + "%s%s:%i:%i\n", + prefix_str.c_str(), *script_name, line_number, column); @@ -223,7 +268,8 @@ static std::string FormatStackTrace(Isolate* isolate, Local stack) { std::vector buf(fn_name_s.length() + script_name.length() + 64); snprintf(buf.data(), buf.size(), - " at %s (%s:%i:%i)\n", + "%s%s (%s:%i:%i)\n", + prefix_str.c_str(), *fn_name_s, *script_name, line_number, @@ -239,8 +285,10 @@ static void PrintToStderrAndFlush(const std::string& str) { fflush(stderr); } -void PrintStackTrace(Isolate* isolate, Local stack) { - PrintToStderrAndFlush(FormatStackTrace(isolate, stack)); +void PrintStackTrace(Isolate* isolate, + Local stack, + StackTracePrefix prefix) { + PrintToStderrAndFlush(FormatStackTrace(isolate, stack, prefix)); } std::string FormatCaughtException(Isolate* isolate, @@ -329,7 +377,8 @@ void AppendExceptionLine(Environment* env, } [[noreturn]] void Abort() { - DumpBacktrace(stderr); + DumpNativeBacktrace(stderr); + DumpJavaScriptBacktrace(stderr); fflush(stderr); ABORT_NO_BACKTRACE(); } @@ -338,14 +387,15 @@ void AppendExceptionLine(Environment* env, std::string name = GetHumanReadableProcessName(); fprintf(stderr, - "%s: %s:%s%s Assertion `%s' failed.\n", + "\n" + " # %s: %s at %s\n" + " # Assertion failed: %s\n\n", name.c_str(), - info.file_line, - info.function, - *info.function ? ":" : "", + info.function ? info.function : "(unknown function)", + info.file_line ? info.file_line : "(unknown source location)", info.message); - fflush(stderr); + fflush(stderr); Abort(); } @@ -528,6 +578,9 @@ static void ReportFatalException(Environment* env, [[noreturn]] void OOMErrorHandler(const char* location, const v8::OOMDetails& details) { + // We should never recover from this handler so once it's true it's always + // true. + is_in_oom.store(true); const char* message = details.is_heap_oom ? "Allocation failed - JavaScript heap out of memory" : "Allocation failed - process out of memory"; diff --git a/src/node_file.cc b/src/node_file.cc index bda1774c012e7b..32df2217403c0d 100644 --- a/src/node_file.cc +++ b/src/node_file.cc @@ -29,6 +29,7 @@ #include "node_metadata.h" #include "node_process-inl.h" #include "node_stat_watcher.h" +#include "node_url.h" #include "permission/permission.h" #include "util-inl.h" @@ -841,19 +842,6 @@ void AfterOpenFileHandle(uv_fs_t* req) { } } -// Reverse the logic applied by path.toNamespacedPath() to create a -// namespace-prefixed path. -void FromNamespacedPath(std::string* path) { -#ifdef _WIN32 - if (path->compare(0, 8, "\\\\?\\UNC\\", 8) == 0) { - *path = path->substr(8); - path->insert(0, "\\\\"); - } else if (path->compare(0, 4, "\\\\?\\", 4) == 0) { - *path = path->substr(4); - } -#endif -} - void AfterMkdirp(uv_fs_t* req) { FSReqBase* req_wrap = FSReqBase::from_req(req); FSReqAfterScope after(req_wrap, req); @@ -863,7 +851,7 @@ void AfterMkdirp(uv_fs_t* req) { std::string first_path(req_wrap->continuation_data()->first_path()); if (first_path.empty()) return req_wrap->Resolve(Undefined(req_wrap->env()->isolate())); - FromNamespacedPath(&first_path); + node::url::FromNamespacedPath(&first_path); Local path; Local error; if (!StringBytes::Encode(req_wrap->env()->isolate(), first_path.c_str(), @@ -1789,7 +1777,7 @@ static void MKDir(const FunctionCallbackInfo& args) { if (!req_wrap_sync.continuation_data()->first_path().empty()) { Local error; std::string first_path(req_wrap_sync.continuation_data()->first_path()); - FromNamespacedPath(&first_path); + node::url::FromNamespacedPath(&first_path); MaybeLocal path = StringBytes::Encode(env->isolate(), first_path.c_str(), UTF8, &error); @@ -2812,123 +2800,6 @@ static void GetFormatOfExtensionlessFile( return args.GetReturnValue().Set(EXTENSIONLESS_FORMAT_JAVASCRIPT); } -static bool FileURLToPath( - Environment* env, - const ada::url_aggregator& file_url, - /* The linter can't detect the assign for result_file_path - So we need to ignore since it suggest to put const */ - // NOLINTNEXTLINE(runtime/references) - std::string& result_file_path) { - if (file_url.type != ada::scheme::FILE) { - env->isolate()->ThrowException(ERR_INVALID_URL_SCHEME(env->isolate())); - - return false; - } - - std::string_view pathname = file_url.get_pathname(); -#ifdef _WIN32 - size_t first_percent = std::string::npos; - size_t pathname_size = pathname.size(); - std::string pathname_escaped_slash; - - for (size_t i = 0; i < pathname_size; i++) { - if (pathname[i] == '/') { - pathname_escaped_slash += '\\'; - } else { - pathname_escaped_slash += pathname[i]; - } - - if (pathname[i] != '%') continue; - - if (first_percent == std::string::npos) { - first_percent = i; - } - - // just safe-guard against access the pathname - // outside the bounds - if ((i + 2) >= pathname_size) continue; - - char third = pathname[i + 2] | 0x20; - - bool is_slash = pathname[i + 1] == '2' && third == 102; - bool is_forward_slash = pathname[i + 1] == '5' && third == 99; - - if (!is_slash && !is_forward_slash) continue; - - env->isolate()->ThrowException(ERR_INVALID_FILE_URL_PATH( - env->isolate(), - "File URL path must not include encoded \\ or / characters")); - - return false; - } - - std::string_view hostname = file_url.get_hostname(); - std::string decoded_pathname = ada::unicode::percent_decode( - std::string_view(pathname_escaped_slash), first_percent); - - if (hostname.size() > 0) { - // If hostname is set, then we have a UNC path - // Pass the hostname through domainToUnicode just in case - // it is an IDN using punycode encoding. We do not need to worry - // about percent encoding because the URL parser will have - // already taken care of that for us. Note that this only - // causes IDNs with an appropriate `xn--` prefix to be decoded. - result_file_path = - "\\\\" + ada::unicode::to_unicode(hostname) + decoded_pathname; - - return true; - } - - char letter = decoded_pathname[1] | 0x20; - char sep = decoded_pathname[2]; - - // a..z A..Z - if (letter < 'a' || letter > 'z' || sep != ':') { - env->isolate()->ThrowException(ERR_INVALID_FILE_URL_PATH( - env->isolate(), "File URL path must be absolute")); - - return false; - } - - result_file_path = decoded_pathname.substr(1); - - return true; -#else // _WIN32 - std::string_view hostname = file_url.get_hostname(); - - if (hostname.size() > 0) { - std::string error_message = - std::string("File URL host must be \"localhost\" or empty on ") + - std::string(per_process::metadata.platform); - env->isolate()->ThrowException( - ERR_INVALID_FILE_URL_HOST(env->isolate(), error_message.c_str())); - - return false; - } - - size_t first_percent = std::string::npos; - for (size_t i = 0; (i + 2) < pathname.size(); i++) { - if (pathname[i] != '%') continue; - - if (first_percent == std::string::npos) { - first_percent = i; - } - - if (pathname[i + 1] == '2' && (pathname[i + 2] | 0x20) == 102) { - env->isolate()->ThrowException(ERR_INVALID_FILE_URL_PATH( - env->isolate(), - "File URL path must not include encoded / characters")); - - return false; - } - } - - result_file_path = ada::unicode::percent_decode(pathname, first_percent); - - return true; -#endif // _WIN32 -} - BindingData::FilePathIsFileReturnType BindingData::FilePathIsFile( Environment* env, const std::string& file_path) { THROW_IF_INSUFFICIENT_PERMISSIONS( @@ -2985,43 +2856,41 @@ void BindingData::LegacyMainResolve(const FunctionCallbackInfo& args) { CHECK(args[0]->IsString()); Environment* env = Environment::GetCurrent(args); + auto isolate = env->isolate(); - Utf8Value utf8_package_json_url(env->isolate(), args[0].As()); + Utf8Value utf8_package_json_url(isolate, args[0]); auto package_json_url = ada::parse(utf8_package_json_url.ToStringView()); if (!package_json_url) { - env->isolate()->ThrowException( - ERR_INVALID_URL(env->isolate(), "Invalid URL")); - + THROW_ERR_INVALID_URL(isolate, "Invalid URL"); return; } ada::result file_path_url; - std::string initial_file_path; + std::optional initial_file_path; std::string file_path; - if (args.Length() >= 2 && !args[1]->IsNullOrUndefined() && - args[1]->IsString()) { - std::string package_config_main = - Utf8Value(env->isolate(), args[1].As()).ToString(); + if (args.Length() >= 2 && args[1]->IsString()) { + auto package_config_main = Utf8Value(isolate, args[1]).ToString(); file_path_url = ada::parse( std::string("./") + package_config_main, &package_json_url.value()); if (!file_path_url) { - env->isolate()->ThrowException( - ERR_INVALID_URL(env->isolate(), "Invalid URL")); - + THROW_ERR_INVALID_URL(isolate, "Invalid URL"); return; } - if (!FileURLToPath(env, file_path_url.value(), initial_file_path)) return; + initial_file_path = node::url::FileURLToPath(env, *file_path_url); + if (!initial_file_path.has_value()) { + return; + } - FromNamespacedPath(&initial_file_path); + node::url::FromNamespacedPath(&initial_file_path.value()); for (int i = 0; i < legacy_main_extensions_with_main_end; i++) { - file_path = initial_file_path + std::string(legacy_main_extensions[i]); + file_path = *initial_file_path + std::string(legacy_main_extensions[i]); switch (FilePathIsFile(env, file_path)) { case BindingData::FilePathIsFileReturnType::kIsFile: @@ -3044,20 +2913,21 @@ void BindingData::LegacyMainResolve(const FunctionCallbackInfo& args) { ada::parse("./index", &package_json_url.value()); if (!file_path_url) { - env->isolate()->ThrowException( - ERR_INVALID_URL(env->isolate(), "Invalid URL")); - + THROW_ERR_INVALID_URL(isolate, "Invalid URL"); return; } - if (!FileURLToPath(env, file_path_url.value(), initial_file_path)) return; + initial_file_path = node::url::FileURLToPath(env, *file_path_url); + if (!initial_file_path.has_value()) { + return; + } - FromNamespacedPath(&initial_file_path); + node::url::FromNamespacedPath(&initial_file_path.value()); for (int i = legacy_main_extensions_with_main_end; i < legacy_main_extensions_package_fallback_end; i++) { - file_path = initial_file_path + std::string(legacy_main_extensions[i]); + file_path = *initial_file_path + std::string(legacy_main_extensions[i]); switch (FilePathIsFile(env, file_path)) { case BindingData::FilePathIsFileReturnType::kIsFile: @@ -3074,38 +2944,39 @@ void BindingData::LegacyMainResolve(const FunctionCallbackInfo& args) { } } - std::string module_path; - std::string module_base; + std::optional module_path = + node::url::FileURLToPath(env, *package_json_url); + std::optional module_base; - if (!FileURLToPath(env, package_json_url.value(), module_path)) return; + if (!module_path.has_value()) { + return; + } - if (args.Length() >= 3 && !args[2]->IsNullOrUndefined() && - args[2]->IsString()) { - Utf8Value utf8_base_path(env->isolate(), args[2].As()); + if (args.Length() >= 3 && args[2]->IsString()) { + Utf8Value utf8_base_path(isolate, args[2]); auto base_url = ada::parse(utf8_base_path.ToStringView()); if (!base_url) { - env->isolate()->ThrowException( - ERR_INVALID_URL(env->isolate(), "Invalid URL")); - + THROW_ERR_INVALID_URL(isolate, "Invalid URL"); return; } - if (!FileURLToPath(env, base_url.value(), module_base)) return; + module_base = node::url::FileURLToPath(env, *base_url); + if (!module_base.has_value()) { + return; + } } else { - std::string err_arg_message = - "The \"base\" argument must be of type string or an instance of URL."; - env->isolate()->ThrowException( - ERR_INVALID_ARG_TYPE(env->isolate(), err_arg_message.c_str())); + THROW_ERR_INVALID_ARG_TYPE( + isolate, + "The \"base\" argument must be of type string or an instance of URL."); return; } - env->isolate()->ThrowException( - ERR_MODULE_NOT_FOUND(env->isolate(), - "Cannot find package '%s' imported from %s", - module_path, - module_base)); + THROW_ERR_MODULE_NOT_FOUND(isolate, + "Cannot find package '%s' imported from %s", + *module_path, + *module_base); } void BindingData::MemoryInfo(MemoryTracker* tracker) const { diff --git a/src/node_internals.h b/src/node_internals.h index d7f78664615fcf..9a96e042fc5cda 100644 --- a/src/node_internals.h +++ b/src/node_internals.h @@ -79,7 +79,17 @@ void GetSockOrPeerName(const v8::FunctionCallbackInfo& args) { args.GetReturnValue().Set(err); } -void PrintStackTrace(v8::Isolate* isolate, v8::Local stack); +constexpr int kMaxFrameCountForLogging = 10; +v8::MaybeLocal GetCurrentStackTrace( + v8::Isolate* isolate, int frame_count = kMaxFrameCountForLogging); + +enum class StackTracePrefix { + kAt, // " at " + kNumber +}; +void PrintStackTrace(v8::Isolate* isolate, + v8::Local stack, + StackTracePrefix prefix = StackTracePrefix::kAt); void PrintCaughtException(v8::Isolate* isolate, v8::Local context, const v8::TryCatch& try_catch); diff --git a/src/node_messaging.cc b/src/node_messaging.cc index 908e76f399557d..47cc80cf551f74 100644 --- a/src/node_messaging.cc +++ b/src/node_messaging.cc @@ -1003,11 +1003,55 @@ static Maybe ReadIterable(Environment* env, entries.push_back(val); } - transfer_list.AllocateSufficientStorage(entries.size()); - std::copy(entries.begin(), entries.end(), &transfer_list[0]); + if (!entries.empty()) { + transfer_list.AllocateSufficientStorage(entries.size()); + std::copy(entries.begin(), entries.end(), &transfer_list[0]); + } + return Just(true); } +bool GetTransferList(Environment* env, + Local context, + Local transfer_list_v, + TransferList* transfer_list_out) { + if (transfer_list_v->IsNullOrUndefined()) { + // Browsers ignore null or undefined, and otherwise accept an array or an + // options object. + return true; + } + + if (!transfer_list_v->IsObject()) { + THROW_ERR_INVALID_ARG_TYPE( + env, "Optional transferList argument must be an iterable"); + return false; + } + + bool was_iterable; + if (!ReadIterable(env, context, *transfer_list_out, transfer_list_v) + .To(&was_iterable)) + return false; + if (!was_iterable) { + Local transfer_option; + if (!transfer_list_v.As() + ->Get(context, env->transfer_string()) + .ToLocal(&transfer_option)) + return false; + if (!transfer_option->IsUndefined()) { + if (!ReadIterable(env, context, *transfer_list_out, transfer_option) + .To(&was_iterable)) + return false; + if (!was_iterable) { + THROW_ERR_INVALID_ARG_TYPE( + env, "Optional options.transfer argument must be an iterable"); + return false; + } + } + } + + return true; +} + void MessagePort::PostMessage(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); Local obj = args.This(); @@ -1018,33 +1062,10 @@ void MessagePort::PostMessage(const FunctionCallbackInfo& args) { "MessagePort.postMessage"); } - if (!args[1]->IsNullOrUndefined() && !args[1]->IsObject()) { - // Browsers ignore null or undefined, and otherwise accept an array or an - // options object. - return THROW_ERR_INVALID_ARG_TYPE(env, - "Optional transferList argument must be an iterable"); - } - TransferList transfer_list; - if (args[1]->IsObject()) { - bool was_iterable; - if (!ReadIterable(env, context, transfer_list, args[1]).To(&was_iterable)) - return; - if (!was_iterable) { - Local transfer_option; - if (!args[1].As()->Get(context, env->transfer_string()) - .ToLocal(&transfer_option)) return; - if (!transfer_option->IsUndefined()) { - if (!ReadIterable(env, context, transfer_list, transfer_option) - .To(&was_iterable)) return; - if (!was_iterable) { - return THROW_ERR_INVALID_ARG_TYPE(env, - "Optional options.transfer argument must be an iterable"); - } - } - } + if (!GetTransferList(env, context, args[1], &transfer_list)) { + return; } - MessagePort* port = Unwrap(args.This()); // Even if the backing MessagePort object has already been deleted, we still // want to serialize the message to ensure spec-compliant behavior w.r.t. @@ -1535,6 +1556,48 @@ static void SetDeserializerCreateObjectFunction( env->set_messaging_deserialize_create_object(args[0].As()); } +static void StructuredClone(const FunctionCallbackInfo& args) { + Isolate* isolate = args.GetIsolate(); + Local context = isolate->GetCurrentContext(); + Realm* realm = Realm::GetCurrent(context); + Environment* env = realm->env(); + + if (args.Length() == 0) { + return THROW_ERR_MISSING_ARGS(env, "The value argument must be specified"); + } + + Local value = args[0]; + + TransferList transfer_list; + if (!args[1]->IsNullOrUndefined()) { + if (!args[1]->IsObject()) { + return THROW_ERR_INVALID_ARG_TYPE( + env, "The options argument must be either an object or undefined"); + } + Local options = args[1].As(); + Local transfer_list_v; + if (!options->Get(context, env->transfer_string()) + .ToLocal(&transfer_list_v)) { + return; + } + + // TODO(joyeecheung): implement this in JS land to avoid the C++ -> JS + // cost to convert a sequence into an array. + if (!GetTransferList(env, context, transfer_list_v, &transfer_list)) { + return; + } + } + + std::shared_ptr msg = std::make_shared(); + Local result; + if (msg->Serialize(env, context, value, transfer_list, Local()) + .IsNothing() || + !msg->Deserialize(env, context, nullptr).ToLocal(&result)) { + return; + } + args.GetReturnValue().Set(result); +} + static void MessageChannel(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); if (!args.IsConstructCall()) { @@ -1615,6 +1678,7 @@ static void InitMessaging(Local target, "setDeserializerCreateObjectFunction", SetDeserializerCreateObjectFunction); SetMethod(context, target, "broadcastChannel", BroadcastChannel); + SetMethod(context, target, "structuredClone", StructuredClone); { Local domexception = GetDOMException(context).ToLocalChecked(); @@ -1638,6 +1702,7 @@ static void RegisterExternalReferences(ExternalReferenceRegistry* registry) { registry->Register(MessagePort::ReceiveMessage); registry->Register(MessagePort::MoveToContext); registry->Register(SetDeserializerCreateObjectFunction); + registry->Register(StructuredClone); } } // anonymous namespace diff --git a/src/node_metadata.cc b/src/node_metadata.cc index 112d6a9b7fb56f..f6837ba6d07933 100644 --- a/src/node_metadata.cc +++ b/src/node_metadata.cc @@ -14,7 +14,7 @@ #include "uv.h" #include "uvwasi.h" #include "v8.h" -#include "zlib.h" +#include "zlib_version.h" #if HAVE_OPENSSL #include diff --git a/src/node_options.cc b/src/node_options.cc index 29cb7fc6b29b89..417d4679e84ec3 100644 --- a/src/node_options.cc +++ b/src/node_options.cc @@ -391,6 +391,11 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() { &EnvironmentOptions::experimental_global_customevent, kAllowedInEnvvar, true); + AddOption("--experimental-global-navigator", + "expose experimental Navigator API on the global scope", + &EnvironmentOptions::experimental_global_navigator, + kAllowedInEnvvar, + true); AddOption("--experimental-global-webcrypto", "expose experimental Web Crypto API on the global scope", &EnvironmentOptions::experimental_global_web_crypto, @@ -603,6 +608,9 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() { AddOption("--test-concurrency", "specify test runner concurrency", &EnvironmentOptions::test_runner_concurrency); + AddOption("--test-timeout", + "specify test runner timeout", + &EnvironmentOptions::test_runner_timeout); AddOption("--experimental-test-coverage", "enable code coverage in the test runner", &EnvironmentOptions::test_runner_coverage); diff --git a/src/node_options.h b/src/node_options.h index 30955c779714ce..04c8a9e438dcfb 100644 --- a/src/node_options.h +++ b/src/node_options.h @@ -110,6 +110,7 @@ class EnvironmentOptions : public Options { bool experimental_fetch = true; bool experimental_websocket = false; bool experimental_global_customevent = true; + bool experimental_global_navigator = true; bool experimental_global_web_crypto = true; bool experimental_https_modules = false; bool experimental_wasm_modules = false; @@ -161,6 +162,7 @@ class EnvironmentOptions : public Options { bool has_env_file_string = false; bool test_runner = false; uint64_t test_runner_concurrency = 0; + uint64_t test_runner_timeout = 0; bool test_runner_coverage = false; std::vector test_name_pattern; std::vector test_reporter; diff --git a/src/node_platform.cc b/src/node_platform.cc index 74ab4a3df8f09b..927fdddb8d9a1a 100644 --- a/src/node_platform.cc +++ b/src/node_platform.cc @@ -560,7 +560,7 @@ v8::TracingController* NodePlatform::GetTracingController() { Platform::StackTracePrinter NodePlatform::GetStackTracePrinter() { return []() { fprintf(stderr, "\n"); - DumpBacktrace(stderr); + DumpNativeBacktrace(stderr); fflush(stderr); }; } diff --git a/src/node_report.cc b/src/node_report.cc index 88c9a97789e30b..54121cb6b48210 100644 --- a/src/node_report.cc +++ b/src/node_report.cc @@ -27,7 +27,7 @@ constexpr int NODE_REPORT_VERSION = 3; constexpr int NANOS_PER_SEC = 1000 * 1000 * 1000; constexpr double SEC_PER_MICROS = 1e-6; -constexpr int MAX_FRAME_COUNT = 10; +constexpr int MAX_FRAME_COUNT = node::kMaxFrameCountForLogging; namespace node { using node::worker::Worker; @@ -458,14 +458,13 @@ static void PrintEmptyJavaScriptStack(JSONWriter* writer) { static void PrintJavaScriptStack(JSONWriter* writer, Isolate* isolate, const char* trigger) { - // Can not capture the stacktrace when the isolate is in a OOM state or no - // context is entered. - if (!strcmp(trigger, "OOMError") || !isolate->InContext()) { + HandleScope scope(isolate); + Local stack; + if (!GetCurrentStackTrace(isolate, MAX_FRAME_COUNT).ToLocal(&stack)) { PrintEmptyJavaScriptStack(writer); return; } - HandleScope scope(isolate); RegisterState state; state.pc = nullptr; state.fp = &state; @@ -476,18 +475,6 @@ static void PrintJavaScriptStack(JSONWriter* writer, void* samples[MAX_FRAME_COUNT]; isolate->GetStackSample(state, samples, MAX_FRAME_COUNT, &info); - constexpr StackTrace::StackTraceOptions stack_trace_options = - static_cast( - StackTrace::kDetailed | - StackTrace::kExposeFramesAcrossSecurityOrigins); - Local stack = StackTrace::CurrentStackTrace( - isolate, MAX_FRAME_COUNT, stack_trace_options); - - if (stack->GetFrameCount() == 0) { - PrintEmptyJavaScriptStack(writer); - return; - } - writer->json_keyvalue("message", trigger); writer->json_arraystart("stack"); for (int i = 0; i < stack->GetFrameCount(); i++) { diff --git a/src/node_url.cc b/src/node_url.cc index 89fcfec20f5685..94510aa1904a00 100644 --- a/src/node_url.cc +++ b/src/node_url.cc @@ -4,6 +4,8 @@ #include "node_errors.h" #include "node_external_reference.h" #include "node_i18n.h" +#include "node_metadata.h" +#include "node_process-inl.h" #include "util-inl.h" #include "v8-fast-api-calls.h" #include "v8.h" @@ -417,15 +419,136 @@ void BindingData::RegisterExternalReferences( } } -std::string FromFilePath(const std::string_view file_path) { - std::string escaped_file_path; - for (size_t i = 0; i < file_path.length(); ++i) { - escaped_file_path += file_path[i]; - if (file_path[i] == '%') escaped_file_path += "25"; +std::string FromFilePath(std::string_view file_path) { + // Avoid unnecessary allocations. + size_t pos = file_path.empty() ? std::string_view::npos : file_path.find('%'); + if (pos == std::string_view::npos) { + return ada::href_from_file(file_path); } + // Escape '%' characters to a temporary string. + std::string escaped_file_path; + do { + escaped_file_path += file_path.substr(0, pos + 1); + escaped_file_path += "25"; + file_path = file_path.substr(pos + 1); + pos = file_path.empty() ? std::string_view::npos : file_path.find('%'); + } while (pos != std::string_view::npos); + escaped_file_path += file_path; return ada::href_from_file(escaped_file_path); } +std::optional FileURLToPath(Environment* env, + const ada::url_aggregator& file_url) { + if (file_url.type != ada::scheme::FILE) { + THROW_ERR_INVALID_URL_SCHEME(env->isolate()); + return std::nullopt; + } + + std::string_view pathname = file_url.get_pathname(); +#ifdef _WIN32 + size_t first_percent = std::string::npos; + size_t pathname_size = pathname.size(); + std::string pathname_escaped_slash; + + for (size_t i = 0; i < pathname_size; i++) { + if (pathname[i] == '/') { + pathname_escaped_slash += '\\'; + } else { + pathname_escaped_slash += pathname[i]; + } + + if (pathname[i] != '%') continue; + + if (first_percent == std::string::npos) { + first_percent = i; + } + + // just safe-guard against access the pathname + // outside the bounds + if ((i + 2) >= pathname_size) continue; + + char third = pathname[i + 2] | 0x20; + + bool is_slash = pathname[i + 1] == '2' && third == 102; + bool is_forward_slash = pathname[i + 1] == '5' && third == 99; + + if (!is_slash && !is_forward_slash) continue; + + THROW_ERR_INVALID_FILE_URL_PATH( + env->isolate(), + "File URL path must not include encoded \\ or / characters"); + return std::nullopt; + } + + std::string_view hostname = file_url.get_hostname(); + std::string decoded_pathname = ada::unicode::percent_decode( + std::string_view(pathname_escaped_slash), first_percent); + + if (hostname.size() > 0) { + // If hostname is set, then we have a UNC path + // Pass the hostname through domainToUnicode just in case + // it is an IDN using punycode encoding. We do not need to worry + // about percent encoding because the URL parser will have + // already taken care of that for us. Note that this only + // causes IDNs with an appropriate `xn--` prefix to be decoded. + return "\\\\" + ada::unicode::to_unicode(hostname) + decoded_pathname; + } + + char letter = decoded_pathname[1] | 0x20; + char sep = decoded_pathname[2]; + + // a..z A..Z + if (letter < 'a' || letter > 'z' || sep != ':') { + THROW_ERR_INVALID_FILE_URL_PATH(env->isolate(), + "File URL path must be absolute"); + return std::nullopt; + } + + return decoded_pathname.substr(1); +#else // _WIN32 + std::string_view hostname = file_url.get_hostname(); + + if (hostname.size() > 0) { + THROW_ERR_INVALID_FILE_URL_HOST( + env->isolate(), + "File URL host must be \"localhost\" or empty on ", + std::string(per_process::metadata.platform)); + return std::nullopt; + } + + size_t first_percent = std::string::npos; + for (size_t i = 0; (i + 2) < pathname.size(); i++) { + if (pathname[i] != '%') continue; + + if (first_percent == std::string::npos) { + first_percent = i; + } + + if (pathname[i + 1] == '2' && (pathname[i + 2] | 0x20) == 102) { + THROW_ERR_INVALID_FILE_URL_PATH( + env->isolate(), + "File URL path must not include encoded / characters"); + return std::nullopt; + } + } + + return ada::unicode::percent_decode(pathname, first_percent); +#endif // _WIN32 +} + +// Reverse the logic applied by path.toNamespacedPath() to create a +// namespace-prefixed path. +void FromNamespacedPath(std::string* path) { +#ifdef _WIN32 + if (path->compare(0, 8, "\\\\?\\UNC\\", 8) == 0) { + *path = path->substr(8); + path->insert(0, "\\\\"); + } else if (path->compare(0, 4, "\\\\?\\", 4) == 0) { + *path = path->substr(4); + } +#endif +} + } // namespace url } // namespace node diff --git a/src/node_url.h b/src/node_url.h index f3aa136a5b538d..c106e8245284da 100644 --- a/src/node_url.h +++ b/src/node_url.h @@ -12,6 +12,7 @@ #include "v8-fast-api-calls.h" #include "v8.h" +#include #include namespace node { @@ -81,7 +82,10 @@ class BindingData : public SnapshotableObject { std::optional base); }; -std::string FromFilePath(const std::string_view file_path); +std::string FromFilePath(std::string_view file_path); +std::optional FileURLToPath(Environment* env, + const ada::url_aggregator& file_url); +void FromNamespacedPath(std::string* path); } // namespace url diff --git a/src/node_version.h b/src/node_version.h index 9c60ef32e7cf70..a4a08f256616c8 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 21 -#define NODE_MINOR_VERSION 1 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 2 +#define NODE_PATCH_VERSION 0 #define NODE_VERSION_IS_LTS 0 #define NODE_VERSION_LTS_CODENAME "" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) diff --git a/src/permission/fs_permission.h b/src/permission/fs_permission.h index 244e95727ad487..80374a08c75d26 100644 --- a/src/permission/fs_permission.h +++ b/src/permission/fs_permission.h @@ -31,7 +31,7 @@ class FSPermission final : public PermissionBase { Node() : wildcard_child(nullptr), is_leaf(false) {} - Node* CreateChild(std::string prefix) { + Node* CreateChild(const std::string& prefix) { if (prefix.empty() && !is_leaf) { is_leaf = true; return this; diff --git a/src/undici_version.h b/src/undici_version.h index a18545b5072461..930c2318ec80bd 100644 --- a/src/undici_version.h +++ b/src/undici_version.h @@ -2,5 +2,5 @@ // Refer to tools/dep_updaters/update-undici.sh #ifndef SRC_UNDICI_VERSION_H_ #define SRC_UNDICI_VERSION_H_ -#define UNDICI_VERSION "5.26.4" +#define UNDICI_VERSION "5.27.0" #endif // SRC_UNDICI_VERSION_H_ diff --git a/src/util.h b/src/util.h index 344f7753dab2b1..5340182423681e 100644 --- a/src/util.h +++ b/src/util.h @@ -115,7 +115,8 @@ struct AssertionInfo { }; [[noreturn]] void NODE_EXTERN_PRIVATE Assert(const AssertionInfo& info); [[noreturn]] void NODE_EXTERN_PRIVATE Abort(); -void DumpBacktrace(FILE* fp); +void DumpNativeBacktrace(FILE* fp); +void DumpJavaScriptBacktrace(FILE* fp); // Windows 8+ does not like abort() in Release mode #ifdef _WIN32 diff --git a/src/zlib_version.h b/src/zlib_version.h new file mode 100644 index 00000000000000..02390a4afd0ec5 --- /dev/null +++ b/src/zlib_version.h @@ -0,0 +1,6 @@ +// This is an auto generated file, please do not edit. +// Refer to tools/dep_updaters/update-zlib.sh +#ifndef SRC_ZLIB_VERSION_H_ +#define SRC_ZLIB_VERSION_H_ +#define ZLIB_VERSION "1.2.13.1-motley-dfc48fc" +#endif // SRC_ZLIB_VERSION_H_ diff --git a/test/.eslintrc.yaml b/test/.eslintrc.yaml index ef1336e34c79dc..1c1cfd4ef93e9a 100644 --- a/test/.eslintrc.yaml +++ b/test/.eslintrc.yaml @@ -49,6 +49,8 @@ rules: message: Use 'test' as debuglog value in tests. - selector: CallExpression:matches([callee.object.name="common"][callee.property.name=/^must(Not)?Call/],[callee.name="mustCall"],[callee.name="mustCallAtLeast"],[callee.name="mustNotCall"])>:first-child[type=/FunctionExpression$/][body.body.length=0] message: Do not use an empty function, omit the parameter altogether. + - selector: ExpressionStatement>CallExpression:matches([callee.name='rejects'], [callee.object.name='assert'][callee.property.name='rejects']) + message: Calling `assert.rejects` without `await` or `.then(common.mustCall())` will not detect never-settling promises. - selector: Identifier[name='webcrypto'] message: Use `globalThis.crypto`. diff --git a/test/abort/test-abort-backtrace.js b/test/abort/test-abort-backtrace.js index b609ec7e4e6a7a..ce9ed39196eb1f 100644 --- a/test/abort/test-abort-backtrace.js +++ b/test/abort/test-abort-backtrace.js @@ -10,19 +10,22 @@ if (process.argv[2] === 'child') { const stderr = child.stderr.toString(); assert.strictEqual(child.stdout.toString(), ''); - // Stderr will be empty for systems that don't support backtraces. - if (stderr !== '') { - const frames = stderr.trimRight().split('\n').map((s) => s.trim()); + const { nativeStack, jsStack } = common.getPrintedStackTrace(stderr); - if (!frames.every((frame, index) => frame.startsWith(`${index + 1}:`))) { - assert.fail(`Each frame should start with a frame number:\n${stderr}`); - } + if (!nativeStack.every((frame, index) => frame.startsWith(`${index + 1}:`))) { + assert.fail(`Each frame should start with a frame number:\n${stderr}`); + } - if (!common.isWindows) { - const { getBinaryPath } = require('../common/shared-lib-util'); - if (!frames.some((frame) => frame.includes(`[${getBinaryPath()}]`))) { - assert.fail(`Some frames should include the binary name:\n${stderr}`); - } + // For systems that don't support backtraces, the native stack is + // going to be empty. + if (!common.isWindows && nativeStack.length > 0) { + const { getBinaryPath } = require('../common/shared-lib-util'); + if (!nativeStack.some((frame) => frame.includes(`[${getBinaryPath()}]`))) { + assert.fail(`Some native stack frame include the binary name:\n${stderr}`); } } + + if (jsStack.length > 0) { + assert(jsStack.some((frame) => frame.includes(__filename))); + } } diff --git a/test/abort/test-abort-fatal-error.js b/test/abort/test-abort-fatal-error.js index b723b5b920849b..6c197ceb028540 100644 --- a/test/abort/test-abort-fatal-error.js +++ b/test/abort/test-abort-fatal-error.js @@ -38,10 +38,5 @@ exec(cmdline, function(err, stdout, stderr) { assert(false, 'this test should fail'); } - if (err.code !== 134 && err.signal !== 'SIGABRT') { - console.log(stdout); - console.log(stderr); - console.log(err); - assert(false, err); - } + assert(common.nodeProcessAborted(err.code, err.signal)); }); diff --git a/test/abort/test-addon-uv-handle-leak.js b/test/abort/test-addon-uv-handle-leak.js index d2c4f8e646f457..dad245ad61bbb2 100644 --- a/test/abort/test-addon-uv-handle-leak.js +++ b/test/abort/test-addon-uv-handle-leak.js @@ -88,6 +88,9 @@ if (process.argv[2] === 'child') { while (lines.length > 0) { const line = lines.shift().trim(); + if (line.length === 0) { + continue; // Skip empty lines. + } switch (state) { case 'initial': @@ -96,7 +99,7 @@ if (process.argv[2] === 'child') { break; case 'handle-start': if (/^uv loop at \[.+\] has \d+ open handles in total$/.test(line)) { - state = 'assertion-failure'; + state = 'source-line'; break; } assert.match(line, /^\[.+\] timer( \(active\))?$/); @@ -116,8 +119,12 @@ if (process.argv[2] === 'child') { } state = 'handle-start'; break; + case 'source-line': + assert.match(line, /CheckedUvLoopClose/); + state = 'assertion-failure'; + break; case 'assertion-failure': - assert.match(line, /Assertion .+ failed/); + assert.match(line, /Assertion failed:/); state = 'done'; break; case 'done': diff --git a/test/benchmark/benchmark.status b/test/benchmark/benchmark.status index a1d5fdba756546..65e4d815552d3c 100644 --- a/test/benchmark/benchmark.status +++ b/test/benchmark/benchmark.status @@ -20,6 +20,3 @@ prefix benchmark [$arch==arm] -[$system==ibmi] -test-benchmark-os.js: SKIP - diff --git a/test/cctest/test_util.cc b/test/cctest/test_util.cc index 5b83e07db3b7c2..c48803cff0337e 100644 --- a/test/cctest/test_util.cc +++ b/test/cctest/test_util.cc @@ -299,3 +299,7 @@ TEST(UtilTest, SPrintF) { const std::string with_zero = std::string("a") + '\0' + 'b'; EXPECT_EQ(SPrintF("%s", with_zero), with_zero); } + +TEST(UtilTest, DumpJavaScriptStackWithNoIsolate) { + node::DumpJavaScriptBacktrace(stderr); +} diff --git a/test/common/index.js b/test/common/index.js index 6345a636a0f805..2ac981608b4e92 100644 --- a/test/common/index.js +++ b/test/common/index.js @@ -906,6 +906,45 @@ function spawnPromisified(...args) { }); } +function getPrintedStackTrace(stderr) { + const lines = stderr.split('\n'); + + let state = 'initial'; + const result = { + message: [], + nativeStack: [], + jsStack: [], + }; + for (let i = 0; i < lines.length; ++i) { + const line = lines[i].trim(); + if (line.length === 0) { + continue; // Skip empty lines. + } + + switch (state) { + case 'initial': + result.message.push(line); + if (line.includes('Native stack trace')) { + state = 'native-stack'; + } else { + result.message.push(line); + } + break; + case 'native-stack': + if (line.includes('JavaScript stack trace')) { + state = 'js-stack'; + } else { + result.nativeStack.push(line); + } + break; + case 'js-stack': + result.jsStack.push(line); + break; + } + } + return result; +} + const common = { allowGlobals, buildType, @@ -919,6 +958,7 @@ const common = { getArrayBufferViews, getBufferSources, getCallSite, + getPrintedStackTrace, getTTYfd, hasIntl, hasCrypto, diff --git a/test/common/wpt.js b/test/common/wpt.js index 6ec6cd8c1ec6f2..7d0b030614b003 100644 --- a/test/common/wpt.js +++ b/test/common/wpt.js @@ -58,46 +58,70 @@ function codeUnitStr(char) { return 'U+' + char.charCodeAt(0).toString(16); } +class ReportResult { + #startTime; + + constructor(name) { + this.test = name; + this.status = 'OK'; + this.subtests = []; + this.#startTime = Date.now(); + } + + addSubtest(name, status, message) { + const subtest = { + status, + // https://github.com/web-platform-tests/wpt/blob/b24eedd/resources/testharness.js#L3722 + name: sanitizeUnpairedSurrogates(name), + }; + if (message) { + // https://github.com/web-platform-tests/wpt/blob/b24eedd/resources/testharness.js#L4506 + subtest.message = sanitizeUnpairedSurrogates(message); + } + this.subtests.push(subtest); + return subtest; + } + + finish(status) { + this.status = status ?? 'OK'; + this.duration = Date.now() - this.#startTime; + } +} + +// Generates a report that can be uploaded to wpt.fyi. +// Checkout https://github.com/web-platform-tests/wpt.fyi/tree/main/api#results-creation +// for more details. class WPTReport { constructor(path) { this.filename = `report-${path.replaceAll('/', '-')}.json`; - this.results = []; + /** @type {Map} */ + this.results = new Map(); this.time_start = Date.now(); } - addResult(name, status) { - const result = { - test: name, - status, - subtests: [], - addSubtest(name, status, message) { - const subtest = { - status, - // https://github.com/web-platform-tests/wpt/blob/b24eedd/resources/testharness.js#L3722 - name: sanitizeUnpairedSurrogates(name), - }; - if (message) { - // https://github.com/web-platform-tests/wpt/blob/b24eedd/resources/testharness.js#L4506 - subtest.message = sanitizeUnpairedSurrogates(message); - } - this.subtests.push(subtest); - return subtest; - }, - }; - this.results.push(result); + /** + * Get or create a ReportResult for a test spec. + * @param {WPTTestSpec} spec + */ + getResult(spec) { + const name = `/${spec.getRelativePath()}${spec.variant}`; + if (this.results.has(name)) { + return this.results.get(name); + } + const result = new ReportResult(name); + this.results.set(name, result); return result; } write() { this.time_end = Date.now(); - this.results = this.results.filter((result) => { - return result.status === 'SKIP' || result.subtests.length !== 0; - }).map((result) => { - const url = new URL(result.test, 'http://wpt'); - url.pathname = url.pathname.replace(/\.js$/, '.html'); - result.test = url.href.slice(url.origin.length); - return result; - }); + const results = Array.from(this.results.values()) + .map((result) => { + const url = new URL(result.test, 'http://wpt'); + url.pathname = url.pathname.replace(/\.js$/, '.html'); + result.test = url.href.slice(url.origin.length); + return result; + }); /** * Return required and some optional properties @@ -110,7 +134,12 @@ class WPTReport { os: getOs(), }; - fs.writeFileSync(`out/wpt/${this.filename}`, JSON.stringify(this)); + fs.writeFileSync(`out/wpt/${this.filename}`, JSON.stringify({ + time_start: this.time_start, + time_end: this.time_end, + run_info: this.run_info, + results: results, + })); } } @@ -642,14 +671,13 @@ class WPTRunner { this.inProgress.add(spec); this.workers.set(spec, worker); - let reportResult; + const reportResult = this.report?.getResult(spec); worker.on('message', (message) => { switch (message.type) { case 'result': - reportResult ||= this.report?.addResult(`/${relativePath}${spec.variant}`, 'OK'); return this.resultCallback(spec, message.result, reportResult); case 'completion': - return this.completionCallback(spec, message.status); + return this.completionCallback(spec, message.status, reportResult); default: throw new Error(`Unexpected message from worker: ${message.type}`); } @@ -661,6 +689,8 @@ class WPTRunner { // This can happen normally, for example in timers tests. return; } + // Generate a subtest failure for visibility. + // No need to record this synthetic failure with wpt.fyi. this.fail( spec, { @@ -671,6 +701,8 @@ class WPTRunner { }, kUncaught, ); + // Mark the whole test as failed in wpt.fyi report. + reportResult?.finish('ERROR'); this.inProgress.delete(spec); }); @@ -680,7 +712,11 @@ class WPTRunner { process.on('exit', () => { for (const spec of this.inProgress) { + // No need to record this synthetic failure with wpt.fyi. this.fail(spec, { name: 'Incomplete' }, kIncomplete); + // Mark the whole test as failed in wpt.fyi report. + const reportResult = this.report?.getResult(spec); + reportResult?.finish('ERROR'); } inspect.defaultOptions.depth = Infinity; // Sorts the rules to have consistent output @@ -780,6 +816,7 @@ class WPTRunner { * in one test file). * @param {WPTTestSpec} spec * @param {Test} test The Test object returned by WPT harness + * @param {ReportResult} reportResult The report result object */ resultCallback(spec, test, reportResult) { const status = this.getTestStatus(test.status); @@ -794,13 +831,29 @@ class WPTRunner { * Report the status of each WPT test (one per file) * @param {WPTTestSpec} spec * @param {object} harnessStatus - The status object returned by WPT harness. + * @param {ReportResult} reportResult The report result object */ - completionCallback(spec, harnessStatus) { + completionCallback(spec, harnessStatus, reportResult) { const status = this.getTestStatus(harnessStatus.status); // Treat it like a test case failure if (status === kTimeout) { + // No need to record this synthetic failure with wpt.fyi. this.fail(spec, { name: 'WPT testharness timeout' }, kTimeout); + // Mark the whole test as TIMEOUT in wpt.fyi report. + reportResult?.finish('TIMEOUT'); + } else if (status !== kPass) { + // No need to record this synthetic failure with wpt.fyi. + this.fail(spec, { + status: status, + name: 'WPT test harness error', + message: harnessStatus.message, + stack: harnessStatus.stack, + }, status); + // Mark the whole test as ERROR in wpt.fyi report. + reportResult?.finish('ERROR'); + } else { + reportResult?.finish(); } this.inProgress.delete(spec); // Always force termination of the worker. Some tests allocate resources diff --git a/test/es-module/test-esm-cjs-named-error.mjs b/test/es-module/test-esm-cjs-named-error.mjs index 4ef75a22f92674..548f82b591da3b 100644 --- a/test/es-module/test-esm-cjs-named-error.mjs +++ b/test/es-module/test-esm-cjs-named-error.mjs @@ -23,55 +23,55 @@ const expectedPackageHack = const expectedBare = errTemplate('deep-fail', 'comeOn', '{ comeOn }'); -rejects(async () => { +await rejects(async () => { await import(`${fixtureBase}/single-quote.mjs`); }, { name: 'SyntaxError', message: expectedRelative }, 'should support relative specifiers with single quotes'); -rejects(async () => { +await rejects(async () => { await import(`${fixtureBase}/double-quote.mjs`); }, { name: 'SyntaxError', message: expectedRelative }, 'should support relative specifiers with double quotes'); -rejects(async () => { +await rejects(async () => { await import(`${fixtureBase}/renamed-import.mjs`); }, { name: 'SyntaxError', message: expectedRenamed }, 'should correctly format named imports with renames'); -rejects(async () => { +await rejects(async () => { await import(`${fixtureBase}/multi-line.mjs`); }, { name: 'SyntaxError', message: expectedWithoutExample, }, 'should correctly format named imports across multiple lines'); -rejects(async () => { +await rejects(async () => { await import(`${fixtureBase}/json-hack.mjs`); }, { name: 'SyntaxError', message: expectedPackageHack }, 'should respect recursive package.json for module type'); -rejects(async () => { +await rejects(async () => { await import(`${fixtureBase}/bare-import-single.mjs`); }, { name: 'SyntaxError', message: expectedBare }, 'should support bare specifiers with single quotes'); -rejects(async () => { +await rejects(async () => { await import(`${fixtureBase}/bare-import-double.mjs`); }, { name: 'SyntaxError', message: expectedBare }, 'should support bare specifiers with double quotes'); -rejects(async () => { +await rejects(async () => { await import(`${fixtureBase}/escaped-single-quote.mjs`); }, /import pkg from '\.\/oh'no\.cjs'/, 'should support relative specifiers with escaped single quote'); diff --git a/test/es-module/test-esm-dynamic-import.js b/test/es-module/test-esm-dynamic-import.js index f69682ef3bca8f..9a6cfad18e1fb8 100644 --- a/test/es-module/test-esm-dynamic-import.js +++ b/test/es-module/test-esm-dynamic-import.js @@ -69,4 +69,10 @@ function expectFsNamespace(result) { // If the specifier is an origin-relative URL, it should // be treated as a file: URL. expectOkNamespace(import(targetURL.pathname)); + + // If the referrer is a realm record, there is no way to resolve the + // specifier. + // TODO(legendecas): https://github.com/tc39/ecma262/pull/3195 + expectModuleError(Promise.resolve('import("node:fs")').then(eval), + 'ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING'); })(); diff --git a/test/es-module/test-esm-import-flag.mjs b/test/es-module/test-esm-import-flag.mjs index 2f6f4dd48b49a8..ede317b1d585de 100644 --- a/test/es-module/test-esm-import-flag.mjs +++ b/test/es-module/test-esm-import-flag.mjs @@ -182,4 +182,37 @@ describe('import modules using --import', { concurrency: true }, () => { assert.strictEqual(code, 0); assert.strictEqual(signal, null); }); + + it('should import files sequentially', async () => { + const { code, signal, stderr, stdout } = await spawnPromisified( + execPath, + [ + '--import', fixtures.fileURL('es-modules', 'esm-top-level-await.mjs'), + '--import', fixtures.fileURL('es-modules', 'print-3.mjs'), + fixtures.path('empty.js'), + ] + ); + + assert.strictEqual(stderr, ''); + assert.match(stdout, /^1\r?\n2\r?\n3\r?\n$/); + assert.strictEqual(code, 0); + assert.strictEqual(signal, null); + }); + + it('should import files from the env before ones from the CLI', async () => { + const { code, signal, stderr, stdout } = await spawnPromisified( + execPath, + [ + '--import', fixtures.fileURL('es-modules', 'print-3.mjs'), + fixtures.path('empty.js'), + ], + { env: { ...process.env, NODE_OPTIONS: `--import ${JSON.stringify(fixtures.fileURL('es-modules', 'esm-top-level-await.mjs'))}` } } + ); + + assert.strictEqual(stderr, ''); + assert.match(stdout, /^1\r?\n2\r?\n3\r?\n$/); + assert.strictEqual(code, 0); + assert.strictEqual(signal, null); + + }); }); diff --git a/test/es-module/test-esm-import-meta.mjs b/test/es-module/test-esm-import-meta.mjs index 4c5aa902d4a970..50d16a3438a851 100644 --- a/test/es-module/test-esm-import-meta.mjs +++ b/test/es-module/test-esm-import-meta.mjs @@ -3,7 +3,7 @@ import assert from 'assert'; assert.strictEqual(Object.getPrototypeOf(import.meta), null); -const keys = ['resolve', 'url']; +const keys = ['dirname', 'filename', 'resolve', 'url']; assert.deepStrictEqual(Reflect.ownKeys(import.meta), keys); const descriptors = Object.getOwnPropertyDescriptors(import.meta); @@ -18,3 +18,17 @@ for (const descriptor of Object.values(descriptors)) { const urlReg = /^file:\/\/\/.*\/test\/es-module\/test-esm-import-meta\.mjs$/; assert(import.meta.url.match(urlReg)); + +// Match *nix paths: `/some/path/test/es-module` +// Match Windows paths: `d:\\some\\path\\test\\es-module` +const dirReg = /^(\/|\w:\\).*(\/|\\)test(\/|\\)es-module$/; +assert.match(import.meta.dirname, dirReg); + +// Match *nix paths: `/some/path/test/es-module/test-esm-import-meta.mjs` +// Match Windows paths: `d:\\some\\path\\test\\es-module\\test-esm-import-meta.js` +const fileReg = /^(\/|\w:\\).*(\/|\\)test(\/|\\)es-module(\/|\\)test-esm-import-meta\.mjs$/; +assert.match(import.meta.filename, fileReg); + +// Verify that `data:` imports do not behave like `file:` imports. +import dataDirname from 'data:text/javascript,export default "dirname" in import.meta'; +assert.strictEqual(dataDirname, false); diff --git a/test/es-module/test-esm-type-flag-errors.mjs b/test/es-module/test-esm-type-flag-errors.mjs index 6d54eff94763ef..8fd06c7d562bb0 100644 --- a/test/es-module/test-esm-type-flag-errors.mjs +++ b/test/es-module/test-esm-type-flag-errors.mjs @@ -1,31 +1,101 @@ import { spawnPromisified } from '../common/index.mjs'; import * as fixtures from '../common/fixtures.mjs'; import { describe, it } from 'node:test'; -import { match, strictEqual } from 'node:assert'; - -describe('--experimental-default-type=module should not affect the interpretation of files with unknown extensions', - { concurrency: true }, () => { - it('should error on an entry point with an unknown extension', async () => { - const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [ - '--experimental-default-type=module', - fixtures.path('es-modules/package-type-module/extension.unknown'), - ]); - - match(stderr, /ERR_UNKNOWN_FILE_EXTENSION/); - strictEqual(stdout, ''); - strictEqual(code, 1); - strictEqual(signal, null); - }); - - it('should error on an import with an unknown extension', async () => { - const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [ - '--experimental-default-type=module', - fixtures.path('es-modules/package-type-module/imports-unknownext.mjs'), - ]); - - match(stderr, /ERR_UNKNOWN_FILE_EXTENSION/); - strictEqual(stdout, ''); - strictEqual(code, 1); - strictEqual(signal, null); - }); - }); +import { deepStrictEqual, match, strictEqual } from 'node:assert'; + +describe('--experimental-default-type=module', { concurrency: true }, () => { + describe('should not affect the interpretation of files with unknown extensions', { concurrency: true }, () => { + it('should error on an entry point with an unknown extension', async () => { + const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [ + '--experimental-default-type=module', + fixtures.path('es-modules/package-type-module/extension.unknown'), + ]); + + match(stderr, /ERR_UNKNOWN_FILE_EXTENSION/); + strictEqual(stdout, ''); + strictEqual(code, 1); + strictEqual(signal, null); + }); + + it('should error on an import with an unknown extension', async () => { + const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [ + '--experimental-default-type=module', + fixtures.path('es-modules/package-type-module/imports-unknownext.mjs'), + ]); + + match(stderr, /ERR_UNKNOWN_FILE_EXTENSION/); + strictEqual(stdout, ''); + strictEqual(code, 1); + strictEqual(signal, null); + }); + }); + + it('should affect CJS .js files (imported, required, entry points)', async () => { + const result = await spawnPromisified(process.execPath, [ + '--experimental-default-type=module', + fixtures.path('es-modules/package-type-commonjs/echo-require-cache.js'), + ]); + + deepStrictEqual(result, { + code: 0, + stderr: '', + stdout: 'undefined\n', + signal: null, + }); + }); + + it('should affect .cjs files that are imported', async () => { + const result = await spawnPromisified(process.execPath, [ + '--experimental-default-type=module', + '-e', + `import ${JSON.stringify(fixtures.fileURL('es-module-require-cache/echo.cjs'))}`, + ]); + + deepStrictEqual(result, { + code: 0, + stderr: '', + stdout: 'undefined\n', + signal: null, + }); + }); + + it('should affect entry point .cjs files (with no hooks)', async () => { + const { stderr, stdout, code } = await spawnPromisified(process.execPath, [ + '--experimental-default-type=module', + fixtures.path('es-module-require-cache/echo.cjs'), + ]); + + strictEqual(stderr, ''); + match(stdout, /^undefined\n$/); + strictEqual(code, 0); + }); + + it('should affect entry point .cjs files (when any hooks is registered)', async () => { + const result = await spawnPromisified(process.execPath, [ + '--experimental-default-type=module', + '--import', + 'data:text/javascript,import{register}from"node:module";register("data:text/javascript,");', + fixtures.path('es-module-require-cache/echo.cjs'), + ]); + + deepStrictEqual(result, { + code: 0, + stderr: '', + stdout: 'undefined\n', + signal: null, + }); + }); + + it('should not affect CJS from input-type', async () => { + const { stderr, stdout, code } = await spawnPromisified(process.execPath, [ + '--experimental-default-type=module', + '--input-type=commonjs', + '-p', + 'require.cache', + ]); + + strictEqual(stderr, ''); + match(stdout, /^\[Object: null prototype\] \{\}\n$/); + strictEqual(code, 0); + }); +}); diff --git a/test/es-module/test-http-imports.mjs b/test/es-module/test-http-imports.mjs index 235d142d3555e3..e1cb1f5ced59c7 100644 --- a/test/es-module/test-http-imports.mjs +++ b/test/es-module/test-http-imports.mjs @@ -68,6 +68,11 @@ for (const { protocol, createServer } of [ const server = createServer(function(_req, res) { const url = new URL(_req.url, host); const redirect = url.searchParams.get('redirect'); + + if (url.pathname === 'json') { + common.mustCall(() => assert.strictEqual(_req.header.content, 'application/json,*/*;charset=utf-8;q=0.5')); + } + if (url.pathname === '/not-found') { res.writeHead(404); res.end(); @@ -204,6 +209,13 @@ for (const { protocol, createServer } of [ { code: 'ERR_MODULE_NOT_FOUND' }, ); + const jsonUrl = new URL(url.href + 'json'); + jsonUrl.searchParams.set('mime', 'application/json'); + jsonUrl.searchParams.set('body', '{"x": 1}'); + const json = await import(jsonUrl.href, { with: { type: 'json' } }); + assert.deepStrictEqual(Object.keys(json), ['default']); + assert.strictEqual(json.default.x, 1); + server.close(); } } diff --git a/test/fixtures/dotenv/uv-threadpool.env b/test/fixtures/dotenv/uv-threadpool.env new file mode 100644 index 00000000000000..462463da7b6f54 --- /dev/null +++ b/test/fixtures/dotenv/uv-threadpool.env @@ -0,0 +1 @@ +UV_THREADPOOL_SIZE=4 diff --git a/test/fixtures/errors/error_aggregateTwoErrors.snapshot b/test/fixtures/errors/error_aggregateTwoErrors.snapshot index a8d13c461b2cb0..77715c40cbfb92 100644 --- a/test/fixtures/errors/error_aggregateTwoErrors.snapshot +++ b/test/fixtures/errors/error_aggregateTwoErrors.snapshot @@ -2,7 +2,8 @@ throw aggregateTwoErrors(err, originalError); ^ -[AggregateError: original] { +AggregateError: original + at Object. (*error_aggregateTwoErrors.js:*:*) { code: 'ERR0', [errors]: [ Error: original diff --git a/test/fixtures/es-module-require-cache/echo.cjs b/test/fixtures/es-module-require-cache/echo.cjs new file mode 100644 index 00000000000000..c00af019304dbe --- /dev/null +++ b/test/fixtures/es-module-require-cache/echo.cjs @@ -0,0 +1 @@ +console.log(require.cache); diff --git a/test/fixtures/es-modules/esm-top-level-await.mjs b/test/fixtures/es-modules/esm-top-level-await.mjs index 4a4745afafaaf2..672927f7753ec3 100644 --- a/test/fixtures/es-modules/esm-top-level-await.mjs +++ b/test/fixtures/es-modules/esm-top-level-await.mjs @@ -1,5 +1,7 @@ -import { setImmediate } from 'node:timers/promises'; +import { setTimeout } from 'node:timers/promises'; -await setImmediate(); +// Waiting some arbitrary amount of time to make sure other tasks won't start +// executing in the mean time. +await setTimeout(9); console.log(1); console.log(2); diff --git a/test/fixtures/es-modules/package-type-commonjs/echo-require-cache.js b/test/fixtures/es-modules/package-type-commonjs/echo-require-cache.js new file mode 100644 index 00000000000000..c00af019304dbe --- /dev/null +++ b/test/fixtures/es-modules/package-type-commonjs/echo-require-cache.js @@ -0,0 +1 @@ +console.log(require.cache); diff --git a/test/fixtures/linux-perf-logger.js b/test/fixtures/linux-perf-logger.js new file mode 100644 index 00000000000000..d39f9e0cc45b05 --- /dev/null +++ b/test/fixtures/linux-perf-logger.js @@ -0,0 +1,17 @@ +'use strict'; + +process.stdout.write(`${process.pid}`); + +const testRegex = /test-regex/gi; + +function functionOne() { + for (let i = 0; i < 100; i++) { + const match = testRegex.exec(Math.random().toString()); + } +} + +function functionTwo() { + functionOne(); +} + +functionTwo(); diff --git a/test/fixtures/test-runner/output/hooks_spec_reporter.js b/test/fixtures/test-runner/output/hooks_spec_reporter.js new file mode 100644 index 00000000000000..75bb4b6be1e908 --- /dev/null +++ b/test/fixtures/test-runner/output/hooks_spec_reporter.js @@ -0,0 +1,11 @@ +'use strict'; +require('../../../common'); +const fixtures = require('../../../common/fixtures'); +const spawn = require('node:child_process').spawn; + +const child = spawn(process.execPath, + ['--no-warnings', '--test-reporter', 'spec', fixtures.path('test-runner/output/hooks.js')], + { stdio: 'pipe' }); +// eslint-disable-next-line no-control-regex +child.stdout.on('data', (d) => process.stdout.write(d.toString().replace(/[^\x00-\x7F]/g, '').replace(/\u001b\[\d+m/g, ''))); +child.stderr.pipe(process.stderr); diff --git a/test/fixtures/test-runner/output/hooks_spec_reporter.snapshot b/test/fixtures/test-runner/output/hooks_spec_reporter.snapshot new file mode 100644 index 00000000000000..82c4704df4e63f --- /dev/null +++ b/test/fixtures/test-runner/output/hooks_spec_reporter.snapshot @@ -0,0 +1,569 @@ + describe hooks + 1 (*ms) + 2 (*ms) + nested + nested 1 (*ms) + nested 2 (*ms) + nested (*ms) + + describe hooks (*ms) + + before throws + 1 + 'test did not finish before its parent and was cancelled' + + 2 + 'test did not finish before its parent and was cancelled' + + before throws (*ms) + + Error: before + * + * + * + * + * + * + * + * + * + + after throws + 1 (*ms) + 2 (*ms) + after throws (*ms) + + Error: after + * + * + * + * + * + * + * + * + * + + beforeEach throws + 1 (*ms) + Error: beforeEach + * + * + * + * + * + * + * + at async Promise.all (index 0) + * + * + + 2 (*ms) + Error: beforeEach + * + * + * + * + * + * + * + * + + beforeEach throws (*ms) + + afterEach throws + 1 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + at async Promise.all (index 0) + * + + 2 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + + afterEach throws (*ms) + + afterEach when test fails + 1 (*ms) + Error: test + * + * + * + * + * + * + at new Promise () + * + * + at Array.map () + + 2 (*ms) + afterEach when test fails (*ms) + + afterEach throws and test fails + 1 (*ms) + Error: test + * + * + * + * + * + * + at new Promise () + * + * + at Array.map () + + 2 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + + afterEach throws and test fails (*ms) + + test hooks + 1 (*ms) + 2 (*ms) + nested + nested 1 (*ms) + nested 2 (*ms) + nested (*ms) + + test hooks (*ms) + + t.before throws + 1 (*ms) + Error: before + * + * + * + * + * + * + * + * + * + * + + 2 (*ms) + Error: before + * + * + * + * + * + * + * + * + * + * + + t.before throws (*ms) + + t.beforeEach throws + 1 (*ms) + Error: beforeEach + * + * + * + * + * + * + * + * + * + * + + 2 (*ms) + Error: beforeEach + * + * + * + * + * + * + * + * + * + * + + t.beforeEach throws (*ms) + + t.afterEach throws + 1 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + * + + 2 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + * + + t.afterEach throws (*ms) + + afterEach when test fails + 1 (*ms) + Error: test + * + * + * + * + * + * + * + * + * + + 2 (*ms) + afterEach when test fails (*ms) + + afterEach throws and test fails + 1 (*ms) + Error: test + * + * + * + * + * + * + * + * + * + + 2 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + * + + afterEach throws and test fails (*ms) + + t.after() is called if test body throws (*ms) + Error: bye + * + * + * + * + + - after() called + before 1 called + before 2 called + after 1 called + after 2 called + tests 38 + suites 8 + pass 14 + fail 22 + cancelled 2 + skipped 0 + todo 0 + duration_ms * + + failing tests: + +* + 1 + 'test did not finish before its parent and was cancelled' + +* + 2 + 'test did not finish before its parent and was cancelled' + +* + before throws (*ms) + Error: before + * + * + * + * + * + * + * + * + * + +* + after throws (*ms) + Error: after + * + * + * + * + * + * + * + * + * + +* + 1 (*ms) + Error: beforeEach + * + * + * + * + * + * + * + at async Promise.all (index 0) + * + * + +* + 2 (*ms) + Error: beforeEach + * + * + * + * + * + * + * + * + +* + 1 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + at async Promise.all (index 0) + * + +* + 2 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + +* + 1 (*ms) + Error: test + * + * + * + * + * + * + at new Promise () + * + * + at Array.map () + +* + 1 (*ms) + Error: test + * + * + * + * + * + * + at new Promise () + * + * + at Array.map () + +* + 2 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + +* + 1 (*ms) + Error: before + * + * + * + * + * + * + * + * + * + * + +* + 2 (*ms) + Error: before + * + * + * + * + * + * + * + * + * + * + +* + 1 (*ms) + Error: beforeEach + * + * + * + * + * + * + * + * + * + * + +* + 2 (*ms) + Error: beforeEach + * + * + * + * + * + * + * + * + * + * + +* + 1 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + * + +* + 2 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + * + +* + 1 (*ms) + Error: test + * + * + * + * + * + * + * + * + * + +* + 1 (*ms) + Error: test + * + * + * + * + * + * + * + * + * + +* + 2 (*ms) + Error: afterEach + * + * + * + * + * + * + * + * + * + * + +* + t.after() is called if test body throws (*ms) + Error: bye + * + * + * + * diff --git a/test/fixtures/test-runner/output/lcov_reporter.js b/test/fixtures/test-runner/output/lcov_reporter.js new file mode 100644 index 00000000000000..a6d17432d18c23 --- /dev/null +++ b/test/fixtures/test-runner/output/lcov_reporter.js @@ -0,0 +1,7 @@ +'use strict'; +require('../../../common'); +const fixtures = require('../../../common/fixtures'); +const spawn = require('node:child_process').spawn; + +spawn(process.execPath, + ['--no-warnings', '--experimental-test-coverage', '--test-reporter', 'lcov', fixtures.path('test-runner/output/output.js')], { stdio: 'inherit' }); diff --git a/test/fixtures/test-runner/output/lcov_reporter.snapshot b/test/fixtures/test-runner/output/lcov_reporter.snapshot new file mode 100644 index 00000000000000..c14f4c7ce2baee --- /dev/null +++ b/test/fixtures/test-runner/output/lcov_reporter.snapshot @@ -0,0 +1,699 @@ +TN: +SF:test/fixtures/test-runner/output/output.js +FN:8,anonymous_0 +FN:12,anonymous_1 +FN:16,anonymous_2 +FN:21,anonymous_3 +FN:26,anonymous_4 +FN:30,anonymous_5 +FN:34,anonymous_6 +FN:38,anonymous_7 +FN:42,anonymous_8 +FN:46,anonymous_9 +FN:50,anonymous_10 +FN:54,anonymous_11 +FN:59,anonymous_12 +FN:64,anonymous_13 +FN:68,anonymous_14 +FN:72,anonymous_15 +FN:76,anonymous_16 +FN:80,anonymous_17 +FN:81,anonymous_18 +FN:86,anonymous_19 +FN:87,anonymous_20 +FN:92,anonymous_21 +FN:93,anonymous_22 +FN:94,anonymous_23 +FN:100,anonymous_24 +FN:101,anonymous_25 +FN:107,anonymous_26 +FN:111,anonymous_27 +FN:112,anonymous_28 +FN:113,anonymous_29 +FN:114,anonymous_30 +FN:122,anonymous_31 +FN:123,anonymous_32 +FN:130,anonymous_33 +FN:131,anonymous_34 +FN:132,anonymous_35 +FN:140,anonymous_36 +FN:141,anonymous_37 +FN:142,anonymous_38 +FN:150,anonymous_39 +FN:151,anonymous_40 +FN:159,anonymous_41 +FN:160,anonymous_42 +FN:161,anonymous_43 +FN:166,anonymous_44 +FN:167,anonymous_45 +FN:171,anonymous_46 +FN:172,anonymous_47 +FN:173,anonymous_48 +FN:179,anonymous_49 +FN:183,anonymous_50 +FN:187,anonymous_51 +FN:195,functionOnly +FN:198,anonymous_53 +FN:213,functionAndOptions +FN:215,anonymous_55 +FN:219,anonymous_56 +FN:220,anonymous_57 +FN:225,anonymous_58 +FN:229,anonymous_59 +FN:233,anonymous_60 +FN:238,anonymous_61 +FN:242,anonymous_62 +FN:246,anonymous_63 +FN:251,anonymous_64 +FN:256,anonymous_65 +FN:257,anonymous_66 +FN:263,anonymous_67 +FN:264,anonymous_68 +FN:269,anonymous_69 +FN:270,anonymous_70 +FN:277,anonymous_71 +FN:287,anonymous_72 +FN:289,obj +FN:298,anonymous_74 +FN:300,obj +FN:309,anonymous_76 +FN:310,anonymous_77 +FN:313,anonymous_78 +FN:318,anonymous_79 +FN:319,anonymous_80 +FN:324,anonymous_81 +FN:329,anonymous_82 +FN:330,anonymous_83 +FN:335,anonymous_84 +FN:339,anonymous_85 +FN:342,get then +FN:345,anonymous_87 +FN:350,anonymous_88 +FN:353,get then +FN:356,anonymous_90 +FN:361,anonymous_91 +FN:362,anonymous_92 +FN:363,anonymous_93 +FN:367,anonymous_94 +FN:368,anonymous_95 +FN:369,anonymous_96 +FN:375,anonymous_97 +FN:379,anonymous_98 +FNDA:1,anonymous_0 +FNDA:1,anonymous_1 +FNDA:1,anonymous_2 +FNDA:1,anonymous_3 +FNDA:1,anonymous_4 +FNDA:1,anonymous_5 +FNDA:1,anonymous_6 +FNDA:1,anonymous_7 +FNDA:1,anonymous_8 +FNDA:1,anonymous_9 +FNDA:1,anonymous_10 +FNDA:1,anonymous_11 +FNDA:1,anonymous_12 +FNDA:1,anonymous_13 +FNDA:1,anonymous_14 +FNDA:1,anonymous_15 +FNDA:1,anonymous_16 +FNDA:1,anonymous_17 +FNDA:1,anonymous_18 +FNDA:1,anonymous_19 +FNDA:1,anonymous_20 +FNDA:1,anonymous_21 +FNDA:1,anonymous_22 +FNDA:1,anonymous_23 +FNDA:1,anonymous_24 +FNDA:1,anonymous_25 +FNDA:1,anonymous_26 +FNDA:1,anonymous_27 +FNDA:1,anonymous_28 +FNDA:1,anonymous_29 +FNDA:1,anonymous_30 +FNDA:1,anonymous_31 +FNDA:1,anonymous_32 +FNDA:1,anonymous_33 +FNDA:1,anonymous_34 +FNDA:1,anonymous_35 +FNDA:1,anonymous_36 +FNDA:1,anonymous_37 +FNDA:1,anonymous_38 +FNDA:1,anonymous_39 +FNDA:1,anonymous_40 +FNDA:1,anonymous_41 +FNDA:1,anonymous_42 +FNDA:1,anonymous_43 +FNDA:1,anonymous_44 +FNDA:1,anonymous_45 +FNDA:1,anonymous_46 +FNDA:1,anonymous_47 +FNDA:1,anonymous_48 +FNDA:0,anonymous_49 +FNDA:0,anonymous_50 +FNDA:1,anonymous_51 +FNDA:1,functionOnly +FNDA:1,anonymous_53 +FNDA:0,functionAndOptions +FNDA:1,anonymous_55 +FNDA:1,anonymous_56 +FNDA:1,anonymous_57 +FNDA:1,anonymous_58 +FNDA:1,anonymous_59 +FNDA:1,anonymous_60 +FNDA:1,anonymous_61 +FNDA:1,anonymous_62 +FNDA:1,anonymous_63 +FNDA:1,anonymous_64 +FNDA:1,anonymous_65 +FNDA:1,anonymous_66 +FNDA:1,anonymous_67 +FNDA:1,anonymous_68 +FNDA:1,anonymous_69 +FNDA:1,anonymous_70 +FNDA:1,anonymous_71 +FNDA:1,anonymous_72 +FNDA:1,obj +FNDA:1,anonymous_74 +FNDA:1,obj +FNDA:1,anonymous_76 +FNDA:1,anonymous_77 +FNDA:1,anonymous_78 +FNDA:1,anonymous_79 +FNDA:1,anonymous_80 +FNDA:1,anonymous_81 +FNDA:1,anonymous_82 +FNDA:1,anonymous_83 +FNDA:1,anonymous_84 +FNDA:1,anonymous_85 +FNDA:1,get then +FNDA:1,anonymous_87 +FNDA:1,anonymous_88 +FNDA:1,get then +FNDA:1,anonymous_90 +FNDA:1,anonymous_91 +FNDA:1,anonymous_92 +FNDA:1,anonymous_93 +FNDA:1,anonymous_94 +FNDA:1,anonymous_95 +FNDA:1,anonymous_96 +FNDA:1,anonymous_97 +FNDA:1,anonymous_98 +FNF:99 +FNH:96 +BRDA:1,0,0,1 +BRDA:8,1,0,1 +BRDA:12,2,0,1 +BRDA:16,3,0,1 +BRDA:21,4,0,1 +BRDA:26,5,0,1 +BRDA:30,6,0,1 +BRDA:34,7,0,1 +BRDA:38,8,0,1 +BRDA:42,9,0,1 +BRDA:46,10,0,1 +BRDA:50,11,0,1 +BRDA:54,12,0,1 +BRDA:59,13,0,1 +BRDA:64,14,0,1 +BRDA:68,15,0,1 +BRDA:72,16,0,1 +BRDA:76,17,0,1 +BRDA:80,18,0,1 +BRDA:81,19,0,1 +BRDA:86,20,0,1 +BRDA:87,21,0,1 +BRDA:92,22,0,1 +BRDA:93,23,0,1 +BRDA:94,24,0,1 +BRDA:100,25,0,1 +BRDA:101,26,0,1 +BRDA:107,27,0,1 +BRDA:111,28,0,1 +BRDA:112,29,0,1 +BRDA:113,30,0,1 +BRDA:114,31,0,1 +BRDA:122,32,0,1 +BRDA:123,33,0,1 +BRDA:130,34,0,1 +BRDA:131,35,0,1 +BRDA:132,36,0,1 +BRDA:140,37,0,1 +BRDA:141,38,0,1 +BRDA:142,39,0,1 +BRDA:150,40,0,1 +BRDA:151,41,0,1 +BRDA:159,42,0,1 +BRDA:160,43,0,1 +BRDA:161,44,0,1 +BRDA:166,45,0,1 +BRDA:167,46,0,1 +BRDA:171,47,0,1 +BRDA:172,48,0,1 +BRDA:173,49,0,1 +BRDA:187,50,0,1 +BRDA:195,51,0,1 +BRDA:198,52,0,1 +BRDA:215,53,0,1 +BRDA:219,54,0,1 +BRDA:220,55,0,1 +BRDA:225,56,0,1 +BRDA:229,57,0,1 +BRDA:233,58,0,1 +BRDA:238,59,0,1 +BRDA:242,60,0,1 +BRDA:246,61,0,1 +BRDA:251,62,0,1 +BRDA:256,63,0,1 +BRDA:257,64,0,1 +BRDA:263,65,0,1 +BRDA:264,66,0,1 +BRDA:269,67,0,1 +BRDA:270,68,0,1 +BRDA:277,69,0,1 +BRDA:287,70,0,1 +BRDA:289,71,0,1 +BRDA:298,72,0,1 +BRDA:300,73,0,1 +BRDA:309,74,0,1 +BRDA:310,75,0,1 +BRDA:313,76,0,1 +BRDA:318,77,0,1 +BRDA:319,78,0,1 +BRDA:324,79,0,1 +BRDA:329,80,0,1 +BRDA:330,81,0,1 +BRDA:335,82,0,1 +BRDA:339,83,0,1 +BRDA:342,84,0,1 +BRDA:343,85,0,0 +BRDA:345,86,0,1 +BRDA:350,87,0,1 +BRDA:353,88,0,1 +BRDA:354,89,0,0 +BRDA:356,90,0,1 +BRDA:361,91,0,1 +BRDA:364,92,0,0 +BRDA:362,93,0,1 +BRDA:363,94,0,1 +BRDA:367,95,0,1 +BRDA:370,96,0,0 +BRDA:368,97,0,1 +BRDA:369,98,0,1 +BRDA:375,99,0,1 +BRDA:379,100,0,1 +BRF:101 +BRH:97 +DA:1,1 +DA:2,1 +DA:3,1 +DA:4,1 +DA:5,1 +DA:6,1 +DA:7,1 +DA:8,1 +DA:9,1 +DA:10,1 +DA:11,1 +DA:12,1 +DA:13,1 +DA:14,1 +DA:15,1 +DA:16,1 +DA:17,1 +DA:18,1 +DA:19,1 +DA:20,1 +DA:21,1 +DA:22,1 +DA:23,1 +DA:24,1 +DA:25,1 +DA:26,1 +DA:27,1 +DA:28,1 +DA:29,1 +DA:30,1 +DA:31,1 +DA:32,1 +DA:33,1 +DA:34,1 +DA:35,1 +DA:36,1 +DA:37,1 +DA:38,1 +DA:39,1 +DA:40,1 +DA:41,1 +DA:42,1 +DA:43,1 +DA:44,1 +DA:45,1 +DA:46,1 +DA:47,1 +DA:48,1 +DA:49,1 +DA:50,1 +DA:51,1 +DA:52,1 +DA:53,1 +DA:54,1 +DA:55,1 +DA:56,1 +DA:57,1 +DA:58,1 +DA:59,1 +DA:60,1 +DA:61,1 +DA:62,1 +DA:63,1 +DA:64,1 +DA:65,1 +DA:66,1 +DA:67,1 +DA:68,1 +DA:69,1 +DA:70,1 +DA:71,1 +DA:72,1 +DA:73,1 +DA:74,1 +DA:75,1 +DA:76,1 +DA:77,1 +DA:78,1 +DA:79,1 +DA:80,1 +DA:81,1 +DA:82,1 +DA:83,1 +DA:84,1 +DA:85,1 +DA:86,1 +DA:87,1 +DA:88,1 +DA:89,1 +DA:90,1 +DA:91,1 +DA:92,1 +DA:93,1 +DA:94,1 +DA:95,1 +DA:96,1 +DA:97,1 +DA:98,1 +DA:99,1 +DA:100,1 +DA:101,1 +DA:102,1 +DA:103,1 +DA:104,1 +DA:105,1 +DA:106,1 +DA:107,1 +DA:108,1 +DA:109,1 +DA:110,1 +DA:111,1 +DA:112,1 +DA:113,1 +DA:114,1 +DA:115,1 +DA:116,1 +DA:117,1 +DA:118,1 +DA:119,1 +DA:120,1 +DA:121,1 +DA:122,1 +DA:123,1 +DA:124,1 +DA:125,1 +DA:126,1 +DA:127,1 +DA:128,1 +DA:129,1 +DA:130,1 +DA:131,1 +DA:132,1 +DA:133,1 +DA:134,1 +DA:135,1 +DA:136,1 +DA:137,1 +DA:138,1 +DA:139,1 +DA:140,1 +DA:141,1 +DA:142,1 +DA:143,1 +DA:144,1 +DA:145,1 +DA:146,1 +DA:147,1 +DA:148,1 +DA:149,1 +DA:150,1 +DA:151,1 +DA:152,1 +DA:153,1 +DA:154,1 +DA:155,1 +DA:156,1 +DA:157,1 +DA:158,1 +DA:159,1 +DA:160,1 +DA:161,1 +DA:162,1 +DA:163,1 +DA:164,1 +DA:165,1 +DA:166,1 +DA:167,1 +DA:168,1 +DA:169,1 +DA:170,1 +DA:171,1 +DA:172,1 +DA:173,1 +DA:174,1 +DA:175,1 +DA:176,1 +DA:177,1 +DA:178,1 +DA:179,1 +DA:180,0 +DA:181,1 +DA:182,1 +DA:183,1 +DA:184,0 +DA:185,1 +DA:186,1 +DA:187,1 +DA:188,1 +DA:189,1 +DA:190,1 +DA:191,1 +DA:192,1 +DA:193,1 +DA:194,1 +DA:195,1 +DA:196,1 +DA:197,1 +DA:198,1 +DA:199,1 +DA:200,1 +DA:201,1 +DA:202,1 +DA:203,1 +DA:204,1 +DA:205,1 +DA:206,1 +DA:207,1 +DA:208,1 +DA:209,1 +DA:210,1 +DA:211,1 +DA:212,1 +DA:213,1 +DA:214,1 +DA:215,1 +DA:216,1 +DA:217,1 +DA:218,1 +DA:219,1 +DA:220,1 +DA:221,1 +DA:222,1 +DA:223,1 +DA:224,1 +DA:225,1 +DA:226,1 +DA:227,1 +DA:228,1 +DA:229,1 +DA:230,1 +DA:231,1 +DA:232,1 +DA:233,1 +DA:234,1 +DA:235,1 +DA:236,1 +DA:237,1 +DA:238,1 +DA:239,1 +DA:240,1 +DA:241,1 +DA:242,1 +DA:243,1 +DA:244,1 +DA:245,1 +DA:246,1 +DA:247,1 +DA:248,1 +DA:249,1 +DA:250,1 +DA:251,1 +DA:252,1 +DA:253,1 +DA:254,1 +DA:255,1 +DA:256,1 +DA:257,1 +DA:258,1 +DA:259,1 +DA:260,1 +DA:261,1 +DA:262,1 +DA:263,1 +DA:264,1 +DA:265,1 +DA:266,1 +DA:267,1 +DA:268,1 +DA:269,1 +DA:270,1 +DA:271,1 +DA:272,1 +DA:273,1 +DA:274,1 +DA:275,1 +DA:276,1 +DA:277,1 +DA:278,1 +DA:279,1 +DA:280,1 +DA:281,1 +DA:282,1 +DA:283,1 +DA:284,1 +DA:285,1 +DA:286,1 +DA:287,1 +DA:288,1 +DA:289,1 +DA:290,1 +DA:291,1 +DA:292,1 +DA:293,1 +DA:294,1 +DA:295,1 +DA:296,1 +DA:297,1 +DA:298,1 +DA:299,1 +DA:300,1 +DA:301,1 +DA:302,1 +DA:303,1 +DA:304,1 +DA:305,1 +DA:306,1 +DA:307,1 +DA:308,1 +DA:309,1 +DA:310,1 +DA:311,1 +DA:312,1 +DA:313,1 +DA:314,1 +DA:315,1 +DA:316,1 +DA:317,1 +DA:318,1 +DA:319,1 +DA:320,1 +DA:321,1 +DA:322,1 +DA:323,1 +DA:324,1 +DA:325,1 +DA:326,1 +DA:327,1 +DA:328,1 +DA:329,1 +DA:330,1 +DA:331,1 +DA:332,1 +DA:333,1 +DA:334,1 +DA:335,1 +DA:336,1 +DA:337,1 +DA:338,1 +DA:339,1 +DA:340,1 +DA:341,1 +DA:342,1 +DA:343,1 +DA:344,1 +DA:345,1 +DA:346,1 +DA:347,1 +DA:348,1 +DA:349,1 +DA:350,1 +DA:351,1 +DA:352,1 +DA:353,1 +DA:354,1 +DA:355,1 +DA:356,1 +DA:357,1 +DA:358,1 +DA:359,1 +DA:360,1 +DA:361,1 +DA:362,1 +DA:363,1 +DA:364,1 +DA:365,1 +DA:366,1 +DA:367,1 +DA:368,1 +DA:369,1 +DA:370,1 +DA:371,1 +DA:372,1 +DA:373,1 +DA:374,1 +DA:375,1 +DA:376,1 +DA:377,1 +DA:378,1 +DA:379,1 +DA:380,1 +DA:381,1 +DA:382,1 +DA:383,1 +DA:384,1 +DA:385,1 +DA:386,1 +DA:387,1 +DA:388,1 +DA:389,1 +DA:390,1 +DA:391,1 +LH:389 +LF:391 +end_of_record diff --git a/test/internet/test-dns-lookup.js b/test/internet/test-dns-lookup.js index 6b06801dd1afb8..269c3cc91f2a68 100644 --- a/test/internet/test-dns-lookup.js +++ b/test/internet/test-dns-lookup.js @@ -17,7 +17,7 @@ assert.rejects( code: 'ENOTFOUND', message: `getaddrinfo ENOTFOUND ${addresses.NOT_FOUND}`, }, -); +).then(common.mustCall()); assert.rejects( dnsPromises.lookup(addresses.NOT_FOUND, { @@ -29,7 +29,7 @@ assert.rejects( code: 'ENOTFOUND', message: `getaddrinfo ENOTFOUND ${addresses.NOT_FOUND}`, }, -); +).then(common.mustCall()); dns.lookup(addresses.NOT_FOUND, { hints: 0, diff --git a/test/js-native-api/test_finalizer/test_fatal_finalize.js b/test/js-native-api/test_finalizer/test_fatal_finalize.js index 352310128a97f6..a100eb220024da 100644 --- a/test/js-native-api/test_finalizer/test_fatal_finalize.js +++ b/test/js-native-api/test_finalizer/test_fatal_finalize.js @@ -27,5 +27,5 @@ const { spawnSync } = require('child_process'); const child = spawnSync(process.execPath, [ '--expose-gc', __filename, 'child', ]); -assert.strictEqual(child.signal, common.isWindows ? null : 'SIGABRT'); +assert(common.nodeProcessAborted(child.status, child.signal)); assert.match(child.stderr.toString(), /Finalizer is calling a function that may affect GC state/); diff --git a/test/node-api/test_fatal/test_threads.js b/test/node-api/test_fatal/test_threads.js index 8c306694f5e259..4a4f867613a3b5 100644 --- a/test/node-api/test_fatal/test_threads.js +++ b/test/node-api/test_fatal/test_threads.js @@ -18,4 +18,4 @@ const p = child_process.spawnSync( assert.ifError(p.error); assert.ok(p.stderr.toString().includes( 'FATAL ERROR: work_thread foobar')); -assert.ok(p.status === 134 || p.signal === 'SIGABRT'); +assert(common.nodeProcessAborted(p.status, p.signal)); diff --git a/test/node-api/test_uv_threadpool_size/node-options.js b/test/node-api/test_uv_threadpool_size/node-options.js new file mode 100644 index 00000000000000..40610274acce4c --- /dev/null +++ b/test/node-api/test_uv_threadpool_size/node-options.js @@ -0,0 +1,31 @@ +'use strict'; + +const common = require('../../common'); +const assert = require('assert'); +const path = require('path'); +const { spawnSync } = require('child_process'); + +if (process.config.variables.node_without_node_options) { + common.skip('missing NODE_OPTIONS support'); +} + +const uvThreadPoolPath = '../../fixtures/dotenv/uv-threadpool.env'; + +// Should update UV_THREADPOOL_SIZE +let filePath = path.join(__dirname, `./build/${common.buildType}/test_uv_threadpool_size`); +if (common.isWindows) { + filePath = filePath.replaceAll('\\', '\\\\'); +} +const code = ` + const { test } = require('${filePath}'); + const size = parseInt(process.env.UV_THREADPOOL_SIZE, 10); + require('assert').strictEqual(size, 4); + test(size); + `.trim(); +const child = spawnSync( + process.execPath, + [ `--env-file=${uvThreadPoolPath}`, '--eval', code ], + { cwd: __dirname, encoding: 'utf-8' }, +); +assert.strictEqual(child.stderr, ''); +assert.strictEqual(child.status, 0); diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status index 98288c5c1228c2..838d465b596f9f 100644 --- a/test/parallel/parallel.status +++ b/test/parallel/parallel.status @@ -5,6 +5,9 @@ prefix parallel # sample-test : PASS,FLAKY [true] # This section applies to all platforms +# https://github.com/nodejs/node/pull/50327 +# Currently there's no reliable way to test it. +test-diagnostics-channel-memory-leak: SKIP [$system==win32] # https://github.com/nodejs/node/issues/41206 diff --git a/test/parallel/test-assert-esm-cjs-message-verify.js b/test/parallel/test-assert-esm-cjs-message-verify.js new file mode 100644 index 00000000000000..9a66d83abd9c4b --- /dev/null +++ b/test/parallel/test-assert-esm-cjs-message-verify.js @@ -0,0 +1,51 @@ +'use strict'; + +const { spawnPromisified } = require('../common'); +const tmpdir = require('../common/tmpdir'); +const assert = require('assert'); +const { writeFileSync, unlink } = require('fs'); +const { describe, after, it } = require('node:test'); + +tmpdir.refresh(); + +const fileImports = { + cjs: 'const assert = require("assert");', + mjs: 'import assert from "assert";', +}; + +const fileNames = []; + +for (const [ext, header] of Object.entries(fileImports)) { + const fileName = `test-file.${ext}`; + // Store the generated filesnames in an array + fileNames.push(`${tmpdir.path}/${fileName}`); + + writeFileSync(tmpdir.resolve(fileName), `${header}\nassert.ok(0 === 2);`); +} + +describe('ensure the assert.ok throwing similar error messages for esm and cjs files', () => { + const nodejsPath = `${process.execPath}`; + const errorsMessages = []; + + it('should return code 1 for each command', async () => { + for (const fileName of fileNames) { + const { stderr, code } = await spawnPromisified(nodejsPath, [fileName]); + assert.strictEqual(code, 1); + // For each error message, filter the lines which will starts with AssertionError + errorsMessages.push( + stderr.split('\n').find((s) => s.startsWith('AssertionError')) + ); + } + }); + + after(() => { + assert.strictEqual(errorsMessages.length, 2); + assert.deepStrictEqual(errorsMessages[0], errorsMessages[1]); + + for (const fileName of fileNames) { + unlink(fileName, () => {}); + } + + tmpdir.refresh(); + }); +}); diff --git a/test/parallel/test-async-wrap-constructor.js b/test/parallel/test-async-wrap-constructor.js index e89bc49df02333..853898aa0adf1a 100644 --- a/test/parallel/test-async-wrap-constructor.js +++ b/test/parallel/test-async-wrap-constructor.js @@ -6,15 +6,16 @@ require('../common'); const assert = require('assert'); const async_hooks = require('async_hooks'); -[0, 1, false, true, null, 'hello'].forEach((badArg) => { +const falsyValues = [0, 1, false, true, null, 'hello']; +for (const badArg of falsyValues) { const hookNames = ['init', 'before', 'after', 'destroy', 'promiseResolve']; - hookNames.forEach((field) => { + for (const hookName of hookNames) { assert.throws(() => { - async_hooks.createHook({ [field]: badArg }); + async_hooks.createHook({ [hookName]: badArg }); }, { code: 'ERR_ASYNC_CALLBACK', name: 'TypeError', - message: `hook.${field} must be a function` + message: `hook.${hookName} must be a function` }); - }); -}); + } +} diff --git a/test/parallel/test-blob.js b/test/parallel/test-blob.js index cb9e2f239547f0..330fd79c742d77 100644 --- a/test/parallel/test-blob.js +++ b/test/parallel/test-blob.js @@ -409,10 +409,10 @@ assert.throws(() => new Blob({}), { } (async () => { - assert.rejects(async () => Blob.prototype.arrayBuffer.call(), { + await assert.rejects(async () => Blob.prototype.arrayBuffer.call(), { code: 'ERR_INVALID_THIS', }); - assert.rejects(async () => Blob.prototype.text.call(), { + await assert.rejects(async () => Blob.prototype.text.call(), { code: 'ERR_INVALID_THIS', }); })().then(common.mustCall()); diff --git a/test/parallel/test-bootstrap-modules.js b/test/parallel/test-bootstrap-modules.js index 78db466a95b38e..e4561d746606ed 100644 --- a/test/parallel/test-bootstrap-modules.js +++ b/test/parallel/test-bootstrap-modules.js @@ -107,7 +107,6 @@ if (common.isMainThread) { 'NativeModule internal/perf/event_loop_utilization', 'NativeModule internal/process/worker_thread_only', 'NativeModule internal/streams/add-abort-signal', - 'NativeModule internal/streams/buffer_list', 'NativeModule internal/streams/compose', 'NativeModule internal/streams/destroy', 'NativeModule internal/streams/duplex', diff --git a/test/parallel/test-buffer-slice.js b/test/parallel/test-buffer-slice.js index 05cbfba4733829..52720bb87b3cea 100644 --- a/test/parallel/test-buffer-slice.js +++ b/test/parallel/test-buffer-slice.js @@ -71,9 +71,9 @@ for (let i = 0, s = buf.toString(); i < buf.length; ++i) { ); } -expectedSameBufs.forEach(([buf1, buf2]) => { +for (const [buf1, buf2] of expectedSameBufs) { assert.strictEqual(Buffer.compare(buf1, buf2), 0); -}); +} const utf16Buf = Buffer.from('0123456789', 'utf16le'); assert.deepStrictEqual(utf16Buf.slice(0, 6), Buffer.from('012', 'utf16le')); diff --git a/test/parallel/test-console-table.js b/test/parallel/test-console-table.js index fb1de08323e325..3dac53a5663bde 100644 --- a/test/parallel/test-console-table.js +++ b/test/parallel/test-console-table.js @@ -38,19 +38,19 @@ test([1, 2, 3], ` ┌─────────┬────────┐ │ (index) │ Values │ ├─────────┼────────┤ -│ 0 │ 1 │ -│ 1 │ 2 │ -│ 2 │ 3 │ +│ 0 │ 1 │ +│ 1 │ 2 │ +│ 2 │ 3 │ └─────────┴────────┘ `); test([Symbol(), 5, [10]], ` ┌─────────┬────┬──────────┐ -│ (index) │ 0 │ Values │ +│ (index) │ 0 │ Values │ ├─────────┼────┼──────────┤ -│ 0 │ │ Symbol() │ -│ 1 │ │ 5 │ -│ 2 │ 10 │ │ +│ 0 │ │ Symbol() │ +│ 1 │ │ 5 │ +│ 2 │ 10 │ │ └─────────┴────┴──────────┘ `); @@ -58,46 +58,46 @@ test([null, 5], ` ┌─────────┬────────┐ │ (index) │ Values │ ├─────────┼────────┤ -│ 0 │ null │ -│ 1 │ 5 │ +│ 0 │ null │ +│ 1 │ 5 │ └─────────┴────────┘ `); test([undefined, 5], ` ┌─────────┬───────────┐ -│ (index) │ Values │ +│ (index) │ Values │ ├─────────┼───────────┤ -│ 0 │ undefined │ -│ 1 │ 5 │ +│ 0 │ undefined │ +│ 1 │ 5 │ └─────────┴───────────┘ `); test({ a: 1, b: Symbol(), c: [10] }, ` ┌─────────┬────┬──────────┐ -│ (index) │ 0 │ Values │ +│ (index) │ 0 │ Values │ ├─────────┼────┼──────────┤ -│ a │ │ 1 │ -│ b │ │ Symbol() │ -│ c │ 10 │ │ +│ a │ │ 1 │ +│ b │ │ Symbol() │ +│ c │ 10 │ │ └─────────┴────┴──────────┘ `); test(new Map([ ['a', 1], [Symbol(), [2]] ]), ` ┌───────────────────┬──────────┬────────┐ -│ (iteration index) │ Key │ Values │ +│ (iteration index) │ Key │ Values │ ├───────────────────┼──────────┼────────┤ -│ 0 │ 'a' │ 1 │ -│ 1 │ Symbol() │ [ 2 ] │ +│ 0 │ 'a' │ 1 │ +│ 1 │ Symbol() │ [ 2 ] │ └───────────────────┴──────────┴────────┘ `); test(new Set([1, 2, Symbol()]), ` ┌───────────────────┬──────────┐ -│ (iteration index) │ Values │ +│ (iteration index) │ Values │ ├───────────────────┼──────────┤ -│ 0 │ 1 │ -│ 1 │ 2 │ -│ 2 │ Symbol() │ +│ 0 │ 1 │ +│ 1 │ 2 │ +│ 2 │ Symbol() │ └───────────────────┴──────────┘ `); @@ -105,8 +105,8 @@ test({ a: 1, b: 2 }, ['a'], ` ┌─────────┬───┐ │ (index) │ a │ ├─────────┼───┤ -│ a │ │ -│ b │ │ +│ a │ │ +│ b │ │ └─────────┴───┘ `); @@ -114,8 +114,8 @@ test([{ a: 1, b: 2 }, { a: 3, c: 4 }], ['a'], ` ┌─────────┬───┐ │ (index) │ a │ ├─────────┼───┤ -│ 0 │ 1 │ -│ 1 │ 3 │ +│ 0 │ 1 │ +│ 1 │ 3 │ └─────────┴───┘ `); @@ -123,9 +123,9 @@ test(new Map([[1, 1], [2, 2], [3, 3]]).entries(), ` ┌───────────────────┬─────┬────────┐ │ (iteration index) │ Key │ Values │ ├───────────────────┼─────┼────────┤ -│ 0 │ 1 │ 1 │ -│ 1 │ 2 │ 2 │ -│ 2 │ 3 │ 3 │ +│ 0 │ 1 │ 1 │ +│ 1 │ 2 │ 2 │ +│ 2 │ 3 │ 3 │ └───────────────────┴─────┴────────┘ `); @@ -133,9 +133,9 @@ test(new Map([[1, 1], [2, 2], [3, 3]]).values(), ` ┌───────────────────┬────────┐ │ (iteration index) │ Values │ ├───────────────────┼────────┤ -│ 0 │ 1 │ -│ 1 │ 2 │ -│ 2 │ 3 │ +│ 0 │ 1 │ +│ 1 │ 2 │ +│ 2 │ 3 │ └───────────────────┴────────┘ `); @@ -143,9 +143,9 @@ test(new Map([[1, 1], [2, 2], [3, 3]]).keys(), ` ┌───────────────────┬────────┐ │ (iteration index) │ Values │ ├───────────────────┼────────┤ -│ 0 │ 1 │ -│ 1 │ 2 │ -│ 2 │ 3 │ +│ 0 │ 1 │ +│ 1 │ 2 │ +│ 2 │ 3 │ └───────────────────┴────────┘ `); @@ -153,9 +153,9 @@ test(new Set([1, 2, 3]).values(), ` ┌───────────────────┬────────┐ │ (iteration index) │ Values │ ├───────────────────┼────────┤ -│ 0 │ 1 │ -│ 1 │ 2 │ -│ 2 │ 3 │ +│ 0 │ 1 │ +│ 1 │ 2 │ +│ 2 │ 3 │ └───────────────────┴────────┘ `); @@ -164,15 +164,15 @@ test({ a: { a: 1, b: 2, c: 3 } }, ` ┌─────────┬───┬───┬───┐ │ (index) │ a │ b │ c │ ├─────────┼───┼───┼───┤ -│ a │ 1 │ 2 │ 3 │ +│ a │ 1 │ 2 │ 3 │ └─────────┴───┴───┴───┘ `); test({ a: { a: { a: 1, b: 2, c: 3 } } }, ` ┌─────────┬──────────┐ -│ (index) │ a │ +│ (index) │ a │ ├─────────┼──────────┤ -│ a │ [Object] │ +│ a │ [Object] │ └─────────┴──────────┘ `); @@ -180,7 +180,7 @@ test({ a: [1, 2] }, ` ┌─────────┬───┬───┐ │ (index) │ 0 │ 1 │ ├─────────┼───┼───┤ -│ a │ 1 │ 2 │ +│ a │ 1 │ 2 │ └─────────┴───┴───┘ `); @@ -188,9 +188,9 @@ test({ a: [1, 2, 3, 4, 5], b: 5, c: { e: 5 } }, ` ┌─────────┬───┬───┬───┬───┬───┬───┬────────┐ │ (index) │ 0 │ 1 │ 2 │ 3 │ 4 │ e │ Values │ ├─────────┼───┼───┼───┼───┼───┼───┼────────┤ -│ a │ 1 │ 2 │ 3 │ 4 │ 5 │ │ │ -│ b │ │ │ │ │ │ │ 5 │ -│ c │ │ │ │ │ │ 5 │ │ +│ a │ 1 │ 2 │ 3 │ 4 │ 5 │ │ │ +│ b │ │ │ │ │ │ │ 5 │ +│ c │ │ │ │ │ │ 5 │ │ └─────────┴───┴───┴───┴───┴───┴───┴────────┘ `); @@ -198,9 +198,9 @@ test(new Uint8Array([1, 2, 3]), ` ┌─────────┬────────┐ │ (index) │ Values │ ├─────────┼────────┤ -│ 0 │ 1 │ -│ 1 │ 2 │ -│ 2 │ 3 │ +│ 0 │ 1 │ +│ 1 │ 2 │ +│ 2 │ 3 │ └─────────┴────────┘ `); @@ -208,9 +208,9 @@ test(Buffer.from([1, 2, 3]), ` ┌─────────┬────────┐ │ (index) │ Values │ ├─────────┼────────┤ -│ 0 │ 1 │ -│ 1 │ 2 │ -│ 2 │ 3 │ +│ 0 │ 1 │ +│ 1 │ 2 │ +│ 2 │ 3 │ └─────────┴────────┘ `); @@ -218,7 +218,7 @@ test({ a: undefined }, ['x'], ` ┌─────────┬───┐ │ (index) │ x │ ├─────────┼───┤ -│ a │ │ +│ a │ │ └─────────┴───┘ `); @@ -238,23 +238,23 @@ test(new Map(), ` test([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }], ` ┌─────────┬─────┬─────┐ -│ (index) │ a │ b │ +│ (index) │ a │ b │ ├─────────┼─────┼─────┤ -│ 0 │ 1 │ 'Y' │ -│ 1 │ 'Z' │ 2 │ +│ 0 │ 1 │ 'Y' │ +│ 1 │ 'Z' │ 2 │ └─────────┴─────┴─────┘ `); { const line = '─'.repeat(79); - const header = `${' '.repeat(37)}name${' '.repeat(40)}`; + const header = `name${' '.repeat(77)}`; const name = 'very long long long long long long long long long long long ' + 'long long long long'; test([{ name }], ` ┌─────────┬──${line}──┐ -│ (index) │ ${header}│ +│ (index) │ ${header} │ ├─────────┼──${line}──┤ -│ 0 │ '${name}' │ +│ 0 │ '${name}' │ └─────────┴──${line}──┘ `); } @@ -263,8 +263,8 @@ test({ foo: '¥', bar: '¥' }, ` ┌─────────┬────────┐ │ (index) │ Values │ ├─────────┼────────┤ -│ foo │ '¥' │ -│ bar │ '¥' │ +│ foo │ '¥' │ +│ bar │ '¥' │ └─────────┴────────┘ `); @@ -272,8 +272,8 @@ test({ foo: '你好', bar: 'hello' }, ` ┌─────────┬─────────┐ │ (index) │ Values │ ├─────────┼─────────┤ -│ foo │ '你好' │ -│ bar │ 'hello' │ +│ foo │ '你好' │ +│ bar │ 'hello' │ └─────────┴─────────┘ `); @@ -285,8 +285,8 @@ test([{ foo: 10 }, { foo: 20 }], ['__proto__'], ` ┌─────────┬───────────┐ │ (index) │ __proto__ │ ├─────────┼───────────┤ -│ 0 │ │ -│ 1 │ │ +│ 0 │ │ +│ 1 │ │ └─────────┴───────────┘ `); assert.strictEqual('0' in Object.prototype, false); diff --git a/test/parallel/test-crypto-dh.js b/test/parallel/test-crypto-dh.js index abbe1abe7e53d7..3b738b7f47ec59 100644 --- a/test/parallel/test-crypto-dh.js +++ b/test/parallel/test-crypto-dh.js @@ -85,11 +85,15 @@ const crypto = require('crypto'); }, wrongBlockLength); } - assert.throws(() => { - dh3.computeSecret(''); - }, { message: common.hasOpenSSL3 ? - 'error:02800080:Diffie-Hellman routines::invalid secret' : - 'Supplied key is too small' }); + { + const v = crypto.constants.OPENSSL_VERSION_NUMBER; + const hasOpenSSL3WithNewErrorMessage = (v >= 0x300000c0 && v <= 0x30100000) || (v >= 0x30100040 && v <= 0x30200000); + assert.throws(() => { + dh3.computeSecret(''); + }, { message: common.hasOpenSSL3 && !hasOpenSSL3WithNewErrorMessage ? + 'error:02800080:Diffie-Hellman routines::invalid secret' : + 'Supplied key is too small' }); + } } // Through a fluke of history, g=0 defaults to DH_GENERATOR (2). diff --git a/test/parallel/test-crypto-getcipherinfo.js b/test/parallel/test-crypto-getcipherinfo.js index 98d2a52eceac4b..64b79fc36ccf4d 100644 --- a/test/parallel/test-crypto-getcipherinfo.js +++ b/test/parallel/test-crypto-getcipherinfo.js @@ -16,12 +16,12 @@ const ciphers = getCiphers(); assert.strictEqual(getCipherInfo(-1), undefined); assert.strictEqual(getCipherInfo('cipher that does not exist'), undefined); -ciphers.forEach((cipher) => { +for (const cipher of ciphers) { const info = getCipherInfo(cipher); assert(info); const info2 = getCipherInfo(info.nid); assert.deepStrictEqual(info, info2); -}); +} const info = getCipherInfo('aes-128-cbc'); assert.strictEqual(info.name, 'aes-128-cbc'); diff --git a/test/parallel/test-crypto-webcrypto-aes-decrypt-tag-too-small.js b/test/parallel/test-crypto-webcrypto-aes-decrypt-tag-too-small.js index 555876b3994e64..589a2f91a17cc2 100644 --- a/test/parallel/test-crypto-webcrypto-aes-decrypt-tag-too-small.js +++ b/test/parallel/test-crypto-webcrypto-aes-decrypt-tag-too-small.js @@ -16,7 +16,7 @@ subtle.importKey( }, false, [ 'encrypt', 'decrypt' ]) - .then((k) => { + .then((k) => assert.rejects(() => { return subtle.decrypt({ name: 'AES-GCM', @@ -25,5 +25,5 @@ subtle.importKey( }, { name: 'OperationError', message: /The provided data is too small/, - }); - }); + }) + ).then(common.mustCall()); diff --git a/test/parallel/test-dgram-socket-buffer-size.js b/test/parallel/test-dgram-socket-buffer-size.js index c03b8bf48b0221..fcc492a958215c 100644 --- a/test/parallel/test-dgram-socket-buffer-size.js +++ b/test/parallel/test-dgram-socket-buffer-size.js @@ -93,15 +93,14 @@ function getExpectedError(type) { const socket = dgram.createSocket('udp4'); socket.bind(common.mustCall(() => { - badBufferSizes.forEach((badBufferSize) => { + for (const badBufferSize of badBufferSizes) { assert.throws(() => { socket.setRecvBufferSize(badBufferSize); }, errorObj); - assert.throws(() => { socket.setSendBufferSize(badBufferSize); }, errorObj); - }); + } socket.close(); })); } diff --git a/test/parallel/test-directory-import.js b/test/parallel/test-directory-import.js index 83fd01f6a0f214..36ba5a9ac94d5f 100644 --- a/test/parallel/test-directory-import.js +++ b/test/parallel/test-directory-import.js @@ -1,14 +1,14 @@ 'use strict'; -require('../common'); +const common = require('../common'); const fixtures = require('../common/fixtures'); const assert = require('assert'); const { pathToFileURL } = require('url'); { - assert.rejects(import('./'), /ERR_UNSUPPORTED_DIR_IMPORT/); + assert.rejects(import('./'), /ERR_UNSUPPORTED_DIR_IMPORT/).then(common.mustCall()); assert.rejects( import(pathToFileURL(fixtures.path('packages', 'main'))), /Did you mean/, - ); + ).then(common.mustCall()); } diff --git a/test/parallel/test-dns-lookup.js b/test/parallel/test-dns-lookup.js index a847a91d655196..2ee4ff2929624f 100644 --- a/test/parallel/test-dns-lookup.js +++ b/test/parallel/test-dns-lookup.js @@ -205,4 +205,4 @@ tickValue = 1; // Should fail due to stub. assert.rejects(dnsPromises.lookup('example.com'), - { code: 'ENOMEM', hostname: 'example.com' }); + { code: 'ENOMEM', hostname: 'example.com' }).then(common.mustCall()); diff --git a/test/parallel/test-dns-lookupService-promises.js b/test/parallel/test-dns-lookupService-promises.js index 4052139c922389..7b8eefb068af50 100644 --- a/test/parallel/test-dns-lookupService-promises.js +++ b/test/parallel/test-dns-lookupService-promises.js @@ -16,4 +16,4 @@ dnsPromises.lookupService('127.0.0.1', 22).then(common.mustCall((result) => { assert.rejects( () => dnsPromises.lookupService('192.0.2.1', 22), { code: /^(?:ENOTFOUND|EAI_AGAIN)$/ } -); +).then(common.mustCall()); diff --git a/test/parallel/test-dns-lookupService.js b/test/parallel/test-dns-lookupService.js index dc04893c28f9fd..aa29b1978f8a86 100644 --- a/test/parallel/test-dns-lookupService.js +++ b/test/parallel/test-dns-lookupService.js @@ -32,4 +32,4 @@ assert.rejects( message: 'getnameinfo ENOENT 127.0.0.1', syscall: 'getnameinfo' } -); +).then(common.mustCall()); diff --git a/test/parallel/test-dns-memory-error.js b/test/parallel/test-dns-memory-error.js index 29907fb1dbfd5e..c95715f80a735c 100644 --- a/test/parallel/test-dns-memory-error.js +++ b/test/parallel/test-dns-memory-error.js @@ -11,6 +11,8 @@ const errors = require('internal/errors'); const { internalBinding } = require('internal/test/binding'); const { UV_EAI_MEMORY } = internalBinding('uv'); -const memoryError = errors.dnsException(UV_EAI_MEMORY, 'fhqwhgads'); +const memoryError = new errors.DNSException(UV_EAI_MEMORY, 'fhqwhgads'); assert.strictEqual(memoryError.code, 'EAI_MEMORY'); +const stack = memoryError.stack.split('\n'); +assert.match(stack[1], /^ {4}at Object/); diff --git a/test/parallel/test-dns-resolve-promises.js b/test/parallel/test-dns-resolve-promises.js index 783ed2a709edb6..298d9f667891a5 100644 --- a/test/parallel/test-dns-resolve-promises.js +++ b/test/parallel/test-dns-resolve-promises.js @@ -1,6 +1,6 @@ // Flags: --expose-internals 'use strict'; -require('../common'); +const common = require('../common'); const assert = require('assert'); const { internalBinding } = require('internal/test/binding'); const cares = internalBinding('cares_wrap'); @@ -17,4 +17,4 @@ assert.rejects( syscall: 'queryA', hostname: 'example.org' } -); +).then(common.mustCall()); diff --git a/test/parallel/test-dotenv-node-options.js b/test/parallel/test-dotenv-node-options.js index d35d1eeaeb33db..8c53616fd17d23 100644 --- a/test/parallel/test-dotenv-node-options.js +++ b/test/parallel/test-dotenv-node-options.js @@ -62,17 +62,4 @@ describe('.env supports NODE_OPTIONS', () => { assert.strictEqual(child.code, 0); }); - it('should update UV_THREADPOOL_SIZE', async () => { - const code = ` - require('assert').strictEqual(process.env.UV_THREADPOOL_SIZE, '5') - `.trim(); - const child = await common.spawnPromisified( - process.execPath, - [ `--env-file=${relativePath}`, '--eval', code ], - { cwd: __dirname }, - ); - assert.strictEqual(child.stderr, ''); - assert.strictEqual(child.code, 0); - }); - }); diff --git a/test/parallel/test-error-aggregateTwoErrors.js b/test/parallel/test-error-aggregateTwoErrors.js index 89224efd6b161f..2332437d990164 100644 --- a/test/parallel/test-error-aggregateTwoErrors.js +++ b/test/parallel/test-error-aggregateTwoErrors.js @@ -57,3 +57,15 @@ assert.strictEqual(aggregateTwoErrors(null, null), null); assert.strictEqual(chainedError.code, err0.code); assert.deepStrictEqual(chainedError.errors, [err0, err1]); } + +{ + const err0 = new Error('original'); + const err1 = new Error('second error'); + + err0.code = 'ERR0'; + err1.code = 'ERR1'; + + const chainedError = aggregateTwoErrors(null, aggregateTwoErrors(err1, err0)); + const stack = chainedError.stack.split('\n'); + assert.match(stack[1], /^ {4}at Object/); +} diff --git a/test/parallel/test-errors-hide-stack-frames.js b/test/parallel/test-errors-hide-stack-frames.js new file mode 100644 index 00000000000000..fdaeb96fad76bb --- /dev/null +++ b/test/parallel/test-errors-hide-stack-frames.js @@ -0,0 +1,242 @@ +// Flags: --expose-internals +'use strict'; + +require('../common'); +const { hideStackFrames, codes } = require('internal/errors'); +const { validateInteger } = require('internal/validators'); +const assert = require('assert'); + +{ + // Test that the a built-in error has the correct name and message. + function a() { + b(); + } + + function b() { + c(); + } + + const c = hideStackFrames(function() { + throw new Error('test'); + }); + + try { + a(); + } catch (e) { + assert.strictEqual(e.name, 'Error'); + assert.strictEqual(e.message, 'test'); + } +} + +{ + // Test that validator errors have the correct name and message. + try { + validateInteger('2', 'test'); + } catch (e) { + assert.strictEqual(e.name, 'TypeError'); + assert.strictEqual(e.message, 'The "test" argument must be of type number. Received type string (\'2\')'); + } +} + +{ + // Test that validator fn is not in the stack trace. + + function a(value) { + validateInteger(value, 'test'); + } + try { + a('2'); + } catch (e) { + assert.strictEqual(Error.stackTraceLimit, 10); + const stack = e.stack.split('\n'); + assert.doesNotMatch(stack[1], /validateInteger/); + assert.match(stack[1], /at a/); + } +} + +{ + // Test that the stack trace is hidden for normal unnamed functions. + function a() { + b(); + } + + function b() { + c(); + } + + const c = hideStackFrames(function() { + throw new Error('test'); + }); + + try { + a(); + } catch (e) { + assert.strictEqual(Error.stackTraceLimit, 10); + const stack = e.stack.split('\n'); + assert.doesNotMatch(stack[1], /at c/); + assert.match(stack[1], /at b/); + assert.strictEqual(Error.stackTraceLimit, 10); + } +} + +{ + // Test that the stack trace is hidden for normal functions. + function a() { + b(); + } + + function b() { + c(); + } + + const c = hideStackFrames(function c() { + throw new Error('test'); + }); + + try { + a(); + } catch (e) { + assert.strictEqual(Error.stackTraceLimit, 10); + const stack = e.stack.split('\n'); + assert.doesNotMatch(stack[1], /at c/); + assert.match(stack[1], /at b/); + assert.strictEqual(Error.stackTraceLimit, 10); + } +} + +{ + // Test that the stack trace is hidden for arrow functions. + function a() { + b(); + } + + function b() { + c(); + } + + const c = hideStackFrames(() => { + throw new Error('test'); + }); + + try { + a(); + } catch (e) { + assert.strictEqual(Error.stackTraceLimit, 10); + const stack = e.stack.split('\n'); + assert.doesNotMatch(stack[1], /at c/); + assert.match(stack[1], /at b/); + assert.strictEqual(Error.stackTraceLimit, 10); + } +} + +{ + // Creating a new Error object without stack trace, then throwing it + // should get a stack trace by hideStackFrames. + function a() { + b(); + } + + function b() { + c(); + } + + const c = hideStackFrames(function() { + throw new Error('test'); + }); + + try { + a(); + } catch (e) { + assert.strictEqual(Error.stackTraceLimit, 10); + const stack = e.stack.split('\n'); + assert.doesNotMatch(stack[1], /at c/); + assert.match(stack[1], /at b/); + assert.strictEqual(Error.stackTraceLimit, 10); + } +} + +{ + const ERR_ACCESS_DENIED = codes.ERR_ACCESS_DENIED; + // Creating a new Error object without stack trace, then throwing it + // should get a stack trace by hideStackFrames. + function a() { + b(); + } + + function b() { + c(); + } + + const c = hideStackFrames(function() { + throw new ERR_ACCESS_DENIED.NoStackError('test'); + }); + + try { + a(); + } catch (e) { + assert.strictEqual(Error.stackTraceLimit, 10); + const stack = e.stack.split('\n'); + assert.doesNotMatch(stack[1], /at c/); + assert.match(stack[1], /at b/); + assert.strictEqual(Error.stackTraceLimit, 10); + } +} + +{ + // Creating a new Error object with stack trace, then throwing it + // should get a stack trace by hideStackFrames. + function a() { + b(); + } + + const b = hideStackFrames(function b() { + c(); + }); + + const c = hideStackFrames(function() { + throw new Error('test'); + }); + + try { + a(); + } catch (e) { + assert.strictEqual(Error.stackTraceLimit, 10); + const stack = e.stack.split('\n'); + assert.match(stack[1], /at a/); + assert.strictEqual(Error.stackTraceLimit, 10); + } +} + +{ + // Binding passes the value of this to the wrapped function. + let called = false; + function a() { + b.bind({ key: 'value' })(); + } + + const b = hideStackFrames(function b() { + assert.strictEqual(this.key, 'value'); + called = true; + }); + + a(); + + assert.strictEqual(called, true); +} + +{ + // Binding passes the value of this to the withoutStackTrace function. + let called = false; + function a() { + b.withoutStackTrace.bind({ key: 'value' })(); + } + + const b = hideStackFrames(function b() { + assert.strictEqual(this.key, 'value'); + called = true; + }); + + a(); + + assert.strictEqual(called, true); +} diff --git a/test/parallel/test-event-emitter-error-monitor.js b/test/parallel/test-event-emitter-error-monitor.js index 2b22b425b29194..8254fc6254a7cd 100644 --- a/test/parallel/test-event-emitter-error-monitor.js +++ b/test/parallel/test-event-emitter-error-monitor.js @@ -25,7 +25,7 @@ EE.emit('error', theErr); // Verify it works with once process.nextTick(() => EE.emit('error', theErr)); -assert.rejects(EventEmitter.once(EE, 'notTriggered'), theErr); +assert.rejects(EventEmitter.once(EE, 'notTriggered'), theErr).then(common.mustCall()); // Only error events trigger error monitor EE.on('aEvent', common.mustCall()); diff --git a/test/parallel/test-event-target.js b/test/parallel/test-event-target.js new file mode 100644 index 00000000000000..12246b15ae859c --- /dev/null +++ b/test/parallel/test-event-target.js @@ -0,0 +1,21 @@ +'use strict'; + +require('../common'); +const assert = require('assert'); + +const eventPhases = { + 'NONE': 0, + 'CAPTURING_PHASE': 1, + 'AT_TARGET': 2, + 'BUBBLING_PHASE': 3 +}; + +for (const [prop, value] of Object.entries(eventPhases)) { + // Check if the value of the property matches the expected value + assert.strictEqual(Event[prop], value, `Expected Event.${prop} to be ${value}, but got ${Event[prop]}`); + + const desc = Object.getOwnPropertyDescriptor(Event, prop); + assert.strictEqual(desc.writable, false, `${prop} should not be writable`); + assert.strictEqual(desc.configurable, false, `${prop} should not be configurable`); + assert.strictEqual(desc.enumerable, true, `${prop} should be enumerable`); +} diff --git a/test/parallel/test-file-validate-mode-flag.js b/test/parallel/test-file-validate-mode-flag.js index bb9871ae318d5f..62a9ef2ca2a059 100644 --- a/test/parallel/test-file-validate-mode-flag.js +++ b/test/parallel/test-file-validate-mode-flag.js @@ -33,8 +33,8 @@ assert.throws(() => openSync(__filename, 0, invalid), { assert.rejects(openPromise(__filename, invalid), { code: 'ERR_OUT_OF_RANGE' -}); +}).then(common.mustCall()); assert.rejects(openPromise(__filename, 0, invalid), { code: 'ERR_OUT_OF_RANGE' -}); +}).then(common.mustCall()); diff --git a/test/parallel/test-filehandle-close.js b/test/parallel/test-filehandle-close.js index 457b06a486f90f..6e55f3f06d19e7 100644 --- a/test/parallel/test-filehandle-close.js +++ b/test/parallel/test-filehandle-close.js @@ -10,7 +10,7 @@ const fs = require('fs'); const fh = await fs.promises.open(__filename); fs.closeSync(fh.fd); - assert.rejects(() => fh.close(), { + await assert.rejects(() => fh.close(), { code: 'EBADF', syscall: 'close' }); diff --git a/test/parallel/test-fs-access.js b/test/parallel/test-fs-access.js index 5a8b85433eeefa..74e192816b0993 100644 --- a/test/parallel/test-fs-access.js +++ b/test/parallel/test-fs-access.js @@ -95,9 +95,13 @@ fs.promises.access(readOnlyFile, fs.constants.R_OK) assert.strictEqual(err.code, 'ENOENT'); assert.strictEqual(err.path, doesNotExist); }; + const expectedErrorPromise = (err) => { + expectedError(err); + assert.match(err.stack, /at async Object\.access/); + }; fs.access(doesNotExist, common.mustCall(expectedError)); fs.promises.access(doesNotExist) - .then(common.mustNotCall(), common.mustCall(expectedError)) + .then(common.mustNotCall(), common.mustCall(expectedErrorPromise)) .catch(throwNextTick); } diff --git a/test/parallel/test-fs-filehandle-use-after-close.js b/test/parallel/test-fs-filehandle-use-after-close.js index 7b99e41cd02284..18216b4f4154e6 100644 --- a/test/parallel/test-fs-filehandle-use-after-close.js +++ b/test/parallel/test-fs-filehandle-use-after-close.js @@ -16,7 +16,7 @@ const fs = require('fs').promises; // See https://github.com/nodejs/node/issues/31361 for more details. const otherFilehandle = await fs.open(process.execPath); - assert.rejects(() => filehandle.stat(), { + await assert.rejects(() => filehandle.stat(), { code: 'EBADF', syscall: 'fstat' }); diff --git a/test/parallel/test-fs-lchmod.js b/test/parallel/test-fs-lchmod.js index ae5cb3ba2a230a..877aea3376554d 100644 --- a/test/parallel/test-fs-lchmod.js +++ b/test/parallel/test-fs-lchmod.js @@ -42,7 +42,7 @@ assert.throws(() => fs.lchmod(f, {}), { code: 'ERR_INVALID_ARG_TYPE' }); code: 'ERR_INVALID_ARG_TYPE', }; - assert.rejects(promises.lchmod(f, input, () => {}), errObj); + assert.rejects(promises.lchmod(f, input, () => {}), errObj).then(common.mustCall()); assert.throws(() => fs.lchmodSync(f, input), errObj); }); @@ -61,6 +61,6 @@ assert.throws(() => fs.lchmodSync(f, '123x'), { `4294967295. Received ${input}` }; - assert.rejects(promises.lchmod(f, input, () => {}), errObj); + assert.rejects(promises.lchmod(f, input, () => {}), errObj).then(common.mustCall()); assert.throws(() => fs.lchmodSync(f, input), errObj); }); diff --git a/test/parallel/test-fs-open.js b/test/parallel/test-fs-open.js index 29580019db6f61..0855e521f7091f 100644 --- a/test/parallel/test-fs-open.js +++ b/test/parallel/test-fs-open.js @@ -94,7 +94,7 @@ for (const extra of [[], ['r'], ['r', 0], ['r', 0, 'bad callback']]) { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError' } - ); + ).then(common.mustCall()); }); // Check invalid modes. @@ -116,5 +116,5 @@ for (const extra of [[], ['r'], ['r', 0], ['r', 0, 'bad callback']]) { { code: 'ERR_INVALID_ARG_TYPE' } - ); + ).then(common.mustCall()); }); diff --git a/test/parallel/test-fs-promises-readfile.js b/test/parallel/test-fs-promises-readfile.js index 30305568f6e087..ccf7aa16b12e12 100644 --- a/test/parallel/test-fs-promises-readfile.js +++ b/test/parallel/test-fs-promises-readfile.js @@ -46,7 +46,7 @@ function validateReadFileAbortLogicBefore() { const signal = AbortSignal.abort(); assert.rejects(readFile(fn, { signal }), { name: 'AbortError' - }); + }).then(common.mustCall()); } function validateReadFileAbortLogicDuring() { @@ -55,7 +55,7 @@ function validateReadFileAbortLogicDuring() { process.nextTick(() => controller.abort()); assert.rejects(readFile(fn, { signal }), { name: 'AbortError' - }); + }).then(common.mustCall()); } async function validateWrongSignalParam() { @@ -72,7 +72,7 @@ async function validateWrongSignalParam() { async function validateZeroByteLiar() { const originalFStat = fsBinding.fstat; fsBinding.fstat = common.mustCall( - () => (/* stat fields */ [0, 1, 2, 3, 4, 5, 6, 7, 0 /* size */]) + async () => (/* stat fields */ [0, 1, 2, 3, 4, 5, 6, 7, 0 /* size */]) ); const readBuffer = await readFile(fn); assert.strictEqual(readBuffer.toString(), largeBuffer.toString()); diff --git a/test/parallel/test-fs-promises-watch.js b/test/parallel/test-fs-promises-watch.js index 780a0d2dfaaa1f..94ef7fcb2abe30 100644 --- a/test/parallel/test-fs-promises-watch.js +++ b/test/parallel/test-fs-promises-watch.js @@ -79,42 +79,42 @@ assert.rejects( // eslint-disable-next-line no-unused-vars, no-empty for await (const _ of watch(1)) { } }, - { code: 'ERR_INVALID_ARG_TYPE' }); + { code: 'ERR_INVALID_ARG_TYPE' }).then(common.mustCall()); assert.rejects( async () => { // eslint-disable-next-line no-unused-vars, no-empty for await (const _ of watch(__filename, 1)) { } }, - { code: 'ERR_INVALID_ARG_TYPE' }); + { code: 'ERR_INVALID_ARG_TYPE' }).then(common.mustCall()); assert.rejects( async () => { // eslint-disable-next-line no-unused-vars, no-empty for await (const _ of watch('', { persistent: 1 })) { } }, - { code: 'ERR_INVALID_ARG_TYPE' }); + { code: 'ERR_INVALID_ARG_TYPE' }).then(common.mustCall()); assert.rejects( async () => { // eslint-disable-next-line no-unused-vars, no-empty for await (const _ of watch('', { recursive: 1 })) { } }, - { code: 'ERR_INVALID_ARG_TYPE' }); + { code: 'ERR_INVALID_ARG_TYPE' }).then(common.mustCall()); assert.rejects( async () => { // eslint-disable-next-line no-unused-vars, no-empty for await (const _ of watch('', { encoding: 1 })) { } }, - { code: 'ERR_INVALID_ARG_VALUE' }); + { code: 'ERR_INVALID_ARG_VALUE' }).then(common.mustCall()); assert.rejects( async () => { // eslint-disable-next-line no-unused-vars, no-empty for await (const _ of watch('', { signal: 1 })) { } }, - { code: 'ERR_INVALID_ARG_TYPE' }); + { code: 'ERR_INVALID_ARG_TYPE' }).then(common.mustCall()); (async () => { const ac = new AbortController(); diff --git a/test/parallel/test-fs-promises.js b/test/parallel/test-fs-promises.js index c1e61040a98e3f..2dc0ae8cb44f6d 100644 --- a/test/parallel/test-fs-promises.js +++ b/test/parallel/test-fs-promises.js @@ -57,23 +57,24 @@ assert.strictEqual( { code: 'ENOENT', name: 'Error', - message: /^ENOENT: no such file or directory, access/ + message: /^ENOENT: no such file or directory, access/, + stack: /at async Function\.rejects/ } - ); + ).then(common.mustCall()); assert.rejects( access(__filename, 8), { code: 'ERR_OUT_OF_RANGE', } - ); + ).then(common.mustCall()); assert.rejects( access(__filename, { [Symbol.toPrimitive]() { return 5; } }), { code: 'ERR_INVALID_ARG_TYPE', } - ); + ).then(common.mustCall()); } function verifyStatObject(stat) { @@ -407,7 +408,7 @@ async function executeOnHandle(dest, func) { const dir = path.join(tmpDir, nextdir(), nextdir()); await mkdir(path.dirname(dir)); await writeFile(dir, ''); - assert.rejects( + await assert.rejects( mkdir(dir, { recursive: true }), { code: 'EEXIST', @@ -424,7 +425,7 @@ async function executeOnHandle(dest, func) { const dir = path.join(file, nextdir(), nextdir()); await mkdir(path.dirname(file)); await writeFile(file, ''); - assert.rejects( + await assert.rejects( mkdir(dir, { recursive: true }), { code: 'ENOTDIR', @@ -463,14 +464,14 @@ async function executeOnHandle(dest, func) { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError' } - ); + ).then(common.mustCall()); }); } // `mkdtemp` with invalid numeric prefix { await mkdtemp(path.resolve(tmpDir, 'FOO')); - assert.rejects( + await assert.rejects( // mkdtemp() expects to get a string prefix. async () => mkdtemp(1), { diff --git a/test/parallel/test-fs-read-empty-buffer.js b/test/parallel/test-fs-read-empty-buffer.js index 7ec5e5c186f5eb..6abfcb5aae69c2 100644 --- a/test/parallel/test-fs-read-empty-buffer.js +++ b/test/parallel/test-fs-read-empty-buffer.js @@ -37,5 +37,5 @@ assert.throws( message: 'The argument \'buffer\' is empty and cannot be written. ' + 'Received Uint8Array(0) []' } - ); + ).then(common.mustCall()); })().then(common.mustCall()); diff --git a/test/parallel/test-fs-realpath-buffer-encoding.js b/test/parallel/test-fs-realpath-buffer-encoding.js index 481e1b0df67f04..dbf2bda2c77d23 100644 --- a/test/parallel/test-fs-realpath-buffer-encoding.js +++ b/test/parallel/test-fs-realpath-buffer-encoding.js @@ -10,9 +10,9 @@ const buffer_dir = Buffer.from(string_dir); const encodings = ['ascii', 'utf8', 'utf16le', 'ucs2', 'base64', 'binary', 'hex']; const expected = {}; -encodings.forEach((encoding) => { +for (const encoding of encodings) { expected[encoding] = buffer_dir.toString(encoding); -}); +} // test sync version diff --git a/test/parallel/test-fs-timestamp-parsing-error.js b/test/parallel/test-fs-timestamp-parsing-error.js index 1fe0294f68b714..b3fd3e23dfcc35 100644 --- a/test/parallel/test-fs-timestamp-parsing-error.js +++ b/test/parallel/test-fs-timestamp-parsing-error.js @@ -3,7 +3,7 @@ require('../common'); const assert = require('assert'); const fs = require('fs'); -[Infinity, -Infinity, NaN].forEach((input) => { +for (const input of [Infinity, -Infinity, NaN]) { assert.throws( () => { fs._toUnixTimestamp(input); @@ -12,7 +12,7 @@ const fs = require('fs'); code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError' }); -}); +} assert.throws( () => { @@ -24,6 +24,6 @@ assert.throws( }); const okInputs = [1, -1, '1', '-1', Date.now()]; -okInputs.forEach((input) => { +for (const input of okInputs) { fs._toUnixTimestamp(input); -}); +} diff --git a/test/parallel/test-global.js b/test/parallel/test-global.js index 0a8fecd240c8a1..d31b1d97744ff8 100644 --- a/test/parallel/test-global.js +++ b/test/parallel/test-global.js @@ -30,7 +30,7 @@ const assert = require('assert'); const { builtinModules } = require('module'); // Load all modules to actually cover most code parts. -builtinModules.forEach((moduleName) => { +for (const moduleName of builtinModules) { if (!moduleName.includes('/')) { try { // This could throw for e.g., crypto if the binary is not compiled @@ -40,7 +40,7 @@ builtinModules.forEach((moduleName) => { // Continue regardless of error. } } -}); +} { const expected = [ diff --git a/test/parallel/test-http2-session-settings.js b/test/parallel/test-http2-session-settings.js index 571ee87d93768c..bcf78c6aa512a0 100644 --- a/test/parallel/test-http2-session-settings.js +++ b/test/parallel/test-http2-session-settings.js @@ -104,15 +104,15 @@ server.listen( ['maxHeaderListSize', 2 ** 32], ['maxHeaderSize', -1], ['maxHeaderSize', 2 ** 32], - ].forEach((i) => { + ].forEach(([key, value]) => { const settings = {}; - settings[i[0]] = i[1]; + settings[key] = value; assert.throws( () => client.settings(settings), { name: 'RangeError', code: 'ERR_HTTP2_INVALID_SETTING_VALUE', - message: `Invalid value for setting "${i[0]}": ${i[1]}` + message: `Invalid value for setting "${key}": ${value}` } ); }); diff --git a/test/parallel/test-http2-single-headers.js b/test/parallel/test-http2-single-headers.js index c10623b9be7bf0..36ad8c3b419f4e 100644 --- a/test/parallel/test-http2-single-headers.js +++ b/test/parallel/test-http2-single-headers.js @@ -27,7 +27,7 @@ server.on('stream', common.mustNotCall()); server.listen(0, common.mustCall(() => { const client = http2.connect(`http://localhost:${server.address().port}`); - singles.forEach((i) => { + for (const i of singles) { assert.throws( () => client.request({ [i]: 'abc', [i.toUpperCase()]: 'xyz' }), { @@ -45,7 +45,7 @@ server.listen(0, common.mustCall(() => { message: `Header field "${i}" must only have a single value` } ); - }); + } server.close(); client.close(); diff --git a/test/parallel/test-messagechannel.js b/test/parallel/test-messagechannel.js new file mode 100644 index 00000000000000..4f92924daa5048 --- /dev/null +++ b/test/parallel/test-messagechannel.js @@ -0,0 +1,12 @@ +'use strict'; + +const common = require('../common'); + +// See: https://github.com/nodejs/node/issues/49940 +(async () => { + new MessageChannel().port1.postMessage({}, { + transfer: { + *[Symbol.iterator]() {} + } + }); +})().then(common.mustCall()); diff --git a/test/parallel/test-navigator.js b/test/parallel/test-navigator.js index 24839301478a74..b280a047d1c410 100644 --- a/test/parallel/test-navigator.js +++ b/test/parallel/test-navigator.js @@ -1,7 +1,11 @@ +// Flags: --expose-internals + 'use strict'; -require('../common'); +const common = require('../common'); const assert = require('assert'); +const { getNavigatorPlatform } = require('internal/navigator'); +const { execFile } = require('child_process'); const is = { number: (value, key) => { @@ -15,3 +19,104 @@ is.number(navigator.hardwareConcurrency, 'hardwareConcurrency'); assert.ok(navigator.hardwareConcurrency > 0); assert.strictEqual(typeof navigator.userAgent, 'string'); assert.match(navigator.userAgent, /^Node\.js\/\d+$/); + +assert.strictEqual(typeof navigator.platform, 'string'); +if (process.platform === 'darwin') { + assert.strictEqual(navigator.platform, 'MacIntel'); +} else if (process.platform === 'win32') { + assert.strictEqual(navigator.platform, 'Win32'); +} else if (process.platform === 'linux' && process.arch === 'ia32') { + assert.strictEqual(navigator.platform, 'Linux i686'); +} else if (process.platform === 'linux' && process.arch === 'x64') { + assert.strictEqual(navigator.platform, 'Linux x86_64'); +} else if (process.platform === 'freebsd') { + if (process.arch === 'ia32') { + assert.strictEqual(navigator.platform, 'FreeBSD i386'); + } else if (process.arch === 'x64') { + assert.strictEqual(navigator.platform, 'FreeBSD amd64'); + } else { + assert.strictEqual(navigator.platform, `FreeBSD ${process.arch}`); + } +} else if (process.platform === 'openbsd') { + if (process.arch === 'ia32') { + assert.strictEqual(navigator.platform, 'OpenBSD i386'); + } else if (process.arch === 'x64') { + assert.strictEqual(navigator.platform, 'OpenBSD amd64'); + } else { + assert.strictEqual(navigator.platform, `OpenBSD ${process.arch}`); + } +} else if (process.platform === 'sunos') { + if (process.arch === 'ia32') { + assert.strictEqual(navigator.platform, 'SunOS i86pc'); + } else { + assert.strictEqual(navigator.platform, `SunOS ${process.arch}`); + } +} else if (process.platform === 'aix') { + assert.strictEqual(navigator.platform, 'AIX'); +} else { + assert.strictEqual(navigator.platform, `${process.platform[0].toUpperCase()}${process.platform.slice(1)} ${process.arch}`); +} + +assert.strictEqual(getNavigatorPlatform({ arch: 'x64', platform: 'darwin' }), 'MacIntel'); +assert.strictEqual(getNavigatorPlatform({ arch: 'arm64', platform: 'darwin' }), 'MacIntel'); +assert.strictEqual(getNavigatorPlatform({ arch: 'ia32', platform: 'linux' }), 'Linux i686'); +assert.strictEqual(getNavigatorPlatform({ arch: 'x64', platform: 'linux' }), 'Linux x86_64'); +assert.strictEqual(getNavigatorPlatform({ arch: 'arm64', platform: 'linux' }), 'Linux arm64'); +assert.strictEqual(getNavigatorPlatform({ arch: 'ia32', platform: 'win32' }), 'Win32'); +assert.strictEqual(getNavigatorPlatform({ arch: 'x64', platform: 'win32' }), 'Win32'); +assert.strictEqual(getNavigatorPlatform({ arch: 'arm64', platform: 'win32' }), 'Win32'); +assert.strictEqual(getNavigatorPlatform({ arch: 'ia32', platform: 'freebsd' }), 'FreeBSD i386'); +assert.strictEqual(getNavigatorPlatform({ arch: 'x64', platform: 'freebsd' }), 'FreeBSD amd64'); +assert.strictEqual(getNavigatorPlatform({ arch: 'arm64', platform: 'freebsd' }), 'FreeBSD arm64'); +assert.strictEqual(getNavigatorPlatform({ arch: 'ia32', platform: 'openbsd' }), 'OpenBSD i386'); +assert.strictEqual(getNavigatorPlatform({ arch: 'x64', platform: 'openbsd' }), 'OpenBSD amd64'); +assert.strictEqual(getNavigatorPlatform({ arch: 'arm64', platform: 'openbsd' }), 'OpenBSD arm64'); +assert.strictEqual(getNavigatorPlatform({ arch: 'ia32', platform: 'sunos' }), 'SunOS i86pc'); +assert.strictEqual(getNavigatorPlatform({ arch: 'x64', platform: 'sunos' }), 'SunOS x64'); +assert.strictEqual(getNavigatorPlatform({ arch: 'ppc', platform: 'aix' }), 'AIX'); +assert.strictEqual(getNavigatorPlatform({ arch: 'x64', platform: 'reactos' }), 'Reactos x64'); + +assert.strictEqual(typeof navigator.language, 'string'); +assert.strictEqual(navigator.language.length !== 0, true); + +assert.ok(Array.isArray(navigator.languages)); +assert.strictEqual(navigator.languages.length, 1); +assert.strictEqual(typeof navigator.languages[0], 'string'); +assert.strictEqual(navigator.languages[0].length !== 0, true); + +assert.throws(() => { + navigator.languages[0] = 'foo'; +}, new TypeError("Cannot assign to read only property '0' of object '[object Array]'")); +assert.notStrictEqual(navigator.languages[0], 'foo'); +assert.strictEqual(typeof navigator.languages[0] === 'string', true); +assert.strictEqual(navigator.languages[0].length !== 0, true); + +if (common.hasIntl && common.isWindows === false) { + const testLocale = navigator.language === 'de-DE' ? + 'en-US' : + 'de-DE'; + { + const env = { ...process.env, LC_ALL: testLocale }; + execFile( + process.execPath, + ['--print', `"process.exit(navigator.language === '${testLocale}' ? 0 : 1)"`], + { env }, + common.mustSucceed() + ); + } + + { + const env = { ...process.env, LC_ALL: testLocale }; + execFile( + process.execPath, + ['--print', `"process.exit(navigator.languages[0] === '${testLocale}' ? 0 : 1)"`], + { env }, + common.mustSucceed() + ); + } +} + +Object.defineProperty(navigator, 'language', { value: 'for-testing' }); +assert.strictEqual(navigator.language, 'for-testing'); +assert.strictEqual(navigator.languages.length, 1); +assert.strictEqual(navigator.languages[0] !== 'for-testing', true); diff --git a/test/parallel/test-performance-function.js b/test/parallel/test-performance-function.js index 5f774d6c2adcf5..b69a21308cf048 100644 --- a/test/parallel/test-performance-function.js +++ b/test/parallel/test-performance-function.js @@ -90,14 +90,20 @@ const { } (async () => { + let _deadCode; + const histogram = createHistogram(); - const m = (a, b = 1) => {}; + const m = (a, b = 1) => { + for (let i = 0; i < 1e3; i++) + _deadCode = i; + }; const n = performance.timerify(m, { histogram }); assert.strictEqual(histogram.max, 0); for (let i = 0; i < 10; i++) { n(); await sleep(10); } + assert.ok(_deadCode >= 0); assert.notStrictEqual(histogram.max, 0); [1, '', {}, [], false].forEach((histogram) => { assert.throws(() => performance.timerify(m, { histogram }), { diff --git a/test/parallel/test-process-versions.js b/test/parallel/test-process-versions.js index 31886093df8cc2..98dbda9ee8f20b 100644 --- a/test/parallel/test-process-versions.js +++ b/test/parallel/test-process-versions.js @@ -61,7 +61,7 @@ assert.match(process.versions.brotli, commonTemplate); assert.match(process.versions.llhttp, commonTemplate); assert.match(process.versions.node, commonTemplate); assert.match(process.versions.uv, commonTemplate); -assert.match(process.versions.zlib, /^\d+(?:\.\d+){2,3}(?:-.*)?$/); +assert.match(process.versions.zlib, /^\d+(?:\.\d+){1,3}(?:-.*)?$/); if (hasUndici) { assert.match(process.versions.undici, commonTemplate); @@ -75,13 +75,17 @@ assert.match(process.versions.modules, /^\d+$/); assert.match(process.versions.cjs_module_lexer, commonTemplate); if (common.hasCrypto) { - const versionRegex = common.hasOpenSSL3 ? - // The following also matches a development version of OpenSSL 3.x which - // can be in the format '3.0.0-alpha4-dev'. This can be handy when building - // and linking against the main development branch of OpenSSL. - /^\d+\.\d+\.\d+(?:[-+][a-z0-9]+)*$/ : - /^\d+\.\d+\.\d+[a-z]?(\+quic)?(-fips)?$/; - assert.match(process.versions.openssl, versionRegex); + if (process.config.variables.node_shared_openssl) { + assert.ok(process.versions.openssl); + } else { + const versionRegex = common.hasOpenSSL3 ? + // The following also matches a development version of OpenSSL 3.x which + // can be in the format '3.0.0-alpha4-dev'. This can be handy when + // building and linking against the main development branch of OpenSSL. + /^\d+\.\d+\.\d+(?:[-+][a-z0-9]+)*$/ : + /^\d+\.\d+\.\d+[a-z]?(\+quic)?(-fips)?$/; + assert.match(process.versions.openssl, versionRegex); + } } for (let i = 0; i < expected_keys.length; i++) { diff --git a/test/parallel/test-readline-interface.js b/test/parallel/test-readline-interface.js index b5ffb490fba0fa..a0946a370f4c11 100644 --- a/test/parallel/test-readline-interface.js +++ b/test/parallel/test-readline-interface.js @@ -44,7 +44,7 @@ class FakeInput extends EventEmitter { function isWarned(emitter) { for (const name in emitter) { const listeners = emitter[name]; - if (listeners.warned) return true; + if (listeners && listeners.warned) return true; } return false; } diff --git a/test/parallel/test-readline-keys.js b/test/parallel/test-readline-keys.js index 01757b302a7991..28b5846d4eb58f 100644 --- a/test/parallel/test-readline-keys.js +++ b/test/parallel/test-readline-keys.js @@ -34,9 +34,9 @@ function addTest(sequences, expectedKeys) { keys = []; - sequences.forEach((sequence) => { + for (const sequence of sequences) { fi.write(sequence); - }); + } assert.deepStrictEqual(keys, expectedKeys); } diff --git a/test/parallel/test-readline-promises-interface.js b/test/parallel/test-readline-promises-interface.js index 2a8c5aae4e3949..b7ce0c4ff20d9a 100644 --- a/test/parallel/test-readline-promises-interface.js +++ b/test/parallel/test-readline-promises-interface.js @@ -22,7 +22,7 @@ class FakeInput extends EventEmitter { function isWarned(emitter) { for (const name in emitter) { const listeners = emitter[name]; - if (listeners.warned) return true; + if (listeners && listeners.warned) return true; } return false; } diff --git a/test/parallel/test-runner-cli-timeout.js b/test/parallel/test-runner-cli-timeout.js new file mode 100644 index 00000000000000..b8998d397fa12c --- /dev/null +++ b/test/parallel/test-runner-cli-timeout.js @@ -0,0 +1,20 @@ +'use strict'; +require('../common'); +const fixtures = require('../common/fixtures'); +const assert = require('node:assert'); +const { spawnSync } = require('node:child_process'); +const { test } = require('node:test'); +const cwd = fixtures.path('test-runner', 'default-behavior'); +const env = { ...process.env, 'NODE_DEBUG': 'test_runner' }; + +test('default timeout -- Infinity', async () => { + const args = ['--test']; + const cp = spawnSync(process.execPath, args, { cwd, env }); + assert.match(cp.stderr.toString(), /timeout: Infinity,/); +}); + +test('timeout of 10ms', async () => { + const args = ['--test', '--test-timeout', 10]; + const cp = spawnSync(process.execPath, args, { cwd, env }); + assert.match(cp.stderr.toString(), /timeout: 10,/); +}); diff --git a/test/parallel/test-runner-cli.js b/test/parallel/test-runner-cli.js index 34ce67caa5e6a5..ab6078a4a05d74 100644 --- a/test/parallel/test-runner-cli.js +++ b/test/parallel/test-runner-cli.js @@ -104,7 +104,7 @@ const testFixtures = fixtures.path('test-runner'); ['--print', 'console.log("should not print")', '--test'], ]; - flags.forEach((args) => { + for (const args of flags) { const child = spawnSync(process.execPath, args); assert.notStrictEqual(child.status, 0); @@ -112,7 +112,7 @@ const testFixtures = fixtures.path('test-runner'); assert.strictEqual(child.stdout.toString(), ''); const stderr = child.stderr.toString(); assert.match(stderr, /--test/); - }); + } } { diff --git a/test/parallel/test-runner-mock-timers.js b/test/parallel/test-runner-mock-timers.js index 3a2203091337c6..fae520b94cdf67 100644 --- a/test/parallel/test-runner-mock-timers.js +++ b/test/parallel/test-runner-mock-timers.js @@ -11,7 +11,7 @@ describe('Mock Timers Test Suite', () => { describe('MockTimers API', () => { it('should throw an error if trying to enable a timer that is not supported', (t) => { assert.throws(() => { - t.mock.timers.enable(['DOES_NOT_EXIST']); + t.mock.timers.enable({ apis: ['DOES_NOT_EXIST'] }); }, { code: 'ERR_INVALID_ARG_VALUE', }); @@ -46,6 +46,7 @@ describe('Mock Timers Test Suite', () => { code: 'ERR_INVALID_ARG_VALUE', }); }); + it('should check that propertyDescriptor gets back after resetting timers', (t) => { const getDescriptor = (ctx, fn) => Object.getOwnPropertyDescriptor(ctx, fn); const getCurrentTimersDescriptors = () => { @@ -107,6 +108,7 @@ describe('Mock Timers Test Suite', () => { const fn = t.mock.fn(); global.setTimeout(fn, 1000); t.mock.timers.reset(); + assert.deepStrictEqual(Date.now, globalThis.Date.now); assert.throws(() => { t.mock.timers.tick(1000); }, { @@ -166,14 +168,34 @@ describe('Mock Timers Test Suite', () => { assert.strictEqual(timeoutFn.mock.callCount(), 1); assert.strictEqual(intervalFn.mock.callCount(), 1); }); - }); + it('should increase the epoch as the tick run for runAll', async (t) => { + const timeoutFn = t.mock.fn(); + const intervalFn = t.mock.fn(); + + t.mock.timers.enable(); + global.setTimeout(timeoutFn, 1111); + const id = global.setInterval(intervalFn, 9999); + t.mock.timers.runAll(); + + global.clearInterval(id); + assert.strictEqual(timeoutFn.mock.callCount(), 1); + assert.strictEqual(intervalFn.mock.callCount(), 1); + assert.strictEqual(Date.now(), 9999); + }); + + it('should not error if there are not timers to run', (t) => { + t.mock.timers.enable(); + t.mock.timers.runAll(); + // Should not throw + }); + }); }); describe('globals/timers', () => { describe('setTimeout Suite', () => { it('should advance in time and trigger timers when calling the .tick function', (t) => { - mock.timers.enable(['setTimeout']); + mock.timers.enable({ apis: ['setTimeout'] }); const fn = mock.fn(); @@ -185,7 +207,7 @@ describe('Mock Timers Test Suite', () => { }); it('should advance in time and trigger timers when calling the .tick function multiple times', (t) => { - t.mock.timers.enable(['setTimeout']); + t.mock.timers.enable({ apis: ['setTimeout'] }); const fn = t.mock.fn(); global.setTimeout(fn, 2000); @@ -199,7 +221,7 @@ describe('Mock Timers Test Suite', () => { }); it('should work with the same params as the original setTimeout', (t) => { - t.mock.timers.enable(['setTimeout']); + t.mock.timers.enable({ apis: ['setTimeout'] }); const fn = t.mock.fn(); const args = ['a', 'b', 'c']; global.setTimeout(fn, 2000, ...args); @@ -221,12 +243,11 @@ describe('Mock Timers Test Suite', () => { done(); }), timeout); }); - }); describe('clearTimeout Suite', () => { it('should not advance in time if clearTimeout was invoked', (t) => { - t.mock.timers.enable(['setTimeout']); + t.mock.timers.enable({ apis: ['setTimeout'] }); const fn = mock.fn(); @@ -240,7 +261,7 @@ describe('Mock Timers Test Suite', () => { describe('setInterval Suite', () => { it('should tick three times using fake setInterval', (t) => { - t.mock.timers.enable(['setInterval']); + t.mock.timers.enable({ apis: ['setInterval'] }); const fn = t.mock.fn(); const id = global.setInterval(fn, 200); @@ -255,7 +276,7 @@ describe('Mock Timers Test Suite', () => { }); it('should work with the same params as the original setInterval', (t) => { - t.mock.timers.enable(['setInterval']); + t.mock.timers.enable({ apis: ['setInterval'] }); const fn = t.mock.fn(); const args = ['a', 'b', 'c']; const id = global.setInterval(fn, 200, ...args); @@ -270,13 +291,12 @@ describe('Mock Timers Test Suite', () => { assert.deepStrictEqual(fn.mock.calls[0].arguments, args); assert.deepStrictEqual(fn.mock.calls[1].arguments, args); assert.deepStrictEqual(fn.mock.calls[2].arguments, args); - }); }); describe('clearInterval Suite', () => { it('should not advance in time if clearInterval was invoked', (t) => { - t.mock.timers.enable(['setInterval']); + t.mock.timers.enable({ apis: ['setInterval'] }); const fn = mock.fn(); const id = global.setInterval(fn, 200); @@ -299,7 +319,7 @@ describe('Mock Timers Test Suite', () => { }); it('should work with the same params as the original setImmediate', (t) => { - t.mock.timers.enable(['setImmediate']); + t.mock.timers.enable({ apis: ['setImmediate'] }); const fn = t.mock.fn(); const args = ['a', 'b', 'c']; global.setImmediate(fn, ...args); @@ -310,7 +330,7 @@ describe('Mock Timers Test Suite', () => { }); it('should not advance in time if clearImmediate was invoked', (t) => { - t.mock.timers.enable(['setImmediate']); + t.mock.timers.enable({ apis: ['setImmediate'] }); const id = global.setImmediate(common.mustNotCall()); global.clearImmediate(id); @@ -318,13 +338,13 @@ describe('Mock Timers Test Suite', () => { }); it('should advance in time and trigger timers when calling the .tick function', (t) => { - t.mock.timers.enable(['setImmediate']); + t.mock.timers.enable({ apis: ['setImmediate'] }); global.setImmediate(common.mustCall(1)); t.mock.timers.tick(0); }); it('should execute in order if setImmediate is called multiple times', (t) => { - t.mock.timers.enable(['setImmediate']); + t.mock.timers.enable({ apis: ['setImmediate'] }); const order = []; const fn1 = t.mock.fn(common.mustCall(() => order.push('f1'), 1)); const fn2 = t.mock.fn(common.mustCall(() => order.push('f2'), 1)); @@ -338,7 +358,7 @@ describe('Mock Timers Test Suite', () => { }); it('should execute setImmediate first if setTimeout was also called', (t) => { - t.mock.timers.enable(['setImmediate', 'setTimeout']); + t.mock.timers.enable({ apis: ['setImmediate', 'setTimeout'] }); const order = []; const fn1 = t.mock.fn(common.mustCall(() => order.push('f1'), 1)); const fn2 = t.mock.fn(common.mustCall(() => order.push('f2'), 1)); @@ -351,524 +371,376 @@ describe('Mock Timers Test Suite', () => { assert.deepStrictEqual(order, ['f1', 'f2']); }); }); - }); - - describe('timers Suite', () => { - describe('setTimeout Suite', () => { - it('should advance in time and trigger timers when calling the .tick function multiple times', (t) => { - t.mock.timers.enable(['setTimeout']); - const fn = t.mock.fn(); - const { setTimeout } = nodeTimers; - setTimeout(fn, 2000); - - t.mock.timers.tick(1000); - t.mock.timers.tick(500); - t.mock.timers.tick(500); - - assert.strictEqual(fn.mock.callCount(), 1); - }); - - it('should work with the same params as the original timers.setTimeout', (t) => { - t.mock.timers.enable(['setTimeout']); - const fn = t.mock.fn(); - const { setTimeout } = nodeTimers; - const args = ['a', 'b', 'c']; - setTimeout(fn, 2000, ...args); - - t.mock.timers.tick(1000); - t.mock.timers.tick(500); - t.mock.timers.tick(500); - - assert.strictEqual(fn.mock.callCount(), 1); - assert.deepStrictEqual(fn.mock.calls[0].arguments, args); - }); - }); - - describe('clearTimeout Suite', () => { - it('should not advance in time if clearTimeout was invoked', (t) => { - t.mock.timers.enable(['setTimeout']); - - const fn = mock.fn(); - const { setTimeout, clearTimeout } = nodeTimers; - const id = setTimeout(fn, 2000); - clearTimeout(id); - t.mock.timers.tick(2000); - - assert.strictEqual(fn.mock.callCount(), 0); - }); - }); - - describe('setInterval Suite', () => { - it('should tick three times using fake setInterval', (t) => { - t.mock.timers.enable(['setInterval']); - const fn = t.mock.fn(); - - const id = nodeTimers.setInterval(fn, 200); - - t.mock.timers.tick(200); - t.mock.timers.tick(200); - t.mock.timers.tick(200); - t.mock.timers.tick(200); - - nodeTimers.clearInterval(id); - - assert.strictEqual(fn.mock.callCount(), 4); - }); - - it('should work with the same params as the original timers.setInterval', (t) => { - t.mock.timers.enable(['setInterval']); - const fn = t.mock.fn(); - const args = ['a', 'b', 'c']; - const id = nodeTimers.setInterval(fn, 200, ...args); - - t.mock.timers.tick(200); - t.mock.timers.tick(200); - t.mock.timers.tick(200); - t.mock.timers.tick(200); - - nodeTimers.clearInterval(id); - - assert.strictEqual(fn.mock.callCount(), 4); - assert.deepStrictEqual(fn.mock.calls[0].arguments, args); - assert.deepStrictEqual(fn.mock.calls[1].arguments, args); - assert.deepStrictEqual(fn.mock.calls[2].arguments, args); - assert.deepStrictEqual(fn.mock.calls[3].arguments, args); - - }); - }); - describe('clearInterval Suite', () => { - it('should not advance in time if clearInterval was invoked', (t) => { - t.mock.timers.enable(['setInterval']); + describe('timers/promises', () => { + describe('setTimeout Suite', () => { + it('should advance in time and trigger timers when calling the .tick function multiple times', async (t) => { + t.mock.timers.enable({ apis: ['setTimeout'] }); - const fn = mock.fn(); - const { setInterval, clearInterval } = nodeTimers; - const id = setInterval(fn, 200); - clearInterval(id); - t.mock.timers.tick(200); + const p = nodeTimersPromises.setTimeout(2000); - assert.strictEqual(fn.mock.callCount(), 0); - }); - }); + t.mock.timers.tick(1000); + t.mock.timers.tick(500); + t.mock.timers.tick(500); + t.mock.timers.tick(500); - describe('setImmediate Suite', () => { - it('should keep setImmediate working if timers are disabled', (t, done) => { - const now = Date.now(); - const timeout = 2; - const expected = () => now - timeout; - nodeTimers.setImmediate(common.mustCall(() => { - assert.strictEqual(now - timeout, expected()); - done(); - }, 1)); - }); - - it('should work with the same params as the original setImmediate', (t) => { - t.mock.timers.enable(['setImmediate']); - const fn = t.mock.fn(); - const args = ['a', 'b', 'c']; - nodeTimers.setImmediate(fn, ...args); - t.mock.timers.tick(9999); - - assert.strictEqual(fn.mock.callCount(), 1); - assert.deepStrictEqual(fn.mock.calls[0].arguments, args); - }); - - it('should not advance in time if clearImmediate was invoked', (t) => { - t.mock.timers.enable(['setImmediate']); - - const id = nodeTimers.setImmediate(common.mustNotCall()); - nodeTimers.clearImmediate(id); - t.mock.timers.tick(200); - }); - - it('should advance in time and trigger timers when calling the .tick function', (t) => { - t.mock.timers.enable(['setImmediate']); - nodeTimers.setImmediate(common.mustCall(1)); - t.mock.timers.tick(0); - }); - - it('should execute in order if setImmediate is called multiple times', (t) => { - t.mock.timers.enable(['setImmediate']); - const order = []; - const fn1 = t.mock.fn(common.mustCall(() => order.push('f1'), 1)); - const fn2 = t.mock.fn(common.mustCall(() => order.push('f2'), 1)); - - nodeTimers.setImmediate(fn1); - nodeTimers.setImmediate(fn2); - - t.mock.timers.tick(0); - - assert.deepStrictEqual(order, ['f1', 'f2']); - }); - - it('should execute setImmediate first if setTimeout was also called', (t) => { - t.mock.timers.enable(['setImmediate', 'setTimeout']); - const order = []; - const fn1 = t.mock.fn(common.mustCall(() => order.push('f1'), 1)); - const fn2 = t.mock.fn(common.mustCall(() => order.push('f2'), 1)); - - nodeTimers.setTimeout(fn2, 0); - nodeTimers.setImmediate(fn1); - - t.mock.timers.tick(100); - - assert.deepStrictEqual(order, ['f1', 'f2']); - }); - }); - }); - - describe('timers/promises', () => { - describe('setTimeout Suite', () => { - it('should advance in time and trigger timers when calling the .tick function multiple times', async (t) => { - t.mock.timers.enable(['setTimeout']); - - const p = nodeTimersPromises.setTimeout(2000); - - t.mock.timers.tick(1000); - t.mock.timers.tick(500); - t.mock.timers.tick(500); - t.mock.timers.tick(500); - - p.then(common.mustCall((result) => { - assert.strictEqual(result, undefined); - })); - }); - - it('should work with the same params as the original timers/promises/setTimeout', async (t) => { - t.mock.timers.enable(['setTimeout']); - const expectedResult = 'result'; - const controller = new AbortController(); - const p = nodeTimersPromises.setTimeout(2000, expectedResult, { - ref: true, - signal: controller.signal + p.then(common.mustCall((result) => { + assert.strictEqual(result, undefined); + })); }); - t.mock.timers.tick(1000); - t.mock.timers.tick(500); - t.mock.timers.tick(500); - t.mock.timers.tick(500); - - const result = await p; - assert.strictEqual(result, expectedResult); - }); - - it('should abort operation if timers/promises/setTimeout received an aborted signal', async (t) => { - t.mock.timers.enable(['setTimeout']); - const expectedResult = 'result'; - const controller = new AbortController(); - const p = nodeTimersPromises.setTimeout(2000, expectedResult, { - ref: true, - signal: controller.signal + it('should work with the same params as the original timers/promises/setTimeout', async (t) => { + t.mock.timers.enable({ apis: ['setTimeout'] }); + const expectedResult = 'result'; + const controller = new AbortController(); + const p = nodeTimersPromises.setTimeout(2000, expectedResult, { + ref: true, + signal: controller.signal, + }); + + t.mock.timers.tick(1000); + t.mock.timers.tick(500); + t.mock.timers.tick(500); + t.mock.timers.tick(500); + + const result = await p; + assert.strictEqual(result, expectedResult); }); - t.mock.timers.tick(1000); - controller.abort(); - t.mock.timers.tick(500); - t.mock.timers.tick(500); - t.mock.timers.tick(500); - await assert.rejects(() => p, { - name: 'AbortError', + it('should always return the same result as the original timers/promises/setTimeout', async (t) => { + t.mock.timers.enable({ apis: ['setTimeout'] }); + for (const expectedResult of [undefined, null, false, true, 0, 0n, 1, 1n, '', 'result', {}]) { + const p = nodeTimersPromises.setTimeout(2000, expectedResult); + t.mock.timers.tick(2000); + const result = await p; + assert.strictEqual(result, expectedResult); + } }); - }); - it('should abort operation even if the .tick wasn\'t called', async (t) => { - t.mock.timers.enable(['setTimeout']); - const expectedResult = 'result'; - const controller = new AbortController(); - const p = nodeTimersPromises.setTimeout(2000, expectedResult, { - ref: true, - signal: controller.signal + it('should abort operation if timers/promises/setTimeout received an aborted signal', async (t) => { + t.mock.timers.enable({ apis: ['setTimeout'] }); + const expectedResult = 'result'; + const controller = new AbortController(); + const p = nodeTimersPromises.setTimeout(2000, expectedResult, { + ref: true, + signal: controller.signal, + }); + + t.mock.timers.tick(1000); + controller.abort(); + t.mock.timers.tick(500); + t.mock.timers.tick(500); + t.mock.timers.tick(500); + await assert.rejects(() => p, { + name: 'AbortError', + }); }); - - controller.abort(); - - await assert.rejects(() => p, { - name: 'AbortError', + it('should abort operation even if the .tick was not called', async (t) => { + t.mock.timers.enable({ apis: ['setTimeout'] }); + const expectedResult = 'result'; + const controller = new AbortController(); + const p = nodeTimersPromises.setTimeout(2000, expectedResult, { + ref: true, + signal: controller.signal, + }); + + controller.abort(); + + await assert.rejects(() => p, { + name: 'AbortError', + }); }); - }); - - it('should abort operation when .abort is called before calling setTimeout', async (t) => { - t.mock.timers.enable(['setTimeout']); - const expectedResult = 'result'; - const controller = new AbortController(); - controller.abort(); - const p = nodeTimersPromises.setTimeout(2000, expectedResult, { - ref: true, - signal: controller.signal + it('should abort operation when .abort is called before calling setInterval', async (t) => { + t.mock.timers.enable({ apis: ['setTimeout'] }); + const expectedResult = 'result'; + const controller = new AbortController(); + controller.abort(); + const p = nodeTimersPromises.setTimeout(2000, expectedResult, { + ref: true, + signal: controller.signal, + }); + + await assert.rejects(() => p, { + name: 'AbortError', + }); }); - await assert.rejects(() => p, { - name: 'AbortError', + it('should reject given an an invalid signal instance', async (t) => { + t.mock.timers.enable({ apis: ['setTimeout'] }); + const expectedResult = 'result'; + const p = nodeTimersPromises.setTimeout(2000, expectedResult, { + ref: true, + signal: {}, + }); + + await assert.rejects(() => p, { + name: 'TypeError', + code: 'ERR_INVALID_ARG_TYPE', + }); }); - }); - it('should reject given an an invalid signal instance', async (t) => { - t.mock.timers.enable(['setTimeout']); - const expectedResult = 'result'; - const p = nodeTimersPromises.setTimeout(2000, expectedResult, { - ref: true, - signal: {} - }); + describe('setInterval Suite', () => { + it('should tick three times using fake setInterval', async (t) => { + t.mock.timers.enable({ apis: ['setInterval'] }); - await assert.rejects(() => p, { - name: 'TypeError', - code: 'ERR_INVALID_ARG_TYPE' - }); + const interval = 100; + const intervalIterator = nodeTimersPromises.setInterval(interval, Date.now()); - }); - }); + const first = intervalIterator.next(); + const second = intervalIterator.next(); + const third = intervalIterator.next(); - describe('setInterval Suite', () => { - it('should tick three times using fake setInterval', async (t) => { - t.mock.timers.enable(['setInterval']); - - const interval = 100; - const intervalIterator = nodeTimersPromises.setInterval(interval, Date.now()); - - const first = intervalIterator.next(); - const second = intervalIterator.next(); - const third = intervalIterator.next(); - - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); - const results = await Promise.all([ - first, - second, - third, - ]); - - const finished = await intervalIterator.return(); - assert.deepStrictEqual(finished, { done: true, value: undefined }); - - results.forEach((result) => { - assert.strictEqual(typeof result.value, 'number'); - assert.strictEqual(result.done, false); - }); - - }); - it('should tick five times testing a real use case', async (t) => { - - t.mock.timers.enable(['setInterval']); - - const expectedIterations = 5; - const interval = 1000; - const startedAt = Date.now(); - async function run() { - const times = []; - for await (const time of nodeTimersPromises.setInterval(interval, startedAt)) { - times.push(time); - if (times.length === expectedIterations) break; + const results = await Promise.all([ + first, + second, + third, + ]); + const finished = await intervalIterator.return(); + assert.deepStrictEqual(finished, { done: true, value: undefined }); + for (const result of results) { + assert.strictEqual(typeof result.value, 'number'); + assert.strictEqual(result.done, false); } - return times; - } - - const r = run(); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - - const timeResults = await r; - assert.strictEqual(timeResults.length, expectedIterations); - for (let it = 1; it < expectedIterations; it++) { - assert.strictEqual(timeResults[it - 1], startedAt + (interval * it)); - } - }); - - it('should abort operation given an abort controller signal', async (t) => { - t.mock.timers.enable(['setInterval']); - - const interval = 100; - const abortController = new AbortController(); - const intervalIterator = nodeTimersPromises.setInterval(interval, Date.now(), { - signal: abortController.signal - }); - - const first = intervalIterator.next(); - const second = intervalIterator.next(); - - t.mock.timers.tick(interval); - abortController.abort(); - t.mock.timers.tick(interval); - - const firstResult = await first; - // Interval * 2 because value can be a little bit greater than interval - assert.ok(firstResult.value < Date.now() + interval * 2); - assert.strictEqual(firstResult.done, false); - - await assert.rejects(() => second, { - name: 'AbortError', - }); - - }); - - it('should abort operation when .abort is called before calling setInterval', async (t) => { - t.mock.timers.enable(['setInterval']); - - const interval = 100; - const abortController = new AbortController(); - abortController.abort(); - const intervalIterator = nodeTimersPromises.setInterval(interval, Date.now(), { - signal: abortController.signal }); + it('should tick five times testing a real use case', async (t) => { + t.mock.timers.enable({ apis: ['setInterval'] }); + + const expectedIterations = 5; + const interval = 1000; + let time = 0; + async function run() { + const times = []; + for await (const _ of nodeTimersPromises.setInterval(interval)) { // eslint-disable-line no-unused-vars + time += interval; + times.push(time); + if (times.length === expectedIterations) break; + } + return times; + } - const first = intervalIterator.next(); - t.mock.timers.tick(interval); - - await assert.rejects(() => first, { - name: 'AbortError', + const r = run(); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + + const timeResults = await r; + assert.strictEqual(timeResults.length, expectedIterations); + for (let it = 1; it < expectedIterations; it++) { + assert.strictEqual(timeResults[it - 1], interval * it); + } }); - }); - it('should abort operation given an abort controller signal on a real use case', async (t) => { - t.mock.timers.enable(['setInterval']); - const controller = new AbortController(); - const signal = controller.signal; - const interval = 200; - const expectedIterations = 2; - const startedAt = Date.now(); - const timeResults = []; - async function run() { - const it = nodeTimersPromises.setInterval(interval, startedAt, { signal }); - for await (const time of it) { - timeResults.push(time); - if (timeResults.length === 5) break; + it('should always return the same result as the original timers/promises/setInterval', async (t) => { + t.mock.timers.enable({ apis: ['setInterval'] }); + for (const expectedResult of [undefined, null, false, true, 0, 0n, 1, 1n, '', 'result', {}]) { + const intervalIterator = nodeTimersPromises.setInterval(2000, expectedResult); + const p = intervalIterator.next(); + t.mock.timers.tick(2000); + const result = await p; + await intervalIterator.return(); + assert.strictEqual(result.done, false); + assert.strictEqual(result.value, expectedResult); } - } - - const r = run(); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - controller.abort(); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - t.mock.timers.tick(interval); - - await assert.rejects(() => r, { - name: 'AbortError', }); - assert.strictEqual(timeResults.length, expectedIterations); - for (let it = 1; it < expectedIterations; it++) { - assert.strictEqual(timeResults[it - 1], startedAt + (interval * it)); - } + it('should abort operation given an abort controller signal', async (t) => { + t.mock.timers.enable({ apis: ['setInterval'] }); - }); + const interval = 100; + const abortController = new AbortController(); + const intervalIterator = nodeTimersPromises.setInterval(interval, Date.now(), { + signal: abortController.signal, + }); - }); + const first = intervalIterator.next(); + const second = intervalIterator.next(); - describe('setImmediate Suite', () => { - it('should advance in time and trigger timers when calling the .tick function multiple times', (t, done) => { - t.mock.timers.enable(['setImmediate']); - const p = nodeTimersPromises.setImmediate(); + t.mock.timers.tick(interval); + abortController.abort(); + t.mock.timers.tick(interval); - t.mock.timers.tick(5555); + const firstResult = await first; + // Interval * 2 because value can be a little bit greater than interval + assert.ok(firstResult.value < Date.now() + interval * 2); + assert.strictEqual(firstResult.done, false); - p.then(common.mustCall((result) => { - assert.strictEqual(result, undefined); - done(); - }, 1)); - }); - - it('should work with the same params as the original timers/promises/setImmediate', async (t) => { - t.mock.timers.enable(['setImmediate']); - const expectedResult = 'result'; - const controller = new AbortController(); - const p = nodeTimersPromises.setImmediate(expectedResult, { - ref: true, - signal: controller.signal + await assert.rejects(() => second, { + name: 'AbortError', + }); }); - t.mock.timers.tick(500); - - const result = await p; - assert.strictEqual(result, expectedResult); - }); + it('should abort operation when .abort is called before calling setInterval', async (t) => { + t.mock.timers.enable({ apis: ['setInterval'] }); - it('should abort operation if timers/promises/setImmediate received an aborted signal', async (t) => { - t.mock.timers.enable(['setImmediate']); - const expectedResult = 'result'; - const controller = new AbortController(); - const p = nodeTimersPromises.setImmediate(expectedResult, { - ref: true, - signal: controller.signal - }); - - controller.abort(); - t.mock.timers.tick(0); + const interval = 100; + const abortController = new AbortController(); + abortController.abort(); + const intervalIterator = nodeTimersPromises.setInterval(interval, Date.now(), { + signal: abortController.signal, + }); - await assert.rejects(() => p, { - name: 'AbortError', - }); + const first = intervalIterator.next(); + t.mock.timers.tick(interval); - }); - it('should abort operation even if the .tick wasn\'t called', async (t) => { - t.mock.timers.enable(['setImmediate']); - const expectedResult = 'result'; - const controller = new AbortController(); - const p = nodeTimersPromises.setImmediate(expectedResult, { - ref: true, - signal: controller.signal + await assert.rejects(() => first, { + name: 'AbortError', + }); }); - controller.abort(); + it('should abort operation given an abort controller signal on a real use case', async (t) => { + t.mock.timers.enable({ apis: ['setInterval'] }); + const controller = new AbortController(); + const signal = controller.signal; + const interval = 200; + const expectedIterations = 2; + let numIterations = 0; + async function run() { + const it = nodeTimersPromises.setInterval(interval, undefined, { signal }); + for await (const _ of it) { // eslint-disable-line no-unused-vars + numIterations += 1; + if (numIterations === 5) break; + } + } - await assert.rejects(() => p, { - name: 'AbortError', + const r = run(); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + controller.abort(); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + t.mock.timers.tick(interval); + + await assert.rejects(() => r, { + name: 'AbortError', + }); + assert.strictEqual(numIterations, expectedIterations); }); }); + }); + }); - it('should abort operation when .abort is called before calling setImmediate', async (t) => { - t.mock.timers.enable(['setImmediate']); - const expectedResult = 'result'; - const controller = new AbortController(); - controller.abort(); - const p = nodeTimersPromises.setImmediate(expectedResult, { - ref: true, - signal: controller.signal - }); + describe('Date Suite', () => { + it('should return the initial UNIX epoch if not specified', (t) => { + t.mock.timers.enable({ apis: ['Date'] }); + const date = new Date(); + assert.strictEqual(date.getTime(), 0); + assert.strictEqual(Date.now(), 0); + }); - await assert.rejects(() => p, { - name: 'AbortError', - }); + it('should throw an error if setTime is called without enabling timers', (t) => { + assert.throws( + () => { + t.mock.timers.setTime(100); + }, + { code: 'ERR_INVALID_STATE' } + ); + }); - }); + it('should throw an error if epoch passed to enable is not valid', (t) => { + assert.throws( + () => { + t.mock.timers.enable({ now: -1 }); + }, + { code: 'ERR_INVALID_ARG_VALUE' } + ); + + assert.throws( + () => { + t.mock.timers.enable({ now: 'string' }); + }, + { code: 'ERR_INVALID_ARG_TYPE' } + ); + + assert.throws( + () => { + t.mock.timers.enable({ now: NaN }); + }, + { code: 'ERR_INVALID_ARG_VALUE' } + ); + }); - it('should reject given an an invalid signal instance', async (t) => { - t.mock.timers.enable(['setImmediate']); - const expectedResult = 'result'; - const p = nodeTimersPromises.setImmediate(expectedResult, { - ref: true, - signal: {} - }); + it('should replace the original Date with the mocked one', (t) => { + t.mock.timers.enable({ apis: ['Date'] }); + assert.ok(Date.isMock); + }); - await assert.rejects(() => p, { - name: 'TypeError', - code: 'ERR_INVALID_ARG_TYPE' - }); + it('should return the ticked time when calling Date.now after tick', (t) => { + t.mock.timers.enable({ apis: ['Date'] }); + const time = 100; + t.mock.timers.tick(time); + assert.strictEqual(Date.now(), time); + }); - }); + it('should return the Date as string when calling it as a function', (t) => { + t.mock.timers.enable({ apis: ['Date'] }); + const returned = Date(); + // Matches the format: 'Mon Jan 01 1970 00:00:00' + // We don't care about the date, just the format + assert.ok(/\w{3}\s\w{3}\s\d{1,2}\s\d{2,4}\s\d{1,2}:\d{2}:\d{2}/.test(returned)); + }); - it('should execute in order if setImmediate is called multiple times', async (t) => { - t.mock.timers.enable(['setImmediate']); + it('should return the date with different argument calls', (t) => { + t.mock.timers.enable({ apis: ['Date'] }); + assert.strictEqual(new Date(0).getTime(), 0); + assert.strictEqual(new Date(100).getTime(), 100); + assert.strictEqual(new Date('1970-01-01T00:00:00.000Z').getTime(), 0); + assert.strictEqual(new Date(1970, 0).getFullYear(), 1970); + assert.strictEqual(new Date(1970, 0).getMonth(), 0); + assert.strictEqual(new Date(1970, 0, 1).getDate(), 1); + assert.strictEqual(new Date(1970, 0, 1, 11).getHours(), 11); + assert.strictEqual(new Date(1970, 0, 1, 11, 10).getMinutes(), 10); + assert.strictEqual(new Date(1970, 0, 1, 11, 10, 45).getSeconds(), 45); + assert.strictEqual(new Date(1970, 0, 1, 11, 10, 45, 898).getMilliseconds(), 898); + assert.strictEqual(new Date(1970, 0, 1, 11, 10, 45, 898).toDateString(), 'Thu Jan 01 1970'); + }); - const p1 = nodeTimersPromises.setImmediate('fn1'); - const p2 = nodeTimersPromises.setImmediate('fn2'); + it('should return native code when calling Date.toString', (t) => { + t.mock.timers.enable({ apis: ['Date'] }); + assert.strictEqual(Date.toString(), 'function Date() { [native code] }'); + }); - t.mock.timers.tick(0); + it('should start with a custom epoch if the second argument is specified', (t) => { + t.mock.timers.enable({ apis: ['Date'], now: 100 }); + const date1 = new Date(); + assert.strictEqual(date1.getTime(), 100); - const results = await Promise.race([p1, p2]); + t.mock.timers.reset(); + t.mock.timers.enable({ apis: ['Date'], now: new Date(200) }); + const date2 = new Date(); + assert.strictEqual(date2.getTime(), 200); + }); - assert.strictEqual(results, 'fn1'); - }); + it('should replace epoch if setTime is lesser than now and not tick', (t) => { + t.mock.timers.enable(); + const fn = t.mock.fn(); + const id = setTimeout(fn, 1000); + t.mock.timers.setTime(800); + assert.strictEqual(Date.now(), 800); + t.mock.timers.setTime(500); + assert.strictEqual(Date.now(), 500); + assert.strictEqual(fn.mock.callCount(), 0); + clearTimeout(id); + }); + + it('should not tick time when setTime is called', (t) => { + t.mock.timers.enable(); + const fn = t.mock.fn(); + const id = setTimeout(fn, 1000); + t.mock.timers.setTime(1200); + assert.strictEqual(Date.now(), 1200); + assert.strictEqual(fn.mock.callCount(), 0); + clearTimeout(id); }); }); }); diff --git a/test/parallel/test-runner-output.mjs b/test/parallel/test-runner-output.mjs index 372ca8f3bae0ff..0e41ff101b843f 100644 --- a/test/parallel/test-runner-output.mjs +++ b/test/parallel/test-runner-output.mjs @@ -40,6 +40,23 @@ function replaceTestLocationLine(str) { return str.replaceAll(/(js:)(\d+)(:\d+)/g, '$1(LINE)$3'); } +// The Node test coverage returns results for all files called by the test. This +// will make the output file change if files like test/common/index.js change. +// This transform picks only the first line and then the lines from the test +// file. +function pickTestFileFromLcov(str) { + const lines = str.split(/\n/); + const firstLineOfTestFile = lines.findIndex( + (line) => line.startsWith('SF:') && line.trim().endsWith('output.js') + ); + const lastLineOfTestFile = lines.findIndex( + (line, index) => index > firstLineOfTestFile && line.trim() === 'end_of_record' + ); + return ( + lines[0] + '\n' + lines.slice(firstLineOfTestFile, lastLineOfTestFile + 1).join('\n') + '\n' + ); +} + const defaultTransform = snapshot.transform( snapshot.replaceWindowsLineEndings, snapshot.replaceStackTrace, @@ -59,6 +76,14 @@ const junitTransform = snapshot.transform( snapshot.replaceWindowsLineEndings, snapshot.replaceStackTrace, ); +const lcovTransform = snapshot.transform( + snapshot.replaceWindowsLineEndings, + snapshot.replaceStackTrace, + snapshot.replaceFullPaths, + snapshot.replaceWindowsPaths, + pickTestFileFromLcov +); + const tests = [ { name: 'test-runner/output/abort.js' }, @@ -67,6 +92,7 @@ const tests = [ { name: 'test-runner/output/describe_it.js' }, { name: 'test-runner/output/describe_nested.js' }, { name: 'test-runner/output/hooks.js' }, + { name: 'test-runner/output/hooks_spec_reporter.js', transform: specTransform }, { name: 'test-runner/output/timeout_in_before_each_should_not_affect_further_tests.js' }, { name: 'test-runner/output/hooks-with-no-global-test.js' }, { name: 'test-runner/output/before-and-after-each-too-many-listeners.js' }, @@ -80,6 +106,7 @@ const tests = [ { name: 'test-runner/output/spec_reporter_successful.js', transform: specTransform }, { name: 'test-runner/output/spec_reporter.js', transform: specTransform }, { name: 'test-runner/output/spec_reporter_cli.js', transform: specTransform }, + process.features.inspector ? { name: 'test-runner/output/lcov_reporter.js', transform: lcovTransform } : false, { name: 'test-runner/output/output.js' }, { name: 'test-runner/output/output_cli.js' }, { name: 'test-runner/output/name_pattern.js' }, diff --git a/test/parallel/test-runner-run.mjs b/test/parallel/test-runner-run.mjs index 0d7aa346409647..911f115e5fb6a4 100644 --- a/test/parallel/test-runner-run.mjs +++ b/test/parallel/test-runner-run.mjs @@ -176,6 +176,17 @@ describe('require(\'node:test\').run', { concurrency: true }, () => { }); describe('AbortSignal', () => { + it('should accept a signal', async () => { + const stream = run({ signal: AbortSignal.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); + }); + it('should stop watch mode when abortSignal aborts', async () => { const controller = new AbortController(); const result = await run({ diff --git a/test/parallel/test-stream-buffer-list.js b/test/parallel/test-stream-buffer-list.js deleted file mode 100644 index d9d0405f4d5a45..00000000000000 --- a/test/parallel/test-stream-buffer-list.js +++ /dev/null @@ -1,84 +0,0 @@ -// Flags: --expose-internals -'use strict'; -require('../common'); -const assert = require('assert'); -const BufferList = require('internal/streams/buffer_list'); - -// Test empty buffer list. -const emptyList = new BufferList(); - -emptyList.shift(); -assert.deepStrictEqual(emptyList, new BufferList()); - -assert.strictEqual(emptyList.join(','), ''); - -assert.deepStrictEqual(emptyList.concat(0), Buffer.alloc(0)); - -const buf = Buffer.from('foo'); - -function testIterator(list, count) { - // test iterator - let len = 0; - // eslint-disable-next-line no-unused-vars - for (const x of list) { - len++; - } - assert.strictEqual(len, count); -} - -// Test buffer list with one element. -const list = new BufferList(); -testIterator(list, 0); - -list.push(buf); -testIterator(list, 1); -for (const x of list) { - assert.strictEqual(x, buf); -} - -const copy = list.concat(3); -testIterator(copy, 3); - -assert.notStrictEqual(copy, buf); -assert.deepStrictEqual(copy, buf); - -assert.strictEqual(list.join(','), 'foo'); - -const shifted = list.shift(); -testIterator(list, 0); -assert.strictEqual(shifted, buf); -assert.deepStrictEqual(list, new BufferList()); - -{ - const list = new BufferList(); - list.push('foo'); - list.push('bar'); - list.push('foo'); - list.push('bar'); - assert.strictEqual(list.consume(6, true), 'foobar'); - assert.strictEqual(list.consume(6, true), 'foobar'); -} - -{ - const list = new BufferList(); - list.push('foo'); - list.push('bar'); - assert.strictEqual(list.consume(5, true), 'fooba'); -} - -{ - const list = new BufferList(); - list.push(buf); - list.push(buf); - list.push(buf); - list.push(buf); - assert.strictEqual(list.consume(6).toString(), 'foofoo'); - assert.strictEqual(list.consume(6).toString(), 'foofoo'); -} - -{ - const list = new BufferList(); - list.push(buf); - list.push(buf); - assert.strictEqual(list.consume(5).toString(), 'foofo'); -} diff --git a/test/parallel/test-stream-consumers.js b/test/parallel/test-stream-consumers.js index 4abd0f842e82bf..883d55dc6f02fb 100644 --- a/test/parallel/test-stream-consumers.js +++ b/test/parallel/test-stream-consumers.js @@ -114,7 +114,7 @@ const kArrayBuffer = writer.close(); }, 10); - assert.rejects(blob(readable), { code: 'ERR_INVALID_STATE' }); + assert.rejects(blob(readable), { code: 'ERR_INVALID_STATE' }).then(common.mustCall()); } { @@ -132,7 +132,7 @@ const kArrayBuffer = writer.close(); }, 10); - assert.rejects(arrayBuffer(readable), { code: 'ERR_INVALID_STATE' }); + assert.rejects(arrayBuffer(readable), { code: 'ERR_INVALID_STATE' }).then(common.mustCall()); } { @@ -150,7 +150,7 @@ const kArrayBuffer = writer.close(); }, 10); - assert.rejects(text(readable), { code: 'ERR_INVALID_STATE' }); + assert.rejects(text(readable), { code: 'ERR_INVALID_STATE' }).then(common.mustCall()); } { @@ -168,7 +168,7 @@ const kArrayBuffer = writer.close(); }, 10); - assert.rejects(json(readable), { code: 'ERR_INVALID_STATE' }); + assert.rejects(json(readable), { code: 'ERR_INVALID_STATE' }).then(common.mustCall()); } { @@ -227,7 +227,7 @@ const kArrayBuffer = assert.rejects(text(stream), { code: 'ERR_INVALID_ARG_TYPE', - }); + }).then(common.mustCall()); stream.write({}); stream.end({}); @@ -241,7 +241,7 @@ const kArrayBuffer = assert.rejects(json(stream), { code: 'ERR_INVALID_ARG_TYPE', - }); + }).then(common.mustCall()); stream.write({}); stream.end({}); diff --git a/test/parallel/test-stream-readable-destroy.js b/test/parallel/test-stream-readable-destroy.js index a62beb27961816..fb7da632f7b057 100644 --- a/test/parallel/test-stream-readable-destroy.js +++ b/test/parallel/test-stream-readable-destroy.js @@ -318,7 +318,7 @@ const assert = require('assert'); assert.rejects((async () => { // eslint-disable-next-line no-unused-vars, no-empty for await (const chunk of read) { } - })(), /AbortError/); + })(), /AbortError/).then(common.mustCall()); setTimeout(() => controller.abort(), 0); } diff --git a/test/parallel/test-stream-reduce.js b/test/parallel/test-stream-reduce.js index 56271c5e232627..4cee2b5d71513b 100644 --- a/test/parallel/test-stream-reduce.js +++ b/test/parallel/test-stream-reduce.js @@ -119,10 +119,10 @@ function sum(p, c) { { // Error cases - assert.rejects(() => Readable.from([]).reduce(1), /TypeError/); - assert.rejects(() => Readable.from([]).reduce('5'), /TypeError/); - assert.rejects(() => Readable.from([]).reduce((x, y) => x + y, 0, 1), /ERR_INVALID_ARG_TYPE/); - assert.rejects(() => Readable.from([]).reduce((x, y) => x + y, 0, { signal: true }), /ERR_INVALID_ARG_TYPE/); + assert.rejects(() => Readable.from([]).reduce(1), /TypeError/).then(common.mustCall()); + assert.rejects(() => Readable.from([]).reduce('5'), /TypeError/).then(common.mustCall()); + assert.rejects(() => Readable.from([]).reduce((x, y) => x + y, 0, 1), /ERR_INVALID_ARG_TYPE/).then(common.mustCall()); + assert.rejects(() => Readable.from([]).reduce((x, y) => x + y, 0, { signal: true }), /ERR_INVALID_ARG_TYPE/).then(common.mustCall()); } { diff --git a/test/parallel/test-stream-uint8array.js b/test/parallel/test-stream-uint8array.js index 38a45d54048967..f1de4c873fd3a8 100644 --- a/test/parallel/test-stream-uint8array.js +++ b/test/parallel/test-stream-uint8array.js @@ -38,7 +38,7 @@ const GHI = new Uint8Array([0x47, 0x48, 0x49]); assert(!(chunk instanceof Buffer)); assert(chunk instanceof Uint8Array); assert.strictEqual(chunk, ABC); - assert.strictEqual(encoding, 'utf8'); + assert.strictEqual(encoding, undefined); cb(); }) }); diff --git a/test/parallel/test-stream2-readable-from-list.js b/test/parallel/test-stream2-readable-from-list.js deleted file mode 100644 index d5d113304e4925..00000000000000 --- a/test/parallel/test-stream2-readable-from-list.js +++ /dev/null @@ -1,101 +0,0 @@ -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. - -// Flags: --expose-internals -'use strict'; -require('../common'); -const assert = require('assert'); -const fromList = require('stream').Readable._fromList; -const BufferList = require('internal/streams/buffer_list'); -const util = require('util'); - -function bufferListFromArray(arr) { - const bl = new BufferList(); - for (let i = 0; i < arr.length; ++i) - bl.push(arr[i]); - return bl; -} - -{ - // Verify behavior with buffers - let list = [ Buffer.from('foog'), - Buffer.from('bark'), - Buffer.from('bazy'), - Buffer.from('kuel') ]; - list = bufferListFromArray(list); - - assert.strictEqual( - util.inspect([ list ], { compact: false }), - `[ - BufferList { - head: [Object], - tail: [Object], - length: 4 - } -]`); - - // Read more than the first element. - let ret = fromList(6, { buffer: list, length: 16 }); - assert.strictEqual(ret.toString(), 'foogba'); - - // Read exactly the first element. - ret = fromList(2, { buffer: list, length: 10 }); - assert.strictEqual(ret.toString(), 'rk'); - - // Read less than the first element. - ret = fromList(2, { buffer: list, length: 8 }); - assert.strictEqual(ret.toString(), 'ba'); - - // Read more than we have. - ret = fromList(100, { buffer: list, length: 6 }); - assert.strictEqual(ret.toString(), 'zykuel'); - - // all consumed. - assert.deepStrictEqual(list, new BufferList()); -} - -{ - // Verify behavior with strings - let list = [ 'foog', - 'bark', - 'bazy', - 'kuel' ]; - list = bufferListFromArray(list); - - // Read more than the first element. - let ret = fromList(6, { buffer: list, length: 16, decoder: true }); - assert.strictEqual(ret, 'foogba'); - - // Read exactly the first element. - ret = fromList(2, { buffer: list, length: 10, decoder: true }); - assert.strictEqual(ret, 'rk'); - - // Read less than the first element. - ret = fromList(2, { buffer: list, length: 8, decoder: true }); - assert.strictEqual(ret, 'ba'); - - // Read more than we have. - ret = fromList(100, { buffer: list, length: 6, decoder: true }); - assert.strictEqual(ret, 'zykuel'); - - // all consumed. - assert.deepStrictEqual(list, new BufferList()); -} diff --git a/test/parallel/test-structuredClone-global.js b/test/parallel/test-structuredClone-global.js index 95dab1e8e8963b..7a4d85b6c177f0 100644 --- a/test/parallel/test-structuredClone-global.js +++ b/test/parallel/test-structuredClone-global.js @@ -1,23 +1,28 @@ -// Flags: --expose-internals 'use strict'; -/* eslint-disable no-global-assign */ require('../common'); +const assert = require('assert'); -const { - structuredClone: _structuredClone, -} = require('internal/structured_clone'); +assert.throws(() => structuredClone(), { code: 'ERR_MISSING_ARGS' }); +assert.throws(() => structuredClone(undefined, ''), { code: 'ERR_INVALID_ARG_TYPE' }); +assert.throws(() => structuredClone(undefined, 1), { code: 'ERR_INVALID_ARG_TYPE' }); +assert.throws(() => structuredClone(undefined, { transfer: 1 }), { code: 'ERR_INVALID_ARG_TYPE' }); +assert.throws(() => structuredClone(undefined, { transfer: '' }), { code: 'ERR_INVALID_ARG_TYPE' }); -const { - strictEqual, - throws, -} = require('assert'); +// Options can be null or undefined. +assert.strictEqual(structuredClone(undefined), undefined); +assert.strictEqual(structuredClone(undefined, null), undefined); +// Transfer can be null or undefined. +assert.strictEqual(structuredClone(undefined, { transfer: null }), undefined); +assert.strictEqual(structuredClone(undefined, { }), undefined); -strictEqual(globalThis.structuredClone, _structuredClone); -structuredClone = undefined; -strictEqual(globalThis.structuredClone, undefined); +{ + // See: https://github.com/nodejs/node/issues/49940 + const cloned = structuredClone({}, { + transfer: { + *[Symbol.iterator]() {} + } + }); -// Restore the value for the known globals check. -structuredClone = _structuredClone; - -throws(() => _structuredClone(), /ERR_MISSING_ARGS/); + assert.deepStrictEqual(cloned, {}); +} diff --git a/test/parallel/test-tls-snicallback-error.js b/test/parallel/test-tls-snicallback-error.js index 1e1c82225309b4..aac7cb9f96704a 100644 --- a/test/parallel/test-tls-snicallback-error.js +++ b/test/parallel/test-tls-snicallback-error.js @@ -4,11 +4,21 @@ if (!common.hasCrypto) common.skip('missing crypto'); const assert = require('assert'); +const net = require('net'); const tls = require('tls'); -['fhqwhgads', 42, {}, []].forEach((testValue) => { - assert.throws( - () => { tls.createServer({ SNICallback: testValue }); }, - { code: 'ERR_INVALID_ARG_TYPE', message: /\boptions\.SNICallback\b/ } - ); -}); +for (const SNICallback of ['fhqwhgads', 42, {}, []]) { + assert.throws(() => { + tls.createServer({ SNICallback }); + }, { + code: 'ERR_INVALID_ARG_TYPE', + name: 'TypeError', + }); + + assert.throws(() => { + new tls.TLSSocket(new net.Socket(), { isServer: true, SNICallback }); + }, { + code: 'ERR_INVALID_ARG_TYPE', + name: 'TypeError', + }); +} diff --git a/test/parallel/test-trace-events-http.js b/test/parallel/test-trace-events-http.js index bcdc897e2ff136..07a6b28fa5b273 100644 --- a/test/parallel/test-trace-events-http.js +++ b/test/parallel/test-trace-events-http.js @@ -31,12 +31,12 @@ proc.once('exit', common.mustCall(() => { const traces = JSON.parse(data.toString()).traceEvents; assert(traces.length > 0); let count = 0; - traces.forEach((trace) => { + for (const trace of traces) { if (trace.cat === 'node,node.http' && ['http.server.request', 'http.client.request'].includes(trace.name)) { count++; } - }); + } // Two begin, two end assert.strictEqual(count, 4); })); diff --git a/test/parallel/test-util-callbackify.js b/test/parallel/test-util-callbackify.js index 444e10b16bf85a..f287c91e946217 100644 --- a/test/parallel/test-util-callbackify.js +++ b/test/parallel/test-util-callbackify.js @@ -225,6 +225,7 @@ const values = [ const errLines = stderr.trim().split(/[\r\n]+/); const errLine = errLines.find((l) => /^Error/.exec(l)); assert.strictEqual(errLine, `Error: ${fixture}`); + assert.strictEqual(errLines.length, 7); }) ); } @@ -279,3 +280,20 @@ const values = [ }); }); } + +{ + // Test Promise factory + function promiseFn(value) { + return Promise.reject(value); + } + + const cbPromiseFn = callbackify(promiseFn); + + cbPromiseFn(null, (err) => { + assert.strictEqual(err.message, 'Promise was rejected with falsy value'); + assert.strictEqual(err.code, 'ERR_FALSY_VALUE_REJECTION'); + assert.strictEqual(err.reason, null); + const stack = err.stack.split(/[\r\n]+/); + assert.match(stack[1], /at process\.processTicksAndRejections/); + }); +} diff --git a/test/parallel/test-uv-unmapped-exception.js b/test/parallel/test-uv-unmapped-exception.js index 0b63461dd25dee..02a52062228ab5 100644 --- a/test/parallel/test-uv-unmapped-exception.js +++ b/test/parallel/test-uv-unmapped-exception.js @@ -2,10 +2,10 @@ 'use strict'; require('../common'); const assert = require('assert'); -const { uvException, uvExceptionWithHostPort } = require('internal/errors'); +const { UVException, UVExceptionWithHostPort } = require('internal/errors'); { - const exception = uvException({ errno: 100, syscall: 'open' }); + const exception = new UVException({ errno: 100, syscall: 'open' }); assert.strictEqual(exception.message, 'UNKNOWN: unknown error, open'); assert.strictEqual(exception.errno, 100); @@ -14,7 +14,7 @@ const { uvException, uvExceptionWithHostPort } = require('internal/errors'); } { - const exception = uvExceptionWithHostPort(100, 'listen', '127.0.0.1', 80); + const exception = new UVExceptionWithHostPort(100, 'listen', '127.0.0.1', 80); assert.strictEqual(exception.message, 'listen UNKNOWN: unknown error 127.0.0.1:80'); diff --git a/test/parallel/test-vm-module-cached-data.js b/test/parallel/test-vm-module-cached-data.js index f91d9e62688dc5..fef68a8c18903d 100644 --- a/test/parallel/test-vm-module-cached-data.js +++ b/test/parallel/test-vm-module-cached-data.js @@ -2,7 +2,7 @@ // Flags: --experimental-vm-modules -require('../common'); +const common = require('../common'); const assert = require('assert'); const { SourceTextModule } = require('vm'); @@ -27,4 +27,4 @@ assert.rejects(async () => { m.createCachedData(); }, { code: 'ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA', -}); +}).then(common.mustCall()); diff --git a/test/parallel/test-vm-module-dynamic-import.js b/test/parallel/test-vm-module-dynamic-import.js index b74d3b28d7a547..bd542ca9202513 100644 --- a/test/parallel/test-vm-module-dynamic-import.js +++ b/test/parallel/test-vm-module-dynamic-import.js @@ -40,7 +40,7 @@ async function test() { }); const result = s.runInThisContext(); - assert.strictEqual(foo.namespace, await result); + assert.strictEqual(await result, foo.namespace); } { @@ -53,7 +53,7 @@ async function test() { }); await m.link(common.mustNotCall()); await m.evaluate(); - assert.strictEqual(foo.namespace, await globalThis.fooResult); + assert.strictEqual(await globalThis.fooResult, foo.namespace); delete globalThis.fooResult; } @@ -68,7 +68,7 @@ async function test() { }); const result = s.runInThisContext(); - assert.strictEqual(foo.namespace, await result); + assert.strictEqual(await result, foo.namespace); } } diff --git a/test/parallel/test-vm-module-referrer-realm.mjs b/test/parallel/test-vm-module-referrer-realm.mjs new file mode 100644 index 00000000000000..3957f147d8ee99 --- /dev/null +++ b/test/parallel/test-vm-module-referrer-realm.mjs @@ -0,0 +1,70 @@ +// Flags: --experimental-vm-modules +import * as common from '../common/index.mjs'; +import assert from 'node:assert'; +import { Script, SourceTextModule, createContext } from 'node:vm'; + +async function test() { + const foo = new SourceTextModule('export const a = 1;'); + await foo.link(common.mustNotCall()); + await foo.evaluate(); + + const ctx = createContext({}, { + importModuleDynamically: common.mustCall((specifier, wrap) => { + assert.strictEqual(specifier, 'foo'); + assert.strictEqual(wrap, ctx); + return foo; + }, 2), + }); + { + const s = new Script('Promise.resolve("import(\'foo\')").then(eval)', { + importModuleDynamically: common.mustNotCall(), + }); + + const result = s.runInContext(ctx); + assert.strictEqual(await result, foo.namespace); + } + + { + const m = new SourceTextModule('globalThis.fooResult = Promise.resolve("import(\'foo\')").then(eval)', { + context: ctx, + importModuleDynamically: common.mustNotCall(), + }); + await m.link(common.mustNotCall()); + await m.evaluate(); + assert.strictEqual(await ctx.fooResult, foo.namespace); + delete ctx.fooResult; + } +} + +async function testMissing() { + const ctx = createContext({}); + { + const s = new Script('Promise.resolve("import(\'foo\')").then(eval)', { + importModuleDynamically: common.mustNotCall(), + }); + + const result = s.runInContext(ctx); + await assert.rejects(result, { + code: 'ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING', + }); + } + + { + const m = new SourceTextModule('globalThis.fooResult = Promise.resolve("import(\'foo\')").then(eval)', { + context: ctx, + importModuleDynamically: common.mustNotCall(), + }); + await m.link(common.mustNotCall()); + await m.evaluate(); + + await assert.rejects(ctx.fooResult, { + code: 'ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING', + }); + delete ctx.fooResult; + } +} + +await Promise.all([ + test(), + testMissing(), +]).then(common.mustCall()); diff --git a/test/parallel/test-vm-timeout-escape-promise-module.js b/test/parallel/test-vm-timeout-escape-promise-module.js index 0687b3b3c81f57..4b0169a7789db4 100644 --- a/test/parallel/test-vm-timeout-escape-promise-module.js +++ b/test/parallel/test-vm-timeout-escape-promise-module.js @@ -39,4 +39,4 @@ assert.rejects(async () => { }, { code: 'ERR_SCRIPT_EXECUTION_TIMEOUT', message: 'Script execution timed out after 5ms' -}); +}).then(common.mustCall()); diff --git a/test/parallel/test-webcrypto-export-import-cfrg.js b/test/parallel/test-webcrypto-export-import-cfrg.js index ad7e78df83e987..85a1319fa8cab4 100644 --- a/test/parallel/test-webcrypto-export-import-cfrg.js +++ b/test/parallel/test-webcrypto-export-import-cfrg.js @@ -366,11 +366,11 @@ async function testImportRaw({ name, publicUsages }) { 'spki', rsaPublic.export({ format: 'der', type: 'spki' }), { name }, - true, publicUsages), { message: /Invalid key type/ }); + true, publicUsages), { message: /Invalid key type/ }).then(common.mustCall()); assert.rejects(subtle.importKey( 'pkcs8', rsaPrivate.export({ format: 'der', type: 'pkcs8' }), { name }, - true, privateUsages), { message: /Invalid key type/ }); + true, privateUsages), { message: /Invalid key type/ }).then(common.mustCall()); } } diff --git a/test/parallel/test-webcrypto-export-import-rsa.js b/test/parallel/test-webcrypto-export-import-rsa.js index c18abf9832f365..fb79184afd6e12 100644 --- a/test/parallel/test-webcrypto-export-import-rsa.js +++ b/test/parallel/test-webcrypto-export-import-rsa.js @@ -565,11 +565,11 @@ const testVectors = [ 'spki', ecPublic.export({ format: 'der', type: 'spki' }), { name, hash: 'SHA-256' }, - true, [publicUsage]), { message: /Invalid key type/ }); + true, [publicUsage]), { message: /Invalid key type/ }).then(common.mustCall()); assert.rejects(subtle.importKey( 'pkcs8', ecPrivate.export({ format: 'der', type: 'pkcs8' }), { name, hash: 'SHA-256' }, - true, [privateUsage]), { message: /Invalid key type/ }); + true, [privateUsage]), { message: /Invalid key type/ }).then(common.mustCall()); } } diff --git a/test/parallel/test-webstream-readablestream-pipeto.js b/test/parallel/test-webstream-readablestream-pipeto.js index 95929c5197a275..ef952e30c0867d 100644 --- a/test/parallel/test-webstream-readablestream-pipeto.js +++ b/test/parallel/test-webstream-readablestream-pipeto.js @@ -1,7 +1,7 @@ // Flags: --expose-internals 'use strict'; -require('../common'); +const common = require('../common'); const assert = require('node:assert'); const { AbortError } = require('internal/errors'); @@ -20,5 +20,5 @@ for (const message of [undefined, 'abc']) { assert.strictEqual(e.name, 'AbortError'); assert.strictEqual(e.message, reason.message); return true; - }); + }).then(common.mustCall()); } diff --git a/test/parallel/test-whatwg-readablebytestream.js b/test/parallel/test-whatwg-readablebytestream.js index 6b305a0d8365f2..a1a4a757d8bb1e 100644 --- a/test/parallel/test-whatwg-readablebytestream.js +++ b/test/parallel/test-whatwg-readablebytestream.js @@ -184,7 +184,7 @@ class Source { throw error; } - assert.rejects(read(stream), error); + assert.rejects(read(stream), error).then(common.mustCall()); } { @@ -212,10 +212,10 @@ class Source { reader.releaseLock(); assert.rejects(reader.read(new Uint8Array(10)), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); assert.rejects(reader.cancel(), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); } { diff --git a/test/parallel/test-whatwg-readablestream.js b/test/parallel/test-whatwg-readablestream.js index 974b7791a6d68a..db48facddab906 100644 --- a/test/parallel/test-whatwg-readablestream.js +++ b/test/parallel/test-whatwg-readablestream.js @@ -355,11 +355,11 @@ assert.throws(() => { assert.rejects(reader.read(), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); assert.rejects(closedBefore, { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); } { @@ -391,7 +391,7 @@ assert.throws(() => { assert.rejects(stream.cancel(), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); reader.cancel(); @@ -483,7 +483,7 @@ assert.throws(() => { closedBefore.then(common.mustCall()); assert.rejects(closedAfter, { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); } { @@ -505,7 +505,7 @@ assert.throws(() => { closedBefore.then(common.mustCall()); assert.rejects(closedAfter, { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); } { @@ -579,9 +579,9 @@ assert.throws(() => { }); stream.getReader().releaseLock(); const reader = stream.getReader(); - assert.rejects(reader.closed, error); - assert.rejects(reader.read(), error); - assert.rejects(reader.read(), error); + assert.rejects(reader.closed, error).then(common.mustCall()); + assert.rejects(reader.read(), error).then(common.mustCall()); + assert.rejects(reader.read(), error).then(common.mustCall()); } { @@ -595,8 +595,8 @@ assert.throws(() => { const cancel1 = reader.cancel(); const cancel2 = reader.cancel(); assert.notStrictEqual(cancel1, cancel2); - assert.rejects(cancel1, error); - assert.rejects(cancel2, error); + assert.rejects(cancel1, error).then(common.mustCall()); + assert.rejects(cancel2, error).then(common.mustCall()); } { @@ -608,9 +608,9 @@ assert.throws(() => { }); stream.getReader().releaseLock(); const reader = stream.getReader(); - assert.rejects(reader.closed, error); - assert.rejects(reader.read(), error); - assert.rejects(reader.read(), error); + assert.rejects(reader.closed, error).then(common.mustCall()); + assert.rejects(reader.read(), error).then(common.mustCall()); + assert.rejects(reader.read(), error).then(common.mustCall()); } { @@ -717,8 +717,10 @@ assert.throws(() => { assert.notStrictEqual(closed1, closed2); - assert.rejects(closed1, error); - assert.rejects(closed2, error); + assert.rejects(closed1, error).then(common.mustCall()); + assert.rejects(closed2, error).then(common.mustCall()); + + reader1.read(); } { @@ -796,8 +798,8 @@ assert.throws(() => { const { 0: s1, 1: s2 } = stream.tee(); - assert.rejects(s1.cancel(), error); - assert.rejects(s2.cancel(), error); + assert.rejects(s1.cancel(), error).then(common.mustCall()); + assert.rejects(s2.cancel(), error).then(common.mustCall()); } { @@ -812,8 +814,8 @@ assert.throws(() => { const { 0: s1, 1: s2 } = stream.tee(); c.error(error); - assert.rejects(s1.cancel(), error); - assert.rejects(s2.cancel(), error); + assert.rejects(s1.cancel(), error).then(common.mustCall()); + assert.rejects(s2.cancel(), error).then(common.mustCall()); } { @@ -830,11 +832,11 @@ assert.throws(() => { const reader1 = s1.getReader(); const reader2 = s2.getReader(); - assert.rejects(reader1.closed, error); - assert.rejects(reader2.closed, error); + assert.rejects(reader1.closed, error).then(common.mustCall()); + assert.rejects(reader2.closed, error).then(common.mustCall()); - assert.rejects(reader1.read(), error); - assert.rejects(reader2.read(), error); + assert.rejects(reader1.read(), error).then(common.mustCall()); + assert.rejects(reader2.read(), error).then(common.mustCall()); setImmediate(() => c.error(error)); } @@ -1038,7 +1040,7 @@ assert.throws(() => { const reader = stream.getReader(); - assert.rejects(reader.closed, error); + assert.rejects(reader.closed, error).then(common.mustCall()); } { @@ -1053,7 +1055,7 @@ assert.throws(() => { const reader = stream.getReader(); - assert.rejects(reader.closed, error); + assert.rejects(reader.closed, error).then(common.mustCall()); } { @@ -1357,7 +1359,7 @@ class Source { }); assert.rejects(() => ReadableStream.prototype.cancel.call({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.throws(() => ReadableStream.prototype.getReader.call({}), { code: 'ERR_INVALID_THIS', }); @@ -1372,15 +1374,15 @@ class Source { }); assert.rejects(() => ReadableStreamDefaultReader.prototype.read.call({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.rejects(() => ReadableStreamDefaultReader.prototype.cancel.call({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.rejects(() => { return Reflect.get(ReadableStreamDefaultReader.prototype, 'closed'); }, { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.throws(() => { ReadableStreamDefaultReader.prototype.releaseLock.call({}); }, { @@ -1388,7 +1390,7 @@ class Source { }); assert.rejects(() => ReadableStreamBYOBReader.prototype.read.call({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.throws(() => { ReadableStreamBYOBReader.prototype.releaseLock.call({}); }, { @@ -1398,10 +1400,10 @@ class Source { return Reflect.get(ReadableStreamBYOBReader.prototype, 'closed'); }, { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.rejects(() => ReadableStreamBYOBReader.prototype.cancel.call({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.throws(() => { Reflect.get(ReadableByteStreamController.prototype, 'byobRequest', {}); @@ -1484,11 +1486,11 @@ class Source { assert.rejects(readableStreamPipeTo(1), { code: 'ERR_INVALID_ARG_TYPE', - }); + }).then(common.mustCall()); assert.rejects(readableStreamPipeTo(new ReadableStream(), 1), { code: 'ERR_INVALID_ARG_TYPE', - }); + }).then(common.mustCall()); assert.rejects( readableStreamPipeTo( @@ -1500,7 +1502,7 @@ class Source { {}), { code: 'ERR_INVALID_ARG_TYPE', - }); + }).then(common.mustCall()); } { @@ -1510,10 +1512,10 @@ class Source { reader.releaseLock(); assert.rejects(reader.read(), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); assert.rejects(reader.cancel(), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); } { diff --git a/test/parallel/test-whatwg-webstreams-adapters-to-readablestream.js b/test/parallel/test-whatwg-webstreams-adapters-to-readablestream.js index 433552388ac7a0..66af7b128c4d5a 100644 --- a/test/parallel/test-whatwg-webstreams-adapters-to-readablestream.js +++ b/test/parallel/test-whatwg-webstreams-adapters-to-readablestream.js @@ -60,7 +60,7 @@ const { assert.rejects(reader.closed, { code: 'ABORT_ERR', - }); + }).then(common.mustCall()); readable.on('end', common.mustNotCall()); readable.on('error', common.mustNotCall()); @@ -116,7 +116,7 @@ const { const reader = readableStream.getReader(); - assert.rejects(reader.closed, error); + assert.rejects(reader.closed, error).then(common.mustCall()); readable.on('end', common.mustNotCall()); readable.on('error', common.mustCall((reason) => { diff --git a/test/parallel/test-whatwg-webstreams-adapters-to-readablewritablepair.js b/test/parallel/test-whatwg-webstreams-adapters-to-readablewritablepair.js index a4ce9d163214cd..83d21247a49265 100644 --- a/test/parallel/test-whatwg-webstreams-adapters-to-readablewritablepair.js +++ b/test/parallel/test-whatwg-webstreams-adapters-to-readablewritablepair.js @@ -28,11 +28,11 @@ const { assert.rejects(reader.closed, { code: 'ABORT_ERR', - }); + }).then(common.mustCall()); assert.rejects(writer.closed, { code: 'ABORT_ERR', - }); + }).then(common.mustCall()); duplex.destroy(); @@ -58,8 +58,8 @@ const { const reader = readable.getReader(); const writer = writable.getWriter(); - assert.rejects(reader.closed, error); - assert.rejects(writer.closed, error); + assert.rejects(reader.closed, error).then(common.mustCall()); + assert.rejects(writer.closed, error).then(common.mustCall()); duplex.destroy(error); } @@ -81,7 +81,7 @@ const { const writer = writable.getWriter(); reader.closed.then(common.mustCall()); - assert.rejects(writer.closed, error); + assert.rejects(writer.closed, error).then(common.mustCall()); reader.cancel(error).then(common.mustCall()); } @@ -121,8 +121,8 @@ const { const reader = readable.getReader(); const writer = writable.getWriter(); - assert.rejects(reader.closed, error); - assert.rejects(writer.closed, error); + assert.rejects(reader.closed, error).then(common.mustCall()); + assert.rejects(writer.closed, error).then(common.mustCall()); writer.abort(error).then(common.mustCall()); } @@ -145,7 +145,7 @@ const { assert.rejects(writer.closed, { code: 'ABORT_ERR', - }); + }).then(common.mustCall()); reader.cancel(); } @@ -166,7 +166,7 @@ const { reader.closed.then(common.mustCall()); assert.rejects(writer.closed, { code: 'ABORT_ERR', - }); + }).then(common.mustCall()); duplex.end(); } diff --git a/test/parallel/test-whatwg-webstreams-adapters-to-streamreadable.js b/test/parallel/test-whatwg-webstreams-adapters-to-streamreadable.js index 5e5eb7c4817ac0..45f45023fa028b 100644 --- a/test/parallel/test-whatwg-webstreams-adapters-to-streamreadable.js +++ b/test/parallel/test-whatwg-webstreams-adapters-to-streamreadable.js @@ -56,10 +56,10 @@ class MySource { assert.rejects(readableStream.cancel(), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); assert.rejects(readableStream.pipeTo(new WritableStream()), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); assert.throws(() => readableStream.tee(), { code: 'ERR_INVALID_STATE', }); diff --git a/test/parallel/test-whatwg-webstreams-adapters-to-streamwritable.js b/test/parallel/test-whatwg-webstreams-adapters-to-streamwritable.js index 495eef73f79272..b3415cdf18d42a 100644 --- a/test/parallel/test-whatwg-webstreams-adapters-to-streamwritable.js +++ b/test/parallel/test-whatwg-webstreams-adapters-to-streamwritable.js @@ -125,11 +125,11 @@ class TestSource { assert.rejects(writableStream.close(), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); assert.rejects(writableStream.abort(), { code: 'ERR_INVALID_STATE', - }); + }).then(common.mustCall()); assert.throws(() => writableStream.getWriter(), { code: 'ERR_INVALID_STATE', diff --git a/test/parallel/test-whatwg-webstreams-adapters-to-writablestream.js b/test/parallel/test-whatwg-webstreams-adapters-to-writablestream.js index 4457ad39f8cb6d..1527610c513333 100644 --- a/test/parallel/test-whatwg-webstreams-adapters-to-writablestream.js +++ b/test/parallel/test-whatwg-webstreams-adapters-to-writablestream.js @@ -81,7 +81,7 @@ class TestWritable extends Writable { const writable = new TestWritable(); const writableStream = newWritableStreamFromStreamWritable(writable); - assert.rejects(writableStream.close(), error); + assert.rejects(writableStream.close(), error).then(common.mustCall()); writable.destroy(error); } @@ -93,7 +93,7 @@ class TestWritable extends Writable { assert.rejects(writableStream.close(), { code: 'ABORT_ERR' - }); + }).then(common.mustCall()); writable.end(); } diff --git a/test/parallel/test-whatwg-webstreams-compression.js b/test/parallel/test-whatwg-webstreams-compression.js index c527fc1f13d10e..fb20801543bff6 100644 --- a/test/parallel/test-whatwg-webstreams-compression.js +++ b/test/parallel/test-whatwg-webstreams-compression.js @@ -38,7 +38,7 @@ async function test(format) { ]); } -Promise.all(['gzip', 'deflate'].map((i) => test(i))).then(common.mustCall()); +Promise.all(['gzip', 'deflate', 'deflate-raw'].map((i) => test(i))).then(common.mustCall()); [1, 'hello', false, {}].forEach((i) => { assert.throws(() => new CompressionStream(i), { diff --git a/test/parallel/test-whatwg-webstreams-transfer.js b/test/parallel/test-whatwg-webstreams-transfer.js index 31e45858da52eb..01cfaa02ad075e 100644 --- a/test/parallel/test-whatwg-webstreams-transfer.js +++ b/test/parallel/test-whatwg-webstreams-transfer.js @@ -326,7 +326,7 @@ const theData = 'hello'; assert.rejects(reader.read(), { code: 25, name: 'DataCloneError', - }); + }).then(common.mustCall()); port1.close(); }; @@ -377,7 +377,7 @@ const theData = 'hello'; assert.rejects(writer.closed, { code: 25, name: 'DataCloneError', - }); + }).then(common.mustCall()); writer.write(notActuallyTransferable).then(common.mustCall()); @@ -407,7 +407,7 @@ const theData = 'hello'; port1.onmessage = common.mustCall(({ data }) => { const writer = data.getWriter(); - assert.rejects(writer.closed, error); + assert.rejects(writer.closed, error).then(common.mustCall()); writer.abort(error).then(common.mustCall()); port1.close(); @@ -438,7 +438,7 @@ const theData = 'hello'; assert.rejects(writer.abort(m), { code: 25, name: 'DataCloneError', - }); + }).then(common.mustCall()); port1.close(); }); @@ -531,7 +531,7 @@ const theData = 'hello'; assert.rejects(cancel, { code: 25, name: 'DataCloneError', - }); + }).then(common.mustCall()); port1.close(); }); @@ -557,7 +557,7 @@ const theData = 'hello'; const m = new WebAssembly.Memory({ initial: 1 }); const writer = data.getWriter(); const write = writer.write(m); - assert.rejects(write, { code: 25, name: 'DataCloneError' }); + assert.rejects(write, { code: 25, name: 'DataCloneError' }).then(common.mustCall()); port1.close(); }); diff --git a/test/parallel/test-whatwg-writablestream.js b/test/parallel/test-whatwg-writablestream.js index fde08c7dd1cd9c..7d1d686358c0e1 100644 --- a/test/parallel/test-whatwg-writablestream.js +++ b/test/parallel/test-whatwg-writablestream.js @@ -129,7 +129,7 @@ class Sink { const writer = stream.getWriter(); - assert.rejects(writer.closed, error); + assert.rejects(writer.closed, error).then(common.mustCall()); writer.abort(error).then(common.mustCall(() => { assert.strictEqual(stream[kState].state, 'errored'); @@ -163,10 +163,10 @@ class Sink { }); assert.rejects(() => WritableStream.prototype.abort({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.rejects(() => WritableStream.prototype.close({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.throws(() => WritableStream.prototype.getWriter.call(), { code: 'ERR_INVALID_THIS', }); @@ -176,24 +176,24 @@ class Sink { assert.rejects( Reflect.get(WritableStreamDefaultWriter.prototype, 'closed'), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.rejects( Reflect.get(WritableStreamDefaultWriter.prototype, 'ready'), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.throws( () => Reflect.get(WritableStreamDefaultWriter.prototype, 'desiredSize'), { code: 'ERR_INVALID_THIS', }); assert.rejects(WritableStreamDefaultWriter.prototype.abort({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.rejects(WritableStreamDefaultWriter.prototype.close({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.rejects(WritableStreamDefaultWriter.prototype.write({}), { code: 'ERR_INVALID_THIS', - }); + }).then(common.mustCall()); assert.throws(() => WritableStreamDefaultWriter.prototype.releaseLock({}), { code: 'ERR_INVALID_THIS', }); diff --git a/test/parallel/test-worker-message-port-transfer-filehandle.js b/test/parallel/test-worker-message-port-transfer-filehandle.js index 8e3082240cd2c7..3e6afe22a8c636 100644 --- a/test/parallel/test-worker-message-port-transfer-filehandle.js +++ b/test/parallel/test-worker-message-port-transfer-filehandle.js @@ -30,7 +30,7 @@ const { once } = require('events'); assert.deepStrictEqual(await fh2.readFile(), await fs.readFile(__filename)); await fh2.close(); - assert.rejects(() => fh.readFile(), { code: 'EBADF' }); + await assert.rejects(() => fh.readFile(), { code: 'EBADF' }); })().then(common.mustCall()); (async function() { diff --git a/test/sequential/test-vm-timeout-escape-promise-module-2.js b/test/sequential/test-vm-timeout-escape-promise-module-2.js index 6a9d09890ddef0..13aa2fe998655d 100644 --- a/test/sequential/test-vm-timeout-escape-promise-module-2.js +++ b/test/sequential/test-vm-timeout-escape-promise-module-2.js @@ -39,4 +39,4 @@ assert.rejects(async () => { }, { code: 'ERR_SCRIPT_EXECUTION_TIMEOUT', message: 'Script execution timed out after 10ms' -}); +}).then(common.mustCall()); diff --git a/test/v8-updates/test-linux-perf-logger.js b/test/v8-updates/test-linux-perf-logger.js new file mode 100644 index 00000000000000..8b00d332585121 --- /dev/null +++ b/test/v8-updates/test-linux-perf-logger.js @@ -0,0 +1,148 @@ +'use strict'; + +// --- About this test suite +// +// JIT support for perf(1) was added in 2009 (see https://lkml.org/lkml/2009/6/8/499). +// It works by looking for a perf map file in /tmp/perf-.map, where is the +// PID of the target process. +// +// The structure of this file is stable. Perf expects each line to specify a symbol +// in the form: +// +// +// +// where is the hex representation of the instruction pointer for the beginning +// of the function, is the byte length of the function, and is the +// readable JIT name used for reporting. +// +// This file asserts that a node script run with the appropriate flags will produce +// a compliant perf map. +// +// NOTE: This test runs only on linux, as that is the only platform supported by perf, and +// accordingly the only platform where `perf-basic-prof*` v8 flags are available. + + +const common = require('../common'); +if (!common.isLinux) { + common.skip('--perf-basic-prof* is statically defined as linux-only'); +} + +const assert = require('assert'); +const { spawnSync } = require('child_process'); +const { readFileSync } = require('fs'); + +const fixtures = require('../common/fixtures'); +const tmpdir = require('../common/tmpdir'); +tmpdir.refresh(); + +const testCases = [ + { + title: '--perf-basic-prof interpreted', + nodeFlags: ['--perf-basic-prof', '--no-turbo-inlining', '--no-opt'], + matches: [ + '~functionOne .+/linux-perf-logger.js', + '~functionTwo .+/linux-perf-logger.js', + 'test-regex', + ], + noMatches: ['\\*functionOne', '\\*functionTwo'], + }, + { + title: '--perf-basic-prof compiled', + nodeFlags: ['--perf-basic-prof', '--no-turbo-inlining', '--always-opt'], + matches: [ + 'test-regex', + '~functionOne .+/linux-perf-logger.js', + '~functionTwo .+/linux-perf-logger.js', + '\\*functionOne .+/linux-perf-logger.js', + '\\*functionTwo .+/linux-perf-logger.js', + ], + noMatches: [], + }, + { + title: '--perf-basic-prof-only-functions interpreted', + nodeFlags: ['--perf-basic-prof-only-functions', '--no-turbo-inlining', '--no-opt'], + matches: ['~functionOne .+/linux-perf-logger.js', '~functionTwo .+/linux-perf-logger.js'], + noMatches: ['\\*functionOne', '\\*functionTwo', 'test-regex'], + }, + { + title: '--perf-basic-prof-only-functions compiled', + nodeFlags: ['--perf-basic-prof-only-functions', '--no-turbo-inlining', '--always-opt'], + matches: [ + '~functionOne .+/linux-perf-logger.js', + '~functionTwo .+/linux-perf-logger.js', + '\\*functionOne .+/linux-perf-logger.js', + '\\*functionTwo .+/linux-perf-logger.js', + ], + noMatches: ['test-regex'], + }, +]; + +function runTest(test) { + const report = { + title: test.title, + perfMap: '[uninitialized]', + errors: [], + }; + + const args = test.nodeFlags.concat(fixtures.path('linux-perf-logger.js')); + const run = spawnSync(process.execPath, args, { cwd: tmpdir.path, encoding: 'utf8' }); + if (run.error) { + report.errors.push(run.error.stack); + return report; + } + if (run.status !== 0) { + report.errors.push(`running script:\n${run.stderr}`); + return report; + } + + try { + report.perfMap = readFileSync(`/tmp/perf-${run.pid}.map`, 'utf8'); + } catch (err) { + report.errors.push(`reading perf map: ${err.stack}`); + return report; + } + + const hexRegex = '[a-fA-F0-9]+'; + for (const testRegex of test.matches) { + const lineRegex = new RegExp(`${hexRegex} ${hexRegex}.*:${testRegex}`); + if (!lineRegex.test(report.perfMap)) { + report.errors.push(`Expected to match ${lineRegex}`); + } + } + + for (const regex of test.noMatches) { + const noMatch = new RegExp(regex); + if (noMatch.test(report.perfMap)) { + report.errors.push(`Expected not to match ${noMatch}`); + } + } + + return report; +} + +function serializeError(report, index) { + return `[ERROR ${index + 1}] ${report.title} +Errors: +${report.errors.map((err, i) => `${i + 1}. ${err}`).join('\n')} +Perf map content: +${report.perfMap} + +`; +} + +function runSuite() { + const failures = []; + + for (const tc of testCases) { + const report = runTest(tc); + if (report.errors.length > 0) { + failures.push(report); + } + } + + const errorsToReport = failures.map(serializeError).join('\n--------\n'); + + assert.strictEqual(failures.length, 0, `${failures.length} tests failed\n\n${errorsToReport}`); +} + +runSuite(); diff --git a/test/wasi/test-wasi-not-started.js b/test/wasi/test-wasi-not-started.js index b6c1b538ef96cc..2ef10418ae40ad 100644 --- a/test/wasi/test-wasi-not-started.js +++ b/test/wasi/test-wasi-not-started.js @@ -1,5 +1,5 @@ 'use strict'; -require('../common'); +const common = require('../common'); if (process.argv[2] === 'wasi-child') { const assert = require('assert'); @@ -23,7 +23,7 @@ if (process.argv[2] === 'wasi-child') { name: 'Error', code: 'ERR_WASI_NOT_STARTED', message: 'wasi.start() has not been called', - }); + }).then(common.mustCall()); } else { const assert = require('assert'); const cp = require('child_process'); diff --git a/test/wpt/status/console.json b/test/wpt/status/console.json index 7f8af86a083fde..afbef314ac0569 100644 --- a/test/wpt/status/console.json +++ b/test/wpt/status/console.json @@ -7,5 +7,8 @@ "console namespace: operation dir(optional any, optional object?)" ] } + }, + "idlharness-shadowrealm.window.js": { + "skip": "ShadowRealm support is not enabled" } } diff --git a/test/wpt/status/encoding.json b/test/wpt/status/encoding.json index 0cc551e24a25d9..09f8c2b545b247 100644 --- a/test/wpt/status/encoding.json +++ b/test/wpt/status/encoding.json @@ -39,6 +39,9 @@ "idlharness.any.js": { "skip": "No implementation of TextDecoderStream and TextEncoderStream" }, + "idlharness-shadowrealm.window.js": { + "skip": "ShadowRealm support is not enabled" + }, "replacement-encodings.any.js": { "skip": "decoding-helpers.js needs XMLHttpRequest" }, diff --git a/test/wpt/status/hr-time.json b/test/wpt/status/hr-time.json index a2940656dbe80e..b787bcb7862cb6 100644 --- a/test/wpt/status/hr-time.json +++ b/test/wpt/status/hr-time.json @@ -6,6 +6,9 @@ ] } }, + "idlharness-shadowrealm.window.js": { + "skip": "ShadowRealm support is not enabled" + }, "window-worker-timeOrigin.window.js": { "skip": "depends on URL.createObjectURL(blob)" } diff --git a/test/wpt/status/streams.json b/test/wpt/status/streams.json index 11e225e5f3213e..6454918110dfbd 100644 --- a/test/wpt/status/streams.json +++ b/test/wpt/status/streams.json @@ -6,6 +6,9 @@ ] } }, + "idlharness-shadowrealm.window.js": { + "skip": "ShadowRealm support is not enabled" + }, "piping/general-addition.any.js": { "fail": { "expected": [ diff --git a/test/wpt/status/url.json b/test/wpt/status/url.json index 43f22c5afe5de3..96dafd91b707d5 100644 --- a/test/wpt/status/url.json +++ b/test/wpt/status/url.json @@ -1,4 +1,7 @@ { + "idlharness-shadowrealm.window.js": { + "skip": "ShadowRealm support is not enabled" + }, "percent-encoding.window.js": { "skip": "TODO: port from .window.js" }, diff --git a/test/wpt/status/user-timing.json b/test/wpt/status/user-timing.json index 6e2b6e276ccda0..7e0e70dcf20f20 100644 --- a/test/wpt/status/user-timing.json +++ b/test/wpt/status/user-timing.json @@ -1,4 +1,7 @@ { + "idlharness-shadowrealm.window.js": { + "skip": "ShadowRealm support is not enabled" + }, "invoke_with_timing_attributes.worker.js": { "skip": "importScripts not supported" }, diff --git a/tools/dep_updaters/update-acorn-walk.sh b/tools/dep_updaters/update-acorn-walk.sh index ea49a1ec5ad3e7..844380305d0fe3 100755 --- a/tools/dep_updaters/update-acorn-walk.sh +++ b/tools/dep_updaters/update-acorn-walk.sh @@ -7,37 +7,50 @@ set -ex -ROOT=$(cd "$(dirname "$0")/../.." && pwd) -[ -z "$NODE" ] && NODE="$ROOT/out/Release/node" +BASE_DIR=$(cd "$(dirname "$0")/../.." && pwd) +[ -z "$NODE" ] && NODE="$BASE_DIR/out/Release/node" [ -x "$NODE" ] || NODE=$(command -v node) -NPM="$ROOT/deps/npm/bin/npm-cli.js" +NPM="$BASE_DIR/deps/npm/bin/npm-cli.js" +DEPS_DIR="$BASE_DIR/deps" # shellcheck disable=SC1091 -. "$ROOT/tools/dep_updaters/utils.sh" +. "$BASE_DIR/tools/dep_updaters/utils.sh" NEW_VERSION=$("$NODE" "$NPM" view acorn-walk dist-tags.latest) -CURRENT_VERSION=$("$NODE" -p "require('./deps/acorn/acorn-walk/package.json').version") +CURRENT_VERSION=$("$NODE" "$NPM" --prefix './deps/acorn/acorn-walk/' pkg get version) # This function exit with 0 if new version and current version are the same compare_dependency_version "acorn-walk" "$NEW_VERSION" "$CURRENT_VERSION" cd "$( dirname "$0" )/../.." || exit -rm -rf deps/acorn/acorn-walk +echo "Making temporary workspace..." -( - rm -rf acorn-walk-tmp - mkdir acorn-walk-tmp - cd acorn-walk-tmp || exit +WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp') - "$NODE" "$NPM" init --yes +cleanup () { + EXIT_CODE=$? + [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE" + exit $EXIT_CODE +} - "$NODE" "$NPM" install --global-style --no-bin-links --ignore-scripts "acorn-walk@$NEW_VERSION" -) +trap cleanup INT TERM EXIT -mv acorn-walk-tmp/node_modules/acorn-walk deps/acorn +cd "$WORKSPACE" -rm -rf acorn-walk-tmp/ +echo "Fetching acorn-walk source archive..." + +"$NODE" "$NPM" pack "acorn-walk@$NEW_VERSION" + +ACORN_WALK_TGZ="acorn-walk-$NEW_VERSION.tgz" + +log_and_verify_sha256sum "acorn-walk" "$ACORN_WALK_TGZ" + +rm -r "$DEPS_DIR/acorn/acorn-walk"/* + +tar -xf "$ACORN_WALK_TGZ" + +mv package/* "$DEPS_DIR/acorn/acorn-walk" echo "All done!" echo "" @@ -47,6 +60,7 @@ echo "$ git add -A deps/acorn-walk" echo "$ git commit -m \"deps: update acorn-walk to $NEW_VERSION\"" echo "" -# The last line of the script should always print the new version, -# as we need to add it to $GITHUB_ENV variable. -echo "NEW_VERSION=$NEW_VERSION" +# Update the version number on maintaining-dependencies.md +# and print the new version as the last line of the script as we need +# to add it to $GITHUB_ENV variable +finalize_version_update "acorn-walk" "$NEW_VERSION" diff --git a/tools/dep_updaters/update-acorn.sh b/tools/dep_updaters/update-acorn.sh index 53d85156653d9c..6c0f54a5447100 100755 --- a/tools/dep_updaters/update-acorn.sh +++ b/tools/dep_updaters/update-acorn.sh @@ -7,36 +7,53 @@ set -ex -ROOT=$(cd "$(dirname "$0")/../.." && pwd) -[ -z "$NODE" ] && NODE="$ROOT/out/Release/node" +BASE_DIR=$(cd "$(dirname "$0")/../.." && pwd) +[ -z "$NODE" ] && NODE="$BASE_DIR/out/Release/node" [ -x "$NODE" ] || NODE=$(command -v node) -NPM="$ROOT/deps/npm/bin/npm-cli.js" +NPM="$BASE_DIR/deps/npm/bin/npm-cli.js" +DEPS_DIR="$BASE_DIR/deps" # shellcheck disable=SC1091 -. "$ROOT/tools/dep_updaters/utils.sh" +. "$BASE_DIR/tools/dep_updaters/utils.sh" NEW_VERSION=$("$NODE" "$NPM" view acorn dist-tags.latest) -CURRENT_VERSION=$("$NODE" -p "require('./deps/acorn/acorn/package.json').version") +CURRENT_VERSION=$("$NODE" "$NPM" --prefix './deps/acorn/acorn/' pkg get version) # This function exit with 0 if new version and current version are the same compare_dependency_version "acorn" "$NEW_VERSION" "$CURRENT_VERSION" cd "$( dirname "$0" )/../.." || exit -rm -rf deps/acorn/acorn +echo "Making temporary workspace..." -( - rm -rf acorn-tmp - mkdir acorn-tmp - cd acorn-tmp || exit +WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp') - "$NODE" "$NPM" init --yes +cleanup () { + EXIT_CODE=$? + [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE" + exit $EXIT_CODE +} - "$NODE" "$NPM" install --global-style --no-bin-links --ignore-scripts "acorn@$NEW_VERSION" -) +trap cleanup INT TERM EXIT + +cd "$WORKSPACE" + +echo "Fetching acorn source archive..." + +"$NODE" "$NPM" pack "acorn@$NEW_VERSION" + +ACORN_TGZ="acorn-$NEW_VERSION.tgz" + +log_and_verify_sha256sum "acorn" "$ACORN_TGZ" + +rm -r "$DEPS_DIR/acorn/acorn"/* + +tar -xf "$ACORN_TGZ" + +mv package/* "$DEPS_DIR/acorn/acorn" # update version information in src/acorn_version.h -cat > "$ROOT/src/acorn_version.h" < "$BASE_DIR/src/acorn_version.h" < "$ROOT/src/acorn_version.h" < "$ROOT/src/zlib_version.h" < Julien Brianceau Refael Ackermann Ujjwal Sharma +Christian Clauss diff --git a/tools/gyp/CHANGELOG.md b/tools/gyp/CHANGELOG.md index a103250cd5399c..483943e013f3ce 100644 --- a/tools/gyp/CHANGELOG.md +++ b/tools/gyp/CHANGELOG.md @@ -1,5 +1,63 @@ # Changelog +## [0.16.1](https://github.com/nodejs/gyp-next/compare/v0.16.0...v0.16.1) (2023-10-25) + + +### Bug Fixes + +* add quotes for command in msvs generator ([#217](https://github.com/nodejs/gyp-next/issues/217)) ([d3b7bcd](https://github.com/nodejs/gyp-next/commit/d3b7bcdec90d6c1b1affc15ece706e63007b7264)) + +## [0.16.0](https://github.com/nodejs/gyp-next/compare/v0.15.1...v0.16.0) (2023-10-23) + + +### Features + +* add VCToolsVersion for msvs ([#209](https://github.com/nodejs/gyp-next/issues/209)) ([0e35ab8](https://github.com/nodejs/gyp-next/commit/0e35ab812d890fb75cf89a19ea72bc93dd6ba186)) + +## [0.15.1](https://github.com/nodejs/gyp-next/compare/v0.15.0...v0.15.1) (2023-09-08) + + +### Bug Fixes + +* some Python lint issues ([#200](https://github.com/nodejs/gyp-next/issues/200)) ([d2dfe4e](https://github.com/nodejs/gyp-next/commit/d2dfe4e66b64c16b38bef984782db93d12674f05)) +* use generator_output as output_dir ([#191](https://github.com/nodejs/gyp-next/issues/191)) ([35ffeb1](https://github.com/nodejs/gyp-next/commit/35ffeb1da8ef3fc8311e2e812cff550568f7e8a2)) + +## [0.15.0](https://github.com/nodejs/gyp-next/compare/v0.14.1...v0.15.0) (2023-03-30) + + +### Features + +* **msvs:** add SpectreMitigation attribute ([#190](https://github.com/nodejs/gyp-next/issues/190)) ([853e464](https://github.com/nodejs/gyp-next/commit/853e4643b6737224a5aa0720a4108461a0230991)) + +## [0.14.1](https://github.com/nodejs/gyp-next/compare/v0.14.0...v0.14.1) (2023-02-19) + + +### Bug Fixes + +* flake8 extended-ignore ([#186](https://github.com/nodejs/gyp-next/issues/186)) ([c38493c](https://github.com/nodejs/gyp-next/commit/c38493c2556aa63b6dc40ab585c18aef5ca270d3)) +* No build_type in default_variables ([#183](https://github.com/nodejs/gyp-next/issues/183)) ([ac262fe](https://github.com/nodejs/gyp-next/commit/ac262fe82453c4e8dc47529338d157eb0b5ec0fb)) + + +### Documentation + +* README.md: Add pipx installation and run instructions ([#165](https://github.com/nodejs/gyp-next/issues/165)) ([4d28b15](https://github.com/nodejs/gyp-next/commit/4d28b155568dc35f11c7f86124d1dd42ba428bed)) + +## [0.14.0](https://github.com/nodejs/gyp-next/compare/v0.13.0...v0.14.0) (2022-10-08) + + +### Features + +* Add command line argument for `gyp --version` ([#164](https://github.com/nodejs/gyp-next/issues/164)) ([5c9f4d0](https://github.com/nodejs/gyp-next/commit/5c9f4d05678dd855e18ed2327219e5d18e5374db)) +* ninja build for iOS ([#174](https://github.com/nodejs/gyp-next/issues/174)) ([b6f2714](https://github.com/nodejs/gyp-next/commit/b6f271424e0033d7ed54d437706695af2ba7a1bf)) +* **zos:** support IBM Open XL C/C++ & PL/I compilers on z/OS ([#178](https://github.com/nodejs/gyp-next/issues/178)) ([43a7211](https://github.com/nodejs/gyp-next/commit/43a72110ae3fafb13c9625cc7a969624b27cda47)) + + +### Bug Fixes + +* lock windows env ([#163](https://github.com/nodejs/gyp-next/issues/163)) ([44bd0dd](https://github.com/nodejs/gyp-next/commit/44bd0ddc93ea0b5770a44dd326a2e4ae62c21442)) +* move configuration information into pyproject.toml ([#176](https://github.com/nodejs/gyp-next/issues/176)) ([d69d8ec](https://github.com/nodejs/gyp-next/commit/d69d8ece6dbff7af4f2ea073c9fd170baf8cb7f7)) +* node.js debugger adds stderr (but exit code is 0) -> shouldn't throw ([#179](https://github.com/nodejs/gyp-next/issues/179)) ([1a457d9](https://github.com/nodejs/gyp-next/commit/1a457d9ed08cfd30c9fa551bc5cf0d90fb583787)) + ## [0.13.0](https://www.github.com/nodejs/gyp-next/compare/v0.12.1...v0.13.0) (2022-05-11) diff --git a/tools/gyp/README.md b/tools/gyp/README.md index 9ffc2b21e81b8b..be1d7b9ebf6611 100644 --- a/tools/gyp/README.md +++ b/tools/gyp/README.md @@ -5,3 +5,26 @@ Documents are available at [gyp.gsrc.io](https://gyp.gsrc.io), or you can check __gyp-next__ is [released](https://github.com/nodejs/gyp-next/releases) to the [__Python Packaging Index__](https://pypi.org/project/gyp-next) (PyPI) and can be installed with the command: * `python3 -m pip install gyp-next` + +When used as a command line utility, __gyp-next__ can also be installed with [pipx](https://pypa.github.io/pipx): +* `pipx install gyp-next` +``` +Installing to a new venv 'gyp-next' + installed package gyp-next 0.13.0, installed using Python 3.10.6 + These apps are now globally available + - gyp +done! ✨ 🌟 ✨ +``` + +Or to run __gyp-next__ directly without installing it: +* `pipx run gyp-next --help` +``` +NOTE: running app 'gyp' from 'gyp-next' +usage: usage: gyp [options ...] [build_file ...] + +options: + -h, --help show this help message and exit + --build CONFIGS configuration for build after project generation + --check check format of gyp files + [ ... ] +``` diff --git a/tools/gyp/pylib/gyp/MSVSNew.py b/tools/gyp/pylib/gyp/MSVSNew.py index d6b189760cef99..bc0e93d07f8900 100644 --- a/tools/gyp/pylib/gyp/MSVSNew.py +++ b/tools/gyp/pylib/gyp/MSVSNew.py @@ -285,19 +285,17 @@ def Write(self, writer=gyp.common.WriteOnDiff): "\tEndProjectSection\r\n" ) - if isinstance(e, MSVSFolder): - if e.items: - f.write("\tProjectSection(SolutionItems) = preProject\r\n") - for i in e.items: - f.write(f"\t\t{i} = {i}\r\n") - f.write("\tEndProjectSection\r\n") - - if isinstance(e, MSVSProject): - if e.dependencies: - f.write("\tProjectSection(ProjectDependencies) = postProject\r\n") - for d in e.dependencies: - f.write(f"\t\t{d.get_guid()} = {d.get_guid()}\r\n") - f.write("\tEndProjectSection\r\n") + if isinstance(e, MSVSFolder) and e.items: + f.write("\tProjectSection(SolutionItems) = preProject\r\n") + for i in e.items: + f.write(f"\t\t{i} = {i}\r\n") + f.write("\tEndProjectSection\r\n") + + if isinstance(e, MSVSProject) and e.dependencies: + f.write("\tProjectSection(ProjectDependencies) = postProject\r\n") + for d in e.dependencies: + f.write(f"\t\t{d.get_guid()} = {d.get_guid()}\r\n") + f.write("\tEndProjectSection\r\n") f.write("EndProject\r\n") @@ -353,7 +351,7 @@ def Write(self, writer=gyp.common.WriteOnDiff): # Folder mappings # Omit this section if there are no folders - if any([e.entries for e in all_entries if isinstance(e, MSVSFolder)]): + if any(e.entries for e in all_entries if isinstance(e, MSVSFolder)): f.write("\tGlobalSection(NestedProjects) = preSolution\r\n") for e in all_entries: if not isinstance(e, MSVSFolder): diff --git a/tools/gyp/pylib/gyp/MSVSProject.py b/tools/gyp/pylib/gyp/MSVSProject.py index f0cfabe8349099..629f3f61b4819d 100644 --- a/tools/gyp/pylib/gyp/MSVSProject.py +++ b/tools/gyp/pylib/gyp/MSVSProject.py @@ -79,7 +79,7 @@ def __init__(self, project_path, version, name, guid=None, platforms=None): self.files_section = ["Files"] # Keep a dict keyed on filename to speed up access. - self.files_dict = dict() + self.files_dict = {} def AddToolFile(self, path): """Adds a tool file to the project. diff --git a/tools/gyp/pylib/gyp/MSVSSettings.py b/tools/gyp/pylib/gyp/MSVSSettings.py index e89a971a3bb4fd..93633dbca133c7 100644 --- a/tools/gyp/pylib/gyp/MSVSSettings.py +++ b/tools/gyp/pylib/gyp/MSVSSettings.py @@ -141,7 +141,7 @@ class _Boolean(_Type): """Boolean settings, can have the values 'false' or 'true'.""" def _Validate(self, value): - if value != "true" and value != "false": + if value not in {"true", "false"}: raise ValueError("expected bool; got %r" % value) def ValidateMSVS(self, value): diff --git a/tools/gyp/pylib/gyp/__init__.py b/tools/gyp/pylib/gyp/__init__.py index 976d5b6aa88e09..d6cc01307d997c 100755 --- a/tools/gyp/pylib/gyp/__init__.py +++ b/tools/gyp/pylib/gyp/__init__.py @@ -15,6 +15,7 @@ import traceback from gyp.common import GypError + # Default debug modes for GYP debug = {} @@ -107,7 +108,9 @@ def Load( if default_variables["GENERATOR"] == "ninja": default_variables.setdefault( "PRODUCT_DIR_ABS", - os.path.join(output_dir, "out", default_variables["build_type"]), + os.path.join( + output_dir, "out", default_variables.get("build_type", "default") + ), ) else: default_variables.setdefault( @@ -463,8 +466,19 @@ def gyp_main(args): metavar="TARGET", help="include only TARGET and its deep dependencies", ) + parser.add_argument( + "-V", + "--version", + dest="version", + action="store_true", + help="Show the version and exit.", + ) options, build_files_arg = parser.parse_args(args) + if options.version: + import pkg_resources + print(f"v{pkg_resources.get_distribution('gyp-next').version}") + return 0 build_files = build_files_arg # Set up the configuration directory (defaults to ~/.gyp) @@ -610,7 +624,7 @@ def gyp_main(args): if options.generator_flags: gen_flags += options.generator_flags generator_flags = NameValueListToDict(gen_flags) - if DEBUG_GENERAL in gyp.debug.keys(): + if DEBUG_GENERAL in gyp.debug: DebugOutput(DEBUG_GENERAL, "generator_flags: %s", generator_flags) # Generate all requested formats (use a set in case we got one format request diff --git a/tools/gyp/pylib/gyp/common.py b/tools/gyp/pylib/gyp/common.py index 0847cdabc718d8..b73a0c55b1e349 100644 --- a/tools/gyp/pylib/gyp/common.py +++ b/tools/gyp/pylib/gyp/common.py @@ -144,20 +144,16 @@ def RelativePath(path, relative_to, follow_path_symlink=True): # symlink, this option has no effect. # Convert to normalized (and therefore absolute paths). - if follow_path_symlink: - path = os.path.realpath(path) - else: - path = os.path.abspath(path) + path = os.path.realpath(path) if follow_path_symlink else os.path.abspath(path) relative_to = os.path.realpath(relative_to) # On Windows, we can't create a relative path to a different drive, so just # use the absolute path. - if sys.platform == "win32": - if ( - os.path.splitdrive(path)[0].lower() - != os.path.splitdrive(relative_to)[0].lower() - ): - return path + if sys.platform == "win32" and ( + os.path.splitdrive(path)[0].lower() + != os.path.splitdrive(relative_to)[0].lower() + ): + return path # Split the paths into components. path_split = path.split(os.path.sep) @@ -277,10 +273,7 @@ def EncodePOSIXShellArgument(argument): if not isinstance(argument, str): argument = str(argument) - if _quote.search(argument): - quote = '"' - else: - quote = "" + quote = '"' if _quote.search(argument) else "" encoded = quote + re.sub(_escape, r"\\\1", argument) + quote @@ -470,6 +463,7 @@ def CopyTool(flavor, out_path, generator_flags={}): "os400": "flock", "solaris": "flock", "mac": "mac", + "ios": "mac", "win": "win", }.get(flavor, None) if not prefix: diff --git a/tools/gyp/pylib/gyp/easy_xml.py b/tools/gyp/pylib/gyp/easy_xml.py index bda1a47468ae2b..02567b251446d7 100644 --- a/tools/gyp/pylib/gyp/easy_xml.py +++ b/tools/gyp/pylib/gyp/easy_xml.py @@ -121,7 +121,11 @@ def WriteXmlIfChanged(content, path, encoding="utf-8", pretty=False, if win32 and os.linesep != "\r\n": xml_string = xml_string.replace("\n", "\r\n") - default_encoding = locale.getdefaultlocale()[1] + try: # getdefaultlocale() was removed in Python 3.11 + default_encoding = locale.getdefaultlocale()[1] + except AttributeError: + default_encoding = locale.getencoding() + if default_encoding and default_encoding.upper() != encoding.upper(): xml_string = xml_string.encode(encoding) diff --git a/tools/gyp/pylib/gyp/easy_xml_test.py b/tools/gyp/pylib/gyp/easy_xml_test.py index 342f693a329d26..2d9b15210dc126 100755 --- a/tools/gyp/pylib/gyp/easy_xml_test.py +++ b/tools/gyp/pylib/gyp/easy_xml_test.py @@ -76,6 +76,8 @@ def test_EasyXml_complex(self): '\'Debug|Win32\'" Label="Configuration">' "Application" "Unicode" + "SpectreLoadCF" + "14.36.32532" "" "" ) @@ -99,6 +101,8 @@ def test_EasyXml_complex(self): }, ["ConfigurationType", "Application"], ["CharacterSet", "Unicode"], + ["SpectreMitigation", "SpectreLoadCF"], + ["VCToolsVersion", "14.36.32532"], ], ] ) diff --git a/tools/gyp/pylib/gyp/generator/analyzer.py b/tools/gyp/pylib/gyp/generator/analyzer.py index f15df00c36373e..1334f2fca9967c 100644 --- a/tools/gyp/pylib/gyp/generator/analyzer.py +++ b/tools/gyp/pylib/gyp/generator/analyzer.py @@ -379,7 +379,7 @@ def _GenerateTargets(data, target_list, target_dicts, toplevel_dir, files, build target.is_executable = target_type == "executable" target.is_static_library = target_type == "static_library" target.is_or_has_linked_ancestor = ( - target_type == "executable" or target_type == "shared_library" + target_type in {"executable", "shared_library"} ) build_file = gyp.common.ParseQualifiedTarget(target_name)[0] @@ -433,14 +433,14 @@ def _GetUnqualifiedToTargetMapping(all_targets, to_find): if not to_find: return {}, [] to_find = set(to_find) - for target_name in all_targets.keys(): + for target_name in all_targets: extracted = gyp.common.ParseQualifiedTarget(target_name) if len(extracted) > 1 and extracted[1] in to_find: to_find.remove(extracted[1]) result[extracted[1]] = all_targets[target_name] if not to_find: return result, [] - return result, [x for x in to_find] + return result, list(to_find) def _DoesTargetDependOnMatchingTargets(target): @@ -451,8 +451,8 @@ def _DoesTargetDependOnMatchingTargets(target): if target.match_status == MATCH_STATUS_DOESNT_MATCH: return False if ( - target.match_status == MATCH_STATUS_MATCHES - or target.match_status == MATCH_STATUS_MATCHES_BY_DEPENDENCY + target.match_status in {MATCH_STATUS_MATCHES, + MATCH_STATUS_MATCHES_BY_DEPENDENCY} ): return True for dep in target.deps: @@ -683,11 +683,9 @@ def find_matching_test_target_names(self): ) test_target_names_contains_all = "all" in self._test_target_names if test_target_names_contains_all: - test_targets = [ - x for x in (set(test_targets_no_all) | set(self._root_targets)) - ] + test_targets = list(set(test_targets_no_all) | set(self._root_targets)) else: - test_targets = [x for x in test_targets_no_all] + test_targets = list(test_targets_no_all) print("supplied test_targets") for target_name in self._test_target_names: print("\t", target_name) @@ -702,9 +700,9 @@ def find_matching_test_target_names(self): if matching_test_targets_contains_all: # Remove any of the targets for all that were not explicitly supplied, # 'all' is subsequentely added to the matching names below. - matching_test_targets = [ - x for x in (set(matching_test_targets) & set(test_targets_no_all)) - ] + matching_test_targets = list( + set(matching_test_targets) & set(test_targets_no_all) + ) print("matched test_targets") for target in matching_test_targets: print("\t", target.name) @@ -729,9 +727,7 @@ def find_matching_compile_target_names(self): self._supplied_target_names_no_all(), self._unqualified_mapping ) if "all" in self._supplied_target_names(): - supplied_targets = [ - x for x in (set(supplied_targets) | set(self._root_targets)) - ] + supplied_targets = list(set(supplied_targets) | set(self._root_targets)) print("Supplied test_targets & compile_targets") for target in supplied_targets: print("\t", target.name) diff --git a/tools/gyp/pylib/gyp/generator/android.py b/tools/gyp/pylib/gyp/generator/android.py index cdf1a4832cf1ad..d3c97c666db077 100644 --- a/tools/gyp/pylib/gyp/generator/android.py +++ b/tools/gyp/pylib/gyp/generator/android.py @@ -697,7 +697,7 @@ def ComputeOutputParts(self, spec): target, ) - if self.type != "static_library" and self.type != "shared_library": + if self.type not in {"static_library", "shared_library"}: target_prefix = spec.get("product_prefix", target_prefix) target = spec.get("product_name", target) product_ext = spec.get("product_extension") diff --git a/tools/gyp/pylib/gyp/generator/cmake.py b/tools/gyp/pylib/gyp/generator/cmake.py index c95d18415cdb37..320a891aa8adc9 100644 --- a/tools/gyp/pylib/gyp/generator/cmake.py +++ b/tools/gyp/pylib/gyp/generator/cmake.py @@ -103,7 +103,7 @@ def NormjoinPathForceCMakeSource(base_path, rel_path): """ if os.path.isabs(rel_path): return rel_path - if any([rel_path.startswith(var) for var in FULL_PATH_VARS]): + if any(rel_path.startswith(var) for var in FULL_PATH_VARS): return rel_path # TODO: do we need to check base_path for absolute variables as well? return os.path.join( @@ -328,7 +328,7 @@ def WriteActions(target_name, actions, extra_sources, extra_deps, path_to_gyp, o def NormjoinRulePathForceCMakeSource(base_path, rel_path, rule_source): if rel_path.startswith(("${RULE_INPUT_PATH}", "${RULE_INPUT_DIRNAME}")): - if any([rule_source.startswith(var) for var in FULL_PATH_VARS]): + if any(rule_source.startswith(var) for var in FULL_PATH_VARS): return rel_path return NormjoinPathForceCMakeSource(base_path, rel_path) @@ -929,10 +929,7 @@ def WriteTarget( product_prefix = spec.get("product_prefix", default_product_prefix) product_name = spec.get("product_name", default_product_name) product_ext = spec.get("product_extension") - if product_ext: - product_ext = "." + product_ext - else: - product_ext = default_product_ext + product_ext = "." + product_ext if product_ext else default_product_ext SetTargetProperty(output, cmake_target_name, "PREFIX", product_prefix) SetTargetProperty( diff --git a/tools/gyp/pylib/gyp/generator/compile_commands_json.py b/tools/gyp/pylib/gyp/generator/compile_commands_json.py index f330a04dea4c53..0ffa3bb5980fe9 100644 --- a/tools/gyp/pylib/gyp/generator/compile_commands_json.py +++ b/tools/gyp/pylib/gyp/generator/compile_commands_json.py @@ -34,7 +34,7 @@ def IsMac(params): - return "mac" == gyp.common.GetFlavor(params) + return gyp.common.GetFlavor(params) == "mac" def CalculateVariables(default_variables, params): @@ -93,7 +93,7 @@ def resolve(filename): gyp.common.EncodePOSIXShellArgument(file), ) ) - commands.append(dict(command=command, directory=output_dir, file=file)) + commands.append({"command": command, "directory": output_dir, "file": file}) def GenerateOutput(target_list, target_dicts, data, params): @@ -108,7 +108,10 @@ def GenerateOutput(target_list, target_dicts, data, params): cwd = os.path.dirname(build_file) AddCommandsForTarget(cwd, target, params, per_config_commands) - output_dir = params["generator_flags"].get("output_dir", "out") + try: + output_dir = params["options"].generator_output + except (AttributeError, KeyError): + output_dir = params["generator_flags"].get("output_dir", "out") for configuration_name, commands in per_config_commands.items(): filename = os.path.join(output_dir, configuration_name, "compile_commands.json") gyp.common.EnsureDirExists(filename) diff --git a/tools/gyp/pylib/gyp/generator/eclipse.py b/tools/gyp/pylib/gyp/generator/eclipse.py index 1ff0dc83ae200f..52aeae6050990b 100644 --- a/tools/gyp/pylib/gyp/generator/eclipse.py +++ b/tools/gyp/pylib/gyp/generator/eclipse.py @@ -24,7 +24,7 @@ import gyp.common import gyp.msvs_emulation import shlex -import xml.etree.cElementTree as ET +import xml.etree.ElementTree as ET generator_wants_static_library_dependencies_adjusted = False @@ -248,10 +248,7 @@ def GetAllDefines(target_list, target_dicts, data, config_name, params, compiler continue cpp_line_parts = cpp_line.split(" ", 2) key = cpp_line_parts[1] - if len(cpp_line_parts) >= 3: - val = cpp_line_parts[2] - else: - val = "1" + val = cpp_line_parts[2] if len(cpp_line_parts) >= 3 else "1" all_defines[key] = val return all_defines diff --git a/tools/gyp/pylib/gyp/generator/make.py b/tools/gyp/pylib/gyp/generator/make.py index e225326e1d09b6..1b9974948e4de5 100644 --- a/tools/gyp/pylib/gyp/generator/make.py +++ b/tools/gyp/pylib/gyp/generator/make.py @@ -101,6 +101,7 @@ def CalculateVariables(default_variables, params): default_variables.setdefault("SHARED_LIB_SUFFIX", ".a") elif flavor == "zos": default_variables.setdefault("SHARED_LIB_SUFFIX", ".x") + COMPILABLE_EXTENSIONS.update({".pli": "pli"}) else: default_variables.setdefault("SHARED_LIB_SUFFIX", ".so") default_variables.setdefault("SHARED_LIB_DIR", "$(builddir)/lib.$(TOOLSET)") @@ -318,7 +319,7 @@ def CalculateGeneratorInputInfo(params): cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS) quiet_cmd_solink = SOLINK($(TOOLSET)) $@ -cmd_solink = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,DLL -o $(patsubst %.x,%.so,$@) $(LD_INPUTS) $(LIBS) && if [ -f $(notdir $@) ]; then /bin/cp $(notdir $@) $@; else true; fi +cmd_solink = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS) quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@ cmd_solink_module = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS) @@ -378,6 +379,7 @@ def CalculateGeneratorInputInfo(params): LINK.target ?= %(LINK.target)s LDFLAGS.target ?= $(LDFLAGS) AR.target ?= $(AR) +PLI.target ?= %(PLI.target)s # C++ apps need to be linked with g++. LINK ?= $(CXX.target) @@ -391,6 +393,7 @@ def CalculateGeneratorInputInfo(params): LINK.host ?= %(LINK.host)s LDFLAGS.host ?= $(LDFLAGS_host) AR.host ?= %(AR.host)s +PLI.host ?= %(PLI.host)s # Define a dir function that can handle spaces. # http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions @@ -628,6 +631,15 @@ def WriteRootHeaderSuffixRules(writer): writer.write("\n") +SHARED_HEADER_OS390_COMMANDS = """ +PLIFLAGS.target ?= -qlp=64 -qlimits=extname=31 $(PLIFLAGS) +PLIFLAGS.host ?= -qlp=64 -qlimits=extname=31 $(PLIFLAGS) + +quiet_cmd_pli = PLI($(TOOLSET)) $@ +cmd_pli = $(PLI.$(TOOLSET)) $(GYP_PLIFLAGS) $(PLIFLAGS.$(TOOLSET)) -c $< && \ + if [ -f $(notdir $@) ]; then /bin/cp $(notdir $@) $@; else true; fi +""" + SHARED_HEADER_SUFFIX_RULES_COMMENT1 = """\ # Suffix rules, putting all outputs into $(obj). """ @@ -669,10 +681,7 @@ def WriteRootHeaderSuffixRules(writer): def Compilable(filename): """Return true if the file is compilable (should be in OBJS).""" - for res in (filename.endswith(e) for e in COMPILABLE_EXTENSIONS): - if res: - return True - return False + return any(res for res in (filename.endswith(e) for e in COMPILABLE_EXTENSIONS)) def Linkable(filename): @@ -766,7 +775,7 @@ def __init__(self, generator_flags, flavor): self.suffix_rules_objdir2 = {} # Generate suffix rules for all compilable extensions. - for ext in COMPILABLE_EXTENSIONS.keys(): + for ext in COMPILABLE_EXTENSIONS: # Suffix rules for source folder. self.suffix_rules_srcdir.update( { @@ -1054,7 +1063,7 @@ def WriteActions( # libraries, but until everything is made cross-compile safe, also use # target libraries. # TODO(piman): when everything is cross-compile safe, remove lib.target - if self.flavor == "zos" or self.flavor == "aix": + if self.flavor in {"zos", "aix"}: self.WriteLn( "cmd_%s = LIBPATH=$(builddir)/lib.host:" "$(builddir)/lib.target:$$LIBPATH; " @@ -1980,10 +1989,7 @@ def WriteTarget( and self.toolset == "target" ): # On mac, products are created in install_path immediately. - assert install_path == self.output, "{} != {}".format( - install_path, - self.output, - ) + assert install_path == self.output, f"{install_path} != {self.output}" # Point the target alias to the final binary output. self.WriteMakeRule( @@ -2022,7 +2028,7 @@ def WriteTarget( installable_deps.append( self.GetUnversionedSidedeckFromSidedeck(install_path) ) - if self.output != self.alias and self.alias != self.target: + if self.alias not in (self.output, self.target): self.WriteMakeRule( [self.alias], installable_deps, @@ -2450,10 +2456,12 @@ def CalculateMakefilePath(build_file, base_name): "AR.target": GetEnvironFallback(("AR_target", "AR"), "$(AR)"), "CXX.target": GetEnvironFallback(("CXX_target", "CXX"), "$(CXX)"), "LINK.target": GetEnvironFallback(("LINK_target", "LINK"), "$(LINK)"), + "PLI.target": GetEnvironFallback(("PLI_target", "PLI"), "pli"), "CC.host": GetEnvironFallback(("CC_host", "CC"), "gcc"), "AR.host": GetEnvironFallback(("AR_host", "AR"), "ar"), "CXX.host": GetEnvironFallback(("CXX_host", "CXX"), "g++"), "LINK.host": GetEnvironFallback(("LINK_host", "LINK"), "$(CXX.host)"), + "PLI.host": GetEnvironFallback(("PLI_host", "PLI"), "pli"), } if flavor == "mac": flock_command = "./gyp-mac-tool flock" @@ -2469,16 +2477,36 @@ def CalculateMakefilePath(build_file, base_name): header_params.update({"link_commands": LINK_COMMANDS_ANDROID}) elif flavor == "zos": copy_archive_arguments = "-fPR" - makedep_arguments = "-qmakedep=gcc" + CC_target = GetEnvironFallback(("CC_target", "CC"), "njsc") + makedep_arguments = "-MMD" + if CC_target == "clang": + CC_host = GetEnvironFallback(("CC_host", "CC"), "clang") + CXX_target = GetEnvironFallback(("CXX_target", "CXX"), "clang++") + CXX_host = GetEnvironFallback(("CXX_host", "CXX"), "clang++") + elif CC_target == "ibm-clang64": + CC_host = GetEnvironFallback(("CC_host", "CC"), "ibm-clang64") + CXX_target = GetEnvironFallback(("CXX_target", "CXX"), "ibm-clang++64") + CXX_host = GetEnvironFallback(("CXX_host", "CXX"), "ibm-clang++64") + elif CC_target == "ibm-clang": + CC_host = GetEnvironFallback(("CC_host", "CC"), "ibm-clang") + CXX_target = GetEnvironFallback(("CXX_target", "CXX"), "ibm-clang++") + CXX_host = GetEnvironFallback(("CXX_host", "CXX"), "ibm-clang++") + else: + # Node.js versions prior to v18: + makedep_arguments = "-qmakedep=gcc" + CC_host = GetEnvironFallback(("CC_host", "CC"), "njsc") + CXX_target = GetEnvironFallback(("CXX_target", "CXX"), "njsc++") + CXX_host = GetEnvironFallback(("CXX_host", "CXX"), "njsc++") header_params.update( { "copy_archive_args": copy_archive_arguments, "makedep_args": makedep_arguments, "link_commands": LINK_COMMANDS_OS390, - "CC.target": GetEnvironFallback(("CC_target", "CC"), "njsc"), - "CXX.target": GetEnvironFallback(("CXX_target", "CXX"), "njsc++"), - "CC.host": GetEnvironFallback(("CC_host", "CC"), "njsc"), - "CXX.host": GetEnvironFallback(("CXX_host", "CXX"), "njsc++"), + "extra_commands": SHARED_HEADER_OS390_COMMANDS, + "CC.target": CC_target, + "CXX.target": CXX_target, + "CC.host": CC_host, + "CXX.host": CXX_host, } ) elif flavor == "solaris": diff --git a/tools/gyp/pylib/gyp/generator/msvs.py b/tools/gyp/pylib/gyp/generator/msvs.py index fd950057847980..13b0794b4dccc3 100644 --- a/tools/gyp/pylib/gyp/generator/msvs.py +++ b/tools/gyp/pylib/gyp/generator/msvs.py @@ -164,7 +164,7 @@ def _FixPath(path, separator="\\"): fixpath_prefix and path and not os.path.isabs(path) - and not path[0] == "$" + and path[0] != "$" and not _IsWindowsAbsPath(path) ): path = os.path.join(fixpath_prefix, path) @@ -281,9 +281,9 @@ def _ToolSetOrAppend(tools, tool_name, setting, value, only_if_unset=False): else: value = [i.replace("/", "\\") for i in value] if not tools.get(tool_name): - tools[tool_name] = dict() + tools[tool_name] = {} tool = tools[tool_name] - if "CompileAsWinRT" == setting: + if setting == "CompileAsWinRT": return if tool.get(setting): if only_if_unset: @@ -412,10 +412,7 @@ def _BuildCommandLineForRuleRaw( return input_dir_preamble + cmd else: # Convert cat --> type to mimic unix. - if cmd[0] == "cat": - command = ["type"] - else: - command = [cmd[0].replace("/", "\\")] + command = ["type"] if cmd[0] == "cat" else [cmd[0].replace("/", "\\")] # Add call before command to ensure that commands can be tied together one # after the other without aborting in Incredibuild, since IB makes a bat # file out of the raw command string, and some commands (like python) are @@ -438,6 +435,7 @@ def _BuildCommandLineForRuleRaw( # Support a mode for using cmd directly. # Convert any paths to native form (first element is used directly). # TODO(quote): regularize quoting path names throughout the module + command[1] = '"%s"' % command[1] arguments = ['"%s"' % i for i in arguments] # Collapse into a single command. return input_dir_preamble + " ".join(command + arguments) @@ -687,7 +685,7 @@ def _GenerateExternalRules(rules, output_dir, spec, sources, options, actions_to all_outputs.update(OrderedSet(outputs)) # Only use one target from each rule as the dependency for # 'all' so we don't try to build each rule multiple times. - first_outputs.append(list(outputs)[0]) + first_outputs.append(next(iter(outputs))) # Get the unique output directories for this rule. output_dirs = [os.path.split(i)[0] for i in outputs] for od in output_dirs: @@ -756,7 +754,7 @@ def _EscapeEnvironmentVariableExpansion(s): Returns: The escaped string. - """ # noqa: E731,E123,E501 + """ s = s.replace("%", "%%") return s @@ -1189,7 +1187,7 @@ def _AddConfigurationToMSVSProject(p, spec, config_type, config_name, config): precompiled_header = config.get("msvs_precompiled_header") # Prepare the list of tools as a dictionary. - tools = dict() + tools = {} # Add in user specified msvs_settings. msvs_settings = config.get("msvs_settings", {}) MSVSSettings.ValidateMSVSSettings(msvs_settings) @@ -1384,10 +1382,7 @@ def _GetDefines(config): """ defines = [] for d in config.get("defines", []): - if type(d) == list: - fd = "=".join([str(dpart) for dpart in d]) - else: - fd = str(d) + fd = "=".join([str(dpart) for dpart in d]) if isinstance(d, list) else str(d) defines.append(fd) return defines @@ -1578,10 +1573,10 @@ def _AdjustSourcesAndConvertToFilterHierarchy( # such as ../../src/modules/module1 etc. if version.UsesVcxproj(): while ( - all([isinstance(s, MSVSProject.Filter) for s in sources]) + all(isinstance(s, MSVSProject.Filter) for s in sources) and len({s.name for s in sources}) == 1 ): - assert all([len(s.contents) == 1 for s in sources]) + assert all(len(s.contents) == 1 for s in sources) sources = [s.contents[0] for s in sources] else: while len(sources) == 1 and isinstance(sources[0], MSVSProject.Filter): @@ -1598,10 +1593,7 @@ def _IdlFilesHandledNonNatively(spec, sources): if rule["extension"] == "idl" and int(rule.get("msvs_external_rule", 0)): using_idl = True break - if using_idl: - excluded_idl = [i for i in sources if i.endswith(".idl")] - else: - excluded_idl = [] + excluded_idl = [i for i in sources if i.endswith(".idl")] if using_idl else [] return excluded_idl @@ -1819,7 +1811,7 @@ def _GetPathDict(root, path): parent, folder = os.path.split(path) parent_dict = _GetPathDict(root, parent) if folder not in parent_dict: - parent_dict[folder] = dict() + parent_dict[folder] = {} return parent_dict[folder] @@ -3013,18 +3005,26 @@ def _GetMSBuildConfigurationDetails(spec, build_file): msbuild_attributes = _GetMSBuildAttributes(spec, settings, build_file) condition = _GetConfigurationCondition(name, settings, spec) character_set = msbuild_attributes.get("CharacterSet") + vctools_version = msbuild_attributes.get("VCToolsVersion") config_type = msbuild_attributes.get("ConfigurationType") _AddConditionalProperty(properties, condition, "ConfigurationType", config_type) + spectre_mitigation = msbuild_attributes.get('SpectreMitigation') + if spectre_mitigation: + _AddConditionalProperty(properties, condition, "SpectreMitigation", + spectre_mitigation) if config_type == "Driver": _AddConditionalProperty(properties, condition, "DriverType", "WDM") _AddConditionalProperty( properties, condition, "TargetVersion", _ConfigTargetVersion(settings) ) - if character_set: - if "msvs_enable_winrt" not in spec: - _AddConditionalProperty( - properties, condition, "CharacterSet", character_set - ) + if character_set and "msvs_enable_winrt" not in spec: + _AddConditionalProperty( + properties, condition, "CharacterSet", character_set + ) + if vctools_version and "msvs_enable_winrt" not in spec: + _AddConditionalProperty( + properties, condition, "VCToolsVersion", vctools_version + ) return _GetMSBuildPropertyGroup(spec, "Configuration", properties) @@ -3104,6 +3104,10 @@ def _ConvertMSVSBuildAttributes(spec, config, build_file): msbuild_attributes[a] = _ConvertMSVSCharacterSet(msvs_attributes[a]) elif a == "ConfigurationType": msbuild_attributes[a] = _ConvertMSVSConfigurationType(msvs_attributes[a]) + elif a == "SpectreMitigation": + msbuild_attributes[a] = msvs_attributes[a] + elif a == "VCToolsVersion": + msbuild_attributes[a] = msvs_attributes[a] else: print("Warning: Do not know how to convert MSVS attribute " + a) return msbuild_attributes @@ -3326,15 +3330,14 @@ def _GetMSBuildToolSettingsSections(spec, configurations): for tool_name, tool_settings in sorted(msbuild_settings.items()): # Skip the tool named '' which is a holder of global settings handled # by _GetMSBuildConfigurationGlobalProperties. - if tool_name: - if tool_settings: - tool = [tool_name] - for name, value in sorted(tool_settings.items()): - formatted_value = _GetValueFormattedForMSBuild( - tool_name, name, value - ) - tool.append([name, formatted_value]) - group.append(tool) + if tool_name and tool_settings: + tool = [tool_name] + for name, value in sorted(tool_settings.items()): + formatted_value = _GetValueFormattedForMSBuild( + tool_name, name, value + ) + tool.append([name, formatted_value]) + group.append(tool) groups.append(group) return groups @@ -3462,10 +3465,7 @@ def _GetValueFormattedForMSBuild(tool_name, name, value): "Link": ["AdditionalOptions"], "Lib": ["AdditionalOptions"], } - if tool_name in exceptions and name in exceptions[tool_name]: - char = " " - else: - char = ";" + char = " " if name in exceptions.get(tool_name, []) else ";" formatted_value = char.join( [MSVSSettings.ConvertVCMacrosToMSBuild(i) for i in value] ) diff --git a/tools/gyp/pylib/gyp/generator/ninja.py b/tools/gyp/pylib/gyp/generator/ninja.py index 3db3771ac97855..8ba341e96d3f0d 100644 --- a/tools/gyp/pylib/gyp/generator/ninja.py +++ b/tools/gyp/pylib/gyp/generator/ninja.py @@ -1583,7 +1583,7 @@ def WriteTarget(self, spec, config_name, config, link_deps, compile_deps): elif spec["type"] == "static_library": self.target.binary = self.ComputeOutput(spec) if ( - self.flavor not in ("mac", "openbsd", "netbsd", "win") + self.flavor not in ("ios", "mac", "netbsd", "openbsd", "win") and not self.is_standalone_static_library ): self.ninja.build( @@ -1815,10 +1815,7 @@ def ComputeOutputFileName(self, spec, type=None): "executable": default_variables["EXECUTABLE_SUFFIX"], } extension = spec.get("product_extension") - if extension: - extension = "." + extension - else: - extension = DEFAULT_EXTENSION.get(type, "") + extension = "." + extension if extension else DEFAULT_EXTENSION.get(type, "") if "product_name" in spec: # If we were given an explicit name, use that. @@ -2496,7 +2493,7 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params, config_name ), ) - if flavor != "mac" and flavor != "win": + if flavor not in ("ios", "mac", "win"): master_ninja.rule( "alink", description="AR $out", @@ -2533,7 +2530,7 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params, config_name description="SOLINK $lib", restat=True, command=mtime_preserving_solink_base - % {"suffix": "@$link_file_list"}, # noqa: E501 + % {"suffix": "@$link_file_list"}, rspfile="$link_file_list", rspfile_content=( "-Wl,--whole-archive $in $solibs -Wl," "--no-whole-archive $libs" diff --git a/tools/gyp/pylib/gyp/generator/xcode.py b/tools/gyp/pylib/gyp/generator/xcode.py index 2f4d17e514e439..1ac672c3876bd9 100644 --- a/tools/gyp/pylib/gyp/generator/xcode.py +++ b/tools/gyp/pylib/gyp/generator/xcode.py @@ -439,7 +439,7 @@ def Finalize2(self, xcode_targets, xcode_target_to_target_dict): # it opens the project file, which will result in unnecessary diffs. # TODO(mark): This is evil because it relies on internal knowledge of # PBXProject._other_pbxprojects. - for other_pbxproject in self.project._other_pbxprojects.keys(): + for other_pbxproject in self.project._other_pbxprojects: self.project.AddOrGetProjectReference(other_pbxproject) self.project.SortRemoteProductReferences() @@ -1118,10 +1118,7 @@ def GenerateOutput(target_list, target_dicts, data, params): for concrete_output_index, concrete_output in enumerate( concrete_outputs ): - if concrete_output_index == 0: - bol = "" - else: - bol = " " + bol = "" if concrete_output_index == 0 else " " makefile.write(f"{bol}{concrete_output} \\\n") concrete_output_dir = posixpath.dirname(concrete_output) diff --git a/tools/gyp/pylib/gyp/input.py b/tools/gyp/pylib/gyp/input.py index 354958bfb2ab55..8f39519dee51fb 100644 --- a/tools/gyp/pylib/gyp/input.py +++ b/tools/gyp/pylib/gyp/input.py @@ -16,9 +16,9 @@ import sys import threading import traceback -from distutils.version import StrictVersion from gyp.common import GypError from gyp.common import OrderedSet +from packaging.version import Version # A list of types that are treated as linkable. linkable_types = [ @@ -225,7 +225,7 @@ def LoadOneBuildFile(build_file_path, data, aux_data, includes, is_target, check return data[build_file_path] if os.path.exists(build_file_path): - build_file_contents = open(build_file_path, encoding='utf-8').read() + build_file_contents = open(build_file_path, encoding="utf-8").read() else: raise GypError(f"{build_file_path} not found (cwd: {os.getcwd()})") @@ -870,10 +870,7 @@ def ExpandVariables(input, phase, variables, build_file): # This works around actions/rules which have more inputs than will # fit on the command line. if file_list: - if type(contents) is list: - contents_list = contents - else: - contents_list = contents.split(" ") + contents_list = contents if type(contents) is list else contents.split(" ") replacement = contents_list[0] if os.path.isabs(replacement): raise GypError('| cannot handle absolute paths, got "%s"' % replacement) @@ -961,13 +958,13 @@ def ExpandVariables(input, phase, variables, build_file): # Fix up command with platform specific workarounds. contents = FixupPlatformCommand(contents) try: - p = subprocess.Popen( + # stderr will be printed no matter what + result = subprocess.run( contents, - shell=use_shell, stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - stdin=subprocess.PIPE, + shell=use_shell, cwd=build_file_dir, + check=False ) except Exception as e: raise GypError( @@ -975,19 +972,12 @@ def ExpandVariables(input, phase, variables, build_file): % (e, contents, build_file) ) - p_stdout, p_stderr = p.communicate("") - p_stdout = p_stdout.decode("utf-8") - p_stderr = p_stderr.decode("utf-8") - - if p.wait() != 0 or p_stderr: - sys.stderr.write(p_stderr) - # Simulate check_call behavior, since check_call only exists - # in python 2.5 and later. + if result.returncode > 0: raise GypError( "Call to '%s' returned exit status %d while in %s." - % (contents, p.returncode, build_file) + % (contents, result.returncode, build_file) ) - replacement = p_stdout.rstrip() + replacement = result.stdout.decode("utf-8").rstrip() cached_command_results[cache_key] = replacement else: @@ -1190,7 +1180,7 @@ def EvalSingleCondition(cond_expr, true_dict, false_dict, phase, variables, buil else: ast_code = compile(cond_expr_expanded, "", "eval") cached_conditions_asts[cond_expr_expanded] = ast_code - env = {"__builtins__": {}, "v": StrictVersion} + env = {"__builtins__": {}, "v": Version} if eval(ast_code, env, variables): return true_dict return false_dict @@ -1586,14 +1576,12 @@ def ExpandWildcardDependencies(targets, data): continue dependency_target_name = dependency_target_dict["target_name"] if ( - dependency_target != "*" - and dependency_target != dependency_target_name + dependency_target not in {"*", dependency_target_name} ): continue dependency_target_toolset = dependency_target_dict["toolset"] if ( - dependency_toolset != "*" - and dependency_toolset != dependency_target_toolset + dependency_toolset not in {"*", dependency_target_toolset} ): continue dependency = gyp.common.QualifiedTarget( @@ -1637,15 +1625,14 @@ def RemoveSelfDependencies(targets): dependencies = target_dict.get(dependency_key, []) if dependencies: for t in dependencies: - if t == target_name: - if ( - targets[t] - .get("variables", {}) - .get("prune_self_dependency", 0) - ): - target_dict[dependency_key] = Filter( - dependencies, target_name - ) + if t == target_name and ( + targets[t] + .get("variables", {}) + .get("prune_self_dependency", 0) + ): + target_dict[dependency_key] = Filter( + dependencies, target_name + ) def RemoveLinkDependenciesFromNoneTargets(targets): @@ -2245,10 +2232,7 @@ def is_in_set_or_list(x, s, items): singleton = False if type(item) in (str, int): # The cheap and easy case. - if is_paths: - to_item = MakePathRelative(to_file, fro_file, item) - else: - to_item = item + to_item = MakePathRelative(to_file, fro_file, item) if is_paths else item if not (type(item) is str and item.startswith("-")): # Any string that doesn't begin with a "-" is a singleton - it can @@ -2474,10 +2458,7 @@ def SetUpConfigurations(target, target_dict): new_configuration_dict = {} for (key, target_val) in target_dict.items(): key_ext = key[-1:] - if key_ext in key_suffixes: - key_base = key[:-1] - else: - key_base = key + key_base = key[:-1] if key_ext in key_suffixes else key if key_base not in non_configuration_keys: new_configuration_dict[key] = gyp.simple_copy.deepcopy(target_val) @@ -2489,7 +2470,7 @@ def SetUpConfigurations(target, target_dict): merged_configurations[configuration] = new_configuration_dict # Put the new configurations back into the target dict as a configuration. - for configuration in merged_configurations.keys(): + for configuration in merged_configurations: target_dict["configurations"][configuration] = merged_configurations[ configuration ] @@ -2506,19 +2487,16 @@ def SetUpConfigurations(target, target_dict): delete_keys = [] for key in target_dict: key_ext = key[-1:] - if key_ext in key_suffixes: - key_base = key[:-1] - else: - key_base = key + key_base = key[:-1] if key_ext in key_suffixes else key if key_base not in non_configuration_keys: delete_keys.append(key) for key in delete_keys: del target_dict[key] # Check the configurations to see if they contain invalid keys. - for configuration in target_dict["configurations"].keys(): + for configuration in target_dict["configurations"]: configuration_dict = target_dict["configurations"][configuration] - for key in configuration_dict.keys(): + for key in configuration_dict: if key in invalid_configuration_keys: raise GypError( "%s not allowed in the %s configuration, found in " @@ -2561,7 +2539,7 @@ def ProcessListFiltersInDict(name, the_dict): del_lists = [] for key, value in the_dict.items(): operation = key[-1] - if operation != "!" and operation != "/": + if operation not in {"!", "/"}: continue if type(value) is not list: diff --git a/tools/gyp/pylib/gyp/msvs_emulation.py b/tools/gyp/pylib/gyp/msvs_emulation.py index 5b9c2712e091b4..38fa21dd666697 100644 --- a/tools/gyp/pylib/gyp/msvs_emulation.py +++ b/tools/gyp/pylib/gyp/msvs_emulation.py @@ -93,7 +93,7 @@ def _AddPrefix(element, prefix): if element is None: return element # Note, not Iterable because we don't want to handle strings like that. - if isinstance(element, list) or isinstance(element, tuple): + if isinstance(element, (list, tuple)): return [prefix + e for e in element] else: return prefix + element @@ -105,7 +105,7 @@ def _DoRemapping(element, map): if map is not None and element is not None: if not callable(map): map = map.get # Assume it's a dict, otherwise a callable to do the remap. - if isinstance(element, list) or isinstance(element, tuple): + if isinstance(element, (list, tuple)): element = filter(None, [map(elem) for elem in element]) else: element = map(element) @@ -117,7 +117,7 @@ def _AppendOrReturn(append, element): then add |element| to it, adding each item in |element| if it's a list or tuple.""" if append is not None and element is not None: - if isinstance(element, list) or isinstance(element, tuple): + if isinstance(element, (list, tuple)): append.extend(element) else: append.append(element) @@ -183,7 +183,7 @@ def ExtractSharedMSVSSystemIncludes(configs, generator_flags): expanded_system_includes = OrderedSet( [ExpandMacros(include, env) for include in all_system_includes] ) - if any(["$" in include for include in expanded_system_includes]): + if any("$" in include for include in expanded_system_includes): # Some path relies on target-specific variables, bail. return None @@ -255,10 +255,7 @@ def GetVSMacroEnv(self, base_to_build=None, config=None): """Get a dict of variables mapping internal VS macro names to their gyp equivalents.""" target_arch = self.GetArch(config) - if target_arch == "x86": - target_platform = "Win32" - else: - target_platform = target_arch + target_platform = "Win32" if target_arch == "x86" else target_arch target_name = self.spec.get("product_prefix", "") + self.spec.get( "product_name", self.spec["target_name"] ) @@ -738,10 +735,7 @@ def GetLdflags( # TODO(scottmg): This should sort of be somewhere else (not really a flag). ld("AdditionalDependencies", prefix="") - if self.GetArch(config) == "x86": - safeseh_default = "true" - else: - safeseh_default = None + safeseh_default = "true" if self.GetArch(config) == "x86" else None ld( "ImageHasSafeExceptionHandlers", map={"false": ":NO", "true": ""}, @@ -960,15 +954,12 @@ def GetRuleShellFlags(self, rule): def _HasExplicitRuleForExtension(self, spec, extension): """Determine if there's an explicit rule for a particular extension.""" - for rule in spec.get("rules", []): - if rule["extension"] == extension: - return True - return False + return any(rule["extension"] == extension for rule in spec.get("rules", [])) def _HasExplicitIdlActions(self, spec): """Determine if an action should not run midl for .idl files.""" return any( - [action.get("explicit_idl_action", 0) for action in spec.get("actions", [])] + action.get("explicit_idl_action", 0) for action in spec.get("actions", []) ) def HasExplicitIdlRulesOrActions(self, spec): diff --git a/tools/gyp/pylib/gyp/win_tool.py b/tools/gyp/pylib/gyp/win_tool.py index 638eee40029411..171d7295747fcd 100755 --- a/tools/gyp/pylib/gyp/win_tool.py +++ b/tools/gyp/pylib/gyp/win_tool.py @@ -219,11 +219,10 @@ def ExecLinkWithManifests( our_manifest = "%(out)s.manifest" % variables # Load and normalize the manifests. mt.exe sometimes removes whitespace, # and sometimes doesn't unfortunately. - with open(our_manifest) as our_f: - with open(assert_manifest) as assert_f: - translator = str.maketrans('', '', string.whitespace) - our_data = our_f.read().translate(translator) - assert_data = assert_f.read().translate(translator) + with open(our_manifest) as our_f, open(assert_manifest) as assert_f: + translator = str.maketrans("", "", string.whitespace) + our_data = our_f.read().translate(translator) + assert_data = assert_f.read().translate(translator) if our_data != assert_data: os.unlink(out) diff --git a/tools/gyp/pylib/gyp/xcode_emulation.py b/tools/gyp/pylib/gyp/xcode_emulation.py index a75d8eeab7bda0..29caf1ce7fbb97 100644 --- a/tools/gyp/pylib/gyp/xcode_emulation.py +++ b/tools/gyp/pylib/gyp/xcode_emulation.py @@ -685,10 +685,7 @@ def GetCflags(self, configname, arch=None): if platform_root: cflags.append("-F" + platform_root + "/Developer/Library/Frameworks/") - if sdk_root: - framework_root = sdk_root - else: - framework_root = "" + framework_root = sdk_root if sdk_root else "" config = self.spec["configurations"][self.configname] framework_dirs = config.get("mac_framework_dirs", []) for directory in framework_dirs: @@ -1248,10 +1245,7 @@ def _AdjustLibrary(self, library, config_name=None): l_flag = "-framework " + os.path.splitext(os.path.basename(library))[0] else: m = self.library_re.match(library) - if m: - l_flag = "-l" + m.group(1) - else: - l_flag = library + l_flag = "-l" + m.group(1) if m else library sdk_root = self._SdkPath(config_name) if not sdk_root: @@ -1545,7 +1539,7 @@ def CLTVersion(): except GypError: continue - regex = re.compile(r'Command Line Tools for Xcode\s+(?P\S+)') + regex = re.compile(r"Command Line Tools for Xcode\s+(?P\S+)") try: output = GetStdout(["/usr/sbin/softwareupdate", "--history"]) return re.search(regex, output).groupdict()["version"] diff --git a/tools/gyp/pylib/gyp/xcodeproj_file.py b/tools/gyp/pylib/gyp/xcodeproj_file.py index 076eea37211179..33c667c266bf69 100644 --- a/tools/gyp/pylib/gyp/xcodeproj_file.py +++ b/tools/gyp/pylib/gyp/xcodeproj_file.py @@ -971,7 +971,7 @@ def __init__(self, properties=None, id=None, parent=None): if "path" in self._properties and "name" not in self._properties: path = self._properties["path"] name = posixpath.basename(path) - if name != "" and path != name: + if name not in ("", path): self.SetProperty("name", name) if "path" in self._properties and ( @@ -2355,9 +2355,8 @@ def __init__( # property was supplied, set "productName" if it is not present. Also set # the "PRODUCT_NAME" build setting in each configuration, but only if # the setting is not present in any build configuration. - if "name" in self._properties: - if "productName" not in self._properties: - self.SetProperty("productName", self._properties["name"]) + if "name" in self._properties and "productName" not in self._properties: + self.SetProperty("productName", self._properties["name"]) if "productName" in self._properties: if "buildConfigurationList" in self._properties: @@ -2547,13 +2546,12 @@ def __init__( force_extension = suffix[1:] if ( - self._properties["productType"] - == "com.apple.product-type-bundle.unit.test" - or self._properties["productType"] - == "com.apple.product-type-bundle.ui-testing" - ): - if force_extension is None: - force_extension = suffix[1:] + self._properties["productType"] in { + "com.apple.product-type-bundle.unit.test", + "com.apple.product-type-bundle.ui-testing" + } + ) and force_extension is None: + force_extension = suffix[1:] if force_extension is not None: # If it's a wrapper (bundle), set WRAPPER_EXTENSION. @@ -2636,10 +2634,13 @@ def HeadersPhase(self): # frameworks phases, if any. insert_at = len(self._properties["buildPhases"]) for index, phase in enumerate(self._properties["buildPhases"]): - if ( - isinstance(phase, PBXResourcesBuildPhase) - or isinstance(phase, PBXSourcesBuildPhase) - or isinstance(phase, PBXFrameworksBuildPhase) + if isinstance( + phase, + ( + PBXResourcesBuildPhase, + PBXSourcesBuildPhase, + PBXFrameworksBuildPhase, + ), ): insert_at = index break @@ -2658,9 +2659,7 @@ def ResourcesPhase(self): # phases, if any. insert_at = len(self._properties["buildPhases"]) for index, phase in enumerate(self._properties["buildPhases"]): - if isinstance(phase, PBXSourcesBuildPhase) or isinstance( - phase, PBXFrameworksBuildPhase - ): + if isinstance(phase, (PBXSourcesBuildPhase, PBXFrameworksBuildPhase)): insert_at = index break @@ -2701,8 +2700,10 @@ def AddDependency(self, other): other._properties["productType"] == static_library_type or ( ( - other._properties["productType"] == shared_library_type - or other._properties["productType"] == framework_type + other._properties["productType"] in { + shared_library_type, + framework_type + } ) and ( (not other.HasBuildSetting("MACH_O_TYPE")) @@ -2770,7 +2771,7 @@ def __init__(self, properties=None, id=None, parent=None, path=None): self.path = path self._other_pbxprojects = {} # super - return XCContainerPortal.__init__(self, properties, id, parent) + XCContainerPortal.__init__(self, properties, id, parent) def Name(self): name = self.path @@ -2990,7 +2991,7 @@ def AddOrGetProjectReference(self, other_pbxproject): # Xcode seems to sort this list case-insensitively self._properties["projectReferences"] = sorted( self._properties["projectReferences"], - key=lambda x: x["ProjectRef"].Name().lower + key=lambda x: x["ProjectRef"].Name().lower() ) else: # The link already exists. Pull out the relevnt data. diff --git a/tools/gyp/pylib/packaging/LICENSE b/tools/gyp/pylib/packaging/LICENSE new file mode 100644 index 00000000000000..6f62d44e4ef733 --- /dev/null +++ b/tools/gyp/pylib/packaging/LICENSE @@ -0,0 +1,3 @@ +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made +under the terms of *both* these licenses. diff --git a/tools/gyp/pylib/packaging/LICENSE.APACHE b/tools/gyp/pylib/packaging/LICENSE.APACHE new file mode 100644 index 00000000000000..f433b1a53f5b83 --- /dev/null +++ b/tools/gyp/pylib/packaging/LICENSE.APACHE @@ -0,0 +1,177 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/tools/gyp/pylib/packaging/LICENSE.BSD b/tools/gyp/pylib/packaging/LICENSE.BSD new file mode 100644 index 00000000000000..42ce7b75c92fb0 --- /dev/null +++ b/tools/gyp/pylib/packaging/LICENSE.BSD @@ -0,0 +1,23 @@ +Copyright (c) Donald Stufft and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER 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. diff --git a/tools/gyp/pylib/packaging/__init__.py b/tools/gyp/pylib/packaging/__init__.py new file mode 100644 index 00000000000000..5fd91838316fbe --- /dev/null +++ b/tools/gyp/pylib/packaging/__init__.py @@ -0,0 +1,15 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +__title__ = "packaging" +__summary__ = "Core utilities for Python packages" +__uri__ = "https://github.com/pypa/packaging" + +__version__ = "23.3.dev0" + +__author__ = "Donald Stufft and individual contributors" +__email__ = "donald@stufft.io" + +__license__ = "BSD-2-Clause or Apache-2.0" +__copyright__ = "2014 %s" % __author__ diff --git a/tools/gyp/pylib/packaging/_elffile.py b/tools/gyp/pylib/packaging/_elffile.py new file mode 100644 index 00000000000000..6fb19b30bb53c1 --- /dev/null +++ b/tools/gyp/pylib/packaging/_elffile.py @@ -0,0 +1,108 @@ +""" +ELF file parser. + +This provides a class ``ELFFile`` that parses an ELF executable in a similar +interface to ``ZipFile``. Only the read interface is implemented. + +Based on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca +ELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html +""" + +import enum +import os +import struct +from typing import IO, Optional, Tuple + + +class ELFInvalid(ValueError): + pass + + +class EIClass(enum.IntEnum): + C32 = 1 + C64 = 2 + + +class EIData(enum.IntEnum): + Lsb = 1 + Msb = 2 + + +class EMachine(enum.IntEnum): + I386 = 3 + S390 = 22 + Arm = 40 + X8664 = 62 + AArc64 = 183 + + +class ELFFile: + """ + Representation of an ELF executable. + """ + + def __init__(self, f: IO[bytes]) -> None: + self._f = f + + try: + ident = self._read("16B") + except struct.error: + raise ELFInvalid("unable to parse identification") + magic = bytes(ident[:4]) + if magic != b"\x7fELF": + raise ELFInvalid(f"invalid magic: {magic!r}") + + self.capacity = ident[4] # Format for program header (bitness). + self.encoding = ident[5] # Data structure encoding (endianness). + + try: + # e_fmt: Format for program header. + # p_fmt: Format for section header. + # p_idx: Indexes to find p_type, p_offset, and p_filesz. + e_fmt, self._p_fmt, self._p_idx = { + (1, 1): ("HHIIIIIHHH", ">IIIIIIII", (0, 1, 4)), # 32-bit MSB. + (2, 1): ("HHIQQQIHHH", ">IIQQQQQQ", (0, 2, 5)), # 64-bit MSB. + }[(self.capacity, self.encoding)] + except KeyError: + raise ELFInvalid( + f"unrecognized capacity ({self.capacity}) or " + f"encoding ({self.encoding})" + ) + + try: + ( + _, + self.machine, # Architecture type. + _, + _, + self._e_phoff, # Offset of program header. + _, + self.flags, # Processor-specific flags. + _, + self._e_phentsize, # Size of section. + self._e_phnum, # Number of sections. + ) = self._read(e_fmt) + except struct.error as e: + raise ELFInvalid("unable to parse machine and section information") from e + + def _read(self, fmt: str) -> Tuple[int, ...]: + return struct.unpack(fmt, self._f.read(struct.calcsize(fmt))) + + @property + def interpreter(self) -> Optional[str]: + """ + The path recorded in the ``PT_INTERP`` section header. + """ + for index in range(self._e_phnum): + self._f.seek(self._e_phoff + self._e_phentsize * index) + try: + data = self._read(self._p_fmt) + except struct.error: + continue + if data[self._p_idx[0]] != 3: # Not PT_INTERP. + continue + self._f.seek(data[self._p_idx[1]]) + return os.fsdecode(self._f.read(data[self._p_idx[2]])).strip("\0") + return None diff --git a/tools/gyp/pylib/packaging/_manylinux.py b/tools/gyp/pylib/packaging/_manylinux.py new file mode 100644 index 00000000000000..3705d50db9193e --- /dev/null +++ b/tools/gyp/pylib/packaging/_manylinux.py @@ -0,0 +1,252 @@ +import collections +import contextlib +import functools +import os +import re +import sys +import warnings +from typing import Dict, Generator, Iterator, NamedTuple, Optional, Sequence, Tuple + +from ._elffile import EIClass, EIData, ELFFile, EMachine + +EF_ARM_ABIMASK = 0xFF000000 +EF_ARM_ABI_VER5 = 0x05000000 +EF_ARM_ABI_FLOAT_HARD = 0x00000400 + + +# `os.PathLike` not a generic type until Python 3.9, so sticking with `str` +# as the type for `path` until then. +@contextlib.contextmanager +def _parse_elf(path: str) -> Generator[Optional[ELFFile], None, None]: + try: + with open(path, "rb") as f: + yield ELFFile(f) + except (OSError, TypeError, ValueError): + yield None + + +def _is_linux_armhf(executable: str) -> bool: + # hard-float ABI can be detected from the ELF header of the running + # process + # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.Arm + and f.flags & EF_ARM_ABIMASK == EF_ARM_ABI_VER5 + and f.flags & EF_ARM_ABI_FLOAT_HARD == EF_ARM_ABI_FLOAT_HARD + ) + + +def _is_linux_i686(executable: str) -> bool: + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.I386 + ) + + +def _have_compatible_abi(executable: str, archs: Sequence[str]) -> bool: + if "armv7l" in archs: + return _is_linux_armhf(executable) + if "i686" in archs: + return _is_linux_i686(executable) + allowed_archs = {"x86_64", "aarch64", "ppc64", "ppc64le", "s390x", "loongarch64"} + return any(arch in allowed_archs for arch in archs) + + +# If glibc ever changes its major version, we need to know what the last +# minor version was, so we can build the complete list of all versions. +# For now, guess what the highest minor version might be, assume it will +# be 50 for testing. Once this actually happens, update the dictionary +# with the actual value. +_LAST_GLIBC_MINOR: Dict[int, int] = collections.defaultdict(lambda: 50) + + +class _GLibCVersion(NamedTuple): + major: int + minor: int + + +def _glibc_version_string_confstr() -> Optional[str]: + """ + Primary implementation of glibc_version_string using os.confstr. + """ + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module. + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 + try: + # Should be a string like "glibc 2.17". + version_string: str = getattr(os, "confstr")("CS_GNU_LIBC_VERSION") + assert version_string is not None + _, version = version_string.rsplit() + except (AssertionError, AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def _glibc_version_string_ctypes() -> Optional[str]: + """ + Fallback implementation of glibc_version_string using ctypes. + """ + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +def _glibc_version_string() -> Optional[str]: + """Returns glibc version string, or None if not using glibc.""" + return _glibc_version_string_confstr() or _glibc_version_string_ctypes() + + +def _parse_glibc_version(version_str: str) -> Tuple[int, int]: + """Parse glibc version. + + We use a regexp instead of str.split because we want to discard any + random junk that might come after the minor version -- this might happen + in patched/forked versions of glibc (e.g. Linaro's version of glibc + uses version strings like "2.20-2014.11"). See gh-3588. + """ + m = re.match(r"(?P[0-9]+)\.(?P[0-9]+)", version_str) + if not m: + warnings.warn( + f"Expected glibc version with 2 components major.minor," + f" got: {version_str}", + RuntimeWarning, + ) + return -1, -1 + return int(m.group("major")), int(m.group("minor")) + + +@functools.lru_cache() +def _get_glibc_version() -> Tuple[int, int]: + version_str = _glibc_version_string() + if version_str is None: + return (-1, -1) + return _parse_glibc_version(version_str) + + +# From PEP 513, PEP 600 +def _is_compatible(arch: str, version: _GLibCVersion) -> bool: + sys_glibc = _get_glibc_version() + if sys_glibc < version: + return False + # Check for presence of _manylinux module. + try: + import _manylinux # noqa + except ImportError: + return True + if hasattr(_manylinux, "manylinux_compatible"): + result = _manylinux.manylinux_compatible(version[0], version[1], arch) + if result is not None: + return bool(result) + return True + if version == _GLibCVersion(2, 5): + if hasattr(_manylinux, "manylinux1_compatible"): + return bool(_manylinux.manylinux1_compatible) + if version == _GLibCVersion(2, 12): + if hasattr(_manylinux, "manylinux2010_compatible"): + return bool(_manylinux.manylinux2010_compatible) + if version == _GLibCVersion(2, 17): + if hasattr(_manylinux, "manylinux2014_compatible"): + return bool(_manylinux.manylinux2014_compatible) + return True + + +_LEGACY_MANYLINUX_MAP = { + # CentOS 7 w/ glibc 2.17 (PEP 599) + (2, 17): "manylinux2014", + # CentOS 6 w/ glibc 2.12 (PEP 571) + (2, 12): "manylinux2010", + # CentOS 5 w/ glibc 2.5 (PEP 513) + (2, 5): "manylinux1", +} + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate manylinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be manylinux-compatible. + + :returns: An iterator of compatible manylinux tags. + """ + if not _have_compatible_abi(sys.executable, archs): + return + # Oldest glibc to be supported regardless of architecture is (2, 17). + too_old_glibc2 = _GLibCVersion(2, 16) + if set(archs) & {"x86_64", "i686"}: + # On x86/i686 also oldest glibc to be supported is (2, 5). + too_old_glibc2 = _GLibCVersion(2, 4) + current_glibc = _GLibCVersion(*_get_glibc_version()) + glibc_max_list = [current_glibc] + # We can assume compatibility across glibc major versions. + # https://sourceware.org/bugzilla/show_bug.cgi?id=24636 + # + # Build a list of maximum glibc versions so that we can + # output the canonical list of all glibc from current_glibc + # down to too_old_glibc2, including all intermediary versions. + for glibc_major in range(current_glibc.major - 1, 1, -1): + glibc_minor = _LAST_GLIBC_MINOR[glibc_major] + glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor)) + for arch in archs: + for glibc_max in glibc_max_list: + if glibc_max.major == too_old_glibc2.major: + min_minor = too_old_glibc2.minor + else: + # For other glibc major versions oldest supported is (x, 0). + min_minor = -1 + for glibc_minor in range(glibc_max.minor, min_minor, -1): + glibc_version = _GLibCVersion(glibc_max.major, glibc_minor) + tag = "manylinux_{}_{}".format(*glibc_version) + if _is_compatible(arch, glibc_version): + yield f"{tag}_{arch}" + # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. + if glibc_version in _LEGACY_MANYLINUX_MAP: + legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] + if _is_compatible(arch, glibc_version): + yield f"{legacy_tag}_{arch}" diff --git a/tools/gyp/pylib/packaging/_musllinux.py b/tools/gyp/pylib/packaging/_musllinux.py new file mode 100644 index 00000000000000..86419df9d7087f --- /dev/null +++ b/tools/gyp/pylib/packaging/_musllinux.py @@ -0,0 +1,83 @@ +"""PEP 656 support. + +This module implements logic to detect if the currently running Python is +linked against musl, and what musl version is used. +""" + +import functools +import re +import subprocess +import sys +from typing import Iterator, NamedTuple, Optional, Sequence + +from ._elffile import ELFFile + + +class _MuslVersion(NamedTuple): + major: int + minor: int + + +def _parse_musl_version(output: str) -> Optional[_MuslVersion]: + lines = [n for n in (n.strip() for n in output.splitlines()) if n] + if len(lines) < 2 or lines[0][:4] != "musl": + return None + m = re.match(r"Version (\d+)\.(\d+)", lines[1]) + if not m: + return None + return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2))) + + +@functools.lru_cache() +def _get_musl_version(executable: str) -> Optional[_MuslVersion]: + """Detect currently-running musl runtime version. + + This is done by checking the specified executable's dynamic linking + information, and invoking the loader to parse its output for a version + string. If the loader is musl, the output would be something like:: + + musl libc (x86_64) + Version 1.2.2 + Dynamic Program Loader + """ + try: + with open(executable, "rb") as f: + ld = ELFFile(f).interpreter + except (OSError, TypeError, ValueError): + return None + if ld is None or "musl" not in ld: + return None + proc = subprocess.run([ld], stderr=subprocess.PIPE, text=True) + return _parse_musl_version(proc.stderr) + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate musllinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be musllinux-compatible. + + :returns: An iterator of compatible musllinux tags. + """ + sys_musl = _get_musl_version(sys.executable) + if sys_musl is None: # Python not dynamically linked against musl. + return + for arch in archs: + for minor in range(sys_musl.minor, -1, -1): + yield f"musllinux_{sys_musl.major}_{minor}_{arch}" + + +if __name__ == "__main__": # pragma: no cover + import sysconfig + + plat = sysconfig.get_platform() + assert plat.startswith("linux-"), "not linux" + + print("plat:", plat) + print("musl:", _get_musl_version(sys.executable)) + print("tags:", end=" ") + for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])): + print(t, end="\n ") diff --git a/tools/gyp/pylib/packaging/_parser.py b/tools/gyp/pylib/packaging/_parser.py new file mode 100644 index 00000000000000..4576981c2dd755 --- /dev/null +++ b/tools/gyp/pylib/packaging/_parser.py @@ -0,0 +1,359 @@ +"""Handwritten parser of dependency specifiers. + +The docstring for each __parse_* function contains ENBF-inspired grammar representing +the implementation. +""" + +import ast +from typing import Any, List, NamedTuple, Optional, Tuple, Union + +from ._tokenizer import DEFAULT_RULES, Tokenizer + + +class Node: + def __init__(self, value: str) -> None: + self.value = value + + def __str__(self) -> str: + return self.value + + def __repr__(self) -> str: + return f"<{self.__class__.__name__}('{self}')>" + + def serialize(self) -> str: + raise NotImplementedError + + +class Variable(Node): + def serialize(self) -> str: + return str(self) + + +class Value(Node): + def serialize(self) -> str: + return f'"{self}"' + + +class Op(Node): + def serialize(self) -> str: + return str(self) + + +MarkerVar = Union[Variable, Value] +MarkerItem = Tuple[MarkerVar, Op, MarkerVar] +# MarkerAtom = Union[MarkerItem, List["MarkerAtom"]] +# MarkerList = List[Union["MarkerList", MarkerAtom, str]] +# mypy does not support recursive type definition +# https://github.com/python/mypy/issues/731 +MarkerAtom = Any +MarkerList = List[Any] + + +class ParsedRequirement(NamedTuple): + name: str + url: str + extras: List[str] + specifier: str + marker: Optional[MarkerList] + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for dependency specifier +# -------------------------------------------------------------------------------------- +def parse_requirement(source: str) -> ParsedRequirement: + return _parse_requirement(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_requirement(tokenizer: Tokenizer) -> ParsedRequirement: + """ + requirement = WS? IDENTIFIER WS? extras WS? requirement_details + """ + tokenizer.consume("WS") + + name_token = tokenizer.expect( + "IDENTIFIER", expected="package name at the start of dependency specifier" + ) + name = name_token.text + tokenizer.consume("WS") + + extras = _parse_extras(tokenizer) + tokenizer.consume("WS") + + url, specifier, marker = _parse_requirement_details(tokenizer) + tokenizer.expect("END", expected="end of dependency specifier") + + return ParsedRequirement(name, url, extras, specifier, marker) + + +def _parse_requirement_details( + tokenizer: Tokenizer, +) -> Tuple[str, str, Optional[MarkerList]]: + """ + requirement_details = AT URL (WS requirement_marker?)? + | specifier WS? (requirement_marker)? + """ + + specifier = "" + url = "" + marker = None + + if tokenizer.check("AT"): + tokenizer.read() + tokenizer.consume("WS") + + url_start = tokenizer.position + url = tokenizer.expect("URL", expected="URL after @").text + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + tokenizer.expect("WS", expected="whitespace after URL") + + # The input might end after whitespace. + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, span_start=url_start, after="URL and whitespace" + ) + else: + specifier_start = tokenizer.position + specifier = _parse_specifier(tokenizer) + tokenizer.consume("WS") + + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, + span_start=specifier_start, + after=( + "version specifier" + if specifier + else "name and no valid version specifier" + ), + ) + + return (url, specifier, marker) + + +def _parse_requirement_marker( + tokenizer: Tokenizer, *, span_start: int, after: str +) -> MarkerList: + """ + requirement_marker = SEMICOLON marker WS? + """ + + if not tokenizer.check("SEMICOLON"): + tokenizer.raise_syntax_error( + f"Expected end or semicolon (after {after})", + span_start=span_start, + ) + tokenizer.read() + + marker = _parse_marker(tokenizer) + tokenizer.consume("WS") + + return marker + + +def _parse_extras(tokenizer: Tokenizer) -> List[str]: + """ + extras = (LEFT_BRACKET wsp* extras_list? wsp* RIGHT_BRACKET)? + """ + if not tokenizer.check("LEFT_BRACKET", peek=True): + return [] + + with tokenizer.enclosing_tokens( + "LEFT_BRACKET", + "RIGHT_BRACKET", + around="extras", + ): + tokenizer.consume("WS") + extras = _parse_extras_list(tokenizer) + tokenizer.consume("WS") + + return extras + + +def _parse_extras_list(tokenizer: Tokenizer) -> List[str]: + """ + extras_list = identifier (wsp* ',' wsp* identifier)* + """ + extras: List[str] = [] + + if not tokenizer.check("IDENTIFIER"): + return extras + + extras.append(tokenizer.read().text) + + while True: + tokenizer.consume("WS") + if tokenizer.check("IDENTIFIER", peek=True): + tokenizer.raise_syntax_error("Expected comma between extra names") + elif not tokenizer.check("COMMA"): + break + + tokenizer.read() + tokenizer.consume("WS") + + extra_token = tokenizer.expect("IDENTIFIER", expected="extra name after comma") + extras.append(extra_token.text) + + return extras + + +def _parse_specifier(tokenizer: Tokenizer) -> str: + """ + specifier = LEFT_PARENTHESIS WS? version_many WS? RIGHT_PARENTHESIS + | WS? version_many WS? + """ + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="version specifier", + ): + tokenizer.consume("WS") + parsed_specifiers = _parse_version_many(tokenizer) + tokenizer.consume("WS") + + return parsed_specifiers + + +def _parse_version_many(tokenizer: Tokenizer) -> str: + """ + version_many = (SPECIFIER (WS? COMMA WS? SPECIFIER)*)? + """ + parsed_specifiers = "" + while tokenizer.check("SPECIFIER"): + span_start = tokenizer.position + parsed_specifiers += tokenizer.read().text + if tokenizer.check("VERSION_PREFIX_TRAIL", peek=True): + tokenizer.raise_syntax_error( + ".* suffix can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position + 1, + ) + if tokenizer.check("VERSION_LOCAL_LABEL_TRAIL", peek=True): + tokenizer.raise_syntax_error( + "Local version label can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position, + ) + tokenizer.consume("WS") + if not tokenizer.check("COMMA"): + break + parsed_specifiers += tokenizer.read().text + tokenizer.consume("WS") + + return parsed_specifiers + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for marker expression +# -------------------------------------------------------------------------------------- +def parse_marker(source: str) -> MarkerList: + return _parse_full_marker(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_full_marker(tokenizer: Tokenizer) -> MarkerList: + retval = _parse_marker(tokenizer) + tokenizer.expect("END", expected="end of marker expression") + return retval + + +def _parse_marker(tokenizer: Tokenizer) -> MarkerList: + """ + marker = marker_atom (BOOLOP marker_atom)+ + """ + expression = [_parse_marker_atom(tokenizer)] + while tokenizer.check("BOOLOP"): + token = tokenizer.read() + expr_right = _parse_marker_atom(tokenizer) + expression.extend((token.text, expr_right)) + return expression + + +def _parse_marker_atom(tokenizer: Tokenizer) -> MarkerAtom: + """ + marker_atom = WS? LEFT_PARENTHESIS WS? marker WS? RIGHT_PARENTHESIS WS? + | WS? marker_item WS? + """ + + tokenizer.consume("WS") + if tokenizer.check("LEFT_PARENTHESIS", peek=True): + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="marker expression", + ): + tokenizer.consume("WS") + marker: MarkerAtom = _parse_marker(tokenizer) + tokenizer.consume("WS") + else: + marker = _parse_marker_item(tokenizer) + tokenizer.consume("WS") + return marker + + +def _parse_marker_item(tokenizer: Tokenizer) -> MarkerItem: + """ + marker_item = WS? marker_var WS? marker_op WS? marker_var WS? + """ + tokenizer.consume("WS") + marker_var_left = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + marker_op = _parse_marker_op(tokenizer) + tokenizer.consume("WS") + marker_var_right = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + return (marker_var_left, marker_op, marker_var_right) + + +def _parse_marker_var(tokenizer: Tokenizer) -> MarkerVar: + """ + marker_var = VARIABLE | QUOTED_STRING + """ + if tokenizer.check("VARIABLE"): + return process_env_var(tokenizer.read().text.replace(".", "_")) + elif tokenizer.check("QUOTED_STRING"): + return process_python_str(tokenizer.read().text) + else: + tokenizer.raise_syntax_error( + message="Expected a marker variable or quoted string" + ) + + +def process_env_var(env_var: str) -> Variable: + if ( + env_var == "platform_python_implementation" + or env_var == "python_implementation" + ): + return Variable("platform_python_implementation") + else: + return Variable(env_var) + + +def process_python_str(python_str: str) -> Value: + value = ast.literal_eval(python_str) + return Value(str(value)) + + +def _parse_marker_op(tokenizer: Tokenizer) -> Op: + """ + marker_op = IN | NOT IN | OP + """ + if tokenizer.check("IN"): + tokenizer.read() + return Op("in") + elif tokenizer.check("NOT"): + tokenizer.read() + tokenizer.expect("WS", expected="whitespace after 'not'") + tokenizer.expect("IN", expected="'in' after 'not'") + return Op("not in") + elif tokenizer.check("OP"): + return Op(tokenizer.read().text) + else: + return tokenizer.raise_syntax_error( + "Expected marker operator, one of " + "<=, <, !=, ==, >=, >, ~=, ===, in, not in" + ) diff --git a/tools/gyp/pylib/packaging/_structures.py b/tools/gyp/pylib/packaging/_structures.py new file mode 100644 index 00000000000000..90a6465f9682c8 --- /dev/null +++ b/tools/gyp/pylib/packaging/_structures.py @@ -0,0 +1,61 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + + +class InfinityType: + def __repr__(self) -> str: + return "Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return False + + def __le__(self, other: object) -> bool: + return False + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return True + + def __ge__(self, other: object) -> bool: + return True + + def __neg__(self: object) -> "NegativeInfinityType": + return NegativeInfinity + + +Infinity = InfinityType() + + +class NegativeInfinityType: + def __repr__(self) -> str: + return "-Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return True + + def __le__(self, other: object) -> bool: + return True + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return False + + def __ge__(self, other: object) -> bool: + return False + + def __neg__(self: object) -> InfinityType: + return Infinity + + +NegativeInfinity = NegativeInfinityType() diff --git a/tools/gyp/pylib/packaging/_tokenizer.py b/tools/gyp/pylib/packaging/_tokenizer.py new file mode 100644 index 00000000000000..dd0d648d49a7c1 --- /dev/null +++ b/tools/gyp/pylib/packaging/_tokenizer.py @@ -0,0 +1,192 @@ +import contextlib +import re +from dataclasses import dataclass +from typing import Dict, Iterator, NoReturn, Optional, Tuple, Union + +from .specifiers import Specifier + + +@dataclass +class Token: + name: str + text: str + position: int + + +class ParserSyntaxError(Exception): + """The provided source text could not be parsed correctly.""" + + def __init__( + self, + message: str, + *, + source: str, + span: Tuple[int, int], + ) -> None: + self.span = span + self.message = message + self.source = source + + super().__init__() + + def __str__(self) -> str: + marker = " " * self.span[0] + "~" * (self.span[1] - self.span[0]) + "^" + return "\n ".join([self.message, self.source, marker]) + + +DEFAULT_RULES: "Dict[str, Union[str, re.Pattern[str]]]" = { + "LEFT_PARENTHESIS": r"\(", + "RIGHT_PARENTHESIS": r"\)", + "LEFT_BRACKET": r"\[", + "RIGHT_BRACKET": r"\]", + "SEMICOLON": r";", + "COMMA": r",", + "QUOTED_STRING": re.compile( + r""" + ( + ('[^']*') + | + ("[^"]*") + ) + """, + re.VERBOSE, + ), + "OP": r"(===|==|~=|!=|<=|>=|<|>)", + "BOOLOP": r"\b(or|and)\b", + "IN": r"\bin\b", + "NOT": r"\bnot\b", + "VARIABLE": re.compile( + r""" + \b( + python_version + |python_full_version + |os[._]name + |sys[._]platform + |platform_(release|system) + |platform[._](version|machine|python_implementation) + |python_implementation + |implementation_(name|version) + |extra + )\b + """, + re.VERBOSE, + ), + "SPECIFIER": re.compile( + Specifier._operator_regex_str + Specifier._version_regex_str, + re.VERBOSE | re.IGNORECASE, + ), + "AT": r"\@", + "URL": r"[^ \t]+", + "IDENTIFIER": r"\b[a-zA-Z0-9][a-zA-Z0-9._-]*\b", + "VERSION_PREFIX_TRAIL": r"\.\*", + "VERSION_LOCAL_LABEL_TRAIL": r"\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*", + "WS": r"[ \t]+", + "END": r"$", +} + + +class Tokenizer: + """Context-sensitive token parsing. + + Provides methods to examine the input stream to check whether the next token + matches. + """ + + def __init__( + self, + source: str, + *, + rules: "Dict[str, Union[str, re.Pattern[str]]]", + ) -> None: + self.source = source + self.rules: Dict[str, re.Pattern[str]] = { + name: re.compile(pattern) for name, pattern in rules.items() + } + self.next_token: Optional[Token] = None + self.position = 0 + + def consume(self, name: str) -> None: + """Move beyond provided token name, if at current position.""" + if self.check(name): + self.read() + + def check(self, name: str, *, peek: bool = False) -> bool: + """Check whether the next token has the provided name. + + By default, if the check succeeds, the token *must* be read before + another check. If `peek` is set to `True`, the token is not loaded and + would need to be checked again. + """ + assert ( + self.next_token is None + ), f"Cannot check for {name!r}, already have {self.next_token!r}" + assert name in self.rules, f"Unknown token name: {name!r}" + + expression = self.rules[name] + + match = expression.match(self.source, self.position) + if match is None: + return False + if not peek: + self.next_token = Token(name, match[0], self.position) + return True + + def expect(self, name: str, *, expected: str) -> Token: + """Expect a certain token name next, failing with a syntax error otherwise. + + The token is *not* read. + """ + if not self.check(name): + raise self.raise_syntax_error(f"Expected {expected}") + return self.read() + + def read(self) -> Token: + """Consume the next token and return it.""" + token = self.next_token + assert token is not None + + self.position += len(token.text) + self.next_token = None + + return token + + def raise_syntax_error( + self, + message: str, + *, + span_start: Optional[int] = None, + span_end: Optional[int] = None, + ) -> NoReturn: + """Raise ParserSyntaxError at the given position.""" + span = ( + self.position if span_start is None else span_start, + self.position if span_end is None else span_end, + ) + raise ParserSyntaxError( + message, + source=self.source, + span=span, + ) + + @contextlib.contextmanager + def enclosing_tokens( + self, open_token: str, close_token: str, *, around: str + ) -> Iterator[None]: + if self.check(open_token): + open_position = self.position + self.read() + else: + open_position = None + + yield + + if open_position is None: + return + + if not self.check(close_token): + self.raise_syntax_error( + f"Expected matching {close_token} for {open_token}, after {around}", + span_start=open_position, + ) + + self.read() diff --git a/tools/gyp/pylib/packaging/markers.py b/tools/gyp/pylib/packaging/markers.py new file mode 100644 index 00000000000000..8b98fca7233be6 --- /dev/null +++ b/tools/gyp/pylib/packaging/markers.py @@ -0,0 +1,252 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import operator +import os +import platform +import sys +from typing import Any, Callable, Dict, List, Optional, Tuple, Union + +from ._parser import ( + MarkerAtom, + MarkerList, + Op, + Value, + Variable, + parse_marker as _parse_marker, +) +from ._tokenizer import ParserSyntaxError +from .specifiers import InvalidSpecifier, Specifier +from .utils import canonicalize_name + +__all__ = [ + "InvalidMarker", + "UndefinedComparison", + "UndefinedEnvironmentName", + "Marker", + "default_environment", +] + +Operator = Callable[[str, str], bool] + + +class InvalidMarker(ValueError): + """ + An invalid marker was found, users should refer to PEP 508. + """ + + +class UndefinedComparison(ValueError): + """ + An invalid operation was attempted on a value that doesn't support it. + """ + + +class UndefinedEnvironmentName(ValueError): + """ + A name was attempted to be used that does not exist inside of the + environment. + """ + + +def _normalize_extra_values(results: Any) -> Any: + """ + Normalize extra values. + """ + if isinstance(results[0], tuple): + lhs, op, rhs = results[0] + if isinstance(lhs, Variable) and lhs.value == "extra": + normalized_extra = canonicalize_name(rhs.value) + rhs = Value(normalized_extra) + elif isinstance(rhs, Variable) and rhs.value == "extra": + normalized_extra = canonicalize_name(lhs.value) + lhs = Value(normalized_extra) + results[0] = lhs, op, rhs + return results + + +def _format_marker( + marker: Union[List[str], MarkerAtom, str], first: Optional[bool] = True +) -> str: + + assert isinstance(marker, (list, tuple, str)) + + # Sometimes we have a structure like [[...]] which is a single item list + # where the single item is itself it's own list. In that case we want skip + # the rest of this function so that we don't get extraneous () on the + # outside. + if ( + isinstance(marker, list) + and len(marker) == 1 + and isinstance(marker[0], (list, tuple)) + ): + return _format_marker(marker[0]) + + if isinstance(marker, list): + inner = (_format_marker(m, first=False) for m in marker) + if first: + return " ".join(inner) + else: + return "(" + " ".join(inner) + ")" + elif isinstance(marker, tuple): + return " ".join([m.serialize() for m in marker]) + else: + return marker + + +_operators: Dict[str, Operator] = { + "in": lambda lhs, rhs: lhs in rhs, + "not in": lambda lhs, rhs: lhs not in rhs, + "<": operator.lt, + "<=": operator.le, + "==": operator.eq, + "!=": operator.ne, + ">=": operator.ge, + ">": operator.gt, +} + + +def _eval_op(lhs: str, op: Op, rhs: str) -> bool: + try: + spec = Specifier("".join([op.serialize(), rhs])) + except InvalidSpecifier: + pass + else: + return spec.contains(lhs, prereleases=True) + + oper: Optional[Operator] = _operators.get(op.serialize()) + if oper is None: + raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") + + return oper(lhs, rhs) + + +def _normalize(*values: str, key: str) -> Tuple[str, ...]: + # PEP 685 – Comparison of extra names for optional distribution dependencies + # https://peps.python.org/pep-0685/ + # > When comparing extra names, tools MUST normalize the names being + # > compared using the semantics outlined in PEP 503 for names + if key == "extra": + return tuple(canonicalize_name(v) for v in values) + + # other environment markers don't have such standards + return values + + +def _evaluate_markers(markers: MarkerList, environment: Dict[str, str]) -> bool: + groups: List[List[bool]] = [[]] + + for marker in markers: + assert isinstance(marker, (list, tuple, str)) + + if isinstance(marker, list): + groups[-1].append(_evaluate_markers(marker, environment)) + elif isinstance(marker, tuple): + lhs, op, rhs = marker + + if isinstance(lhs, Variable): + environment_key = lhs.value + lhs_value = environment[environment_key] + rhs_value = rhs.value + else: + lhs_value = lhs.value + environment_key = rhs.value + rhs_value = environment[environment_key] + + lhs_value, rhs_value = _normalize(lhs_value, rhs_value, key=environment_key) + groups[-1].append(_eval_op(lhs_value, op, rhs_value)) + else: + assert marker in ["and", "or"] + if marker == "or": + groups.append([]) + + return any(all(item) for item in groups) + + +def format_full_version(info: "sys._version_info") -> str: + version = "{0.major}.{0.minor}.{0.micro}".format(info) + kind = info.releaselevel + if kind != "final": + version += kind[0] + str(info.serial) + return version + + +def default_environment() -> Dict[str, str]: + iver = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + return { + "implementation_name": implementation_name, + "implementation_version": iver, + "os_name": os.name, + "platform_machine": platform.machine(), + "platform_release": platform.release(), + "platform_system": platform.system(), + "platform_version": platform.version(), + "python_full_version": platform.python_version(), + "platform_python_implementation": platform.python_implementation(), + "python_version": ".".join(platform.python_version_tuple()[:2]), + "sys_platform": sys.platform, + } + + +class Marker: + def __init__(self, marker: str) -> None: + # Note: We create a Marker object without calling this constructor in + # packaging.requirements.Requirement. If any additional logic is + # added here, make sure to mirror/adapt Requirement. + try: + self._markers = _normalize_extra_values(_parse_marker(marker)) + # The attribute `_markers` can be described in terms of a recursive type: + # MarkerList = List[Union[Tuple[Node, ...], str, MarkerList]] + # + # For example, the following expression: + # python_version > "3.6" or (python_version == "3.6" and os_name == "unix") + # + # is parsed into: + # [ + # (, ')>, ), + # 'and', + # [ + # (, , ), + # 'or', + # (, , ) + # ] + # ] + except ParserSyntaxError as e: + raise InvalidMarker(str(e)) from e + + def __str__(self) -> str: + return _format_marker(self._markers) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash((self.__class__.__name__, str(self))) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Marker): + return NotImplemented + + return str(self) == str(other) + + def evaluate(self, environment: Optional[Dict[str, str]] = None) -> bool: + """Evaluate a marker. + + Return the boolean from evaluating the given marker against the + environment. environment is an optional argument to override all or + part of the determined environment. + + The environment is determined from the current Python process. + """ + current_environment = default_environment() + current_environment["extra"] = "" + if environment is not None: + current_environment.update(environment) + # The API used to allow setting extra to None. We need to handle this + # case for backwards compatibility. + if current_environment["extra"] is None: + current_environment["extra"] = "" + + return _evaluate_markers(self._markers, current_environment) diff --git a/tools/gyp/pylib/packaging/metadata.py b/tools/gyp/pylib/packaging/metadata.py new file mode 100644 index 00000000000000..fb274930799da0 --- /dev/null +++ b/tools/gyp/pylib/packaging/metadata.py @@ -0,0 +1,825 @@ +import email.feedparser +import email.header +import email.message +import email.parser +import email.policy +import sys +import typing +from typing import ( + Any, + Callable, + Dict, + Generic, + List, + Optional, + Tuple, + Type, + Union, + cast, +) + +from . import requirements, specifiers, utils, version as version_module + +T = typing.TypeVar("T") +if sys.version_info[:2] >= (3, 8): # pragma: no cover + from typing import Literal, TypedDict +else: # pragma: no cover + if typing.TYPE_CHECKING: + from typing_extensions import Literal, TypedDict + else: + try: + from typing_extensions import Literal, TypedDict + except ImportError: + + class Literal: + def __init_subclass__(*_args, **_kwargs): + pass + + class TypedDict: + def __init_subclass__(*_args, **_kwargs): + pass + + +try: + ExceptionGroup +except NameError: # pragma: no cover + + class ExceptionGroup(Exception): # noqa: N818 + """A minimal implementation of :external:exc:`ExceptionGroup` from Python 3.11. + + If :external:exc:`ExceptionGroup` is already defined by Python itself, + that version is used instead. + """ + + message: str + exceptions: List[Exception] + + def __init__(self, message: str, exceptions: List[Exception]) -> None: + self.message = message + self.exceptions = exceptions + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.message!r}, {self.exceptions!r})" + +else: # pragma: no cover + ExceptionGroup = ExceptionGroup + + +class InvalidMetadata(ValueError): + """A metadata field contains invalid data.""" + + field: str + """The name of the field that contains invalid data.""" + + def __init__(self, field: str, message: str) -> None: + self.field = field + super().__init__(message) + + +# The RawMetadata class attempts to make as few assumptions about the underlying +# serialization formats as possible. The idea is that as long as a serialization +# formats offer some very basic primitives in *some* way then we can support +# serializing to and from that format. +class RawMetadata(TypedDict, total=False): + """A dictionary of raw core metadata. + + Each field in core metadata maps to a key of this dictionary (when data is + provided). The key is lower-case and underscores are used instead of dashes + compared to the equivalent core metadata field. Any core metadata field that + can be specified multiple times or can hold multiple values in a single + field have a key with a plural name. See :class:`Metadata` whose attributes + match the keys of this dictionary. + + Core metadata fields that can be specified multiple times are stored as a + list or dict depending on which is appropriate for the field. Any fields + which hold multiple values in a single field are stored as a list. + + """ + + # Metadata 1.0 - PEP 241 + metadata_version: str + name: str + version: str + platforms: List[str] + summary: str + description: str + keywords: List[str] + home_page: str + author: str + author_email: str + license: str + + # Metadata 1.1 - PEP 314 + supported_platforms: List[str] + download_url: str + classifiers: List[str] + requires: List[str] + provides: List[str] + obsoletes: List[str] + + # Metadata 1.2 - PEP 345 + maintainer: str + maintainer_email: str + requires_dist: List[str] + provides_dist: List[str] + obsoletes_dist: List[str] + requires_python: str + requires_external: List[str] + project_urls: Dict[str, str] + + # Metadata 2.0 + # PEP 426 attempted to completely revamp the metadata format + # but got stuck without ever being able to build consensus on + # it and ultimately ended up withdrawn. + # + # However, a number of tools had started emitting METADATA with + # `2.0` Metadata-Version, so for historical reasons, this version + # was skipped. + + # Metadata 2.1 - PEP 566 + description_content_type: str + provides_extra: List[str] + + # Metadata 2.2 - PEP 643 + dynamic: List[str] + + # Metadata 2.3 - PEP 685 + # No new fields were added in PEP 685, just some edge case were + # tightened up to provide better interoptability. + + +_STRING_FIELDS = { + "author", + "author_email", + "description", + "description_content_type", + "download_url", + "home_page", + "license", + "maintainer", + "maintainer_email", + "metadata_version", + "name", + "requires_python", + "summary", + "version", +} + +_LIST_FIELDS = { + "classifiers", + "dynamic", + "obsoletes", + "obsoletes_dist", + "platforms", + "provides", + "provides_dist", + "provides_extra", + "requires", + "requires_dist", + "requires_external", + "supported_platforms", +} + +_DICT_FIELDS = { + "project_urls", +} + + +def _parse_keywords(data: str) -> List[str]: + """Split a string of comma-separate keyboards into a list of keywords.""" + return [k.strip() for k in data.split(",")] + + +def _parse_project_urls(data: List[str]) -> Dict[str, str]: + """Parse a list of label/URL string pairings separated by a comma.""" + urls = {} + for pair in data: + # Our logic is slightly tricky here as we want to try and do + # *something* reasonable with malformed data. + # + # The main thing that we have to worry about, is data that does + # not have a ',' at all to split the label from the Value. There + # isn't a singular right answer here, and we will fail validation + # later on (if the caller is validating) so it doesn't *really* + # matter, but since the missing value has to be an empty str + # and our return value is dict[str, str], if we let the key + # be the missing value, then they'd have multiple '' values that + # overwrite each other in a accumulating dict. + # + # The other potentional issue is that it's possible to have the + # same label multiple times in the metadata, with no solid "right" + # answer with what to do in that case. As such, we'll do the only + # thing we can, which is treat the field as unparseable and add it + # to our list of unparsed fields. + parts = [p.strip() for p in pair.split(",", 1)] + parts.extend([""] * (max(0, 2 - len(parts)))) # Ensure 2 items + + # TODO: The spec doesn't say anything about if the keys should be + # considered case sensitive or not... logically they should + # be case-preserving and case-insensitive, but doing that + # would open up more cases where we might have duplicate + # entries. + label, url = parts + if label in urls: + # The label already exists in our set of urls, so this field + # is unparseable, and we can just add the whole thing to our + # unparseable data and stop processing it. + raise KeyError("duplicate labels in project urls") + urls[label] = url + + return urls + + +def _get_payload(msg: email.message.Message, source: Union[bytes, str]) -> str: + """Get the body of the message.""" + # If our source is a str, then our caller has managed encodings for us, + # and we don't need to deal with it. + if isinstance(source, str): + payload: str = msg.get_payload() + return payload + # If our source is a bytes, then we're managing the encoding and we need + # to deal with it. + else: + bpayload: bytes = msg.get_payload(decode=True) + try: + return bpayload.decode("utf8", "strict") + except UnicodeDecodeError: + raise ValueError("payload in an invalid encoding") + + +# The various parse_FORMAT functions here are intended to be as lenient as +# possible in their parsing, while still returning a correctly typed +# RawMetadata. +# +# To aid in this, we also generally want to do as little touching of the +# data as possible, except where there are possibly some historic holdovers +# that make valid data awkward to work with. +# +# While this is a lower level, intermediate format than our ``Metadata`` +# class, some light touch ups can make a massive difference in usability. + +# Map METADATA fields to RawMetadata. +_EMAIL_TO_RAW_MAPPING = { + "author": "author", + "author-email": "author_email", + "classifier": "classifiers", + "description": "description", + "description-content-type": "description_content_type", + "download-url": "download_url", + "dynamic": "dynamic", + "home-page": "home_page", + "keywords": "keywords", + "license": "license", + "maintainer": "maintainer", + "maintainer-email": "maintainer_email", + "metadata-version": "metadata_version", + "name": "name", + "obsoletes": "obsoletes", + "obsoletes-dist": "obsoletes_dist", + "platform": "platforms", + "project-url": "project_urls", + "provides": "provides", + "provides-dist": "provides_dist", + "provides-extra": "provides_extra", + "requires": "requires", + "requires-dist": "requires_dist", + "requires-external": "requires_external", + "requires-python": "requires_python", + "summary": "summary", + "supported-platform": "supported_platforms", + "version": "version", +} +_RAW_TO_EMAIL_MAPPING = {raw: email for email, raw in _EMAIL_TO_RAW_MAPPING.items()} + + +def parse_email(data: Union[bytes, str]) -> Tuple[RawMetadata, Dict[str, List[str]]]: + """Parse a distribution's metadata stored as email headers (e.g. from ``METADATA``). + + This function returns a two-item tuple of dicts. The first dict is of + recognized fields from the core metadata specification. Fields that can be + parsed and translated into Python's built-in types are converted + appropriately. All other fields are left as-is. Fields that are allowed to + appear multiple times are stored as lists. + + The second dict contains all other fields from the metadata. This includes + any unrecognized fields. It also includes any fields which are expected to + be parsed into a built-in type but were not formatted appropriately. Finally, + any fields that are expected to appear only once but are repeated are + included in this dict. + + """ + raw: Dict[str, Union[str, List[str], Dict[str, str]]] = {} + unparsed: Dict[str, List[str]] = {} + + if isinstance(data, str): + parsed = email.parser.Parser(policy=email.policy.compat32).parsestr(data) + else: + parsed = email.parser.BytesParser(policy=email.policy.compat32).parsebytes(data) + + # We have to wrap parsed.keys() in a set, because in the case of multiple + # values for a key (a list), the key will appear multiple times in the + # list of keys, but we're avoiding that by using get_all(). + for name in frozenset(parsed.keys()): + # Header names in RFC are case insensitive, so we'll normalize to all + # lower case to make comparisons easier. + name = name.lower() + + # We use get_all() here, even for fields that aren't multiple use, + # because otherwise someone could have e.g. two Name fields, and we + # would just silently ignore it rather than doing something about it. + headers = parsed.get_all(name) or [] + + # The way the email module works when parsing bytes is that it + # unconditionally decodes the bytes as ascii using the surrogateescape + # handler. When you pull that data back out (such as with get_all() ), + # it looks to see if the str has any surrogate escapes, and if it does + # it wraps it in a Header object instead of returning the string. + # + # As such, we'll look for those Header objects, and fix up the encoding. + value = [] + # Flag if we have run into any issues processing the headers, thus + # signalling that the data belongs in 'unparsed'. + valid_encoding = True + for h in headers: + # It's unclear if this can return more types than just a Header or + # a str, so we'll just assert here to make sure. + assert isinstance(h, (email.header.Header, str)) + + # If it's a header object, we need to do our little dance to get + # the real data out of it. In cases where there is invalid data + # we're going to end up with mojibake, but there's no obvious, good + # way around that without reimplementing parts of the Header object + # ourselves. + # + # That should be fine since, if mojibacked happens, this key is + # going into the unparsed dict anyways. + if isinstance(h, email.header.Header): + # The Header object stores it's data as chunks, and each chunk + # can be independently encoded, so we'll need to check each + # of them. + chunks: List[Tuple[bytes, Optional[str]]] = [] + for bin, encoding in email.header.decode_header(h): + try: + bin.decode("utf8", "strict") + except UnicodeDecodeError: + # Enable mojibake. + encoding = "latin1" + valid_encoding = False + else: + encoding = "utf8" + chunks.append((bin, encoding)) + + # Turn our chunks back into a Header object, then let that + # Header object do the right thing to turn them into a + # string for us. + value.append(str(email.header.make_header(chunks))) + # This is already a string, so just add it. + else: + value.append(h) + + # We've processed all of our values to get them into a list of str, + # but we may have mojibake data, in which case this is an unparsed + # field. + if not valid_encoding: + unparsed[name] = value + continue + + raw_name = _EMAIL_TO_RAW_MAPPING.get(name) + if raw_name is None: + # This is a bit of a weird situation, we've encountered a key that + # we don't know what it means, so we don't know whether it's meant + # to be a list or not. + # + # Since we can't really tell one way or another, we'll just leave it + # as a list, even though it may be a single item list, because that's + # what makes the most sense for email headers. + unparsed[name] = value + continue + + # If this is one of our string fields, then we'll check to see if our + # value is a list of a single item. If it is then we'll assume that + # it was emitted as a single string, and unwrap the str from inside + # the list. + # + # If it's any other kind of data, then we haven't the faintest clue + # what we should parse it as, and we have to just add it to our list + # of unparsed stuff. + if raw_name in _STRING_FIELDS and len(value) == 1: + raw[raw_name] = value[0] + # If this is one of our list of string fields, then we can just assign + # the value, since email *only* has strings, and our get_all() call + # above ensures that this is a list. + elif raw_name in _LIST_FIELDS: + raw[raw_name] = value + # Special Case: Keywords + # The keywords field is implemented in the metadata spec as a str, + # but it conceptually is a list of strings, and is serialized using + # ", ".join(keywords), so we'll do some light data massaging to turn + # this into what it logically is. + elif raw_name == "keywords" and len(value) == 1: + raw[raw_name] = _parse_keywords(value[0]) + # Special Case: Project-URL + # The project urls is implemented in the metadata spec as a list of + # specially-formatted strings that represent a key and a value, which + # is fundamentally a mapping, however the email format doesn't support + # mappings in a sane way, so it was crammed into a list of strings + # instead. + # + # We will do a little light data massaging to turn this into a map as + # it logically should be. + elif raw_name == "project_urls": + try: + raw[raw_name] = _parse_project_urls(value) + except KeyError: + unparsed[name] = value + # Nothing that we've done has managed to parse this, so it'll just + # throw it in our unparseable data and move on. + else: + unparsed[name] = value + + # We need to support getting the Description from the message payload in + # addition to getting it from the the headers. This does mean, though, there + # is the possibility of it being set both ways, in which case we put both + # in 'unparsed' since we don't know which is right. + try: + payload = _get_payload(parsed, data) + except ValueError: + unparsed.setdefault("description", []).append( + parsed.get_payload(decode=isinstance(data, bytes)) + ) + else: + if payload: + # Check to see if we've already got a description, if so then both + # it, and this body move to unparseable. + if "description" in raw: + description_header = cast(str, raw.pop("description")) + unparsed.setdefault("description", []).extend( + [description_header, payload] + ) + elif "description" in unparsed: + unparsed["description"].append(payload) + else: + raw["description"] = payload + + # We need to cast our `raw` to a metadata, because a TypedDict only support + # literal key names, but we're computing our key names on purpose, but the + # way this function is implemented, our `TypedDict` can only have valid key + # names. + return cast(RawMetadata, raw), unparsed + + +_NOT_FOUND = object() + + +# Keep the two values in sync. +_VALID_METADATA_VERSIONS = ["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] +_MetadataVersion = Literal["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] + +_REQUIRED_ATTRS = frozenset(["metadata_version", "name", "version"]) + + +class _Validator(Generic[T]): + """Validate a metadata field. + + All _process_*() methods correspond to a core metadata field. The method is + called with the field's raw value. If the raw value is valid it is returned + in its "enriched" form (e.g. ``version.Version`` for the ``Version`` field). + If the raw value is invalid, :exc:`InvalidMetadata` is raised (with a cause + as appropriate). + """ + + name: str + raw_name: str + added: _MetadataVersion + + def __init__( + self, + *, + added: _MetadataVersion = "1.0", + ) -> None: + self.added = added + + def __set_name__(self, _owner: "Metadata", name: str) -> None: + self.name = name + self.raw_name = _RAW_TO_EMAIL_MAPPING[name] + + def __get__(self, instance: "Metadata", _owner: Type["Metadata"]) -> T: + # With Python 3.8, the caching can be replaced with functools.cached_property(). + # No need to check the cache as attribute lookup will resolve into the + # instance's __dict__ before __get__ is called. + cache = instance.__dict__ + value = instance._raw.get(self.name) + + # To make the _process_* methods easier, we'll check if the value is None + # and if this field is NOT a required attribute, and if both of those + # things are true, we'll skip the the converter. This will mean that the + # converters never have to deal with the None union. + if self.name in _REQUIRED_ATTRS or value is not None: + try: + converter: Callable[[Any], T] = getattr(self, f"_process_{self.name}") + except AttributeError: + pass + else: + value = converter(value) + + cache[self.name] = value + try: + del instance._raw[self.name] # type: ignore[misc] + except KeyError: + pass + + return cast(T, value) + + def _invalid_metadata( + self, msg: str, cause: Optional[Exception] = None + ) -> InvalidMetadata: + exc = InvalidMetadata( + self.raw_name, msg.format_map({"field": repr(self.raw_name)}) + ) + exc.__cause__ = cause + return exc + + def _process_metadata_version(self, value: str) -> _MetadataVersion: + # Implicitly makes Metadata-Version required. + if value not in _VALID_METADATA_VERSIONS: + raise self._invalid_metadata(f"{value!r} is not a valid metadata version") + return cast(_MetadataVersion, value) + + def _process_name(self, value: str) -> str: + if not value: + raise self._invalid_metadata("{field} is a required field") + # Validate the name as a side-effect. + try: + utils.canonicalize_name(value, validate=True) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + else: + return value + + def _process_version(self, value: str) -> version_module.Version: + if not value: + raise self._invalid_metadata("{field} is a required field") + try: + return version_module.parse(value) + except version_module.InvalidVersion as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_summary(self, value: str) -> str: + """Check the field contains no newlines.""" + if "\n" in value: + raise self._invalid_metadata("{field} must be a single line") + return value + + def _process_description_content_type(self, value: str) -> str: + content_types = {"text/plain", "text/x-rst", "text/markdown"} + message = email.message.EmailMessage() + message["content-type"] = value + + content_type, parameters = ( + # Defaults to `text/plain` if parsing failed. + message.get_content_type().lower(), + message["content-type"].params, + ) + # Check if content-type is valid or defaulted to `text/plain` and thus was + # not parseable. + if content_type not in content_types or content_type not in value.lower(): + raise self._invalid_metadata( + f"{{field}} must be one of {list(content_types)}, not {value!r}" + ) + + charset = parameters.get("charset", "UTF-8") + if charset != "UTF-8": + raise self._invalid_metadata( + f"{{field}} can only specify the UTF-8 charset, not {list(charset)}" + ) + + markdown_variants = {"GFM", "CommonMark"} + variant = parameters.get("variant", "GFM") # Use an acceptable default. + if content_type == "text/markdown" and variant not in markdown_variants: + raise self._invalid_metadata( + f"valid Markdown variants for {{field}} are {list(markdown_variants)}, " + f"not {variant!r}", + ) + return value + + def _process_dynamic(self, value: List[str]) -> List[str]: + for dynamic_field in map(str.lower, value): + if dynamic_field in {"name", "version", "metadata-version"}: + raise self._invalid_metadata( + f"{value!r} is not allowed as a dynamic field" + ) + elif dynamic_field not in _EMAIL_TO_RAW_MAPPING: + raise self._invalid_metadata(f"{value!r} is not a valid dynamic field") + return list(map(str.lower, value)) + + def _process_provides_extra( + self, + value: List[str], + ) -> List[utils.NormalizedName]: + normalized_names = [] + try: + for name in value: + normalized_names.append(utils.canonicalize_name(name, validate=True)) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{name!r} is invalid for {{field}}", cause=exc + ) + else: + return normalized_names + + def _process_requires_python(self, value: str) -> specifiers.SpecifierSet: + try: + return specifiers.SpecifierSet(value) + except specifiers.InvalidSpecifier as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_requires_dist( + self, + value: List[str], + ) -> List[requirements.Requirement]: + reqs = [] + try: + for req in value: + reqs.append(requirements.Requirement(req)) + except requirements.InvalidRequirement as exc: + raise self._invalid_metadata(f"{req!r} is invalid for {{field}}", cause=exc) + else: + return reqs + + +class Metadata: + """Representation of distribution metadata. + + Compared to :class:`RawMetadata`, this class provides objects representing + metadata fields instead of only using built-in types. Any invalid metadata + will cause :exc:`InvalidMetadata` to be raised (with a + :py:attr:`~BaseException.__cause__` attribute as appropriate). + """ + + _raw: RawMetadata + + @classmethod + def from_raw(cls, data: RawMetadata, *, validate: bool = True) -> "Metadata": + """Create an instance from :class:`RawMetadata`. + + If *validate* is true, all metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + ins = cls() + ins._raw = data.copy() # Mutations occur due to caching enriched values. + + if validate: + exceptions: List[Exception] = [] + try: + metadata_version = ins.metadata_version + metadata_age = _VALID_METADATA_VERSIONS.index(metadata_version) + except InvalidMetadata as metadata_version_exc: + exceptions.append(metadata_version_exc) + metadata_version = None + + # Make sure to check for the fields that are present, the required + # fields (so their absence can be reported). + fields_to_check = frozenset(ins._raw) | _REQUIRED_ATTRS + # Remove fields that have already been checked. + fields_to_check -= {"metadata_version"} + + for key in fields_to_check: + try: + if metadata_version: + # Can't use getattr() as that triggers descriptor protocol which + # will fail due to no value for the instance argument. + try: + field_metadata_version = cls.__dict__[key].added + except KeyError: + exc = InvalidMetadata(key, f"unrecognized field: {key!r}") + exceptions.append(exc) + continue + field_age = _VALID_METADATA_VERSIONS.index( + field_metadata_version + ) + if field_age > metadata_age: + field = _RAW_TO_EMAIL_MAPPING[key] + exc = InvalidMetadata( + field, + "{field} introduced in metadata version " + "{field_metadata_version}, not {metadata_version}", + ) + exceptions.append(exc) + continue + getattr(ins, key) + except InvalidMetadata as exc: + exceptions.append(exc) + + if exceptions: + raise ExceptionGroup("invalid metadata", exceptions) + + return ins + + @classmethod + def from_email( + cls, data: Union[bytes, str], *, validate: bool = True + ) -> "Metadata": + """Parse metadata from email headers. + + If *validate* is true, the metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + raw, unparsed = parse_email(data) + + if validate: + exceptions: list[Exception] = [] + for unparsed_key in unparsed: + if unparsed_key in _EMAIL_TO_RAW_MAPPING: + message = f"{unparsed_key!r} has invalid data" + else: + message = f"unrecognized field: {unparsed_key!r}" + exceptions.append(InvalidMetadata(unparsed_key, message)) + + if exceptions: + raise ExceptionGroup("unparsed", exceptions) + + try: + return cls.from_raw(raw, validate=validate) + except ExceptionGroup as exc_group: + raise ExceptionGroup( + "invalid or unparsed metadata", exc_group.exceptions + ) from None + + metadata_version: _Validator[_MetadataVersion] = _Validator() + """:external:ref:`core-metadata-metadata-version` + (required; validated to be a valid metadata version)""" + name: _Validator[str] = _Validator() + """:external:ref:`core-metadata-name` + (required; validated using :func:`~packaging.utils.canonicalize_name` and its + *validate* parameter)""" + version: _Validator[version_module.Version] = _Validator() + """:external:ref:`core-metadata-version` (required)""" + dynamic: _Validator[Optional[List[str]]] = _Validator( + added="2.2", + ) + """:external:ref:`core-metadata-dynamic` + (validated against core metadata field names and lowercased)""" + platforms: _Validator[Optional[List[str]]] = _Validator() + """:external:ref:`core-metadata-platform`""" + supported_platforms: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """:external:ref:`core-metadata-supported-platform`""" + summary: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-summary` (validated to contain no newlines)""" + description: _Validator[Optional[str]] = _Validator() # TODO 2.1: can be in body + """:external:ref:`core-metadata-description`""" + description_content_type: _Validator[Optional[str]] = _Validator(added="2.1") + """:external:ref:`core-metadata-description-content-type` (validated)""" + keywords: _Validator[Optional[List[str]]] = _Validator() + """:external:ref:`core-metadata-keywords`""" + home_page: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-home-page`""" + download_url: _Validator[Optional[str]] = _Validator(added="1.1") + """:external:ref:`core-metadata-download-url`""" + author: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-author`""" + author_email: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-author-email`""" + maintainer: _Validator[Optional[str]] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer`""" + maintainer_email: _Validator[Optional[str]] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer-email`""" + license: _Validator[Optional[str]] = _Validator() + """:external:ref:`core-metadata-license`""" + classifiers: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """:external:ref:`core-metadata-classifier`""" + requires_dist: _Validator[Optional[List[requirements.Requirement]]] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-dist`""" + requires_python: _Validator[Optional[specifiers.SpecifierSet]] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-python`""" + # Because `Requires-External` allows for non-PEP 440 version specifiers, we + # don't do any processing on the values. + requires_external: _Validator[Optional[List[str]]] = _Validator(added="1.2") + """:external:ref:`core-metadata-requires-external`""" + project_urls: _Validator[Optional[Dict[str, str]]] = _Validator(added="1.2") + """:external:ref:`core-metadata-project-url`""" + # PEP 685 lets us raise an error if an extra doesn't pass `Name` validation + # regardless of metadata version. + provides_extra: _Validator[Optional[List[utils.NormalizedName]]] = _Validator( + added="2.1", + ) + """:external:ref:`core-metadata-provides-extra`""" + provides_dist: _Validator[Optional[List[str]]] = _Validator(added="1.2") + """:external:ref:`core-metadata-provides-dist`""" + obsoletes_dist: _Validator[Optional[List[str]]] = _Validator(added="1.2") + """:external:ref:`core-metadata-obsoletes-dist`""" + requires: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """``Requires`` (deprecated)""" + provides: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """``Provides`` (deprecated)""" + obsoletes: _Validator[Optional[List[str]]] = _Validator(added="1.1") + """``Obsoletes`` (deprecated)""" diff --git a/tools/gyp/pylib/packaging/py.typed b/tools/gyp/pylib/packaging/py.typed new file mode 100644 index 00000000000000..e69de29bb2d1d6 diff --git a/tools/gyp/pylib/packaging/requirements.py b/tools/gyp/pylib/packaging/requirements.py new file mode 100644 index 00000000000000..0c00eba331b736 --- /dev/null +++ b/tools/gyp/pylib/packaging/requirements.py @@ -0,0 +1,90 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from typing import Any, Iterator, Optional, Set + +from ._parser import parse_requirement as _parse_requirement +from ._tokenizer import ParserSyntaxError +from .markers import Marker, _normalize_extra_values +from .specifiers import SpecifierSet +from .utils import canonicalize_name + + +class InvalidRequirement(ValueError): + """ + An invalid requirement was found, users should refer to PEP 508. + """ + + +class Requirement: + """Parse a requirement. + + Parse a given requirement string into its parts, such as name, specifier, + URL, and extras. Raises InvalidRequirement on a badly-formed requirement + string. + """ + + # TODO: Can we test whether something is contained within a requirement? + # If so how do we do that? Do we need to test against the _name_ of + # the thing as well as the version? What about the markers? + # TODO: Can we normalize the name and extra name? + + def __init__(self, requirement_string: str) -> None: + try: + parsed = _parse_requirement(requirement_string) + except ParserSyntaxError as e: + raise InvalidRequirement(str(e)) from e + + self.name: str = parsed.name + self.url: Optional[str] = parsed.url or None + self.extras: Set[str] = set(parsed.extras if parsed.extras else []) + self.specifier: SpecifierSet = SpecifierSet(parsed.specifier) + self.marker: Optional[Marker] = None + if parsed.marker is not None: + self.marker = Marker.__new__(Marker) + self.marker._markers = _normalize_extra_values(parsed.marker) + + def _iter_parts(self, name: str) -> Iterator[str]: + yield name + + if self.extras: + formatted_extras = ",".join(sorted(self.extras)) + yield f"[{formatted_extras}]" + + if self.specifier: + yield str(self.specifier) + + if self.url: + yield f"@ {self.url}" + if self.marker: + yield " " + + if self.marker: + yield f"; {self.marker}" + + def __str__(self) -> str: + return "".join(self._iter_parts(self.name)) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash( + ( + self.__class__.__name__, + *self._iter_parts(canonicalize_name(self.name)), + ) + ) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Requirement): + return NotImplemented + + return ( + canonicalize_name(self.name) == canonicalize_name(other.name) + and self.extras == other.extras + and self.specifier == other.specifier + and self.url == other.url + and self.marker == other.marker + ) diff --git a/tools/gyp/pylib/packaging/specifiers.py b/tools/gyp/pylib/packaging/specifiers.py new file mode 100644 index 00000000000000..94448327ae2d44 --- /dev/null +++ b/tools/gyp/pylib/packaging/specifiers.py @@ -0,0 +1,1030 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from packaging.specifiers import Specifier, SpecifierSet, InvalidSpecifier + from packaging.version import Version +""" + +import abc +import itertools +import re +from typing import ( + Callable, + Iterable, + Iterator, + List, + Optional, + Set, + Tuple, + TypeVar, + Union, +) + +from .utils import canonicalize_version +from .version import Version + +UnparsedVersion = Union[Version, str] +UnparsedVersionVar = TypeVar("UnparsedVersionVar", bound=UnparsedVersion) +CallableOperator = Callable[[Version, str], bool] + + +def _coerce_version(version: UnparsedVersion) -> Version: + if not isinstance(version, Version): + version = Version(version) + return version + + +class InvalidSpecifier(ValueError): + """ + Raised when attempting to create a :class:`Specifier` with a specifier + string that is invalid. + + >>> Specifier("lolwat") + Traceback (most recent call last): + ... + packaging.specifiers.InvalidSpecifier: Invalid specifier: 'lolwat' + """ + + +class BaseSpecifier(metaclass=abc.ABCMeta): + @abc.abstractmethod + def __str__(self) -> str: + """ + Returns the str representation of this Specifier-like object. This + should be representative of the Specifier itself. + """ + + @abc.abstractmethod + def __hash__(self) -> int: + """ + Returns a hash value for this Specifier-like object. + """ + + @abc.abstractmethod + def __eq__(self, other: object) -> bool: + """ + Returns a boolean representing whether or not the two Specifier-like + objects are equal. + + :param other: The other object to check against. + """ + + @property + @abc.abstractmethod + def prereleases(self) -> Optional[bool]: + """Whether or not pre-releases as a whole are allowed. + + This can be set to either ``True`` or ``False`` to explicitly enable or disable + prereleases or it can be set to ``None`` (the default) to use default semantics. + """ + + @prereleases.setter + def prereleases(self, value: bool) -> None: + """Setter for :attr:`prereleases`. + + :param value: The value to set. + """ + + @abc.abstractmethod + def contains(self, item: str, prereleases: Optional[bool] = None) -> bool: + """ + Determines if the given item is contained within this specifier. + """ + + @abc.abstractmethod + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: Optional[bool] = None + ) -> Iterator[UnparsedVersionVar]: + """ + Takes an iterable of items and filters them so that only items which + are contained within this specifier are allowed in it. + """ + + +class Specifier(BaseSpecifier): + """This class abstracts handling of version specifiers. + + .. tip:: + + It is generally not required to instantiate this manually. You should instead + prefer to work with :class:`SpecifierSet` instead, which can parse + comma-separated version specifiers (which is what package metadata contains). + """ + + _operator_regex_str = r""" + (?P(~=|==|!=|<=|>=|<|>|===)) + """ + _version_regex_str = r""" + (?P + (?: + # The identity operators allow for an escape hatch that will + # do an exact string match of the version you wish to install. + # This will not be parsed by PEP 440 and we cannot determine + # any semantic meaning from it. This operator is discouraged + # but included entirely as an escape hatch. + (?<====) # Only match for the identity operator + \s* + [^\s;)]* # The arbitrary version can be just about anything, + # we match everything except for whitespace, a + # semi-colon for marker support, and a closing paren + # since versions can be enclosed in them. + ) + | + (?: + # The (non)equality operators allow for wild card and local + # versions to be specified so we have to define these two + # operators separately to enable that. + (?<===|!=) # Only match for equals and not equals + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)* # release + + # You cannot use a wild card and a pre-release, post-release, a dev or + # local version together so group them with a | and make them optional. + (?: + \.\* # Wild card syntax of .* + | + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local + )? + ) + | + (?: + # The compatible operator requires at least two digits in the + # release segment. + (?<=~=) # Only match for the compatible operator + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + ) + | + (?: + # All other operators only allow a sub set of what the + # (non)equality operators do. Specifically they do not allow + # local versions to be specified nor do they allow the prefix + # matching wild cards. + (?=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + "===": "arbitrary", + } + + def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: + """Initialize a Specifier instance. + + :param spec: + The string representation of a specifier which will be parsed and + normalized before use. + :param prereleases: + This tells the specifier if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + :raises InvalidSpecifier: + If the given specifier is invalid (i.e. bad syntax). + """ + match = self._regex.search(spec) + if not match: + raise InvalidSpecifier(f"Invalid specifier: '{spec}'") + + self._spec: Tuple[str, str] = ( + match.group("operator").strip(), + match.group("version").strip(), + ) + + # Store whether or not this Specifier should accept prereleases + self._prereleases = prereleases + + # https://github.com/python/mypy/pull/13475#pullrequestreview-1079784515 + @property # type: ignore[override] + def prereleases(self) -> bool: + # If there is an explicit prereleases set for this, then we'll just + # blindly use that. + if self._prereleases is not None: + return self._prereleases + + # Look at all of our specifiers and determine if they are inclusive + # operators, and if they are if they are including an explicit + # prerelease. + operator, version = self._spec + if operator in ["==", ">=", "<=", "~=", "==="]: + # The == specifier can include a trailing .*, if it does we + # want to remove before parsing. + if operator == "==" and version.endswith(".*"): + version = version[:-2] + + # Parse the version, and if it is a pre-release than this + # specifier allows pre-releases. + if Version(version).is_prerelease: + return True + + return False + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + @property + def operator(self) -> str: + """The operator of this specifier. + + >>> Specifier("==1.2.3").operator + '==' + """ + return self._spec[0] + + @property + def version(self) -> str: + """The version of this specifier. + + >>> Specifier("==1.2.3").version + '1.2.3' + """ + return self._spec[1] + + def __repr__(self) -> str: + """A representation of the Specifier that shows all internal state. + + >>> Specifier('>=1.0.0') + =1.0.0')> + >>> Specifier('>=1.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> Specifier('>=1.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"<{self.__class__.__name__}({str(self)!r}{pre})>" + + def __str__(self) -> str: + """A string representation of the Specifier that can be round-tripped. + + >>> str(Specifier('>=1.0.0')) + '>=1.0.0' + >>> str(Specifier('>=1.0.0', prereleases=False)) + '>=1.0.0' + """ + return "{}{}".format(*self._spec) + + @property + def _canonical_spec(self) -> Tuple[str, str]: + canonical_version = canonicalize_version( + self._spec[1], + strip_trailing_zero=(self._spec[0] != "~="), + ) + return self._spec[0], canonical_version + + def __hash__(self) -> int: + return hash(self._canonical_spec) + + def __eq__(self, other: object) -> bool: + """Whether or not the two Specifier-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> Specifier("==1.2.3") == Specifier("== 1.2.3.0") + True + >>> (Specifier("==1.2.3", prereleases=False) == + ... Specifier("==1.2.3", prereleases=True)) + True + >>> Specifier("==1.2.3") == "==1.2.3" + True + >>> Specifier("==1.2.3") == Specifier("==1.2.4") + False + >>> Specifier("==1.2.3") == Specifier("~=1.2.3") + False + """ + if isinstance(other, str): + try: + other = self.__class__(str(other)) + except InvalidSpecifier: + return NotImplemented + elif not isinstance(other, self.__class__): + return NotImplemented + + return self._canonical_spec == other._canonical_spec + + def _get_operator(self, op: str) -> CallableOperator: + operator_callable: CallableOperator = getattr( + self, f"_compare_{self._operators[op]}" + ) + return operator_callable + + def _compare_compatible(self, prospective: Version, spec: str) -> bool: + + # Compatible releases have an equivalent combination of >= and ==. That + # is that ~=2.2 is equivalent to >=2.2,==2.*. This allows us to + # implement this in terms of the other specifiers instead of + # implementing it ourselves. The only thing we need to do is construct + # the other specifiers. + + # We want everything but the last item in the version, but we want to + # ignore suffix segments. + prefix = _version_join( + list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1] + ) + + # Add the prefix notation to the end of our string + prefix += ".*" + + return self._get_operator(">=")(prospective, spec) and self._get_operator("==")( + prospective, prefix + ) + + def _compare_equal(self, prospective: Version, spec: str) -> bool: + + # We need special logic to handle prefix matching + if spec.endswith(".*"): + # In the case of prefix matching we want to ignore local segment. + normalized_prospective = canonicalize_version( + prospective.public, strip_trailing_zero=False + ) + # Get the normalized version string ignoring the trailing .* + normalized_spec = canonicalize_version(spec[:-2], strip_trailing_zero=False) + # Split the spec out by bangs and dots, and pretend that there is + # an implicit dot in between a release segment and a pre-release segment. + split_spec = _version_split(normalized_spec) + + # Split the prospective version out by bangs and dots, and pretend + # that there is an implicit dot in between a release segment and + # a pre-release segment. + split_prospective = _version_split(normalized_prospective) + + # 0-pad the prospective version before shortening it to get the correct + # shortened version. + padded_prospective, _ = _pad_version(split_prospective, split_spec) + + # Shorten the prospective version to be the same length as the spec + # so that we can determine if the specifier is a prefix of the + # prospective version or not. + shortened_prospective = padded_prospective[: len(split_spec)] + + return shortened_prospective == split_spec + else: + # Convert our spec string into a Version + spec_version = Version(spec) + + # If the specifier does not have a local segment, then we want to + # act as if the prospective version also does not have a local + # segment. + if not spec_version.local: + prospective = Version(prospective.public) + + return prospective == spec_version + + def _compare_not_equal(self, prospective: Version, spec: str) -> bool: + return not self._compare_equal(prospective, spec) + + def _compare_less_than_equal(self, prospective: Version, spec: str) -> bool: + + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) <= Version(spec) + + def _compare_greater_than_equal(self, prospective: Version, spec: str) -> bool: + + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) >= Version(spec) + + def _compare_less_than(self, prospective: Version, spec_str: str) -> bool: + + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is less than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective < spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a pre-release version, that we do not accept pre-release + # versions for the version mentioned in the specifier (e.g. <3.1 should + # not match 3.1.dev0, but should match 3.0.dev0). + if not spec.is_prerelease and prospective.is_prerelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # less than the spec version *and* it's not a pre-release of the same + # version in the spec. + return True + + def _compare_greater_than(self, prospective: Version, spec_str: str) -> bool: + + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is greater than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective > spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a post-release version, that we do not accept + # post-release versions for the version mentioned in the specifier + # (e.g. >3.1 should not match 3.0.post0, but should match 3.2.post0). + if not spec.is_postrelease and prospective.is_postrelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # Ensure that we do not allow a local version of the version mentioned + # in the specifier, which is technically greater than, to match. + if prospective.local is not None: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # greater than the spec version *and* it's not a pre-release of the + # same version in the spec. + return True + + def _compare_arbitrary(self, prospective: Version, spec: str) -> bool: + return str(prospective).lower() == str(spec).lower() + + def __contains__(self, item: Union[str, Version]) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in Specifier(">=1.2.3") + True + >>> Version("1.2.3") in Specifier(">=1.2.3") + True + >>> "1.0.0" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3", prereleases=True) + True + """ + return self.contains(item) + + def contains( + self, item: UnparsedVersion, prereleases: Optional[bool] = None + ) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this Specifier. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> Specifier(">=1.2.3").contains("1.2.3") + True + >>> Specifier(">=1.2.3").contains(Version("1.2.3")) + True + >>> Specifier(">=1.2.3").contains("1.0.0") + False + >>> Specifier(">=1.2.3").contains("1.3.0a1") + False + >>> Specifier(">=1.2.3", prereleases=True).contains("1.3.0a1") + True + >>> Specifier(">=1.2.3").contains("1.3.0a1", prereleases=True) + True + """ + + # Determine if prereleases are to be allowed or not. + if prereleases is None: + prereleases = self.prereleases + + # Normalize item to a Version, this allows us to have a shortcut for + # "2.0" in Specifier(">=2") + normalized_item = _coerce_version(item) + + # Determine if we should be supporting prereleases in this specifier + # or not, if we do not support prereleases than we can short circuit + # logic if this version is a prereleases. + if normalized_item.is_prerelease and not prereleases: + return False + + # Actually do the comparison to determine if this item is contained + # within this Specifier or not. + operator_callable: CallableOperator = self._get_operator(self.operator) + return operator_callable(normalized_item, self.version) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: Optional[bool] = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifier. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(Specifier().contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.2.3", "1.3", Version("1.4")])) + ['1.2.3', '1.3', ] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.5a1"])) + ['1.5a1'] + >>> list(Specifier(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(Specifier(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + """ + + yielded = False + found_prereleases = [] + + kw = {"prereleases": prereleases if prereleases is not None else True} + + # Attempt to iterate over all the values in the iterable and if any of + # them match, yield them. + for version in iterable: + parsed_version = _coerce_version(version) + + if self.contains(parsed_version, **kw): + # If our version is a prerelease, and we were not set to allow + # prereleases, then we'll store it for later in case nothing + # else matches this specifier. + if parsed_version.is_prerelease and not ( + prereleases or self.prereleases + ): + found_prereleases.append(version) + # Either this is not a prerelease, or we should have been + # accepting prereleases from the beginning. + else: + yielded = True + yield version + + # Now that we've iterated over everything, determine if we've yielded + # any values, and if we have not and we have any prereleases stored up + # then we will go ahead and yield the prereleases. + if not yielded and found_prereleases: + for version in found_prereleases: + yield version + + +_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") + + +def _version_split(version: str) -> List[str]: + """Split version into components. + + The split components are intended for version comparison. The logic does + not attempt to retain the original version string, so joining the + components back with :func:`_version_join` may not produce the original + version string. + """ + result: List[str] = [] + + epoch, _, rest = version.rpartition("!") + result.append(epoch or "0") + + for item in rest.split("."): + match = _prefix_regex.search(item) + if match: + result.extend(match.groups()) + else: + result.append(item) + return result + + +def _version_join(components: List[str]) -> str: + """Join split version components into a version string. + + This function assumes the input came from :func:`_version_split`, where the + first component must be the epoch (either empty or numeric), and all other + components numeric. + """ + epoch, *rest = components + return f"{epoch}!{'.'.join(rest)}" + + +def _is_not_suffix(segment: str) -> bool: + return not any( + segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post") + ) + + +def _pad_version(left: List[str], right: List[str]) -> Tuple[List[str], List[str]]: + left_split, right_split = [], [] + + # Get the release segment of our versions + left_split.append(list(itertools.takewhile(lambda x: x.isdigit(), left))) + right_split.append(list(itertools.takewhile(lambda x: x.isdigit(), right))) + + # Get the rest of our versions + left_split.append(left[len(left_split[0]) :]) + right_split.append(right[len(right_split[0]) :]) + + # Insert our padding + left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) + right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0]))) + + return (list(itertools.chain(*left_split)), list(itertools.chain(*right_split))) + + +class SpecifierSet(BaseSpecifier): + """This class abstracts handling of a set of version specifiers. + + It can be passed a single specifier (``>=3.0``), a comma-separated list of + specifiers (``>=3.0,!=3.1``), or no specifier at all. + """ + + def __init__( + self, specifiers: str = "", prereleases: Optional[bool] = None + ) -> None: + """Initialize a SpecifierSet instance. + + :param specifiers: + The string representation of a specifier or a comma-separated list of + specifiers which will be parsed and normalized before use. + :param prereleases: + This tells the SpecifierSet if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + + :raises InvalidSpecifier: + If the given ``specifiers`` are not parseable than this exception will be + raised. + """ + + # Split on `,` to break each individual specifier into it's own item, and + # strip each item to remove leading/trailing whitespace. + split_specifiers = [s.strip() for s in specifiers.split(",") if s.strip()] + + # Parsed each individual specifier, attempting first to make it a + # Specifier. + parsed: Set[Specifier] = set() + for specifier in split_specifiers: + parsed.add(Specifier(specifier)) + + # Turn our parsed specifiers into a frozen set and save them for later. + self._specs = frozenset(parsed) + + # Store our prereleases value so we can use it later to determine if + # we accept prereleases or not. + self._prereleases = prereleases + + @property + def prereleases(self) -> Optional[bool]: + # If we have been given an explicit prerelease modifier, then we'll + # pass that through here. + if self._prereleases is not None: + return self._prereleases + + # If we don't have any specifiers, and we don't have a forced value, + # then we'll just return None since we don't know if this should have + # pre-releases or not. + if not self._specs: + return None + + # Otherwise we'll see if any of the given specifiers accept + # prereleases, if any of them do we'll return True, otherwise False. + return any(s.prereleases for s in self._specs) + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __repr__(self) -> str: + """A representation of the specifier set that shows all internal state. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> SpecifierSet('>=1.0.0,!=2.0.0') + =1.0.0')> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"" + + def __str__(self) -> str: + """A string representation of the specifier set that can be round-tripped. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> str(SpecifierSet(">=1.0.0,!=1.0.1")) + '!=1.0.1,>=1.0.0' + >>> str(SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False)) + '!=1.0.1,>=1.0.0' + """ + return ",".join(sorted(str(s) for s in self._specs)) + + def __hash__(self) -> int: + return hash(self._specs) + + def __and__(self, other: Union["SpecifierSet", str]) -> "SpecifierSet": + """Return a SpecifierSet which is a combination of the two sets. + + :param other: The other object to combine with. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") & '<=2.0.0,!=2.0.1' + =1.0.0')> + >>> SpecifierSet(">=1.0.0,!=1.0.1") & SpecifierSet('<=2.0.0,!=2.0.1') + =1.0.0')> + """ + if isinstance(other, str): + other = SpecifierSet(other) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + specifier = SpecifierSet() + specifier._specs = frozenset(self._specs | other._specs) + + if self._prereleases is None and other._prereleases is not None: + specifier._prereleases = other._prereleases + elif self._prereleases is not None and other._prereleases is None: + specifier._prereleases = self._prereleases + elif self._prereleases == other._prereleases: + specifier._prereleases = self._prereleases + else: + raise ValueError( + "Cannot combine SpecifierSets with True and False prerelease " + "overrides." + ) + + return specifier + + def __eq__(self, other: object) -> bool: + """Whether or not the two SpecifierSet-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> (SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False) == + ... SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True)) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == ">=1.0.0,!=1.0.1" + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.2") + False + """ + if isinstance(other, (str, Specifier)): + other = SpecifierSet(str(other)) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + return self._specs == other._specs + + def __len__(self) -> int: + """Returns the number of specifiers in this specifier set.""" + return len(self._specs) + + def __iter__(self) -> Iterator[Specifier]: + """ + Returns an iterator over all the underlying :class:`Specifier` instances + in this specifier set. + + >>> sorted(SpecifierSet(">=1.0.0,!=1.0.1"), key=str) + [, =1.0.0')>] + """ + return iter(self._specs) + + def __contains__(self, item: UnparsedVersion) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> Version("1.2.3") in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> "1.0.1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True) + True + """ + return self.contains(item) + + def contains( + self, + item: UnparsedVersion, + prereleases: Optional[bool] = None, + installed: Optional[bool] = None, + ) -> bool: + """Return whether or not the item is contained in this SpecifierSet. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this SpecifierSet. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.2.3") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains(Version("1.2.3")) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.0.1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True).contains("1.3.0a1") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1", prereleases=True) + True + """ + # Ensure that our item is a Version instance. + if not isinstance(item, Version): + item = Version(item) + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # We can determine if we're going to allow pre-releases by looking to + # see if any of the underlying items supports them. If none of them do + # and this item is a pre-release then we do not allow it and we can + # short circuit that here. + # Note: This means that 1.0.dev1 would not be contained in something + # like >=1.0.devabc however it would be in >=1.0.debabc,>0.0.dev0 + if not prereleases and item.is_prerelease: + return False + + if installed and item.is_prerelease: + item = Version(item.base_version) + + # We simply dispatch to the underlying specs here to make sure that the + # given version is contained within all of them. + # Note: This use of all() here means that an empty set of specifiers + # will always return True, this is an explicit design decision. + return all(s.contains(item, prereleases=prereleases) for s in self._specs) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: Optional[bool] = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifiers in this set. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(SpecifierSet(...).contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", Version("1.4")])) + ['1.3', ] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.5a1"])) + [] + >>> list(SpecifierSet(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(SpecifierSet(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + + An "empty" SpecifierSet will filter items based on the presence of prerelease + versions in the set. + + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet("").filter(["1.5a1"])) + ['1.5a1'] + >>> list(SpecifierSet("", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + """ + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # If we have any specifiers, then we want to wrap our iterable in the + # filter method for each one, this will act as a logical AND amongst + # each specifier. + if self._specs: + for spec in self._specs: + iterable = spec.filter(iterable, prereleases=bool(prereleases)) + return iter(iterable) + # If we do not have any specifiers, then we need to have a rough filter + # which will filter out any pre-releases, unless there are no final + # releases. + else: + filtered: List[UnparsedVersionVar] = [] + found_prereleases: List[UnparsedVersionVar] = [] + + for item in iterable: + parsed_version = _coerce_version(item) + + # Store any item which is a pre-release for later unless we've + # already found a final version or we are accepting prereleases + if parsed_version.is_prerelease and not prereleases: + if not filtered: + found_prereleases.append(item) + else: + filtered.append(item) + + # If we've found no items except for pre-releases, then we'll go + # ahead and use the pre-releases + if not filtered and found_prereleases and prereleases is None: + return iter(found_prereleases) + + return iter(filtered) diff --git a/tools/gyp/pylib/packaging/tags.py b/tools/gyp/pylib/packaging/tags.py new file mode 100644 index 00000000000000..37f33b1ef849ed --- /dev/null +++ b/tools/gyp/pylib/packaging/tags.py @@ -0,0 +1,553 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import logging +import platform +import struct +import subprocess +import sys +import sysconfig +from importlib.machinery import EXTENSION_SUFFIXES +from typing import ( + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Optional, + Sequence, + Tuple, + Union, + cast, +) + +from . import _manylinux, _musllinux + +logger = logging.getLogger(__name__) + +PythonVersion = Sequence[int] +MacVersion = Tuple[int, int] + +INTERPRETER_SHORT_NAMES: Dict[str, str] = { + "python": "py", # Generic. + "cpython": "cp", + "pypy": "pp", + "ironpython": "ip", + "jython": "jy", +} + + +_32_BIT_INTERPRETER = struct.calcsize("P") == 4 + + +class Tag: + """ + A representation of the tag triple for a wheel. + + Instances are considered immutable and thus are hashable. Equality checking + is also supported. + """ + + __slots__ = ["_interpreter", "_abi", "_platform", "_hash"] + + def __init__(self, interpreter: str, abi: str, platform: str) -> None: + self._interpreter = interpreter.lower() + self._abi = abi.lower() + self._platform = platform.lower() + # The __hash__ of every single element in a Set[Tag] will be evaluated each time + # that a set calls its `.disjoint()` method, which may be called hundreds of + # times when scanning a page of links for packages with tags matching that + # Set[Tag]. Pre-computing the value here produces significant speedups for + # downstream consumers. + self._hash = hash((self._interpreter, self._abi, self._platform)) + + @property + def interpreter(self) -> str: + return self._interpreter + + @property + def abi(self) -> str: + return self._abi + + @property + def platform(self) -> str: + return self._platform + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Tag): + return NotImplemented + + return ( + (self._hash == other._hash) # Short-circuit ASAP for perf reasons. + and (self._platform == other._platform) + and (self._abi == other._abi) + and (self._interpreter == other._interpreter) + ) + + def __hash__(self) -> int: + return self._hash + + def __str__(self) -> str: + return f"{self._interpreter}-{self._abi}-{self._platform}" + + def __repr__(self) -> str: + return f"<{self} @ {id(self)}>" + + +def parse_tag(tag: str) -> FrozenSet[Tag]: + """ + Parses the provided tag (e.g. `py3-none-any`) into a frozenset of Tag instances. + + Returning a set is required due to the possibility that the tag is a + compressed tag set. + """ + tags = set() + interpreters, abis, platforms = tag.split("-") + for interpreter in interpreters.split("."): + for abi in abis.split("."): + for platform_ in platforms.split("."): + tags.add(Tag(interpreter, abi, platform_)) + return frozenset(tags) + + +def _get_config_var(name: str, warn: bool = False) -> Union[int, str, None]: + value: Union[int, str, None] = sysconfig.get_config_var(name) + if value is None and warn: + logger.debug( + "Config variable '%s' is unset, Python ABI tag may be incorrect", name + ) + return value + + +def _normalize_string(string: str) -> str: + return string.replace(".", "_").replace("-", "_").replace(" ", "_") + + +def _abi3_applies(python_version: PythonVersion) -> bool: + """ + Determine if the Python version supports abi3. + + PEP 384 was first implemented in Python 3.2. + """ + return len(python_version) > 1 and tuple(python_version) >= (3, 2) + + +def _cpython_abis(py_version: PythonVersion, warn: bool = False) -> List[str]: + py_version = tuple(py_version) # To allow for version comparison. + abis = [] + version = _version_nodot(py_version[:2]) + debug = pymalloc = ucs4 = "" + with_debug = _get_config_var("Py_DEBUG", warn) + has_refcount = hasattr(sys, "gettotalrefcount") + # Windows doesn't set Py_DEBUG, so checking for support of debug-compiled + # extension modules is the best option. + # https://github.com/pypa/pip/issues/3383#issuecomment-173267692 + has_ext = "_d.pyd" in EXTENSION_SUFFIXES + if with_debug or (with_debug is None and (has_refcount or has_ext)): + debug = "d" + if py_version < (3, 8): + with_pymalloc = _get_config_var("WITH_PYMALLOC", warn) + if with_pymalloc or with_pymalloc is None: + pymalloc = "m" + if py_version < (3, 3): + unicode_size = _get_config_var("Py_UNICODE_SIZE", warn) + if unicode_size == 4 or ( + unicode_size is None and sys.maxunicode == 0x10FFFF + ): + ucs4 = "u" + elif debug: + # Debug builds can also load "normal" extension modules. + # We can also assume no UCS-4 or pymalloc requirement. + abis.append(f"cp{version}") + abis.insert( + 0, + "cp{version}{debug}{pymalloc}{ucs4}".format( + version=version, debug=debug, pymalloc=pymalloc, ucs4=ucs4 + ), + ) + return abis + + +def cpython_tags( + python_version: Optional[PythonVersion] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a CPython interpreter. + + The tags consist of: + - cp-- + - cp-abi3- + - cp-none- + - cp-abi3- # Older Python versions down to 3.2. + + If python_version only specifies a major version then user-provided ABIs and + the 'none' ABItag will be used. + + If 'abi3' or 'none' are specified in 'abis' then they will be yielded at + their normal position and not at the beginning. + """ + if not python_version: + python_version = sys.version_info[:2] + + interpreter = f"cp{_version_nodot(python_version[:2])}" + + if abis is None: + if len(python_version) > 1: + abis = _cpython_abis(python_version, warn) + else: + abis = [] + abis = list(abis) + # 'abi3' and 'none' are explicitly handled later. + for explicit_abi in ("abi3", "none"): + try: + abis.remove(explicit_abi) + except ValueError: + pass + + platforms = list(platforms or platform_tags()) + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + if _abi3_applies(python_version): + yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) + yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) + + if _abi3_applies(python_version): + for minor_version in range(python_version[1] - 1, 1, -1): + for platform_ in platforms: + interpreter = "cp{version}".format( + version=_version_nodot((python_version[0], minor_version)) + ) + yield Tag(interpreter, "abi3", platform_) + + +def _generic_abi() -> List[str]: + """ + Return the ABI tag based on EXT_SUFFIX. + """ + # The following are examples of `EXT_SUFFIX`. + # We want to keep the parts which are related to the ABI and remove the + # parts which are related to the platform: + # - linux: '.cpython-310-x86_64-linux-gnu.so' => cp310 + # - mac: '.cpython-310-darwin.so' => cp310 + # - win: '.cp310-win_amd64.pyd' => cp310 + # - win: '.pyd' => cp37 (uses _cpython_abis()) + # - pypy: '.pypy38-pp73-x86_64-linux-gnu.so' => pypy38_pp73 + # - graalpy: '.graalpy-38-native-x86_64-darwin.dylib' + # => graalpy_38_native + + ext_suffix = _get_config_var("EXT_SUFFIX", warn=True) + if not isinstance(ext_suffix, str) or ext_suffix[0] != ".": + raise SystemError("invalid sysconfig.get_config_var('EXT_SUFFIX')") + parts = ext_suffix.split(".") + if len(parts) < 3: + # CPython3.7 and earlier uses ".pyd" on Windows. + return _cpython_abis(sys.version_info[:2]) + soabi = parts[1] + if soabi.startswith("cpython"): + # non-windows + abi = "cp" + soabi.split("-")[1] + elif soabi.startswith("cp"): + # windows + abi = soabi.split("-")[0] + elif soabi.startswith("pypy"): + abi = "-".join(soabi.split("-")[:2]) + elif soabi.startswith("graalpy"): + abi = "-".join(soabi.split("-")[:3]) + elif soabi: + # pyston, ironpython, others? + abi = soabi + else: + return [] + return [_normalize_string(abi)] + + +def generic_tags( + interpreter: Optional[str] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a generic interpreter. + + The tags consist of: + - -- + + The "none" ABI will be added if it was not explicitly provided. + """ + if not interpreter: + interp_name = interpreter_name() + interp_version = interpreter_version(warn=warn) + interpreter = "".join([interp_name, interp_version]) + if abis is None: + abis = _generic_abi() + else: + abis = list(abis) + platforms = list(platforms or platform_tags()) + if "none" not in abis: + abis.append("none") + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + +def _py_interpreter_range(py_version: PythonVersion) -> Iterator[str]: + """ + Yields Python versions in descending order. + + After the latest version, the major-only version will be yielded, and then + all previous versions of that major version. + """ + if len(py_version) > 1: + yield f"py{_version_nodot(py_version[:2])}" + yield f"py{py_version[0]}" + if len(py_version) > 1: + for minor in range(py_version[1] - 1, -1, -1): + yield f"py{_version_nodot((py_version[0], minor))}" + + +def compatible_tags( + python_version: Optional[PythonVersion] = None, + interpreter: Optional[str] = None, + platforms: Optional[Iterable[str]] = None, +) -> Iterator[Tag]: + """ + Yields the sequence of tags that are compatible with a specific version of Python. + + The tags consist of: + - py*-none- + - -none-any # ... if `interpreter` is provided. + - py*-none-any + """ + if not python_version: + python_version = sys.version_info[:2] + platforms = list(platforms or platform_tags()) + for version in _py_interpreter_range(python_version): + for platform_ in platforms: + yield Tag(version, "none", platform_) + if interpreter: + yield Tag(interpreter, "none", "any") + for version in _py_interpreter_range(python_version): + yield Tag(version, "none", "any") + + +def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str: + if not is_32bit: + return arch + + if arch.startswith("ppc"): + return "ppc" + + return "i386" + + +def _mac_binary_formats(version: MacVersion, cpu_arch: str) -> List[str]: + formats = [cpu_arch] + if cpu_arch == "x86_64": + if version < (10, 4): + return [] + formats.extend(["intel", "fat64", "fat32"]) + + elif cpu_arch == "i386": + if version < (10, 4): + return [] + formats.extend(["intel", "fat32", "fat"]) + + elif cpu_arch == "ppc64": + # TODO: Need to care about 32-bit PPC for ppc64 through 10.2? + if version > (10, 5) or version < (10, 4): + return [] + formats.append("fat64") + + elif cpu_arch == "ppc": + if version > (10, 6): + return [] + formats.extend(["fat32", "fat"]) + + if cpu_arch in {"arm64", "x86_64"}: + formats.append("universal2") + + if cpu_arch in {"x86_64", "i386", "ppc64", "ppc", "intel"}: + formats.append("universal") + + return formats + + +def mac_platforms( + version: Optional[MacVersion] = None, arch: Optional[str] = None +) -> Iterator[str]: + """ + Yields the platform tags for a macOS system. + + The `version` parameter is a two-item tuple specifying the macOS version to + generate platform tags for. The `arch` parameter is the CPU architecture to + generate platform tags for. Both parameters default to the appropriate value + for the current system. + """ + version_str, _, cpu_arch = platform.mac_ver() + if version is None: + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + if version == (10, 16): + # When built against an older macOS SDK, Python will report macOS 10.16 + # instead of the real version. + version_str = subprocess.run( + [ + sys.executable, + "-sS", + "-c", + "import platform; print(platform.mac_ver()[0])", + ], + check=True, + env={"SYSTEM_VERSION_COMPAT": "0"}, + stdout=subprocess.PIPE, + text=True, + ).stdout + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + else: + version = version + if arch is None: + arch = _mac_arch(cpu_arch) + else: + arch = arch + + if (10, 0) <= version and version < (11, 0): + # Prior to Mac OS 11, each yearly release of Mac OS bumped the + # "minor" version number. The major version was always 10. + for minor_version in range(version[1], -1, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=10, minor=minor_version, binary_format=binary_format + ) + + if version >= (11, 0): + # Starting with Mac OS 11, each yearly release bumps the major version + # number. The minor versions are now the midyear updates. + for major_version in range(version[0], 10, -1): + compat_version = major_version, 0 + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=major_version, minor=0, binary_format=binary_format + ) + + if version >= (11, 0): + # Mac OS 11 on x86_64 is compatible with binaries from previous releases. + # Arm64 support was introduced in 11.0, so no Arm binaries from previous + # releases exist. + # + # However, the "universal2" binary format can have a + # macOS version earlier than 11.0 when the x86_64 part of the binary supports + # that version of macOS. + if arch == "x86_64": + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + else: + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_format = "universal2" + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + + +def _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: + linux = _normalize_string(sysconfig.get_platform()) + if not linux.startswith("linux_"): + # we should never be here, just yield the sysconfig one and return + yield linux + return + if is_32bit: + if linux == "linux_x86_64": + linux = "linux_i686" + elif linux == "linux_aarch64": + linux = "linux_armv8l" + _, arch = linux.split("_", 1) + archs = {"armv8l": ["armv8l", "armv7l"]}.get(arch, [arch]) + yield from _manylinux.platform_tags(archs) + yield from _musllinux.platform_tags(archs) + for arch in archs: + yield f"linux_{arch}" + + +def _generic_platforms() -> Iterator[str]: + yield _normalize_string(sysconfig.get_platform()) + + +def platform_tags() -> Iterator[str]: + """ + Provides the platform tags for this installation. + """ + if platform.system() == "Darwin": + return mac_platforms() + elif platform.system() == "Linux": + return _linux_platforms() + else: + return _generic_platforms() + + +def interpreter_name() -> str: + """ + Returns the name of the running interpreter. + + Some implementations have a reserved, two-letter abbreviation which will + be returned when appropriate. + """ + name = sys.implementation.name + return INTERPRETER_SHORT_NAMES.get(name) or name + + +def interpreter_version(*, warn: bool = False) -> str: + """ + Returns the version of the running interpreter. + """ + version = _get_config_var("py_version_nodot", warn=warn) + if version: + version = str(version) + else: + version = _version_nodot(sys.version_info[:2]) + return version + + +def _version_nodot(version: PythonVersion) -> str: + return "".join(map(str, version)) + + +def sys_tags(*, warn: bool = False) -> Iterator[Tag]: + """ + Returns the sequence of tag triples for the running interpreter. + + The order of the sequence corresponds to priority order for the + interpreter, from most to least important. + """ + + interp_name = interpreter_name() + if interp_name == "cp": + yield from cpython_tags(warn=warn) + else: + yield from generic_tags() + + if interp_name == "pp": + interp = "pp3" + elif interp_name == "cp": + interp = "cp" + interpreter_version(warn=warn) + else: + interp = None + yield from compatible_tags(interpreter=interp) diff --git a/tools/gyp/pylib/packaging/utils.py b/tools/gyp/pylib/packaging/utils.py new file mode 100644 index 00000000000000..c2c2f75aa80628 --- /dev/null +++ b/tools/gyp/pylib/packaging/utils.py @@ -0,0 +1,172 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import re +from typing import FrozenSet, NewType, Tuple, Union, cast + +from .tags import Tag, parse_tag +from .version import InvalidVersion, Version + +BuildTag = Union[Tuple[()], Tuple[int, str]] +NormalizedName = NewType("NormalizedName", str) + + +class InvalidName(ValueError): + """ + An invalid distribution name; users should refer to the packaging user guide. + """ + + +class InvalidWheelFilename(ValueError): + """ + An invalid wheel filename was found, users should refer to PEP 427. + """ + + +class InvalidSdistFilename(ValueError): + """ + An invalid sdist filename was found, users should refer to the packaging user guide. + """ + + +# Core metadata spec for `Name` +_validate_regex = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE +) +_canonicalize_regex = re.compile(r"[-_.]+") +_normalized_regex = re.compile(r"^([a-z0-9]|[a-z0-9]([a-z0-9-](?!--))*[a-z0-9])$") +# PEP 427: The build number must start with a digit. +_build_tag_regex = re.compile(r"(\d+)(.*)") + + +def canonicalize_name(name: str, *, validate: bool = False) -> NormalizedName: + if validate and not _validate_regex.match(name): + raise InvalidName(f"name is invalid: {name!r}") + # This is taken from PEP 503. + value = _canonicalize_regex.sub("-", name).lower() + return cast(NormalizedName, value) + + +def is_normalized_name(name: str) -> bool: + return _normalized_regex.match(name) is not None + + +def canonicalize_version( + version: Union[Version, str], *, strip_trailing_zero: bool = True +) -> str: + """ + This is very similar to Version.__str__, but has one subtle difference + with the way it handles the release segment. + """ + if isinstance(version, str): + try: + parsed = Version(version) + except InvalidVersion: + # Legacy versions cannot be normalized + return version + else: + parsed = version + + parts = [] + + # Epoch + if parsed.epoch != 0: + parts.append(f"{parsed.epoch}!") + + # Release segment + release_segment = ".".join(str(x) for x in parsed.release) + if strip_trailing_zero: + # NB: This strips trailing '.0's to normalize + release_segment = re.sub(r"(\.0)+$", "", release_segment) + parts.append(release_segment) + + # Pre-release + if parsed.pre is not None: + parts.append("".join(str(x) for x in parsed.pre)) + + # Post-release + if parsed.post is not None: + parts.append(f".post{parsed.post}") + + # Development release + if parsed.dev is not None: + parts.append(f".dev{parsed.dev}") + + # Local version segment + if parsed.local is not None: + parts.append(f"+{parsed.local}") + + return "".join(parts) + + +def parse_wheel_filename( + filename: str, +) -> Tuple[NormalizedName, Version, BuildTag, FrozenSet[Tag]]: + if not filename.endswith(".whl"): + raise InvalidWheelFilename( + f"Invalid wheel filename (extension must be '.whl'): {filename}" + ) + + filename = filename[:-4] + dashes = filename.count("-") + if dashes not in (4, 5): + raise InvalidWheelFilename( + f"Invalid wheel filename (wrong number of parts): {filename}" + ) + + parts = filename.split("-", dashes - 2) + name_part = parts[0] + # See PEP 427 for the rules on escaping the project name. + if "__" in name_part or re.match(r"^[\w\d._]*$", name_part, re.UNICODE) is None: + raise InvalidWheelFilename(f"Invalid project name: {filename}") + name = canonicalize_name(name_part) + + try: + version = Version(parts[1]) + except InvalidVersion as e: + raise InvalidWheelFilename( + f"Invalid wheel filename (invalid version): {filename}" + ) from e + + if dashes == 5: + build_part = parts[2] + build_match = _build_tag_regex.match(build_part) + if build_match is None: + raise InvalidWheelFilename( + f"Invalid build number: {build_part} in '{filename}'" + ) + build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2))) + else: + build = () + tags = parse_tag(parts[-1]) + return (name, version, build, tags) + + +def parse_sdist_filename(filename: str) -> Tuple[NormalizedName, Version]: + if filename.endswith(".tar.gz"): + file_stem = filename[: -len(".tar.gz")] + elif filename.endswith(".zip"): + file_stem = filename[: -len(".zip")] + else: + raise InvalidSdistFilename( + f"Invalid sdist filename (extension must be '.tar.gz' or '.zip'):" + f" {filename}" + ) + + # We are requiring a PEP 440 version, which cannot contain dashes, + # so we split on the last dash. + name_part, sep, version_part = file_stem.rpartition("-") + if not sep: + raise InvalidSdistFilename(f"Invalid sdist filename: {filename}") + + name = canonicalize_name(name_part) + + try: + version = Version(version_part) + except InvalidVersion as e: + raise InvalidSdistFilename( + f"Invalid sdist filename (invalid version): {filename}" + ) from e + + return (name, version) diff --git a/tools/gyp/pylib/packaging/version.py b/tools/gyp/pylib/packaging/version.py new file mode 100644 index 00000000000000..5faab9bd0dcf28 --- /dev/null +++ b/tools/gyp/pylib/packaging/version.py @@ -0,0 +1,563 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from packaging.version import parse, Version +""" + +import itertools +import re +from typing import Any, Callable, NamedTuple, Optional, SupportsInt, Tuple, Union + +from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType + +__all__ = ["VERSION_PATTERN", "parse", "Version", "InvalidVersion"] + +LocalType = Tuple[Union[int, str], ...] + +CmpPrePostDevType = Union[InfinityType, NegativeInfinityType, Tuple[str, int]] +CmpLocalType = Union[ + NegativeInfinityType, + Tuple[Union[Tuple[int, str], Tuple[NegativeInfinityType, Union[int, str]]], ...], +] +CmpKey = Tuple[ + int, + Tuple[int, ...], + CmpPrePostDevType, + CmpPrePostDevType, + CmpPrePostDevType, + CmpLocalType, +] +VersionComparisonMethod = Callable[[CmpKey, CmpKey], bool] + + +class _Version(NamedTuple): + epoch: int + release: Tuple[int, ...] + dev: Optional[Tuple[str, int]] + pre: Optional[Tuple[str, int]] + post: Optional[Tuple[str, int]] + local: Optional[LocalType] + + +def parse(version: str) -> "Version": + """Parse the given version string. + + >>> parse('1.0.dev1') + + + :param version: The version string to parse. + :raises InvalidVersion: When the version string is not a valid version. + """ + return Version(version) + + +class InvalidVersion(ValueError): + """Raised when a version string is not a valid version. + + >>> Version("invalid") + Traceback (most recent call last): + ... + packaging.version.InvalidVersion: Invalid version: 'invalid' + """ + + +class _BaseVersion: + _key: Tuple[Any, ...] + + def __hash__(self) -> int: + return hash(self._key) + + # Please keep the duplicated `isinstance` check + # in the six comparisons hereunder + # unless you find a way to avoid adding overhead function calls. + def __lt__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key < other._key + + def __le__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key <= other._key + + def __eq__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key == other._key + + def __ge__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key >= other._key + + def __gt__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key > other._key + + def __ne__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key != other._key + + +# Deliberately not anchored to the start and end of the string, to make it +# easier for 3rd party code to reuse +_VERSION_PATTERN = r""" + v? + (?: + (?:(?P[0-9]+)!)? # epoch + (?P[0-9]+(?:\.[0-9]+)*) # release segment + (?P
                                                # pre-release
      +            [-_\.]?
      +            (?Palpha|a|beta|b|preview|pre|c|rc)
      +            [-_\.]?
      +            (?P[0-9]+)?
      +        )?
      +        (?P                                         # post release
      +            (?:-(?P[0-9]+))
      +            |
      +            (?:
      +                [-_\.]?
      +                (?Ppost|rev|r)
      +                [-_\.]?
      +                (?P[0-9]+)?
      +            )
      +        )?
      +        (?P                                          # dev release
      +            [-_\.]?
      +            (?Pdev)
      +            [-_\.]?
      +            (?P[0-9]+)?
      +        )?
      +    )
      +    (?:\+(?P[a-z0-9]+(?:[-_\.][a-z0-9]+)*))?       # local version
      +"""
      +
      +VERSION_PATTERN = _VERSION_PATTERN
      +"""
      +A string containing the regular expression used to match a valid version.
      +
      +The pattern is not anchored at either end, and is intended for embedding in larger
      +expressions (for example, matching a version number as part of a file name). The
      +regular expression should be compiled with the ``re.VERBOSE`` and ``re.IGNORECASE``
      +flags set.
      +
      +:meta hide-value:
      +"""
      +
      +
      +class Version(_BaseVersion):
      +    """This class abstracts handling of a project's versions.
      +
      +    A :class:`Version` instance is comparison aware and can be compared and
      +    sorted using the standard Python interfaces.
      +
      +    >>> v1 = Version("1.0a5")
      +    >>> v2 = Version("1.0")
      +    >>> v1
      +    
      +    >>> v2
      +    
      +    >>> v1 < v2
      +    True
      +    >>> v1 == v2
      +    False
      +    >>> v1 > v2
      +    False
      +    >>> v1 >= v2
      +    False
      +    >>> v1 <= v2
      +    True
      +    """
      +
      +    _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE)
      +    _key: CmpKey
      +
      +    def __init__(self, version: str) -> None:
      +        """Initialize a Version object.
      +
      +        :param version:
      +            The string representation of a version which will be parsed and normalized
      +            before use.
      +        :raises InvalidVersion:
      +            If the ``version`` does not conform to PEP 440 in any way then this
      +            exception will be raised.
      +        """
      +
      +        # Validate the version and parse it into pieces
      +        match = self._regex.search(version)
      +        if not match:
      +            raise InvalidVersion(f"Invalid version: '{version}'")
      +
      +        # Store the parsed out pieces of the version
      +        self._version = _Version(
      +            epoch=int(match.group("epoch")) if match.group("epoch") else 0,
      +            release=tuple(int(i) for i in match.group("release").split(".")),
      +            pre=_parse_letter_version(match.group("pre_l"), match.group("pre_n")),
      +            post=_parse_letter_version(
      +                match.group("post_l"), match.group("post_n1") or match.group("post_n2")
      +            ),
      +            dev=_parse_letter_version(match.group("dev_l"), match.group("dev_n")),
      +            local=_parse_local_version(match.group("local")),
      +        )
      +
      +        # Generate a key which will be used for sorting
      +        self._key = _cmpkey(
      +            self._version.epoch,
      +            self._version.release,
      +            self._version.pre,
      +            self._version.post,
      +            self._version.dev,
      +            self._version.local,
      +        )
      +
      +    def __repr__(self) -> str:
      +        """A representation of the Version that shows all internal state.
      +
      +        >>> Version('1.0.0')
      +        
      +        """
      +        return f""
      +
      +    def __str__(self) -> str:
      +        """A string representation of the version that can be rounded-tripped.
      +
      +        >>> str(Version("1.0a5"))
      +        '1.0a5'
      +        """
      +        parts = []
      +
      +        # Epoch
      +        if self.epoch != 0:
      +            parts.append(f"{self.epoch}!")
      +
      +        # Release segment
      +        parts.append(".".join(str(x) for x in self.release))
      +
      +        # Pre-release
      +        if self.pre is not None:
      +            parts.append("".join(str(x) for x in self.pre))
      +
      +        # Post-release
      +        if self.post is not None:
      +            parts.append(f".post{self.post}")
      +
      +        # Development release
      +        if self.dev is not None:
      +            parts.append(f".dev{self.dev}")
      +
      +        # Local version segment
      +        if self.local is not None:
      +            parts.append(f"+{self.local}")
      +
      +        return "".join(parts)
      +
      +    @property
      +    def epoch(self) -> int:
      +        """The epoch of the version.
      +
      +        >>> Version("2.0.0").epoch
      +        0
      +        >>> Version("1!2.0.0").epoch
      +        1
      +        """
      +        return self._version.epoch
      +
      +    @property
      +    def release(self) -> Tuple[int, ...]:
      +        """The components of the "release" segment of the version.
      +
      +        >>> Version("1.2.3").release
      +        (1, 2, 3)
      +        >>> Version("2.0.0").release
      +        (2, 0, 0)
      +        >>> Version("1!2.0.0.post0").release
      +        (2, 0, 0)
      +
      +        Includes trailing zeroes but not the epoch or any pre-release / development /
      +        post-release suffixes.
      +        """
      +        return self._version.release
      +
      +    @property
      +    def pre(self) -> Optional[Tuple[str, int]]:
      +        """The pre-release segment of the version.
      +
      +        >>> print(Version("1.2.3").pre)
      +        None
      +        >>> Version("1.2.3a1").pre
      +        ('a', 1)
      +        >>> Version("1.2.3b1").pre
      +        ('b', 1)
      +        >>> Version("1.2.3rc1").pre
      +        ('rc', 1)
      +        """
      +        return self._version.pre
      +
      +    @property
      +    def post(self) -> Optional[int]:
      +        """The post-release number of the version.
      +
      +        >>> print(Version("1.2.3").post)
      +        None
      +        >>> Version("1.2.3.post1").post
      +        1
      +        """
      +        return self._version.post[1] if self._version.post else None
      +
      +    @property
      +    def dev(self) -> Optional[int]:
      +        """The development number of the version.
      +
      +        >>> print(Version("1.2.3").dev)
      +        None
      +        >>> Version("1.2.3.dev1").dev
      +        1
      +        """
      +        return self._version.dev[1] if self._version.dev else None
      +
      +    @property
      +    def local(self) -> Optional[str]:
      +        """The local version segment of the version.
      +
      +        >>> print(Version("1.2.3").local)
      +        None
      +        >>> Version("1.2.3+abc").local
      +        'abc'
      +        """
      +        if self._version.local:
      +            return ".".join(str(x) for x in self._version.local)
      +        else:
      +            return None
      +
      +    @property
      +    def public(self) -> str:
      +        """The public portion of the version.
      +
      +        >>> Version("1.2.3").public
      +        '1.2.3'
      +        >>> Version("1.2.3+abc").public
      +        '1.2.3'
      +        >>> Version("1.2.3+abc.dev1").public
      +        '1.2.3'
      +        """
      +        return str(self).split("+", 1)[0]
      +
      +    @property
      +    def base_version(self) -> str:
      +        """The "base version" of the version.
      +
      +        >>> Version("1.2.3").base_version
      +        '1.2.3'
      +        >>> Version("1.2.3+abc").base_version
      +        '1.2.3'
      +        >>> Version("1!1.2.3+abc.dev1").base_version
      +        '1!1.2.3'
      +
      +        The "base version" is the public version of the project without any pre or post
      +        release markers.
      +        """
      +        parts = []
      +
      +        # Epoch
      +        if self.epoch != 0:
      +            parts.append(f"{self.epoch}!")
      +
      +        # Release segment
      +        parts.append(".".join(str(x) for x in self.release))
      +
      +        return "".join(parts)
      +
      +    @property
      +    def is_prerelease(self) -> bool:
      +        """Whether this version is a pre-release.
      +
      +        >>> Version("1.2.3").is_prerelease
      +        False
      +        >>> Version("1.2.3a1").is_prerelease
      +        True
      +        >>> Version("1.2.3b1").is_prerelease
      +        True
      +        >>> Version("1.2.3rc1").is_prerelease
      +        True
      +        >>> Version("1.2.3dev1").is_prerelease
      +        True
      +        """
      +        return self.dev is not None or self.pre is not None
      +
      +    @property
      +    def is_postrelease(self) -> bool:
      +        """Whether this version is a post-release.
      +
      +        >>> Version("1.2.3").is_postrelease
      +        False
      +        >>> Version("1.2.3.post1").is_postrelease
      +        True
      +        """
      +        return self.post is not None
      +
      +    @property
      +    def is_devrelease(self) -> bool:
      +        """Whether this version is a development release.
      +
      +        >>> Version("1.2.3").is_devrelease
      +        False
      +        >>> Version("1.2.3.dev1").is_devrelease
      +        True
      +        """
      +        return self.dev is not None
      +
      +    @property
      +    def major(self) -> int:
      +        """The first item of :attr:`release` or ``0`` if unavailable.
      +
      +        >>> Version("1.2.3").major
      +        1
      +        """
      +        return self.release[0] if len(self.release) >= 1 else 0
      +
      +    @property
      +    def minor(self) -> int:
      +        """The second item of :attr:`release` or ``0`` if unavailable.
      +
      +        >>> Version("1.2.3").minor
      +        2
      +        >>> Version("1").minor
      +        0
      +        """
      +        return self.release[1] if len(self.release) >= 2 else 0
      +
      +    @property
      +    def micro(self) -> int:
      +        """The third item of :attr:`release` or ``0`` if unavailable.
      +
      +        >>> Version("1.2.3").micro
      +        3
      +        >>> Version("1").micro
      +        0
      +        """
      +        return self.release[2] if len(self.release) >= 3 else 0
      +
      +
      +def _parse_letter_version(
      +    letter: Optional[str], number: Union[str, bytes, SupportsInt, None]
      +) -> Optional[Tuple[str, int]]:
      +
      +    if letter:
      +        # We consider there to be an implicit 0 in a pre-release if there is
      +        # not a numeral associated with it.
      +        if number is None:
      +            number = 0
      +
      +        # We normalize any letters to their lower case form
      +        letter = letter.lower()
      +
      +        # We consider some words to be alternate spellings of other words and
      +        # in those cases we want to normalize the spellings to our preferred
      +        # spelling.
      +        if letter == "alpha":
      +            letter = "a"
      +        elif letter == "beta":
      +            letter = "b"
      +        elif letter in ["c", "pre", "preview"]:
      +            letter = "rc"
      +        elif letter in ["rev", "r"]:
      +            letter = "post"
      +
      +        return letter, int(number)
      +    if not letter and number:
      +        # We assume if we are given a number, but we are not given a letter
      +        # then this is using the implicit post release syntax (e.g. 1.0-1)
      +        letter = "post"
      +
      +        return letter, int(number)
      +
      +    return None
      +
      +
      +_local_version_separators = re.compile(r"[\._-]")
      +
      +
      +def _parse_local_version(local: Optional[str]) -> Optional[LocalType]:
      +    """
      +    Takes a string like abc.1.twelve and turns it into ("abc", 1, "twelve").
      +    """
      +    if local is not None:
      +        return tuple(
      +            part.lower() if not part.isdigit() else int(part)
      +            for part in _local_version_separators.split(local)
      +        )
      +    return None
      +
      +
      +def _cmpkey(
      +    epoch: int,
      +    release: Tuple[int, ...],
      +    pre: Optional[Tuple[str, int]],
      +    post: Optional[Tuple[str, int]],
      +    dev: Optional[Tuple[str, int]],
      +    local: Optional[LocalType],
      +) -> CmpKey:
      +
      +    # When we compare a release version, we want to compare it with all of the
      +    # trailing zeros removed. So we'll use a reverse the list, drop all the now
      +    # leading zeros until we come to something non zero, then take the rest
      +    # re-reverse it back into the correct order and make it a tuple and use
      +    # that for our sorting key.
      +    _release = tuple(
      +        reversed(list(itertools.dropwhile(lambda x: x == 0, reversed(release))))
      +    )
      +
      +    # We need to "trick" the sorting algorithm to put 1.0.dev0 before 1.0a0.
      +    # We'll do this by abusing the pre segment, but we _only_ want to do this
      +    # if there is not a pre or a post segment. If we have one of those then
      +    # the normal sorting rules will handle this case correctly.
      +    if pre is None and post is None and dev is not None:
      +        _pre: CmpPrePostDevType = NegativeInfinity
      +    # Versions without a pre-release (except as noted above) should sort after
      +    # those with one.
      +    elif pre is None:
      +        _pre = Infinity
      +    else:
      +        _pre = pre
      +
      +    # Versions without a post segment should sort before those with one.
      +    if post is None:
      +        _post: CmpPrePostDevType = NegativeInfinity
      +
      +    else:
      +        _post = post
      +
      +    # Versions without a development segment should sort after those with one.
      +    if dev is None:
      +        _dev: CmpPrePostDevType = Infinity
      +
      +    else:
      +        _dev = dev
      +
      +    if local is None:
      +        # Versions without a local segment should sort before those with one.
      +        _local: CmpLocalType = NegativeInfinity
      +    else:
      +        # Versions with a local segment need that segment parsed to implement
      +        # the sorting rules in PEP440.
      +        # - Alpha numeric segments sort before numeric segments
      +        # - Alpha numeric segments sort lexicographically
      +        # - Numeric segments sort numerically
      +        # - Shorter versions sort before longer versions when the prefixes
      +        #   match exactly
      +        _local = tuple(
      +            (i, "") if isinstance(i, int) else (NegativeInfinity, i) for i in local
      +        )
      +
      +    return epoch, _release, _pre, _post, _dev, _local
      diff --git a/tools/gyp/pyproject.toml b/tools/gyp/pyproject.toml
      new file mode 100644
      index 00000000000000..0c25d0b3c1a065
      --- /dev/null
      +++ b/tools/gyp/pyproject.toml
      @@ -0,0 +1,119 @@
      +[build-system]
      +requires = ["setuptools>=61.0"]
      +build-backend = "setuptools.build_meta"
      +
      +[project]
      +name = "gyp-next"
      +version = "0.16.1"
      +authors = [
      +  { name="Node.js contributors", email="ryzokuken@disroot.org" },
      +]
      +description = "A fork of the GYP build system for use in the Node.js projects"
      +readme = "README.md"
      +license = { file="LICENSE" }
      +requires-python = ">=3.8"
      +# The Python module "packaging" is vendored in the "pylib/packaging" directory to support Python >= 3.12.
      +# dependencies = ["packaging>=23.1"]  # Uncomment this line if the vendored version is removed.
      +classifiers = [
      +    "Development Status :: 3 - Alpha",
      +    "Environment :: Console",
      +    "Intended Audience :: Developers",
      +    "License :: OSI Approved :: BSD License",
      +    "Natural Language :: English",
      +    "Programming Language :: Python",
      +    "Programming Language :: Python :: 3",
      +    "Programming Language :: Python :: 3.8",
      +    "Programming Language :: Python :: 3.9",
      +    "Programming Language :: Python :: 3.10",
      +    "Programming Language :: Python :: 3.11",
      +]
      +
      +[project.optional-dependencies]
      +dev = ["flake8", "ruff", "pytest"]
      +
      +[project.scripts]
      +gyp = "gyp:script_main"
      +
      +[project.urls]
      +"Homepage" = "https://github.com/nodejs/gyp-next"
      +
      +[tool.ruff]
      +select = [
      +  "C4",   # flake8-comprehensions
      +  "C90",  # McCabe cyclomatic complexity
      +  "DTZ",  # flake8-datetimez
      +  "E",    # pycodestyle
      +  "F",    # Pyflakes
      +  "G",    # flake8-logging-format
      +  "ICN",  # flake8-import-conventions
      +  "INT",  # flake8-gettext
      +  "PL",   # Pylint
      +  "PYI",  # flake8-pyi
      +  "RSE",  # flake8-raise
      +  "RUF",  # Ruff-specific rules
      +  "T10",  # flake8-debugger
      +  "TCH",  # flake8-type-checking
      +  "TID",  # flake8-tidy-imports
      +  "UP",   # pyupgrade
      +  "W",    # pycodestyle
      +  "YTT",  # flake8-2020
      +  # "A",    # flake8-builtins
      +  # "ANN",  # flake8-annotations
      +  # "ARG",  # flake8-unused-arguments
      +  # "B",    # flake8-bugbear
      +  # "BLE",  # flake8-blind-except
      +  # "COM",  # flake8-commas
      +  # "D",    # pydocstyle
      +  # "DJ",   # flake8-django
      +  # "EM",   # flake8-errmsg
      +  # "ERA",  # eradicate
      +  # "EXE",  # flake8-executable
      +  # "FBT",  # flake8-boolean-trap
      +  # "I",    # isort
      +  # "INP",  # flake8-no-pep420
      +  # "ISC",  # flake8-implicit-str-concat
      +  # "N",    # pep8-naming
      +  # "NPY",  # NumPy-specific rules
      +  # "PD",   # pandas-vet
      +  # "PGH",  # pygrep-hooks
      +  # "PIE",  # flake8-pie
      +  # "PT",   # flake8-pytest-style
      +  # "PTH",  # flake8-use-pathlib
      +  # "Q",    # flake8-quotes
      +  # "RET",  # flake8-return
      +  # "S",    # flake8-bandit
      +  # "SIM",  # flake8-simplify
      +  # "SLF",  # flake8-self
      +  # "T20",  # flake8-print
      +  # "TRY",  # tryceratops
      +]
      +ignore = [
      +  "E721",
      +  "PLC1901",
      +  "PLR0402",
      +  "PLR1714",
      +  "PLR2004",
      +  "PLR5501",
      +  "PLW0603",
      +  "PLW2901",
      +  "PYI024",
      +  "RUF005",
      +  "RUF012",
      +  "UP031",
      +]
      +extend-exclude = ["pylib/packaging"]
      +line-length = 88
      +target-version = "py37"
      +
      +[tool.ruff.mccabe]
      +max-complexity = 101
      +
      +[tool.ruff.pylint]
      +max-args = 11
      +max-branches = 108
      +max-returns = 10
      +max-statements = 286
      +
      +[tool.setuptools]
      +package-dir = {"" = "pylib"}
      +packages = ["gyp", "gyp.generator"]
      diff --git a/tools/gyp/requirements_dev.txt b/tools/gyp/requirements_dev.txt
      deleted file mode 100644
      index 28ecacab602938..00000000000000
      --- a/tools/gyp/requirements_dev.txt
      +++ /dev/null
      @@ -1,2 +0,0 @@
      -flake8
      -pytest
      diff --git a/tools/gyp/setup.py b/tools/gyp/setup.py
      deleted file mode 100644
      index 1bb6908deaf8ce..00000000000000
      --- a/tools/gyp/setup.py
      +++ /dev/null
      @@ -1,42 +0,0 @@
      -#!/usr/bin/env python3
      -
      -# Copyright (c) 2009 Google Inc. All rights reserved.
      -# Use of this source code is governed by a BSD-style license that can be
      -# found in the LICENSE file.
      -
      -from os import path
      -
      -from setuptools import setup
      -
      -here = path.abspath(path.dirname(__file__))
      -# Get the long description from the README file
      -with open(path.join(here, "README.md")) as in_file:
      -    long_description = in_file.read()
      -
      -setup(
      -    name="gyp-next",
      -    version="0.13.0",
      -    description="A fork of the GYP build system for use in the Node.js projects",
      -    long_description=long_description,
      -    long_description_content_type="text/markdown",
      -    author="Node.js contributors",
      -    author_email="ryzokuken@disroot.org",
      -    url="https://github.com/nodejs/gyp-next",
      -    package_dir={"": "pylib"},
      -    packages=["gyp", "gyp.generator"],
      -    entry_points={"console_scripts": ["gyp=gyp:script_main"]},
      -    python_requires=">=3.6",
      -    classifiers=[
      -        "Development Status :: 3 - Alpha",
      -        "Environment :: Console",
      -        "Intended Audience :: Developers",
      -        "License :: OSI Approved :: BSD License",
      -        "Natural Language :: English",
      -        "Programming Language :: Python",
      -        "Programming Language :: Python :: 3",
      -        "Programming Language :: Python :: 3.6",
      -        "Programming Language :: Python :: 3.7",
      -        "Programming Language :: Python :: 3.8",
      -        "Programming Language :: Python :: 3.9",
      -    ],
      -)
      diff --git a/tools/gyp/tools/pretty_sln.py b/tools/gyp/tools/pretty_sln.py
      index 6ca0cd12a7ba06..cf0638a23d635d 100755
      --- a/tools/gyp/tools/pretty_sln.py
      +++ b/tools/gyp/tools/pretty_sln.py
      @@ -34,10 +34,10 @@ def BuildProject(project, built, projects, deps):
       
       def ParseSolution(solution_file):
           # All projects, their clsid and paths.
      -    projects = dict()
      +    projects = {}
       
           # A list of dependencies associated with a project.
      -    dependencies = dict()
      +    dependencies = {}
       
           # Regular expressions that matches the SLN format.
           # The first line of a project definition.
      diff --git a/tools/gyp/tools/pretty_vcproj.py b/tools/gyp/tools/pretty_vcproj.py
      index 00d32debda51f0..72c65d7fc495f9 100755
      --- a/tools/gyp/tools/pretty_vcproj.py
      +++ b/tools/gyp/tools/pretty_vcproj.py
      @@ -21,7 +21,7 @@
       
       __author__ = "nsylvain (Nicolas Sylvain)"
       ARGUMENTS = None
      -REPLACEMENTS = dict()
      +REPLACEMENTS = {}
       
       
       def cmp(x, y):
      diff --git a/tools/gypi_to_gn.py b/tools/gypi_to_gn.py
      new file mode 100755
      index 00000000000000..47182d8017bfc2
      --- /dev/null
      +++ b/tools/gypi_to_gn.py
      @@ -0,0 +1,219 @@
      +#!/usr/bin/env python3
      +# Copyright 2014 The Chromium Authors. All rights reserved.
      +# Use of this source code is governed by a BSD-style license that can be
      +# found in the LICENSE file.
      +# Deleted from Chromium in https://crrev.com/097f64c631.
      +
      +"""Converts a given gypi file to a python scope and writes the result to stdout.
      +USING THIS SCRIPT IN CHROMIUM
      +Forking Python to run this script in the middle of GN is slow, especially on
      +Windows, and it makes both the GYP and GN files harder to follow. You can't
      +use "git grep" to find files in the GN build any more, and tracking everything
      +in GYP down requires a level of indirection. Any calls will have to be removed
      +and cleaned up once the GYP-to-GN transition is complete.
      +As a result, we only use this script when the list of files is large and
      +frequently-changing. In these cases, having one canonical list outweights the
      +downsides.
      +As of this writing, the GN build is basically complete. It's likely that all
      +large and frequently changing targets where this is appropriate use this
      +mechanism already. And since we hope to turn down the GYP build soon, the time
      +horizon is also relatively short. As a result, it is likely that no additional
      +uses of this script should every be added to the build. During this later part
      +of the transition period, we should be focusing more and more on the absolute
      +readability of the GN build.
      +HOW TO USE
      +It is assumed that the file contains a toplevel dictionary, and this script
      +will return that dictionary as a GN "scope" (see example below). This script
      +does not know anything about GYP and it will not expand variables or execute
      +conditions.
      +It will strip conditions blocks.
      +A variables block at the top level will be flattened so that the variables
      +appear in the root dictionary. This way they can be returned to the GN code.
      +Say your_file.gypi looked like this:
      +  {
      +     'sources': [ 'a.cc', 'b.cc' ],
      +     'defines': [ 'ENABLE_DOOM_MELON' ],
      +  }
      +You would call it like this:
      +  gypi_values = exec_script("//build/gypi_to_gn.py",
      +                            [ rebase_path("your_file.gypi") ],
      +                            "scope",
      +                            [ "your_file.gypi" ])
      +Notes:
      + - The rebase_path call converts the gypi file from being relative to the
      +   current build file to being system absolute for calling the script, which
      +   will have a different current directory than this file.
      + - The "scope" parameter tells GN to interpret the result as a series of GN
      +   variable assignments.
      + - The last file argument to exec_script tells GN that the given file is a
      +   dependency of the build so Ninja can automatically re-run GN if the file
      +   changes.
      +Read the values into a target like this:
      +  component("mycomponent") {
      +    sources = gypi_values.sources
      +    defines = gypi_values.defines
      +  }
      +Sometimes your .gypi file will include paths relative to a different
      +directory than the current .gn file. In this case, you can rebase them to
      +be relative to the current directory.
      +  sources = rebase_path(gypi_values.sources, ".",
      +                        "//path/gypi/input/values/are/relative/to")
      +This script will tolerate a 'variables' in the toplevel dictionary or not. If
      +the toplevel dictionary just contains one item called 'variables', it will be
      +collapsed away and the result will be the contents of that dictinoary. Some
      +.gypi files are written with or without this, depending on how they expect to
      +be embedded into a .gyp file.
      +This script also has the ability to replace certain substrings in the input.
      +Generally this is used to emulate GYP variable expansion. If you passed the
      +argument "--replace=<(foo)=bar" then all instances of "<(foo)" in strings in
      +the input will be replaced with "bar":
      +  gypi_values = exec_script("//build/gypi_to_gn.py",
      +                            [ rebase_path("your_file.gypi"),
      +                              "--replace=<(foo)=bar"],
      +                            "scope",
      +                            [ "your_file.gypi" ])
      +"""
      +
      +from __future__ import absolute_import
      +from __future__ import print_function
      +from optparse import OptionParser
      +import os
      +import sys
      +
      +
      +# Look for standalone GN distribution.
      +def FindGNPath():
      +  for i in os.environ['PATH'].split(os.pathsep):
      +    if i.rstrip(os.sep).endswith('gn'):
      +      return i
      +  return None
      +
      +
      +try:
      +  # May already be in the import path.
      +  import gn_helpers
      +except ImportError:
      +  # Add src/build to import path.
      +  src_dir = os.path.abspath(os.path.join(os.path.dirname(__file__),
      +                            os.pardir, os.pardir))
      +  sys.path.append(os.path.join(src_dir, 'build'))
      +  if FindGNPath():
      +    sys.path.append(os.path.join(FindGNPath(), 'build'))
      +  import gn_helpers
      +
      +
      +def LoadPythonDictionary(path):
      +  file_string = open(path).read()
      +  try:
      +    file_data = eval(file_string, {'__builtins__': None}, None)
      +  except SyntaxError as e:
      +    e.filename = path
      +    raise
      +  except Exception as e:
      +    raise Exception("Unexpected error while reading %s: %s" % (path, str(e)))
      +
      +  assert isinstance(file_data, dict), "%s does not eval to a dictionary" % path
      +
      +  # Flatten any variables to the top level.
      +  if 'variables' in file_data:
      +    file_data.update(file_data['variables'])
      +    del file_data['variables']
      +
      +  # Strip all elements that this script can't process.
      +  elements_to_strip = [
      +    'conditions',
      +    'direct_dependent_settings',
      +    'target_conditions',
      +    'target_defaults',
      +    'targets',
      +    'includes',
      +    'actions',
      +  ]
      +  for element in elements_to_strip:
      +    if element in file_data:
      +      del file_data[element]
      +
      +  return file_data
      +
      +
      +def ReplaceSubstrings(values, search_for, replace_with):
      +  """Recursively replaces substrings in a value.
      +  Replaces all substrings of the "search_for" with "repace_with" for all
      +  strings occurring in "values". This is done by recursively iterating into
      +  lists as well as the keys and values of dictionaries."""
      +  if isinstance(values, str):
      +    return values.replace(search_for, replace_with)
      +
      +  if isinstance(values, list):
      +    result = []
      +    for v in values:
      +      # Remove the item from list for complete match.
      +      if v == search_for and replace_with == '':
      +        continue
      +      result.append(ReplaceSubstrings(v, search_for, replace_with))
      +    return result
      +
      +  if isinstance(values, dict):
      +    # For dictionaries, do the search for both the key and values.
      +    result = {}
      +    for key, value in values.items():
      +      new_key = ReplaceSubstrings(key, search_for, replace_with)
      +      new_value = ReplaceSubstrings(value, search_for, replace_with)
      +      result[new_key] = new_value
      +    return result
      +
      +  # Assume everything else is unchanged.
      +  return values
      +
      +
      +def DeduplicateLists(values):
      +  """Recursively remove duplicate values in lists."""
      +  if isinstance(values, list):
      +    return sorted(list(set(values)))
      +
      +  if isinstance(values, dict):
      +    for key in values:
      +      values[key] = DeduplicateLists(values[key])
      +  return values
      +
      +
      +def main():
      +  parser = OptionParser()
      +  parser.add_option("-r", "--replace", action="append",
      +    help="Replaces substrings. If passed a=b, replaces all substrs a with b.")
      +  (options, args) = parser.parse_args()
      +
      +  if len(args) != 1:
      +    raise Exception("Need one argument which is the .gypi file to read.")
      +
      +  data = LoadPythonDictionary(args[0])
      +  if options.replace:
      +    # Do replacements for all specified patterns.
      +    for replace in options.replace:
      +      split = replace.split('=')
      +      # Allow "foo=" to replace with nothing.
      +      if len(split) == 1:
      +        split.append('')
      +      assert len(split) == 2, "Replacement must be of the form 'key=value'."
      +      data = ReplaceSubstrings(data, split[0], split[1])
      +
      +  gn_dict = {}
      +  for key in data:
      +    gn_key = key.replace('-', '_')
      +    # Sometimes .gypi files use the GYP syntax with percents at the end of the
      +    # variable name (to indicate not to overwrite a previously-defined value):
      +    #   'foo%': 'bar',
      +    # Convert these to regular variables.
      +    if len(key) > 1 and key[len(key) - 1] == '%':
      +      gn_dict[gn_key[:-1]] = data[key]
      +    else:
      +      gn_dict[gn_key] = data[key]
      +
      +  print(gn_helpers.ToGNString(DeduplicateLists(gn_dict)))
      +
      +if __name__ == '__main__':
      +  try:
      +    main()
      +  except Exception as e:
      +    print(str(e))
      +    sys.exit(1)
      diff --git a/tools/lint-md/lint-md.mjs b/tools/lint-md/lint-md.mjs
      index bdea9c710cfea5..d42a103f3af070 100644
      --- a/tools/lint-md/lint-md.mjs
      +++ b/tools/lint-md/lint-md.mjs
      @@ -3062,19 +3062,15 @@ function constructs(existing, list) {
       function decodeNumericCharacterReference(value, base) {
         const code = Number.parseInt(value, base);
         if (
      -    code < 9 ||
      -    code === 11 ||
      -    (code > 13 && code < 32) ||
      -    (code > 126 && code < 160) ||
      -    (code > 55_295 && code < 57_344) ||
      -    (code > 64_975 && code < 65_008)  ||
      -    (code & 65_535) === 65_535 ||
      -    (code & 65_535) === 65_534  ||
      -    code > 1_114_111
      -  ) {
      -    return '\uFFFD'
      +  code < 9 || code === 11 || code > 13 && code < 32 ||
      +  code > 126 && code < 160 ||
      +  code > 55_295 && code < 57_344 ||
      +  code > 64_975 && code < 65_008 ||
      +  (code & 65_535) === 65_535 || (code & 65_535) === 65_534 ||
      +  code > 1_114_111) {
      +    return "\uFFFD";
         }
      -  return String.fromCharCode(code)
      +  return String.fromCodePoint(code);
       }
       
       function normalizeIdentifier$1(value) {
      @@ -27456,7 +27452,7 @@ var eastasianwidthExports = eastasianwidth.exports;
       var eastAsianWidth = getDefaultExportFromCjs(eastasianwidthExports);
       
       var emojiRegex = () => {
      -	return /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26F9(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC3\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC08\uDC26](?:\u200D\u2B1B)?|[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC2\uDECE-\uDEDB\uDEE0-\uDEE8]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF-\uDDB3\uDDBC\uDDBD]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;
      +	return /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC2\uDECE-\uDEDB\uDEE0-\uDEE8]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;
       };
       
       function stringWidth(string, options) {
      diff --git a/tools/lint-md/package-lock.json b/tools/lint-md/package-lock.json
      index 6c1310c681d71e..89b85c81f81a49 100644
      --- a/tools/lint-md/package-lock.json
      +++ b/tools/lint-md/package-lock.json
      @@ -12,13 +12,13 @@
               "remark-preset-lint-node": "^5.0.0",
               "remark-stringify": "^11.0.0",
               "to-vfile": "^8.0.0",
      -        "unified": "^11.0.3",
      +        "unified": "^11.0.4",
               "vfile-reporter": "^8.1.0"
             },
             "devDependencies": {
      -        "@rollup/plugin-commonjs": "^25.0.5",
      -        "@rollup/plugin-node-resolve": "^15.2.2",
      -        "rollup": "^4.0.2",
      +        "@rollup/plugin-commonjs": "^25.0.7",
      +        "@rollup/plugin-node-resolve": "^15.2.3",
      +        "rollup": "^4.3.0",
               "rollup-plugin-cleanup": "^3.2.1"
             }
           },
      @@ -29,9 +29,9 @@
             "dev": true
           },
           "node_modules/@rollup/plugin-commonjs": {
      -      "version": "25.0.5",
      -      "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.5.tgz",
      -      "integrity": "sha512-xY8r/A9oisSeSuLCTfhssyDjo9Vp/eDiRLXkg1MXCcEEgEjPmLU+ZyDB20OOD0NlyDa/8SGbK5uIggF5XTx77w==",
      +      "version": "25.0.7",
      +      "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.7.tgz",
      +      "integrity": "sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==",
             "dev": true,
             "dependencies": {
               "@rollup/pluginutils": "^5.0.1",
      @@ -39,7 +39,7 @@
               "estree-walker": "^2.0.2",
               "glob": "^8.0.3",
               "is-reference": "1.2.1",
      -        "magic-string": "^0.27.0"
      +        "magic-string": "^0.30.3"
             },
             "engines": {
               "node": ">=14.0.0"
      @@ -54,9 +54,9 @@
             }
           },
           "node_modules/@rollup/plugin-node-resolve": {
      -      "version": "15.2.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.2.tgz",
      -      "integrity": "sha512-f64bU4OKqV0yihtxFemmuf0oj37pToCFMISCA+sJbbIAl5wcpbRO9XgWNWb1tDiWQJUcPxo6V0l59hcuZOQ3kw==",
      +      "version": "15.2.3",
      +      "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz",
      +      "integrity": "sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==",
             "dev": true,
             "dependencies": {
               "@rollup/pluginutils": "^5.0.1",
      @@ -101,9 +101,9 @@
             }
           },
           "node_modules/@rollup/rollup-android-arm-eabi": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.0.2.tgz",
      -      "integrity": "sha512-xDvk1pT4vaPU2BOLy0MqHMdYZyntqpaBf8RhBiezlqG9OjY8F50TyctHo8znigYKd+QCFhCmlmXHOL/LoaOl3w==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.3.0.tgz",
      +      "integrity": "sha512-/4pns6BYi8MXdwnXM44yoGAcFYVHL/BYlB2q1HXZ6AzH++LaiEVWFpBWQ/glXhbMbv3E3o09igrHFbP/snhAvA==",
             "cpu": [
               "arm"
             ],
      @@ -114,9 +114,9 @@
             ]
           },
           "node_modules/@rollup/rollup-android-arm64": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.0.2.tgz",
      -      "integrity": "sha512-lqCglytY3E6raze27DD9VQJWohbwCxzqs9aSHcj5X/8hJpzZfNdbsr4Ja9Hqp6iPyF53+5PtPx0pKRlkSvlHZg==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.3.0.tgz",
      +      "integrity": "sha512-nLO/JsL9idr416vzi3lHm3Xm+QZh4qHij8k3Er13kZr5YhL7/+kBAx84kDmPc7HMexLmwisjDCeDIKNFp8mDlQ==",
             "cpu": [
               "arm64"
             ],
      @@ -127,9 +127,9 @@
             ]
           },
           "node_modules/@rollup/rollup-darwin-arm64": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.0.2.tgz",
      -      "integrity": "sha512-nkBKItS6E6CCzvRwgiKad+j+1ibmL7SIInj7oqMWmdkCjiSX6VeVZw2mLlRKIUL+JjsBgpATTfo7BiAXc1v0jA==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.3.0.tgz",
      +      "integrity": "sha512-dGhVBlllt4iHwTGy21IEoMOTN5wZoid19zEIxsdY29xcEiOEHqzDa7Sqrkh5OE7LKCowL61eFJXxYe/+pYa7ZQ==",
             "cpu": [
               "arm64"
             ],
      @@ -140,9 +140,9 @@
             ]
           },
           "node_modules/@rollup/rollup-darwin-x64": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.0.2.tgz",
      -      "integrity": "sha512-vX2C8xvWPIbpEgQht95+dY6BReKAvtDgPDGi0XN0kWJKkm4WdNmq5dnwscv/zxvi+n6jUTBhs6GtpkkWT4q8Gg==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.3.0.tgz",
      +      "integrity": "sha512-h8wRfHeLEbU3NzaP1Oku7BYXCJQiTRr+8U0lklyOQXxXiEpHLL8tk1hFl+tezoRKLcPJD7joKaK74ASsqt3Ekg==",
             "cpu": [
               "x64"
             ],
      @@ -153,9 +153,9 @@
             ]
           },
           "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.0.2.tgz",
      -      "integrity": "sha512-DVFIfcHOjgmeHOAqji4xNz2wczt1Bmzy9MwBZKBa83SjBVO/i38VHDR+9ixo8QpBOiEagmNw12DucG+v55tCrg==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.3.0.tgz",
      +      "integrity": "sha512-wP4VgR/gfV18sylTuym3sxRTkAgUR2vh6YLeX/GEznk5jCYcYSlx585XlcUcl0c8UffIZlRJ09raWSX3JDb4GA==",
             "cpu": [
               "arm"
             ],
      @@ -166,9 +166,9 @@
             ]
           },
           "node_modules/@rollup/rollup-linux-arm64-gnu": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.0.2.tgz",
      -      "integrity": "sha512-GCK/a9ItUxPI0V5hQEJjH4JtOJO90GF2Hja7TO+EZ8rmkGvEi8/ZDMhXmcuDpQT7/PWrTT9RvnG8snMd5SrhBQ==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.3.0.tgz",
      +      "integrity": "sha512-v/14JCYVkqRSJeQbxFx4oUkwVQQw6lFMN7bd4vuARBc3X2lmomkxBsc+BFiIDL/BK+CTx5AOh/k9XmqDnKWRVg==",
             "cpu": [
               "arm64"
             ],
      @@ -179,9 +179,9 @@
             ]
           },
           "node_modules/@rollup/rollup-linux-arm64-musl": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.0.2.tgz",
      -      "integrity": "sha512-cLuBp7rOjIB1R2j/VazjCmHC7liWUur2e9mFflLJBAWCkrZ+X0+QwHLvOQakIwDymungzAKv6W9kHZnTp/Mqrg==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.3.0.tgz",
      +      "integrity": "sha512-tNhfYqFH5OxtRzfkTOKdgFYlPSZnlDLNW4+leNEvQZhwTJxoTwsZAAhR97l3qVry/kkLyJPBK+Q8EAJLPinDIg==",
             "cpu": [
               "arm64"
             ],
      @@ -192,9 +192,9 @@
             ]
           },
           "node_modules/@rollup/rollup-linux-x64-gnu": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.0.2.tgz",
      -      "integrity": "sha512-Zqw4iVnJr2naoyQus0yLy7sLtisCQcpdMKUCeXPBjkJtpiflRime/TMojbnl8O3oxUAj92mxr+t7im/RbgA20w==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.3.0.tgz",
      +      "integrity": "sha512-pw77m8QywdsoFdFOgmc8roF1inBI0rciqzO8ffRUgLoq7+ee9o5eFqtEcS6hHOOplgifAUUisP8cAnwl9nUYPw==",
             "cpu": [
               "x64"
             ],
      @@ -205,9 +205,9 @@
             ]
           },
           "node_modules/@rollup/rollup-linux-x64-musl": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.0.2.tgz",
      -      "integrity": "sha512-jJRU9TyUD/iMqjf8aLAp7XiN3pIj5v6Qcu+cdzBfVTKDD0Fvua4oUoK8eVJ9ZuKBEQKt3WdlcwJXFkpmMLk6kg==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.3.0.tgz",
      +      "integrity": "sha512-tJs7v2MnV2F8w6X1UpPHl/43OfxjUy9SuJ2ZPoxn79v9vYteChVYO/ueLHCpRMmyTUIVML3N9z4azl9ENH8Xxg==",
             "cpu": [
               "x64"
             ],
      @@ -218,9 +218,9 @@
             ]
           },
           "node_modules/@rollup/rollup-win32-arm64-msvc": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.0.2.tgz",
      -      "integrity": "sha512-ZkS2NixCxHKC4zbOnw64ztEGGDVIYP6nKkGBfOAxEPW71Sji9v8z3yaHNuae/JHPwXA+14oDefnOuVfxl59SmQ==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.3.0.tgz",
      +      "integrity": "sha512-OKGxp6kATQdTyI2DF+e9s+hB3/QZB45b6e+dzcfW1SUqiF6CviWyevhmT4USsMEdP3mlpC9zxLz3Oh+WaTMOSw==",
             "cpu": [
               "arm64"
             ],
      @@ -231,9 +231,9 @@
             ]
           },
           "node_modules/@rollup/rollup-win32-ia32-msvc": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.0.2.tgz",
      -      "integrity": "sha512-3SKjj+tvnZ0oZq2BKB+fI+DqYI83VrRzk7eed8tJkxeZ4zxJZcLSE8YDQLYGq1tZAnAX+H076RHHB4gTZXsQzw==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.3.0.tgz",
      +      "integrity": "sha512-DDZ5AH68JJ2ClQFEA1aNnfA7Ybqyeh0644rGbrLOdNehTmzfICHiWSn0OprzYi9HAshTPQvlwrM+bi2kuaIOjQ==",
             "cpu": [
               "ia32"
             ],
      @@ -244,9 +244,9 @@
             ]
           },
           "node_modules/@rollup/rollup-win32-x64-msvc": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.0.2.tgz",
      -      "integrity": "sha512-MBdJIOxRauKkry7t2q+rTHa3aWjVez2eioWg+etRVS3dE4tChhmt5oqZYr48R6bPmcwEhxQr96gVRfeQrLbqng==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.3.0.tgz",
      +      "integrity": "sha512-dMvGV8p92GQ8jhNlGIKpyhVZPzJlT258pPrM5q2F8lKcc9Iv9BbfdnhX1OfinYWnb9ms5zLw6MlaMnqLfUkKnQ==",
             "cpu": [
               "x64"
             ],
      @@ -257,51 +257,51 @@
             ]
           },
           "node_modules/@types/debug": {
      -      "version": "4.1.9",
      -      "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.9.tgz",
      -      "integrity": "sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==",
      +      "version": "4.1.10",
      +      "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.10.tgz",
      +      "integrity": "sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==",
             "dependencies": {
               "@types/ms": "*"
             }
           },
           "node_modules/@types/estree": {
      -      "version": "1.0.2",
      -      "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.2.tgz",
      -      "integrity": "sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA=="
      +      "version": "1.0.4",
      +      "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.4.tgz",
      +      "integrity": "sha512-2JwWnHK9H+wUZNorf2Zr6ves96WHoWDJIftkcxPKsS7Djta6Zu519LarhRNljPXkpsZR2ZMwNCPeW7omW07BJw=="
           },
           "node_modules/@types/estree-jsx": {
      -      "version": "1.0.1",
      -      "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.1.tgz",
      -      "integrity": "sha512-sHyakZlAezNFxmYRo0fopDZW+XvK6ipeZkkp5EAOLjdPfZp8VjZBJ67vSRI99RSCAoqXVmXOHS4fnWoxpuGQtQ==",
      +      "version": "1.0.2",
      +      "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.2.tgz",
      +      "integrity": "sha512-GNBWlGBMjiiiL5TSkvPtOteuXsiVitw5MYGY1UYlrAq0SKyczsls6sCD7TZ8fsjRsvCVxml7EbyjJezPb3DrSA==",
             "dependencies": {
               "@types/estree": "*"
             }
           },
           "node_modules/@types/hast": {
      -      "version": "2.3.6",
      -      "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.6.tgz",
      -      "integrity": "sha512-47rJE80oqPmFdVDCD7IheXBrVdwuBgsYwoczFvKmwfo2Mzsnt+V9OONsYauFmICb6lQPpCuXYJWejBNs4pDJRg==",
      +      "version": "2.3.7",
      +      "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.7.tgz",
      +      "integrity": "sha512-EVLigw5zInURhzfXUM65eixfadfsHKomGKUakToXo84t8gGIJuTcD2xooM2See7GyQ7DRtYjhCHnSUQez8JaLw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/@types/hast/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/@types/mdast": {
      -      "version": "4.0.1",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.1.tgz",
      -      "integrity": "sha512-IlKct1rUTJ1T81d8OHzyop15kGv9A/ff7Gz7IJgrk6jDb4Udw77pCJ+vq8oxZf4Ghpm+616+i1s/LNg/Vh7d+g==",
      +      "version": "4.0.2",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.2.tgz",
      +      "integrity": "sha512-tYR83EignvhYO9iU3kDg8V28M0jqyh9zzp5GV+EO+AYnyUl3P5ltkTeJuTiFZQFz670FSb3EwT/6LQdX+UdKfw==",
             "dependencies": {
               "@types/unist": "*"
             }
           },
           "node_modules/@types/ms": {
      -      "version": "0.7.32",
      -      "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.32.tgz",
      -      "integrity": "sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g=="
      +      "version": "0.7.33",
      +      "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.33.tgz",
      +      "integrity": "sha512-AuHIyzR5Hea7ij0P9q7vx7xu4z0C28ucwjAZC0ja7JhINyCnOw8/DnvAPQQ9TfOlCtZAmCERKQX9+o1mgQhuOQ=="
           },
           "node_modules/@types/resolve": {
             "version": "1.20.2",
      @@ -310,14 +310,14 @@
             "dev": true
           },
           "node_modules/@types/supports-color": {
      -      "version": "8.1.1",
      -      "resolved": "https://registry.npmjs.org/@types/supports-color/-/supports-color-8.1.1.tgz",
      -      "integrity": "sha512-dPWnWsf+kzIG140B8z2w3fr5D03TLWbOAFQl45xUpI3vcizeXriNR5VYkWZ+WTMsUHqZ9Xlt3hrxGNANFyNQfw=="
      +      "version": "8.1.2",
      +      "resolved": "https://registry.npmjs.org/@types/supports-color/-/supports-color-8.1.2.tgz",
      +      "integrity": "sha512-nhs1D8NjNueBqRBhBTsc81g90g7VBD4wnMTMy9oP+QIldHuJkE655QTL2D1jkj3LyCd+Q5Y69oOpfxN1l0eCMA=="
           },
           "node_modules/@types/unist": {
      -      "version": "3.0.0",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.0.tgz",
      -      "integrity": "sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w=="
      +      "version": "3.0.1",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.1.tgz",
      +      "integrity": "sha512-ue/hDUpPjC85m+PM9OQDMZr3LywT+CT6mPsQq8OJtCLiERkGRcQUFvu9XASF5XWqyZFXbf15lvb3JFJ4dRLWPg=="
           },
           "node_modules/ansi-regex": {
             "version": "6.0.1",
      @@ -471,9 +471,9 @@
             "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
           },
           "node_modules/emoji-regex": {
      -      "version": "10.2.1",
      -      "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.2.1.tgz",
      -      "integrity": "sha512-97g6QgOk8zlDRdgq1WxwgTMgEWGVAQvB5Fdpgc1MkNy56la5SKP9GsMXKDOdqwn90/41a8yPwIGk1Y6WVbeMQA=="
      +      "version": "10.3.0",
      +      "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
      +      "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw=="
           },
           "node_modules/escape-string-regexp": {
             "version": "5.0.0",
      @@ -517,6 +517,15 @@
               "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
             }
           },
      +    "node_modules/function-bind": {
      +      "version": "1.1.2",
      +      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
      +      "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
      +      "dev": true,
      +      "funding": {
      +        "url": "https://github.com/sponsors/ljharb"
      +      }
      +    },
           "node_modules/glob": {
             "version": "8.1.0",
             "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
      @@ -536,13 +545,16 @@
               "url": "https://github.com/sponsors/isaacs"
             }
           },
      -    "node_modules/has": {
      -      "version": "1.0.4",
      -      "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz",
      -      "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==",
      +    "node_modules/hasown": {
      +      "version": "2.0.0",
      +      "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz",
      +      "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==",
             "dev": true,
      +      "dependencies": {
      +        "function-bind": "^1.1.2"
      +      },
             "engines": {
      -        "node": ">= 0.4.0"
      +        "node": ">= 0.4"
             }
           },
           "node_modules/inflight": {
      @@ -599,12 +611,12 @@
             }
           },
           "node_modules/is-core-module": {
      -      "version": "2.13.0",
      -      "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
      -      "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
      +      "version": "2.13.1",
      +      "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz",
      +      "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
             "dev": true,
             "dependencies": {
      -        "has": "^1.0.3"
      +        "hasown": "^2.0.0"
             },
             "funding": {
               "url": "https://github.com/sponsors/ljharb"
      @@ -699,12 +711,12 @@
             }
           },
           "node_modules/magic-string": {
      -      "version": "0.27.0",
      -      "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz",
      -      "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
      +      "version": "0.30.5",
      +      "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz",
      +      "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==",
             "dev": true,
             "dependencies": {
      -        "@jridgewell/sourcemap-codec": "^1.4.13"
      +        "@jridgewell/sourcemap-codec": "^1.4.15"
             },
             "engines": {
               "node": ">=12"
      @@ -733,17 +745,17 @@
             }
           },
           "node_modules/mdast-comment-marker/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/mdast-comment-marker/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/mdast-util-find-and-replace": {
             "version": "3.0.1",
      @@ -891,17 +903,17 @@
             }
           },
           "node_modules/mdast-util-heading-style/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/mdast-util-heading-style/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/mdast-util-mdx-expression": {
             "version": "1.3.2",
      @@ -920,17 +932,17 @@
             }
           },
           "node_modules/mdast-util-mdx-expression/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/mdast-util-mdx-expression/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/mdast-util-mdx-expression/node_modules/mdast-util-from-markdown": {
             "version": "1.3.1",
      @@ -1875,9 +1887,9 @@
             }
           },
           "node_modules/micromark-util-decode-numeric-character-reference": {
      -      "version": "2.0.0",
      -      "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.0.tgz",
      -      "integrity": "sha512-pIgcsGxpHEtTG/rPJRz/HOLSqp5VTuIIjXlPI+6JSDlK2oljApusG6KzpS8AF0ENUMCHlC/IBb5B9xdFiVlm5Q==",
      +      "version": "2.0.1",
      +      "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz",
      +      "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==",
             "funding": [
               {
                 "type": "GitHub Sponsors",
      @@ -2169,17 +2181,17 @@
             }
           },
           "node_modules/remark-lint-blockquote-indentation/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-blockquote-indentation/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-blockquote-indentation/node_modules/unified": {
             "version": "10.1.2",
      @@ -2255,17 +2267,17 @@
             }
           },
           "node_modules/remark-lint-checkbox-character-style/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-checkbox-character-style/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-checkbox-character-style/node_modules/unified": {
             "version": "10.1.2",
      @@ -2342,17 +2354,17 @@
             }
           },
           "node_modules/remark-lint-checkbox-content-indent/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-checkbox-content-indent/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-checkbox-content-indent/node_modules/unified": {
             "version": "10.1.2",
      @@ -2429,17 +2441,17 @@
             }
           },
           "node_modules/remark-lint-code-block-style/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-code-block-style/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-code-block-style/node_modules/unified": {
             "version": "10.1.2",
      @@ -2515,17 +2527,17 @@
             }
           },
           "node_modules/remark-lint-definition-spacing/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-definition-spacing/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-definition-spacing/node_modules/unified": {
             "version": "10.1.2",
      @@ -2602,17 +2614,17 @@
             }
           },
           "node_modules/remark-lint-fenced-code-flag/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-fenced-code-flag/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-fenced-code-flag/node_modules/unified": {
             "version": "10.1.2",
      @@ -2688,17 +2700,17 @@
             }
           },
           "node_modules/remark-lint-fenced-code-marker/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-fenced-code-marker/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-fenced-code-marker/node_modules/unified": {
             "version": "10.1.2",
      @@ -2772,17 +2784,17 @@
             }
           },
           "node_modules/remark-lint-file-extension/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-file-extension/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-file-extension/node_modules/unified": {
             "version": "10.1.2",
      @@ -2820,17 +2832,17 @@
             }
           },
           "node_modules/remark-lint-final-definition/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-final-definition/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-final-definition/node_modules/unified": {
             "version": "10.1.2",
      @@ -2904,17 +2916,17 @@
             }
           },
           "node_modules/remark-lint-final-newline/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-final-newline/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-final-newline/node_modules/unified": {
             "version": "10.1.2",
      @@ -2951,17 +2963,17 @@
             }
           },
           "node_modules/remark-lint-first-heading-level/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-first-heading-level/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-first-heading-level/node_modules/unified": {
             "version": "10.1.2",
      @@ -3038,17 +3050,17 @@
             }
           },
           "node_modules/remark-lint-hard-break-spaces/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-hard-break-spaces/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-hard-break-spaces/node_modules/unified": {
             "version": "10.1.2",
      @@ -3125,17 +3137,17 @@
             }
           },
           "node_modules/remark-lint-heading-style/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-heading-style/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-heading-style/node_modules/unified": {
             "version": "10.1.2",
      @@ -3211,17 +3223,17 @@
             }
           },
           "node_modules/remark-lint-list-item-bullet-indent/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-list-item-bullet-indent/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-list-item-bullet-indent/node_modules/unified": {
             "version": "10.1.2",
      @@ -3299,17 +3311,17 @@
             }
           },
           "node_modules/remark-lint-list-item-indent/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-list-item-indent/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-list-item-indent/node_modules/unified": {
             "version": "10.1.2",
      @@ -3386,17 +3398,17 @@
             }
           },
           "node_modules/remark-lint-maximum-line-length/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-maximum-line-length/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-maximum-line-length/node_modules/unified": {
             "version": "10.1.2",
      @@ -3474,17 +3486,17 @@
             }
           },
           "node_modules/remark-lint-no-blockquote-without-marker/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-blockquote-without-marker/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-blockquote-without-marker/node_modules/unified": {
             "version": "10.1.2",
      @@ -3563,17 +3575,17 @@
             }
           },
           "node_modules/remark-lint-no-consecutive-blank-lines/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-consecutive-blank-lines/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-consecutive-blank-lines/node_modules/unified": {
             "version": "10.1.2",
      @@ -3651,17 +3663,17 @@
             }
           },
           "node_modules/remark-lint-no-duplicate-definitions/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-duplicate-definitions/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-duplicate-definitions/node_modules/unified": {
             "version": "10.1.2",
      @@ -3747,17 +3759,17 @@
             }
           },
           "node_modules/remark-lint-no-file-name-articles/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-file-name-articles/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-file-name-articles/node_modules/unified": {
             "version": "10.1.2",
      @@ -3792,17 +3804,17 @@
             }
           },
           "node_modules/remark-lint-no-file-name-consecutive-dashes/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-file-name-consecutive-dashes/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-file-name-consecutive-dashes/node_modules/unified": {
             "version": "10.1.2",
      @@ -3837,17 +3849,17 @@
             }
           },
           "node_modules/remark-lint-no-file-name-outer-dashes/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-file-name-outer-dashes/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-file-name-outer-dashes/node_modules/unified": {
             "version": "10.1.2",
      @@ -3887,17 +3899,17 @@
             }
           },
           "node_modules/remark-lint-no-heading-content-indent/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-heading-content-indent/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-heading-content-indent/node_modules/unified": {
             "version": "10.1.2",
      @@ -3975,17 +3987,17 @@
             }
           },
           "node_modules/remark-lint-no-heading-indent/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-heading-indent/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-heading-indent/node_modules/unified": {
             "version": "10.1.2",
      @@ -4062,17 +4074,17 @@
             }
           },
           "node_modules/remark-lint-no-inline-padding/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-inline-padding/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-inline-padding/node_modules/mdast-util-to-string": {
             "version": "3.2.0",
      @@ -4162,17 +4174,17 @@
             }
           },
           "node_modules/remark-lint-no-literal-urls/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-literal-urls/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-literal-urls/node_modules/mdast-util-to-string": {
             "version": "3.2.0",
      @@ -4262,17 +4274,17 @@
             }
           },
           "node_modules/remark-lint-no-multiple-toplevel-headings/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-multiple-toplevel-headings/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-multiple-toplevel-headings/node_modules/unified": {
             "version": "10.1.2",
      @@ -4360,17 +4372,17 @@
             }
           },
           "node_modules/remark-lint-no-shell-dollars/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-shell-dollars/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-shell-dollars/node_modules/unified": {
             "version": "10.1.2",
      @@ -4446,17 +4458,17 @@
             }
           },
           "node_modules/remark-lint-no-shortcut-reference-image/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-shortcut-reference-image/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-shortcut-reference-image/node_modules/unified": {
             "version": "10.1.2",
      @@ -4532,17 +4544,17 @@
             }
           },
           "node_modules/remark-lint-no-shortcut-reference-link/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-shortcut-reference-link/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-shortcut-reference-link/node_modules/unified": {
             "version": "10.1.2",
      @@ -4619,17 +4631,17 @@
             }
           },
           "node_modules/remark-lint-no-table-indentation/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-table-indentation/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-table-indentation/node_modules/unified": {
             "version": "10.1.2",
      @@ -4704,17 +4716,17 @@
             }
           },
           "node_modules/remark-lint-no-tabs/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-tabs/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-tabs/node_modules/unified": {
             "version": "10.1.2",
      @@ -4774,17 +4786,17 @@
             }
           },
           "node_modules/remark-lint-no-undefined-references/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-undefined-references/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-undefined-references/node_modules/micromark-util-normalize-identifier": {
             "version": "1.1.0",
      @@ -4893,17 +4905,17 @@
             }
           },
           "node_modules/remark-lint-no-unused-definitions/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-no-unused-definitions/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-no-unused-definitions/node_modules/unified": {
             "version": "10.1.2",
      @@ -4980,17 +4992,17 @@
             }
           },
           "node_modules/remark-lint-ordered-list-marker-style/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-ordered-list-marker-style/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-ordered-list-marker-style/node_modules/unified": {
             "version": "10.1.2",
      @@ -5062,9 +5074,9 @@
             }
           },
           "node_modules/remark-lint-prohibited-strings/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-prohibited-strings/node_modules/unist-util-is": {
             "version": "5.2.1",
      @@ -5122,17 +5134,17 @@
             }
           },
           "node_modules/remark-lint-rule-style/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-rule-style/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-rule-style/node_modules/unified": {
             "version": "10.1.2",
      @@ -5208,17 +5220,17 @@
             }
           },
           "node_modules/remark-lint-strong-marker/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-strong-marker/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-strong-marker/node_modules/unified": {
             "version": "10.1.2",
      @@ -5295,17 +5307,17 @@
             }
           },
           "node_modules/remark-lint-table-cell-padding/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-table-cell-padding/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-table-cell-padding/node_modules/unified": {
             "version": "10.1.2",
      @@ -5381,17 +5393,17 @@
             }
           },
           "node_modules/remark-lint-table-pipes/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-table-pipes/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-table-pipes/node_modules/unified": {
             "version": "10.1.2",
      @@ -5468,17 +5480,17 @@
             }
           },
           "node_modules/remark-lint-unordered-list-marker-style/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint-unordered-list-marker-style/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint-unordered-list-marker-style/node_modules/unified": {
             "version": "10.1.2",
      @@ -5538,17 +5550,17 @@
             }
           },
           "node_modules/remark-lint/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-lint/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-lint/node_modules/unified": {
             "version": "10.1.2",
      @@ -5585,17 +5597,17 @@
             }
           },
           "node_modules/remark-message-control/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-message-control/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-message-control/node_modules/unified": {
             "version": "10.1.2",
      @@ -5704,17 +5716,17 @@
             }
           },
           "node_modules/remark-preset-lint-recommended/node_modules/@types/mdast": {
      -      "version": "3.0.13",
      -      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.13.tgz",
      -      "integrity": "sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==",
      +      "version": "3.0.14",
      +      "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
      +      "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
             "dependencies": {
               "@types/unist": "^2"
             }
           },
           "node_modules/remark-preset-lint-recommended/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/remark-preset-lint-recommended/node_modules/unified": {
             "version": "10.1.2",
      @@ -5749,9 +5761,9 @@
             }
           },
           "node_modules/resolve": {
      -      "version": "1.22.6",
      -      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz",
      -      "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==",
      +      "version": "1.22.8",
      +      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
      +      "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
             "dev": true,
             "dependencies": {
               "is-core-module": "^2.13.0",
      @@ -5766,9 +5778,9 @@
             }
           },
           "node_modules/rollup": {
      -      "version": "4.0.2",
      -      "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.0.2.tgz",
      -      "integrity": "sha512-MCScu4usMPCeVFaiLcgMDaBQeYi1z6vpWxz0r0hq0Hv77Y2YuOTZldkuNJ54BdYBH3e+nkrk6j0Rre/NLDBYzg==",
      +      "version": "4.3.0",
      +      "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.3.0.tgz",
      +      "integrity": "sha512-scIi1NrKLDIYSPK66jjECtII7vIgdAMFmFo8h6qm++I6nN9qDSV35Ku6erzGVqYjx+lj+j5wkusRMr++8SyDZg==",
             "dev": true,
             "bin": {
               "rollup": "dist/bin/rollup"
      @@ -5778,18 +5790,18 @@
               "npm": ">=8.0.0"
             },
             "optionalDependencies": {
      -        "@rollup/rollup-android-arm-eabi": "4.0.2",
      -        "@rollup/rollup-android-arm64": "4.0.2",
      -        "@rollup/rollup-darwin-arm64": "4.0.2",
      -        "@rollup/rollup-darwin-x64": "4.0.2",
      -        "@rollup/rollup-linux-arm-gnueabihf": "4.0.2",
      -        "@rollup/rollup-linux-arm64-gnu": "4.0.2",
      -        "@rollup/rollup-linux-arm64-musl": "4.0.2",
      -        "@rollup/rollup-linux-x64-gnu": "4.0.2",
      -        "@rollup/rollup-linux-x64-musl": "4.0.2",
      -        "@rollup/rollup-win32-arm64-msvc": "4.0.2",
      -        "@rollup/rollup-win32-ia32-msvc": "4.0.2",
      -        "@rollup/rollup-win32-x64-msvc": "4.0.2",
      +        "@rollup/rollup-android-arm-eabi": "4.3.0",
      +        "@rollup/rollup-android-arm64": "4.3.0",
      +        "@rollup/rollup-darwin-arm64": "4.3.0",
      +        "@rollup/rollup-darwin-x64": "4.3.0",
      +        "@rollup/rollup-linux-arm-gnueabihf": "4.3.0",
      +        "@rollup/rollup-linux-arm64-gnu": "4.3.0",
      +        "@rollup/rollup-linux-arm64-musl": "4.3.0",
      +        "@rollup/rollup-linux-x64-gnu": "4.3.0",
      +        "@rollup/rollup-linux-x64-musl": "4.3.0",
      +        "@rollup/rollup-win32-arm64-msvc": "4.3.0",
      +        "@rollup/rollup-win32-ia32-msvc": "4.3.0",
      +        "@rollup/rollup-win32-x64-msvc": "4.3.0",
               "fsevents": "~2.3.2"
             }
           },
      @@ -5972,9 +5984,9 @@
             }
           },
           "node_modules/unified": {
      -      "version": "11.0.3",
      -      "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.3.tgz",
      -      "integrity": "sha512-jlCV402P+YDcFcB2VcN/n8JasOddqIiaxv118wNBoZXEhOn+lYG7BR4Bfg2BwxvlK58dwbuH2w7GX2esAjL6Mg==",
      +      "version": "11.0.4",
      +      "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.4.tgz",
      +      "integrity": "sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==",
             "dependencies": {
               "@types/unist": "^3.0.0",
               "bail": "^2.0.0",
      @@ -6005,9 +6017,9 @@
             }
           },
           "node_modules/unified-lint-rule/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/unified-lint-rule/node_modules/unified": {
             "version": "10.1.2",
      @@ -6045,9 +6057,9 @@
             }
           },
           "node_modules/unified-message-control/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/unified-message-control/node_modules/unist-util-is": {
             "version": "5.2.1",
      @@ -6149,9 +6161,9 @@
             }
           },
           "node_modules/unist-util-position/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/unist-util-stringify-position": {
             "version": "4.0.0",
      @@ -6238,9 +6250,9 @@
             }
           },
           "node_modules/vfile-location/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/vfile-message": {
             "version": "3.1.4",
      @@ -6256,9 +6268,9 @@
             }
           },
           "node_modules/vfile-message/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/vfile-message/node_modules/unist-util-stringify-position": {
             "version": "3.0.3",
      @@ -6399,9 +6411,9 @@
             }
           },
           "node_modules/vfile/node_modules/@types/unist": {
      -      "version": "2.0.8",
      -      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
      -      "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
      +      "version": "2.0.9",
      +      "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
      +      "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
           },
           "node_modules/vfile/node_modules/unist-util-stringify-position": {
             "version": "3.0.3",
      diff --git a/tools/lint-md/package.json b/tools/lint-md/package.json
      index 0255adedd42373..a938116e7e4c08 100644
      --- a/tools/lint-md/package.json
      +++ b/tools/lint-md/package.json
      @@ -10,13 +10,13 @@
           "remark-preset-lint-node": "^5.0.0",
           "remark-stringify": "^11.0.0",
           "to-vfile": "^8.0.0",
      -    "unified": "^11.0.3",
      +    "unified": "^11.0.4",
           "vfile-reporter": "^8.1.0"
         },
         "devDependencies": {
      -    "@rollup/plugin-commonjs": "^25.0.5",
      -    "@rollup/plugin-node-resolve": "^15.2.2",
      -    "rollup": "^4.0.2",
      +    "@rollup/plugin-commonjs": "^25.0.7",
      +    "@rollup/plugin-node-resolve": "^15.2.3",
      +    "rollup": "^4.3.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 5c7972cc086eb7..eeb4647e70b107 100755
      --- a/tools/node_modules/eslint/bin/eslint.js
      +++ b/tools/node_modules/eslint/bin/eslint.js
      @@ -97,9 +97,14 @@ function getErrorMessage(error) {
        * same message once.
        * @type {Set}
        */
      -
       const displayedErrors = new Set();
       
      +/**
      + * Tracks whether an unexpected error was caught
      + * @type {boolean}
      + */
      +let hadFatalError = false;
      +
       /**
        * Catch and report unexpected error.
        * @param {any} error The thrown error object.
      @@ -107,6 +112,7 @@ const displayedErrors = new Set();
        */
       function onFatalError(error) {
           process.exitCode = 2;
      +    hadFatalError = true;
       
           const { version } = require("../package.json");
           const message = `
      @@ -143,9 +149,25 @@ ${getErrorMessage(error)}`;
           }
       
           // Otherwise, call the CLI.
      -    process.exitCode = await require("../lib/cli").execute(
      +    const exitCode = await require("../lib/cli").execute(
               process.argv,
               process.argv.includes("--stdin") ? await readStdin() : null,
               true
           );
      +
      +    /*
      +     * If an uncaught exception or unhandled rejection was detected in the meantime,
      +     * keep the fatal exit code 2 that is already assigned to `process.exitCode`.
      +     * Without this condition, exit code 2 (unsuccessful execution) could be overwritten with
      +     * 1 (successful execution, lint problems found) or even 0 (successful execution, no lint problems found).
      +     * This ensures that unexpected errors that seemingly don't affect the success
      +     * of the execution will still cause a non-zero exit code, as it's a common
      +     * practice and the default behavior of Node.js to exit with non-zero
      +     * in case of an uncaught exception or unhandled rejection.
      +     *
      +     * Otherwise, assign the exit code returned from CLI.
      +     */
      +    if (!hadFatalError) {
      +        process.exitCode = exitCode;
      +    }
       }()).catch(onFatalError);
      diff --git a/tools/node_modules/eslint/conf/rule-type-list.json b/tools/node_modules/eslint/conf/rule-type-list.json
      index d5823acc898ec4..6ca730f34f0297 100644
      --- a/tools/node_modules/eslint/conf/rule-type-list.json
      +++ b/tools/node_modules/eslint/conf/rule-type-list.json
      @@ -1,36 +1,28 @@
       {
      -    "types": [
      -        { "name": "problem", "displayName": "Possible Problems", "description": "These rules relate to possible logic errors in code:" },
      -        { "name": "suggestion", "displayName": "Suggestions", "description": "These rules suggest alternate ways of doing things:" },
      -        { "name": "layout", "displayName": "Layout & Formatting", "description": "These rules care about how the code looks rather than how it executes:" }
      -    ],
      -    "deprecated": {
      -        "name": "Deprecated",
      -        "description": "These rules have been deprecated in accordance with the deprecation policy, and replaced by newer rules:",
      -        "rules": []
      +    "types": {
      +        "problem": [],
      +        "suggestion": [],
      +        "layout": []
           },
      -    "removed": {
      -        "name": "Removed",
      -        "description": "These rules from older versions of ESLint (before the deprecation policy existed) have been replaced by newer rules:",
      -        "rules": [
      -            { "removed": "generator-star", "replacedBy": ["generator-star-spacing"] },
      -            { "removed": "global-strict", "replacedBy": ["strict"] },
      -            { "removed": "no-arrow-condition", "replacedBy": ["no-confusing-arrow", "no-constant-condition"] },
      -            { "removed": "no-comma-dangle", "replacedBy": ["comma-dangle"] },
      -            { "removed": "no-empty-class", "replacedBy": ["no-empty-character-class"] },
      -            { "removed": "no-empty-label", "replacedBy": ["no-labels"] },
      -            { "removed": "no-extra-strict", "replacedBy": ["strict"] },
      -            { "removed": "no-reserved-keys", "replacedBy": ["quote-props"] },
      -            { "removed": "no-space-before-semi", "replacedBy": ["semi-spacing"] },
      -            { "removed": "no-wrap-func", "replacedBy": ["no-extra-parens"] },
      -            { "removed": "space-after-function-name", "replacedBy": ["space-before-function-paren"] },
      -            { "removed": "space-after-keywords", "replacedBy": ["keyword-spacing"] },
      -            { "removed": "space-before-function-parentheses", "replacedBy": ["space-before-function-paren"] },
      -            { "removed": "space-before-keywords", "replacedBy": ["keyword-spacing"] },
      -            { "removed": "space-in-brackets", "replacedBy": ["object-curly-spacing", "array-bracket-spacing"] },
      -            { "removed": "space-return-throw-case", "replacedBy": ["keyword-spacing"] },
      -            { "removed": "space-unary-word-ops", "replacedBy": ["space-unary-ops"] },
      -            { "removed": "spaced-line-comment", "replacedBy": ["spaced-comment"] }
      -        ]
      -    }
      +    "deprecated": [],
      +    "removed": [
      +        { "removed": "generator-star", "replacedBy": ["generator-star-spacing"] },
      +        { "removed": "global-strict", "replacedBy": ["strict"] },
      +        { "removed": "no-arrow-condition", "replacedBy": ["no-confusing-arrow", "no-constant-condition"] },
      +        { "removed": "no-comma-dangle", "replacedBy": ["comma-dangle"] },
      +        { "removed": "no-empty-class", "replacedBy": ["no-empty-character-class"] },
      +        { "removed": "no-empty-label", "replacedBy": ["no-labels"] },
      +        { "removed": "no-extra-strict", "replacedBy": ["strict"] },
      +        { "removed": "no-reserved-keys", "replacedBy": ["quote-props"] },
      +        { "removed": "no-space-before-semi", "replacedBy": ["semi-spacing"] },
      +        { "removed": "no-wrap-func", "replacedBy": ["no-extra-parens"] },
      +        { "removed": "space-after-function-name", "replacedBy": ["space-before-function-paren"] },
      +        { "removed": "space-after-keywords", "replacedBy": ["keyword-spacing"] },
      +        { "removed": "space-before-function-parentheses", "replacedBy": ["space-before-function-paren"] },
      +        { "removed": "space-before-keywords", "replacedBy": ["keyword-spacing"] },
      +        { "removed": "space-in-brackets", "replacedBy": ["object-curly-spacing", "array-bracket-spacing"] },
      +        { "removed": "space-return-throw-case", "replacedBy": ["keyword-spacing"] },
      +        { "removed": "space-unary-word-ops", "replacedBy": ["space-unary-ops"] },
      +        { "removed": "spaced-line-comment", "replacedBy": ["spaced-comment"] }
      +    ]
       }
      diff --git a/tools/node_modules/eslint/lib/cli.js b/tools/node_modules/eslint/lib/cli.js
      index 807d28a0d1bc59..f472659c20f92c 100644
      --- a/tools/node_modules/eslint/lib/cli.js
      +++ b/tools/node_modules/eslint/lib/cli.js
      @@ -318,7 +318,14 @@ const cli = {
                   options = CLIOptions.parse(args);
               } catch (error) {
                   debug("Error parsing CLI options:", error.message);
      -            log.error(error.message);
      +
      +            let errorMessage = error.message;
      +
      +            if (usingFlatConfig) {
      +                errorMessage += "\nYou're using eslint.config.js, some command line flags are no longer available. Please see https://eslint.org/docs/latest/use/command-line-interface for details.";
      +            }
      +
      +            log.error(errorMessage);
                   return 2;
               }
       
      diff --git a/tools/node_modules/eslint/lib/config/flat-config-schema.js b/tools/node_modules/eslint/lib/config/flat-config-schema.js
      index df850995d87ff0..911d159d93b852 100644
      --- a/tools/node_modules/eslint/lib/config/flat-config-schema.js
      +++ b/tools/node_modules/eslint/lib/config/flat-config-schema.js
      @@ -5,6 +5,16 @@
       
       "use strict";
       
      +//-----------------------------------------------------------------------------
      +// Requirements
      +//-----------------------------------------------------------------------------
      +
      +/*
      + * Note: This can be removed in ESLint v9 because structuredClone is available globally
      + * starting in Node.js v17.
      + */
      +const structuredClone = require("@ungap/structured-clone").default;
      +
       //-----------------------------------------------------------------------------
       // Type Definitions
       //-----------------------------------------------------------------------------
      @@ -119,7 +129,7 @@ function normalizeRuleOptions(ruleOptions) {
               : [ruleOptions];
       
           finalOptions[0] = ruleSeverities.get(finalOptions[0]);
      -    return finalOptions;
      +    return structuredClone(finalOptions);
       }
       
       //-----------------------------------------------------------------------------
      @@ -378,48 +388,57 @@ const rulesSchema = {
                   ...second
               };
       
      -        for (const ruleId of Object.keys(result)) {
      -
      -            // avoid hairy edge case
      -            if (ruleId === "__proto__") {
      -
      -                /* eslint-disable-next-line no-proto -- Though deprecated, may still be present */
      -                delete result.__proto__;
      -                continue;
      -            }
      -
      -            result[ruleId] = normalizeRuleOptions(result[ruleId]);
      -
      -            /*
      -             * If either rule config is missing, then the correct
      -             * config is already present and we just need to normalize
      -             * the severity.
      -             */
      -            if (!(ruleId in first) || !(ruleId in second)) {
      -                continue;
      -            }
       
      -            const firstRuleOptions = normalizeRuleOptions(first[ruleId]);
      -            const secondRuleOptions = normalizeRuleOptions(second[ruleId]);
      +        for (const ruleId of Object.keys(result)) {
       
      -            /*
      -             * If the second rule config only has a severity (length of 1),
      -             * then use that severity and keep the rest of the options from
      -             * the first rule config.
      -             */
      -            if (secondRuleOptions.length === 1) {
      -                result[ruleId] = [secondRuleOptions[0], ...firstRuleOptions.slice(1)];
      -                continue;
      +            try {
      +
      +                // avoid hairy edge case
      +                if (ruleId === "__proto__") {
      +
      +                    /* eslint-disable-next-line no-proto -- Though deprecated, may still be present */
      +                    delete result.__proto__;
      +                    continue;
      +                }
      +
      +                result[ruleId] = normalizeRuleOptions(result[ruleId]);
      +
      +                /*
      +                 * If either rule config is missing, then the correct
      +                 * config is already present and we just need to normalize
      +                 * the severity.
      +                 */
      +                if (!(ruleId in first) || !(ruleId in second)) {
      +                    continue;
      +                }
      +
      +                const firstRuleOptions = normalizeRuleOptions(first[ruleId]);
      +                const secondRuleOptions = normalizeRuleOptions(second[ruleId]);
      +
      +                /*
      +                 * If the second rule config only has a severity (length of 1),
      +                 * then use that severity and keep the rest of the options from
      +                 * the first rule config.
      +                 */
      +                if (secondRuleOptions.length === 1) {
      +                    result[ruleId] = [secondRuleOptions[0], ...firstRuleOptions.slice(1)];
      +                    continue;
      +                }
      +
      +                /*
      +                 * In any other situation, then the second rule config takes
      +                 * precedence. That means the value at `result[ruleId]` is
      +                 * already correct and no further work is necessary.
      +                 */
      +            } catch (ex) {
      +                throw new Error(`Key "${ruleId}": ${ex.message}`, { cause: ex });
                   }
       
      -            /*
      -             * In any other situation, then the second rule config takes
      -             * precedence. That means the value at `result[ruleId]` is
      -             * already correct and no further work is necessary.
      -             */
               }
       
               return result;
      +
      +
           },
       
           validate(value) {
      diff --git a/tools/node_modules/eslint/lib/linter/apply-disable-directives.js b/tools/node_modules/eslint/lib/linter/apply-disable-directives.js
      index 55f7683f3f53ac..c5e3c9ddc1ced5 100644
      --- a/tools/node_modules/eslint/lib/linter/apply-disable-directives.js
      +++ b/tools/node_modules/eslint/lib/linter/apply-disable-directives.js
      @@ -30,7 +30,7 @@ function compareLocations(itemA, itemB) {
       
       /**
        * Groups a set of directives into sub-arrays by their parent comment.
      - * @param {Directive[]} directives Unused directives to be removed.
      + * @param {Iterable} directives Unused directives to be removed.
        * @returns {Directive[][]} Directives grouped by their parent comment.
        */
       function groupByParentComment(directives) {
      @@ -177,10 +177,10 @@ function createCommentRemoval(directives, commentToken) {
       
       /**
        * Parses details from directives to create output Problems.
      - * @param {Directive[]} allDirectives Unused directives to be removed.
      + * @param {Iterable} allDirectives Unused directives to be removed.
        * @returns {{ description, fix, unprocessedDirective }[]} Details for later creation of output Problems.
        */
      -function processUnusedDisableDirectives(allDirectives) {
      +function processUnusedDirectives(allDirectives) {
           const directiveGroups = groupByParentComment(allDirectives);
       
           return directiveGroups.flatMap(
      @@ -199,6 +199,95 @@ function processUnusedDisableDirectives(allDirectives) {
           );
       }
       
      +/**
      + * Collect eslint-enable comments that are removing suppressions by eslint-disable comments.
      + * @param {Directive[]} directives The directives to check.
      + * @returns {Set} The used eslint-enable comments
      + */
      +function collectUsedEnableDirectives(directives) {
      +
      +    /**
      +     * A Map of `eslint-enable` keyed by ruleIds that may be marked as used.
      +     * If `eslint-enable` does not have a ruleId, the key will be `null`.
      +     * @type {Map}
      +     */
      +    const enabledRules = new Map();
      +
      +    /**
      +     * A Set of `eslint-enable` marked as used.
      +     * It is also the return value of `collectUsedEnableDirectives` function.
      +     * @type {Set}
      +     */
      +    const usedEnableDirectives = new Set();
      +
      +    /*
      +     * Checks the directives backwards to see if the encountered `eslint-enable` is used by the previous `eslint-disable`,
      +     * and if so, stores the `eslint-enable` in `usedEnableDirectives`.
      +     */
      +    for (let index = directives.length - 1; index >= 0; index--) {
      +        const directive = directives[index];
      +
      +        if (directive.type === "disable") {
      +            if (enabledRules.size === 0) {
      +                continue;
      +            }
      +            if (directive.ruleId === null) {
      +
      +                // If encounter `eslint-disable` without ruleId,
      +                // mark all `eslint-enable` currently held in enabledRules as used.
      +                // e.g.
      +                //    /* eslint-disable */ <- current directive
      +                //    /* eslint-enable rule-id1 */ <- used
      +                //    /* eslint-enable rule-id2 */ <- used
      +                //    /* eslint-enable */ <- used
      +                for (const enableDirective of enabledRules.values()) {
      +                    usedEnableDirectives.add(enableDirective);
      +                }
      +                enabledRules.clear();
      +            } else {
      +                const enableDirective = enabledRules.get(directive.ruleId);
      +
      +                if (enableDirective) {
      +
      +                    // If encounter `eslint-disable` with ruleId, and there is an `eslint-enable` with the same ruleId in enabledRules,
      +                    // mark `eslint-enable` with ruleId as used.
      +                    // e.g.
      +                    //    /* eslint-disable rule-id */ <- current directive
      +                    //    /* eslint-enable rule-id */ <- used
      +                    usedEnableDirectives.add(enableDirective);
      +                } else {
      +                    const enabledDirectiveWithoutRuleId = enabledRules.get(null);
      +
      +                    if (enabledDirectiveWithoutRuleId) {
      +
      +                        // If encounter `eslint-disable` with ruleId, and there is no `eslint-enable` with the same ruleId in enabledRules,
      +                        // mark `eslint-enable` without ruleId as used.
      +                        // e.g.
      +                        //    /* eslint-disable rule-id */ <- current directive
      +                        //    /* eslint-enable */ <- used
      +                        usedEnableDirectives.add(enabledDirectiveWithoutRuleId);
      +                    }
      +                }
      +            }
      +        } else if (directive.type === "enable") {
      +            if (directive.ruleId === null) {
      +
      +                // If encounter `eslint-enable` without ruleId, the `eslint-enable` that follows it are unused.
      +                // So clear enabledRules.
      +                // e.g.
      +                //    /* eslint-enable */ <- current directive
      +                //    /* eslint-enable rule-id *// <- unused
      +                //    /* eslint-enable */ <- unused
      +                enabledRules.clear();
      +                enabledRules.set(null, directive);
      +            } else {
      +                enabledRules.set(directive.ruleId, directive);
      +            }
      +        }
      +    }
      +    return usedEnableDirectives;
      +}
      +
       /**
        * This is the same as the exported function, except that it
        * doesn't handle disable-line and disable-next-line directives, and it always reports unused
      @@ -206,7 +295,7 @@ function processUnusedDisableDirectives(allDirectives) {
        * @param {Object} options options for applying directives. This is the same as the options
        * for the exported function, except that `reportUnusedDisableDirectives` is not supported
        * (this function always reports unused disable directives).
      - * @returns {{problems: LintMessage[], unusedDisableDirectives: LintMessage[]}} An object with a list
      + * @returns {{problems: LintMessage[], unusedDirectives: LintMessage[]}} An object with a list
        * of problems (including suppressed ones) and unused eslint-disable directives
        */
       function applyDirectives(options) {
      @@ -258,17 +347,42 @@ function applyDirectives(options) {
           const unusedDisableDirectivesToReport = options.directives
               .filter(directive => directive.type === "disable" && !usedDisableDirectives.has(directive));
       
      -    const processed = processUnusedDisableDirectives(unusedDisableDirectivesToReport);
       
      -    const unusedDisableDirectives = processed
      +    const unusedEnableDirectivesToReport = new Set(
      +        options.directives.filter(directive => directive.unprocessedDirective.type === "enable")
      +    );
      +
      +    /*
      +     * If directives has the eslint-enable directive,
      +     * check whether the eslint-enable comment is used.
      +     */
      +    if (unusedEnableDirectivesToReport.size > 0) {
      +        for (const directive of collectUsedEnableDirectives(options.directives)) {
      +            unusedEnableDirectivesToReport.delete(directive);
      +        }
      +    }
      +
      +    const processed = processUnusedDirectives(unusedDisableDirectivesToReport)
      +        .concat(processUnusedDirectives(unusedEnableDirectivesToReport));
      +
      +    const unusedDirectives = processed
               .map(({ description, fix, unprocessedDirective }) => {
                   const { parentComment, type, line, column } = unprocessedDirective;
       
      +            let message;
      +
      +            if (type === "enable") {
      +                message = description
      +                    ? `Unused eslint-enable directive (no matching eslint-disable directives were found for ${description}).`
      +                    : "Unused eslint-enable directive (no matching eslint-disable directives were found).";
      +            } else {
      +                message = description
      +                    ? `Unused eslint-disable directive (no problems were reported from ${description}).`
      +                    : "Unused eslint-disable directive (no problems were reported).";
      +            }
                   return {
                       ruleId: null,
      -                message: description
      -                    ? `Unused eslint-disable directive (no problems were reported from ${description}).`
      -                    : "Unused eslint-disable directive (no problems were reported).",
      +                message,
                       line: type === "disable-next-line" ? parentComment.commentToken.loc.start.line : line,
                       column: type === "disable-next-line" ? parentComment.commentToken.loc.start.column + 1 : column,
                       severity: options.reportUnusedDisableDirectives === "warn" ? 1 : 2,
      @@ -277,7 +391,7 @@ function applyDirectives(options) {
                   };
               });
       
      -    return { problems, unusedDisableDirectives };
      +    return { problems, unusedDirectives };
       }
       
       /**
      @@ -344,8 +458,8 @@ module.exports = ({ directives, disableFixes, problems, reportUnusedDisableDirec
       
           return reportUnusedDisableDirectives !== "off"
               ? lineDirectivesResult.problems
      -            .concat(blockDirectivesResult.unusedDisableDirectives)
      -            .concat(lineDirectivesResult.unusedDisableDirectives)
      +            .concat(blockDirectivesResult.unusedDirectives)
      +            .concat(lineDirectivesResult.unusedDirectives)
                   .sort(compareLocations)
               : lineDirectivesResult.problems;
       };
      diff --git a/tools/node_modules/eslint/lib/options.js b/tools/node_modules/eslint/lib/options.js
      index ae9a5d5552a239..81c0fa60ab987d 100644
      --- a/tools/node_modules/eslint/lib/options.js
      +++ b/tools/node_modules/eslint/lib/options.js
      @@ -47,7 +47,7 @@ const optionator = require("optionator");
        * @property {Object} [parserOptions] Specify parser options
        * @property {string[]} [plugin] Specify plugins
        * @property {string} [printConfig] Print the configuration for the given file
      - * @property {boolean | undefined} reportUnusedDisableDirectives Adds reported errors for unused eslint-disable directives
      + * @property {boolean | undefined} reportUnusedDisableDirectives Adds reported errors for unused eslint-disable and eslint-enable directives
        * @property {string} [resolvePluginsRelativeTo] A folder where plugins should be resolved from, CWD by default
        * @property {Object} [rule] Specify rules
        * @property {string[]} [rulesdir] Load additional rules from this directory. Deprecated: Use rules from plugins
      @@ -304,7 +304,7 @@ module.exports = function(usingFlatConfig) {
                       option: "report-unused-disable-directives",
                       type: "Boolean",
                       default: void 0,
      -                description: "Adds reported errors for unused eslint-disable directives"
      +                description: "Adds reported errors for unused eslint-disable and eslint-enable directives"
                   },
                   {
                       heading: "Caching"
      diff --git a/tools/node_modules/eslint/lib/rules/array-bracket-newline.js b/tools/node_modules/eslint/lib/rules/array-bracket-newline.js
      index c3676bf4dfa597..12ef5b612d6a2b 100644
      --- a/tools/node_modules/eslint/lib/rules/array-bracket-newline.js
      +++ b/tools/node_modules/eslint/lib/rules/array-bracket-newline.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to enforce linebreaks after open and before close array brackets
        * @author Jan Peer Stöcklmair 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -14,6 +15,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js b/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js
      index e3a46d82214ea8..9dd3ffd902cc6c 100644
      --- a/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Disallows or enforces spaces inside of array brackets.
        * @author Jamund Ferguson
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -13,6 +14,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/array-element-newline.js b/tools/node_modules/eslint/lib/rules/array-element-newline.js
      index 0c806ef3a82c89..504fe04a0b85b1 100644
      --- a/tools/node_modules/eslint/lib/rules/array-element-newline.js
      +++ b/tools/node_modules/eslint/lib/rules/array-element-newline.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to enforce line breaks after each array element
        * @author Jan Peer Stöcklmair 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -14,6 +15,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/arrow-parens.js b/tools/node_modules/eslint/lib/rules/arrow-parens.js
      index 0463323176edfc..2206d8ce2bfd3e 100644
      --- a/tools/node_modules/eslint/lib/rules/arrow-parens.js
      +++ b/tools/node_modules/eslint/lib/rules/arrow-parens.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to require parens in arrow function arguments.
        * @author Jxck
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -30,6 +31,8 @@ function hasBlockBody(node) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/arrow-spacing.js b/tools/node_modules/eslint/lib/rules/arrow-spacing.js
      index fb74d2cb272b82..2b7d464ffcf969 100644
      --- a/tools/node_modules/eslint/lib/rules/arrow-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/arrow-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to define spacing before/after arrow function's arrow.
        * @author Jxck
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -17,6 +18,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/block-spacing.js b/tools/node_modules/eslint/lib/rules/block-spacing.js
      index dd4851c68435eb..9ca461158d9e94 100644
      --- a/tools/node_modules/eslint/lib/rules/block-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/block-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview A rule to disallow or enforce spaces inside of single line blocks.
        * @author Toru Nagashima
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -14,6 +15,8 @@ const util = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/brace-style.js b/tools/node_modules/eslint/lib/rules/brace-style.js
      index 59758c90925000..0fb4c65e68d557 100644
      --- a/tools/node_modules/eslint/lib/rules/brace-style.js
      +++ b/tools/node_modules/eslint/lib/rules/brace-style.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to flag block statements that do not use the one true brace style
        * @author Ian Christian Myers
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -14,6 +15,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/comma-dangle.js b/tools/node_modules/eslint/lib/rules/comma-dangle.js
      index e49983b722e714..5f4180f12c5357 100644
      --- a/tools/node_modules/eslint/lib/rules/comma-dangle.js
      +++ b/tools/node_modules/eslint/lib/rules/comma-dangle.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to forbid or enforce dangling commas.
        * @author Ian Christian Myers
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -73,6 +74,8 @@ function normalizeOptions(optionValue, ecmaVersion) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/comma-spacing.js b/tools/node_modules/eslint/lib/rules/comma-spacing.js
      index 96015ef677951a..e266de4a9c341d 100644
      --- a/tools/node_modules/eslint/lib/rules/comma-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/comma-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Comma spacing - validates spacing before and after comma
        * @author Vignesh Anand aka vegetableman.
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -13,6 +14,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/comma-style.js b/tools/node_modules/eslint/lib/rules/comma-style.js
      index bc69de4698d4a0..0b51219531de19 100644
      --- a/tools/node_modules/eslint/lib/rules/comma-style.js
      +++ b/tools/node_modules/eslint/lib/rules/comma-style.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Comma style - enforces comma styles of two types: last and first
        * @author Vignesh Anand aka vegetableman
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -14,6 +15,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/computed-property-spacing.js b/tools/node_modules/eslint/lib/rules/computed-property-spacing.js
      index 1e4e17c6c71f9c..2852877fddf4a3 100644
      --- a/tools/node_modules/eslint/lib/rules/computed-property-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/computed-property-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Disallows or enforces spaces inside computed properties.
        * @author Jamund Ferguson
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -13,6 +14,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/dot-location.js b/tools/node_modules/eslint/lib/rules/dot-location.js
      index dac98b06b9e243..0d017c16232b9d 100644
      --- a/tools/node_modules/eslint/lib/rules/dot-location.js
      +++ b/tools/node_modules/eslint/lib/rules/dot-location.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Validates newlines before and after dots
        * @author Greg Cochard
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -14,6 +15,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/eol-last.js b/tools/node_modules/eslint/lib/rules/eol-last.js
      index 1036db1a10851f..03487b039f352e 100644
      --- a/tools/node_modules/eslint/lib/rules/eol-last.js
      +++ b/tools/node_modules/eslint/lib/rules/eol-last.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Require or disallow newline at the end of files
        * @author Nodeca Team 
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -11,6 +12,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/func-call-spacing.js b/tools/node_modules/eslint/lib/rules/func-call-spacing.js
      index 3d5e538493e36c..33f73727b43c3b 100644
      --- a/tools/node_modules/eslint/lib/rules/func-call-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/func-call-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to control spacing within function calls
        * @author Matt DuVall 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -18,6 +19,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/function-call-argument-newline.js b/tools/node_modules/eslint/lib/rules/function-call-argument-newline.js
      index 4462afd0b7c06b..458399d62cd9bc 100644
      --- a/tools/node_modules/eslint/lib/rules/function-call-argument-newline.js
      +++ b/tools/node_modules/eslint/lib/rules/function-call-argument-newline.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to enforce line breaks between arguments of a function call
        * @author Alexey Gonchar 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -12,6 +13,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/function-paren-newline.js b/tools/node_modules/eslint/lib/rules/function-paren-newline.js
      index 8a8714ac95d187..de315a0204b3f8 100644
      --- a/tools/node_modules/eslint/lib/rules/function-paren-newline.js
      +++ b/tools/node_modules/eslint/lib/rules/function-paren-newline.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview enforce consistent line breaks inside function parentheses
        * @author Teddy Katz
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -17,6 +18,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/generator-star-spacing.js b/tools/node_modules/eslint/lib/rules/generator-star-spacing.js
      index 81c0b61059a58d..c633f979f84af8 100644
      --- a/tools/node_modules/eslint/lib/rules/generator-star-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/generator-star-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to check the spacing around the * in generator functions.
        * @author Jamund Ferguson
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -28,6 +29,8 @@ const OVERRIDE_SCHEMA = {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js b/tools/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js
      index 30ab1a5f3d07ad..32f422ce8282ed 100644
      --- a/tools/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js
      +++ b/tools/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview enforce the location of arrow function bodies
        * @author Sharmila Jesupaul
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -12,6 +13,8 @@ const { isCommentToken, isNotOpeningParenToken } = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/indent.js b/tools/node_modules/eslint/lib/rules/indent.js
      index 7ea4b3f86c330c..9bcbd640c4deec 100644
      --- a/tools/node_modules/eslint/lib/rules/indent.js
      +++ b/tools/node_modules/eslint/lib/rules/indent.js
      @@ -4,6 +4,7 @@
        * @author Teddy Katz
        * @author Vitaly Puzrin
        * @author Gyandeep Singh
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -493,6 +494,8 @@ const ELEMENT_LIST_SCHEMA = {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/jsx-quotes.js b/tools/node_modules/eslint/lib/rules/jsx-quotes.js
      index a41c85170fd5f8..3dcd5fa9d22bbe 100644
      --- a/tools/node_modules/eslint/lib/rules/jsx-quotes.js
      +++ b/tools/node_modules/eslint/lib/rules/jsx-quotes.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview A rule to ensure consistent quotes used in jsx syntax.
        * @author Mathias Schreck 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -39,6 +40,8 @@ const QUOTE_SETTINGS = {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/key-spacing.js b/tools/node_modules/eslint/lib/rules/key-spacing.js
      index 0b51eb3fe137ee..19fc0167ae0d1b 100644
      --- a/tools/node_modules/eslint/lib/rules/key-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/key-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to specify spacing of object literal keys and values
        * @author Brandon Mills
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -133,6 +134,8 @@ function initOptions(toOptions, fromOptions) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/keyword-spacing.js b/tools/node_modules/eslint/lib/rules/keyword-spacing.js
      index 8ed82199810efa..9d18441e0e56bf 100644
      --- a/tools/node_modules/eslint/lib/rules/keyword-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/keyword-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to enforce spacing before and after keywords.
        * @author Toru Nagashima
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -64,6 +65,8 @@ function isCloseParenOfTemplate(token) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/linebreak-style.js b/tools/node_modules/eslint/lib/rules/linebreak-style.js
      index d8f36094b2e550..e59acca1b5c105 100644
      --- a/tools/node_modules/eslint/lib/rules/linebreak-style.js
      +++ b/tools/node_modules/eslint/lib/rules/linebreak-style.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to enforce a single linebreak style.
        * @author Erik Mueller
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -18,6 +19,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/lines-around-comment.js b/tools/node_modules/eslint/lib/rules/lines-around-comment.js
      index 10aeba3cbc1463..2a6e472f9a09a1 100644
      --- a/tools/node_modules/eslint/lib/rules/lines-around-comment.js
      +++ b/tools/node_modules/eslint/lib/rules/lines-around-comment.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Enforces empty lines around comments.
        * @author Jamund Ferguson
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -52,6 +53,8 @@ function getCommentLineNums(comments) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/lines-between-class-members.js b/tools/node_modules/eslint/lib/rules/lines-between-class-members.js
      index 3d0a5e6738e953..5f36d468dc0963 100644
      --- a/tools/node_modules/eslint/lib/rules/lines-between-class-members.js
      +++ b/tools/node_modules/eslint/lib/rules/lines-between-class-members.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to check empty newline between class members
        * @author 薛定谔的猫
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -32,6 +33,8 @@ const ClassMemberTypes = {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/max-len.js b/tools/node_modules/eslint/lib/rules/max-len.js
      index 53ad5310799b93..138a0f239fd341 100644
      --- a/tools/node_modules/eslint/lib/rules/max-len.js
      +++ b/tools/node_modules/eslint/lib/rules/max-len.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to check for max length on a line.
        * @author Matt DuVall 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -66,6 +67,8 @@ const OPTIONS_OR_INTEGER_SCHEMA = {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/max-statements-per-line.js b/tools/node_modules/eslint/lib/rules/max-statements-per-line.js
      index b966504876442a..4ad73a67f98e81 100644
      --- a/tools/node_modules/eslint/lib/rules/max-statements-per-line.js
      +++ b/tools/node_modules/eslint/lib/rules/max-statements-per-line.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Specify the maximum number of statements allowed per line.
        * @author Kenneth Williams
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -17,6 +18,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/multiline-ternary.js b/tools/node_modules/eslint/lib/rules/multiline-ternary.js
      index f156fe32bb17bd..8155dd7a5a6fa8 100644
      --- a/tools/node_modules/eslint/lib/rules/multiline-ternary.js
      +++ b/tools/node_modules/eslint/lib/rules/multiline-ternary.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Enforce newlines between operands of ternary expressions
        * @author Kai Cataldo
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -14,6 +15,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/new-parens.js b/tools/node_modules/eslint/lib/rules/new-parens.js
      index e8667310f2941f..1c5d21d4a0c5a0 100644
      --- a/tools/node_modules/eslint/lib/rules/new-parens.js
      +++ b/tools/node_modules/eslint/lib/rules/new-parens.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to flag when using constructor without parentheses
        * @author Ilya Volodin
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -22,6 +23,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/newline-per-chained-call.js b/tools/node_modules/eslint/lib/rules/newline-per-chained-call.js
      index b2e6cd9e49d82c..3124ac2d19f7f8 100644
      --- a/tools/node_modules/eslint/lib/rules/newline-per-chained-call.js
      +++ b/tools/node_modules/eslint/lib/rules/newline-per-chained-call.js
      @@ -2,6 +2,7 @@
        * @fileoverview Rule to ensure newline per method call when chaining calls
        * @author Rajendra Patil
        * @author Burak Yigit Kaya
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -15,6 +16,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-confusing-arrow.js b/tools/node_modules/eslint/lib/rules/no-confusing-arrow.js
      index de6e2f30c2ed8e..6fef1870eb2af2 100644
      --- a/tools/node_modules/eslint/lib/rules/no-confusing-arrow.js
      +++ b/tools/node_modules/eslint/lib/rules/no-confusing-arrow.js
      @@ -2,6 +2,7 @@
        * @fileoverview A rule to warn against using arrow functions when they could be
        * confused with comparisons
        * @author Jxck 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -28,6 +29,8 @@ function isConditional(node) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "suggestion",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-extra-parens.js b/tools/node_modules/eslint/lib/rules/no-extra-parens.js
      index bb80987858c41e..75c082baf2e843 100644
      --- a/tools/node_modules/eslint/lib/rules/no-extra-parens.js
      +++ b/tools/node_modules/eslint/lib/rules/no-extra-parens.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Disallow parenthesising higher precedence subexpressions.
        * @author Michael Ficarra
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -14,6 +15,8 @@ const astUtils = require("./utils/ast-utils.js");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-extra-semi.js b/tools/node_modules/eslint/lib/rules/no-extra-semi.js
      index 3473df10dbfbf4..af7eb88884560d 100644
      --- a/tools/node_modules/eslint/lib/rules/no-extra-semi.js
      +++ b/tools/node_modules/eslint/lib/rules/no-extra-semi.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to flag use of unnecessary semicolons
        * @author Nicholas C. Zakas
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -19,6 +20,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "suggestion",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-floating-decimal.js b/tools/node_modules/eslint/lib/rules/no-floating-decimal.js
      index c26876440a588a..80e4994cd72af0 100644
      --- a/tools/node_modules/eslint/lib/rules/no-floating-decimal.js
      +++ b/tools/node_modules/eslint/lib/rules/no-floating-decimal.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to flag use of a leading/trailing decimal point in a numeric literal
        * @author James Allardice
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -18,6 +19,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "suggestion",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-mixed-operators.js b/tools/node_modules/eslint/lib/rules/no-mixed-operators.js
      index 724abe09466474..6b6f7364a012ee 100644
      --- a/tools/node_modules/eslint/lib/rules/no-mixed-operators.js
      +++ b/tools/node_modules/eslint/lib/rules/no-mixed-operators.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to disallow mixed binary operators.
        * @author Toru Nagashima
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -85,6 +86,8 @@ function getChildNode(node) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "suggestion",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js b/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js
      index a18e4f30d0aada..7698b5da7fa9ce 100644
      --- a/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js
      +++ b/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Disallow mixed spaces and tabs for indentation
        * @author Jary Niebur
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -11,6 +12,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-multi-spaces.js b/tools/node_modules/eslint/lib/rules/no-multi-spaces.js
      index 62074e657ae360..bc90ee5b5b0183 100644
      --- a/tools/node_modules/eslint/lib/rules/no-multi-spaces.js
      +++ b/tools/node_modules/eslint/lib/rules/no-multi-spaces.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Disallow use of multiple spaces.
        * @author Nicholas C. Zakas
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -14,6 +15,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js b/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js
      index 2c0fbf2c6ab979..5d038ff05b2e29 100644
      --- a/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js
      +++ b/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js
      @@ -2,6 +2,7 @@
        * @fileoverview Disallows multiple blank lines.
        * implementation adapted from the no-trailing-spaces rule.
        * @author Greg Cochard
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -12,6 +13,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-object-constructor.js b/tools/node_modules/eslint/lib/rules/no-object-constructor.js
      index 1299779f7ec843..e3ac20957348f3 100644
      --- a/tools/node_modules/eslint/lib/rules/no-object-constructor.js
      +++ b/tools/node_modules/eslint/lib/rules/no-object-constructor.js
      @@ -9,12 +9,51 @@
       // Requirements
       //------------------------------------------------------------------------------
       
      -const { getVariableByName, isArrowToken } = require("./utils/ast-utils");
      +const { getVariableByName, isArrowToken, isClosingBraceToken, isClosingParenToken } = require("./utils/ast-utils");
       
       //------------------------------------------------------------------------------
       // Helpers
       //------------------------------------------------------------------------------
       
      +const BREAK_OR_CONTINUE = new Set(["BreakStatement", "ContinueStatement"]);
      +
      +// Declaration types that must contain a string Literal node at the end.
      +const DECLARATIONS = new Set(["ExportAllDeclaration", "ExportNamedDeclaration", "ImportDeclaration"]);
      +
      +const IDENTIFIER_OR_KEYWORD = new Set(["Identifier", "Keyword"]);
      +
      +// Keywords that can immediately precede an ExpressionStatement node, mapped to the their node types.
      +const NODE_TYPES_BY_KEYWORD = {
      +    __proto__: null,
      +    break: "BreakStatement",
      +    continue: "ContinueStatement",
      +    debugger: "DebuggerStatement",
      +    do: "DoWhileStatement",
      +    else: "IfStatement",
      +    return: "ReturnStatement",
      +    yield: "YieldExpression"
      +};
      +
      +/*
      + * Before an opening parenthesis, postfix `++` and `--` always trigger ASI;
      + * the tokens `:`, `;`, `{` and `=>` don't expect a semicolon, as that would count as an empty statement.
      + */
      +const PUNCTUATORS = new Set([":", ";", "{", "=>", "++", "--"]);
      +
      +/*
      + * Statements that can contain an `ExpressionStatement` after a closing parenthesis.
      + * DoWhileStatement is an exception in that it always triggers ASI after the closing parenthesis.
      + */
      +const STATEMENTS = new Set([
      +    "DoWhileStatement",
      +    "ForInStatement",
      +    "ForOfStatement",
      +    "ForStatement",
      +    "IfStatement",
      +    "WhileStatement",
      +    "WithStatement"
      +]);
      +
       /**
        * Tests if a node appears at the beginning of an ancestor ExpressionStatement node.
        * @param {ASTNode} node The node to check.
      @@ -53,7 +92,8 @@ module.exports = {
       
               messages: {
                   preferLiteral: "The object literal notation {} is preferable.",
      -            useLiteral: "Replace with '{{replacement}}'."
      +            useLiteral: "Replace with '{{replacement}}'.",
      +            useLiteralAfterSemicolon: "Replace with '{{replacement}}', add preceding semicolon."
               }
           },
       
      @@ -80,6 +120,50 @@ module.exports = {
                   return false;
               }
       
      +        /**
      +         * Determines whether a parenthesized object literal that replaces a specified node needs to be preceded by a semicolon.
      +         * @param {ASTNode} node The node to be replaced. This node should be at the start of an `ExpressionStatement` or at the start of the body of an `ArrowFunctionExpression`.
      +         * @returns {boolean} Whether a semicolon is required before the parenthesized object literal.
      +         */
      +        function needsSemicolon(node) {
      +            const prevToken = sourceCode.getTokenBefore(node);
      +
      +            if (!prevToken || prevToken.type === "Punctuator" && PUNCTUATORS.has(prevToken.value)) {
      +                return false;
      +            }
      +
      +            const prevNode = sourceCode.getNodeByRangeIndex(prevToken.range[0]);
      +
      +            if (isClosingParenToken(prevToken)) {
      +                return !STATEMENTS.has(prevNode.type);
      +            }
      +
      +            if (isClosingBraceToken(prevToken)) {
      +                return (
      +                    prevNode.type === "BlockStatement" && prevNode.parent.type === "FunctionExpression" ||
      +                    prevNode.type === "ClassBody" && prevNode.parent.type === "ClassExpression" ||
      +                    prevNode.type === "ObjectExpression"
      +                );
      +            }
      +
      +            if (IDENTIFIER_OR_KEYWORD.has(prevToken.type)) {
      +                if (BREAK_OR_CONTINUE.has(prevNode.parent.type)) {
      +                    return false;
      +                }
      +
      +                const keyword = prevToken.value;
      +                const nodeType = NODE_TYPES_BY_KEYWORD[keyword];
      +
      +                return prevNode.type !== nodeType;
      +            }
      +
      +            if (prevToken.type === "String") {
      +                return !DECLARATIONS.has(prevNode.parent.type);
      +            }
      +
      +            return true;
      +        }
      +
               /**
                * Reports on nodes where the `Object` constructor is called without arguments.
                * @param {ASTNode} node The node to evaluate.
      @@ -93,16 +177,30 @@ module.exports = {
                   const variable = getVariableByName(sourceCode.getScope(node), "Object");
       
                   if (variable && variable.identifiers.length === 0) {
      -                const replacement = needsParentheses(node) ? "({})" : "{}";
      +                let replacement;
      +                let fixText;
      +                let messageId = "useLiteral";
      +
      +                if (needsParentheses(node)) {
      +                    replacement = "({})";
      +                    if (needsSemicolon(node)) {
      +                        fixText = ";({})";
      +                        messageId = "useLiteralAfterSemicolon";
      +                    } else {
      +                        fixText = "({})";
      +                    }
      +                } else {
      +                    replacement = fixText = "{}";
      +                }
       
                       context.report({
                           node,
                           messageId: "preferLiteral",
                           suggest: [
                               {
      -                            messageId: "useLiteral",
      +                            messageId,
                                   data: { replacement },
      -                            fix: fixer => fixer.replaceText(node, replacement)
      +                            fix: fixer => fixer.replaceText(node, fixText)
                               }
                           ]
                       });
      diff --git a/tools/node_modules/eslint/lib/rules/no-prototype-builtins.js b/tools/node_modules/eslint/lib/rules/no-prototype-builtins.js
      index a7a57bc119e37b..b61e585291a92e 100644
      --- a/tools/node_modules/eslint/lib/rules/no-prototype-builtins.js
      +++ b/tools/node_modules/eslint/lib/rules/no-prototype-builtins.js
      @@ -10,6 +10,37 @@
       
       const astUtils = require("./utils/ast-utils");
       
      +//------------------------------------------------------------------------------
      +// Helpers
      +//------------------------------------------------------------------------------
      +
      +/**
      + * Returns true if the node or any of the objects
      + * to the left of it in the member/call chain is optional.
      + *
      + * e.g. `a?.b`, `a?.b.c`, `a?.()`, `a()?.()`
      + * @param {ASTNode} node The expression to check
      + * @returns {boolean} `true` if there is a short-circuiting optional `?.`
      + * in the same option chain to the left of this call or member expression,
      + * or the node itself is an optional call or member `?.`.
      + */
      +function isAfterOptional(node) {
      +    let leftNode;
      +
      +    if (node.type === "MemberExpression") {
      +        leftNode = node.object;
      +    } else if (node.type === "CallExpression") {
      +        leftNode = node.callee;
      +    } else {
      +        return false;
      +    }
      +    if (node.optional) {
      +        return true;
      +    }
      +    return isAfterOptional(leftNode);
      +}
      +
      +
       //------------------------------------------------------------------------------
       // Rule Definition
       //------------------------------------------------------------------------------
      @@ -25,10 +56,13 @@ module.exports = {
                   url: "https://eslint.org/docs/latest/rules/no-prototype-builtins"
               },
       
      +        hasSuggestions: true,
      +
               schema: [],
       
               messages: {
      -            prototypeBuildIn: "Do not access Object.prototype method '{{prop}}' from target object."
      +            prototypeBuildIn: "Do not access Object.prototype method '{{prop}}' from target object.",
      +            callObjectPrototype: "Call Object.prototype.{{prop}} explicitly."
               }
           },
       
      @@ -59,7 +93,61 @@ module.exports = {
                           messageId: "prototypeBuildIn",
                           loc: callee.property.loc,
                           data: { prop: propName },
      -                    node
      +                    node,
      +                    suggest: [
      +                        {
      +                            messageId: "callObjectPrototype",
      +                            data: { prop: propName },
      +                            fix(fixer) {
      +                                const sourceCode = context.sourceCode;
      +
      +                                /*
      +                                 * A call after an optional chain (e.g. a?.b.hasOwnProperty(c))
      +                                 * must be fixed manually because the call can be short-circuited
      +                                 */
      +                                if (isAfterOptional(node)) {
      +                                    return null;
      +                                }
      +
      +                                /*
      +                                 * A call on a ChainExpression (e.g. (a?.hasOwnProperty)(c)) will trigger
      +                                 * no-unsafe-optional-chaining which should be fixed before this suggestion
      +                                 */
      +                                if (node.callee.type === "ChainExpression") {
      +                                    return null;
      +                                }
      +
      +                                const objectVariable = astUtils.getVariableByName(sourceCode.getScope(node), "Object");
      +
      +                                /*
      +                                 * We can't use Object if the global Object was shadowed,
      +                                 * or Object does not exist in the global scope for some reason
      +                                 */
      +                                if (!objectVariable || objectVariable.scope.type !== "global" || objectVariable.defs.length > 0) {
      +                                    return null;
      +                                }
      +
      +                                let objectText = sourceCode.getText(callee.object);
      +
      +                                if (astUtils.getPrecedence(callee.object) <= astUtils.getPrecedence({ type: "SequenceExpression" })) {
      +                                    objectText = `(${objectText})`;
      +                                }
      +
      +                                const openParenToken = sourceCode.getTokenAfter(
      +                                    node.callee,
      +                                    astUtils.isOpeningParenToken
      +                                );
      +                                const isEmptyParameters = node.arguments.length === 0;
      +                                const delim = isEmptyParameters ? "" : ", ";
      +                                const fixes = [
      +                                    fixer.replaceText(callee, `Object.prototype.${propName}.call`),
      +                                    fixer.insertTextAfter(openParenToken, objectText + delim)
      +                                ];
      +
      +                                return fixes;
      +                            }
      +                        }
      +                    ]
                       });
                   }
               }
      diff --git a/tools/node_modules/eslint/lib/rules/no-tabs.js b/tools/node_modules/eslint/lib/rules/no-tabs.js
      index b33690c24412fc..8581e19af37333 100644
      --- a/tools/node_modules/eslint/lib/rules/no-tabs.js
      +++ b/tools/node_modules/eslint/lib/rules/no-tabs.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to check for tabs inside a file
        * @author Gyandeep Singh
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -19,6 +20,8 @@ const anyNonWhitespaceRegex = /\S/u;
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js b/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js
      index 1674de54207f2a..eede46c8634633 100644
      --- a/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js
      +++ b/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Disallow trailing spaces at the end of lines.
        * @author Nodeca Team 
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -17,6 +18,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/no-whitespace-before-property.js b/tools/node_modules/eslint/lib/rules/no-whitespace-before-property.js
      index 1153314afe6531..94a166e6adea70 100644
      --- a/tools/node_modules/eslint/lib/rules/no-whitespace-before-property.js
      +++ b/tools/node_modules/eslint/lib/rules/no-whitespace-before-property.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to disallow whitespace before properties
        * @author Kai Cataldo
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -17,6 +18,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/nonblock-statement-body-position.js b/tools/node_modules/eslint/lib/rules/nonblock-statement-body-position.js
      index 1ea2770ceb2554..811b32b08212d4 100644
      --- a/tools/node_modules/eslint/lib/rules/nonblock-statement-body-position.js
      +++ b/tools/node_modules/eslint/lib/rules/nonblock-statement-body-position.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview enforce the location of single-line statements
        * @author Teddy Katz
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -13,6 +14,8 @@ const POSITION_SCHEMA = { enum: ["beside", "below", "any"] };
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/object-curly-newline.js b/tools/node_modules/eslint/lib/rules/object-curly-newline.js
      index caf1982312a681..176694b6a0774e 100644
      --- a/tools/node_modules/eslint/lib/rules/object-curly-newline.js
      +++ b/tools/node_modules/eslint/lib/rules/object-curly-newline.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to require or disallow line breaks inside braces.
        * @author Toru Nagashima
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -147,6 +148,8 @@ function areLineBreaksRequired(node, options, first, last) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/object-curly-spacing.js b/tools/node_modules/eslint/lib/rules/object-curly-spacing.js
      index 41ca428fe24d07..4463bcd5af175c 100644
      --- a/tools/node_modules/eslint/lib/rules/object-curly-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/object-curly-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Disallows or enforces spaces inside of object literals.
        * @author Jamund Ferguson
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -13,6 +14,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/object-property-newline.js b/tools/node_modules/eslint/lib/rules/object-property-newline.js
      index deca9b555b1694..6ffa06421f022e 100644
      --- a/tools/node_modules/eslint/lib/rules/object-property-newline.js
      +++ b/tools/node_modules/eslint/lib/rules/object-property-newline.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to enforce placing object properties on separate lines.
        * @author Vitor Balocco
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -12,6 +13,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/one-var-declaration-per-line.js b/tools/node_modules/eslint/lib/rules/one-var-declaration-per-line.js
      index b1e045b0dc58af..340eac169320ea 100644
      --- a/tools/node_modules/eslint/lib/rules/one-var-declaration-per-line.js
      +++ b/tools/node_modules/eslint/lib/rules/one-var-declaration-per-line.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to check multiple var declarations per line
        * @author Alberto Rodríguez
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -11,6 +12,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "suggestion",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/operator-linebreak.js b/tools/node_modules/eslint/lib/rules/operator-linebreak.js
      index 2b609f63576558..3065e66be12873 100644
      --- a/tools/node_modules/eslint/lib/rules/operator-linebreak.js
      +++ b/tools/node_modules/eslint/lib/rules/operator-linebreak.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Operator linebreak - enforces operator linebreak style of two types: after and before
        * @author Benoît Zugmeyer
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -18,6 +19,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/padded-blocks.js b/tools/node_modules/eslint/lib/rules/padded-blocks.js
      index c6d1372ac75d1b..ec4756ba739a08 100644
      --- a/tools/node_modules/eslint/lib/rules/padded-blocks.js
      +++ b/tools/node_modules/eslint/lib/rules/padded-blocks.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview A rule to ensure blank lines within blocks.
        * @author Mathias Schreck 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -18,6 +19,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/padding-line-between-statements.js b/tools/node_modules/eslint/lib/rules/padding-line-between-statements.js
      index 95e08736a9c56f..084651b6dff9d5 100644
      --- a/tools/node_modules/eslint/lib/rules/padding-line-between-statements.js
      +++ b/tools/node_modules/eslint/lib/rules/padding-line-between-statements.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to require or disallow newlines between statements
        * @author Toru Nagashima
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -383,6 +384,8 @@ const StatementTypes = {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/quote-props.js b/tools/node_modules/eslint/lib/rules/quote-props.js
      index 8abab150c4e390..fe26eed77de580 100644
      --- a/tools/node_modules/eslint/lib/rules/quote-props.js
      +++ b/tools/node_modules/eslint/lib/rules/quote-props.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to flag non-quoted property names in object literals.
        * @author Mathias Bynens 
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -19,6 +20,8 @@ const keywords = require("./utils/keywords");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "suggestion",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/quotes.js b/tools/node_modules/eslint/lib/rules/quotes.js
      index 6eda7c0b40aef3..17d97dd697d1c4 100644
      --- a/tools/node_modules/eslint/lib/rules/quotes.js
      +++ b/tools/node_modules/eslint/lib/rules/quotes.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview A rule to choose between single and double quote marks
        * @author Matt DuVall , Brandon Payton
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -77,6 +78,8 @@ const AVOID_ESCAPE = "avoid-escape";
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/rest-spread-spacing.js b/tools/node_modules/eslint/lib/rules/rest-spread-spacing.js
      index 7791238081e27c..287e56f014a6b8 100644
      --- a/tools/node_modules/eslint/lib/rules/rest-spread-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/rest-spread-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Enforce spacing between rest and spread operators and their expressions.
        * @author Kai Cataldo
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -12,6 +13,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/semi-spacing.js b/tools/node_modules/eslint/lib/rules/semi-spacing.js
      index 770f62d41f12e9..35a49d2c22b560 100644
      --- a/tools/node_modules/eslint/lib/rules/semi-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/semi-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Validates spacing before and after semicolon
        * @author Mathias Schreck
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -14,6 +15,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/semi-style.js b/tools/node_modules/eslint/lib/rules/semi-style.js
      index 67ed1e478e764c..caf2224df3d451 100644
      --- a/tools/node_modules/eslint/lib/rules/semi-style.js
      +++ b/tools/node_modules/eslint/lib/rules/semi-style.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to enforce location of semicolons.
        * @author Toru Nagashima
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -70,6 +71,8 @@ function isLastChild(node) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/semi.js b/tools/node_modules/eslint/lib/rules/semi.js
      index 6a473535d49bd3..01586b8492d1ce 100644
      --- a/tools/node_modules/eslint/lib/rules/semi.js
      +++ b/tools/node_modules/eslint/lib/rules/semi.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to flag missing semicolons.
        * @author Nicholas C. Zakas
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -18,6 +19,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/space-before-blocks.js b/tools/node_modules/eslint/lib/rules/space-before-blocks.js
      index a580a4f2249a0e..a4a5449e17fde3 100644
      --- a/tools/node_modules/eslint/lib/rules/space-before-blocks.js
      +++ b/tools/node_modules/eslint/lib/rules/space-before-blocks.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview A rule to ensure whitespace before blocks.
        * @author Mathias Schreck 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -37,6 +38,8 @@ function isFunctionBody(node) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/space-before-function-paren.js b/tools/node_modules/eslint/lib/rules/space-before-function-paren.js
      index c5faa8cf4ddeb3..575a1597a74ecf 100644
      --- a/tools/node_modules/eslint/lib/rules/space-before-function-paren.js
      +++ b/tools/node_modules/eslint/lib/rules/space-before-function-paren.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to validate spacing before function paren.
        * @author Mathias Schreck 
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -17,6 +18,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/space-in-parens.js b/tools/node_modules/eslint/lib/rules/space-in-parens.js
      index c6c06d29a3f506..d15a64317f4d08 100644
      --- a/tools/node_modules/eslint/lib/rules/space-in-parens.js
      +++ b/tools/node_modules/eslint/lib/rules/space-in-parens.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Disallows or enforces spaces inside of parentheses.
        * @author Jonathan Rajavuori
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -13,6 +14,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/space-infix-ops.js b/tools/node_modules/eslint/lib/rules/space-infix-ops.js
      index 81a95f83bf217a..40071019480a57 100644
      --- a/tools/node_modules/eslint/lib/rules/space-infix-ops.js
      +++ b/tools/node_modules/eslint/lib/rules/space-infix-ops.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Require spaces around infix operators
        * @author Michael Ficarra
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -13,6 +14,8 @@ const { isEqToken } = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/space-unary-ops.js b/tools/node_modules/eslint/lib/rules/space-unary-ops.js
      index 381381d6e5d24f..aed43e7249eb9b 100644
      --- a/tools/node_modules/eslint/lib/rules/space-unary-ops.js
      +++ b/tools/node_modules/eslint/lib/rules/space-unary-ops.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview This rule should require or disallow spaces before or after unary operations.
        * @author Marcin Kumorek
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -17,6 +18,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/spaced-comment.js b/tools/node_modules/eslint/lib/rules/spaced-comment.js
      index 2eb7f0e3008d70..90ac7032d03f9d 100644
      --- a/tools/node_modules/eslint/lib/rules/spaced-comment.js
      +++ b/tools/node_modules/eslint/lib/rules/spaced-comment.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Source code for spaced-comments rule
        * @author Gyandeep Singh
      + * @deprecated in ESLint v8.53.0
        */
       "use strict";
       
      @@ -149,6 +150,8 @@ function createNeverStylePattern(markers) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "suggestion",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/switch-colon-spacing.js b/tools/node_modules/eslint/lib/rules/switch-colon-spacing.js
      index 45e401822a8725..3ea63ca0eed4fa 100644
      --- a/tools/node_modules/eslint/lib/rules/switch-colon-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/switch-colon-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to enforce spacing around colons of switch statements.
        * @author Toru Nagashima
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -18,6 +19,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/template-curly-spacing.js b/tools/node_modules/eslint/lib/rules/template-curly-spacing.js
      index cc9bbe306d51cc..1f8cc34c1d7c30 100644
      --- a/tools/node_modules/eslint/lib/rules/template-curly-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/template-curly-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to enforce spacing around embedded expressions of template strings
        * @author Toru Nagashima
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -18,6 +19,8 @@ const astUtils = require("./utils/ast-utils");
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/template-tag-spacing.js b/tools/node_modules/eslint/lib/rules/template-tag-spacing.js
      index 9bfdfc2288d10a..52e0bcf2073000 100644
      --- a/tools/node_modules/eslint/lib/rules/template-tag-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/template-tag-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to check spacing between template tags and their literals
        * @author Jonathan Wilsson
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -12,6 +13,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/wrap-iife.js b/tools/node_modules/eslint/lib/rules/wrap-iife.js
      index 4c448fa79930ea..518071067db13e 100644
      --- a/tools/node_modules/eslint/lib/rules/wrap-iife.js
      +++ b/tools/node_modules/eslint/lib/rules/wrap-iife.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to flag when IIFE is not wrapped in parens
        * @author Ilya Volodin
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -40,6 +41,8 @@ function isCalleeOfNewExpression(node) {
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/wrap-regex.js b/tools/node_modules/eslint/lib/rules/wrap-regex.js
      index 8166c252f3c25f..9e2808d60c7023 100644
      --- a/tools/node_modules/eslint/lib/rules/wrap-regex.js
      +++ b/tools/node_modules/eslint/lib/rules/wrap-regex.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to flag when regex literals are not wrapped in parens
        * @author Matt DuVall 
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -12,6 +13,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      diff --git a/tools/node_modules/eslint/lib/rules/yield-star-spacing.js b/tools/node_modules/eslint/lib/rules/yield-star-spacing.js
      index 9f9d918ae6c576..9a67b78d25f034 100644
      --- a/tools/node_modules/eslint/lib/rules/yield-star-spacing.js
      +++ b/tools/node_modules/eslint/lib/rules/yield-star-spacing.js
      @@ -1,6 +1,7 @@
       /**
        * @fileoverview Rule to check the spacing around the * in yield* expressions.
        * @author Bryan Smith
      + * @deprecated in ESLint v8.53.0
        */
       
       "use strict";
      @@ -12,6 +13,8 @@
       /** @type {import('../shared/types').Rule} */
       module.exports = {
           meta: {
      +        deprecated: true,
      +        replacedBy: [],
               type: "layout",
       
               docs: {
      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 191a1440fd7b86..94f8b94ab078cf 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.22.20",
      +  "version": "7.23.2",
         "author": "The Babel Team (https://babel.dev/team)",
         "license": "MIT",
         "description": "",
      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 76f15cfb6c403f..64ff8344f6280d 100644
      --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js
      +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js
      @@ -224,7 +224,7 @@ var _transformAst = require("./transform-ast.js");
       var _parse = require("./parse.js");
       var thisFile = require("./index.js");
       ;
      -const version = "7.23.0";
      +const version = "7.23.2";
       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 6d61fbeec23ea9..bd8a01027a2d1c 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.23.0",
      +  "version": "7.23.2",
         "description": "Babel compiler core.",
         "main": "./lib/index.js",
         "author": "The Babel Team (https://babel.dev/team)",
      @@ -51,10 +51,10 @@
           "@babel/generator": "^7.23.0",
           "@babel/helper-compilation-targets": "^7.22.15",
           "@babel/helper-module-transforms": "^7.23.0",
      -    "@babel/helpers": "^7.23.0",
      +    "@babel/helpers": "^7.23.2",
           "@babel/parser": "^7.23.0",
           "@babel/template": "^7.22.15",
      -    "@babel/traverse": "^7.23.0",
      +    "@babel/traverse": "^7.23.2",
           "@babel/types": "^7.23.0",
           "convert-source-map": "^2.0.0",
           "debug": "^4.1.0",
      @@ -67,8 +67,8 @@
           "@babel/plugin-syntax-flow": "^7.22.5",
           "@babel/plugin-transform-flow-strip-types": "^7.22.5",
           "@babel/plugin-transform-modules-commonjs": "^7.23.0",
      -    "@babel/preset-env": "^7.22.20",
      -    "@babel/preset-typescript": "^7.23.0",
      +    "@babel/preset-env": "^7.23.2",
      +    "@babel/preset-typescript": "^7.23.2",
           "@jridgewell/trace-mapping": "^0.3.17",
           "@types/convert-source-map": "^2.0.0",
           "@types/debug": "^4.1.0",
      diff --git a/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers-generated.js b/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers-generated.js
      index aff47496d37b4f..d06e9b31291a06 100644
      --- a/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers-generated.js
      +++ b/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers-generated.js
      @@ -28,6 +28,7 @@ var _default = Object.freeze({
         defineAccessor: helper("7.20.7", "export default function _defineAccessor(e,r,n,t){var c={configurable:!0,enumerable:!0};return c[e]=t,Object.defineProperty(r,n,c)}"),
         dispose: helper("7.22.0", 'function dispose_SuppressedError(r,e){return"undefined"!=typeof SuppressedError?dispose_SuppressedError=SuppressedError:(dispose_SuppressedError=function(r,e){this.suppressed=r,this.error=e,this.stack=(new Error).stack},dispose_SuppressedError.prototype=Object.create(Error.prototype,{constructor:{value:dispose_SuppressedError,writable:!0,configurable:!0}})),new dispose_SuppressedError(r,e)}export default function _dispose(r,e,s){function next(){for(;r.length>0;)try{var o=r.pop(),p=o.d.call(o.v);if(o.a)return Promise.resolve(p).then(next,err)}catch(r){return err(r)}if(s)throw e}function err(r){return e=s?new dispose_SuppressedError(r,e):r,s=!0,next()}return next()}'),
         importDeferProxy: helper("7.23.0", "export default function _importDeferProxy(e){var t=null,constValue=function(e){return function(){return e}},proxy=function(r){return function(n,o,f){return null===t&&(t=e()),r(t,o,f)}};return new Proxy({},{defineProperty:constValue(!1),deleteProperty:constValue(!1),get:proxy(Reflect.get),getOwnPropertyDescriptor:proxy(Reflect.getOwnPropertyDescriptor),getPrototypeOf:constValue(null),isExtensible:constValue(!1),has:proxy(Reflect.has),ownKeys:proxy(Reflect.ownKeys),preventExtensions:constValue(!0),set:constValue(!1),setPrototypeOf:constValue(!1)})}"),
      +  interopRequireWildcard: helper("7.14.0", 'function _getRequireWildcardCache(e){if("function"!=typeof WeakMap)return null;var r=new WeakMap,t=new WeakMap;return(_getRequireWildcardCache=function(e){return e?t:r})(e)}export default function _interopRequireWildcard(e,r){if(!r&&e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var t=_getRequireWildcardCache(r);if(t&&t.has(e))return t.get(e);var n={__proto__:null},a=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in e)if("default"!==u&&Object.prototype.hasOwnProperty.call(e,u)){var i=a?Object.getOwnPropertyDescriptor(e,u):null;i&&(i.get||i.set)?Object.defineProperty(n,u,i):n[u]=e[u]}return n.default=e,t&&t.set(e,n),n}'),
         iterableToArrayLimit: helper("7.0.0-beta.0", 'export default function _iterableToArrayLimit(r,l){var t=null==r?null:"undefined"!=typeof Symbol&&r[Symbol.iterator]||r["@@iterator"];if(null!=t){var e,n,i,u,a=[],f=!0,o=!1;try{if(i=(t=t.call(r)).next,0===l){if(Object(t)!==t)return;f=!1}else for(;!(f=(e=i.call(t)).done)&&(a.push(e.value),a.length!==l);f=!0);}catch(r){o=!0,n=r}finally{try{if(!f&&null!=t.return&&(u=t.return(),Object(u)!==u))return}finally{if(o)throw n}}return a}}'),
         iterableToArrayLimitLoose: helper("7.0.0-beta.0", 'export default function _iterableToArrayLimitLoose(e,r){var t=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null!=t){var o,l=[];for(t=t.call(e);e.length1){for(var t=new Array(n),f=0;f=10.10.0"
         },
         "dependencies": {
      -    "@humanwhocodes/object-schema": "^1.2.1",
      +    "@humanwhocodes/object-schema": "^2.0.1",
           "debug": "^4.1.1",
           "minimatch": "^3.0.5"
         },
         "devDependencies": {
           "@nitpik/javascript": "0.4.0",
           "@nitpik/node": "0.0.5",
      -    "chai": "4.3.8",
      -    "eslint": "8.41.0",
      +    "chai": "4.3.10",
      +    "eslint": "8.51.0",
           "esm": "3.2.25",
      -    "lint-staged": "14.0.1",
      +    "lint-staged": "15.0.2",
           "mocha": "6.2.3",
      -    "nyc": "14.1.1",
      +    "nyc": "15.1.0",
           "rollup": "3.28.1",
           "yorkie": "2.0.0"
         }
      diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/object-schema/package.json b/tools/node_modules/eslint/node_modules/@humanwhocodes/object-schema/package.json
      index 9fc90bf3f9dd61..b13f6ee9a2ed78 100644
      --- a/tools/node_modules/eslint/node_modules/@humanwhocodes/object-schema/package.json
      +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/object-schema/package.json
      @@ -1,6 +1,6 @@
       {
         "name": "@humanwhocodes/object-schema",
      -  "version": "1.2.1",
      +  "version": "2.0.1",
         "description": "An object schema merger/validator",
         "main": "src/index.js",
         "directories": {
      diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/object-schema/src/object-schema.js b/tools/node_modules/eslint/node_modules/@humanwhocodes/object-schema/src/object-schema.js
      index b663236539a668..1d9da196ba966e 100644
      --- a/tools/node_modules/eslint/node_modules/@humanwhocodes/object-schema/src/object-schema.js
      +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/object-schema/src/object-schema.js
      @@ -62,9 +62,77 @@ function validateDefinition(name, strategy) {
           }
       }
       
      +//-----------------------------------------------------------------------------
      +// Errors
      +//-----------------------------------------------------------------------------
      +
      +/**
      + * Error when an unexpected key is found.
      + */
      +class UnexpectedKeyError extends Error {
      +
      +    /**
      +     * Creates a new instance.
      +     * @param {string} key The key that was unexpected. 
      +     */
      +    constructor(key) {
      +        super(`Unexpected key "${key}" found.`);
      +    }
      +}
      +
      +/**
      + * Error when a required key is missing.
      + */
      +class MissingKeyError extends Error {
      +
      +    /**
      +     * Creates a new instance.
      +     * @param {string} key The key that was missing. 
      +     */
      +    constructor(key) {
      +        super(`Missing required key "${key}".`);
      +    }
      +}
      +
      +/**
      + * Error when a key requires other keys that are missing.
      + */
      +class MissingDependentKeysError extends Error {
      +
      +    /**
      +     * Creates a new instance.
      +     * @param {string} key The key that was unexpected.
      +     * @param {Array} requiredKeys The keys that are required.
      +     */
      +    constructor(key, requiredKeys) {
      +        super(`Key "${key}" requires keys "${requiredKeys.join("\", \"")}".`);
      +    }
      +}
      +
      +/**
      + * Wrapper error for errors occuring during a merge or validate operation.
      + */
      +class WrapperError {
      +
      +    /**
      +     * Creates a new instance.
      +     * @param {string} key The object key causing the error. 
      +     * @param {Error} source The source error. 
      +     */
      +    constructor(key, source) {
      +        return Object.create(source, {
      +            message: {
      +                value: `Key "${key}": ` + source.message,
      +                configurable: true,
      +                writable: true,
      +                enumerable: true
      +            }
      +        });
      +    }
      +}
       
       //-----------------------------------------------------------------------------
      -// Class
      +// Main
       //-----------------------------------------------------------------------------
       
       /**
      @@ -159,11 +227,11 @@ class ObjectSchema {
       
               // double check arguments
               if (objects.length < 2) {
      -            throw new Error("merge() requires at least two arguments.");
      +            throw new TypeError("merge() requires at least two arguments.");
               }
       
               if (objects.some(object => (object == null || typeof object !== "object"))) {
      -            throw new Error("All arguments must be objects.");
      +            throw new TypeError("All arguments must be objects.");
               }
       
               return objects.reduce((result, object) => {
      @@ -179,8 +247,7 @@ class ObjectSchema {
                               }
                           }
                       } catch (ex) {
      -                    ex.message = `Key "${key}": ` + ex.message;
      -                    throw ex;
      +                    throw new WrapperError(key, ex);
                       }
                   }
                   return result;
      @@ -200,7 +267,7 @@ class ObjectSchema {
       
                   // check to see if the key is defined
                   if (!this.hasKey(key)) {
      -                throw new Error(`Unexpected key "${key}" found.`);
      +                throw new UnexpectedKeyError(key);
                   }
       
                   // validate existing keys
      @@ -209,7 +276,7 @@ class ObjectSchema {
                   // first check to see if any other keys are required
                   if (Array.isArray(strategy.requires)) {
                       if (!strategy.requires.every(otherKey => otherKey in object)) {
      -                    throw new Error(`Key "${key}" requires keys "${strategy.requires.join("\", \"")}".`);
      +                    throw new MissingDependentKeysError(key, strategy.requires);
                       }
                   }
       
      @@ -217,15 +284,14 @@ class ObjectSchema {
                   try {
                       strategy.validate.call(strategy, object[key]);
                   } catch (ex) {
      -                ex.message = `Key "${key}": ` + ex.message;
      -                throw ex;
      +                throw new WrapperError(key, ex);
                   }
               }
       
               // ensure required keys aren't missing
               for (const [key] of this[requiredKeys]) {
                   if (!(key in object)) {
      -                throw new Error(`Missing required key "${key}".`);
      +                throw new MissingKeyError(key);
                   }
               }
       
      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 917a3303abdccd..d3c1a7aca4b23b 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
      @@ -349,7 +349,7 @@ class TraceMap {
               const { version, file, names, sourceRoot, sources, sourcesContent } = parsed;
               this.version = version;
               this.file = file;
      -        this.names = names;
      +        this.names = names || [];
               this.sourceRoot = sourceRoot;
               this.sources = sources;
               this.sourcesContent = sourcesContent;
      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 a3251f166baed7..8b67ffb949e527 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
      @@ -356,7 +356,7 @@
                   const { version, file, names, sourceRoot, sources, sourcesContent } = parsed;
                   this.version = version;
                   this.file = file;
      -            this.names = names;
      +            this.names = names || [];
                   this.sourceRoot = sourceRoot;
                   this.sources = sources;
                   this.sourcesContent = sourcesContent;
      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 7280d758b02ee2..c06194565a57a4 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.19",
      +  "version": "0.3.20",
         "description": "Trace the original position through a source map",
         "keywords": [
           "source",
      diff --git a/tools/node_modules/eslint/node_modules/@types/mdast/package.json b/tools/node_modules/eslint/node_modules/@types/mdast/package.json
      index 81452e9484730e..b26e2e31793951 100644
      --- a/tools/node_modules/eslint/node_modules/@types/mdast/package.json
      +++ b/tools/node_modules/eslint/node_modules/@types/mdast/package.json
      @@ -1,29 +1,29 @@
       {
           "name": "@types/mdast",
      -    "version": "3.0.13",
      -    "description": "TypeScript definitions for Mdast",
      +    "version": "3.0.14",
      +    "description": "TypeScript definitions for mdast",
           "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast",
           "license": "MIT",
           "contributors": [
               {
                   "name": "Christian Murphy",
      -            "url": "https://github.com/ChristianMurphy",
      -            "githubUsername": "ChristianMurphy"
      +            "githubUsername": "ChristianMurphy",
      +            "url": "https://github.com/ChristianMurphy"
               },
               {
                   "name": "Jun Lu",
      -            "url": "https://github.com/lujun2",
      -            "githubUsername": "lujun2"
      +            "githubUsername": "lujun2",
      +            "url": "https://github.com/lujun2"
               },
               {
                   "name": "Remco Haszing",
      -            "url": "https://github.com/remcohaszing",
      -            "githubUsername": "remcohaszing"
      +            "githubUsername": "remcohaszing",
      +            "url": "https://github.com/remcohaszing"
               },
               {
                   "name": "Titus Wormer",
      -            "url": "https://github.com/wooorm",
      -            "githubUsername": "wooorm"
      +            "githubUsername": "wooorm",
      +            "url": "https://github.com/wooorm"
               }
           ],
           "main": "",
      @@ -37,6 +37,6 @@
           "dependencies": {
               "@types/unist": "^2"
           },
      -    "typesPublisherContentHash": "4f7e7836da8059c1699be808ec47184aefe23f7e21adb87b32171a0cd60e111c",
      +    "typesPublisherContentHash": "97a041b9ee73bda62fd42374f55c4838d7b79f4ce91051cfccd9ed428681f55a",
           "typeScriptVersion": "4.5"
       }
      \ No newline at end of file
      diff --git a/tools/node_modules/eslint/node_modules/@types/unist/LICENSE b/tools/node_modules/eslint/node_modules/@types/unist/LICENSE
      old mode 100755
      new mode 100644
      diff --git a/tools/node_modules/eslint/node_modules/@types/unist/package.json b/tools/node_modules/eslint/node_modules/@types/unist/package.json
      old mode 100755
      new mode 100644
      index 46aa74fe67ea69..5f75b1f193d8d7
      --- a/tools/node_modules/eslint/node_modules/@types/unist/package.json
      +++ b/tools/node_modules/eslint/node_modules/@types/unist/package.json
      @@ -1,44 +1,44 @@
       {
           "name": "@types/unist",
      -    "version": "2.0.8",
      -    "description": "TypeScript definitions for Unist",
      +    "version": "2.0.9",
      +    "description": "TypeScript definitions for unist",
           "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist",
           "license": "MIT",
           "contributors": [
               {
                   "name": "bizen241",
      -            "url": "https://github.com/bizen241",
      -            "githubUsername": "bizen241"
      +            "githubUsername": "bizen241",
      +            "url": "https://github.com/bizen241"
               },
               {
                   "name": "Jun Lu",
      -            "url": "https://github.com/lujun2",
      -            "githubUsername": "lujun2"
      +            "githubUsername": "lujun2",
      +            "url": "https://github.com/lujun2"
               },
               {
                   "name": "Hernan Rajchert",
      -            "url": "https://github.com/hrajchert",
      -            "githubUsername": "hrajchert"
      +            "githubUsername": "hrajchert",
      +            "url": "https://github.com/hrajchert"
               },
               {
                   "name": "Titus Wormer",
      -            "url": "https://github.com/wooorm",
      -            "githubUsername": "wooorm"
      +            "githubUsername": "wooorm",
      +            "url": "https://github.com/wooorm"
               },
               {
                   "name": "Junyoung Choi",
      -            "url": "https://github.com/rokt33r",
      -            "githubUsername": "rokt33r"
      +            "githubUsername": "rokt33r",
      +            "url": "https://github.com/rokt33r"
               },
               {
                   "name": "Ben Moon",
      -            "url": "https://github.com/GuiltyDolphin",
      -            "githubUsername": "GuiltyDolphin"
      +            "githubUsername": "GuiltyDolphin",
      +            "url": "https://github.com/GuiltyDolphin"
               },
               {
                   "name": "JounQin",
      -            "url": "https://github.com/JounQin",
      -            "githubUsername": "JounQin"
      +            "githubUsername": "JounQin",
      +            "url": "https://github.com/JounQin"
               }
           ],
           "main": "",
      @@ -50,6 +50,7 @@
           },
           "scripts": {},
           "dependencies": {},
      -    "typesPublisherContentHash": "6f0fbad7f7e548fa74313e425571a019550cf848fd074a2395066325b9ecb9a9",
      -    "typeScriptVersion": "4.3"
      +    "typesPublisherContentHash": "bba7aef6ce06ea8d0fda589e0679b537ed7a3c614a5009dfc858d69a2fe9439f",
      +    "typeScriptVersion": "4.5",
      +    "nonNpm": true
       }
      \ No newline at end of file
      diff --git a/deps/npm/node_modules/inherits/LICENSE b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/LICENSE
      similarity index 68%
      rename from deps/npm/node_modules/inherits/LICENSE
      rename to tools/node_modules/eslint/node_modules/@ungap/structured-clone/LICENSE
      index dea3013d6710ee..48afbe52afb589 100644
      --- a/deps/npm/node_modules/inherits/LICENSE
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/LICENSE
      @@ -1,16 +1,15 @@
      -The ISC License
      +ISC License
       
      -Copyright (c) Isaac Z. Schlueter
      +Copyright (c) 2021, Andrea Giammarchi, @WebReflection
       
       Permission to use, copy, modify, and/or distribute this software for any
       purpose with or without fee is hereby granted, provided that the above
       copyright notice and this permission notice appear in all copies.
       
       THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
      -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
      -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
      +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
      +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
      +OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
       PERFORMANCE OF THIS SOFTWARE.
      -
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/deserialize.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/deserialize.js
      new file mode 100644
      index 00000000000000..9c0af7ddda7741
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/deserialize.js
      @@ -0,0 +1,78 @@
      +'use strict';
      +const {
      +  VOID, PRIMITIVE, ARRAY, OBJECT, DATE, REGEXP, MAP, SET, ERROR, BIGINT
      +} = require('./types.js');
      +
      +const env = typeof self === 'object' ? self : globalThis;
      +
      +const deserializer = ($, _) => {
      +  const as = (out, index) => {
      +    $.set(index, out);
      +    return out;
      +  };
      +
      +  const unpair = index => {
      +    if ($.has(index))
      +      return $.get(index);
      +
      +    const [type, value] = _[index];
      +    switch (type) {
      +      case PRIMITIVE:
      +      case VOID:
      +        return as(value, index);
      +      case ARRAY: {
      +        const arr = as([], index);
      +        for (const index of value)
      +          arr.push(unpair(index));
      +        return arr;
      +      }
      +      case OBJECT: {
      +        const object = as({}, index);
      +        for (const [key, index] of value)
      +          object[unpair(key)] = unpair(index);
      +        return object;
      +      }
      +      case DATE:
      +        return as(new Date(value), index);
      +      case REGEXP: {
      +        const {source, flags} = value;
      +        return as(new RegExp(source, flags), index);
      +      }
      +      case MAP: {
      +        const map = as(new Map, index);
      +        for (const [key, index] of value)
      +          map.set(unpair(key), unpair(index));
      +        return map;
      +      }
      +      case SET: {
      +        const set = as(new Set, index);
      +        for (const index of value)
      +          set.add(unpair(index));
      +        return set;
      +      }
      +      case ERROR: {
      +        const {name, message} = value;
      +        return as(new env[name](message), index);
      +      }
      +      case BIGINT:
      +        return as(BigInt(value), index);
      +      case 'BigInt':
      +        return as(Object(BigInt(value)), index);
      +    }
      +    return as(new env[type](value), index);
      +  };
      +
      +  return unpair;
      +};
      +
      +/**
      + * @typedef {Array} Record a type representation
      + */
      +
      +/**
      + * Returns a deserialized value from a serialized array of Records.
      + * @param {Record[]} serialized a previously serialized value.
      + * @returns {any}
      + */
      +const deserialize = serialized => deserializer(new Map, serialized)(0);
      +exports.deserialize = deserialize;
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/index.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/index.js
      new file mode 100644
      index 00000000000000..13d747c5937db6
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/index.js
      @@ -0,0 +1,27 @@
      +'use strict';
      +const {deserialize} = require('./deserialize.js');
      +const {serialize} = require('./serialize.js');
      +
      +/**
      + * @typedef {Array} Record a type representation
      + */
      +
      +/**
      + * Returns an array of serialized Records.
      + * @param {any} any a serializable value.
      + * @param {{transfer?: any[], json?: boolean, lossy?: boolean}?} options an object with
      + * a transfer option (ignored when polyfilled) and/or non standard fields that
      + * fallback to the polyfill if present.
      + * @returns {Record[]}
      + */
      +Object.defineProperty(exports, '__esModule', {value: true}).default = typeof structuredClone === "function" ?
      +  /* c8 ignore start */
      +  (any, options) => (
      +    options && ('json' in options || 'lossy' in options) ?
      +      deserialize(serialize(any, options)) : structuredClone(any)
      +  ) :
      +  (any, options) => deserialize(serialize(any, options));
      +  /* c8 ignore stop */
      +
      +exports.deserialize = deserialize;
      +exports.serialize = serialize;
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/json.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/json.js
      new file mode 100644
      index 00000000000000..0038dcf9ca530f
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/json.js
      @@ -0,0 +1,24 @@
      +'use strict';
      +/*! (c) Andrea Giammarchi - ISC */
      +
      +const {deserialize} = require('./deserialize.js');
      +const {serialize} = require('./serialize.js');
      +
      +const {parse: $parse, stringify: $stringify} = JSON;
      +const options = {json: true, lossy: true};
      +
      +/**
      + * Revive a previously stringified structured clone.
      + * @param {string} str previously stringified data as string.
      + * @returns {any} whatever was previously stringified as clone.
      + */
      +const parse = str => deserialize($parse(str));
      +exports.parse = parse;
      +
      +/**
      + * Represent a structured clone value as string.
      + * @param {any} any some clone-able value to stringify.
      + * @returns {string} the value stringified.
      + */
      +const stringify = any => $stringify(serialize(any, options));
      +exports.stringify = stringify;
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/package.json b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/package.json
      new file mode 100644
      index 00000000000000..0292b9956f2e40
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/package.json
      @@ -0,0 +1 @@
      +{"type":"commonjs"}
      \ No newline at end of file
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/serialize.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/serialize.js
      new file mode 100644
      index 00000000000000..0379cc6cf82b93
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/serialize.js
      @@ -0,0 +1,160 @@
      +'use strict';
      +const {
      +  VOID, PRIMITIVE, ARRAY, OBJECT, DATE, REGEXP, MAP, SET, ERROR, BIGINT
      +} = require('./types.js');
      +
      +const EMPTY = '';
      +
      +const {toString} = {};
      +const {keys} = Object;
      +
      +const typeOf = value => {
      +  const type = typeof value;
      +  if (type !== 'object' || !value)
      +    return [PRIMITIVE, type];
      +
      +  const asString = toString.call(value).slice(8, -1);
      +  switch (asString) {
      +    case 'Array':
      +      return [ARRAY, EMPTY];
      +    case 'Object':
      +      return [OBJECT, EMPTY];
      +    case 'Date':
      +      return [DATE, EMPTY];
      +    case 'RegExp':
      +      return [REGEXP, EMPTY];
      +    case 'Map':
      +      return [MAP, EMPTY];
      +    case 'Set':
      +      return [SET, EMPTY];
      +  }
      +
      +  if (asString.includes('Array'))
      +    return [ARRAY, asString];
      +
      +  if (asString.includes('Error'))
      +    return [ERROR, asString];
      +
      +  return [OBJECT, asString];
      +};
      +
      +const shouldSkip = ([TYPE, type]) => (
      +  TYPE === PRIMITIVE &&
      +  (type === 'function' || type === 'symbol')
      +);
      +
      +const serializer = (strict, json, $, _) => {
      +
      +  const as = (out, value) => {
      +    const index = _.push(out) - 1;
      +    $.set(value, index);
      +    return index;
      +  };
      +
      +  const pair = value => {
      +    if ($.has(value))
      +      return $.get(value);
      +
      +    let [TYPE, type] = typeOf(value);
      +    switch (TYPE) {
      +      case PRIMITIVE: {
      +        let entry = value;
      +        switch (type) {
      +          case 'bigint':
      +            TYPE = BIGINT;
      +            entry = value.toString();
      +            break;
      +          case 'function':
      +          case 'symbol':
      +            if (strict)
      +              throw new TypeError('unable to serialize ' + type);
      +            entry = null;
      +            break;
      +          case 'undefined':
      +            return as([VOID], value);
      +        }
      +        return as([TYPE, entry], value);
      +      }
      +      case ARRAY: {
      +        if (type)
      +          return as([type, [...value]], value);
      +  
      +        const arr = [];
      +        const index = as([TYPE, arr], value);
      +        for (const entry of value)
      +          arr.push(pair(entry));
      +        return index;
      +      }
      +      case OBJECT: {
      +        if (type) {
      +          switch (type) {
      +            case 'BigInt':
      +              return as([type, value.toString()], value);
      +            case 'Boolean':
      +            case 'Number':
      +            case 'String':
      +              return as([type, value.valueOf()], value);
      +          }
      +        }
      +
      +        if (json && ('toJSON' in value))
      +          return pair(value.toJSON());
      +
      +        const entries = [];
      +        const index = as([TYPE, entries], value);
      +        for (const key of keys(value)) {
      +          if (strict || !shouldSkip(typeOf(value[key])))
      +            entries.push([pair(key), pair(value[key])]);
      +        }
      +        return index;
      +      }
      +      case DATE:
      +        return as([TYPE, value.toISOString()], value);
      +      case REGEXP: {
      +        const {source, flags} = value;
      +        return as([TYPE, {source, flags}], value);
      +      }
      +      case MAP: {
      +        const entries = [];
      +        const index = as([TYPE, entries], value);
      +        for (const [key, entry] of value) {
      +          if (strict || !(shouldSkip(typeOf(key)) || shouldSkip(typeOf(entry))))
      +            entries.push([pair(key), pair(entry)]);
      +        }
      +        return index;
      +      }
      +      case SET: {
      +        const entries = [];
      +        const index = as([TYPE, entries], value);
      +        for (const entry of value) {
      +          if (strict || !shouldSkip(typeOf(entry)))
      +            entries.push(pair(entry));
      +        }
      +        return index;
      +      }
      +    }
      +
      +    const {message} = value;
      +    return as([TYPE, {name: type, message}], value);
      +  };
      +
      +  return pair;
      +};
      +
      +/**
      + * @typedef {Array} Record a type representation
      + */
      +
      +/**
      + * Returns an array of serialized Records.
      + * @param {any} value a serializable value.
      + * @param {{json?: boolean, lossy?: boolean}?} options an object with a `lossy` or `json` property that,
      + *  if `true`, will not throw errors on incompatible types, and behave more
      + *  like JSON stringify would behave. Symbol and Function will be discarded.
      + * @returns {Record[]}
      + */
      + const serialize = (value, {json, lossy} = {}) => {
      +  const _ = [];
      +  return serializer(!(json || lossy), !!json, new Map, _)(value), _;
      +};
      +exports.serialize = serialize;
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/types.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/types.js
      new file mode 100644
      index 00000000000000..8284be3d69a407
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/types.js
      @@ -0,0 +1,22 @@
      +'use strict';
      +const VOID       = -1;
      +exports.VOID = VOID;
      +const PRIMITIVE  = 0;
      +exports.PRIMITIVE = PRIMITIVE;
      +const ARRAY      = 1;
      +exports.ARRAY = ARRAY;
      +const OBJECT     = 2;
      +exports.OBJECT = OBJECT;
      +const DATE       = 3;
      +exports.DATE = DATE;
      +const REGEXP     = 4;
      +exports.REGEXP = REGEXP;
      +const MAP        = 5;
      +exports.MAP = MAP;
      +const SET        = 6;
      +exports.SET = SET;
      +const ERROR      = 7;
      +exports.ERROR = ERROR;
      +const BIGINT     = 8;
      +exports.BIGINT = BIGINT;
      +// export const SYMBOL = 9;
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/deserialize.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/deserialize.js
      new file mode 100644
      index 00000000000000..0fa70897dc050e
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/deserialize.js
      @@ -0,0 +1,79 @@
      +import {
      +  VOID, PRIMITIVE,
      +  ARRAY, OBJECT,
      +  DATE, REGEXP, MAP, SET,
      +  ERROR, BIGINT
      +} from './types.js';
      +
      +const env = typeof self === 'object' ? self : globalThis;
      +
      +const deserializer = ($, _) => {
      +  const as = (out, index) => {
      +    $.set(index, out);
      +    return out;
      +  };
      +
      +  const unpair = index => {
      +    if ($.has(index))
      +      return $.get(index);
      +
      +    const [type, value] = _[index];
      +    switch (type) {
      +      case PRIMITIVE:
      +      case VOID:
      +        return as(value, index);
      +      case ARRAY: {
      +        const arr = as([], index);
      +        for (const index of value)
      +          arr.push(unpair(index));
      +        return arr;
      +      }
      +      case OBJECT: {
      +        const object = as({}, index);
      +        for (const [key, index] of value)
      +          object[unpair(key)] = unpair(index);
      +        return object;
      +      }
      +      case DATE:
      +        return as(new Date(value), index);
      +      case REGEXP: {
      +        const {source, flags} = value;
      +        return as(new RegExp(source, flags), index);
      +      }
      +      case MAP: {
      +        const map = as(new Map, index);
      +        for (const [key, index] of value)
      +          map.set(unpair(key), unpair(index));
      +        return map;
      +      }
      +      case SET: {
      +        const set = as(new Set, index);
      +        for (const index of value)
      +          set.add(unpair(index));
      +        return set;
      +      }
      +      case ERROR: {
      +        const {name, message} = value;
      +        return as(new env[name](message), index);
      +      }
      +      case BIGINT:
      +        return as(BigInt(value), index);
      +      case 'BigInt':
      +        return as(Object(BigInt(value)), index);
      +    }
      +    return as(new env[type](value), index);
      +  };
      +
      +  return unpair;
      +};
      +
      +/**
      + * @typedef {Array} Record a type representation
      + */
      +
      +/**
      + * Returns a deserialized value from a serialized array of Records.
      + * @param {Record[]} serialized a previously serialized value.
      + * @returns {any}
      + */
      +export const deserialize = serialized => deserializer(new Map, serialized)(0);
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/index.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/index.js
      new file mode 100644
      index 00000000000000..d3b47479adfc55
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/index.js
      @@ -0,0 +1,25 @@
      +import {deserialize} from './deserialize.js';
      +import {serialize} from './serialize.js';
      +
      +/**
      + * @typedef {Array} Record a type representation
      + */
      +
      +/**
      + * Returns an array of serialized Records.
      + * @param {any} any a serializable value.
      + * @param {{transfer?: any[], json?: boolean, lossy?: boolean}?} options an object with
      + * a transfer option (ignored when polyfilled) and/or non standard fields that
      + * fallback to the polyfill if present.
      + * @returns {Record[]}
      + */
      +export default typeof structuredClone === "function" ?
      +  /* c8 ignore start */
      +  (any, options) => (
      +    options && ('json' in options || 'lossy' in options) ?
      +      deserialize(serialize(any, options)) : structuredClone(any)
      +  ) :
      +  (any, options) => deserialize(serialize(any, options));
      +  /* c8 ignore stop */
      +
      +export {deserialize, serialize};
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/json.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/json.js
      new file mode 100644
      index 00000000000000..23eb95222d1a31
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/json.js
      @@ -0,0 +1,21 @@
      +/*! (c) Andrea Giammarchi - ISC */
      +
      +import {deserialize} from './deserialize.js';
      +import {serialize} from './serialize.js';
      +
      +const {parse: $parse, stringify: $stringify} = JSON;
      +const options = {json: true, lossy: true};
      +
      +/**
      + * Revive a previously stringified structured clone.
      + * @param {string} str previously stringified data as string.
      + * @returns {any} whatever was previously stringified as clone.
      + */
      +export const parse = str => deserialize($parse(str));
      +
      +/**
      + * Represent a structured clone value as string.
      + * @param {any} any some clone-able value to stringify.
      + * @returns {string} the value stringified.
      + */
      +export const stringify = any => $stringify(serialize(any, options));
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/serialize.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/serialize.js
      new file mode 100644
      index 00000000000000..8e098ddca777a7
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/serialize.js
      @@ -0,0 +1,161 @@
      +import {
      +  VOID, PRIMITIVE,
      +  ARRAY, OBJECT,
      +  DATE, REGEXP, MAP, SET,
      +  ERROR, BIGINT
      +} from './types.js';
      +
      +const EMPTY = '';
      +
      +const {toString} = {};
      +const {keys} = Object;
      +
      +const typeOf = value => {
      +  const type = typeof value;
      +  if (type !== 'object' || !value)
      +    return [PRIMITIVE, type];
      +
      +  const asString = toString.call(value).slice(8, -1);
      +  switch (asString) {
      +    case 'Array':
      +      return [ARRAY, EMPTY];
      +    case 'Object':
      +      return [OBJECT, EMPTY];
      +    case 'Date':
      +      return [DATE, EMPTY];
      +    case 'RegExp':
      +      return [REGEXP, EMPTY];
      +    case 'Map':
      +      return [MAP, EMPTY];
      +    case 'Set':
      +      return [SET, EMPTY];
      +  }
      +
      +  if (asString.includes('Array'))
      +    return [ARRAY, asString];
      +
      +  if (asString.includes('Error'))
      +    return [ERROR, asString];
      +
      +  return [OBJECT, asString];
      +};
      +
      +const shouldSkip = ([TYPE, type]) => (
      +  TYPE === PRIMITIVE &&
      +  (type === 'function' || type === 'symbol')
      +);
      +
      +const serializer = (strict, json, $, _) => {
      +
      +  const as = (out, value) => {
      +    const index = _.push(out) - 1;
      +    $.set(value, index);
      +    return index;
      +  };
      +
      +  const pair = value => {
      +    if ($.has(value))
      +      return $.get(value);
      +
      +    let [TYPE, type] = typeOf(value);
      +    switch (TYPE) {
      +      case PRIMITIVE: {
      +        let entry = value;
      +        switch (type) {
      +          case 'bigint':
      +            TYPE = BIGINT;
      +            entry = value.toString();
      +            break;
      +          case 'function':
      +          case 'symbol':
      +            if (strict)
      +              throw new TypeError('unable to serialize ' + type);
      +            entry = null;
      +            break;
      +          case 'undefined':
      +            return as([VOID], value);
      +        }
      +        return as([TYPE, entry], value);
      +      }
      +      case ARRAY: {
      +        if (type)
      +          return as([type, [...value]], value);
      +  
      +        const arr = [];
      +        const index = as([TYPE, arr], value);
      +        for (const entry of value)
      +          arr.push(pair(entry));
      +        return index;
      +      }
      +      case OBJECT: {
      +        if (type) {
      +          switch (type) {
      +            case 'BigInt':
      +              return as([type, value.toString()], value);
      +            case 'Boolean':
      +            case 'Number':
      +            case 'String':
      +              return as([type, value.valueOf()], value);
      +          }
      +        }
      +
      +        if (json && ('toJSON' in value))
      +          return pair(value.toJSON());
      +
      +        const entries = [];
      +        const index = as([TYPE, entries], value);
      +        for (const key of keys(value)) {
      +          if (strict || !shouldSkip(typeOf(value[key])))
      +            entries.push([pair(key), pair(value[key])]);
      +        }
      +        return index;
      +      }
      +      case DATE:
      +        return as([TYPE, value.toISOString()], value);
      +      case REGEXP: {
      +        const {source, flags} = value;
      +        return as([TYPE, {source, flags}], value);
      +      }
      +      case MAP: {
      +        const entries = [];
      +        const index = as([TYPE, entries], value);
      +        for (const [key, entry] of value) {
      +          if (strict || !(shouldSkip(typeOf(key)) || shouldSkip(typeOf(entry))))
      +            entries.push([pair(key), pair(entry)]);
      +        }
      +        return index;
      +      }
      +      case SET: {
      +        const entries = [];
      +        const index = as([TYPE, entries], value);
      +        for (const entry of value) {
      +          if (strict || !shouldSkip(typeOf(entry)))
      +            entries.push(pair(entry));
      +        }
      +        return index;
      +      }
      +    }
      +
      +    const {message} = value;
      +    return as([TYPE, {name: type, message}], value);
      +  };
      +
      +  return pair;
      +};
      +
      +/**
      + * @typedef {Array} Record a type representation
      + */
      +
      +/**
      + * Returns an array of serialized Records.
      + * @param {any} value a serializable value.
      + * @param {{json?: boolean, lossy?: boolean}?} options an object with a `lossy` or `json` property that,
      + *  if `true`, will not throw errors on incompatible types, and behave more
      + *  like JSON stringify would behave. Symbol and Function will be discarded.
      + * @returns {Record[]}
      + */
      + export const serialize = (value, {json, lossy} = {}) => {
      +  const _ = [];
      +  return serializer(!(json || lossy), !!json, new Map, _)(value), _;
      +};
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/types.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/types.js
      new file mode 100644
      index 00000000000000..50e60ca067667f
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/types.js
      @@ -0,0 +1,11 @@
      +export const VOID       = -1;
      +export const PRIMITIVE  = 0;
      +export const ARRAY      = 1;
      +export const OBJECT     = 2;
      +export const DATE       = 3;
      +export const REGEXP     = 4;
      +export const MAP        = 5;
      +export const SET        = 6;
      +export const ERROR      = 7;
      +export const BIGINT     = 8;
      +// export const SYMBOL = 9;
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/package.json b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/package.json
      new file mode 100644
      index 00000000000000..ba9f84fa55198c
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/package.json
      @@ -0,0 +1,53 @@
      +{
      +  "name": "@ungap/structured-clone",
      +  "version": "1.2.0",
      +  "description": "A structuredClone polyfill",
      +  "main": "./cjs/index.js",
      +  "scripts": {
      +    "build": "npm run cjs && npm run rollup:json && npm run test",
      +    "cjs": "ascjs esm cjs",
      +    "coverage": "c8 report --reporter=text-lcov > ./coverage/lcov.info",
      +    "rollup:json": "rollup --config rollup/json.config.js",
      +    "test": "c8 node test/index.js"
      +  },
      +  "keywords": [
      +    "recursion",
      +    "structured",
      +    "clone",
      +    "algorithm"
      +  ],
      +  "author": "Andrea Giammarchi",
      +  "license": "ISC",
      +  "devDependencies": {
      +    "@rollup/plugin-node-resolve": "^15.0.2",
      +    "@rollup/plugin-terser": "^0.4.1",
      +    "ascjs": "^5.0.1",
      +    "c8": "^7.13.0",
      +    "coveralls": "^3.1.1",
      +    "rollup": "^3.21.4"
      +  },
      +  "module": "./esm/index.js",
      +  "type": "module",
      +  "exports": {
      +    ".": {
      +      "import": "./esm/index.js",
      +      "default": "./cjs/index.js"
      +    },
      +    "./json": {
      +      "import": "./esm/json.js",
      +      "default": "./cjs/json.js"
      +    },
      +    "./package.json": "./package.json"
      +  },
      +  "directories": {
      +    "test": "test"
      +  },
      +  "repository": {
      +    "type": "git",
      +    "url": "git+https://github.com/ungap/structured-clone.git"
      +  },
      +  "bugs": {
      +    "url": "https://github.com/ungap/structured-clone/issues"
      +  },
      +  "homepage": "https://github.com/ungap/structured-clone#readme"
      +}
      diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/structured-json.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/structured-json.js
      new file mode 100644
      index 00000000000000..44cfe596be509b
      --- /dev/null
      +++ b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/structured-json.js
      @@ -0,0 +1 @@
      +var StructuredJSON=function(e){"use strict";const r="object"==typeof self?self:globalThis,t=e=>((e,t)=>{const s=(r,t)=>(e.set(t,r),r),n=c=>{if(e.has(c))return e.get(c);const[o,a]=t[c];switch(o){case 0:case-1:return s(a,c);case 1:{const e=s([],c);for(const r of a)e.push(n(r));return e}case 2:{const e=s({},c);for(const[r,t]of a)e[n(r)]=n(t);return e}case 3:return s(new Date(a),c);case 4:{const{source:e,flags:r}=a;return s(new RegExp(e,r),c)}case 5:{const e=s(new Map,c);for(const[r,t]of a)e.set(n(r),n(t));return e}case 6:{const e=s(new Set,c);for(const r of a)e.add(n(r));return e}case 7:{const{name:e,message:t}=a;return s(new r[e](t),c)}case 8:return s(BigInt(a),c);case"BigInt":return s(Object(BigInt(a)),c)}return s(new r[o](a),c)};return n})(new Map,e)(0),s="",{toString:n}={},{keys:c}=Object,o=e=>{const r=typeof e;if("object"!==r||!e)return[0,r];const t=n.call(e).slice(8,-1);switch(t){case"Array":return[1,s];case"Object":return[2,s];case"Date":return[3,s];case"RegExp":return[4,s];case"Map":return[5,s];case"Set":return[6,s]}return t.includes("Array")?[1,t]:t.includes("Error")?[7,t]:[2,t]},a=([e,r])=>0===e&&("function"===r||"symbol"===r),u=(e,{json:r,lossy:t}={})=>{const s=[];return((e,r,t,s)=>{const n=(e,r)=>{const n=s.push(e)-1;return t.set(r,n),n},u=s=>{if(t.has(s))return t.get(s);let[i,f]=o(s);switch(i){case 0:{let r=s;switch(f){case"bigint":i=8,r=s.toString();break;case"function":case"symbol":if(e)throw new TypeError("unable to serialize "+f);r=null;break;case"undefined":return n([-1],s)}return n([i,r],s)}case 1:{if(f)return n([f,[...s]],s);const e=[],r=n([i,e],s);for(const r of s)e.push(u(r));return r}case 2:{if(f)switch(f){case"BigInt":return n([f,s.toString()],s);case"Boolean":case"Number":case"String":return n([f,s.valueOf()],s)}if(r&&"toJSON"in s)return u(s.toJSON());const t=[],l=n([i,t],s);for(const r of c(s))!e&&a(o(s[r]))||t.push([u(r),u(s[r])]);return l}case 3:return n([i,s.toISOString()],s);case 4:{const{source:e,flags:r}=s;return n([i,{source:e,flags:r}],s)}case 5:{const r=[],t=n([i,r],s);for(const[t,n]of s)(e||!a(o(t))&&!a(o(n)))&&r.push([u(t),u(n)]);return t}case 6:{const r=[],t=n([i,r],s);for(const t of s)!e&&a(o(t))||r.push(u(t));return t}}const{message:l}=s;return n([i,{name:f,message:l}],s)};return u})(!(r||t),!!r,new Map,s)(e),s},{parse:i,stringify:f}=JSON,l={json:!0,lossy:!0};return e.parse=e=>t(i(e)),e.stringify=e=>f(u(e,l)),e}({});
      diff --git a/tools/node_modules/eslint/node_modules/acorn/dist/acorn.d.mts b/tools/node_modules/eslint/node_modules/acorn/dist/acorn.d.mts
      index 49ae59fd95776a..6ad58121195c96 100644
      --- a/tools/node_modules/eslint/node_modules/acorn/dist/acorn.d.mts
      +++ b/tools/node_modules/eslint/node_modules/acorn/dist/acorn.d.mts
      @@ -1,26 +1,857 @@
      -export {
      -  Node,
      -  Parser,
      -  Position,
      -  SourceLocation,
      -  TokContext,
      -  Token,
      -  TokenType,
      -  defaultOptions,
      -  getLineInfo,
      -  isIdentifierChar,
      -  isIdentifierStart,
      -  isNewLine,
      -  lineBreak,
      -  lineBreakG,
      -  parse,
      -  parseExpressionAt,
      -  tokContexts,
      -  tokTypes,
      -  tokenizer,
      -  version,
      -  AbstractToken,
      -  Comment,
      -  Options,
      -  ecmaVersion,
      -} from "./acorn.js";
      +export interface Node {
      +  start: number
      +  end: number
      +  type: string
      +  range?: [number, number]
      +  loc?: SourceLocation | null
      +}
      +
      +export interface SourceLocation {
      +  source?: string | null
      +  start: Position
      +  end: Position
      +}
      +
      +export interface Position {
      +  /** 1-based */
      +  line: number
      +  /** 0-based */
      +  column: number
      +}
      +
      +export interface Identifier extends Node {
      +  type: "Identifier"
      +  name: string
      +}
      +
      +export interface Literal extends Node {
      +  type: "Literal"
      +  value?: string | boolean | null | number | RegExp | bigint
      +  raw?: string
      +  regex?: {
      +    pattern: string
      +    flags: string
      +  }
      +  bigint?: string
      +}
      +
      +export interface Program extends Node {
      +  type: "Program"
      +  body: Array
      +  sourceType: "script" | "module"
      +}
      +
      +export interface Function extends Node {
      +  id?: Identifier | null
      +  params: Array
      +  body: BlockStatement | Expression
      +  generator: boolean
      +  expression: boolean
      +  async: boolean
      +}
      +
      +export interface ExpressionStatement extends Node {
      +  type: "ExpressionStatement"
      +  expression: Expression | Literal
      +  directive?: string
      +}
      +
      +export interface BlockStatement extends Node {
      +  type: "BlockStatement"
      +  body: Array
      +}
      +
      +export interface EmptyStatement extends Node {
      +  type: "EmptyStatement"
      +}
      +
      +export interface DebuggerStatement extends Node {
      +  type: "DebuggerStatement"
      +}
      +
      +export interface WithStatement extends Node {
      +  type: "WithStatement"
      +  object: Expression
      +  body: Statement
      +}
      +
      +export interface ReturnStatement extends Node {
      +  type: "ReturnStatement"
      +  argument?: Expression | null
      +}
      +
      +export interface LabeledStatement extends Node {
      +  type: "LabeledStatement"
      +  label: Identifier
      +  body: Statement
      +}
      +
      +export interface BreakStatement extends Node {
      +  type: "BreakStatement"
      +  label?: Identifier | null
      +}
      +
      +export interface ContinueStatement extends Node {
      +  type: "ContinueStatement"
      +  label?: Identifier | null
      +}
      +
      +export interface IfStatement extends Node {
      +  type: "IfStatement"
      +  test: Expression
      +  consequent: Statement
      +  alternate?: Statement | null
      +}
      +
      +export interface SwitchStatement extends Node {
      +  type: "SwitchStatement"
      +  discriminant: Expression
      +  cases: Array
      +}
      +
      +export interface SwitchCase extends Node {
      +  type: "SwitchCase"
      +  test?: Expression | null
      +  consequent: Array
      +}
      +
      +export interface ThrowStatement extends Node {
      +  type: "ThrowStatement"
      +  argument: Expression
      +}
      +
      +export interface TryStatement extends Node {
      +  type: "TryStatement"
      +  block: BlockStatement
      +  handler?: CatchClause | null
      +  finalizer?: BlockStatement | null
      +}
      +
      +export interface CatchClause extends Node {
      +  type: "CatchClause"
      +  param?: Pattern | null
      +  body: BlockStatement
      +}
      +
      +export interface WhileStatement extends Node {
      +  type: "WhileStatement"
      +  test: Expression
      +  body: Statement
      +}
      +
      +export interface DoWhileStatement extends Node {
      +  type: "DoWhileStatement"
      +  body: Statement
      +  test: Expression
      +}
      +
      +export interface ForStatement extends Node {
      +  type: "ForStatement"
      +  init?: VariableDeclaration | Expression | null
      +  test?: Expression | null
      +  update?: Expression | null
      +  body: Statement
      +}
      +
      +export interface ForInStatement extends Node {
      +  type: "ForInStatement"
      +  left: VariableDeclaration | Pattern
      +  right: Expression
      +  body: Statement
      +}
      +
      +export interface FunctionDeclaration extends Function {
      +  type: "FunctionDeclaration"
      +  id: Identifier
      +  body: BlockStatement
      +}
      +
      +export interface VariableDeclaration extends Node {
      +  type: "VariableDeclaration"
      +  declarations: Array
      +  kind: "var" | "let" | "const"
      +}
      +
      +export interface VariableDeclarator extends Node {
      +  type: "VariableDeclarator"
      +  id: Pattern
      +  init?: Expression | null
      +}
      +
      +export interface ThisExpression extends Node {
      +  type: "ThisExpression"
      +}
      +
      +export interface ArrayExpression extends Node {
      +  type: "ArrayExpression"
      +  elements: Array
      +}
      +
      +export interface ObjectExpression extends Node {
      +  type: "ObjectExpression"
      +  properties: Array
      +}
      +
      +export interface Property extends Node {
      +  type: "Property"
      +  key: Expression
      +  value: Expression
      +  kind: "init" | "get" | "set"
      +  method: boolean
      +  shorthand: boolean
      +  computed: boolean
      +}
      +
      +export interface FunctionExpression extends Function {
      +  type: "FunctionExpression"
      +  body: BlockStatement
      +}
      +
      +export interface UnaryExpression extends Node {
      +  type: "UnaryExpression"
      +  operator: UnaryOperator
      +  prefix: boolean
      +  argument: Expression
      +}
      +
      +export type UnaryOperator = "-" | "+" | "!" | "~" | "typeof" | "void" | "delete"
      +
      +export interface UpdateExpression extends Node {
      +  type: "UpdateExpression"
      +  operator: UpdateOperator
      +  argument: Expression
      +  prefix: boolean
      +}
      +
      +export type UpdateOperator = "++" | "--"
      +
      +export interface BinaryExpression extends Node {
      +  type: "BinaryExpression"
      +  operator: BinaryOperator
      +  left: Expression | PrivateIdentifier
      +  right: Expression
      +}
      +
      +export type BinaryOperator = "==" | "!=" | "===" | "!==" | "<" | "<=" | ">" | ">=" | "<<" | ">>" | ">>>" | "+" | "-" | "*" | "/" | "%" | "|" | "^" | "&" | "in" | "instanceof" | "**"
      +
      +export interface AssignmentExpression extends Node {
      +  type: "AssignmentExpression"
      +  operator: AssignmentOperator
      +  left: Pattern
      +  right: Expression
      +}
      +
      +export type AssignmentOperator = "=" | "+=" | "-=" | "*=" | "/=" | "%=" | "<<=" | ">>=" | ">>>=" | "|=" | "^=" | "&=" | "**=" | "||=" | "&&=" | "??="
      +
      +export interface LogicalExpression extends Node {
      +  type: "LogicalExpression"
      +  operator: LogicalOperator
      +  left: Expression
      +  right: Expression
      +}
      +
      +export type LogicalOperator = "||" | "&&" | "??"
      +
      +export interface MemberExpression extends Node {
      +  type: "MemberExpression"
      +  object: Expression | Super
      +  property: Expression | PrivateIdentifier
      +  computed: boolean
      +  optional: boolean
      +}
      +
      +export interface ConditionalExpression extends Node {
      +  type: "ConditionalExpression"
      +  test: Expression
      +  alternate: Expression
      +  consequent: Expression
      +}
      +
      +export interface CallExpression extends Node {
      +  type: "CallExpression"
      +  callee: Expression | Super
      +  arguments: Array
      +  optional: boolean
      +}
      +
      +export interface NewExpression extends Node {
      +  type: "NewExpression"
      +  callee: Expression
      +  arguments: Array
      +}
      +
      +export interface SequenceExpression extends Node {
      +  type: "SequenceExpression"
      +  expressions: Array
      +}
      +
      +export interface ForOfStatement extends Node {
      +  type: "ForOfStatement"
      +  left: VariableDeclaration | Pattern
      +  right: Expression
      +  body: Statement
      +  await: boolean
      +}
      +
      +export interface Super extends Node {
      +  type: "Super"
      +}
      +
      +export interface SpreadElement extends Node {
      +  type: "SpreadElement"
      +  argument: Expression
      +}
      +
      +export interface ArrowFunctionExpression extends Function {
      +  type: "ArrowFunctionExpression"
      +}
      +
      +export interface YieldExpression extends Node {
      +  type: "YieldExpression"
      +  argument?: Expression | null
      +  delegate: boolean
      +}
      +
      +export interface TemplateLiteral extends Node {
      +  type: "TemplateLiteral"
      +  quasis: Array
      +  expressions: Array
      +}
      +
      +export interface TaggedTemplateExpression extends Node {
      +  type: "TaggedTemplateExpression"
      +  tag: Expression
      +  quasi: TemplateLiteral
      +}
      +
      +export interface TemplateElement extends Node {
      +  type: "TemplateElement"
      +  tail: boolean
      +  value: {
      +    cooked?: string | null
      +    raw: string
      +  }
      +}
      +
      +export interface AssignmentProperty extends Node {
      +  type: "Property"
      +  key: Expression
      +  value: Pattern
      +  kind: "init"
      +  method: false
      +  shorthand: boolean
      +  computed: boolean
      +}
      +
      +export interface ObjectPattern extends Node {
      +  type: "ObjectPattern"
      +  properties: Array
      +}
      +
      +export interface ArrayPattern extends Node {
      +  type: "ArrayPattern"
      +  elements: Array
      +}
      +
      +export interface RestElement extends Node {
      +  type: "RestElement"
      +  argument: Pattern
      +}
      +
      +export interface AssignmentPattern extends Node {
      +  type: "AssignmentPattern"
      +  left: Pattern
      +  right: Expression
      +}
      +
      +export interface Class extends Node {
      +  id?: Identifier | null
      +  superClass?: Expression | null
      +  body: ClassBody
      +}
      +
      +export interface ClassBody extends Node {
      +  type: "ClassBody"
      +  body: Array
      +}
      +
      +export interface MethodDefinition extends Node {
      +  type: "MethodDefinition"
      +  key: Expression | PrivateIdentifier
      +  value: FunctionExpression
      +  kind: "constructor" | "method" | "get" | "set"
      +  computed: boolean
      +  static: boolean
      +}
      +
      +export interface ClassDeclaration extends Class {
      +  type: "ClassDeclaration"
      +  id: Identifier
      +}
      +
      +export interface ClassExpression extends Class {
      +  type: "ClassExpression"
      +}
      +
      +export interface MetaProperty extends Node {
      +  type: "MetaProperty"
      +  meta: Identifier
      +  property: Identifier
      +}
      +
      +export interface ImportDeclaration extends Node {
      +  type: "ImportDeclaration"
      +  specifiers: Array
      +  source: Literal
      +}
      +
      +export interface ImportSpecifier extends Node {
      +  type: "ImportSpecifier"
      +  imported: Identifier | Literal
      +  local: Identifier
      +}
      +
      +export interface ImportDefaultSpecifier extends Node {
      +  type: "ImportDefaultSpecifier"
      +  local: Identifier
      +}
      +
      +export interface ImportNamespaceSpecifier extends Node {
      +  type: "ImportNamespaceSpecifier"
      +  local: Identifier
      +}
      +
      +export interface ExportNamedDeclaration extends Node {
      +  type: "ExportNamedDeclaration"
      +  declaration?: Declaration | null
      +  specifiers: Array
      +  source?: Literal | null
      +}
      +
      +export interface ExportSpecifier extends Node {
      +  type: "ExportSpecifier"
      +  exported: Identifier | Literal
      +  local: Identifier | Literal
      +}
      +
      +export interface AnonymousFunctionDeclaration extends Function {
      +  type: "FunctionDeclaration"
      +  id: null
      +  body: BlockStatement
      +}
      +
      +export interface AnonymousClassDeclaration extends Class {
      +  type: "ClassDeclaration"
      +  id: null
      +}
      +
      +export interface ExportDefaultDeclaration extends Node {
      +  type: "ExportDefaultDeclaration"
      +  declaration: AnonymousFunctionDeclaration | FunctionDeclaration | AnonymousClassDeclaration | ClassDeclaration | Expression
      +}
      +
      +export interface ExportAllDeclaration extends Node {
      +  type: "ExportAllDeclaration"
      +  source: Literal
      +  exported?: Identifier | Literal | null
      +}
      +
      +export interface AwaitExpression extends Node {
      +  type: "AwaitExpression"
      +  argument: Expression
      +}
      +
      +export interface ChainExpression extends Node {
      +  type: "ChainExpression"
      +  expression: MemberExpression | CallExpression
      +}
      +
      +export interface ImportExpression extends Node {
      +  type: "ImportExpression"
      +  source: Expression
      +}
      +
      +export interface ParenthesizedExpression extends Node {
      +  type: "ParenthesizedExpression"
      +  expression: Expression
      +}
      +
      +export interface PropertyDefinition extends Node {
      +  type: "PropertyDefinition"
      +  key: Expression | PrivateIdentifier
      +  value?: Expression | null
      +  computed: boolean
      +  static: boolean
      +}
      +
      +export interface PrivateIdentifier extends Node {
      +  type: "PrivateIdentifier"
      +  name: string
      +}
      +
      +export interface StaticBlock extends Node {
      +  type: "StaticBlock"
      +  body: Array
      +}
      +
      +export type Statement = 
      +| ExpressionStatement
      +| BlockStatement
      +| EmptyStatement
      +| DebuggerStatement
      +| WithStatement
      +| ReturnStatement
      +| LabeledStatement
      +| BreakStatement
      +| ContinueStatement
      +| IfStatement
      +| SwitchStatement
      +| ThrowStatement
      +| TryStatement
      +| WhileStatement
      +| DoWhileStatement
      +| ForStatement
      +| ForInStatement
      +| ForOfStatement
      +| Declaration
      +
      +export type Declaration = 
      +| FunctionDeclaration
      +| VariableDeclaration
      +| ClassDeclaration
      +
      +export type Expression = 
      +| Identifier
      +| Literal
      +| ThisExpression
      +| ArrayExpression
      +| ObjectExpression
      +| FunctionExpression
      +| UnaryExpression
      +| UpdateExpression
      +| BinaryExpression
      +| AssignmentExpression
      +| LogicalExpression
      +| MemberExpression
      +| ConditionalExpression
      +| CallExpression
      +| NewExpression
      +| SequenceExpression
      +| ArrowFunctionExpression
      +| YieldExpression
      +| TemplateLiteral
      +| TaggedTemplateExpression
      +| ClassExpression
      +| MetaProperty
      +| AwaitExpression
      +| ChainExpression
      +| ImportExpression
      +| ParenthesizedExpression
      +
      +export type Pattern = 
      +| Identifier
      +| MemberExpression
      +| ObjectPattern
      +| ArrayPattern
      +| RestElement
      +| AssignmentPattern
      +
      +export type ModuleDeclaration = 
      +| ImportDeclaration
      +| ExportNamedDeclaration
      +| ExportDefaultDeclaration
      +| ExportAllDeclaration
      +
      +export type AnyNode = Statement | Expression | Declaration | ModuleDeclaration | Literal | Program | SwitchCase | CatchClause | Property | Super | SpreadElement | TemplateElement | AssignmentProperty | ObjectPattern | ArrayPattern | RestElement | AssignmentPattern | ClassBody | MethodDefinition | MetaProperty | ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ExportSpecifier | AnonymousFunctionDeclaration | AnonymousClassDeclaration | PropertyDefinition | PrivateIdentifier | StaticBlock
      +
      +export function parse(input: string, options: Options): Program
      +
      +export function parseExpressionAt(input: string, pos: number, options: Options): Expression
      +
      +export function tokenizer(input: string, options: Options): {
      +  getToken(): Token
      +  [Symbol.iterator](): Iterator
      +}
      +
      +export type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | "latest"
      +
      +export interface Options {
      +  /**
      +   * `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), 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: ecmaVersion
      +
      +  /**
      +   * `sourceType` indicates the mode the code should be parsed in.
      +   * Can be either `"script"` or `"module"`. This influences global
      +   * strict mode and parsing of `import` and `export` declarations.
      +   */
      +  sourceType?: "script" | "module"
      +
      +  /**
      +   * a callback that will be called when a semicolon is automatically inserted.
      +   * @param lastTokEnd the position of the comma as an offset
      +   * @param lastTokEndLoc location if {@link locations} is enabled
      +   */
      +  onInsertedSemicolon?: (lastTokEnd: number, lastTokEndLoc?: Position) => void
      +
      +  /**
      +   * similar to `onInsertedSemicolon`, but for trailing commas
      +   * @param lastTokEnd the position of the comma as an offset
      +   * @param lastTokEndLoc location if `locations` is enabled
      +   */
      +  onTrailingComma?: (lastTokEnd: number, lastTokEndLoc?: Position) => void
      +
      +  /**
      +   * By default, reserved words are only enforced if ecmaVersion >= 5.
      +   * Set `allowReserved` to a boolean value to explicitly turn this on
      +   * an off. When this option has the value "never", reserved words
      +   * and keywords can also not be used as property names.
      +   */
      +  allowReserved?: boolean | "never"
      +
      +  /** 
      +   * When enabled, a return at the top level is not considered an error.
      +   */
      +  allowReturnOutsideFunction?: boolean
      +
      +  /**
      +   * When enabled, import/export statements are not constrained to
      +   * appearing at the top of the program, and an import.meta expression
      +   * in a script isn't considered an error.
      +   */
      +  allowImportExportEverywhere?: boolean
      +
      +  /**
      +   * By default, `await` identifiers are allowed to appear at the top-level scope only if {@link ecmaVersion} >= 2022.
      +   * When enabled, await identifiers are allowed to appear at the top-level scope,
      +   * but they are still not allowed in non-async functions.
      +   */
      +  allowAwaitOutsideFunction?: boolean
      +
      +  /**
      +   * When enabled, super identifiers are not constrained to
      +   * appearing in methods and do not raise an error when they appear elsewhere.
      +   */
      +  allowSuperOutsideMethod?: boolean
      +
      +  /**
      +   * When enabled, hashbang directive in the beginning of file is
      +   * allowed and treated as a line comment. Enabled by default when
      +   * {@link ecmaVersion} >= 2023.
      +   */
      +  allowHashBang?: boolean
      +
      +  /**
      +   * By default, the parser will verify that private properties are
      +   * only used in places where they are valid and have been declared.
      +   * Set this to false to turn such checks off.
      +   */
      +  checkPrivateFields?: boolean
      +
      +  /**
      +   * When `locations` is on, `loc` properties holding objects with
      +   * `start` and `end` properties as {@link Position} objects will be attached to the
      +   * nodes.
      +   */
      +  locations?: boolean
      +
      +  /**
      +   * a callback that will cause Acorn to call that export function with object in the same
      +   * format as tokens returned from `tokenizer().getToken()`. Note
      +   * that you are not allowed to call the parser from the
      +   * callback—that will corrupt its internal state.
      +   */
      +  onToken?: ((token: Token) => void) | Token[]
      +
      +
      +  /**
      +   * This takes a export function or an array.
      +   * 
      +   * When a export function is passed, Acorn will call that export function with `(block, text, start,
      +   * end)` parameters whenever a comment is skipped. `block` is a
      +   * boolean indicating whether this is a block (`/* *\/`) comment,
      +   * `text` is the content of the comment, and `start` and `end` are
      +   * character offsets that denote the start and end of the comment.
      +   * When the {@link locations} option is on, two more parameters are
      +   * passed, the full locations of {@link Position} export type of the start and
      +   * end of the comments.
      +   * 
      +   * When a array is passed, each found comment of {@link Comment} export type is pushed to the array.
      +   * 
      +   * Note that you are not allowed to call the
      +   * parser from the callback—that will corrupt its internal state.
      +   */
      +  onComment?: ((
      +    isBlock: boolean, text: string, start: number, end: number, startLoc?: Position,
      +    endLoc?: Position
      +  ) => void) | Comment[]
      +
      +  /**
      +   * Nodes have their start and end characters offsets recorded in
      +   * `start` and `end` properties (directly on the node, rather than
      +   * the `loc` object, which holds line/column data. To also add a
      +   * [semi-standardized][range] `range` property holding a `[start,
      +   * end]` array with the same numbers, set the `ranges` option to
      +   * `true`.
      +   */
      +  ranges?: boolean
      +
      +  /**
      +   * It is possible to parse multiple files into a single AST by
      +   * passing the tree produced by parsing the first file as
      +   * `program` option in subsequent parses. This will add the
      +   * toplevel forms of the parsed file to the `Program` (top) node
      +   * of an existing parse tree.
      +   */
      +  program?: Node
      +
      +  /**
      +   * When {@link locations} is on, you can pass this to record the source
      +   * file in every node's `loc` object.
      +   */
      +  sourceFile?: string
      +
      +  /**
      +   * This value, if given, is stored in every node, whether {@link locations} is on or off.
      +   */
      +  directSourceFile?: string
      +
      +  /**
      +   * When enabled, parenthesized expressions are represented by
      +   * (non-standard) ParenthesizedExpression nodes
      +   */
      +  preserveParens?: boolean
      +}
      +  
      +export class Parser {
      +  options: Options
      +  input: string
      +  
      +  private constructor(options: Options, input: string, startPos?: number)
      +  parse(): Program
      +  
      +  static parse(input: string, options: Options): Program
      +  static parseExpressionAt(input: string, pos: number, options: Options): Expression
      +  static tokenizer(input: string, options: Options): {
      +    getToken(): Token
      +    [Symbol.iterator](): Iterator
      +  }
      +  static extend(...plugins: ((BaseParser: typeof Parser) => typeof Parser)[]): typeof Parser
      +}
      +
      +export const defaultOptions: Options
      +
      +export function getLineInfo(input: string, offset: number): Position
      +
      +export class TokenType {
      +  label: string
      +  keyword: string | undefined
      +}
      +
      +export const tokTypes: {
      +  num: TokenType
      +  regexp: TokenType
      +  string: TokenType
      +  name: TokenType
      +  privateId: TokenType
      +  eof: TokenType
      +
      +  bracketL: TokenType
      +  bracketR: TokenType
      +  braceL: TokenType
      +  braceR: TokenType
      +  parenL: TokenType
      +  parenR: TokenType
      +  comma: TokenType
      +  semi: TokenType
      +  colon: TokenType
      +  dot: TokenType
      +  question: TokenType
      +  questionDot: TokenType
      +  arrow: TokenType
      +  template: TokenType
      +  invalidTemplate: TokenType
      +  ellipsis: TokenType
      +  backQuote: TokenType
      +  dollarBraceL: TokenType
      +
      +  eq: TokenType
      +  assign: TokenType
      +  incDec: TokenType
      +  prefix: TokenType
      +  logicalOR: TokenType
      +  logicalAND: TokenType
      +  bitwiseOR: TokenType
      +  bitwiseXOR: TokenType
      +  bitwiseAND: TokenType
      +  equality: TokenType
      +  relational: TokenType
      +  bitShift: TokenType
      +  plusMin: TokenType
      +  modulo: TokenType
      +  star: TokenType
      +  slash: TokenType
      +  starstar: TokenType
      +  coalesce: TokenType
      +
      +  _break: TokenType
      +  _case: TokenType
      +  _catch: TokenType
      +  _continue: TokenType
      +  _debugger: TokenType
      +  _default: TokenType
      +  _do: TokenType
      +  _else: TokenType
      +  _finally: TokenType
      +  _for: TokenType
      +  _function: TokenType
      +  _if: TokenType
      +  _return: TokenType
      +  _switch: TokenType
      +  _throw: TokenType
      +  _try: TokenType
      +  _var: TokenType
      +  _const: TokenType
      +  _while: TokenType
      +  _with: TokenType
      +  _new: TokenType
      +  _this: TokenType
      +  _super: TokenType
      +  _class: TokenType
      +  _extends: TokenType
      +  _export: TokenType
      +  _import: TokenType
      +  _null: TokenType
      +  _true: TokenType
      +  _false: TokenType
      +  _in: TokenType
      +  _instanceof: TokenType
      +  _typeof: TokenType
      +  _void: TokenType
      +  _delete: TokenType
      +}
      +
      +export interface Comment {
      +  type: "Line" | "Block"
      +  value: string
      +  start: number
      +  end: number
      +  loc?: SourceLocation
      +  range?: [number, number]
      +}
      +
      +export class Token {
      +  type: TokenType
      +  start: number
      +  end: number
      +  loc?: SourceLocation
      +  range?: [number, number]
      +}
      +
      +export const version: string
      diff --git a/tools/node_modules/eslint/node_modules/acorn/dist/acorn.js b/tools/node_modules/eslint/node_modules/acorn/dist/acorn.js
      index 62e1aa63d0974f..de0096ec9a6a31 100644
      --- a/tools/node_modules/eslint/node_modules/acorn/dist/acorn.js
      +++ b/tools/node_modules/eslint/node_modules/acorn/dist/acorn.js
      @@ -8,10 +8,10 @@
         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, 81, 2, 71, 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, 3, 0, 158, 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, 10, 1, 2, 0, 49, 6, 4, 4, 14, 9, 5351, 0, 7, 14, 13835, 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, 101, 0, 161, 6, 10, 9, 357, 0, 62, 13, 499, 13, 983, 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, 20, 1, 64, 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, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 4026, 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, 16, 0, 30, 2, 3, 0, 15, 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, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 757, 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, 4153, 7, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938, 6, 4191];
      +  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, 20, 1, 64, 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, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 4026, 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, 16, 0, 30, 2, 3, 0, 15, 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, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 757, 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, 4153, 7, 221, 3, 5761, 15, 7472, 16, 621, 2467, 541, 1507, 4938, 6, 4191];
       
         // 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\u0cf3\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-\u0ece\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 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\u0cf3\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-\u0ece\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\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\u30fb\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\uff65";
       
         // 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";
      @@ -279,8 +279,10 @@
           toString.call(obj) === "[object Array]"
         ); });
       
      +  var regexpCache = Object.create(null);
      +
         function wordsRegexp(words) {
      -    return new RegExp("^(?:" + words.replace(/ /g, "|") + ")$")
      +    return regexpCache[words] || (regexpCache[words] = new RegExp("^(?:" + words.replace(/ /g, "|") + ")$"))
         }
       
         function codePointToString(code) {
      @@ -340,11 +342,11 @@
           // Can be either `"script"` or `"module"`. This influences global
           // strict mode and parsing of `import` and `export` declarations.
           sourceType: "script",
      -    // `onInsertedSemicolon` can be a callback that will be called
      -    // when a semicolon is automatically inserted. It will be passed
      -    // the position of the comma as an offset, and if `locations` is
      -    // enabled, it is given the location as a `{line, column}` object
      -    // as second argument.
      +    // `onInsertedSemicolon` can be a callback that will be called when
      +    // a semicolon is automatically inserted. It will be passed the
      +    // position of the inserted semicolon as an offset, and if
      +    // `locations` is enabled, it is given the location as a `{line,
      +    // column}` object as second argument.
           onInsertedSemicolon: null,
           // `onTrailingComma` is similar to `onInsertedSemicolon`, but for
           // trailing commas.
      @@ -397,6 +399,8 @@
           // passed, the full `{line, column}` locations of the start and
           // end of the comments. Note that you are not allowed to call the
           // parser from the callback—that will corrupt its internal state.
      +    // When this option has an array as value, objects representing the
      +    // comments are pushed to it.
           onComment: null,
           // Nodes have their start and end characters offsets recorded in
           // `start` and `end` properties (directly on the node, rather than
      @@ -1772,8 +1776,6 @@
             { this.checkPatternExport(exports, pat.left); }
           else if (type === "RestElement")
             { this.checkPatternExport(exports, pat.argument); }
      -    else if (type === "ParenthesizedExpression")
      -      { this.checkPatternExport(exports, pat.expression); }
         };
       
         pp$8.checkVariableExport = function(exports, decls) {
      @@ -2337,7 +2339,7 @@
             { this.exprAllowed = type.beforeExpr; }
         };
       
      -  // Used to handle egde cases when token context could not be inferred correctly during tokenization phase
      +  // Used to handle edge cases when token context could not be inferred correctly during tokenization phase
       
         pp$6.overrideContext = function(tokenCtx) {
           if (this.curContext() !== tokenCtx) {
      @@ -2390,6 +2392,11 @@
           this.exprAllowed = false;
         };
       
      +  types$1.colon.updateContext = function() {
      +    if (this.curContext().token === "function") { this.context.pop(); }
      +    this.exprAllowed = true;
      +  };
      +
         types$1.backQuote.updateContext = function() {
           if (this.curContext() === types.q_tmpl)
             { this.context.pop(); }
      @@ -3088,9 +3095,12 @@
         pp$5.parseNew = function() {
           if (this.containsEsc) { this.raiseRecoverable(this.start, "Escape sequence in keyword new"); }
           var node = this.startNode();
      -    var meta = this.parseIdent(true);
      -    if (this.options.ecmaVersion >= 6 && this.eat(types$1.dot)) {
      -      node.meta = meta;
      +    this.next();
      +    if (this.options.ecmaVersion >= 6 && this.type === types$1.dot) {
      +      var meta = this.startNodeAt(node.start, node.startLoc);
      +      meta.name = "new";
      +      node.meta = this.finishNode(meta, "Identifier");
      +      this.next();
             var containsEsc = this.containsEsc;
             node.property = this.parseIdent(true);
             if (node.property.name !== "target")
      @@ -3492,6 +3502,7 @@
               (this.lastTokEnd !== this.lastTokStart + 1 || this.input.charCodeAt(this.lastTokStart) !== 46)) {
               this.context.pop();
             }
      +      this.type = types$1.name;
           } else {
             this.unexpected();
           }
      @@ -5914,7 +5925,7 @@
         // [walk]: util/walk.js
       
       
      -  var version = "8.10.0";
      +  var version = "8.11.2";
       
         Parser.acorn = {
           Parser: Parser,
      diff --git a/tools/node_modules/eslint/node_modules/acorn/dist/acorn.mjs b/tools/node_modules/eslint/node_modules/acorn/dist/acorn.mjs
      index 119eff98d4ded6..01a49ef94da2a7 100644
      --- a/tools/node_modules/eslint/node_modules/acorn/dist/acorn.mjs
      +++ b/tools/node_modules/eslint/node_modules/acorn/dist/acorn.mjs
      @@ -2,10 +2,10 @@
       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, 81, 2, 71, 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, 3, 0, 158, 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, 10, 1, 2, 0, 49, 6, 4, 4, 14, 9, 5351, 0, 7, 14, 13835, 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, 101, 0, 161, 6, 10, 9, 357, 0, 62, 13, 499, 13, 983, 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, 20, 1, 64, 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, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 4026, 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, 16, 0, 30, 2, 3, 0, 15, 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, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 757, 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, 4153, 7, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938, 6, 4191];
      +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, 20, 1, 64, 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, 16, 0, 2, 12, 2, 33, 125, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1071, 18, 5, 4026, 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, 16, 0, 30, 2, 3, 0, 15, 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, 7, 5, 262, 61, 147, 44, 11, 6, 17, 0, 322, 29, 19, 43, 485, 27, 757, 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, 4153, 7, 221, 3, 5761, 15, 7472, 16, 621, 2467, 541, 1507, 4938, 6, 4191];
       
       // 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\u0cf3\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-\u0ece\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 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\u0cf3\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-\u0ece\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\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\u30fb\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\uff65";
       
       // 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";
      @@ -273,8 +273,10 @@ var isArray = Array.isArray || (function (obj) { return (
         toString.call(obj) === "[object Array]"
       ); });
       
      +var regexpCache = Object.create(null);
      +
       function wordsRegexp(words) {
      -  return new RegExp("^(?:" + words.replace(/ /g, "|") + ")$")
      +  return regexpCache[words] || (regexpCache[words] = new RegExp("^(?:" + words.replace(/ /g, "|") + ")$"))
       }
       
       function codePointToString(code) {
      @@ -334,11 +336,11 @@ var defaultOptions = {
         // Can be either `"script"` or `"module"`. This influences global
         // strict mode and parsing of `import` and `export` declarations.
         sourceType: "script",
      -  // `onInsertedSemicolon` can be a callback that will be called
      -  // when a semicolon is automatically inserted. It will be passed
      -  // the position of the comma as an offset, and if `locations` is
      -  // enabled, it is given the location as a `{line, column}` object
      -  // as second argument.
      +  // `onInsertedSemicolon` can be a callback that will be called when
      +  // a semicolon is automatically inserted. It will be passed the
      +  // position of the inserted semicolon as an offset, and if
      +  // `locations` is enabled, it is given the location as a `{line,
      +  // column}` object as second argument.
         onInsertedSemicolon: null,
         // `onTrailingComma` is similar to `onInsertedSemicolon`, but for
         // trailing commas.
      @@ -391,6 +393,8 @@ var defaultOptions = {
         // passed, the full `{line, column}` locations of the start and
         // end of the comments. Note that you are not allowed to call the
         // parser from the callback—that will corrupt its internal state.
      +  // When this option has an array as value, objects representing the
      +  // comments are pushed to it.
         onComment: null,
         // Nodes have their start and end characters offsets recorded in
         // `start` and `end` properties (directly on the node, rather than
      @@ -1766,8 +1770,6 @@ pp$8.checkPatternExport = function(exports, pat) {
           { this.checkPatternExport(exports, pat.left); }
         else if (type === "RestElement")
           { this.checkPatternExport(exports, pat.argument); }
      -  else if (type === "ParenthesizedExpression")
      -    { this.checkPatternExport(exports, pat.expression); }
       };
       
       pp$8.checkVariableExport = function(exports, decls) {
      @@ -2331,7 +2333,7 @@ pp$6.updateContext = function(prevType) {
           { this.exprAllowed = type.beforeExpr; }
       };
       
      -// Used to handle egde cases when token context could not be inferred correctly during tokenization phase
      +// Used to handle edge cases when token context could not be inferred correctly during tokenization phase
       
       pp$6.overrideContext = function(tokenCtx) {
         if (this.curContext() !== tokenCtx) {
      @@ -2384,6 +2386,11 @@ types$1._function.updateContext = types$1._class.updateContext = function(prevTy
         this.exprAllowed = false;
       };
       
      +types$1.colon.updateContext = function() {
      +  if (this.curContext().token === "function") { this.context.pop(); }
      +  this.exprAllowed = true;
      +};
      +
       types$1.backQuote.updateContext = function() {
         if (this.curContext() === types.q_tmpl)
           { this.context.pop(); }
      @@ -3082,9 +3089,12 @@ var empty = [];
       pp$5.parseNew = function() {
         if (this.containsEsc) { this.raiseRecoverable(this.start, "Escape sequence in keyword new"); }
         var node = this.startNode();
      -  var meta = this.parseIdent(true);
      -  if (this.options.ecmaVersion >= 6 && this.eat(types$1.dot)) {
      -    node.meta = meta;
      +  this.next();
      +  if (this.options.ecmaVersion >= 6 && this.type === types$1.dot) {
      +    var meta = this.startNodeAt(node.start, node.startLoc);
      +    meta.name = "new";
      +    node.meta = this.finishNode(meta, "Identifier");
      +    this.next();
           var containsEsc = this.containsEsc;
           node.property = this.parseIdent(true);
           if (node.property.name !== "target")
      @@ -3486,6 +3496,7 @@ pp$5.parseIdentNode = function() {
             (this.lastTokEnd !== this.lastTokStart + 1 || this.input.charCodeAt(this.lastTokStart) !== 46)) {
             this.context.pop();
           }
      +    this.type = types$1.name;
         } else {
           this.unexpected();
         }
      @@ -5908,7 +5919,7 @@ pp.readWord = function() {
       // [walk]: util/walk.js
       
       
      -var version = "8.10.0";
      +var version = "8.11.2";
       
       Parser.acorn = {
         Parser: Parser,
      diff --git a/tools/node_modules/eslint/node_modules/acorn/package.json b/tools/node_modules/eslint/node_modules/acorn/package.json
      index 4243aa3542deb3..430603dc8c3d57 100644
      --- a/tools/node_modules/eslint/node_modules/acorn/package.json
      +++ b/tools/node_modules/eslint/node_modules/acorn/package.json
      @@ -16,7 +16,7 @@
           ],
           "./package.json": "./package.json"
         },
      -  "version": "8.10.0",
      +  "version": "8.11.2",
         "engines": {
           "node": ">=0.4.0"
         },
      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 dfe73f2831b71b..b34f928c64e7c5 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,D:0,E:0.0259843,F:0.0649608,A:0,B:0.389765,NC:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","NC","J","D","E","F","A","B","","",""],E:"IE",F:{NC:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{"0":0.02721,"1":0.176865,"2":0.14512,"3":2.54867,C:0.004535,K:0.004535,L:0.004535,G:0.004535,M:0,N:0.004535,O:0.013605,P:0,Q:0.00907,R:0.00907,S:0.00907,T:0.00907,U:0.004535,V:0.00907,W:0.004535,X:0.004535,Y:0.004535,Z:0.00907,a:0,b:0.013605,c:0,d:0,e:0,f:0,g:0,h:0,i:0.013605,j:0,k:0,l:0,m:0,r:0,s:0,t:0,u:0.00907,v:0.00907,w:0.07256,x:0.013605,y:0.12698,z:0.12698,H:1.76865},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","r","s","t","u","v","w","x","y","z","0","1","2","3","H","","",""],E:"Edge",F:{"0":1683158400,"1":1685664000,"2":1689897600,"3":1692576000,C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,a:1622073600,b:1626912000,c:1630627200,d:1632441600,e:1634774400,f:1637539200,g:1641427200,h:1643932800,i:1646265600,j:1649635200,k:1651190400,l:1653955200,m:1655942400,r:1659657600,s:1661990400,t:1664755200,u:1666915200,v:1670198400,w:1673481600,x:1675900800,y:1678665600,z:1680825600,H:1694649600},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.01814,"1":0.01814,"2":0.31745,"3":0.113375,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,OC:0,"3B":0,I:0,J:0,D:0,E:0,F:0,A:0,B:0.00907,C:0,K:0,L:0,G:0,M:0,N:0,O:0,n:0,o:0,p:0,AB:0,BB:0,CB:0,DB:0,EB:0,FB:0,GB:0,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0,NB:0,OB:0,PB:0,QB:0.004535,RB:0.004535,SB:0.004535,TB:0,UB:0,VB:0.01814,WB:0,XB:0.00907,YB:0,ZB:0.05442,aB:0.00907,bB:0.00907,cB:0,dB:0.013605,eB:0,fB:0,"4B":0.004535,gB:0,"5B":0,hB:0,iB:0,jB:0,kB:0,lB:0,mB:0,nB:0,oB:0,pB:0,qB:0,rB:0.013605,q:0,sB:0,tB:0,uB:0,vB:0,wB:0.03628,P:0,Q:0,R:0,"6B":0,S:0.004535,T:0,U:0,V:0,W:0,X:0.004535,Y:0.004535,Z:0,a:0.004535,b:0,c:0,d:0.004535,e:0,f:0,g:0,h:0,i:0,j:0,k:0,l:0.11791,m:0.022675,r:0,s:0.004535,t:0.004535,u:0.004535,v:0.00907,w:0.00907,x:0.00907,y:0.00907,z:0.06349,H:1.56457,xB:0.13605,"7B":0,"8B":0,PC:0,QC:0,RC:0},B:"moz",C:["OC","3B","QC","RC","I","4","J","D","E","F","A","B","C","K","L","G","M","N","O","5","n","o","p","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","4B","gB","5B","hB","iB","jB","kB","lB","mB","nB","oB","pB","qB","rB","q","sB","tB","uB","vB","wB","P","Q","R","6B","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","r","s","t","u","v","w","x","y","z","0","1","2","3","H","xB","7B","8B","PC"],E:"Firefox",F:{"0":1683590400,"1":1686009600,"2":1688428800,"3":1690848000,"4":1308614400,"5":1357603200,"6":1372118400,"7":1375747200,"8":1379376000,"9":1386633600,OC:1161648000,"3B":1213660800,QC:1246320000,RC:1264032000,I:1300752000,J:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,G:1342483200,M:1346112000,N:1349740800,O:1353628800,n:1361232000,o:1364860800,p:1368489600,AB:1391472000,BB:1395100800,CB:1398729600,DB:1402358400,EB:1405987200,FB:1409616000,GB:1413244800,HB:1417392000,IB:1421107200,JB:1424736000,KB:1428278400,LB:1431475200,MB:1435881600,NB:1439251200,OB:1442880000,PB:1446508800,QB:1450137600,RB:1453852800,SB:1457395200,TB:1461628800,UB:1465257600,VB:1470096000,WB:1474329600,XB:1479168000,YB:1485216000,ZB:1488844800,aB:1492560000,bB:1497312000,cB:1502150400,dB:1506556800,eB:1510617600,fB:1516665600,"4B":1520985600,gB:1525824000,"5B":1529971200,hB:1536105600,iB:1540252800,jB:1544486400,kB:1548720000,lB:1552953600,mB:1558396800,nB:1562630400,oB:1567468800,pB:1571788800,qB:1575331200,rB:1578355200,q:1581379200,sB:1583798400,tB:1586304000,uB:1588636800,vB:1591056000,wB:1593475200,P:1595894400,Q:1598313600,R:1600732800,"6B":1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,a:1628553600,b:1630972800,c:1633392000,d:1635811200,e:1638835200,f:1641859200,g:1644364800,h:1646697600,i:1649116800,j:1651536000,k:1653955200,l:1656374400,m:1658793600,r:1661212800,s:1663632000,t:1666051200,u:1668470400,v:1670889600,w:1673913600,x:1676332800,y:1678752000,z:1681171200,H:1693267200,xB:1695686400,"7B":null,"8B":null,PC:null}},D:{A:{"0":0.15419,"1":0.829905,"2":1.44213,"3":15.3691,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,I:0,J:0,D:0,E:0,F:0,A:0,B:0,C:0,K:0,L:0,G:0,M:0,N:0,O:0,n:0,o:0,p:0,AB:0,BB:0,CB:0,DB:0,EB:0,FB:0,GB:0,HB:0.004535,IB:0,JB:0,KB:0,LB:0.013605,MB:0,NB:0,OB:0,PB:0,QB:0,RB:0,SB:0,TB:0,UB:0.00907,VB:0.01814,WB:0.03628,XB:0.00907,YB:0.004535,ZB:0,aB:0.00907,bB:0,cB:0.00907,dB:0.031745,eB:0.00907,fB:0.00907,"4B":0,gB:0.02721,"5B":0.004535,hB:0.004535,iB:0.004535,jB:0,kB:0.013605,lB:0.022675,mB:0.004535,nB:0.031745,oB:0.06349,pB:0.077095,qB:0.022675,rB:0.031745,q:0.040815,sB:0.040815,tB:0.040815,uB:0.104305,vB:0.03628,wB:0.04535,P:0.204075,Q:0.068025,R:0.06349,S:0.113375,T:0.03628,U:0.086165,V:0.0907,W:0.09977,X:0.058955,Y:0.04535,Z:0.068025,a:0.07256,b:0.02721,c:0.131515,d:0.02721,e:0.013605,f:0.022675,g:0.02721,h:0.068025,i:0.04535,j:0.031745,k:0.03628,l:0.040815,m:0.21768,r:0.04535,s:0.049885,t:0.05442,u:0.17233,v:0.213145,w:1.78679,x:0.185935,y:0.32652,z:0.24489,H:3.86382,xB:0.022675,"7B":0.013605,"8B":0},B:"webkit",C:["","","","","","","I","4","J","D","E","F","A","B","C","K","L","G","M","N","O","5","n","o","p","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","4B","gB","5B","hB","iB","jB","kB","lB","mB","nB","oB","pB","qB","rB","q","sB","tB","uB","vB","wB","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","r","s","t","u","v","w","x","y","z","0","1","2","3","H","xB","7B","8B"],E:"Chrome",F:{"0":1682985600,"1":1685404800,"2":1689724800,"3":1692057600,"4":1274745600,"5":1332892800,"6":1348531200,"7":1352246400,"8":1357862400,"9":1361404800,I:1264377600,J:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,G:1316131200,M:1319500800,N:1323734400,O:1328659200,n:1337040000,o:1340668800,p:1343692800,AB:1364428800,BB:1369094400,CB:1374105600,DB:1376956800,EB:1384214400,FB:1389657600,GB:1392940800,HB:1397001600,IB:1400544000,JB:1405468800,KB:1409011200,LB:1412640000,MB:1416268800,NB:1421798400,OB:1425513600,PB:1429401600,QB:1432080000,RB:1437523200,SB:1441152000,TB:1444780800,UB:1449014400,VB:1453248000,WB:1456963200,XB:1460592000,YB:1464134400,ZB:1469059200,aB:1472601600,bB:1476230400,cB:1480550400,dB:1485302400,eB:1489017600,fB:1492560000,"4B":1496707200,gB:1500940800,"5B":1504569600,hB:1508198400,iB:1512518400,jB:1516752000,kB:1520294400,lB:1523923200,mB:1527552000,nB:1532390400,oB:1536019200,pB:1539648000,qB:1543968000,rB:1548720000,q:1552348800,sB:1555977600,tB:1559606400,uB:1564444800,vB:1568073600,wB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,a:1621987200,b:1626739200,c:1630368000,d:1632268800,e:1634601600,f:1637020800,g:1641340800,h:1643673600,i:1646092800,j:1648512000,k:1650931200,l:1653350400,m:1655769600,r:1659398400,s:1661817600,t:1664236800,u:1666656000,v:1669680000,w:1673308800,x:1675728000,y:1678147200,z:1680566400,H:1694476800,xB:null,"7B":null,"8B":null}},E:{A:{"4":0,I:0,J:0,D:0,E:0,F:0,A:0,B:0,C:0,K:0.01814,L:0.0907,G:0.01814,SC:0,"9B":0,TC:0.00907,UC:0,VC:0,WC:0.1814,AC:0,yB:0.004535,zB:0.02721,BC:0.131515,XC:0.240355,YC:0.040815,CC:0.03628,DC:0.068025,"0B":0.10884,ZC:0.5442,"1B":0.068025,EC:0.158725,FC:0.15419,GC:0.3628,HC:0.185935,IC:0.44443,JC:2.50332,"2B":0.09977,KC:0,aC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","SC","9B","I","4","TC","J","UC","D","VC","E","F","WC","A","AC","B","yB","C","zB","K","BC","L","XC","G","YC","CC","DC","0B","ZC","1B","EC","FC","GC","HC","IC","JC","2B","KC","aC",""],E:"Safari",F:{"4":1275868800,SC:1205798400,"9B":1226534400,I:1244419200,TC:1311120000,J:1343174400,UC:1382400000,D:1382400000,VC:1410998400,E:1413417600,F:1443657600,WC:1458518400,A:1474329600,AC:1490572800,B:1505779200,yB:1522281600,C:1537142400,zB:1553472000,K:1568851200,BC:1585008000,L:1600214400,XC:1619395200,G:1632096000,YC:1635292800,CC:1639353600,DC:1647216000,"0B":1652745600,ZC:1658275200,"1B":1662940800,EC:1666569600,FC:1670889600,GC:1674432000,HC:1679875200,IC:1684368000,JC:1690156800,"2B":1695686400,KC:null,aC:null}},F:{A:{"5":0,"6":0,"7":0,"8":0,"9":0,F:0,B:0,C:0,G:0,M:0,N:0,O:0,n:0,o:0,p:0,AB:0,BB:0.004535,CB:0,DB:0,EB:0,FB:0,GB:0,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0,NB:0,OB:0,PB:0,QB:0,RB:0,SB:0,TB:0.013605,UB:0,VB:0,WB:0,XB:0,YB:0,ZB:0,aB:0,bB:0.004535,cB:0.004535,dB:0,eB:0,fB:0,gB:0,hB:0,iB:0,jB:0,kB:0,lB:0,mB:0,nB:0,oB:0,pB:0,qB:0,rB:0,q:0,sB:0,tB:0,uB:0,vB:0.004535,wB:0,P:0,Q:0,R:0,"6B":0,S:0,T:0,U:0.004535,V:0,W:0,X:0,Y:0.004535,Z:0,a:0,b:0,c:0,d:0,e:0.05442,f:0,g:0.11791,h:0,i:0.022675,j:0.26303,k:0.58048,l:0.64397,m:0,bC:0,cC:0,dC:0,eC:0,yB:0,LC:0,fC:0,zB:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","F","bC","cC","dC","eC","B","yB","LC","fC","C","zB","G","M","N","O","5","n","o","p","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","oB","pB","qB","rB","q","sB","tB","uB","vB","wB","P","Q","R","6B","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","","",""],E:"Opera",F:{"5":1390867200,"6":1405987200,"7":1409616000,"8":1413331200,"9":1417132800,F:1150761600,bC:1223424000,cC:1251763200,dC:1267488000,eC:1277942400,B:1292457600,yB:1302566400,LC:1309219200,fC:1323129600,C:1323129600,zB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,n:1393891200,o:1399334400,p:1401753600,AB:1422316800,BB:1425945600,CB:1430179200,DB:1433808000,EB:1438646400,FB:1442448000,GB:1445904000,HB:1449100800,IB:1454371200,JB:1457308800,KB:1462320000,LB:1465344000,MB:1470096000,NB:1474329600,OB:1477267200,PB:1481587200,QB:1486425600,RB:1490054400,SB:1494374400,TB:1498003200,UB:1502236800,VB:1506470400,WB:1510099200,XB:1515024000,YB:1517961600,ZB:1521676800,aB:1525910400,bB:1530144000,cB:1534982400,dB:1537833600,eB:1543363200,fB:1548201600,gB:1554768000,hB:1561593600,iB:1566259200,jB:1570406400,kB:1573689600,lB:1578441600,mB:1583971200,nB:1587513600,oB:1592956800,pB:1595894400,qB:1600128000,rB:1603238400,q:1613520000,sB:1612224000,tB:1616544000,uB:1619568000,vB:1623715200,wB:1627948800,P:1631577600,Q:1633392000,R:1635984000,"6B":1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:1660780800,a:1663113600,b:1668816000,c:1668643200,d:1671062400,e:1675209600,f:1677024000,g:1679529600,h:1681948800,i:1684195200,j:1687219200,k:1690329600,l:1692748800,m:1696204800},D:{F:"o",B:"o",C:"o",bC:"o",cC:"o",dC:"o",eC:"o",yB:"o",LC:"o",fC:"o",zB:"o"}},G:{A:{E:0,"9B":0,gC:0,MC:0.00285607,hC:0.00285607,iC:0.00285607,jC:0.00999624,kC:0.00285607,lC:0.00999624,mC:0.0342728,nC:0.00142803,oC:0.0514092,pC:0.0214205,qC:0.0157084,rC:0.0142803,sC:0.238482,tC:0.00714017,uC:0.0128523,vC:0.155656,wC:0.0499812,xC:0.135663,yC:0.225629,zC:0.0899662,CC:0.0985344,DC:0.112815,"0B":0.157084,"0C":1.03961,"1B":0.411274,EC:0.761142,FC:0.386997,GC:0.722585,HC:0.164224,IC:0.489816,JC:7.98414,"2B":0.704021,KC:0.00142803},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9B","gC","MC","hC","iC","jC","E","kC","lC","mC","nC","oC","pC","qC","rC","sC","tC","uC","vC","wC","xC","yC","zC","CC","DC","0B","0C","1B","EC","FC","GC","HC","IC","JC","2B","KC","",""],E:"Safari on iOS",F:{"9B":1270252800,gC:1283904000,MC:1299628800,hC:1331078400,iC:1359331200,jC:1394409600,E:1410912000,kC:1413763200,lC:1442361600,mC:1458518400,nC:1473724800,oC:1490572800,pC:1505779200,qC:1522281600,rC:1537142400,sC:1553472000,tC:1568851200,uC:1572220800,vC:1580169600,wC:1585008000,xC:1600214400,yC:1619395200,zC:1632096000,CC:1639353600,DC:1647216000,"0B":1652659200,"0C":1658275200,"1B":1662940800,EC:1666569600,FC:1670889600,GC:1674432000,HC:1679875200,IC:1684368000,JC:1690156800,"2B":1694995200,KC:null}},H:{A:{"1C":1.02942},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1C","","",""],E:"Opera Mini",F:{"1C":1426464000}},I:{A:{"3B":0,I:0.0156469,H:0,"2C":0,"3C":0.0156469,"4C":0,"5C":0.0156469,MC:0.0547642,"6C":0,"7C":0.242527},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2C","3C","4C","3B","I","5C","MC","6C","7C","H","","",""],E:"Android Browser",F:{"2C":1256515200,"3C":1274313600,"4C":1291593600,"3B":1298332800,I:1318896000,"5C":1341792000,MC:1374624000,"6C":1386547200,"7C":1401667200,H:1694476800}},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,q:0,yB:0,LC:0,zB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","yB","LC","C","zB","q","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,yB:1314835200,LC:1318291200,C:1330300800,zB:1349740800,q:1673827200},D:{q:"webkit"}},L:{A:{H:36.3803},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1694476800}},M:{A:{xB:0.278664},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","xB","","",""],E:"Firefox for Android",F:{xB:1695686400}},N:{A:{A:0,B:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{"0B":0.890632},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0B","","",""],E:"UC Browser for Android",F:{"0B":1687132800},D:{"0B":"webkit"}},P:{A:{I:0.107075,n:0.0642449,o:0.139197,p:1.87381,"8C":0,"9C":0,AD:0.0321224,BD:0,CD:0,AC:0,DD:0.0107075,ED:0,FD:0.021415,GD:0.0107075,HD:0,"1B":0.021415,"2B":0.0321224,ID:0.021415,JD:0.0535374},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","8C","9C","AD","BD","CD","AC","DD","ED","FD","GD","HD","1B","2B","ID","JD","n","o","p","","",""],E:"Samsung Internet",F:{I:1461024000,"8C":1481846400,"9C":1509408000,AD:1528329600,BD:1546128000,CD:1554163200,AC:1567900800,DD:1582588800,ED:1593475200,FD:1605657600,GD:1618531200,HD:1629072000,"1B":1640736000,"2B":1651708800,ID:1659657600,JD:1667260800,n:1677369600,o:1684454400,p:1689292800}},Q:{A:{BC:0.16392},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","BC","","",""],E:"QQ Browser",F:{BC:1663718400}},R:{A:{KD:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","KD","","",""],E:"Baidu Browser",F:{KD:1663027200}},S:{A:{LD:0.05464,MD:0},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","LD","MD","","",""],E:"KaiOS Browser",F:{LD:1527811200,MD:1631664000}}};
      +module.exports={A:{A:{J:0,E:0,F:0.0126987,G:0.0634934,A:0,B:0.368262,PC:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","PC","J","E","F","G","A","B","","",""],E:"IE",F:{PC:962323200,J:998870400,E:1161129600,F:1237420800,G:1300060800,A:1346716800,B:1381968000}},B:{A:{"0":0.100804,"1":0.02291,"2":0.036656,"3":0.041238,"4":0.109968,"5":2.53385,"6":2.08939,C:0.009164,K:0.009164,L:0.009164,H:0.009164,M:0,N:0.004582,O:0.013746,P:0,Q:0.009164,R:0.009164,S:0.009164,T:0.009164,U:0.004582,V:0.009164,W:0.041238,X:0.004582,Y:0.004582,Z:0.009164,a:0,b:0.013746,c:0,d:0,e:0,f:0,g:0,h:0,i:0.018328,j:0,k:0,l:0,m:0,s:0,t:0,u:0,v:0.009164,w:0.009164,x:0.073312,y:0.013746,z:0.100804,D:0.009164},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","H","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","D","","",""],E:"Edge",F:{"0":1680825600,"1":1683158400,"2":1685664000,"3":1689897600,"4":1692576000,"5":1694649600,"6":1697155200,C:1438128000,K:1447286400,L:1470096000,H:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,a:1622073600,b:1626912000,c:1630627200,d:1632441600,e:1634774400,f:1637539200,g:1641427200,h:1643932800,i:1646265600,j:1649635200,k:1651190400,l:1653955200,m:1655942400,s:1659657600,t:1661990400,u:1664755200,v:1666915200,w:1670198400,x:1673481600,y:1675900800,z:1678665600,D:1698969600},D:{C:"ms",K:"ms",L:"ms",H:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.009164,"1":0.013746,"2":0.013746,"3":0.339068,"4":0.02291,"5":0.096222,"6":1.49831,"7":0,"8":0,"9":0,QC:0,"4B":0,I:0,J:0,E:0,F:0,G:0,A:0,B:0.009164,C:0,K:0,L:0,H:0,M:0,N:0,O:0,n:0,o:0,p:0,q:0,AB:0,BB:0,CB:0,DB:0,EB:0,FB:0,GB:0,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0,NB:0,OB:0,PB:0,QB:0,RB:0,SB:0,TB:0.004582,UB:0,VB:0,WB:0,XB:0.02291,YB:0,ZB:0.013746,aB:0,bB:0.054984,cB:0.004582,dB:0.013746,eB:0.004582,fB:0.018328,gB:0,hB:0,"5B":0.009164,iB:0,"6B":0,jB:0,kB:0.004582,lB:0,mB:0,nB:0,oB:0,pB:0,qB:0,rB:0,sB:0,tB:0,r:0,uB:0,vB:0,wB:0,xB:0,yB:0.036656,P:0,Q:0,R:0,"7B":0,S:0.004582,T:0,U:0,V:0,W:0,X:0.004582,Y:0,Z:0,a:0.004582,b:0,c:0,d:0.004582,e:0,f:0,g:0,h:0,i:0,j:0,k:0,l:0.050402,m:0.036656,s:0,t:0.004582,u:0,v:0.004582,w:0.009164,x:0.009164,y:0.009164,z:0.009164,D:0.27492,"8B":0,"9B":0,AC:0,RC:0,SC:0},B:"moz",C:["QC","4B","RC","SC","I","7","J","E","F","G","A","B","C","K","L","H","M","N","O","8","n","o","p","q","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","5B","iB","6B","jB","kB","lB","mB","nB","oB","pB","qB","rB","sB","tB","r","uB","vB","wB","xB","yB","P","Q","R","7B","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","D","8B","9B","AC"],E:"Firefox",F:{"0":1681171200,"1":1683590400,"2":1686009600,"3":1688428800,"4":1690848000,"5":1693267200,"6":1695686400,"7":1308614400,"8":1357603200,"9":1375747200,QC:1161648000,"4B":1213660800,RC:1246320000,SC:1264032000,I:1300752000,J:1313452800,E:1317081600,F:1317081600,G:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,H:1342483200,M:1346112000,N:1349740800,O:1353628800,n:1361232000,o:1364860800,p:1368489600,q:1372118400,AB:1379376000,BB:1386633600,CB:1391472000,DB:1395100800,EB:1398729600,FB:1402358400,GB:1405987200,HB:1409616000,IB:1413244800,JB:1417392000,KB:1421107200,LB:1424736000,MB:1428278400,NB:1431475200,OB:1435881600,PB:1439251200,QB:1442880000,RB:1446508800,SB:1450137600,TB:1453852800,UB:1457395200,VB:1461628800,WB:1465257600,XB:1470096000,YB:1474329600,ZB:1479168000,aB:1485216000,bB:1488844800,cB:1492560000,dB:1497312000,eB:1502150400,fB:1506556800,gB:1510617600,hB:1516665600,"5B":1520985600,iB:1525824000,"6B":1529971200,jB:1536105600,kB:1540252800,lB:1544486400,mB:1548720000,nB:1552953600,oB:1558396800,pB:1562630400,qB:1567468800,rB:1571788800,sB:1575331200,tB:1578355200,r:1581379200,uB:1583798400,vB:1586304000,wB:1588636800,xB:1591056000,yB:1593475200,P:1595894400,Q:1598313600,R:1600732800,"7B":1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,a:1628553600,b:1630972800,c:1633392000,d:1635811200,e:1638835200,f:1641859200,g:1644364800,h:1646697600,i:1649116800,j:1651536000,k:1653955200,l:1656374400,m:1658793600,s:1661212800,t:1663632000,u:1666051200,v:1668470400,w:1670889600,x:1673913600,y:1676332800,z:1678752000,D:1698105600,"8B":null,"9B":null,AC:null}},D:{A:{"0":0.187862,"1":0.169534,"2":0.522348,"3":0.361978,"4":1.46624,"5":9.96127,"6":9.54889,"7":0,"8":0,"9":0,I:0,J:0,E:0,F:0,G:0,A:0,B:0,C:0,K:0,L:0,H:0,M:0,N:0,O:0,n:0,o:0,p:0,q:0,AB:0,BB:0,CB:0,DB:0,EB:0,FB:0,GB:0,HB:0,IB:0,JB:0.004582,KB:0,LB:0,MB:0,NB:0.013746,OB:0,PB:0,QB:0.004582,RB:0,SB:0,TB:0,UB:0.009164,VB:0,WB:0.009164,XB:0.018328,YB:0.041238,ZB:0.009164,aB:0,bB:0,cB:0.009164,dB:0,eB:0.009164,fB:0.018328,gB:0.009164,hB:0.004582,"5B":0,iB:0.032074,"6B":0.004582,jB:0,kB:0.009164,lB:0,mB:0.013746,nB:0.02291,oB:0.009164,pB:0.032074,qB:0.064148,rB:0.16037,sB:0.02291,tB:0.032074,r:0.041238,uB:0.036656,vB:0.036656,wB:0.109968,xB:0.032074,yB:0.041238,P:0.169534,Q:0.087058,R:0.059566,S:0.073312,T:0.036656,U:0.082476,V:0.087058,W:0.100804,X:0.054984,Y:0.04582,Z:0.054984,a:0.082476,b:0.04582,c:0.142042,d:0.041238,e:0.013746,f:0.018328,g:0.02291,h:0.06873,i:0.036656,j:0.036656,k:0.04582,l:0.036656,m:0.233682,s:0.050402,t:0.036656,u:0.059566,v:0.13746,w:0.178698,x:1.69534,y:0.155788,z:0.265756,D:0.027492,"8B":0.013746,"9B":0,AC:0},B:"webkit",C:["","","","","","I","7","J","E","F","G","A","B","C","K","L","H","M","N","O","8","n","o","p","q","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","5B","iB","6B","jB","kB","lB","mB","nB","oB","pB","qB","rB","sB","tB","r","uB","vB","wB","xB","yB","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","D","8B","9B","AC"],E:"Chrome",F:{"0":1680566400,"1":1682985600,"2":1685404800,"3":1689724800,"4":1692057600,"5":1694476800,"6":1696896000,"7":1274745600,"8":1332892800,"9":1352246400,I:1264377600,J:1283385600,E:1287619200,F:1291248000,G:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,H:1316131200,M:1319500800,N:1323734400,O:1328659200,n:1337040000,o:1340668800,p:1343692800,q:1348531200,AB:1357862400,BB:1361404800,CB:1364428800,DB:1369094400,EB:1374105600,FB:1376956800,GB:1384214400,HB:1389657600,IB:1392940800,JB:1397001600,KB:1400544000,LB:1405468800,MB:1409011200,NB:1412640000,OB:1416268800,PB:1421798400,QB:1425513600,RB:1429401600,SB:1432080000,TB:1437523200,UB:1441152000,VB:1444780800,WB:1449014400,XB:1453248000,YB:1456963200,ZB:1460592000,aB:1464134400,bB:1469059200,cB:1472601600,dB:1476230400,eB:1480550400,fB:1485302400,gB:1489017600,hB:1492560000,"5B":1496707200,iB:1500940800,"6B":1504569600,jB:1508198400,kB:1512518400,lB:1516752000,mB:1520294400,nB:1523923200,oB:1527552000,pB:1532390400,qB:1536019200,rB:1539648000,sB:1543968000,tB:1548720000,r:1552348800,uB:1555977600,vB:1559606400,wB:1564444800,xB:1568073600,yB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,a:1621987200,b:1626739200,c:1630368000,d:1632268800,e:1634601600,f:1637020800,g:1641340800,h:1643673600,i:1646092800,j:1648512000,k:1650931200,l:1653350400,m:1655769600,s:1659398400,t:1661817600,u:1664236800,v:1666656000,w:1669680000,x:1673308800,y:1675728000,z:1678147200,D:1698710400,"8B":null,"9B":null,AC:null}},E:{A:{"7":0,I:0,J:0,E:0,F:0,G:0,A:0,B:0,C:0.004582,K:0.02291,L:0.096222,H:0.018328,TC:0,BC:0,UC:0.004582,VC:0,WC:0,XC:0.164952,CC:0,zB:0.009164,"0B":0.027492,DC:0.128296,YC:0.233682,ZC:0.041238,EC:0.032074,FC:0.06873,"1B":0.109968,aC:0.536094,"2B":0.064148,GC:0.16037,HC:0.146624,IC:0.34365,JC:0.146624,KC:0.398634,bC:2.1902,"3B":0.613988,LC:0.041238,MC:0,cC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","TC","BC","I","7","UC","J","VC","E","WC","F","G","XC","A","CC","B","zB","C","0B","K","DC","L","YC","H","ZC","EC","FC","1B","aC","2B","GC","HC","IC","JC","KC","bC","3B","LC","MC","cC",""],E:"Safari",F:{"7":1275868800,TC:1205798400,BC:1226534400,I:1244419200,UC:1311120000,J:1343174400,VC:1382400000,E:1382400000,WC:1410998400,F:1413417600,G:1443657600,XC:1458518400,A:1474329600,CC:1490572800,B:1505779200,zB:1522281600,C:1537142400,"0B":1553472000,K:1568851200,DC:1585008000,L:1600214400,YC:1619395200,H:1632096000,ZC:1635292800,EC:1639353600,FC:1647216000,"1B":1652745600,aC:1658275200,"2B":1662940800,GC:1666569600,HC:1670889600,IC:1674432000,JC:1679875200,KC:1684368000,bC:1690156800,"3B":1695686400,LC:1698192000,MC:null,cC:null}},F:{A:{"8":0,"9":0,G:0,B:0,C:0,H:0,M:0,N:0,O:0,n:0,o:0,p:0,q:0,AB:0,BB:0,CB:0,DB:0.004582,EB:0,FB:0,GB:0,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0,NB:0,OB:0,PB:0,QB:0,RB:0,SB:0,TB:0,UB:0,VB:0.013746,WB:0,XB:0,YB:0,ZB:0,aB:0,bB:0,cB:0,dB:0.004582,eB:0.004582,fB:0,gB:0,hB:0,iB:0,jB:0,kB:0,lB:0,mB:0,nB:0,oB:0,pB:0,qB:0,rB:0,sB:0,tB:0,r:0,uB:0,vB:0,wB:0,xB:0,yB:0,P:0,Q:0,R:0,"7B":0,S:0,T:0,U:0,V:0,W:0,X:0,Y:0,Z:0,a:0,b:0,c:0,d:0,e:0.050402,f:0,g:0.09164,h:0,i:0.009164,j:0.009164,k:0.013746,l:1.61745,m:0.25201,dC:0,eC:0,fC:0,gC:0,zB:0,NC:0,hC:0,"0B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","G","dC","eC","fC","gC","B","zB","NC","hC","C","0B","H","M","N","O","8","n","o","p","q","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","oB","pB","qB","rB","sB","tB","r","uB","vB","wB","xB","yB","P","Q","R","7B","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","","",""],E:"Opera",F:{"8":1390867200,"9":1409616000,G:1150761600,dC:1223424000,eC:1251763200,fC:1267488000,gC:1277942400,B:1292457600,zB:1302566400,NC:1309219200,hC:1323129600,C:1323129600,"0B":1352073600,H:1372723200,M:1377561600,N:1381104000,O:1386288000,n:1393891200,o:1399334400,p:1401753600,q:1405987200,AB:1413331200,BB:1417132800,CB:1422316800,DB:1425945600,EB:1430179200,FB:1433808000,GB:1438646400,HB:1442448000,IB:1445904000,JB:1449100800,KB:1454371200,LB:1457308800,MB:1462320000,NB:1465344000,OB:1470096000,PB:1474329600,QB:1477267200,RB:1481587200,SB:1486425600,TB:1490054400,UB:1494374400,VB:1498003200,WB:1502236800,XB:1506470400,YB:1510099200,ZB:1515024000,aB:1517961600,bB:1521676800,cB:1525910400,dB:1530144000,eB:1534982400,fB:1537833600,gB:1543363200,hB:1548201600,iB:1554768000,jB:1561593600,kB:1566259200,lB:1570406400,mB:1573689600,nB:1578441600,oB:1583971200,pB:1587513600,qB:1592956800,rB:1595894400,sB:1600128000,tB:1603238400,r:1613520000,uB:1612224000,vB:1616544000,wB:1619568000,xB:1623715200,yB:1627948800,P:1631577600,Q:1633392000,R:1635984000,"7B":1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:1660780800,a:1663113600,b:1668816000,c:1668643200,d:1671062400,e:1675209600,f:1677024000,g:1679529600,h:1681948800,i:1684195200,j:1687219200,k:1690329600,l:1692748800,m:1696204800},D:{G:"o",B:"o",C:"o",dC:"o",eC:"o",fC:"o",gC:"o",zB:"o",NC:"o",hC:"o","0B":"o"}},G:{A:{F:0,BC:0,iC:0,OC:0.0027735,jC:0.00138675,kC:0.00416026,lC:0.00970726,mC:0.00138675,nC:0.00970726,oC:0.033282,pC:0.00138675,qC:0.0485363,rC:0.0457628,sC:0.016641,tC:0.0124808,uC:0.220494,vC:0.00693376,wC:0.0374423,xC:0.0138675,yC:0.0443761,zC:0.122034,"0C":0.196919,"1C":0.0776581,EC:0.0887521,FC:0.0984594,"1B":0.140062,"2C":0.96934,"2B":0.357782,GC:0.685055,HC:0.334207,IC:0.619878,JC:0.137288,KC:0.355009,"3C":6.64254,"3B":2.36719,LC:0.142835,MC:0.00416026},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","BC","iC","OC","jC","kC","lC","F","mC","nC","oC","pC","qC","rC","sC","tC","uC","vC","wC","xC","yC","zC","0C","1C","EC","FC","1B","2C","2B","GC","HC","IC","JC","KC","3C","3B","LC","MC","",""],E:"Safari on iOS",F:{BC:1270252800,iC:1283904000,OC:1299628800,jC:1331078400,kC:1359331200,lC:1394409600,F:1410912000,mC:1413763200,nC:1442361600,oC:1458518400,pC:1473724800,qC:1490572800,rC:1505779200,sC:1522281600,tC:1537142400,uC:1553472000,vC:1568851200,wC:1572220800,xC:1580169600,yC:1585008000,zC:1600214400,"0C":1619395200,"1C":1632096000,EC:1639353600,FC:1647216000,"1B":1652659200,"2C":1658275200,"2B":1662940800,GC:1666569600,HC:1670889600,IC:1674432000,JC:1679875200,KC:1684368000,"3C":1690156800,"3B":1694995200,LC:1698192000,MC:null}},H:{A:{"4C":0.06},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4C","","",""],E:"Opera Mini",F:{"4C":1426464000}},I:{A:{"4B":0,I:0.000123508,D:0.61445,"5C":0,"6C":0.000185261,"7C":0,"8C":0.000123508,OC:0.000432277,"9C":0,AD:0.00185261},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5C","6C","7C","4B","I","8C","OC","9C","AD","D","","",""],E:"Android Browser",F:{"5C":1256515200,"6C":1274313600,"7C":1291593600,"4B":1298332800,I:1318896000,"8C":1341792000,OC:1374624000,"9C":1386547200,AD:1401667200,D:1698710400}},J:{A:{E:0,A:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","E","A","","",""],E:"Blackberry Browser",F:{E:1325376000,A:1359504000}},K:{A:{A:0,B:0,C:0,r:1.00715,zB:0,NC:0,"0B":0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","zB","NC","C","0B","r","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,zB:1314835200,NC:1318291200,C:1330300800,"0B":1349740800,r:1673827200},D:{r:"webkit"}},L:{A:{D:35.8038},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","","",""],E:"Chrome for Android",F:{D:1698710400}},M:{A:{D:0.276267},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","","",""],E:"Firefox for Android",F:{D:1698105600}},N:{A:{A:0,B:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{"1B":0.785465},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1B","","",""],E:"UC Browser for Android",F:{"1B":1687132800},D:{"1B":"webkit"}},P:{A:{I:0.0977276,n:0.0542931,o:0.108586,p:1.60708,q:0.347476,BD:0,CD:0,DD:0.0325759,ED:0,FD:0,CC:0,GD:0.0108586,HD:0,ID:0.0108586,JD:0,KD:0,"2B":0.0217172,"3B":0.0325759,LD:0.0217172,MD:0.0434345},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","BD","CD","DD","ED","FD","CC","GD","HD","ID","JD","KD","2B","3B","LD","MD","n","o","p","q","","",""],E:"Samsung Internet",F:{I:1461024000,BD:1481846400,CD:1509408000,DD:1528329600,ED:1546128000,FD:1554163200,CC:1567900800,GD:1582588800,HD:1593475200,ID:1605657600,JD:1618531200,KD:1629072000,"2B":1640736000,"3B":1651708800,LD:1659657600,MD:1667260800,n:1677369600,o:1684454400,p:1689292800,q:1697587200}},Q:{A:{DC:0.151676},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DC","","",""],E:"QQ Browser",F:{DC:1663718400}},R:{A:{ND:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ND","","",""],E:"Baidu Browser",F:{ND:1663027200}},S:{A:{OD:0.059587,PD:0},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","OD","PD","","",""],E:"KaiOS Browser",F:{OD:1527811200,PD:1631664000}}};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/browserVersions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/browserVersions.js
      index cb228a7682528d..8bdc255845d0f0 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":"113","1":"114","2":"115","3":"116","4":"5","5":"19","6":"23","7":"24","8":"25","9":"26",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"117",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"92",c:"93",d:"94",e:"95",f:"96",g:"97",h:"98",i:"99",j:"100",k:"101",l:"102",m:"103",n:"20",o:"21",p:"22",q:"73",r:"104",s:"105",t:"106",u:"107",v:"108",w:"109",x:"110",y:"111",z:"112",AB:"27",BB:"28",CB:"29",DB:"30",EB:"31",FB:"32",GB:"33",HB:"34",IB:"35",JB:"36",KB:"37",LB:"38",MB:"39",NB:"40",OB:"41",PB:"42",QB:"43",RB:"44",SB:"45",TB:"46",UB:"47",VB:"48",WB:"49",XB:"50",YB:"51",ZB:"52",aB:"53",bB:"54",cB:"55",dB:"56",eB:"57",fB:"58",gB:"60",hB:"62",iB:"63",jB:"64",kB:"65",lB:"66",mB:"67",nB:"68",oB:"69",pB:"70",qB:"71",rB:"72",sB:"74",tB:"75",uB:"76",vB:"77",wB:"78",xB:"118",yB:"11.1",zB:"12.1","0B":"15.5","1B":"16.0","2B":"17.0","3B":"3","4B":"59","5B":"61","6B":"82","7B":"119","8B":"120","9B":"3.2",AC:"10.1",BC:"13.1",CC:"15.2-15.3",DC:"15.4",EC:"16.1",FC:"16.2",GC:"16.3",HC:"16.4",IC:"16.5",JC:"16.6",KC:"17.1",LC:"11.5",MC:"4.2-4.3",NC:"5.5",OC:"2",PC:"121",QC:"3.5",RC:"3.6",SC:"3.1",TC:"5.1",UC:"6.1",VC:"7.1",WC:"9.1",XC:"14.1",YC:"15.1",ZC:"15.6",aC:"TP",bC:"9.5-9.6",cC:"10.0-10.1",dC:"10.5",eC:"10.6",fC:"11.6",gC:"4.0-4.1",hC:"5.0-5.1",iC:"6.0-6.1",jC:"7.0-7.1",kC:"8.1-8.4",lC:"9.0-9.2",mC:"9.3",nC:"10.0-10.2",oC:"10.3",pC:"11.0-11.2",qC:"11.3-11.4",rC:"12.0-12.1",sC:"12.2-12.5",tC:"13.0-13.1",uC:"13.2",vC:"13.3",wC:"13.4-13.7",xC:"14.0-14.4",yC:"14.5-14.8",zC:"15.0-15.1","0C":"15.6-15.7","1C":"all","2C":"2.1","3C":"2.2","4C":"2.3","5C":"4.1","6C":"4.4","7C":"4.4.3-4.4.4","8C":"5.0-5.4","9C":"6.2-6.4",AD:"7.2-7.4",BD:"8.2",CD:"9.2",DD:"11.1-11.2",ED:"12.0",FD:"13.0",GD:"14.0",HD:"15.0",ID:"18.0",JD:"19.0",KD:"13.18",LD:"2.5",MD:"3.0-3.1"};
      +module.exports={"0":"112","1":"113","2":"114","3":"115","4":"116","5":"117","6":"118","7":"5","8":"19","9":"24",A:"10",B:"11",C:"12",D:"119",E:"7",F:"8",G:"9",H:"15",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"92",c:"93",d:"94",e:"95",f:"96",g:"97",h:"98",i:"99",j:"100",k:"101",l:"102",m:"103",n:"20",o:"21",p:"22",q:"23",r:"73",s:"104",t:"105",u:"106",v:"107",w:"108",x:"109",y:"110",z:"111",AB:"25",BB:"26",CB:"27",DB:"28",EB:"29",FB:"30",GB:"31",HB:"32",IB:"33",JB:"34",KB:"35",LB:"36",MB:"37",NB:"38",OB:"39",PB:"40",QB:"41",RB:"42",SB:"43",TB:"44",UB:"45",VB:"46",WB:"47",XB:"48",YB:"49",ZB:"50",aB:"51",bB:"52",cB:"53",dB:"54",eB:"55",fB:"56",gB:"57",hB:"58",iB:"60",jB:"62",kB:"63",lB:"64",mB:"65",nB:"66",oB:"67",pB:"68",qB:"69",rB:"70",sB:"71",tB:"72",uB:"74",vB:"75",wB:"76",xB:"77",yB:"78",zB:"11.1","0B":"12.1","1B":"15.5","2B":"16.0","3B":"17.0","4B":"3","5B":"59","6B":"61","7B":"82","8B":"120","9B":"121",AC:"122",BC:"3.2",CC:"10.1",DC:"13.1",EC:"15.2-15.3",FC:"15.4",GC:"16.1",HC:"16.2",IC:"16.3",JC:"16.4",KC:"16.5",LC:"17.1",MC:"17.2",NC:"11.5",OC:"4.2-4.3",PC:"5.5",QC:"2",RC:"3.5",SC:"3.6",TC:"3.1",UC:"5.1",VC:"6.1",WC:"7.1",XC:"9.1",YC:"14.1",ZC:"15.1",aC:"15.6",bC:"16.6",cC:"TP",dC:"9.5-9.6",eC:"10.0-10.1",fC:"10.5",gC:"10.6",hC:"11.6",iC:"4.0-4.1",jC:"5.0-5.1",kC:"6.0-6.1",lC:"7.0-7.1",mC:"8.1-8.4",nC:"9.0-9.2",oC:"9.3",pC:"10.0-10.2",qC:"10.3",rC:"11.0-11.2",sC:"11.3-11.4",tC:"12.0-12.1",uC:"12.2-12.5",vC:"13.0-13.1",wC:"13.2",xC:"13.3",yC:"13.4-13.7",zC:"14.0-14.4","0C":"14.5-14.8","1C":"15.0-15.1","2C":"15.6-15.7","3C":"16.6-16.7","4C":"all","5C":"2.1","6C":"2.2","7C":"2.3","8C":"4.1","9C":"4.4",AD:"4.4.3-4.4.4",BD:"5.0-5.4",CD:"6.2-6.4",DD:"7.2-7.4",ED:"8.2",FD:"9.2",GD:"11.1-11.2",HD:"12.0",ID:"13.0",JD:"14.0",KD:"15.0",LD:"18.0",MD:"19.0",ND:"13.18",OD:"2.5",PD:"3.0-3.1"};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/aac.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/aac.js
      index 9a3e56c5765890..a76bff8d56605d 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC","132":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 5 6 7 8 9 C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F","16":"A B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"132":"xB"},N:{"1":"A","2":"B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"132":"LD MD"}},B:6,C:"AAC audio file format",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC","132":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 8 9 C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G","16":"A B"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"132":"D"},N:{"1":"A","2":"B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"132":"OD PD"}},B:6,C:"AAC audio file format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/abortcontroller.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/abortcontroller.js
      index 657fe3dac4b763..c5f0c9a113020a 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 NC"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G"},C:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB QC RC"},D:{"1":"0 1 2 3 lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC","130":"C yB"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"AbortController & AbortSignal",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H"},C:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB RC SC"},D:{"1":"0 1 2 3 4 5 6 nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC","130":"C zB"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"AbortController & AbortSignal",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ac3-ec3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ac3-ec3.js
      index 5d4ebb714e435e..751613a2e42ec4 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 NC"},B:{"1":"C K L G M N O","2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC","132":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","132":"A"},K:{"2":"A B C q yB LC","132":"zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs",D:false};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"C K L H M N O","2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC","132":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","132":"A"},K:{"2":"A B C r zB NC","132":"0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/accelerometer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/accelerometer.js
      index d18496fbfd38bf..8b17820dba7e4b 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","194":"fB 4B gB 5B hB iB jB kB lB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:4,C:"Accelerometer",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","194":"hB 5B iB 6B jB kB lB mB nB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:4,C:"Accelerometer",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/addeventlistener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/addeventlistener.js
      index 29d4626a7cb7e6..22a78df41ebfeb 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","257":"4 OC 3B I J QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"EventTarget.addEventListener()",D:true};
      +module.exports={A:{A:{"1":"G A B","130":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","257":"7 QC 4B I J RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"EventTarget.addEventListener()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/alternate-stylesheet.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/alternate-stylesheet.js
      index 623320d308c53a..fddb33dcd662f1 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"F B C bC cC dC eC yB LC fC zB","16":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"16":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"16":"D A"},K:{"2":"q","16":"A B C yB LC zB"},L:{"16":"H"},M:{"16":"xB"},N:{"16":"A B"},O:{"16":"0B"},P:{"16":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"16":"KD"},S:{"1":"LD MD"}},B:1,C:"Alternate stylesheet",D:false};
      +module.exports={A:{A:{"1":"F G A B","2":"J E PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"G B C dC eC fC gC zB NC hC 0B","16":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"16":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"16":"E A"},K:{"2":"r","16":"A B C zB NC 0B"},L:{"16":"D"},M:{"16":"D"},N:{"16":"A B"},O:{"16":"1B"},P:{"16":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"16":"ND"},S:{"1":"OD PD"}},B:1,C:"Alternate stylesheet",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ambient-light.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ambient-light.js
      index c0566bfffe4c2d..125097bc5d9f85 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 NC"},B:{"2":"C K","132":"L G M N O","322":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC","132":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B","194":"0 1 2 3 gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","322":"0 1 2 3 fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB bC cC dC eC yB LC fC zB","322":"q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"132":"LD MD"}},B:4,C:"Ambient Light Sensor",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K","132":"L H M N O","322":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC","132":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B","194":"0 1 2 3 4 5 6 iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","322":"0 1 2 3 4 5 6 hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB dC eC fC gC zB NC hC 0B","322":"r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"132":"OD PD"}},B:4,C:"Ambient Light Sensor",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/apng.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/apng.js
      index 1f8e47373d0f4f..73f76c961f2a26 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC"},D:{"1":"0 1 2 3 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"E F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC VC"},F:{"1":"B C TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"5 6 7 8 9 F G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Animated PNG (APNG)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC"},D:{"1":"0 1 2 3 4 5 6 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"F G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC WC"},F:{"1":"B C VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"8 9 G H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Animated PNG (APNG)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find-index.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find-index.js
      index 2624055f687651..9ec8e308ebe1f0 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p 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 VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB bC cC dC eC yB LC fC zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","16":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Array.prototype.findIndex",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q RC SC"},D:{"1":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB dC eC fC gC zB NC hC 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","16":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Array.prototype.findIndex",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find.js
      index b2e3c529852ce1..df18594384a168 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 NC"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","16":"C K L"},C:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p 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 VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB bC cC dC eC yB LC fC zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","16":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Array.prototype.find",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q RC SC"},D:{"1":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB dC eC fC gC zB NC hC 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","16":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Array.prototype.find",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-flat.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-flat.js
      index 9dc0b0bbb349c5..f99848ef387123 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B QC RC"},D:{"1":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB"},E:{"1":"C K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC yB"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB bC cC dC eC yB LC fC zB"},G:{"1":"rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"flat & flatMap array methods",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B RC SC"},D:{"1":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB"},E:{"1":"C K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC zB"},F:{"1":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB dC eC fC gC zB NC hC 0B"},G:{"1":"tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"flat & flatMap array methods",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-includes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-includes.js
      index 277bf986b90b5e..1a6ef6c41fded4 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QC RC"},D:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Array.prototype.includes",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB RC SC"},D:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Array.prototype.includes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/arrow-functions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/arrow-functions.js
      index da01ca25e87a69..c0b02dc7301346 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC"},D:{"1":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Arrow functions",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC"},D:{"1":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Arrow functions",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/asmjs.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/asmjs.js
      index 5e7dcd2791403a..782ca79dba519f 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 NC"},B:{"1":"K L G M N O","132":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","322":"C"},C:{"1":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB","132":"0 1 2 3 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","132":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","132":"q"},L:{"132":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"132":"0B"},P:{"2":"I","132":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"132":"BC"},R:{"132":"KD"},S:{"1":"LD MD"}},B:6,C:"asm.js",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"K L H M N O","132":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","322":"C"},C:{"1":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB","132":"0 1 2 3 4 5 6 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","132":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","132":"r"},L:{"132":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"132":"1B"},P:{"2":"I","132":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"132":"DC"},R:{"132":"ND"},S:{"1":"OD PD"}},B:6,C:"asm.js",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-clipboard.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-clipboard.js
      index 085f3bf4721073..df303e64763d0d 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB QC RC","132":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","66":"fB 4B gB 5B"},E:{"1":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC","260":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","260":"H"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"132":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I 8C 9C AD BD","260":"n o p CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD","132":"MD"}},B:5,C:"Asynchronous Clipboard API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB RC SC","132":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","66":"hB 5B iB 6B"},E:{"1":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC","260":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","260":"D"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"132":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I BD CD DD ED","260":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD","132":"PD"}},B:5,C:"Asynchronous Clipboard API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-functions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-functions.js
      index 186b7d21d2a5b7..cf243486abca15 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 NC"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K","194":"L"},C:{"1":"0 1 2 3 ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB QC RC"},D:{"1":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC","258":"AC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB bC cC dC eC yB LC fC zB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC","258":"oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"Async functions",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K","194":"L"},C:{"1":"0 1 2 3 4 5 6 bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB RC SC"},D:{"1":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC","258":"CC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB dC eC fC gC zB NC hC 0B"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC","258":"qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"Async functions",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/atob-btoa.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/atob-btoa.js
      index f9b3d0abf16811..acc97574925956 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","2":"F bC cC","16":"dC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","16":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Base64 encoding and decoding",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","2":"G dC eC","16":"fC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","16":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Base64 encoding and decoding",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio-api.js
      index 16c8da0d13eff6..6a33075219b00e 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K","33":"5 6 7 8 9 L G M N O n o p AB BB CB DB EB FB GB"},E:{"1":"G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","33":"J D E F A B C K L UC VC WC AC yB zB BC"},F:{"1":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 G M N O n o"},G:{"1":"yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Web Audio API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q RC SC"},D:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K","33":"8 9 L H M N O n o p q AB BB CB DB EB FB GB HB IB"},E:{"1":"H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","33":"J E F G A B C K L VC WC XC CC zB 0B DC"},F:{"1":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 H M N O n o"},G:{"1":"0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Web Audio API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio.js
      index ab9933b1584f31..6509679d93d994 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","132":"4 5 I J D E F A B C K L G M N O QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F","4":"bC cC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","2":"2C 3C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Audio element",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","132":"7 8 I J E F G A B C K L H M N O RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G","4":"dC eC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","2":"5C 6C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Audio element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audiotracks.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audiotracks.js
      index 2e197407ddefbd..c1fe3c8d42bd3f 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 NC"},B:{"1":"C K L G M N O","322":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB QC RC","194":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","322":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB bC cC dC eC yB LC fC zB","322":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","322":"q"},L:{"322":"H"},M:{"2":"xB"},N:{"1":"A B"},O:{"322":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"322":"BC"},R:{"322":"KD"},S:{"194":"LD MD"}},B:1,C:"Audio Tracks",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"C K L H M N O","322":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB RC SC","194":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","322":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB dC eC fC gC zB NC hC 0B","322":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","322":"r"},L:{"322":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"322":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"322":"DC"},R:{"322":"ND"},S:{"194":"OD PD"}},B:1,C:"Audio Tracks",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/autofocus.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/autofocus.js
      index 57da5eb6e8d1f1..c995fdaa0ecc78 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"Autofocus attribute",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"Autofocus attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/auxclick.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/auxclick.js
      index 8ea1cb02e221cf..58e31dca73b2ff 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB QC RC","129":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:5,C:"Auxclick",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB RC SC","129":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:5,C:"Auxclick",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/av1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/av1.js
      index 499be400921b87..a714cebe937348 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 NC"},B:{"2":"C K L G M N","194":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB QC RC","66":"cB dB eB fB 4B gB 5B hB iB jB","260":"kB","516":"lB"},D:{"1":"0 1 2 3 pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB","66":"mB nB oB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC","1026":"2B KC aC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC","1028":"2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:6,C:"AV1 video format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"4 5 6 C K L H M N D","194":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z"},C:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB RC SC","66":"eB fB gB hB 5B iB 6B jB kB lB","260":"mB","516":"nB"},D:{"1":"0 1 2 3 4 5 6 rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB","66":"oB pB qB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC","1028":"3B LC MC cC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C","1028":"3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:6,C:"AV1 video format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/avif.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/avif.js
      index 797cd535d63466..b40c13867140d9 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 NC"},B:{"2":"0 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z","4162":"1 2 3 H"},C:{"1":"0 1 2 3 H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB QC RC","194":"vB wB P Q R 6B S T U V W X Y Z a b","257":"c d e f g h i j k l m r s t u v w x","2049":"y z"},D:{"1":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B","1796":"EC FC GC"},F:{"1":"qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C","257":"HC IC JC 2B KC","1281":"1B EC FC GC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:6,C:"AVIF image format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","4162":"2 3 4 5"},C:{"1":"1 2 3 4 5 6 D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB RC SC","194":"xB yB P Q R 7B S T U V W X Y Z a b","257":"c d e f g h i j k l m s t u v w x y","2049":"0 z"},D:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B","1796":"GC HC IC"},F:{"1":"sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C","257":"JC KC 3C 3B LC MC","1281":"2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:6,C:"AVIF image format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-attachment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-attachment.js
      index 8f271c90def47a..4f3e1fbc59d106 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","132":"4 5 6 7 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J D E F A B C TC UC VC WC AC yB zB DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","132":"I K SC 9B BC","2050":"L G XC YC CC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","132":"F bC cC"},G:{"2":"9B gC MC","772":"E hC iC jC kC lC mC nC oC pC qC rC sC","2050":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 6C 7C","132":"5C MC"},J:{"260":"D A"},K:{"1":"B C q yB LC zB","132":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"2":"I","1028":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS background-attachment",D:true};
      +module.exports={A:{A:{"1":"G A B","132":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J E F G A B C UC VC WC XC CC zB 0B FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","132":"I K TC BC DC","2050":"L H YC ZC EC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","132":"G dC eC"},G:{"2":"BC iC OC","772":"F jC kC lC mC nC oC pC qC rC sC tC uC","2050":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 9C AD","132":"8C OC"},J:{"260":"E A"},K:{"1":"B C r zB NC 0B","132":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"2":"I","1028":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS background-attachment",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-clip-text.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-clip-text.js
      index 4c5ebdb38db441..598d06335afb89 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 NC"},B:{"1":"G M N O","33":"0 1 2 3 C K L P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB QC RC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"L G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC 9B","33":"4 I J D E F A B C K TC UC VC WC AC yB zB BC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC hC","33":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC"},H:{"2":"1C"},I:{"16":"3B 2C 3C 4C","33":"I H 5C MC 6C 7C"},J:{"33":"D A"},K:{"16":"A B C yB LC zB","33":"q"},L:{"33":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"33":"0B"},P:{"33":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"33":"BC"},R:{"33":"KD"},S:{"1":"LD MD"}},B:7,C:"Background-clip: text",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"H M N O","33":"0 1 2 3 4 5 6 C K L P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB RC SC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"L H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC BC","33":"7 I J E F G A B C K UC VC WC XC CC zB 0B DC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC jC","33":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"4C"},I:{"16":"4B 5C 6C 7C","33":"I D 8C OC 9C AD"},J:{"33":"E A"},K:{"16":"A B C zB NC 0B","33":"r"},L:{"33":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"33":"1B"},P:{"33":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"33":"DC"},R:{"33":"ND"},S:{"1":"OD PD"}},B:7,C:"Background-clip: text",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-img-opts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-img-opts.js
      index 3d3182690de834..913c857c2d68e1 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC","36":"RC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","516":"4 I J D E F A B C K L"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","772":"4 I J SC 9B TC UC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC","36":"cC"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","4":"9B gC MC iC","516":"hC"},H:{"132":"1C"},I:{"1":"H 6C 7C","36":"2C","516":"3B I 5C MC","548":"3C 4C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS3 Background-image options",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC","36":"SC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","516":"7 I J E F G A B C K L"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","772":"7 I J TC BC UC VC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC","36":"eC"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","4":"BC iC OC kC","516":"jC"},H:{"132":"4C"},I:{"1":"D 9C AD","36":"5C","516":"4B I 8C OC","548":"6C 7C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS3 Background-image options",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-position-x-y.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-position-x-y.js
      index e2df0f8eb96eaf..b1a7b6628f6483 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:7,C:"background-position-x & background-position-y",D:true};
      +module.exports={A:{A:{"1":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:7,C:"background-position-x & background-position-y",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-repeat-round-space.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-repeat-round-space.js
      index 44350215c1378e..19888709c3a953 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 NC","132":"F"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB QC RC"},D:{"1":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC"},F:{"1":"5 6 7 8 9 B C n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F G M N O bC cC"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"CSS background-repeat round and space",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F PC","132":"G"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB RC SC"},D:{"1":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC"},F:{"1":"8 9 B C n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G H M N O dC eC"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"CSS background-repeat round and space",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-sync.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-sync.js
      index 11563f1fcc8a03..1100ee9db7753d 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB QC RC","16":"7B 8B PC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"Background Sync API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D RC SC","16":"8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"Background Sync API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/battery-status.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/battery-status.js
      index 7cb2a4ab05a72c..50c87e97f32fee 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB","2":"0 1 2 3 4 OC 3B I J D E F ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","132":"5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","164":"A B C K L G"},D:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB","66":"KB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC 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 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD","2":"MD"}},B:4,C:"Battery Status API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB","2":"0 1 2 3 4 5 6 7 QC 4B I J E F G bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","132":"8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","164":"A B C K L H"},D:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB","66":"MB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD","2":"PD"}},B:4,C:"Battery Status API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beacon.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beacon.js
      index 4509eef162b1ec..ff336660ea8881 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB QC RC"},D:{"1":"0 1 2 3 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Beacon API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB RC SC"},D:{"1":"0 1 2 3 4 5 6 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Beacon API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beforeafterprint.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beforeafterprint.js
      index 2c5b8e9bcf11b6..7e92cd13a489b5 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":"NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC"},D:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB zB"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC dC eC yB LC fC zB"},G:{"1":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"16":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"16":"A B"},O:{"1":"0B"},P:{"2":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","16":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Printing Events",D:true};
      +module.exports={A:{A:{"1":"J E F G A B","16":"PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC"},D:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB 0B"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB dC eC fC gC zB NC hC 0B"},G:{"1":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"16":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"1B"},P:{"2":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","16":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Printing Events",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bigint.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bigint.js
      index da960f92a19631..b91e32c51a666a 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB QC RC","194":"kB lB mB"},D:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB"},E:{"1":"L G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB BC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC dC eC yB LC fC zB"},G:{"1":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"BigInt",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB RC SC","194":"mB nB oB"},D:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB"},E:{"1":"L H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B DC"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dC eC fC gC zB NC hC 0B"},G:{"1":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"BigInt",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/blobbuilder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/blobbuilder.js
      index df4565937f0f32..8655ed1e4f089c 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC","36":"J D E F A B C"},D:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D","36":"5 E F A B C K L G M N O"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B C bC cC dC eC yB LC fC"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC"},H:{"2":"1C"},I:{"1":"H","2":"2C 3C 4C","36":"3B I 5C MC 6C 7C"},J:{"1":"A","2":"D"},K:{"1":"q zB","2":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Blob constructing",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC","36":"J E F G A B C"},D:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E","36":"8 F G A B C K L H M N O"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B C dC eC fC gC zB NC hC"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC"},H:{"2":"4C"},I:{"1":"D","2":"5C 6C 7C","36":"4B I 8C OC 9C AD"},J:{"1":"A","2":"E"},K:{"1":"r 0B","2":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Blob constructing",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bloburls.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bloburls.js
      index 3025ff2f306ce7..259cca61501c24 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 NC","129":"A B"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D","33":"5 E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","33":"J"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B 2C 3C 4C","33":"I 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Blob URLs",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E","33":"8 F G A B C K L H M N O n o p"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","33":"J"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B 5C 6C 7C","33":"I 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Blob URLs",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-image.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-image.js
      index 33ca00adf026a3..684d627ea218bc 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","129":"C K"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","260":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","804":"4 I J D E F A B C K L QC RC"},D:{"1":"0 1 2 3 dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","260":"YB ZB aB bB cB","388":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","1412":"5 6 7 8 9 G M N O n o p AB BB CB","1956":"4 I J D E F A B C K L"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","129":"A B C K L G WC AC yB zB BC XC YC CC","1412":"J D E F UC VC","1956":"4 I SC 9B TC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F bC cC","260":"LB MB NB OB PB","388":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB","1796":"dC eC","1828":"B C yB LC fC zB"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","129":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC","1412":"E iC jC kC lC","1956":"9B gC MC hC"},H:{"1828":"1C"},I:{"1":"H","388":"6C 7C","1956":"3B I 2C 3C 4C 5C MC"},J:{"1412":"A","1924":"D"},K:{"1":"q","2":"A","1828":"B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","260":"8C 9C","388":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","260":"LD"}},B:4,C:"CSS3 Border images",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","129":"C K"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","260":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","804":"7 I J E F G A B C K L RC SC"},D:{"1":"0 1 2 3 4 5 6 fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","260":"aB bB cB dB eB","388":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","1412":"8 9 H M N O n o p q AB BB CB DB EB","1956":"7 I J E F G A B C K L"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","129":"A B C K L H XC CC zB 0B DC YC ZC EC","1412":"J E F G VC WC","1956":"7 I TC BC UC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G dC eC","260":"NB OB PB QB RB","388":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB","1796":"fC gC","1828":"B C zB NC hC 0B"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","129":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC","1412":"F kC lC mC nC","1956":"BC iC OC jC"},H:{"1828":"4C"},I:{"1":"D","388":"9C AD","1956":"4B I 5C 6C 7C 8C OC"},J:{"1412":"A","1924":"E"},K:{"1":"r","2":"A","1828":"B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","260":"BD CD","388":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","260":"OD"}},B:4,C:"CSS3 Border images",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-radius.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-radius.js
      index 2991ddaeda9c82..8b904730b1ba80 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","257":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","289":"3B QC RC","292":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"I"},E:{"1":"4 D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","33":"I SC 9B","129":"J TC UC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"9B"},H:{"2":"1C"},I:{"1":"3B I H 3C 4C 5C MC 6C 7C","33":"2C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","257":"LD"}},B:4,C:"CSS3 Border-radius (rounded corners)",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","257":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","289":"4B RC SC","292":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"I"},E:{"1":"7 E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","33":"I TC BC","129":"J UC VC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"BC"},H:{"2":"4C"},I:{"1":"4B I D 6C 7C 8C OC 9C AD","33":"5C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","257":"OD"}},B:4,C:"CSS3 Border-radius (rounded corners)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/broadcastchannel.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/broadcastchannel.js
      index 602e86cc9dfe6d..1871a66e30f016 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB QC RC"},D:{"1":"0 1 2 3 bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB bC cC dC eC yB LC fC zB"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"BroadcastChannel",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB RC SC"},D:{"1":"0 1 2 3 4 5 6 dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB dC eC fC gC zB NC hC 0B"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"BroadcastChannel",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/brotli.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/brotli.js
      index cca88eda74ea01..5f04b3235dc8b5 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 NC"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L"},C:{"1":"0 1 2 3 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB QC RC"},D:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","194":"WB","257":"XB"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","513":"B C yB zB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB","194":"JB KB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB RC SC"},D:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","194":"YB","257":"ZB"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC","513":"B C zB 0B"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B","194":"LB MB"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/calc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/calc.js
      index 06e2a01d348a5a..a5676dcb70b82a 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 NC","260":"F","516":"A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","33":"4 I J D E F A B C K L G"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G M N O","33":"5 6 7 8 n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","33":"J"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"iC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","132":"6C 7C"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"calc() as CSS unit value",D:true};
      +module.exports={A:{A:{"2":"J E F PC","260":"G","516":"A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","33":"7 I J E F G A B C K L H"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H M N O","33":"8 9 n o p q AB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","33":"J"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"kC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","132":"9C AD"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"calc() as CSS unit value",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-blending.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-blending.js
      index b4c40ae99870ef..48955c2c6d130f 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C"},C:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O QC RC"},D:{"1":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC"},F:{"1":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C G M bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Canvas blend modes",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C"},C:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O RC SC"},D:{"1":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC"},F:{"1":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C H M dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Canvas blend modes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-text.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-text.js
      index e010e01e16b68e..0e409eee8501da 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":"NC","8":"J D E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","8":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","8":"F bC cC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","8":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Text API for Canvas",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"PC","8":"J E F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","8":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","8":"G dC eC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","8":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Text API for Canvas",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas.js
      index aaf942de8fd584..e56c87bd91f0cf 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":"NC","8":"J D E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","132":"OC 3B QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","132":"SC 9B"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"260":"1C"},I:{"1":"3B I H 5C MC 6C 7C","132":"2C 3C 4C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Canvas (basic support)",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"PC","8":"J E F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","132":"QC 4B RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","132":"TC BC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"260":"4C"},I:{"1":"4B I D 8C OC 9C AD","132":"5C 6C 7C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Canvas (basic support)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ch-unit.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ch-unit.js
      index 37beb088934038..cc50e12ee176c7 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 NC","132":"F A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"ch (character) unit",D:true};
      +module.exports={A:{A:{"2":"J E F PC","132":"G A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"ch (character) unit",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/chacha20-poly1305.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/chacha20-poly1305.js
      index 624ca377d4b4b0..ddd3e9fe3c3ced 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB QC RC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB","129":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C","16":"7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC SC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB","129":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C","16":"AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/channel-messaging.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/channel-messaging.js
      index 5a491a1a1cca6d..1e19a34a16c823 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 OC 3B I J D E F A B C K L G M N O n o p QC RC","194":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","2":"F bC cC","16":"dC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Channel messaging",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB RC SC","194":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","2":"G dC eC","16":"fC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Channel messaging",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/childnode-remove.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/childnode-remove.js
      index 9ef382891954ad..4fc44a8c0a8d8e 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","16":"C"},C:{"1":"0 1 2 3 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 I J D E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","16":"J"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"ChildNode.remove()",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","16":"C"},C:{"1":"0 1 2 3 4 5 6 9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o p RC SC"},D:{"1":"0 1 2 3 4 5 6 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n o p q"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","16":"J"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"ChildNode.remove()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/classlist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/classlist.js
      index c81f698210055c..815a2d7a4e0e17 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 NC","1924":"A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","8":"OC 3B QC","516":"7 8","772":"4 5 6 I J D E F A B C K L G M N O n o p RC"},D:{"1":"0 1 2 3 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","8":"4 I J D","516":"7 8 9 AB","772":"6","900":"5 E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"4 I SC 9B","900":"J TC UC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","8":"F B bC cC dC eC yB","900":"C LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"9B gC MC","900":"hC iC"},H:{"900":"1C"},I:{"1":"H 6C 7C","8":"2C 3C 4C","900":"3B I 5C MC"},J:{"1":"A","900":"D"},K:{"1":"q","8":"A B","900":"C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"900":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"classList (DOMTokenList)",D:true};
      +module.exports={A:{A:{"8":"J E F G PC","1924":"A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"QC 4B RC","516":"9 AB","772":"7 8 I J E F G A B C K L H M N O n o p q SC"},D:{"1":"0 1 2 3 4 5 6 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 I J E","516":"9 AB BB CB","772":"q","900":"8 F G A B C K L H M N O n o p"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"7 I TC BC","900":"J UC VC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","8":"G B dC eC fC gC zB","900":"C NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"BC iC OC","900":"jC kC"},H:{"900":"4C"},I:{"1":"D 9C AD","8":"5C 6C 7C","900":"4B I 8C OC"},J:{"1":"A","900":"E"},K:{"1":"r","8":"A B","900":"C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"900":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"classList (DOMTokenList)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js
      index 3effbd52888e6c..5d6d0f9bf0df23 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/clipboard.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/clipboard.js
      index 117528353c0534..c7181fea7de9c2 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 NC"},B:{"260":"N O","2436":"C K L G M","8196":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC","772":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB","4100":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 I J D E F A B C","2564":"5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","8196":"0 1 2 3 fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","10244":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"C K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC 9B","2308":"A B AC yB","2820":"4 I J D E F TC UC VC WC"},F:{"2":"F B bC cC dC eC yB LC fC","16":"C","516":"zB","2564":"5 6 7 8 9 G M N O n o p AB BB CB","8196":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","10244":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},G:{"1":"rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC","2820":"E hC iC jC kC lC mC nC oC pC qC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","260":"H","2308":"6C 7C"},J:{"2":"D","2308":"A"},K:{"2":"A B C yB LC","16":"zB","8196":"q"},L:{"8196":"H"},M:{"1028":"xB"},N:{"2":"A B"},O:{"8196":"0B"},P:{"2052":"8C 9C","2308":"I","8196":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"8196":"BC"},R:{"8196":"KD"},S:{"4100":"LD MD"}},B:5,C:"Synchronous Clipboard API",D:true};
      +module.exports={A:{A:{"2436":"J E F G A B PC"},B:{"260":"N O","2436":"C K L H M","8196":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC","772":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","4100":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 I J E F G A B C","2564":"8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","8196":"0 1 2 3 4 5 6 hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","10244":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"C K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC BC","2308":"A B CC zB","2820":"7 I J E F G UC VC WC XC"},F:{"2":"G B dC eC fC gC zB NC hC","16":"C","516":"0B","2564":"8 9 H M N O n o p q AB BB CB DB EB","8196":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","10244":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"1":"tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC","2820":"F jC kC lC mC nC oC pC qC rC sC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","260":"D","2308":"9C AD"},J:{"2":"E","2308":"A"},K:{"2":"A B C zB NC","16":"0B","8196":"r"},L:{"8196":"D"},M:{"1028":"D"},N:{"2":"A B"},O:{"8196":"1B"},P:{"2052":"BD CD","2308":"I","8196":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"8196":"DC"},R:{"8196":"ND"},S:{"4100":"OD PD"}},B:5,C:"Synchronous Clipboard API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js
      index 952639ccdb0a9b..cf78829f470b38 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 NC"},B:{"1":"0 1 2 3 h i j k l m r s t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g"},C:{"1":"0 1 2 3 u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g QC RC","258":"h i j k l m r","578":"s t"},D:{"1":"0 1 2 3 h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y","194":"Z a b c d e f g"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"16":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"16":"A B"},O:{"1":"0B"},P:{"1":"n o p ID JD","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"COLR/CPAL(v1) Font Formats",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 h i j k l m s t u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g"},C:{"1":"0 1 2 3 4 5 6 v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g RC SC","258":"h i j k l m s","578":"t u"},D:{"1":"0 1 2 3 4 5 6 h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y","194":"Z a b c d e f g"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"16":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"1B"},P:{"1":"n o p q LD MD","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"COLR/CPAL(v1) Font Formats",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js
      index 5d32482cc03956..d4ecd51dcdb90a 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 NC","257":"F A B"},B:{"1":"0 1 2 3 C K L G M N O x y z H","513":"P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w"},C:{"1":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB QC RC"},D:{"1":"0 1 2 3 x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB","513":"qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w"},E:{"1":"L G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","129":"B C K yB zB BC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB bC cC dC eC yB LC fC zB","513":"fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"16":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"16":"A B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"COLR/CPAL(v0) Font Formats",D:true};
      +module.exports={A:{A:{"2":"J E F PC","257":"G A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O y z D","513":"P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x"},C:{"1":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB RC SC"},D:{"1":"0 1 2 3 4 5 6 y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB","513":"sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x"},E:{"1":"L H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC","2":"7 I J E F G A TC BC UC VC WC XC CC","129":"B C K zB 0B DC","1026":"3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB dC eC fC gC zB NC hC 0B","513":"hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C","2":"F BC iC OC jC kC lC mC nC oC pC qC","1026":"3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"16":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"COLR/CPAL(v0) Font Formats",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/comparedocumentposition.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/comparedocumentposition.js
      index 594f57ced35da1..d1d0e10ab31274 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","16":"OC 3B QC RC"},D:{"1":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L","132":"5 6 7 8 9 G M N O n o p AB BB CB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I J SC 9B","132":"D E F UC VC WC","260":"TC"},F:{"1":"5 6 7 8 9 C N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","16":"F B bC cC dC eC yB LC","132":"G M"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B","132":"E gC MC hC iC jC kC lC mC"},H:{"1":"1C"},I:{"1":"H 6C 7C","16":"2C 3C","132":"3B I 4C 5C MC"},J:{"132":"D A"},K:{"1":"C q zB","16":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Node.compareDocumentPosition()",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L","132":"8 9 H M N O n o p q AB BB CB DB EB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I J TC BC","132":"E F G VC WC XC","260":"UC"},F:{"1":"8 9 C N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","16":"G B dC eC fC gC zB NC","132":"H M"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC","132":"F iC OC jC kC lC mC nC oC"},H:{"1":"4C"},I:{"1":"D 9C AD","16":"5C 6C","132":"4B I 7C 8C OC"},J:{"132":"E A"},K:{"1":"C r 0B","16":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Node.compareDocumentPosition()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-basic.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-basic.js
      index 053b005074bdfa..5f64de38011f69 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 NC","132":"E F"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","2":"F bC cC dC eC"},G:{"1":"9B gC MC hC","513":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"4097":"1C"},I:{"1025":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"258":"D A"},K:{"2":"A","258":"B C yB LC zB","1025":"q"},L:{"1025":"H"},M:{"2049":"xB"},N:{"258":"A B"},O:{"258":"0B"},P:{"1025":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1025":"KD"},S:{"1":"LD MD"}},B:1,C:"Basic console logging functions",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E PC","132":"F G"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","2":"G dC eC fC gC"},G:{"1":"BC iC OC jC","513":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"4097":"4C"},I:{"1025":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"258":"E A"},K:{"2":"A","258":"B C zB NC 0B","1025":"r"},L:{"1025":"D"},M:{"2049":"D"},N:{"258":"A B"},O:{"258":"1B"},P:{"1025":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1025":"ND"},S:{"1":"OD PD"}},B:1,C:"Basic console logging functions",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-time.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-time.js
      index d6fc55c4695121..bd72386cbb7678 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","2":"F bC cC dC eC","16":"B"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"q","16":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"console.time and console.timeEnd",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","2":"G dC eC fC gC","16":"B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"r","16":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"console.time and console.timeEnd",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/const.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/const.js
      index f44cd8d804c169..d3bb3b2e6772aa 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 NC","2052":"B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","132":"4 OC 3B I J D E F A B C QC RC","260":"5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","260":"4 5 I J D E F A B C K L G M N O n","772":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB","1028":"OB PB QB RB SB TB UB VB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","260":"4 I A SC 9B AC","772":"J D E F TC UC VC WC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F bC","132":"B cC dC eC yB LC","644":"C fC zB","772":"5 6 7 8 9 G M N O n o p AB","1028":"BB CB DB EB FB GB HB IB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","260":"9B gC MC nC oC","772":"E hC iC jC kC lC mC"},H:{"644":"1C"},I:{"1":"H","16":"2C 3C","260":"4C","772":"3B I 5C MC 6C 7C"},J:{"772":"D A"},K:{"1":"q","132":"A B yB LC","644":"C zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","1028":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"const",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","2052":"B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 QC 4B I J E F G A B C RC SC","260":"8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","260":"7 8 I J E F G A B C K L H M N O n","772":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","1028":"QB RB SB TB UB VB WB XB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","260":"7 I A TC BC CC","772":"J E F G UC VC WC XC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G dC","132":"B eC fC gC zB NC","644":"C hC 0B","772":"8 9 H M N O n o p q AB BB CB","1028":"DB EB FB GB HB IB JB KB"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","260":"BC iC OC pC qC","772":"F jC kC lC mC nC oC"},H:{"644":"4C"},I:{"1":"D","16":"5C 6C","260":"7C","772":"4B I 8C OC 9C AD"},J:{"772":"E A"},K:{"1":"r","132":"A B zB NC","644":"C 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","1028":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"const",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/constraint-validation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/constraint-validation.js
      index 3f84cbd62efd91..f51d1c87cb8bcb 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 NC","900":"A B"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","388":"L G M","900":"C K"},C:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","260":"WB XB","388":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","900":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB"},D:{"1":"0 1 2 3 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L","388":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB","900":"5 6 7 G M N O n o p"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B","388":"E F VC WC","900":"J D TC UC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F B bC cC dC eC yB LC","388":"5 6 7 8 9 G M N O n o p","900":"C fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC","388":"E jC kC lC mC","900":"hC iC"},H:{"2":"1C"},I:{"1":"H","16":"3B 2C 3C 4C","388":"6C 7C","900":"I 5C MC"},J:{"16":"D","388":"A"},K:{"1":"q","16":"A B yB LC","900":"C zB"},L:{"1":"H"},M:{"1":"xB"},N:{"900":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","388":"LD"}},B:1,C:"Constraint Validation API",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","900":"A B"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","388":"L H M","900":"C K"},C:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","260":"YB ZB","388":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","900":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB"},D:{"1":"0 1 2 3 4 5 6 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L","388":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","900":"8 9 H M N O n o p q"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC","388":"F G WC XC","900":"J E UC VC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G B dC eC fC gC zB NC","388":"8 9 H M N O n o p q AB BB","900":"C hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC","388":"F lC mC nC oC","900":"jC kC"},H:{"2":"4C"},I:{"1":"D","16":"4B 5C 6C 7C","388":"9C AD","900":"I 8C OC"},J:{"16":"E","388":"A"},K:{"1":"r","16":"A B zB NC","900":"C 0B"},L:{"1":"D"},M:{"1":"D"},N:{"900":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","388":"OD"}},B:1,C:"Constraint Validation API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contenteditable.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contenteditable.js
      index 4b131afedfed0b..0241f22d57fe9d 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC","4":"3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"D A"},K:{"1":"q zB","2":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"contenteditable attribute (basic support)",D:true};
      +module.exports={A:{A:{"1":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC","4":"4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"E A"},K:{"1":"r 0B","2":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"contenteditable attribute (basic support)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js
      index 5f7412a84d4f28..e8376bb3dcf3f3 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 NC","132":"A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","129":"4 5 I J D E F A B C K L G M N O n o p"},D:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K","257":"5 6 7 L G M N O n o p"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B","257":"J UC","260":"TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC","257":"iC","260":"hC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D","257":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Content Security Policy 1.0",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","129":"7 8 I J E F G A B C K L H M N O n o p"},D:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K","257":"8 9 L H M N O n o p q"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC","257":"J VC","260":"UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC","257":"kC","260":"jC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E","257":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Content Security Policy 1.0",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js
      index 06222242b62ed6..6af15fbe0d3a88 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L","4100":"G M N O"},C:{"1":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB QC RC","132":"EB FB GB HB","260":"IB","516":"JB KB LB MB NB OB PB QB RB"},D:{"1":"0 1 2 3 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB","1028":"JB KB LB","2052":"MB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n o p bC cC dC eC yB LC fC zB","1028":"6 7 8","2052":"9"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Content Security Policy Level 2",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L","4100":"H M N O"},C:{"1":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB RC SC","132":"GB HB IB JB","260":"KB","516":"LB MB NB OB PB QB RB SB TB"},D:{"1":"0 1 2 3 4 5 6 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB","1028":"LB MB NB","2052":"OB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p dC eC fC gC zB NC hC 0B","1028":"9 q AB","2052":"BB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Content Security Policy Level 2",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cookie-store-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cookie-store-api.js
      index 0839ca77d7a133..20d934f31f1b0f 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 NC"},B:{"1":"0 1 2 3 W X Y Z a b c d e f g h i j k l m r s t u v w x y z 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 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB","194":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB bC cC dC eC yB LC fC zB","194":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"Cookie Store API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O","194":"P Q R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB","194":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB dC eC fC gC zB NC hC 0B","194":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"Cookie Store API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cors.js
      index 844fe3324c4f9c..a57642f8ba4d6d 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 NC","132":"A","260":"E F"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B","1025":"5B hB iB jB kB lB mB nB oB pB"},D:{"1":"0 1 2 3 5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 I J D E F A B C"},E:{"2":"SC 9B","513":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","644":"4 I TC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC yB LC fC"},G:{"513":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","644":"9B gC MC hC"},H:{"2":"1C"},I:{"1":"H 6C 7C","132":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","132":"D"},K:{"1":"C q zB","2":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","132":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Cross-Origin Resource Sharing",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E PC","132":"A","260":"F G"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B","1025":"6B jB kB lB mB nB oB pB qB rB"},D:{"1":"0 1 2 3 4 5 6 8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 I J E F G A B C"},E:{"2":"TC BC","513":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","644":"7 I UC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC zB NC hC"},G:{"513":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","644":"BC iC OC jC"},H:{"2":"4C"},I:{"1":"D 9C AD","132":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","132":"E"},K:{"1":"C r 0B","2":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","132":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Cross-Origin Resource Sharing",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/createimagebitmap.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/createimagebitmap.js
      index 15369a1f581ac6..31286966238040 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB QC RC","1028":"c d e f g","3076":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b","8196":"0 1 2 3 h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","132":"XB YB","260":"ZB aB","516":"bB cB dB eB fB"},E:{"2":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC XC","4100":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB bC cC dC eC yB LC fC zB","132":"KB LB","260":"MB NB","516":"OB PB QB RB SB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC","4100":"zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"8196":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","16":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"3076":"LD MD"}},B:1,C:"createImageBitmap",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RC SC","1028":"c d e f g","3076":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b","8196":"0 1 2 3 4 5 6 h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","132":"ZB aB","260":"bB cB","516":"dB eB fB gB hB"},E:{"2":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC YC","4100":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB dC eC fC gC zB NC hC 0B","132":"MB NB","260":"OB PB","516":"QB RB SB TB UB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C","4100":"1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"8196":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","16":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"3076":"OD PD"}},B:1,C:"createImageBitmap",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/credential-management.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/credential-management.js
      index 947aad23e6687e..4bdb11aba9c4da 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","66":"VB WB XB","129":"YB ZB aB bB cB dB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB bC cC dC eC yB LC fC zB"},G:{"1":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:5,C:"Credential Management API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","66":"XB YB ZB","129":"aB bB cB dB eB fB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB dC eC fC gC zB NC hC 0B"},G:{"1":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:5,C:"Credential Management API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cryptography.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cryptography.js
      index 14632dd1338441..4f5adad2058773 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":"NC","8":"J D E F A","164":"B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","513":"C K L G M N O"},C:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","8":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB QC RC","66":"FB GB"},D:{"1":"0 1 2 3 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","8":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"4 I J D SC 9B TC UC","289":"E F A VC WC AC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","8":"5 6 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"9B gC MC hC iC jC","289":"E kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","8":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"8":"D A"},K:{"1":"q","8":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"8":"A","164":"B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Web Cryptography",D:true};
      +module.exports={A:{A:{"2":"PC","8":"J E F G A","164":"B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","513":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB RC SC","66":"HB IB"},D:{"1":"0 1 2 3 4 5 6 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"7 I J E TC BC UC VC","289":"F G A WC XC CC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","8":"8 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"BC iC OC jC kC lC","289":"F mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","8":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"8":"E A"},K:{"1":"r","8":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A","164":"B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Web Cryptography",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-all.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-all.js
      index ecba177dd2a506..e97f1f5ff05e82 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC"},H:{"2":"1C"},I:{"1":"H 7C","2":"3B I 2C 3C 4C 5C MC 6C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS all property",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB RC SC"},D:{"1":"0 1 2 3 4 5 6 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC"},H:{"2":"4C"},I:{"1":"D AD","2":"4B I 5C 6C 7C 8C OC 9C"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS all property",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-anchor-positioning.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-anchor-positioning.js
      index 5572a7d3237398..e1c0dff15052fe 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-anchor-positioning.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-anchor-positioning.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z","194":"H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Anchor Positioning",D:false};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","194":"5 6 D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Anchor Positioning",D:false};
      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 ec65278e811cdc..e2fce5a0816efe 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B I QC RC","33":"4 J D E F A B C K L G"},D:{"1":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B","33":"J D E TC UC VC","292":"4 I"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC yB LC fC","33":"5 6 7 8 9 C G M N O n o p AB BB CB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"E iC jC kC","164":"9B gC MC hC"},H:{"2":"1C"},I:{"1":"H","33":"I 5C MC 6C 7C","164":"3B 2C 3C 4C"},J:{"33":"D A"},K:{"1":"q zB","2":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"CSS Animation",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B I RC SC","33":"7 J E F G A B C K L H"},D:{"1":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC","33":"J E F UC VC WC","292":"7 I"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC zB NC hC","33":"8 9 C H M N O n o p q AB BB CB DB EB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"F kC lC mC","164":"BC iC OC jC"},H:{"2":"4C"},I:{"1":"D","33":"I 8C OC 9C AD","164":"4B 5C 6C 7C"},J:{"33":"E A"},K:{"1":"r 0B","2":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"CSS Animation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-any-link.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-any-link.js
      index 3cd7c17dbf2ab2..26855268409d59 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","16":"OC","33":"4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB QC RC"},D:{"1":"0 1 2 3 kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I J SC 9B TC","33":"D E UC VC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC hC","33":"E iC jC kC"},H:{"2":"1C"},I:{"1":"H","16":"3B I 2C 3C 4C 5C MC","33":"6C 7C"},J:{"16":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p CD AC DD ED FD GD HD 1B 2B ID JD","16":"I","33":"8C 9C AD BD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","33":"LD"}},B:5,C:"CSS :any-link selector",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"QC","33":"7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB RC SC"},D:{"1":"0 1 2 3 4 5 6 mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I J TC BC UC","33":"E F VC WC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC jC","33":"F kC lC mC"},H:{"2":"4C"},I:{"1":"D","16":"4B I 5C 6C 7C 8C OC","33":"9C AD"},J:{"16":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD","16":"I","33":"BD CD DD ED"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","33":"OD"}},B:5,C:"CSS :any-link selector",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-appearance.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-appearance.js
      index a933af239fb197..dd46bb3ce7670c 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 NC"},B:{"1":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"0 1 2 3 Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","164":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P","676":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB QC RC"},D:{"1":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"S","164":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","164":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC"},F:{"1":"q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"pB qB rB","164":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","164":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"1":"H","164":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"164":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A","388":"B"},O:{"1":"0B"},P:{"164":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"164":"BC"},R:{"1":"KD"},S:{"1":"MD","164":"LD"}},B:5,C:"CSS Appearance",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","33":"S","164":"P Q R","388":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","164":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P","676":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB RC SC"},D:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"S","164":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","164":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC"},F:{"1":"r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"rB sB tB","164":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","164":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"1":"D","164":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"164":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","388":"B"},O:{"1":"1B"},P:{"164":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"164":"DC"},R:{"1":"ND"},S:{"1":"PD","164":"OD"}},B:5,C:"CSS Appearance",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js
      index b9b34912d48f43..988c5b73ae0301 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 NC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","132":"0 1 2 3 a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB QC RC","132":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z","132":"0 1 2 3 a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC","4":"2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB bC cC dC eC yB LC fC zB","132":"vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC","4":"2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","132":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","132":"q"},L:{"132":"H"},M:{"132":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I 8C 9C AD BD CD AC DD ED FD GD HD","132":"n o p 1B 2B ID JD"},Q:{"2":"BC"},R:{"132":"KD"},S:{"132":"LD MD"}},B:4,C:"CSS Counter Styles",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z","132":"0 1 2 3 4 5 6 a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB RC SC","132":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z","132":"0 1 2 3 4 5 6 a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC","4":"3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB dC eC fC gC zB NC hC 0B","132":"xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C","4":"3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","132":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","132":"r"},L:{"132":"D"},M:{"132":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I BD CD DD ED FD CC GD HD ID JD KD","132":"n o p q 2B 3B LD MD"},Q:{"2":"DC"},R:{"132":"ND"},S:{"132":"OD PD"}},B:4,C:"CSS Counter Styles",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js
      index 3ceef876f13d36..56e60797bb94c7 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 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U QC RC"},M:{"1":"xB"},A:{"2":"J D E F A B NC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},K:{"2":"A B C yB LC zB","33":"q"},E:{"1":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"aC","33":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC XC"},G:{"1":"zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC"},P:{"33":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},I:{"2":"3B I 2C 3C 4C 5C MC","33":"H 6C 7C"}},B:6,C:":autofill CSS pseudo-class",D:undefined};
      +module.exports={A:{D:{"33":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},L:{"33":"D"},B:{"2":"C K L H M N O","33":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U RC SC"},M:{"1":"D"},A:{"2":"J E F G A B PC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},K:{"2":"A B C zB NC 0B","33":"r"},E:{"1":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"cC","33":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC YC"},G:{"1":"1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C"},P:{"33":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},I:{"2":"4B I 5C 6C 7C 8C OC","33":"D 9C AD"}},B:6,C:":autofill CSS pseudo-class",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backdrop-filter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backdrop-filter.js
      index 293a0acceca043..4a758157e25f3f 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M","257":"N O"},C:{"1":"0 1 2 3 m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB QC RC","578":"pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l"},D:{"1":"0 1 2 3 uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB"},E:{"2":"4 I J D E SC 9B TC UC VC","33":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB bC cC dC eC yB LC fC zB","194":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},G:{"2":"E 9B gC MC hC iC jC kC","33":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p ED FD GD HD 1B 2B ID JD","2":"I","194":"8C 9C AD BD CD AC DD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS Backdrop Filter",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M","257":"N O"},C:{"1":"0 1 2 3 4 5 6 m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB RC SC","578":"rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l"},D:{"1":"0 1 2 3 4 5 6 wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","194":"WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB"},E:{"2":"7 I J E F TC BC UC VC WC","33":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB dC eC fC gC zB NC hC 0B","194":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},G:{"2":"F BC iC OC jC kC lC mC","33":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q HD ID JD KD 2B 3B LD MD","2":"I","194":"BD CD DD ED FD CC GD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"CSS Backdrop Filter",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-background-offsets.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-background-offsets.js
      index d40745de99bdcf..ffc7c36cff1083 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C QC RC"},D:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 I J D E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS background-position edge offsets",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C RC SC"},D:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS background-position edge offsets",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js
      index 6f96aa7b43c43b..870fd15af5df47 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB QC RC"},D:{"1":"0 1 2 3 IB JB KB LB MB NB OB PB QB RB SB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB","260":"TB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC","132":"E F A VC WC"},F:{"1":"6 7 8 9 p AB BB CB DB EB FB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n o bC cC dC eC yB LC fC zB","260":"GB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC","132":"E kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS background-blend-mode",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB RC SC"},D:{"1":"0 1 2 3 4 5 6 KB LB MB NB OB PB QB RB SB TB UB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB","260":"VB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC","132":"F G A WC XC"},F:{"1":"9 p q AB BB CB DB EB FB GB HB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o dC eC fC gC zB NC hC 0B","260":"IB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC","132":"F mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS background-blend-mode",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js
      index 09e8730776d5da..49a9ae36a7e3ff 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 NC"},B:{"2":"C K L G M N O","164":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB QC RC"},D:{"2":"4 5 I J D E F A B C K L G M N O n o","164":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J SC 9B TC","164":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F bC cC dC eC","129":"B C yB LC fC zB","164":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"9B gC MC hC iC","164":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"132":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","164":"H 6C 7C"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C yB LC zB","164":"q"},L:{"164":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"164":"0B"},P:{"164":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"164":"BC"},R:{"164":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS box-decoration-break",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","164":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB RC SC"},D:{"2":"7 8 I J E F G A B C K L H M N O n o","164":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J TC BC UC","164":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G dC eC fC gC","129":"B C zB NC hC 0B","164":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"BC iC OC jC kC","164":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"132":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","164":"D 9C AD"},J:{"2":"E","164":"A"},K:{"2":"A","129":"B C zB NC 0B","164":"r"},L:{"164":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"1B"},P:{"164":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"164":"DC"},R:{"164":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS box-decoration-break",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxshadow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxshadow.js
      index 370c7a7e5852fe..4a094514bbd61f 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","33":"QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 I J D E F"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","33":"4","164":"I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"gC MC","164":"9B"},H:{"2":"1C"},I:{"1":"I H 5C MC 6C 7C","164":"3B 2C 3C 4C"},J:{"1":"A","33":"D"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS3 Box-shadow",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","33":"RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 I J E F G"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","33":"7","164":"I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"iC OC","164":"BC"},H:{"2":"4C"},I:{"1":"I D 8C OC 9C AD","164":"4B 5C 6C 7C"},J:{"1":"A","33":"E"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS3 Box-shadow",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-canvas.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-canvas.js
      index 8da18735cda296..f2b8b084b1aa62 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"2":"SC 9B","33":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB"},G:{"33":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"H","33":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"33":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","33":"I"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS Canvas Drawings",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"2":"TC BC","33":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB"},G:{"33":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"D","33":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"33":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","33":"I"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"CSS Canvas Drawings",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-caret-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-caret-color.js
      index 2fef7998b0ab1d..c2f22613c1d3f3 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB QC RC"},D:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:2,C:"CSS caret-color",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB RC SC"},D:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:2,C:"CSS caret-color",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-layers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-layers.js
      index 8b57f9505ee72b..b7e4e7bf9afaee 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 NC"},B:{"1":"0 1 2 3 i j k l m r s t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e","322":"f g h"},C:{"1":"0 1 2 3 g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c QC RC","194":"d e f"},D:{"1":"0 1 2 3 i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e","322":"f g h"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U bC cC dC eC yB LC fC zB"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p ID JD","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:4,C:"CSS Cascade Layers",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 i j k l m s t u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e","322":"f g h"},C:{"1":"0 1 2 3 4 5 6 g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c RC SC","194":"d e f"},D:{"1":"0 1 2 3 4 5 6 i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e","322":"f g h"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U dC eC fC gC zB NC hC 0B"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q LD MD","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:4,C:"CSS Cascade Layers",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-scope.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-scope.js
      index 2a5b60857cf112..1ae551bd7c41e9 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-scope.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-scope.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 1 2 3 r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 1 2 3 r s t u v w x y z H"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y bC cC dC eC yB LC fC zB","194":"Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"194":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Scoped Styles: the @scope rule",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"6 D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 1 2 3 4 5 s t u v w x y z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"6 D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 1 2 3 4 5 s t u v w x y z"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y dC eC fC gC zB NC hC 0B","194":"Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Scoped Styles: the @scope rule",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-case-insensitive.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-case-insensitive.js
      index 2bb93583920bcc..da51043fb4fe0e 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB QC RC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Case-insensitive CSS attribute selectors",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC SC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Case-insensitive CSS attribute selectors",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-clip-path.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-clip-path.js
      index 8d7a7810a6c70d..4d9a9888aa7dbe 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 NC"},B:{"2":"C K L G M N","260":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","3138":"O"},C:{"1":"0 1 2 3 bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","132":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB QC RC","644":"UB VB WB XB YB ZB aB"},D:{"2":"4 5 6 I J D E F A B C K L G M N O n o p","260":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","292":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"2":"4 I J SC 9B TC UC","260":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","292":"D E F A B C K VC WC AC yB zB"},F:{"2":"F B C bC cC dC eC yB LC fC zB","260":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","292":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"2":"9B gC MC hC iC","260":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","292":"E jC kC lC mC nC oC pC qC rC sC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","260":"H","292":"6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","260":"q"},L:{"260":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"260":"0B"},P:{"292":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"260":"BC"},R:{"260":"KD"},S:{"1":"MD","644":"LD"}},B:4,C:"CSS clip-path property (for HTML)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N","260":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","3138":"O"},C:{"1":"0 1 2 3 4 5 6 dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","132":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC SC","644":"WB XB YB ZB aB bB cB"},D:{"2":"7 8 I J E F G A B C K L H M N O n o p q","260":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","292":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"2":"7 I J TC BC UC VC","260":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","292":"E F G A B C K WC XC CC zB 0B"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","260":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","292":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"2":"BC iC OC jC kC","260":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","292":"F lC mC nC oC pC qC rC sC tC uC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","260":"D","292":"9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","260":"r"},L:{"260":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"260":"1B"},P:{"292":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"260":"DC"},R:{"260":"ND"},S:{"1":"PD","644":"OD"}},B:4,C:"CSS clip-path property (for HTML)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-adjust.js
      index dc68674d9038d6..8d90dab39d2fd7 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 NC"},B:{"2":"C K L G M N O","33":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB QC RC"},D:{"16":"4 I J D E F A B C K L G M N O","33":"0 1 2 3 5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","33":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"16":"3B I 2C 3C 4C 5C MC 6C 7C","33":"H"},J:{"16":"D A"},K:{"2":"A B C yB LC zB","33":"q"},L:{"16":"H"},M:{"1":"xB"},N:{"16":"A B"},O:{"16":"0B"},P:{"16":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"33":"BC"},R:{"16":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS print-color-adjust",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","33":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB RC SC"},D:{"16":"7 I J E F G A B C K L H M N O","33":"0 1 2 3 4 5 6 8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","33":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"16":"4B I 5C 6C 7C 8C OC 9C AD","33":"D"},J:{"16":"E A"},K:{"2":"A B C zB NC 0B","33":"r"},L:{"16":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"16":"1B"},P:{"16":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"33":"DC"},R:{"16":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS print-color-adjust",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-function.js
      index 062ff7318a223b..e6d7c243b26aab 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 NC"},B:{"1":"0 1 2 3 y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u","322":"v w x"},C:{"1":"0 1 2 3 H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x QC RC","578":"y z"},D:{"1":"0 1 2 3 y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u","322":"v w x"},E:{"1":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC","132":"B C K L AC yB zB BC XC"},F:{"1":"h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d bC cC dC eC yB LC fC zB","322":"e f g"},G:{"1":"zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC","132":"oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"p","2":"I n o 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:4,C:"CSS color() function",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v","322":"w x y"},C:{"1":"1 2 3 4 5 6 D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y RC SC","578":"0 z"},D:{"1":"0 1 2 3 4 5 6 z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v","322":"w x y"},E:{"1":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC","132":"B C K L CC zB 0B DC YC"},F:{"1":"h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d dC eC fC gC zB NC hC 0B","322":"e f g"},G:{"1":"1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC","132":"qC rC sC tC uC vC wC xC yC zC 0C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"p q","2":"I n o BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:4,C:"CSS color() function",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-conic-gradients.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-conic-gradients.js
      index b0d6449a4ce4fe..f98aa8454e190d 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB QC RC","578":"tB uB vB wB P Q R 6B"},D:{"1":"0 1 2 3 qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","257":"oB pB","450":"4B gB 5B hB iB jB kB lB mB nB"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB"},F:{"1":"fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB bC cC dC eC yB LC fC zB","257":"dB eB","450":"TB UB VB WB XB YB ZB aB bB cB"},G:{"1":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"CSS Conical Gradients",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB RC SC","578":"vB wB xB yB P Q R 7B"},D:{"1":"0 1 2 3 4 5 6 sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","257":"qB rB","450":"5B iB 6B jB kB lB mB nB oB pB"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB"},F:{"1":"hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB dC eC fC gC zB NC hC 0B","257":"fB gB","450":"VB WB XB YB ZB aB bB cB dB eB"},G:{"1":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"CSS Conical Gradients",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries-style.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries-style.js
      index bac9d40464266c..cee69580eb7a2e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries-style.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries-style.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t","194":"u v w x","260":"0 1 2 3 y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t","194":"u v w x","260":"0 1 2 3 y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b bC cC dC eC yB LC fC zB","194":"c d e f g","260":"h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","260":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","194":"q"},L:{"260":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","260":"p"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Container Style Queries",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u","194":"v w x y","260":"0 1 2 3 4 5 6 z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u","194":"v w x y","260":"0 1 2 3 4 5 6 z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b dC eC fC gC zB NC hC 0B","194":"c d e f g","260":"h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","260":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","194":"r"},L:{"260":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","260":"p q"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Container Style Queries",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries.js
      index cbfc93cc815fb7..9ef03d91e99f45 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 NC"},B:{"1":"0 1 2 3 t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r","516":"s"},C:{"1":"0 1 2 3 x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w QC RC"},D:{"1":"0 1 2 3 t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a","194":"c d e f g h i j k l m r","450":"b","516":"s"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"1":"d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB bC cC dC eC yB LC fC zB","194":"P Q R 6B S T U V W X Y Z","516":"a b c"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Container Queries (Size)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s","516":"t"},C:{"1":"0 1 2 3 4 5 6 y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x RC SC"},D:{"1":"0 1 2 3 4 5 6 u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a","194":"c d e f g h i j k l m s","450":"b","516":"t"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"1":"d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB dC eC fC gC zB NC hC 0B","194":"P Q R 7B S T U V W X Y Z","516":"a b c"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Container Queries (Size)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js
      index f53f342f21e768..2f3923a59bed2a 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 NC"},B:{"1":"0 1 2 3 s t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r"},C:{"1":"0 1 2 3 x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w QC RC"},D:{"1":"0 1 2 3 s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b","194":"k l m r","450":"c d e f g h i j"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"1":"a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB bC cC dC eC yB LC fC zB","194":"P Q R 6B S T U V W X Y Z"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Container Query Units",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 t u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s"},C:{"1":"0 1 2 3 4 5 6 y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x RC SC"},D:{"1":"0 1 2 3 4 5 6 t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b","194":"k l m s","450":"c d e f g h i j"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"1":"a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB dC eC fC gC zB NC hC 0B","194":"P Q R 7B S T U V W X Y Z"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Container Query Units",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js
      index 62f3af88372d15..a6415f046be81f 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB QC RC","194":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB"},D:{"1":"0 1 2 3 ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","66":"YB"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB bC cC dC eC yB LC fC zB","66":"LB MB"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","194":"LD"}},B:2,C:"CSS Containment",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB RC SC","194":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB"},D:{"1":"0 1 2 3 4 5 6 bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","66":"aB"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB dC eC fC gC zB NC hC 0B","66":"NB OB"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","194":"OD"}},B:2,C:"CSS Containment",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-content-visibility.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-content-visibility.js
      index ab7444727025be..2d89032e401ff4 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 NC"},B:{"1":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O P Q R S T"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v QC RC","194":"0 1 2 3 w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS content-visibility",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O P Q R S T"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w RC SC","194":"0 1 2 3 4 5 6 x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T"},E:{"1":"cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC"},F:{"1":"sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS content-visibility",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-counters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-counters.js
      index 1f7b5f486895fc..4442e95e9be3d6 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS Counters",D:true};
      +module.exports={A:{A:{"1":"F G A B","2":"J E PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS Counters",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-crisp-edges.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-crisp-edges.js
      index fa02f6143f29b7..4d8b0d63869e2f 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 NC","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC","513":"kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b","545":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB","1025":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","164":"J","4644":"D E F UC VC WC"},F:{"2":"5 6 7 8 9 F B G M N O n o p AB bC cC dC eC yB LC","545":"C fC zB","1025":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC","4260":"hC iC","4644":"E jC kC lC mC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B yB LC","545":"C zB","1025":"q"},L:{"1025":"H"},M:{"1":"xB"},N:{"2340":"A B"},O:{"1025":"0B"},P:{"1025":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1025":"BC"},R:{"1025":"KD"},S:{"1":"MD","4097":"LD"}},B:4,C:"Crisp edges/pixelated images",D:true};
      +module.exports={A:{A:{"2":"J PC","2340":"E F G A B"},B:{"2":"C K L H M N O","1025":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC","513":"mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b","545":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","1025":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","164":"J","4644":"E F G VC WC XC"},F:{"2":"8 9 G B H M N O n o p q AB BB CB dC eC fC gC zB NC","545":"C hC 0B","1025":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC","4260":"jC kC","4644":"F lC mC nC oC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","1025":"D"},J:{"2":"E","4260":"A"},K:{"2":"A B zB NC","545":"C 0B","1025":"r"},L:{"1025":"D"},M:{"1":"D"},N:{"2340":"A B"},O:{"1025":"1B"},P:{"1025":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1025":"DC"},R:{"1025":"ND"},S:{"1":"PD","4097":"OD"}},B:4,C:"Crisp edges/pixelated images",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cross-fade.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cross-fade.js
      index 915b7e5b424a4f..7f3e5f83d3480e 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 NC"},B:{"2":"C K L G M N O","33":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 I J D E F A B C K L G M","33":"0 1 2 3 5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B","33":"J D E F TC UC VC WC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC","33":"E hC iC jC kC lC mC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","33":"H 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","33":"q"},L:{"33":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"33":"0B"},P:{"33":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"33":"BC"},R:{"33":"KD"},S:{"2":"LD MD"}},B:4,C:"CSS Cross-Fade Function",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","33":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 I J E F G A B C K L H M","33":"0 1 2 3 4 5 6 8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC","33":"J E F G UC VC WC XC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC","33":"F jC kC lC mC nC oC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","33":"D 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","33":"r"},L:{"33":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"33":"1B"},P:{"33":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"33":"DC"},R:{"33":"ND"},S:{"2":"OD PD"}},B:4,C:"CSS Cross-Fade Function",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-default-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-default-pseudo.js
      index 42fd8d18876d68..0e3e1e2dc65cd6 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","16":"OC 3B QC RC"},D:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B","132":"J D E F A TC UC VC WC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F B bC cC dC eC yB LC","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB","260":"C fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC hC iC","132":"E jC kC lC mC nC"},H:{"260":"1C"},I:{"1":"H","16":"3B 2C 3C 4C","132":"I 5C MC 6C 7C"},J:{"16":"D","132":"A"},K:{"1":"q","16":"A B C yB LC","260":"zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","132":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:":default CSS pseudo-class",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC","132":"J E F G A UC VC WC XC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G B dC eC fC gC zB NC","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB","260":"C hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC jC kC","132":"F lC mC nC oC pC"},H:{"260":"4C"},I:{"1":"D","16":"4B 5C 6C 7C","132":"I 8C OC 9C AD"},J:{"16":"E","132":"A"},K:{"1":"r","16":"A B C zB NC","260":"0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","132":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:":default CSS pseudo-class",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js
      index 0d82c1adba1ca2..7c584bba68b4e6 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 NC"},B:{"2":"0 1 2 3 C K L G M N O Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"B","2":"4 I J D E F A C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Explicit descendant combinator >>",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"B","2":"7 I J E F G A C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Explicit descendant combinator >>",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-deviceadaptation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-deviceadaptation.js
      index 53244994a87da2..d2292e5801f3a0 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 NC","164":"A B"},B:{"66":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB","66":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB bC cC dC eC yB LC fC zB","66":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"292":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A q","292":"B C yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"164":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"66":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Device Adaptation",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","164":"A B"},B:{"66":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","164":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB","66":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB dC eC fC gC zB NC hC 0B","66":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"292":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A r","292":"B C zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"164":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"66":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Device Adaptation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-dir-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-dir-pseudo.js
      index 4c2f14ed80c068..af36d5bb2ceeac 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 NC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r","194":"0 1 2 3 s t u v w x y z H"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M QC RC","33":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z","194":"0 1 2 3 a b c d e f g h i j k l m r s t u v w x y z H xB 7B"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z bC cC dC eC yB LC fC zB","194":"a b c d e f g h i j k l m"},G:{"1":"HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"MD","33":"LD"}},B:5,C:":dir() CSS pseudo-class",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s","194":"0 1 2 3 4 5 6 t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M RC SC","33":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z","194":"0 1 2 3 4 5 6 a b c d e f g h i j k l m s t u v w x y z D"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z dC eC fC gC zB NC hC 0B","194":"a b c d e f g h i j k l m"},G:{"1":"JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"PD","33":"OD"}},B:5,C:":dir() CSS pseudo-class",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-display-contents.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-display-contents.js
      index bfc83ec37c2359..711c82fb888f9f 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 NC"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X","260":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB QC RC","132":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B","260":"0 1 2 3 hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","132":"kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X","194":"fB 4B gB 5B hB iB jB","260":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B SC 9B TC UC VC WC AC","132":"C K L G yB zB BC XC YC CC DC 0B ZC","260":"2B KC aC","772":"1B EC FC GC HC IC JC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB bC cC dC eC yB LC fC zB","132":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB","260":"uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC","132":"qC rC sC tC uC vC","260":"wC xC yC zC CC DC 0B 0C","516":"EC FC GC HC IC JC","772":"1B"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","260":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","260":"q"},L:{"260":"H"},M:{"260":"xB"},N:{"2":"A B"},O:{"132":"0B"},P:{"2":"I 8C 9C AD BD","132":"CD AC DD ED FD GD","260":"n o p HD 1B 2B ID JD"},Q:{"132":"BC"},R:{"260":"KD"},S:{"132":"LD","260":"MD"}},B:4,C:"CSS display: contents",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","132":"P Q R S T U V W X","260":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB RC SC","132":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B","260":"0 1 2 3 4 5 6 jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","132":"mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X","194":"hB 5B iB 6B jB kB lB","260":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B TC BC UC VC WC XC CC","132":"C K L H zB 0B DC YC ZC EC FC 1B aC","260":"3B LC MC cC","772":"2B GC HC IC JC KC bC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB dC eC fC gC zB NC hC 0B","132":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB","260":"wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC","132":"sC tC uC vC wC xC","260":"yC zC 0C 1C EC FC 1B 2C","516":"GC HC IC JC KC 3C","772":"2B"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","260":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","260":"r"},L:{"260":"D"},M:{"260":"D"},N:{"2":"A B"},O:{"132":"1B"},P:{"2":"I BD CD DD ED","132":"FD CC GD HD ID JD","260":"n o p q KD 2B 3B LD MD"},Q:{"132":"DC"},R:{"260":"ND"},S:{"132":"OD","260":"PD"}},B:4,C:"CSS display: contents",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-element-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-element-function.js
      index 809edb4da8861a..8397f9f6a7db15 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","164":"OC 3B QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"33":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"33":"LD MD"}},B:5,C:"CSS element() function",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","164":"QC 4B RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"33":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"33":"OD PD"}},B:5,C:"CSS element() function",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-env-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-env-function.js
      index 7349c022d67b1c..df3748aa0fdeb5 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB QC RC"},D:{"1":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","132":"B"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC","132":"pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:7,C:"CSS Environment Variables env()",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB RC SC"},D:{"1":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC","132":"B"},F:{"1":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC","132":"rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:7,C:"CSS Environment Variables env()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-exclusions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-exclusions.js
      index 2197d5ed543921..61750f59ed051e 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 NC","33":"A B"},B:{"2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"33":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Exclusions Level 1",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","33":"A B"},B:{"2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","33":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"33":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Exclusions Level 1",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-featurequeries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-featurequeries.js
      index 10df855f6fb7f2..c75423340fea23 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC"},D:{"1":"0 1 2 3 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B C bC cC dC eC yB LC fC"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS Feature Queries",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC"},D:{"1":"0 1 2 3 4 5 6 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B C dC eC fC gC zB NC hC"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS Feature Queries",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js
      index b9eb1b8121fc6b..de4ecd38e71c94 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js
      @@ -1 +1 @@
      -module.exports={A:{D:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X"},L:{"1":"H"},B:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H","33":"C K L G M N O P Q R S T U V W X"},C:{"1":"0 1 2 3 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R QC RC"},M:{"1":"xB"},A:{"2":"J D E F NC","33":"A B"},F:{"1":"tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB"},K:{"1":"q","2":"A B C yB LC zB"},E:{"1":"G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"aC","33":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC"},G:{"1":"yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC"},P:{"1":"n o p HD 1B 2B ID JD","33":"I 8C 9C AD BD CD AC DD ED FD GD"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","33":"6C 7C"}},B:6,C:"::file-selector-button CSS pseudo-element",D:undefined};
      +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X"},L:{"1":"D"},B:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D","33":"C K L H M N O P Q R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R RC SC"},M:{"1":"D"},A:{"2":"J E F G PC","33":"A B"},F:{"1":"vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB"},K:{"1":"r","2":"A B C zB NC 0B"},E:{"1":"H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"cC","33":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC"},G:{"1":"0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC"},P:{"1":"n o p q KD 2B 3B LD MD","33":"I BD CD DD ED FD CC GD HD ID JD"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","33":"9C AD"}},B:6,C:"::file-selector-button CSS pseudo-element",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filter-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filter-function.js
      index b43ff3d7fc4c81..a8cda86beef69a 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC","33":"F"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC","33":"lC mC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS filter() function",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC","33":"G"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC","33":"nC oC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS filter() function",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filters.js
      index c735b666593cfa..0dc5a73cea1095 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","1028":"K L G M N O","1346":"C"},C:{"1":"0 1 2 3 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC","196":"HB","516":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB RC"},D:{"1":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G M N","33":"5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","33":"J D E F UC VC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"E iC jC kC lC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","33":"6C 7C"},J:{"2":"D","33":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","33":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"CSS Filter Effects",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","1028":"K L H M N O","1346":"C"},C:{"1":"0 1 2 3 4 5 6 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC","196":"JB","516":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB SC"},D:{"1":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H M N","33":"8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","33":"J E F G VC WC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"F kC lC mC nC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","33":"9C AD"},J:{"2":"E","33":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","33":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"CSS Filter Effects",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-letter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-letter.js
      index 63a7f3d8403b08..c3e28c28ffe862 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":"NC","516":"E","1540":"J D"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","132":"3B","260":"OC"},D:{"1":"0 1 2 3 5 6 7 8 9 F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 J D E","132":"I"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 SC","132":"I 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","16":"F bC","260":"B cC dC eC yB LC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC"},H:{"1":"1C"},I:{"1":"3B I H 5C MC 6C 7C","16":"2C 3C","132":"4C"},J:{"1":"D A"},K:{"1":"C q zB","260":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"::first-letter CSS pseudo-element selector",D:true};
      +module.exports={A:{A:{"1":"G A B","16":"PC","516":"F","1540":"J E"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","132":"4B","260":"QC"},D:{"1":"0 1 2 3 4 5 6 8 9 G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 J E F","132":"I"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 TC","132":"I BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","16":"G dC","260":"B eC fC gC zB NC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC"},H:{"1":"4C"},I:{"1":"4B I D 8C OC 9C AD","16":"5C 6C","132":"7C"},J:{"1":"E A"},K:{"1":"C r 0B","260":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"::first-letter CSS pseudo-element selector",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-line.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-line.js
      index 5c12e06c5be69d..fe73252e220096 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS first-line pseudo-element",D:true};
      +module.exports={A:{A:{"1":"G A B","132":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS first-line pseudo-element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-fixed.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-fixed.js
      index f3ddf6c50f6870..6efb755e25e848 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":"NC","8":"J"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","1025":"WC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC","132":"hC iC jC"},H:{"2":"1C"},I:{"1":"3B H 6C 7C","260":"2C 3C 4C","513":"I 5C MC"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS position:fixed",D:true};
      +module.exports={A:{A:{"1":"E F G A B","2":"PC","8":"J"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","1025":"XC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC","132":"jC kC lC"},H:{"2":"4C"},I:{"1":"4B D 9C AD","260":"5C 6C 7C","513":"I 8C OC"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS position:fixed",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-visible.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-visible.js
      index 34b8632bce639f..2c6e563fc491de 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 NC"},B:{"1":"0 1 2 3 V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","161":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T"},D:{"1":"0 1 2 3 V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB","328":"mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC XC","578":"G YC CC"},F:{"1":"rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB bC cC dC eC yB LC fC zB","328":"lB mB nB oB pB qB"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC","578":"zC CC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"161":"LD MD"}},B:5,C:":focus-visible CSS pseudo-class",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O","328":"P Q R S T U"},C:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","161":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T"},D:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB","328":"oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC YC","578":"H ZC EC"},F:{"1":"tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB dC eC fC gC zB NC hC 0B","328":"nB oB pB qB rB sB"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C","578":"1C EC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID"},Q:{"2":"DC"},R:{"1":"ND"},S:{"161":"OD PD"}},B:5,C:":focus-visible CSS pseudo-class",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-within.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-within.js
      index 4037b18385ab95..1ef8044ac2a303 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB QC RC"},D:{"1":"0 1 2 3 gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","194":"4B"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB bC cC dC eC yB LC fC zB","194":"TB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:7,C:":focus-within CSS pseudo-class",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB RC SC"},D:{"1":"0 1 2 3 4 5 6 iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","194":"5B"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB dC eC fC gC zB NC hC 0B","194":"VB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:7,C:":focus-within CSS pseudo-class",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js
      index f1bf0f68aff573..864ee98c09add3 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 NC"},B:{"1":"0 1 2 3 s t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r"},C:{"1":"0 1 2 3 u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t QC RC"},D:{"1":"0 1 2 3 k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC"},F:{"1":"W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V bC cC dC eC yB LC fC zB"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p JD","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS font-palette",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 t u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s"},C:{"1":"0 1 2 3 4 5 6 v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u RC SC"},D:{"1":"0 1 2 3 4 5 6 k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC"},F:{"1":"W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V dC eC fC gC zB NC hC 0B"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q MD","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS font-palette",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js
      index 26262d58a6383a..cce601d1b75b02 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB QC RC","194":"TB UB VB WB XB YB ZB aB bB cB dB eB"},D:{"1":"0 1 2 3 gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","66":"WB XB YB ZB aB bB cB dB eB fB 4B"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB","66":"JB KB LB MB NB OB PB QB RB SB TB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","66":"8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","194":"LD"}},B:5,C:"CSS font-display",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC","194":"VB WB XB YB ZB aB bB cB dB eB fB gB"},D:{"1":"0 1 2 3 4 5 6 iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","66":"YB ZB aB bB cB dB eB fB gB hB 5B"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B","66":"LB MB NB OB PB QB RB SB TB UB VB"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","66":"BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","194":"OD"}},B:5,C:"CSS font-display",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-stretch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-stretch.js
      index c91c2ddf546f6a..2a9b51177683d0 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E QC RC"},D:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS font-stretch",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F RC SC"},D:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS font-stretch",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gencontent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gencontent.js
      index e9f5374775276f..5288c9da5914ed 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 NC","132":"E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS Generated content for pseudo-elements",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E PC","132":"F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS Generated content for pseudo-elements",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gradients.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gradients.js
      index 07d01ebd9c46c8..ea70bbe51c8141 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC","260":"5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB","292":"4 I J D E F A B C K L G RC"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"5 6 7 8 A B C K L G M N O n o p","548":"4 I J D E F"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B","260":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC","292":"J TC","804":"4 I"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC","33":"C fC","164":"yB LC"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","260":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC","292":"hC iC","804":"9B gC MC"},H:{"2":"1C"},I:{"1":"H 6C 7C","33":"I 5C MC","548":"3B 2C 3C 4C"},J:{"1":"A","548":"D"},K:{"1":"q zB","2":"A B","33":"C","164":"yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS Gradients",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC","260":"8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB","292":"7 I J E F G A B C K L H SC"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"8 9 A B C K L H M N O n o p q AB","548":"7 I J E F G"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC","260":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC","292":"J UC","804":"7 I"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC","33":"C hC","164":"zB NC"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","260":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC","292":"jC kC","804":"BC iC OC"},H:{"2":"4C"},I:{"1":"D 9C AD","33":"I 8C OC","548":"4B 5C 6C 7C"},J:{"1":"A","548":"E"},K:{"1":"r 0B","2":"A B","33":"C","164":"zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS Gradients",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js
      index 11e543bbfba58a..25580fa3da1790 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"CSS Grid animation",D:false};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"CSS Grid animation",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js
      index 6284508f51c4a9..d75a0bcb037dc0 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 NC","8":"F","292":"A B"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","292":"C K L G"},C:{"1":"0 1 2 3 bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M N O QC RC","8":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB","584":"NB OB PB QB RB SB TB UB VB WB XB YB","1025":"ZB aB"},D:{"1":"0 1 2 3 fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 I J D E F A B C K L G M N O n o p","8":"8 9 AB BB","200":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","1025":"eB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","8":"J D E F A UC VC WC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB bC cC dC eC yB LC fC zB","200":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","8":"E iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C","8":"MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"292":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"8C","8":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS Grid Layout (level 1)",D:true};
      +module.exports={A:{A:{"2":"J E F PC","8":"G","292":"A B"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","292":"C K L H"},C:{"1":"0 1 2 3 4 5 6 dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M N O RC SC","8":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","584":"PB QB RB SB TB UB VB WB XB YB ZB aB","1025":"bB cB"},D:{"1":"0 1 2 3 4 5 6 hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q","8":"AB BB CB DB","200":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","1025":"gB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","8":"J E F G A VC WC XC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB dC eC fC gC zB NC hC 0B","200":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","8":"F kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C","8":"OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"292":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"BD","8":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS Grid Layout (level 1)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js
      index dec6dca2704175..91d106f5141138 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:4,C:"CSS hanging-punctuation",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:4,C:"CSS hanging-punctuation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-has.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-has.js
      index 18ffb76bc70195..f633d6458f159a 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 NC"},B:{"1":"0 1 2 3 s t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l QC RC","322":"0 1 2 3 m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j","194":"k l m r"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC"},F:{"1":"a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z bC cC dC eC yB LC fC zB"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:":has() CSS relational pseudo-class",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 t u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s"},C:{"1":"9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l RC SC","322":"0 1 2 3 4 5 6 m s t u v w x y z D 8B"},D:{"1":"0 1 2 3 4 5 6 t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j","194":"k l m s"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC"},F:{"1":"a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z dC eC fC gC zB NC hC 0B"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:":has() CSS relational pseudo-class",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphens.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphens.js
      index efdb8a8c52e30f..e60aef764cd016 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 NC","33":"A B"},B:{"1":"0 1 2 3 s t u v w x y z H","33":"C K L G M N O","132":"P Q R S T U V W","260":"X Y Z a b c d e f g h i j k l m r"},C:{"1":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC","33":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","132":"cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W"},E:{"1":"2B KC aC","2":"4 I SC 9B","33":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC"},F:{"1":"a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB bC cC dC eC yB LC fC zB","132":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z"},G:{"1":"2B KC","2":"9B gC","33":"E MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","132":"8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS Hyphenation",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","33":"A B"},B:{"1":"0 1 2 3 4 5 6 t u v w x y z D","33":"C K L H M N O","132":"P Q R S T U V W","260":"X Y Z a b c d e f g h i j k l m s"},C:{"1":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC","33":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","132":"eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W"},E:{"1":"3B LC MC cC","2":"7 I TC BC","33":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC"},F:{"1":"a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB dC eC fC gC zB NC hC 0B","132":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z"},G:{"1":"3B LC MC","2":"BC iC","33":"F OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","132":"BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS Hyphenation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-orientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-orientation.js
      index 42adf7d61fe0c7..f18278ff5f67a3 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 NC"},B:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z 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 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q","257":"R S T U V W X"},E:{"1":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB"},F:{"1":"vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB bC cC dC eC yB LC fC zB","257":"nB oB pB qB rB q sB tB uB"},G:{"1":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","132":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED","257":"FD GD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS3 image-orientation",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O P Q","257":"R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB RC SC"},D:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q","257":"R S T U V W X"},E:{"1":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B"},F:{"1":"xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB dC eC fC gC zB NC hC 0B","257":"pB qB rB sB tB r uB vB wB"},G:{"1":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","132":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD","257":"ID JD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS3 image-orientation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-set.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-set.js
      index 7b739c9247a539..6a3569439a71d2 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 NC"},B:{"1":"1 2 3 H","2":"C K L G M N O","164":"P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z","2049":"0"},C:{"1":"0 1 2 3 H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U QC RC","66":"V W","2305":"Y Z a b c d e f g h i j k l m r s t u v w x y z","2820":"X"},D:{"1":"1 2 3 H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n","164":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z","2049":"0"},E:{"1":"2B KC aC","2":"4 I SC 9B TC","132":"A B C K AC yB zB BC","164":"J D E F UC VC WC","1540":"L G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC"},F:{"1":"j k l m","2":"F B C bC cC dC eC yB LC fC zB","164":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h","2049":"i"},G:{"1":"2B KC","2":"9B gC MC hC","132":"nC oC pC qC rC sC tC uC vC wC","164":"E iC jC kC lC mC","1540":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","164":"6C 7C"},J:{"2":"D","164":"A"},K:{"2":"A B C yB LC zB","164":"q"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"164":"0B"},P:{"164":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"164":"BC"},R:{"164":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS image-set",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"2 3 4 5 6 D","2":"C K L H M N O","164":"0 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","2049":"1"},C:{"1":"1 2 3 4 5 6 D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U RC SC","66":"V W","2305":"0 Y Z a b c d e f g h i j k l m s t u v w x y z","2820":"X"},D:{"1":"2 3 4 5 6 D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n","164":"0 9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","2049":"1"},E:{"1":"3B LC MC cC","2":"7 I TC BC UC","132":"A B C K CC zB 0B DC","164":"J E F G VC WC XC","1540":"L H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC"},F:{"1":"j k l m","2":"G B C dC eC fC gC zB NC hC 0B","164":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h","2049":"i"},G:{"1":"3B LC MC","2":"BC iC OC jC","132":"pC qC rC sC tC uC vC wC xC yC","164":"F kC lC mC nC oC","1540":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","164":"9C AD"},J:{"2":"E","164":"A"},K:{"2":"A B C zB NC 0B","164":"r"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"1B"},P:{"164":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"164":"DC"},R:{"164":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS image-set",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-in-out-of-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-in-out-of-range.js
      index 5a94823523efc5..b00c47afaaec71 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C","260":"K L G M N O"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC","516":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},D:{"1":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I","16":"4 J D E F A B C K L","260":"ZB","772":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","16":"4","772":"J D E F A TC UC VC WC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F bC","260":"B C MB cC dC eC yB LC fC zB","772":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC","772":"E hC iC jC kC lC mC nC"},H:{"132":"1C"},I:{"1":"H","2":"3B 2C 3C 4C","260":"I 5C MC 6C 7C"},J:{"2":"D","260":"A"},K:{"1":"q","260":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","260":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","516":"LD"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C","260":"K L H M N O"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC","516":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},D:{"1":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I","16":"7 J E F G A B C K L","260":"bB","772":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","16":"7","772":"J E F G A UC VC WC XC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G dC","260":"B C OB eC fC gC zB NC hC 0B","772":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC","772":"F jC kC lC mC nC oC pC"},H:{"132":"4C"},I:{"1":"D","2":"4B 5C 6C 7C","260":"I 8C OC 9C AD"},J:{"2":"E","260":"A"},K:{"1":"r","260":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","260":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","516":"OD"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js
      index bcfe73a529eb0a..b5c05f4d20354e 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 NC","132":"A B","388":"F"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","132":"C K L G M N O"},C:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","16":"OC 3B QC RC","132":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","388":"4 I"},D:{"1":"0 1 2 3 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I J SC 9B","132":"D E F A UC VC WC","388":"TC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F B bC cC dC eC yB LC","132":"5 6 7 8 G M N O n o p","516":"C fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC hC iC","132":"E jC kC lC mC nC"},H:{"516":"1C"},I:{"1":"H","16":"3B 2C 3C 4C 7C","132":"6C","388":"I 5C MC"},J:{"16":"D","132":"A"},K:{"1":"q","16":"A B C yB LC","516":"zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","132":"LD"}},B:5,C:":indeterminate CSS pseudo-class",D:true};
      +module.exports={A:{A:{"2":"J E F PC","132":"A B","388":"G"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","132":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"QC 4B RC SC","132":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","388":"7 I"},D:{"1":"0 1 2 3 4 5 6 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I J TC BC","132":"E F G A VC WC XC","388":"UC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G B dC eC fC gC zB NC","132":"8 9 H M N O n o p q AB","516":"C hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC jC kC","132":"F lC mC nC oC pC"},H:{"516":"4C"},I:{"1":"D","16":"4B 5C 6C 7C AD","132":"9C","388":"I 8C OC"},J:{"16":"E","132":"A"},K:{"1":"r","16":"A B C zB NC","516":"0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","132":"OD"}},B:5,C:":indeterminate CSS pseudo-class",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-letter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-letter.js
      index e61ba79e0d5a06..2bf90692492f3b 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 NC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w","260":"0 1 2 3 x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w","260":"0 1 2 3 x y z H xB 7B 8B"},E:{"2":"4 I J D E SC 9B TC UC VC","4":"F","164":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g bC cC dC eC yB LC fC zB","260":"h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC","164":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"260":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"o p","2":"I n 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Initial Letter",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x","260":"0 1 2 3 4 5 6 y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x","260":"0 1 2 3 4 5 6 y z D 8B 9B AC"},E:{"2":"7 I J E F TC BC UC VC WC","4":"G","164":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g dC eC fC gC zB NC hC 0B","260":"h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC","164":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"260":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"o p q","2":"I n BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Initial Letter",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-value.js
      index 10993d099697a2..f4709ef35f7bc7 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","33":"4 I J D E F A B C K L G M N O QC RC","164":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS initial value",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 I J E F G A B C K L H M N O RC SC","164":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS initial value",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-lch-lab.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-lch-lab.js
      index 7675a655ab3142..9f17430e1f46f0 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 NC"},B:{"1":"0 1 2 3 y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w","322":"x"},C:{"1":"0 1 2 3 H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x QC RC","194":"y z"},D:{"1":"0 1 2 3 y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w","322":"x"},E:{"1":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC XC"},F:{"1":"h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g bC cC dC eC yB LC fC zB"},G:{"1":"zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"p","2":"I n o 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:4,C:"LCH and Lab color values",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x","322":"y"},C:{"1":"1 2 3 4 5 6 D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y RC SC","194":"0 z"},D:{"1":"0 1 2 3 4 5 6 z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x","322":"y"},E:{"1":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC YC"},F:{"1":"h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g dC eC fC gC zB NC hC 0B"},G:{"1":"1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"p q","2":"I n o BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:4,C:"LCH and Lab color values",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js
      index a50a2d96744264..64dcdfa6161e01 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":"NC","132":"J D E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC","132":"4 I J 9B TC"},F:{"1":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F bC","132":"B C G M cC dC eC yB LC fC zB"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"2":"1C"},I:{"1":"H 6C 7C","16":"2C 3C","132":"3B I 4C 5C MC"},J:{"132":"D A"},K:{"1":"q","132":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"letter-spacing CSS property",D:true};
      +module.exports={A:{A:{"1":"G A B","16":"PC","132":"J E F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC","132":"7 I J BC UC"},F:{"1":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G dC","132":"B C H M eC fC gC zB NC hC 0B"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"2":"4C"},I:{"1":"D 9C AD","16":"5C 6C","132":"4B I 7C 8C OC"},J:{"132":"E A"},K:{"1":"r","132":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"letter-spacing CSS property",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-line-clamp.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-line-clamp.js
      index b65a778519f9f1..f2278dcee64c6c 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 NC"},B:{"2":"C K L G M","33":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","129":"N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB QC RC","33":"0 1 2 3 nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"16":"4 I J D E F A B C K","33":"0 1 2 3 5 6 7 8 9 L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"I SC 9B","33":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"9B gC MC","33":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"16":"2C 3C","33":"3B I H 4C 5C MC 6C 7C"},J:{"33":"D A"},K:{"2":"A B C yB LC zB","33":"q"},L:{"33":"H"},M:{"33":"xB"},N:{"2":"A B"},O:{"33":"0B"},P:{"33":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"33":"BC"},R:{"33":"KD"},S:{"2":"LD","33":"MD"}},B:5,C:"CSS line-clamp",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M","33":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","129":"N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB RC SC","33":"0 1 2 3 4 5 6 pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"16":"7 I J E F G A B C K","33":"0 1 2 3 4 5 6 8 9 L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"I TC BC","33":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"BC iC OC","33":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"16":"5C 6C","33":"4B I D 7C 8C OC 9C AD"},J:{"33":"E A"},K:{"2":"A B C zB NC 0B","33":"r"},L:{"33":"D"},M:{"33":"D"},N:{"2":"A B"},O:{"33":"1B"},P:{"33":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"33":"DC"},R:{"33":"ND"},S:{"2":"OD","33":"PD"}},B:5,C:"CSS line-clamp",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-logical-props.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-logical-props.js
      index 9cfbde2241b626..1d6198a05e38bd 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 NC"},B:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O","1028":"W X","1540":"P Q R S T U V"},C:{"1":"0 1 2 3 lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC","164":"4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB QC RC","1540":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB"},D:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","292":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB","1028":"W X","1540":"oB pB qB rB q sB tB uB vB wB P Q R S T U V"},E:{"1":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","292":"4 I J D E F A B C SC 9B TC UC VC WC AC yB","1540":"K L zB BC","3076":"XC"},F:{"1":"uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","292":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","1028":"sB tB","1540":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q"},G:{"1":"zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","292":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC","1540":"sC tC uC vC wC xC","3076":"yC"},H:{"2":"1C"},I:{"1":"H","292":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"292":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p HD 1B 2B ID JD","292":"I 8C 9C AD BD CD","1540":"AC DD ED FD GD"},Q:{"1540":"BC"},R:{"1":"KD"},S:{"1":"MD","1540":"LD"}},B:5,C:"CSS Logical Properties",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O","1028":"W X","1540":"P Q R S T U V"},C:{"1":"0 1 2 3 4 5 6 nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC","164":"7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB RC SC","1540":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB"},D:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","292":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB","1028":"W X","1540":"qB rB sB tB r uB vB wB xB yB P Q R S T U V"},E:{"1":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","292":"7 I J E F G A B C TC BC UC VC WC XC CC zB","1540":"K L 0B DC","3076":"YC"},F:{"1":"wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","292":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","1028":"uB vB","1540":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r"},G:{"1":"1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","292":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC","1540":"uC vC wC xC yC zC","3076":"0C"},H:{"2":"4C"},I:{"1":"D","292":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"292":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q KD 2B 3B LD MD","292":"I BD CD DD ED FD","1540":"CC GD HD ID JD"},Q:{"1540":"DC"},R:{"1":"ND"},S:{"1":"PD","1540":"OD"}},B:5,C:"CSS Logical Properties",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-marker-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-marker-pseudo.js
      index d75b2b077216fe..746f80398cc469 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 NC"},B:{"1":"0 1 2 3 V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O P Q R S T U"},C:{"1":"0 1 2 3 nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB QC RC"},D:{"1":"0 1 2 3 V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U"},E:{"1":"aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC","129":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC"},F:{"1":"rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"CSS ::marker pseudo-element",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O P Q R S T U"},C:{"1":"0 1 2 3 4 5 6 pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB RC SC"},D:{"1":"0 1 2 3 4 5 6 V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U"},E:{"1":"cC","2":"7 I J E F G A B TC BC UC VC WC XC CC","129":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC"},F:{"1":"tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID"},Q:{"2":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"CSS ::marker pseudo-element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-masks.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-masks.js
      index 9705fa72cad163..1f4f813feeed37 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 NC"},B:{"2":"C K L G M","164":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","3138":"N","12292":"O"},C:{"1":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","260":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB QC RC"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B","164":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","164":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","164":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"164":"H 6C 7C","676":"3B I 2C 3C 4C 5C MC"},J:{"164":"D A"},K:{"2":"A B C yB LC zB","164":"q"},L:{"164":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"164":"0B"},P:{"164":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"164":"BC"},R:{"164":"KD"},S:{"1":"MD","260":"LD"}},B:4,C:"CSS Masks",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M","164":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","3138":"N","12292":"O"},C:{"1":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","260":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB RC SC"},D:{"1":"8B 9B AC","164":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC","164":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","164":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","164":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"164":"D 9C AD","676":"4B I 5C 6C 7C 8C OC"},J:{"164":"E A"},K:{"2":"A B C zB NC 0B","164":"r"},L:{"164":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"164":"1B"},P:{"164":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"164":"DC"},R:{"164":"ND"},S:{"1":"PD","260":"OD"}},B:4,C:"CSS Masks",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-matches-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-matches-pseudo.js
      index d8a8a3bab4fa41..7e0567c42017db 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 NC"},B:{"1":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"0 1 2 3 wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","16":"OC 3B QC RC","548":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB"},D:{"1":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L","164":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB","196":"kB lB mB","1220":"nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W"},E:{"1":"L G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","16":"4","164":"J D E TC UC VC","260":"F A B C K WC AC yB zB BC"},F:{"1":"tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","164":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","196":"ZB aB bB","1220":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB"},G:{"1":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC hC iC","164":"E jC kC","260":"lC mC nC oC pC qC rC sC tC uC vC wC"},H:{"2":"1C"},I:{"1":"H","16":"3B 2C 3C 4C","164":"I 5C MC 6C 7C"},J:{"16":"D","164":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p HD 1B 2B ID JD","164":"I 8C 9C AD BD CD AC DD ED FD GD"},Q:{"1220":"BC"},R:{"1":"KD"},S:{"1":"MD","548":"LD"}},B:5,C:":is() CSS pseudo-class",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O","1220":"P Q R S T U V W"},C:{"1":"0 1 2 3 4 5 6 yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"QC 4B RC SC","548":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB"},D:{"1":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L","164":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB","196":"mB nB oB","1220":"pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W"},E:{"1":"L H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","16":"7","164":"J E F UC VC WC","260":"G A B C K XC CC zB 0B DC"},F:{"1":"vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","164":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","196":"bB cB dB","1220":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB"},G:{"1":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC jC kC","164":"F lC mC","260":"nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"4C"},I:{"1":"D","16":"4B 5C 6C 7C","164":"I 8C OC 9C AD"},J:{"16":"E","164":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q KD 2B 3B LD MD","164":"I BD CD DD ED FD CC GD HD ID JD"},Q:{"1220":"DC"},R:{"1":"ND"},S:{"1":"PD","548":"OD"}},B:5,C:":is() CSS pseudo-class",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-math-functions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-math-functions.js
      index 213b45fd236507..21686da5734dc6 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB QC RC"},D:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB"},E:{"1":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC","132":"C K yB zB"},F:{"1":"lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB bC cC dC eC yB LC fC zB"},G:{"1":"wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC","132":"qC rC sC tC uC vC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"CSS math functions min(), max() and clamp()",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB RC SC"},D:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB"},E:{"1":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC","132":"C K zB 0B"},F:{"1":"nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB dC eC fC gC zB NC hC 0B"},G:{"1":"yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC","132":"sC tC uC vC wC xC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"CSS math functions min(), max() and clamp()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-interaction.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-interaction.js
      index b19680b7790de6..2b432f264bf909 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB QC RC"},D:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"Media Queries: interaction media features",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB RC SC"},D:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"Media Queries: interaction media features",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js
      index 0238c7b179fda7..eeebe0963f2ea3 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 NC"},B:{"1":"0 1 2 3 r s t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB QC RC"},D:{"1":"0 1 2 3 r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC"},F:{"1":"a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z bC cC dC eC yB LC fC zB"},G:{"1":"HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"Media Queries: Range Syntax",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 s t u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB RC SC"},D:{"1":"0 1 2 3 4 5 6 s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC"},F:{"1":"a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z dC eC fC gC zB NC hC 0B"},G:{"1":"JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"Media Queries: Range Syntax",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js
      index d226320ad78543..3fd493b0c395bd 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 NC","132":"F A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","1028":"C K L G M N O"},C:{"1":"0 1 2 3 hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","260":"4 I J D E F A B C K L G QC RC","1028":"5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B"},D:{"1":"0 1 2 3 nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","548":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB","1028":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B","548":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F","548":"B C bC cC dC eC yB LC fC","1028":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"1":"1B EC FC GC HC IC JC 2B KC","16":"9B","548":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"132":"1C"},I:{"1":"H","16":"2C 3C","548":"3B I 4C 5C MC","1028":"6C 7C"},J:{"548":"D A"},K:{"1":"q zB","548":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","1028":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Media Queries: resolution feature",D:true};
      +module.exports={A:{A:{"2":"J E F PC","132":"G A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","1028":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","260":"7 I J E F G A B C K L H RC SC","1028":"8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B"},D:{"1":"0 1 2 3 4 5 6 pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","548":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB","1028":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC","548":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G","548":"B C dC eC fC gC zB NC hC","1028":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","16":"BC","548":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"132":"4C"},I:{"1":"D","16":"5C 6C","548":"4B I 7C 8C OC","1028":"9C AD"},J:{"548":"E A"},K:{"1":"r 0B","548":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","1028":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Media Queries: resolution feature",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js
      index 9acb26277edc54..79a96e69ab6ed4 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"Media Queries: scripting media feature",D:false};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"Media Queries: scripting media feature",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mediaqueries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mediaqueries.js
      index 990503880cbcc7..1caf50df4c7733 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 NC","129":"F A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","129":"4 5 6 7 8 I J D E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","129":"4 I J TC","388":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","129":"9B gC MC hC iC"},H:{"1":"1C"},I:{"1":"H 6C 7C","129":"3B I 2C 3C 4C 5C MC"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"129":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS3 Media Queries",D:true};
      +module.exports={A:{A:{"8":"J E F PC","129":"G A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","129":"7 8 9 I J E F G A B C K L H M N O n o p q AB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","129":"7 I J UC","388":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","129":"BC iC OC jC kC"},H:{"1":"4C"},I:{"1":"D 9C AD","129":"4B I 5C 6C 7C 8C OC"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"129":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS3 Media Queries",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mixblendmode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mixblendmode.js
      index 5776c5c9ece7cf..094c5109cce001 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB QC RC"},D:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB","194":"CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"2":"4 I J D SC 9B TC UC","260":"E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB bC cC dC eC yB LC fC zB"},G:{"2":"9B gC MC hC iC jC","260":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Blending of HTML/SVG elements",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB RC SC"},D:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB","194":"EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"2":"7 I J E TC BC UC VC","260":"F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB dC eC fC gC zB NC hC 0B"},G:{"2":"BC iC OC jC kC lC","260":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Blending of HTML/SVG elements",D:true};
      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 b04495b6541121..b475e453b0f1d5 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB QC RC"},D:{"1":"0 1 2 3 TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","194":"QB RB SB"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB bC cC dC eC yB LC fC zB","194":"DB EB FB"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"CSS Motion Path",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB RC SC"},D:{"1":"0 1 2 3 4 5 6 VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"SB TB UB"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB dC eC fC gC zB NC hC 0B","194":"FB GB HB"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"CSS Motion Path",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-namespaces.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-namespaces.js
      index 10055a3e1e8e50..e6ac77460c0de0 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC 9B"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS namespaces",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC BC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS namespaces",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nesting.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nesting.js
      index d16643d4b48e71..e3a8046f06f2f1 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 NC"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v","194":"w x y","516":"0 1 2 3 z H"},C:{"1":"H xB 7B 8B PC","2":"0 1 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z QC RC","322":"2 3"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v","194":"w x y","516":"0 1 2 3 z H xB 7B 8B"},E:{"1":"aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC","516":"IC JC 2B KC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d bC cC dC eC yB LC fC zB","194":"e f g","516":"h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC","516":"IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","516":"H"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"516":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Nesting",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w","194":"x y z","516":"0 1 2 3 4 5 6 D"},C:{"1":"5 6 D 8B 9B AC","2":"0 1 2 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z RC SC","322":"3 4"},D:{"1":"8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w","194":"x y z","516":"0 1 2 3 4 5 6 D"},E:{"1":"MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC","516":"KC bC 3B LC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d dC eC fC gC zB NC hC 0B","194":"e f g","516":"h i j k l m"},G:{"1":"MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC","516":"KC 3C 3B LC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","516":"D"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"516":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Nesting",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-not-sel-list.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-not-sel-list.js
      index 75015da0f7dd15..1bfd4dcc57f7ae 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 NC"},B:{"1":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S QC RC"},D:{"1":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD GD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"selector list argument of :not()",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O Q R S T U V W","16":"P"},C:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S RC SC"},D:{"1":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID JD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"selector list argument of :not()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nth-child-of.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nth-child-of.js
      index e7c64cde3af4b7..28be7e70c28621 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 NC"},B:{"1":"0 1 2 3 y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x"},C:{"1":"0 1 2 3 H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z QC RC"},D:{"1":"0 1 2 3 y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"p","2":"I n o 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y"},C:{"1":"1 2 3 4 5 6 D 8B 9B AC","2":"0 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z RC SC"},D:{"1":"0 1 2 3 4 5 6 z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"p q","2":"I n o BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js
      index e1bd704e485f5f..81148c4d3e8014 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS3 Opacity",D:true};
      +module.exports={A:{A:{"1":"G A B","4":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS3 Opacity",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-optional-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-optional-pseudo.js
      index 36f3fa9e893bac..6d9ccdd6c00c2d 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F bC","132":"B C cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"132":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"q","132":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:":optional CSS pseudo-class",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G dC","132":"B C eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"132":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"r","132":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:":optional CSS pseudo-class",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-anchor.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-anchor.js
      index f194d8a0fe2b8f..6a7dd0215c9a12 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB QC RC"},D:{"1":"0 1 2 3 dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB RC SC"},D:{"1":"0 1 2 3 4 5 6 fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-overlay.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-overlay.js
      index 8184d4aa3dc316..115f75079951a7 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 NC"},B:{"1":"0 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z","2":"C K L G M N O","130":"1 2 3 H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z","16":"4 I J D E F A B C K L","130":"1 2 3 H xB 7B 8B"},E:{"1":"4 I J D E F A B TC UC VC WC AC yB","16":"SC 9B","130":"C K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i","2":"F B C bC cC dC eC yB LC fC zB","130":"j k l m"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC","16":"9B","130":"rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I 2C 3C 4C 5C MC 6C 7C","130":"H"},J:{"16":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"130":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS overflow: overlay",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","2":"C K L H M N O","130":"2 3 4 5 6 D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","16":"7 I J E F G A B C K L","130":"2 3 4 5 6 D 8B 9B AC"},E:{"1":"7 I J E F G A B UC VC WC XC CC zB","16":"TC BC","130":"C K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i","2":"G B C dC eC fC gC zB NC hC 0B","130":"j k l m"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC","16":"BC","130":"tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I 5C 6C 7C 8C OC 9C AD","130":"D"},J:{"16":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"130":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"CSS overflow: overlay",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow.js
      index 0f77c8852d8c75..4c2c5135040a2e 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 NC"},B:{"1":"0 1 2 3 Z a b c d e f g h i j k l m r s t u v w x y z H","260":"P Q R S T U V W X Y","388":"C K L G M N O"},C:{"1":"0 1 2 3 R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","260":"5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q","388":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB QC RC"},D:{"1":"0 1 2 3 Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","260":"nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y","388":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","260":"L G BC XC YC CC DC 0B ZC","388":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB"},F:{"1":"uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","260":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB","388":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB bC cC dC eC yB LC fC zB"},G:{"1":"1B EC FC GC HC IC JC 2B KC","260":"wC xC yC zC CC DC 0B 0C","388":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC"},H:{"388":"1C"},I:{"1":"H","388":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"388":"D A"},K:{"1":"q","388":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"388":"A B"},O:{"388":"0B"},P:{"1":"n o p HD 1B 2B ID JD","388":"I 8C 9C AD BD CD AC DD ED FD GD"},Q:{"388":"BC"},R:{"1":"KD"},S:{"1":"MD","388":"LD"}},B:5,C:"CSS overflow property",D:true};
      +module.exports={A:{A:{"388":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 Z a b c d e f g h i j k l m s t u v w x y z D","260":"P Q R S T U V W X Y","388":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","260":"6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q","388":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB RC SC"},D:{"1":"0 1 2 3 4 5 6 Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","260":"pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y","388":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","260":"L H DC YC ZC EC FC 1B aC","388":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B"},F:{"1":"wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","260":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB","388":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB dC eC fC gC zB NC hC 0B"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","260":"yC zC 0C 1C EC FC 1B 2C","388":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC"},H:{"388":"4C"},I:{"1":"D","388":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"388":"E A"},K:{"1":"r","388":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"388":"A B"},O:{"388":"1B"},P:{"1":"n o p q KD 2B 3B LD MD","388":"I BD CD DD ED FD CC GD HD ID JD"},Q:{"388":"DC"},R:{"1":"ND"},S:{"1":"PD","388":"OD"}},B:5,C:"CSS overflow property",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js
      index 878272d1dd3b93..5a200d3ad63968 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 NC","132":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","132":"C K L G M N","516":"O"},C:{"1":"0 1 2 3 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB QC RC"},D:{"1":"0 1 2 3 kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB","260":"iB jB"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC","1090":"G XC YC CC DC 0B ZC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC dC eC yB LC fC zB","260":"XB YB"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC","1090":"yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"CSS overscroll-behavior",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","132":"C K L H M N","516":"O"},C:{"1":"0 1 2 3 4 5 6 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB RC SC"},D:{"1":"0 1 2 3 4 5 6 mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB","260":"kB lB"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC","1090":"H YC ZC EC FC 1B aC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB dC eC fC gC zB NC hC 0B","260":"ZB aB"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC","1090":"0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"CSS overscroll-behavior",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js
      index cc2878cf6fa29c..f26a8d64d6f8e8 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 NC"},B:{"388":"C K L G M N O","900":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"772":"0 1 2 3 kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","900":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB QC RC"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"772":"A","900":"4 I J D E F B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"16":"F bC","129":"B C cC dC eC yB LC fC zB","900":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"900":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"129":"1C"},I:{"900":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"900":"D A"},K:{"129":"A B C yB LC zB","900":"q"},L:{"900":"H"},M:{"772":"xB"},N:{"388":"A B"},O:{"900":"0B"},P:{"900":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"900":"BC"},R:{"900":"KD"},S:{"772":"MD","900":"LD"}},B:2,C:"CSS page-break properties",D:true};
      +module.exports={A:{A:{"388":"A B","900":"J E F G PC"},B:{"388":"C K L H M N O","900":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"772":"0 1 2 3 4 5 6 mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","900":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB RC SC"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"772":"A","900":"7 I J E F G B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"16":"G dC","129":"B C eC fC gC zB NC hC 0B","900":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"900":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"129":"4C"},I:{"900":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"900":"E A"},K:{"129":"A B C zB NC 0B","900":"r"},L:{"900":"D"},M:{"772":"D"},N:{"388":"A B"},O:{"900":"1B"},P:{"900":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"900":"DC"},R:{"900":"ND"},S:{"772":"PD","900":"OD"}},B:2,C:"CSS page-break properties",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paged-media.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paged-media.js
      index f487c85c965faa..d0cccebaef8895 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 NC","132":"E F A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","132":"C K L G M N O"},C:{"2":"4 OC 3B I J D E F A B C K L G M N O QC RC","132":"0 1 2 3 5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","132":"F B C bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"16":"1C"},I:{"16":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"16":"D A"},K:{"1":"q","16":"A B C yB LC zB"},L:{"1":"H"},M:{"132":"xB"},N:{"258":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"132":"LD MD"}},B:5,C:"CSS Paged Media (@page)",D:true};
      +module.exports={A:{A:{"2":"J E PC","132":"F G A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","132":"C K L H M N O"},C:{"2":"7 QC 4B I J E F G A B C K L H M N O RC SC","132":"0 1 2 3 4 5 6 8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","132":"G B C dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"16":"4C"},I:{"16":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"16":"E A"},K:{"1":"r","16":"A B C zB NC 0B"},L:{"1":"D"},M:{"132":"D"},N:{"258":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"132":"OD PD"}},B:5,C:"CSS Paged Media (@page)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paint-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paint-api.js
      index 097e27e4ba6a27..2a164e251ff091 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB"},E:{"2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB","194":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:4,C:"CSS Painting API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB"},E:{"2":"7 I J E F G A B C TC BC UC VC WC XC CC zB","194":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:4,C:"CSS Painting API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder-shown.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder-shown.js
      index ff204d2204ea0d..1cf5be8e0c5602 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 NC","292":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","164":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","164":"LD"}},B:5,C:":placeholder-shown CSS pseudo-class",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","292":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","164":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},D:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","164":"OD"}},B:5,C:":placeholder-shown CSS pseudo-class",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder.js
      index 7085341061a2ac..693340f52dab83 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","36":"C K L G M N O"},C:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","33":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","130":"4 OC 3B I J D E F A B C K L G M N O QC RC"},D:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","36":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","36":"4 J D E F A TC UC VC WC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","36":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC","36":"E MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","36":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"36":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"36":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","36":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","33":"LD"}},B:5,C:"::placeholder CSS pseudo-element",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","36":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","130":"7 QC 4B I J E F G A B C K L H M N O RC SC"},D:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","36":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","36":"7 J E F G A UC VC WC XC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","36":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC","36":"F OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","36":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"36":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"36":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","36":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","33":"OD"}},B:5,C:"::placeholder CSS pseudo-element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js
      index f6536b062f53d7..8f1a72b4f7bfaf 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":"4 I J D E F A B C K L G M","33":"0 1 2 3 5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB QC RC","33":"VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f"},M:{"1":"xB"},A:{"2":"J D E F A B NC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},K:{"2":"A B C yB LC zB","33":"q"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"4 I SC 9B TC aC","33":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},P:{"33":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},I:{"2":"3B I 2C 3C 4C 5C MC","33":"H 6C 7C"}},B:6,C:"print-color-adjust property",D:undefined};
      +module.exports={A:{D:{"2":"7 I J E F G A B C K L H M","33":"0 1 2 3 4 5 6 8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},L:{"33":"D"},B:{"2":"C K L H M N O","33":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB RC SC","33":"XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f"},M:{"1":"D"},A:{"2":"J E F G A B PC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},K:{"2":"A B C zB NC 0B","33":"r"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"7 I TC BC UC cC","33":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},P:{"33":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},I:{"2":"4B I 5C 6C 7C 8C OC","33":"D 9C AD"}},B:6,C:"print-color-adjust property",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js
      index 266a34fc234d5a..7c85bdf841c0e4 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C"},C:{"1":"0 1 2 3 wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","16":"OC","33":"4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB QC RC"},D:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC 9B","132":"4 I J D E TC UC VC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F B bC cC dC eC yB","132":"5 C G M N O n o p LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC","132":"E MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","16":"2C 3C","132":"3B I 4C 5C MC 6C 7C"},J:{"1":"A","132":"D"},K:{"1":"q","2":"A B yB","132":"C LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","33":"LD"}},B:1,C:"CSS :read-only and :read-write selectors",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C"},C:{"1":"0 1 2 3 4 5 6 yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"QC","33":"7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB RC SC"},D:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC BC","132":"7 I J E F UC VC WC"},F:{"1":"9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G B dC eC fC gC zB","132":"8 C H M N O n o p NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC","132":"F OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","16":"5C 6C","132":"4B I 7C 8C OC 9C AD"},J:{"1":"A","132":"E"},K:{"1":"r","2":"A B zB","132":"C NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","33":"OD"}},B:1,C:"CSS :read-only and :read-write selectors",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rebeccapurple.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rebeccapurple.js
      index b1c7ca5f9a83cd..b1fdefe66f993c 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 NC","132":"B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB QC RC"},D:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC","16":"UC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Rebeccapurple color",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","132":"B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB RC SC"},D:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC","16":"VC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Rebeccapurple color",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js
      index fb13eb7b6eca53..f2ba937fdc55e3 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 NC"},B:{"2":"C K L G M N O","33":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"SC 9B","33":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"33":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"33":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"33":"D A"},K:{"2":"A B C yB LC zB","33":"q"},L:{"33":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"33":"0B"},P:{"33":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"33":"BC"},R:{"33":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS Reflections",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","33":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"TC BC","33":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"33":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"33":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"33":"E A"},K:{"2":"A B C zB NC 0B","33":"r"},L:{"33":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"33":"1B"},P:{"33":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"33":"DC"},R:{"33":"ND"},S:{"2":"OD PD"}},B:7,C:"CSS Reflections",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-regions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-regions.js
      index 82f251a2d4a3b3..4ed6e3f02033dc 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 NC","420":"A B"},B:{"2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 I J D E F A B C K L IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","36":"G M N O","66":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB"},E:{"2":"4 I J C K L G SC 9B TC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","33":"D E F A B UC VC WC AC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"9B gC MC hC iC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"E jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"420":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Regions",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","420":"A B"},B:{"2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","420":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 I J E F G A B C K L KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","36":"H M N O","66":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB"},E:{"2":"7 I J C K L H TC BC UC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","33":"E F G A B VC WC XC CC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"BC iC OC jC kC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"F lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"420":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Regions",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-relative-colors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-relative-colors.js
      index e1f8f3efe26b51..07ab17ae160a19 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-relative-colors.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-relative-colors.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","194":"xB 7B 8B"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Relative colors",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"D","2":"0 1 2 3 4 5 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","194":"6"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"D 8B 9B AC","2":"0 1 2 3 4 5 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","194":"6"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Relative colors",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-repeating-gradients.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-repeating-gradients.js
      index 996e8c89738622..7a67a29a29a8e7 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC","33":"4 I J D E F A B C K L G RC"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F","33":"5 6 7 8 A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B","33":"J TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC","33":"C fC","36":"yB LC"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC","33":"hC iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B 2C 3C 4C","33":"I 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q zB","2":"A B","33":"C","36":"yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS Repeating Gradients",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC","33":"7 I J E F G A B C K L H SC"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G","33":"8 9 A B C K L H M N O n o p q AB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC","33":"J UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC","33":"C hC","36":"zB NC"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC","33":"jC kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B 5C 6C 7C","33":"I 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r 0B","2":"A B","33":"C","36":"zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS Repeating Gradients",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-resize.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-resize.js
      index 1ac219007bc6ba..092b75d9c269ca 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z 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 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC","132":"zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:2,C:"CSS resize property",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC","132":"0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:2,C:"CSS resize property",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-revert-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-revert-value.js
      index 28a0502f144f17..cc8a6aca2df558 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 NC"},B:{"1":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O P Q R S"},C:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB QC RC"},D:{"1":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC"},F:{"1":"q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB bC cC dC eC yB LC fC zB"},G:{"1":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"CSS revert value",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O P Q R S"},C:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB RC SC"},D:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC"},F:{"1":"r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB dC eC fC gC zB NC hC 0B"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID"},Q:{"2":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"CSS revert value",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rrggbbaa.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rrggbbaa.js
      index dd99cebdbb8a14..056bb9d51dcd22 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB QC RC"},D:{"1":"0 1 2 3 hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","194":"ZB aB bB cB dB eB fB 4B gB 5B"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB bC cC dC eC yB LC fC zB","194":"MB NB OB PB QB RB SB TB UB VB WB XB YB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","194":"8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"#rrggbbaa hex color notation",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB RC SC"},D:{"1":"0 1 2 3 4 5 6 jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB cB dB eB fB gB hB 5B iB 6B"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB dC eC fC gC zB NC hC 0B","194":"OB PB QB RB SB TB UB VB WB XB YB ZB aB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","194":"BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"#rrggbbaa hex color notation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js
      index 2bb6e47ddacea5..71adfef18607a0 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 NC"},B:{"2":"C K L G M N O","129":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB","129":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","450":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB BC","578":"L G XC YC CC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB bC cC dC eC yB LC fC zB","129":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","450":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC","578":"yC zC CC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"129":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"129":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"CSS Scroll-behavior",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","129":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","129":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","450":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B DC","578":"L H YC ZC EC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB dC eC fC gC zB NC hC 0B","129":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","450":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC","578":"0C 1C EC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"129":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"129":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"CSS Scroll-behavior",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js
      index 3f97be01f53672..45abee26b3002b 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 NC"},B:{"2":"C K L G M N O P Q R S T U V W X Y","194":"0 1 2 3 Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T","194":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","322":"U V W"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB bC cC dC eC yB LC fC zB","194":"tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","322":"q sB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS @scroll-timeline",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O P Q R S T U V W X Y","194":"0 1 2 3 4 5 6 Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T","194":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","322":"U V W"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB dC eC fC gC zB NC hC 0B","194":"vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","322":"r uB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"CSS @scroll-timeline",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scrollbar.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scrollbar.js
      index dcf7b2cea232bc..3d84a385309b92 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 NC"},B:{"2":"C K L G M N O","292":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB QC RC","3138":"iB","4097":"0 1 2 3 jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"16":"4 I SC 9B","292":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","292":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC hC iC","292":"jC","804":"E kC lC mC nC oC pC qC rC sC tC uC vC wC"},H:{"2":"1C"},I:{"16":"2C 3C","292":"3B I H 4C 5C MC 6C 7C"},J:{"292":"D A"},K:{"2":"A B C yB LC zB","292":"q"},L:{"292":"H"},M:{"4097":"xB"},N:{"2":"A B"},O:{"292":"0B"},P:{"292":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"292":"BC"},R:{"292":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS scrollbar styling",D:true};
      +module.exports={A:{A:{"132":"J E F G A B PC"},B:{"2":"C K L H M N O","292":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB RC SC","3138":"kB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"16":"7 I TC BC","292":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","292":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC jC kC","292":"lC","804":"F mC nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"4C"},I:{"16":"5C 6C","292":"4B I D 7C 8C OC 9C AD"},J:{"292":"E A"},K:{"2":"A B C zB NC 0B","292":"r"},L:{"292":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"292":"1B"},P:{"292":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"292":"DC"},R:{"292":"ND"},S:{"2":"OD PD"}},B:4,C:"CSS scrollbar styling",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel2.js
      index 90f9a40d2a7fb7..8470bf905154f7 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":"NC","8":"J"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS 2.1 selectors",D:true};
      +module.exports={A:{A:{"1":"E F G A B","2":"PC","8":"J"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS 2.1 selectors",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel3.js
      index af2acabfb49218..355e6d425a611d 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":"NC","8":"J","132":"D E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS3 selectors",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"PC","8":"J","132":"E F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS3 selectors",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-selection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-selection.js
      index d1c2cdc5d79ade..253f9dd90876a9 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","33":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"C q LC zB","16":"A B yB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","33":"LD"}},B:5,C:"::selection CSS pseudo-element",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"C r NC 0B","16":"A B zB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","33":"OD"}},B:5,C:"::selection CSS pseudo-element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-shapes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-shapes.js
      index 3655063c9a4a5f..d49e6223d369ce 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB QC RC","322":"YB ZB aB bB cB dB eB fB 4B gB 5B"},D:{"1":"0 1 2 3 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB","194":"HB IB JB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC","33":"E F A VC WC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC","33":"E kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"CSS Shapes Level 1",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB RC SC","322":"aB bB cB dB eB fB gB hB 5B iB 6B"},D:{"1":"0 1 2 3 4 5 6 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB","194":"JB KB LB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC","33":"F G A WC XC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC","33":"F mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"CSS Shapes Level 1",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-snappoints.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-snappoints.js
      index 38c2396192cd38..b7a18275a8b0fe 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 NC","6308":"A","6436":"B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","6436":"C K L G M N O"},C:{"1":"0 1 2 3 nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB QC RC","2052":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB"},D:{"1":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB","8258":"lB mB nB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC","3108":"F A WC AC"},F:{"1":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC dC eC yB LC fC zB","8258":"bB cB dB eB fB gB hB iB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC","3108":"lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2052":"LD"}},B:4,C:"CSS Scroll Snap",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","6308":"A","6436":"B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","6436":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB RC SC","2052":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB"},D:{"1":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB","8258":"nB oB pB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC","3108":"G A XC CC"},F:{"1":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dC eC fC gC zB NC hC 0B","8258":"dB eB fB gB hB iB jB kB"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC","3108":"nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2052":"OD"}},B:4,C:"CSS Scroll Snap",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sticky.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sticky.js
      index 5e0353a53e850d..36ec0fa0ef3395 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 NC"},B:{"1":"0 1 2 3 a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G","1028":"P Q R S T U V W X Y Z","4100":"M N O"},C:{"1":"0 1 2 3 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 OC 3B I J D E F A B C K L G M N O n o p QC RC","194":"9 AB BB CB DB EB","516":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},D:{"1":"0 1 2 3 a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n o p KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","322":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB ZB aB bB cB","1028":"dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC","33":"E F A B C VC WC AC yB zB","2084":"D UC"},F:{"1":"wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB bC cC dC eC yB LC fC zB","322":"MB NB OB","1028":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB"},G:{"1":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"E kC lC mC nC oC pC qC rC sC","2084":"iC jC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C"},Q:{"1028":"BC"},R:{"1":"KD"},S:{"1":"MD","516":"LD"}},B:5,C:"CSS position:sticky",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H","1028":"P Q R S T U V W X Y Z","4100":"M N O"},C:{"1":"0 1 2 3 4 5 6 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB RC SC","194":"BB CB DB EB FB GB","516":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},D:{"1":"0 1 2 3 4 5 6 a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n o p MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","322":"9 q AB BB CB DB EB FB GB HB IB JB KB LB bB cB dB eB","1028":"fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC","33":"F G A B C WC XC CC zB 0B","2084":"E VC"},F:{"1":"yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB dC eC fC gC zB NC hC 0B","322":"OB PB QB","1028":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB"},G:{"1":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"F mC nC oC pC qC rC sC tC uC","2084":"kC lC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD"},Q:{"1028":"DC"},R:{"1":"ND"},S:{"1":"PD","516":"OD"}},B:5,C:"CSS position:sticky",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-subgrid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-subgrid.js
      index 9ba777f6625f10..b66c0732654cae 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 NC"},B:{"1":"H","2":"0 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z","194":"1 2 3"},C:{"1":"0 1 2 3 qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB QC RC"},D:{"1":"H xB 7B 8B","2":"0 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z","194":"1 2 3"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"1":"m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i bC cC dC eC yB LC fC zB","194":"j k l"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"CSS Subgrid",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"5 6 D","2":"0 1 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","194":"2 3 4"},C:{"1":"0 1 2 3 4 5 6 sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB RC SC"},D:{"1":"5 6 D 8B 9B AC","2":"0 1 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","194":"2 3 4"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"1":"m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i dC eC fC gC zB NC hC 0B","194":"j k l"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"CSS Subgrid",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-supports-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-supports-api.js
      index 27b6dbc895e4c9..cd02500b58af18 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L G M N O"},C:{"1":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O QC RC","66":"n o","260":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},D:{"1":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB","260":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC","132":"zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"132":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC","132":"zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS.supports() API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O RC SC","66":"n o","260":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},D:{"1":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB","260":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC","132":"0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"132":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC","132":"0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS.supports() API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-table.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-table.js
      index 766b9c3174cabc..556e9f9f38d1b2 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","132":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS Table display",D:true};
      +module.exports={A:{A:{"1":"F G A B","2":"J E PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","132":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS Table display",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-align-last.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-align-last.js
      index f7cd992f39ea8d..51752da7a2141f 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","4":"C K L G M N O"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B QC RC","33":"5 6 7 8 9 C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB","322":"IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n o bC cC dC eC yB LC fC zB","578":"6 7 8 9 p AB BB CB DB EB FB GB"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","33":"LD"}},B:4,C:"CSS3 text-align-last",D:true};
      +module.exports={A:{A:{"132":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","4":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B RC SC","33":"8 9 C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB","322":"KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o dC eC fC gC zB NC hC 0B","578":"9 p q AB BB CB DB EB FB GB HB IB"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","33":"OD"}},B:4,C:"CSS3 text-align-last",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-box-trim.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-box-trim.js
      index 6944a431e9be4e..680f797b72dc0e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-box-trim.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-box-trim.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC","194":"HC IC JC 2B KC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC","194":"HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS text-box-trim & text-box-edge",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC","194":"JC KC bC 3B LC MC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC","194":"JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS text-box-trim & text-box-edge",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-indent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-indent.js
      index 751a7e45494273..c20402b2f49fc5 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 NC"},B:{"132":"C K L G M N O","388":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"132":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB","388":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","132":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"132":"5 6 7 F B C G M N O n o p bC cC dC eC yB LC fC zB","388":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"1B EC FC GC HC IC JC 2B KC","132":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"132":"1C"},I:{"132":"3B I 2C 3C 4C 5C MC 6C 7C","388":"H"},J:{"132":"D A"},K:{"132":"A B C yB LC zB","388":"q"},L:{"388":"H"},M:{"132":"xB"},N:{"132":"A B"},O:{"388":"0B"},P:{"132":"I","388":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"388":"BC"},R:{"388":"KD"},S:{"132":"LD MD"}},B:4,C:"CSS text-indent",D:true};
      +module.exports={A:{A:{"132":"J E F G A B PC"},B:{"132":"C K L H M N O","388":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"9B AC","132":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B RC SC"},D:{"132":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB","388":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","132":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"132":"8 9 G B C H M N O n o p q dC eC fC gC zB NC hC 0B","388":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","132":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"132":"4C"},I:{"132":"4B I 5C 6C 7C 8C OC 9C AD","388":"D"},J:{"132":"E A"},K:{"132":"A B C zB NC 0B","388":"r"},L:{"388":"D"},M:{"132":"D"},N:{"132":"A B"},O:{"388":"1B"},P:{"132":"I","388":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"388":"DC"},R:{"388":"ND"},S:{"132":"OD PD"}},B:4,C:"CSS text-indent",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-justify.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-justify.js
      index f586ec5af2aa6d..daa605ef25f320 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 NC","132":"E F A B"},B:{"132":"C K L G M N O","322":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB QC RC","1025":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","1602":"bB"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","322":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB bC cC dC eC yB LC fC zB","322":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","322":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","322":"q"},L:{"322":"H"},M:{"1025":"xB"},N:{"132":"A B"},O:{"322":"0B"},P:{"2":"I","322":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"322":"BC"},R:{"322":"KD"},S:{"2":"LD","1025":"MD"}},B:4,C:"CSS text-justify",D:true};
      +module.exports={A:{A:{"16":"J E PC","132":"F G A B"},B:{"132":"C K L H M N O","322":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB RC SC","1025":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","1602":"dB"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","322":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB dC eC fC gC zB NC hC 0B","322":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","322":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","322":"r"},L:{"322":"D"},M:{"1025":"D"},N:{"132":"A B"},O:{"322":"1B"},P:{"2":"I","322":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"322":"DC"},R:{"322":"ND"},S:{"2":"OD","1025":"PD"}},B:4,C:"CSS text-justify",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-orientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-orientation.js
      index b0b65f7b56dde2..6bd2bf1c68b182 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB QC RC","194":"LB MB NB"},D:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"L G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC","16":"A","33":"B C K AC yB zB BC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS text-orientation",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB RC SC","194":"NB OB PB"},D:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"L H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC","16":"A","33":"B C K CC zB 0B DC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS text-orientation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-spacing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-spacing.js
      index 78801661814a4e..b4714db6fd5e01 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 NC","161":"E F A B"},B:{"2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"16":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS Text 4 text-spacing",D:false};
      +module.exports={A:{A:{"2":"J E PC","161":"F G A B"},B:{"2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","161":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"16":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS Text 4 text-spacing",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js
      index 73a58cae8845f0..eb95b6568e1e9d 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"1":"1 2 3 H","2":"0 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z"},C:{"1":"8B PC","2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B QC RC"},D:{"1":"1 2 3 H xB 7B 8B","2":"0 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS text-wrap: balance",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"2 3 4 5 6 D","2":"0 1 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z"},C:{"1":"9B AC","2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B RC SC"},D:{"1":"2 3 4 5 6 D 8B 9B AC","2":"0 1 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS text-wrap: balance",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-textshadow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-textshadow.js
      index f4264221cc7f1e..9560fe907e326b 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 NC","129":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","260":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"4":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"A","4":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"129":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS3 Text-shadow",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","129":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","260":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"4":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"A","4":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"129":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS3 Text-shadow",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action.js
      index 5f9d3b87cb634b..f89d8cfa875a1c 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 NC","289":"A"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC","194":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","1025":"ZB aB bB cB dB"},D:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC","516":"mC nC oC pC qC rC sC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","289":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","194":"LD"}},B:2,C:"CSS touch-action property",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G PC","289":"A"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC","194":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","1025":"bB cB dB eB fB"},D:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p dC eC fC gC zB NC hC 0B"},G:{"1":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC","516":"oC pC qC rC sC tC uC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","289":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","194":"OD"}},B:2,C:"CSS touch-action property",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-transitions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-transitions.js
      index e8d7061002b40c..4c31c962569bf0 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","33":"4 J D E F A B C K L G","164":"I"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 5 6 7 8 I J D E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","33":"J TC","164":"4 I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F bC cC","33":"C","164":"B dC eC yB LC fC"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"iC","164":"9B gC MC hC"},H:{"2":"1C"},I:{"1":"H 6C 7C","33":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","33":"D"},K:{"1":"q zB","33":"C","164":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"CSS3 Transitions",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","33":"7 J E F G A B C K L H","164":"I"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 I J E F G A B C K L H M N O n o p q AB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","33":"J UC","164":"7 I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G dC eC","33":"C","164":"B fC gC zB NC hC"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"kC","164":"BC iC OC jC"},H:{"2":"4C"},I:{"1":"D 9C AD","33":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","33":"E"},K:{"1":"r 0B","33":"C","164":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"CSS3 Transitions",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unicode-bidi.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unicode-bidi.js
      index 6aedd33f816b31..0726b32122e5f1 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","132":"C K L G M N O"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","33":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","132":"4 OC 3B I J D E F QC RC","292":"A B C K L G M"},D:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 I J D E F A B C K L G M","548":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"132":"4 I J D E SC 9B TC UC VC","548":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"132":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"132":"E 9B gC MC hC iC jC kC","548":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"16":"1C"},I:{"1":"H","16":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"16":"D A"},K:{"1":"q","16":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","16":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","33":"LD"}},B:4,C:"CSS unicode-bidi property",D:false};
      +module.exports={A:{A:{"132":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","132":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","132":"7 QC 4B I J E F G RC SC","292":"A B C K L H M"},D:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 I J E F G A B C K L H M","548":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"132":"7 I J E F TC BC UC VC WC","548":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"132":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"132":"F BC iC OC jC kC lC mC","548":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"16":"4C"},I:{"1":"D","16":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"16":"E A"},K:{"1":"r","16":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","16":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","33":"OD"}},B:4,C:"CSS unicode-bidi property",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unset-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unset-value.js
      index f13e2ef251a583..d0689803b43a01 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C"},C:{"1":"0 1 2 3 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB bC cC dC eC yB LC fC zB"},G:{"1":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS unset value",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C"},C:{"1":"0 1 2 3 4 5 6 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB RC SC"},D:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB dC eC fC gC zB NC hC 0B"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS unset value",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-variables.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-variables.js
      index 12682dca3eb478..de100a322ea550 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 NC"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L","260":"G"},C:{"1":"0 1 2 3 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB QC RC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","194":"VB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC","260":"WC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB bC cC dC eC yB LC fC zB","194":"IB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC","260":"mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS Variables (Custom Properties)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L","260":"H"},C:{"1":"0 1 2 3 4 5 6 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB RC SC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","194":"XB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC","260":"XC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB dC eC fC gC zB NC hC 0B","194":"KB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC","260":"oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS Variables (Custom Properties)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js
      index 0f4ac47fd57c8c..658a4c4c2b91a6 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"CSS @when / @else conditional rules",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"CSS @when / @else conditional rules",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-widows-orphans.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-widows-orphans.js
      index 5fb8e047fedf09..f87bd0c62bdade 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 NC","129":"E F"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 I J D E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","129":"F B bC cC dC eC yB LC fC"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q zB","2":"A B C yB LC"},L:{"1":"H"},M:{"2":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:2,C:"CSS widows & orphans",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E PC","129":"F G"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","129":"G B dC eC fC gC zB NC hC"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r 0B","2":"A B C zB NC"},L:{"1":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:2,C:"CSS widows & orphans",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js
      index 30b04cd7699650..f1a042f8af90fe 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":"4 5 I J D E F A B C K L G M N O n o","33":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"OC","33":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},M:{"33":"xB"},A:{"2":"J D E F A B NC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},K:{"2":"A B C yB LC zB","33":"q"},E:{"2":"4 I J SC 9B TC UC aC","33":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC"},G:{"2":"9B gC MC hC iC","33":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},P:{"2":"I","33":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},I:{"2":"3B I 2C 3C 4C 5C MC","33":"H 6C 7C"}},B:6,C:"width: stretch property",D:undefined};
      +module.exports={A:{D:{"2":"7 8 I J E F G A B C K L H M N O n o","33":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},L:{"33":"D"},B:{"2":"C K L H M N O","33":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"QC","33":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},M:{"33":"D"},A:{"2":"J E F G A B PC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},K:{"2":"A B C zB NC 0B","33":"r"},E:{"2":"7 I J TC BC UC VC cC","33":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC"},G:{"2":"BC iC OC jC kC","33":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},P:{"2":"I","33":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},I:{"2":"4B I 5C 6C 7C 8C OC","33":"D 9C AD"}},B:6,C:"width: stretch property",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-writing-mode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-writing-mode.js
      index 54d84b644f8bdc..2656b03cc36745 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB QC RC","322":"JB KB LB MB NB"},D:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J","16":"D","33":"5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","16":"4","33":"J D E F A TC UC VC WC AC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC","33":"E hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"2C 3C 4C","33":"3B I 5C MC 6C 7C"},J:{"33":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"36":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","33":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS writing-mode property",D:true};
      +module.exports={A:{A:{"132":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB RC SC","322":"LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J","16":"E","33":"8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","16":"7","33":"J E F G A UC VC WC XC CC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC","33":"F jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","2":"5C 6C 7C","33":"4B I 8C OC 9C AD"},J:{"33":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"36":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","33":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS writing-mode property",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-zoom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-zoom.js
      index 67108d75abee49..112c06fcbc2fb8 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 NC","129":"E F A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B"},H:{"2":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"129":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS zoom",D:true};
      +module.exports={A:{A:{"1":"J E PC","129":"F G A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC"},H:{"2":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"129":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"CSS zoom",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-attr.js
      index 9fc5bf9e2d753a..b8d0a88c3f94c7 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS3 attr() function for all properties",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"CSS3 attr() function for all properties",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js
      index acdde39df3e90f..c9def8286b6050 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","33":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 I J D E F"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","33":"4 I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"9B gC MC"},H:{"1":"1C"},I:{"1":"I H 5C MC 6C 7C","33":"3B 2C 3C 4C"},J:{"1":"A","33":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"CSS3 Box-sizing",D:true};
      +module.exports={A:{A:{"1":"F G A B","8":"J E PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 I J E F G"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","33":"7 I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"BC iC OC"},H:{"1":"4C"},I:{"1":"I D 8C OC 9C AD","33":"4B 5C 6C 7C"},J:{"1":"A","33":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"CSS3 Box-sizing",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-colors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-colors.js
      index 975cf1bd386801..29c2ad02d314de 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","4":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m cC dC eC yB LC fC zB","2":"F","4":"bC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS3 Colors",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","4":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m eC fC gC zB NC hC 0B","2":"G","4":"dC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS3 Colors",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-grab.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-grab.js
      index 36c4cb060e02f0..181f26ed9c2eb0 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 NC"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L"},C:{"1":"0 1 2 3 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","33":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","33":"4 I J D E F A SC 9B TC UC VC WC AC"},F:{"1":"C cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F B bC cC dC eC yB LC","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"33":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:2,C:"CSS grab & grabbing cursors",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB RC SC"},D:{"1":"0 1 2 3 4 5 6 pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","33":"7 I J E F G A TC BC UC VC WC XC CC"},F:{"1":"C eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G B dC eC fC gC zB NC","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"33":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:2,C:"CSS grab & grabbing cursors",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-newer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-newer.js
      index 23cf92307b728c..050a80397d3568 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","33":"4 5 6 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","33":"4 I J D E SC 9B TC UC VC"},F:{"1":"7 8 9 C AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F B bC cC dC eC yB LC","33":"5 6 G M N O n o p"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"33":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 QC 4B I J E F G A B C K L H M N O n o p q RC SC"},D:{"1":"0 1 2 3 4 5 6 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","33":"7 I J E F TC BC UC VC WC"},F:{"1":"9 C AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G B dC eC fC gC zB NC","33":"8 H M N O n o p q"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"33":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors.js
      index f214935145a8fb..ca87197995cd73 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","4":"OC 3B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","4":"I"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","4":"I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","260":"F B C bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","16":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:2,C:"CSS3 Cursors (original values)",D:true};
      +module.exports={A:{A:{"1":"G A B","132":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"I"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","4":"I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","260":"G B C dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","16":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:2,C:"CSS3 Cursors (original values)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-tabsize.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-tabsize.js
      index e0ad873c8e9ba1..0e53f17f8c4aca 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","33":"aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z","164":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},D:{"1":"0 1 2 3 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n","132":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC","132":"D E F A B C K UC VC WC AC yB zB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F bC cC dC","132":"5 6 7 8 9 G M N O n o p AB BB","164":"B C eC yB LC fC zB"},G:{"1":"wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC","132":"E jC kC lC mC nC oC pC qC rC sC tC uC vC"},H:{"164":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","132":"6C 7C"},J:{"132":"D A"},K:{"1":"q","2":"A","164":"B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"164":"LD MD"}},B:4,C:"CSS3 tab-size",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","33":"cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z","164":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},D:{"1":"0 1 2 3 4 5 6 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n","132":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC","132":"E F G A B C K VC WC XC CC zB 0B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G dC eC fC","132":"8 9 H M N O n o p q AB BB CB DB","164":"B C gC zB NC hC 0B"},G:{"1":"yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC","132":"F lC mC nC oC pC qC rC sC tC uC vC wC xC"},H:{"164":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","132":"9C AD"},J:{"132":"E A"},K:{"1":"r","2":"A","164":"B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"164":"OD PD"}},B:4,C:"CSS3 tab-size",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js
      index 6b2319ab18b938..868feb56d495b1 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS currentColor value",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS currentColor value",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elements.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elements.js
      index 06cf0db24f4628..e0f37b9bf8a509 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 NC","8":"A B"},B:{"1":"P","2":"0 1 2 3 Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","8":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 OC 3B I J D E F A B C K L G M N O n o p 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","66":"6 7 8 9 AB BB CB","72":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P","2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","66":"AB BB CB DB EB FB"},E:{"2":"4 I SC 9B TC","8":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","2":"F B C mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","66":"5 G M N O"},G:{"2":"9B gC MC hC iC","8":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"7C","2":"3B I H 2C 3C 4C 5C MC 6C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I 8C 9C AD BD CD AC DD ED","2":"n o p FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"2":"KD"},S:{"2":"MD","72":"LD"}},B:7,C:"Custom Elements (deprecated V0 spec)",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","8":"A B"},B:{"1":"P","2":"0 1 2 3 4 5 6 Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","8":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 QC 4B I J E F G A B C K L H M N O n o p 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","66":"9 q AB BB CB DB EB","72":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P","2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","66":"CB DB EB FB GB HB"},E:{"2":"7 I TC BC UC","8":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","2":"G B C oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","66":"8 H M N O"},G:{"2":"BC iC OC jC kC","8":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"AD","2":"4B I D 5C 6C 7C 8C OC 9C"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I BD CD DD ED FD CC GD HD","2":"n o p q ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"2":"ND"},S:{"2":"PD","72":"OD"}},B:7,C:"Custom Elements (deprecated V0 spec)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elementsv1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elementsv1.js
      index cae410f3e65871..415c5565a28655 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 NC","8":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","8":"C K L G M N O"},C:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB QC RC","8":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","456":"XB YB ZB aB bB cB dB eB fB","712":"4B gB 5B hB"},D:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","8":"ZB aB","132":"bB cB dB eB fB 4B gB 5B hB iB jB kB lB"},E:{"2":"4 I J D SC 9B TC UC VC","8":"E F A WC","132":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB bC cC dC eC yB LC fC zB","132":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC","132":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","132":"8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","8":"LD"}},B:1,C:"Custom Elements (V1)",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","8":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","8":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB RC SC","8":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","456":"ZB aB bB cB dB eB fB gB hB","712":"5B iB 6B jB"},D:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","8":"bB cB","132":"dB eB fB gB hB 5B iB 6B jB kB lB mB nB"},E:{"2":"7 I J E TC BC UC VC WC","8":"F G A XC","132":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB dC eC fC gC zB NC hC 0B","132":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC","132":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","132":"BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","8":"OD"}},B:1,C:"Custom Elements (V1)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/customevent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/customevent.js
      index e2a5ef80d1b4d2..7801c61c041cf3 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 NC","132":"F A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC","132":"J D E F A"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I","16":"4 J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","16":"4 J","388":"TC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F bC cC dC eC","132":"B yB LC"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"gC","16":"9B MC","388":"hC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"2C 3C 4C","388":"3B I 5C MC"},J:{"1":"A","388":"D"},K:{"1":"C q zB","2":"A","132":"B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"CustomEvent",D:true};
      +module.exports={A:{A:{"2":"J E F PC","132":"G A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC","132":"J E F G A"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I","16":"7 J E F K L","388":"G A B C"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","16":"7 J","388":"UC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G dC eC fC gC","132":"B zB NC"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"iC","16":"BC OC","388":"jC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"5C 6C 7C","388":"4B I 8C OC"},J:{"1":"A","388":"E"},K:{"1":"C r 0B","2":"A","132":"B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"CustomEvent",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datalist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datalist.js
      index 5958f8ec56eccb..f91a2b373b1a1d 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":"NC","8":"J D E F","260":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L G","1284":"M N O"},C:{"1":"0 1 2 3 x y z H xB 7B 8B PC","8":"OC 3B QC RC","516":"l m r s t u v w","4612":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k"},D:{"1":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","8":"4 5 I J D E F A B C K L G M N O","132":"6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"4 I J D E F A B C SC 9B TC UC VC WC AC yB"},F:{"1":"F B C jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},G:{"8":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC","2049":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H 7C","8":"3B I 2C 3C 4C 5C MC 6C"},J:{"1":"A","8":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"8":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:1,C:"Datalist element",D:true};
      +module.exports={A:{A:{"2":"PC","8":"J E F G","260":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L H","1284":"M N O"},C:{"1":"0 1 2 3 4 5 6 y z D 8B 9B AC","8":"QC 4B RC SC","516":"l m s t u v w x","4612":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k"},D:{"1":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 8 I J E F G A B C K L H M N O","132":"9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"7 I J E F G A B C TC BC UC VC WC XC CC zB"},F:{"1":"G B C lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},G:{"8":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC","2049":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D AD","8":"4B I 5C 6C 7C 8C OC 9C"},J:{"1":"A","8":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"8":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:1,C:"Datalist element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dataset.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dataset.js
      index b89d7d10dd5bab..3a2b280b230ad5 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 NC"},B:{"1":"C K L G M","129":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","4":"4 OC 3B I QC RC","129":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB","4":"4 I J","129":"0 1 2 3 5 6 7 8 9 D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"4":"4 I SC 9B","129":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"C FB GB HB IB JB KB LB MB NB OB yB LC fC zB","4":"F B bC cC dC eC","129":"5 6 7 8 9 G M N O n o p AB BB CB DB EB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"4":"9B gC MC","129":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"4":"1C"},I:{"4":"2C 3C 4C","129":"3B I H 5C MC 6C 7C"},J:{"129":"D A"},K:{"1":"C yB LC zB","4":"A B","129":"q"},L:{"129":"H"},M:{"129":"xB"},N:{"1":"B","4":"A"},O:{"129":"0B"},P:{"129":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"129":"BC"},R:{"129":"KD"},S:{"1":"LD","129":"MD"}},B:1,C:"dataset & data-* attributes",D:true};
      +module.exports={A:{A:{"1":"B","4":"J E F G A PC"},B:{"1":"C K L H M","129":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","4":"7 QC 4B I RC SC","129":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"UB VB WB XB YB ZB aB bB cB dB","4":"7 I J","129":"0 1 2 3 4 5 6 8 9 E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"4":"7 I TC BC","129":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"C HB IB JB KB LB MB NB OB PB QB zB NC hC 0B","4":"G B dC eC fC gC","129":"8 9 H M N O n o p q AB BB CB DB EB FB GB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"4":"BC iC OC","129":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"4":"4C"},I:{"4":"5C 6C 7C","129":"4B I D 8C OC 9C AD"},J:{"129":"E A"},K:{"1":"C zB NC 0B","4":"A B","129":"r"},L:{"129":"D"},M:{"129":"D"},N:{"1":"B","4":"A"},O:{"129":"1B"},P:{"129":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"129":"DC"},R:{"129":"ND"},S:{"1":"OD","129":"PD"}},B:1,C:"dataset & data-* attributes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datauri.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datauri.js
      index c75f8bcac32a82..d276be3614fe0f 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 NC","132":"E","260":"F A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"260":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Data URIs",D:true};
      +module.exports={A:{A:{"2":"J E PC","132":"F","260":"G A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K H M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Data URIs",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js
      index 09114957454bb2..93be2d83b7c59d 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":"NC","132":"J D E F A B"},B:{"1":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","132":"C K L G M N"},C:{"1":"0 1 2 3 dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","132":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC","260":"ZB aB bB cB","772":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},D:{"1":"0 1 2 3 pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 5 6 I J D E F A B C K L G M N O n o p","260":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB","772":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"C K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B","132":"J D E F A TC UC VC WC","260":"B AC yB"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F B C bC cC dC eC yB LC fC","132":"zB","260":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","772":"5 6 7 G M N O n o p"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC hC","132":"E iC jC kC lC mC nC"},H:{"132":"1C"},I:{"1":"H","16":"3B 2C 3C 4C","132":"I 5C MC","772":"6C 7C"},J:{"132":"D A"},K:{"1":"q","16":"A B C yB LC","132":"zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"n o p CD AC DD ED FD GD HD 1B 2B ID JD","260":"I 8C 9C AD BD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","132":"LD"}},B:6,C:"Date.prototype.toLocaleDateString",D:true};
      +module.exports={A:{A:{"16":"PC","132":"J E F G A B"},B:{"1":"0 1 2 3 4 5 6 O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","132":"C K L H M N"},C:{"1":"0 1 2 3 4 5 6 fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC","260":"bB cB dB eB","772":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},D:{"1":"0 1 2 3 4 5 6 rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 I J E F G A B C K L H M N O n o p q","260":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB","772":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"C K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC","132":"J E F G A UC VC WC XC","260":"B CC zB"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G B C dC eC fC gC zB NC hC","132":"0B","260":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","772":"8 9 H M N O n o p q"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC jC","132":"F kC lC mC nC oC pC"},H:{"132":"4C"},I:{"1":"D","16":"4B 5C 6C 7C","132":"I 8C OC","772":"9C AD"},J:{"132":"E A"},K:{"1":"r","16":"A B C zB NC","132":"0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD","260":"I BD CD DD ED"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","132":"OD"}},B:6,C:"Date.prototype.toLocaleDateString",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js
      index 09cf8f18f1153c..2b507108260fec 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 NC"},B:{"1":"0 1 2 3 Z a b c d e f g h i j k l m r s t u v w x y z 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 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T","66":"U V W X Y"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC"},F:{"1":"vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB bC cC dC eC yB LC fC zB"},G:{"1":"HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD GD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"Declarative Shadow DOM",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H 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 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T","66":"U V W X Y"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC"},F:{"1":"xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB dC eC fC gC zB NC hC 0B"},G:{"1":"JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID JD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"Declarative Shadow DOM",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js
      index bf4f0b32ff2fe9..19693538e33008 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Decorators",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Decorators",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/details.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/details.js
      index 3a68fc12a83597..d50ef71cd390e4 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 NC","8":"J D E"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC","8":"4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB QC RC","194":"UB VB"},D:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","8":"4 I J D E F A B","257":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB","769":"C K L G M N O"},E:{"1":"C K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"4 I SC 9B TC","257":"J D E F A UC VC WC","1025":"B AC yB"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"C yB LC fC zB","8":"F B bC cC dC eC"},G:{"1":"E iC jC kC lC mC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"9B gC MC hC","1025":"nC oC pC"},H:{"8":"1C"},I:{"1":"I H 5C MC 6C 7C","8":"3B 2C 3C 4C"},J:{"1":"A","8":"D"},K:{"1":"q","8":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Details & Summary elements",D:true};
      +module.exports={A:{A:{"2":"G A B PC","8":"J E F"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC","8":"7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC SC","194":"WB XB"},D:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 I J E F G A B","257":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB","769":"C K L H M N O"},E:{"1":"C K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"7 I TC BC UC","257":"J E F G A VC WC XC","1025":"B CC zB"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"C zB NC hC 0B","8":"G B dC eC fC gC"},G:{"1":"F kC lC mC nC oC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"BC iC OC jC","1025":"pC qC rC"},H:{"8":"4C"},I:{"1":"I D 8C OC 9C AD","8":"4B 5C 6C 7C"},J:{"1":"A","8":"E"},K:{"1":"r","8":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Details & Summary elements",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/deviceorientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/deviceorientation.js
      index bdc511587ec4d5..20b25a1f6ab97e 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 NC","132":"B"},B:{"1":"C K L G M N O","4":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"OC 3B QC","4":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","8":"4 I RC"},D:{"2":"4 I J","4":"0 1 2 3 5 6 7 8 9 D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","4":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"9B gC","4":"E MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"2C 3C 4C","4":"3B I H 5C MC 6C 7C"},J:{"2":"D","4":"A"},K:{"1":"C zB","2":"A B yB LC","4":"q"},L:{"4":"H"},M:{"4":"xB"},N:{"1":"B","2":"A"},O:{"4":"0B"},P:{"4":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"4":"BC"},R:{"4":"KD"},S:{"4":"LD MD"}},B:4,C:"DeviceOrientation & DeviceMotion events",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","132":"B"},B:{"1":"C K L H M N O","4":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"QC 4B RC","4":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 I SC"},D:{"2":"7 I J","4":"0 1 2 3 4 5 6 8 9 E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","4":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"BC iC","4":"F OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"5C 6C 7C","4":"4B I D 8C OC 9C AD"},J:{"2":"E","4":"A"},K:{"1":"C 0B","2":"A B zB NC","4":"r"},L:{"4":"D"},M:{"4":"D"},N:{"1":"B","2":"A"},O:{"4":"1B"},P:{"4":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"4":"DC"},R:{"4":"ND"},S:{"4":"OD PD"}},B:4,C:"DeviceOrientation & DeviceMotion events",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/devicepixelratio.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/devicepixelratio.js
      index e555a49f2b9916..9f113348e63877 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M N QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F B bC cC dC eC yB LC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"C q zB","2":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Window.devicePixelRatio",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M N RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G B dC eC fC gC zB NC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"C r 0B","2":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Window.devicePixelRatio",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dialog.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dialog.js
      index 81033e144eb733..16b178dae273e2 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB QC RC","194":"aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P","1218":"Q R 6B S T U V W X Y Z a b c d e f g"},D:{"1":"0 1 2 3 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB","322":"FB GB HB IB JB"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C G M N O bC cC dC eC yB LC fC zB","578":"5 6 n o p"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:1,C:"Dialog element",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB RC SC","194":"cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P","1218":"Q R 7B S T U V W X Y Z a b c d e f g"},D:{"1":"0 1 2 3 4 5 6 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB","322":"HB IB JB KB LB"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C H M N O dC eC fC gC zB NC hC 0B","578":"8 n o p q"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:1,C:"Dialog element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dispatchevent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dispatchevent.js
      index 4875d29fd7a4de..e7c58084605c98 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":"NC","129":"F A","130":"J D E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","16":"F"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","129":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"EventTarget.dispatchEvent",D:true};
      +module.exports={A:{A:{"1":"B","16":"PC","129":"G A","130":"J E F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","16":"G"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","129":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"EventTarget.dispatchEvent",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dnssec.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dnssec.js
      index 206fadf5b3f159..f797e230524342 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 NC"},B:{"132":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"132":"0 1 2 3 4 I EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","388":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB"},E:{"132":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"132":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"132":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"132":"1C"},I:{"132":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"132":"D A"},K:{"132":"A B C q yB LC zB"},L:{"132":"H"},M:{"132":"xB"},N:{"132":"A B"},O:{"132":"0B"},P:{"132":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"132":"BC"},R:{"132":"KD"},S:{"132":"LD MD"}},B:6,C:"DNSSEC and DANE",D:true};
      +module.exports={A:{A:{"132":"J E F G A B PC"},B:{"132":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"132":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"132":"0 1 2 3 4 5 6 7 I GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","388":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB"},E:{"132":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"132":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"132":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"132":"4C"},I:{"132":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"132":"E A"},K:{"132":"A B C r zB NC 0B"},L:{"132":"D"},M:{"132":"D"},N:{"132":"A B"},O:{"132":"1B"},P:{"132":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"132":"DC"},R:{"132":"ND"},S:{"132":"OD PD"}},B:6,C:"DNSSEC and DANE",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/do-not-track.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/do-not-track.js
      index 1edd60fc84d813..45eceb049a0310 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 NC","164":"F A","260":"B"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L G M"},C:{"1":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E QC RC","516":"5 6 7 8 9 F A B C K L G M N O n o p AB BB CB DB EB"},D:{"1":"0 1 2 3 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n o p"},E:{"1":"J A B C TC WC AC yB","2":"4 I K L G SC 9B zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","1028":"D E F UC VC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC yB LC fC"},G:{"1":"lC mC nC oC pC qC rC","2":"9B gC MC hC iC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","1028":"E jC kC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"16":"D","1028":"A"},K:{"1":"q zB","16":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"164":"A","260":"B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:7,C:"Do Not Track API",D:true};
      +module.exports={A:{A:{"2":"J E F PC","164":"G A","260":"B"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F RC SC","516":"8 9 G A B C K L H M N O n o p q AB BB CB DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n o p"},E:{"1":"J A B C UC XC CC zB","2":"7 I K L H TC BC 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","1028":"E F G VC WC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC zB NC hC"},G:{"1":"nC oC pC qC rC sC tC","2":"BC iC OC jC kC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","1028":"F lC mC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"16":"E","1028":"A"},K:{"1":"r 0B","16":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"164":"A","260":"B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:7,C:"Do Not Track API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-currentscript.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-currentscript.js
      index dff1fa35ce4569..cf66f19b6ebc79 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB"},E:{"1":"E F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC VC"},F:{"1":"5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C G bC cC dC eC yB LC fC zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"document.currentScript",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB"},E:{"1":"F G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC WC"},F:{"1":"8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C H dC eC fC gC zB NC hC 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"document.currentScript",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js
      index 00ed079909631b..a2b85f0d146148 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","16":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","16":"F"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:7,C:"document.evaluate & XPath",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","16":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","16":"G"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:7,C:"document.evaluate & XPath",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-execcommand.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-execcommand.js
      index 7d3142ec3d1723..a100d56802d98d 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m cC dC eC yB LC fC zB","16":"F bC"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC","16":"MC hC iC"},H:{"2":"1C"},I:{"1":"H 5C MC 6C 7C","2":"3B I 2C 3C 4C"},J:{"1":"A","2":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:7,C:"Document.execCommand()",D:true};
      +module.exports={A:{A:{"1":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC UC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m eC fC gC zB NC hC 0B","16":"G dC"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC","16":"OC jC kC"},H:{"2":"4C"},I:{"1":"D 8C OC 9C AD","2":"4B I 5C 6C 7C"},J:{"1":"A","2":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:7,C:"Document.execCommand()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-policy.js
      index cd4aadb8b5e716..f184b9b131b87a 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 NC"},B:{"2":"C K L G M N O P Q R S T","132":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T","132":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB bC cC dC eC yB LC fC zB","132":"qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","132":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","132":"q"},L:{"132":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"132":"KD"},S:{"2":"LD MD"}},B:7,C:"Document Policy",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O P Q R S T","132":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T","132":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB dC eC fC gC zB NC hC 0B","132":"sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","132":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","132":"r"},L:{"132":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"132":"ND"},S:{"2":"OD PD"}},B:7,C:"Document Policy",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-scrollingelement.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-scrollingelement.js
      index 1f6defb551b971..4c43fb1861e9f6 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","16":"C K"},C:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB QC RC"},D:{"1":"0 1 2 3 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"document.scrollingElement",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","16":"C K"},C:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB RC SC"},D:{"1":"0 1 2 3 4 5 6 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"document.scrollingElement",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/documenthead.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/documenthead.js
      index 0ca2e63d0a4524..88b4f8e9e82b6e 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","16":"4"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","2":"F bC cC dC eC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"document.head",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","16":"7"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","2":"G dC eC fC gC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"document.head",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-manip-convenience.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-manip-convenience.js
      index ea5f0ff7f1f21c..e8e0e29cb35639 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 NC"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB QC RC"},D:{"1":"0 1 2 3 bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","194":"ZB aB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB bC cC dC eC yB LC fC zB","194":"NB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"DOM manipulation convenience methods",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB RC SC"},D:{"1":"0 1 2 3 4 5 6 dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB cB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB dC eC fC gC zB NC hC 0B","194":"PB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"DOM manipulation convenience methods",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-range.js
      index 8d05b5928ef1d2..826f0b42a3e8c5 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":"NC","8":"J D E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Document Object Model Range",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"PC","8":"J E F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Document Object Model Range",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domcontentloaded.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domcontentloaded.js
      index b8f2367143adc5..c197f3d23c00aa 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"DOMContentLoaded",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"DOMContentLoaded",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dommatrix.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dommatrix.js
      index 29edd706e14424..c37a2e5f207ac9 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 NC","132":"A B"},B:{"132":"C K L G M N O","1028":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB QC RC","1028":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2564":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","3076":"WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB"},D:{"16":"4 I J D","132":"5 6 7 8 9 F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB","388":"E","1028":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"16":"I SC 9B","132":"4 J D E F A TC UC VC WC AC","1028":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","1028":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"16":"9B gC MC","132":"E hC iC jC kC lC mC nC oC","1028":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"132":"I 5C MC 6C 7C","292":"3B 2C 3C 4C","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C yB LC zB","1028":"q"},L:{"1028":"H"},M:{"1028":"xB"},N:{"132":"A B"},O:{"1028":"0B"},P:{"132":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1028":"BC"},R:{"1028":"KD"},S:{"1028":"MD","2564":"LD"}},B:4,C:"DOMMatrix",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","132":"A B"},B:{"132":"C K L H M N O","1028":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB RC SC","1028":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2564":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","3076":"YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB"},D:{"16":"7 I J E","132":"8 9 G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB","388":"F","1028":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"16":"I TC BC","132":"7 J E F G A UC VC WC XC CC","1028":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","1028":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"16":"BC iC OC","132":"F jC kC lC mC nC oC pC qC","1028":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"132":"I 8C OC 9C AD","292":"4B 5C 6C 7C","1028":"D"},J:{"16":"E","132":"A"},K:{"2":"A B C zB NC 0B","1028":"r"},L:{"1028":"D"},M:{"1028":"D"},N:{"132":"A B"},O:{"1028":"1B"},P:{"132":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1028":"DC"},R:{"1028":"ND"},S:{"1028":"PD","2564":"OD"}},B:4,C:"DOMMatrix",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/download.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/download.js
      index 29a4224455987b..8a49fa8cb4248a 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C"},C:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Download attribute",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C"},C:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Download attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dragndrop.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dragndrop.js
      index 14c0dd2797c403..7f8f95f00106e9 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 NC","772":"A B"},B:{"1":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","8":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","8":"F B bC cC dC eC yB LC fC"},G:{"1":"zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","1025":"H"},J:{"2":"D A"},K:{"1":"zB","8":"A B C yB LC","1025":"q"},L:{"1025":"H"},M:{"2":"xB"},N:{"1":"A B"},O:{"1025":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:1,C:"Drag and Drop",D:true};
      +module.exports={A:{A:{"644":"J E F G PC","772":"A B"},B:{"1":"0 1 2 3 4 5 6 O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L H M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","8":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","8":"G B dC eC fC gC zB NC hC"},G:{"1":"1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","1025":"D"},J:{"2":"E A"},K:{"1":"0B","8":"A B C zB NC","1025":"r"},L:{"1025":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"1025":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:1,C:"Drag and Drop",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-closest.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-closest.js
      index 8f95b6373bca0c..01087e248cd02e 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 NC"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L"},C:{"1":"0 1 2 3 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB QC RC"},D:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Element.closest()",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB RC SC"},D:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Element.closest()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-from-point.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-from-point.js
      index 9802a8e3d060f2..b5c653a37c0e15 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":"NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","16":"OC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","16":"F bC cC dC eC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"C q zB","16":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"document.elementFromPoint()",D:true};
      +module.exports={A:{A:{"1":"J E F G A B","16":"PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","16":"QC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","16":"G dC eC fC gC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"C r 0B","16":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"document.elementFromPoint()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-scroll-methods.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-scroll-methods.js
      index 66b640a665c527..123eb9baf524f0 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB QC RC"},D:{"1":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB"},E:{"1":"L G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC","132":"A B C K AC yB zB BC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB bC cC dC eC yB LC fC zB"},G:{"1":"yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC","132":"nC oC pC qC rC sC tC uC vC wC xC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB RC SC"},D:{"1":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB"},E:{"1":"L H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC","132":"A B C K CC zB 0B DC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB dC eC fC gC zB NC hC 0B"},G:{"1":"0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC","132":"pC qC rC sC tC uC vC wC xC yC zC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eme.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eme.js
      index 35a1c0c51d0c8c..ce68634613d17d 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 NC","164":"B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB QC RC"},D:{"1":"0 1 2 3 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB","132":"IB JB KB LB MB NB OB"},E:{"1":"C K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC","164":"D E F A B VC WC AC yB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n o bC cC dC eC yB LC fC zB","132":"6 7 8 9 p AB BB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Encrypted Media Extensions",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","164":"B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB RC SC"},D:{"1":"0 1 2 3 4 5 6 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB","132":"KB LB MB NB OB PB QB"},E:{"1":"C K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC","164":"E F G A B WC XC CC zB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o dC eC fC gC zB NC hC 0B","132":"9 p q AB BB CB DB"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Encrypted Media Extensions",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eot.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eot.js
      index b349c675f7b20c..c559d2cbedeca4 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":"NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"EOT - Embedded OpenType fonts",D:true};
      +module.exports={A:{A:{"1":"J E F G A B","2":"PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"EOT - Embedded OpenType fonts",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es5.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es5.js
      index c67a68b0a4d640..e4f42e319d7dea 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 NC","260":"F","1026":"E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","4":"OC 3B QC RC","132":"4 5 I J D E F A B C K L G M N O n"},D:{"1":"0 1 2 3 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","4":"4 I J D E F A B C K L G M N O","132":"5 n o p"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","4":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","4":"F B C bC cC dC eC yB LC fC","132":"zB"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","4":"9B gC MC hC"},H:{"132":"1C"},I:{"1":"H 6C 7C","4":"3B 2C 3C 4C","132":"5C MC","900":"I"},J:{"1":"A","4":"D"},K:{"1":"q","4":"A B C yB LC","132":"zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"ECMAScript 5",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E PC","260":"G","1026":"F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"QC 4B RC SC","132":"7 8 I J E F G A B C K L H M N O n"},D:{"1":"0 1 2 3 4 5 6 9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"7 I J E F G A B C K L H M N O","132":"8 n o p"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","4":"7 I TC BC UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","4":"G B C dC eC fC gC zB NC hC","132":"0B"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","4":"BC iC OC jC"},H:{"132":"4C"},I:{"1":"D 9C AD","4":"4B 5C 6C 7C","132":"8C OC","900":"I"},J:{"1":"A","4":"E"},K:{"1":"r","4":"A B C zB NC","132":"0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"ECMAScript 5",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-class.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-class.js
      index 6c48045e11c951..341f6ca2afdd1b 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C"},C:{"1":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB QC RC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","132":"PB QB RB SB TB UB VB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB bC cC dC eC yB LC fC zB","132":"CB DB EB FB GB HB IB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"ES6 classes",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C"},C:{"1":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB RC SC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","132":"RB SB TB UB VB WB XB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB dC eC fC gC zB NC hC 0B","132":"EB FB GB HB IB JB KB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"ES6 classes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-generators.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-generators.js
      index ab5d2ce6771744..efb2befc7ef90f 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C"},C:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"ES6 Generators",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C"},C:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB RC SC"},D:{"1":"0 1 2 3 4 5 6 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"ES6 Generators",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js
      index 2497ebba0ac243..f2d61816ea7efd 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB QC RC","194":"lB"},D:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC dC eC yB LC fC zB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"JavaScript modules: dynamic import()",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB RC SC","194":"nB"},D:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB dC eC fC gC zB NC hC 0B"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"JavaScript modules: dynamic import()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module.js
      index 22b2dfa300902e..ece8b34de7e8fd 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L","2049":"M N O","2242":"G"},C:{"1":"0 1 2 3 gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB QC RC","322":"bB cB dB eB fB 4B"},D:{"1":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B","194":"gB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC","1540":"AC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB bC cC dC eC yB LC fC zB","194":"UB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC","1540":"oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"JavaScript modules via script tag",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L","2049":"M N O","2242":"H"},C:{"1":"0 1 2 3 4 5 6 iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB RC SC","322":"dB eB fB gB hB 5B"},D:{"1":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B","194":"iB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC","1540":"CC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB dC eC fC gC zB NC hC 0B","194":"WB"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC","1540":"qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"JavaScript modules via script tag",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-number.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-number.js
      index 97e7fc7ce27e4a..e9cbdf8733d0fe 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G QC RC","132":"5 6 7 M N O n o p","260":"8 9 AB BB CB DB","516":"EB"},D:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G M N O","1028":"5 6 7 8 9 n o p AB BB CB DB EB FB GB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","1028":"5 G M N O n"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C","1028":"5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"ES6 Number",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H RC SC","132":"8 9 M N O n o p q","260":"AB BB CB DB EB FB","516":"GB"},D:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H M N O","1028":"8 9 n o p q AB BB CB DB EB FB GB HB IB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","1028":"8 H M N O n"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C","1028":"8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"ES6 Number",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-string-includes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-string-includes.js
      index 094edf8af30f73..65ce9b1a3b3a18 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB QC RC"},D:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"String.prototype.includes",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB RC SC"},D:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"String.prototype.includes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6.js
      index 6d09561b78b09f..d23aec4c1b3ca8 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 NC","388":"B"},B:{"257":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L","769":"G M N O"},C:{"2":"4 OC 3B I QC RC","4":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","257":"0 1 2 3 bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 I J D E F A B C K L G M N O n","4":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","257":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC","4":"E F VC WC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","4":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB","257":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC","4":"E jC kC lC mC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","4":"6C 7C","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C yB LC zB","257":"q"},L:{"257":"H"},M:{"257":"xB"},N:{"2":"A","388":"B"},O:{"257":"0B"},P:{"4":"I","257":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"257":"BC"},R:{"257":"KD"},S:{"4":"LD","257":"MD"}},B:6,C:"ECMAScript 2015 (ES6)",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","388":"B"},B:{"257":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L","769":"H M N O"},C:{"2":"7 QC 4B I RC SC","4":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","257":"0 1 2 3 4 5 6 dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 I J E F G A B C K L H M N O n","4":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","257":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC","4":"F G WC XC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","4":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB","257":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC","4":"F lC mC nC oC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","4":"9C AD","257":"D"},J:{"2":"E","4":"A"},K:{"2":"A B C zB NC 0B","257":"r"},L:{"257":"D"},M:{"257":"D"},N:{"2":"A","388":"B"},O:{"257":"1B"},P:{"4":"I","257":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"257":"DC"},R:{"257":"ND"},S:{"4":"OD","257":"PD"}},B:6,C:"ECMAScript 2015 (ES6)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eventsource.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eventsource.js
      index 4d94540f99cb72..da57e3476c7d97 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","4":"F bC cC dC eC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"D A"},K:{"1":"C q yB LC zB","4":"A B"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Server-sent events",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","4":"G dC eC fC gC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"E A"},K:{"1":"C r zB NC 0B","4":"A B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Server-sent events",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/extended-system-fonts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/extended-system-fonts.js
      index 539f956ae1dbc8..ef65dbee6b3384 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/feature-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/feature-policy.js
      index 385d1160179b69..c738c2dcb1ee01 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 NC"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q QC RC","260":"0 1 2 3 sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"sB tB uB vB wB P Q R S T U V W","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B","132":"gB 5B hB iB jB kB lB mB nB oB pB qB rB q","1025":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B SC 9B TC UC VC WC AC","772":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"hB iB jB kB lB mB nB oB pB qB rB q sB","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB bC cC dC eC yB LC fC zB","132":"UB VB WB XB YB ZB aB bB cB dB eB fB gB","1025":"tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC","772":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","1025":"q"},L:{"1025":"H"},M:{"260":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD","132":"BD CD AC"},Q:{"132":"BC"},R:{"1025":"KD"},S:{"2":"LD","260":"MD"}},B:7,C:"Feature Policy",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"P Q R S T U V W","2":"C K L H M N O","1025":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r RC SC","260":"0 1 2 3 4 5 6 uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"uB vB wB xB yB P Q R S T U V W","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B","132":"iB 6B jB kB lB mB nB oB pB qB rB sB tB r","1025":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B TC BC UC VC WC XC CC","772":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB r uB","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB dC eC fC gC zB NC hC 0B","132":"WB XB YB ZB aB bB cB dB eB fB gB hB iB","1025":"vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC","772":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","1025":"r"},L:{"1025":"D"},M:{"260":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD","132":"ED FD CC"},Q:{"132":"DC"},R:{"1025":"ND"},S:{"2":"OD","260":"PD"}},B:7,C:"Feature Policy",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fetch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fetch.js
      index 7591bb55cb23a0..09cd555c69d660 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB QC RC","1025":"MB","1218":"HB IB JB KB LB"},D:{"1":"0 1 2 3 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB","260":"NB","772":"OB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p bC cC dC eC yB LC fC zB","260":"AB","772":"BB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Fetch",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB RC SC","1025":"OB","1218":"JB KB LB MB NB"},D:{"1":"0 1 2 3 4 5 6 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","260":"PB","772":"QB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB dC eC fC gC zB NC hC 0B","260":"CB","772":"DB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Fetch",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fieldset-disabled.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fieldset-disabled.js
      index b8e88decebc8f8..30e22513b00c9d 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":"NC","132":"E F","388":"J D A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G","16":"5 M N O"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m cC dC eC yB LC fC zB","16":"F bC"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC"},H:{"388":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A","260":"B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"disabled attribute of the fieldset element",D:true};
      +module.exports={A:{A:{"16":"PC","132":"F G","388":"J E A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H","16":"8 M N O"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m eC fC gC zB NC hC 0B","16":"G dC"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC"},H:{"388":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A","260":"B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"disabled attribute of the fieldset element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fileapi.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fileapi.js
      index 907050bcd3efec..96a38e5a7fe277 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 NC","260":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L G M N O"},C:{"1":"0 1 2 3 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC","260":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB RC"},D:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I","260":"5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB","388":"J D E F A B C"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B","260":"J D E F UC VC WC","388":"TC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B bC cC dC eC","260":"5 6 7 C G M N O n o p yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","260":"E iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H 7C","2":"2C 3C 4C","260":"6C","388":"3B I 5C MC"},J:{"260":"A","388":"D"},K:{"1":"q","2":"A B","260":"C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A","260":"B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"File API",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","260":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC","260":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB SC"},D:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I","260":"8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB","388":"J E F G A B C"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC","260":"J E F G VC WC XC","388":"UC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B dC eC fC gC","260":"8 9 C H M N O n o p q zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","260":"F kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D AD","2":"5C 6C 7C","260":"9C","388":"4B I 8C OC"},J:{"260":"A","388":"E"},K:{"1":"r","2":"A B","260":"C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","260":"B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"File API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereader.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereader.js
      index 408f5f6898214f..a152789001747e 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 NC","132":"A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","2":"OC 3B QC"},D:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","2":"F B bC cC dC eC"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"A","2":"D"},K:{"1":"C q yB LC zB","2":"A B"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"FileReader API",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","2":"QC 4B RC"},D:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","2":"G B dC eC fC gC"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"A","2":"E"},K:{"1":"C r zB NC 0B","2":"A B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"FileReader API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereadersync.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereadersync.js
      index 82e86ddb846add..927ed2d925c1b2 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F bC cC","16":"B dC eC yB LC"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"C q LC zB","2":"A","16":"B yB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"FileReaderSync",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G dC eC","16":"B fC gC zB NC"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"C r NC 0B","2":"A","16":"B zB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"FileReaderSync",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filesystem.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filesystem.js
      index b2e97cfbec99a3..33bd60a9a38fae 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 NC"},B:{"2":"C K L G M N O","33":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 I J D","33":"0 1 2 3 5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","36":"E F A B C"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","33":"A"},K:{"2":"A B C yB LC zB","33":"q"},L:{"33":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"33":"0B"},P:{"2":"I","33":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"33":"KD"},S:{"2":"LD MD"}},B:7,C:"Filesystem & FileWriter API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","33":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 I J E","33":"0 1 2 3 4 5 6 8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","36":"F G A B C"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","33":"A"},K:{"2":"A B C zB NC 0B","33":"r"},L:{"33":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"33":"1B"},P:{"2":"I","33":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"33":"ND"},S:{"2":"OD PD"}},B:7,C:"Filesystem & FileWriter API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flac.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flac.js
      index 163b8c408c4791..1b96701a5fd9ed 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 NC"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G"},C:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB QC RC"},D:{"1":"0 1 2 3 dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","16":"RB SB TB","388":"UB VB WB XB YB ZB aB bB cB"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","516":"B C yB zB"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB bC cC dC eC yB LC fC zB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"2C 3C 4C","16":"3B I 5C MC 6C 7C"},J:{"1":"A","2":"D"},K:{"1":"q zB","16":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","129":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"FLAC audio format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H"},C:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB RC SC"},D:{"1":"0 1 2 3 4 5 6 fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","16":"TB UB VB","388":"WB XB YB ZB aB bB cB dB eB"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC","516":"B C zB 0B"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB dC eC fC gC zB NC hC 0B"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","2":"5C 6C 7C","16":"4B I 8C OC 9C AD"},J:{"1":"A","2":"E"},K:{"1":"r 0B","16":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","129":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"FLAC audio format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox-gap.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox-gap.js
      index f082515f73b43e..ef4dfb9c79af06 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 NC"},B:{"1":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O P Q R S"},C:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB QC RC"},D:{"1":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S"},E:{"1":"G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC"},F:{"1":"pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB bC cC dC eC yB LC fC zB"},G:{"1":"yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"gap property for Flexbox",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O P Q R S"},C:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB RC SC"},D:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S"},E:{"1":"H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC"},F:{"1":"rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB dC eC fC gC zB NC hC 0B"},G:{"1":"0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"gap property for Flexbox",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox.js
      index fd4570beaee47a..261369dd604317 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 NC","1028":"B","1316":"A"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","164":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC","516":"6 7 8 9 p AB"},D:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"6 7 8 9 o p AB BB","164":"4 5 I J D E F A B C K L G M N O n"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","33":"D E UC VC","164":"4 I J SC 9B TC"},F:{"1":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B C bC cC dC eC yB LC fC","33":"G M"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"E jC kC","164":"9B gC MC hC iC"},H:{"1":"1C"},I:{"1":"H 6C 7C","164":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","164":"D"},K:{"1":"q zB","2":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","292":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS Flexible Box Layout Module",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","1028":"B","1316":"A"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","164":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC","516":"9 p q AB BB CB"},D:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"9 o p q AB BB CB DB","164":"7 8 I J E F G A B C K L H M N O n"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","33":"E F VC WC","164":"7 I J TC BC UC"},F:{"1":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B C dC eC fC gC zB NC hC","33":"H M"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"F lC mC","164":"BC iC OC jC kC"},H:{"1":"4C"},I:{"1":"D 9C AD","164":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","164":"E"},K:{"1":"r 0B","2":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","292":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS Flexible Box Layout Module",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flow-root.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flow-root.js
      index eb72fa53408c19..262ed678940493 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB QC RC"},D:{"1":"0 1 2 3 fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB zB"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB bC cC dC eC yB LC fC zB"},G:{"1":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"display: flow-root",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB RC SC"},D:{"1":"0 1 2 3 4 5 6 hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB 0B"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB dC eC fC gC zB NC hC 0B"},G:{"1":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"display: flow-root",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusin-focusout-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusin-focusout-events.js
      index da707f1db861b1..22cd07b72d1cde 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":"NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F bC cC dC eC","16":"B yB LC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"1":"I H 5C MC 6C 7C","2":"2C 3C 4C","16":"3B"},J:{"1":"D A"},K:{"1":"C q zB","2":"A","16":"B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"focusin & focusout events",D:true};
      +module.exports={A:{A:{"1":"J E F G A B","2":"PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G dC eC fC gC","16":"B zB NC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"1":"I D 8C OC 9C AD","2":"5C 6C 7C","16":"4B"},J:{"1":"E A"},K:{"1":"C r 0B","2":"A","16":"B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"focusin & focusout events",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-family-system-ui.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-family-system-ui.js
      index 246c2608497593..078a206364b064 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QC RC","132":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a"},D:{"1":"0 1 2 3 dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","260":"aB bB cB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC","16":"F","132":"A WC AC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB bC cC dC eC yB LC fC zB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC","132":"lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"132":"LD MD"}},B:5,C:"system-ui value for font-family",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB RC SC","132":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a"},D:{"1":"0 1 2 3 4 5 6 fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","260":"cB dB eB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC","16":"G","132":"A XC CC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB dC eC fC gC zB NC hC 0B"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC","132":"nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"132":"OD PD"}},B:5,C:"system-ui value for font-family",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-feature.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-feature.js
      index 83d294fc158a47..bb18afb62b9c2d 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB","164":"4 I J D E F A B C K L"},D:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G","33":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","292":"5 M N O n"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"D E F SC 9B UC VC","4":"4 I J TC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB"},G:{"1":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E jC kC lC","4":"9B gC MC hC iC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","33":"6C 7C"},J:{"2":"D","33":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","33":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS font-feature-settings",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB","164":"7 I J E F G A B C K L"},D:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H","33":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","292":"8 M N O n"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"E F G TC BC VC WC","4":"7 I J UC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F lC mC nC","4":"BC iC OC jC kC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","33":"9C AD"},J:{"2":"E","33":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","33":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS font-feature-settings",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-kerning.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-kerning.js
      index 09bc759e1ad0e3..c453d25d761ea0 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 OC 3B I J D E F A B C K L G M N O n o p QC RC","194":"7 8 9 AB BB CB DB EB FB GB"},D:{"1":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB","33":"CB DB EB FB"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC","33":"D E F VC"},F:{"1":"6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C G bC cC dC eC yB LC fC zB","33":"5 M N O"},G:{"1":"rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC","33":"E kC lC mC nC oC pC qC"},H:{"2":"1C"},I:{"1":"H 7C","2":"3B I 2C 3C 4C 5C MC","33":"6C"},J:{"2":"D","33":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS3 font-kerning",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o p q RC SC","194":"9 AB BB CB DB EB FB GB HB IB"},D:{"1":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB","33":"EB FB GB HB"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC","33":"E F G WC"},F:{"1":"9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C H dC eC fC gC zB NC hC 0B","33":"8 M N O"},G:{"1":"tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC","33":"F mC nC oC pC qC rC sC"},H:{"2":"4C"},I:{"1":"D AD","2":"4B I 5C 6C 7C 8C OC","33":"9C"},J:{"2":"E","33":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS3 font-kerning",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-loading.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-loading.js
      index 9d2dca2a995931..b4f36bafcadfd1 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB QC RC","194":"IB JB KB LB MB NB"},D:{"1":"0 1 2 3 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n o bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"CSS Font Loading",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB RC SC","194":"KB LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"CSS Font Loading",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-size-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-size-adjust.js
      index b9f0e9fabe00a3..d9038d277f22af 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 NC"},B:{"2":"C K L G M N O","194":"H","962":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z"},C:{"1":"xB 7B 8B PC","2":"OC","516":"0 1 2 3 b c d e f g h i j k l m r s t u v w x y z H","772":"4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","194":"8B","962":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B"},E:{"1":"2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC","772":"HC IC JC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB bC cC dC eC yB LC fC zB","194":"l m","962":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k"},G:{"1":"2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC","772":"HC IC JC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"194":"BC"},R:{"2":"KD"},S:{"2":"LD","516":"MD"}},B:2,C:"CSS font-size-adjust",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","194":"5 6 D","962":"0 1 2 3 4 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z"},C:{"1":"6 D 8B 9B AC","2":"QC","516":"0 1 2 3 4 5 b c d e f g h i j k l m s t u v w x y z","772":"7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"8B 9B AC","962":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},E:{"1":"3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC","772":"JC KC bC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB dC eC fC gC zB NC hC 0B","194":"l m","962":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k"},G:{"1":"3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC","772":"JC KC 3C"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"194":"DC"},R:{"2":"ND"},S:{"2":"OD","516":"PD"}},B:2,C:"CSS font-size-adjust",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-smooth.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-smooth.js
      index c340ccbebc7fa8..e50c8a632d17d1 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 NC"},B:{"2":"C K L G M N O","676":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 OC 3B I J D E F A B C K L G M N O n o p QC RC","804":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"SC 9B","676":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","676":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"804":"LD MD"}},B:7,C:"CSS font-smooth",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","676":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q RC SC","804":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"TC BC","676":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","676":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"804":"OD PD"}},B:7,C:"CSS font-smooth",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-unicode-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-unicode-range.js
      index da4322094194c9..e428a2b203ee18 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 NC","4":"F A B"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","4":"C K L G M"},C:{"1":"0 1 2 3 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB QC RC","194":"JB KB LB MB NB OB PB QB"},D:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","4":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","4":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","4":"5 G M N O n o p"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","4":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","4":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","4":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"4":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","4":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Font unicode-range subsetting",D:true};
      +module.exports={A:{A:{"2":"J E F PC","4":"G A B"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","4":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB RC SC","194":"LB MB NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","4":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","4":"8 H M N O n o p"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","4":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","4":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","4":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"4":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","4":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Font unicode-range subsetting",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-alternates.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-alternates.js
      index cf4de860f582a7..2f4c67f8251153 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 NC","130":"A B"},B:{"1":"0 1 2 3 y z H","130":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x"},C:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","130":"4 5 6 I J D E F A B C K L G M N O n o p","322":"7 8 9 AB BB CB DB EB FB GB"},D:{"1":"0 1 2 3 y z H xB 7B 8B","2":"4 I J D E F A B C K L G","130":"5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"D E F SC 9B UC VC","130":"4 I J TC"},F:{"1":"h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","130":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g"},G:{"1":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B jC kC lC","130":"gC MC hC iC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","130":"6C 7C"},J:{"2":"D","130":"A"},K:{"2":"A B C yB LC zB","130":"q"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"130":"0B"},P:{"1":"p","130":"I n o 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"130":"BC"},R:{"130":"KD"},S:{"1":"LD MD"}},B:5,C:"CSS font-variant-alternates",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","130":"A B"},B:{"1":"0 1 2 3 4 5 6 z D","130":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y"},C:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","130":"7 8 I J E F G A B C K L H M N O n o p q","322":"9 AB BB CB DB EB FB GB HB IB"},D:{"1":"0 1 2 3 4 5 6 z D 8B 9B AC","2":"7 I J E F G A B C K L H","130":"8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"E F G TC BC VC WC","130":"7 I J UC"},F:{"1":"h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","130":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC lC mC nC","130":"iC OC jC kC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","130":"9C AD"},J:{"2":"E","130":"A"},K:{"2":"A B C zB NC 0B","130":"r"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"130":"1B"},P:{"1":"p q","130":"I n o BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"130":"DC"},R:{"130":"ND"},S:{"1":"OD PD"}},B:5,C:"CSS font-variant-alternates",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js
      index 2b7dcd0772907f..e7fb194553ae24 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB QC RC"},D:{"1":"0 1 2 3 ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB bC cC dC eC yB LC fC zB"},G:{"1":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","16":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS font-variant-numeric",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB RC SC"},D:{"1":"0 1 2 3 4 5 6 bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB dC eC fC gC zB NC hC 0B"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","16":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS font-variant-numeric",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fontface.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fontface.js
      index 61d5490aa02272..15e974c5f61b0a 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m cC dC eC yB LC fC zB","2":"F bC"},G:{"1":"E MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","260":"9B gC"},H:{"2":"1C"},I:{"1":"I H 5C MC 6C 7C","2":"2C","4":"3B 3C 4C"},J:{"1":"A","4":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"@font-face Web fonts",D:true};
      +module.exports={A:{A:{"1":"G A B","132":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m eC fC gC zB NC hC 0B","2":"G dC"},G:{"1":"F OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","260":"BC iC"},H:{"2":"4C"},I:{"1":"I D 8C OC 9C AD","2":"5C","4":"4B 6C 7C"},J:{"1":"A","4":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"@font-face Web fonts",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-attribute.js
      index bd5238ed2b2d01..fa335987115c10 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 NC"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","16":"4"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"1":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Form attribute",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","16":"7"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"1":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Form attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-submit-attributes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-submit-attributes.js
      index 19d45fd42b5030..529761fd28d8ec 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","2":"F bC","16":"cC dC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"1":"1C"},I:{"1":"I H 5C MC 6C 7C","2":"2C 3C 4C","16":"3B"},J:{"1":"A","2":"D"},K:{"1":"B C q yB LC zB","16":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Attributes for form submission",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","2":"G dC","16":"eC fC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"1":"4C"},I:{"1":"I D 8C OC 9C AD","2":"5C 6C 7C","16":"4B"},J:{"1":"A","2":"E"},K:{"1":"B C r zB NC 0B","16":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Attributes for form submission",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-validation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-validation.js
      index 7c367bb0d2d903..057beac8bad86b 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","132":"4 J D E F A TC UC VC WC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m cC dC eC yB LC fC zB","2":"F bC"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B","132":"E gC MC hC iC jC kC lC mC nC"},H:{"516":"1C"},I:{"1":"H 7C","2":"3B 2C 3C 4C","132":"I 5C MC 6C"},J:{"1":"A","132":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"260":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","132":"LD"}},B:1,C:"Form validation",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","132":"7 J E F G A UC VC WC XC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m eC fC gC zB NC hC 0B","2":"G dC"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC","132":"F iC OC jC kC lC mC nC oC pC"},H:{"516":"4C"},I:{"1":"D AD","2":"4B 5C 6C 7C","132":"I 8C OC 9C"},J:{"1":"A","132":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","132":"OD"}},B:1,C:"Form validation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/forms.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/forms.js
      index eb4bb8b72caa0a..b7d4772484a247 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":"NC","4":"A B","8":"J D E F"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","8":"OC 3B QC RC"},D:{"1":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","4":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB"},E:{"4":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"SC 9B"},F:{"1":"F B C ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","4":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},G:{"2":"9B","4":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","4":"6C 7C"},J:{"2":"D","4":"A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"4":"xB"},N:{"4":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","4":"I 8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"4":"LD MD"}},B:1,C:"HTML5 form features",D:false};
      +module.exports={A:{A:{"2":"PC","4":"A B","8":"J E F G"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","4":"C K L H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB"},E:{"4":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"TC BC"},F:{"1":"G B C bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","4":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},G:{"2":"BC","4":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","4":"9C AD"},J:{"2":"E","4":"A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"4":"D"},N:{"4":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","4":"I BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"4":"OD PD"}},B:1,C:"HTML5 form features",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fullscreen.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fullscreen.js
      index dd3cb1708bff1d..640182705b0b0b 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 NC","548":"B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","516":"C K L G M N O"},C:{"1":"0 1 2 3 jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F QC RC","676":"5 6 7 8 9 A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","1700":"UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB"},D:{"1":"0 1 2 3 qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L","676":"5 G M N O","804":"6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB"},E:{"1":"HC IC JC 2B KC aC","2":"4 I SC 9B","548":"DC 0B ZC 1B EC FC GC","676":"TC","804":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC"},F:{"1":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B C bC cC dC eC yB LC fC","804":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC","2052":"rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","292":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A","548":"B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","804":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Full Screen API",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","548":"B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","516":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G RC SC","676":"8 9 A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","1700":"WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB"},D:{"1":"0 1 2 3 4 5 6 sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L","676":"8 H M N O","804":"9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I TC BC","548":"FC 1B aC 2B GC HC IC","676":"UC","804":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC"},F:{"1":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B C dC eC fC gC zB NC hC","804":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},G:{"1":"MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC","2052":"tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","292":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","548":"B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","804":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Full Screen API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gamepad.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gamepad.js
      index ce5b950b962dc0..783f27fcefd8e3 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC"},D:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n","33":"6 7 o p"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"Gamepad API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC"},D:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n","33":"9 o p q"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"Gamepad API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/geolocation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/geolocation.js
      index 9f49543972a740..acf08a0881f025 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":"NC","8":"J D E"},B:{"1":"C K L G M N O","129":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB QC RC","8":"OC 3B","129":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","4":"I","129":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J D E F B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"I SC 9B","129":"A"},F:{"1":"5 6 7 8 9 B C M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB eC yB LC fC zB","2":"F G bC","8":"cC dC","129":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"E 9B gC MC hC iC jC kC lC mC","129":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I 2C 3C 4C 5C MC 6C 7C","129":"H"},J:{"1":"D A"},K:{"1":"B C yB LC zB","8":"A","129":"q"},L:{"129":"H"},M:{"129":"xB"},N:{"1":"A B"},O:{"129":"0B"},P:{"1":"I","129":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"129":"BC"},R:{"129":"KD"},S:{"1":"LD","129":"MD"}},B:2,C:"Geolocation",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"PC","8":"J E F"},B:{"1":"C K L H M N O","129":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB RC SC","8":"QC 4B","129":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","4":"I","129":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J E F G B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"I TC BC","129":"A"},F:{"1":"8 9 B C M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB gC zB NC hC 0B","2":"G H dC","8":"eC fC","129":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"F BC iC OC jC kC lC mC nC oC","129":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I 5C 6C 7C 8C OC 9C AD","129":"D"},J:{"1":"E A"},K:{"1":"B C zB NC 0B","8":"A","129":"r"},L:{"129":"D"},M:{"129":"D"},N:{"1":"A B"},O:{"129":"1B"},P:{"1":"I","129":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"129":"DC"},R:{"129":"ND"},S:{"1":"OD","129":"PD"}},B:2,C:"Geolocation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getboundingclientrect.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getboundingclientrect.js
      index 6d5b7eb4affe20..a11ec92104d72f 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 NC","2049":"F A B","2692":"E"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2049":"C K L G M N O"},C:{"1":"0 1 2 3 5 6 7 8 9 C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC","260":"4 I J D E F A B","1156":"3B","1284":"QC","1796":"RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","16":"F bC","132":"cC dC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","132":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"2049":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Element.getBoundingClientRect()",D:true};
      +module.exports={A:{A:{"644":"J E PC","2049":"G A B","2692":"F"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2049":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 8 9 C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC","260":"7 I J E F G A B","1156":"4B","1284":"RC","1796":"SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","16":"G dC","132":"eC fC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","132":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2049":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Element.getBoundingClientRect()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getcomputedstyle.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getcomputedstyle.js
      index b221a7e6931201..a8c5a77acde602 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC","132":"3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","260":"4 I J D E F A"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","260":"I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","260":"F bC cC dC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","260":"9B gC MC"},H:{"260":"1C"},I:{"1":"I H 5C MC 6C 7C","260":"3B 2C 3C 4C"},J:{"1":"A","260":"D"},K:{"1":"B C q yB LC zB","260":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"getComputedStyle",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC","132":"4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","260":"7 I J E F G A"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","260":"I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","260":"G dC eC fC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","260":"BC iC OC"},H:{"260":"4C"},I:{"1":"I D 8C OC 9C AD","260":"4B 5C 6C 7C"},J:{"1":"A","260":"E"},K:{"1":"B C r zB NC 0B","260":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"getComputedStyle",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getelementsbyclassname.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getelementsbyclassname.js
      index 1354ceda914c46..c7010bb176c366 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":"NC","8":"J D E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","8":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"getElementsByClassName",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"PC","8":"J E F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","8":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"getElementsByClassName",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getrandomvalues.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getrandomvalues.js
      index c506550df48a48..86e74d7fc9992a 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 NC","33":"B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A","33":"B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"crypto.getRandomValues()",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","33":"B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","33":"B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"crypto.getRandomValues()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gyroscope.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gyroscope.js
      index 42e5ec0b83ff2e..5112d52350f40a 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","194":"fB 4B gB 5B hB iB jB kB lB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:4,C:"Gyroscope",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","194":"hB 5B iB 6B jB kB lB mB nB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:4,C:"Gyroscope",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hardwareconcurrency.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hardwareconcurrency.js
      index 0b5a73adb4bea0..a84de68e595655 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 NC"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L"},C:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB QC RC"},D:{"1":"0 1 2 3 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB"},E:{"2":"4 I J D SC 9B TC UC VC","129":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","194":"E F A WC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"2":"9B gC MC hC iC jC","129":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","194":"E kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"navigator.hardwareConcurrency",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB RC SC"},D:{"1":"0 1 2 3 4 5 6 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"2":"7 I J E TC BC UC VC WC","129":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","194":"F G A XC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"2":"BC iC OC jC kC lC","129":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","194":"F mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"navigator.hardwareConcurrency",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hashchange.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hashchange.js
      index 0718e79852c0bb..3cab2c8d5d0f10 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","8":"OC 3B QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","8":"I"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","8":"F bC cC dC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B"},H:{"2":"1C"},I:{"1":"3B I H 3C 4C 5C MC 6C 7C","2":"2C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","8":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Hashchange event",D:true};
      +module.exports={A:{A:{"1":"F G A B","8":"J E PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","8":"QC 4B RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"I"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","8":"G dC eC fC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC"},H:{"2":"4C"},I:{"1":"4B I D 6C 7C 8C OC 9C AD","2":"5C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","8":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Hashchange event",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/heif.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/heif.js
      index 4785315bd10f35..720cc61e4100aa 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","130":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC JC","130":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"HEIF/HEIC image format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC","130":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC 3C","130":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"HEIF/HEIC image format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hevc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hevc.js
      index 60ce8a0ce71fc3..48bb08058ac126 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 NC","132":"B"},B:{"132":"C K L G M N O","1028":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t","2052":"0 1 2 3 u v w x y z H xB 7B 8B"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","516":"B C yB zB"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c bC cC dC eC yB LC fC zB","2052":"d e f g h i j k l m"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","2052":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","258":"q"},L:{"2052":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"o p","2":"I","258":"n 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:6,C:"HEVC/H.265 video format",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","132":"B"},B:{"132":"C K L H M N O","1028":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D RC SC","4162":"8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u","2052":"0 1 2 3 4 5 6 v w x y z D 8B 9B AC"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC","516":"B C zB 0B"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c dC eC fC gC zB NC hC 0B","2052":"d e f g h i j k l m"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","2052":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","258":"r"},L:{"2052":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"o p q","2":"I","258":"n BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:6,C:"HEVC/H.265 video format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hidden.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hidden.js
      index 5f9a7be724453e..ccd92efbf294d1 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","2":"F B bC cC dC eC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"1":"1C"},I:{"1":"I H 5C MC 6C 7C","2":"3B 2C 3C 4C"},J:{"1":"A","2":"D"},K:{"1":"C q yB LC zB","2":"A B"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"hidden attribute",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","2":"G B dC eC fC gC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"1":"4C"},I:{"1":"I D 8C OC 9C AD","2":"4B 5C 6C 7C"},J:{"1":"A","2":"E"},K:{"1":"C r zB NC 0B","2":"A B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"hidden attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/high-resolution-time.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/high-resolution-time.js
      index 3a59f56edc1af1..017676e678f564 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","2":"4 OC 3B I J D E F A B C K L QC RC","129":"cB dB eB","769":"fB 4B","1281":"0 1 2 3 gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O","33":"6 n o p"},E:{"1":"E F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC VC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"High Resolution Time API",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","2":"7 QC 4B I J E F G A B C K L RC SC","129":"eB fB gB","769":"hB 5B","1281":"0 1 2 3 4 5 6 iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O","33":"n o p q"},E:{"1":"F G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC WC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"High Resolution Time API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/history.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/history.js
      index 37e4d26ba39805..a3e1eea44d3ffc 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","4":"4 TC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m LC fC zB","2":"F B bC cC dC eC yB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC","4":"MC"},H:{"2":"1C"},I:{"1":"H 3C 4C MC 6C 7C","2":"3B I 2C 5C"},J:{"1":"D A"},K:{"1":"C q yB LC zB","2":"A B"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Session history management",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","4":"7 UC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m NC hC 0B","2":"G B dC eC fC gC zB"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC","4":"OC"},H:{"2":"4C"},I:{"1":"D 6C 7C OC 9C AD","2":"4B I 5C 8C"},J:{"1":"E A"},K:{"1":"C r zB NC 0B","2":"A B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Session history management",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html-media-capture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html-media-capture.js
      index f84277c96a6ac5..ba5d19f5d19fc2 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"9B gC MC hC","129":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C","257":"3C 4C"},J:{"1":"A","16":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"516":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"16":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:2,C:"HTML Media Capture",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"BC iC OC jC","129":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C","257":"6C 7C"},J:{"1":"A","16":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"516":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"16":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:2,C:"HTML Media Capture",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html5semantic.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html5semantic.js
      index a46065649ad038..085f063bc7204f 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":"NC","8":"J D E","260":"F A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC","132":"3B QC RC","260":"4 5 I J D E F A B C K L G M N O n"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 I","260":"5 6 7 8 J D E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","132":"I SC 9B","260":"4 J TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","132":"F B bC cC dC eC","260":"C yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","132":"9B","260":"gC MC hC iC"},H:{"132":"1C"},I:{"1":"H 6C 7C","132":"2C","260":"3B I 3C 4C 5C MC"},J:{"260":"D A"},K:{"1":"q","132":"A","260":"B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"260":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"HTML5 semantic elements",D:true};
      +module.exports={A:{A:{"2":"PC","8":"J E F","260":"G A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC","132":"4B RC SC","260":"7 8 I J E F G A B C K L H M N O n"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 I","260":"8 9 J E F G A B C K L H M N O n o p q AB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","132":"I TC BC","260":"7 J UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","132":"G B dC eC fC gC","260":"C zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","132":"BC","260":"iC OC jC kC"},H:{"132":"4C"},I:{"1":"D 9C AD","132":"5C","260":"4B I 6C 7C 8C OC"},J:{"260":"E A"},K:{"1":"r","132":"A","260":"B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"HTML5 semantic elements",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http-live-streaming.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http-live-streaming.js
      index 617a41d53b4e1e..1cfe25c6a468bf 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 NC"},B:{"1":"C K L G M N O","2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"HTTP Live Streaming (HLS)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"C K L H M N O","2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"HTTP Live Streaming (HLS)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http2.js
      index e9235ba51b3f04..5a637dfbc6671d 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 NC","132":"B"},B:{"1":"C K L G M N O","513":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB QC RC","513":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB","513":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC","260":"F A WC AC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB","2":"5 6 7 8 9 F B C G M N O n o p AB bC cC dC eC yB LC fC zB","513":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","513":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","513":"q"},L:{"513":"H"},M:{"513":"xB"},N:{"2":"A B"},O:{"513":"0B"},P:{"1":"I","513":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"513":"BC"},R:{"513":"KD"},S:{"1":"LD","513":"MD"}},B:6,C:"HTTP/2 protocol",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","132":"B"},B:{"1":"C K L H M N O","513":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB RC SC","513":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","513":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC","260":"G A XC CC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB","2":"8 9 G B C H M N O n o p q AB BB CB dC eC fC gC zB NC hC 0B","513":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","513":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","513":"r"},L:{"513":"D"},M:{"513":"D"},N:{"2":"A B"},O:{"513":"1B"},P:{"1":"I","513":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"513":"DC"},R:{"513":"ND"},S:{"1":"OD","513":"PD"}},B:6,C:"HTTP/2 protocol",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http3.js
      index e3d620e64885ee..a29291a6aa6647 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 NC"},B:{"1":"0 1 2 3 W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB QC RC","194":"rB q sB tB uB vB wB P Q R 6B S T U V W"},D:{"1":"0 1 2 3 W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB","322":"P Q R S T","578":"U V"},E:{"2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB BC","2052":"HC IC JC 2B KC aC","2116":"1B EC FC GC","3140":"L G XC YC CC DC 0B ZC"},F:{"1":"sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB bC cC dC eC yB LC fC zB","578":"q"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC","2052":"HC IC JC 2B KC","2116":"xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:6,C:"HTTP/3 protocol",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O","322":"P Q R S T","578":"U V"},C:{"1":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB RC SC","194":"tB r uB vB wB xB yB P Q R 7B S T U V W"},D:{"1":"0 1 2 3 4 5 6 W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB","322":"P Q R S T","578":"U V"},E:{"2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B DC","2052":"JC KC bC 3B LC MC cC","2116":"2B GC HC IC","3140":"L H YC ZC EC FC 1B aC"},F:{"1":"uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB dC eC fC gC zB NC hC 0B","578":"r"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC","2052":"JC KC 3C 3B LC MC","2116":"zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:6,C:"HTTP/3 protocol",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-sandbox.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-sandbox.js
      index 94248129c3c0d3..d3a9c8a67d91d2 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M QC RC","4":"5 6 7 8 9 N O n o p AB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC"},H:{"2":"1C"},I:{"1":"3B I H 3C 4C 5C MC 6C 7C","2":"2C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"sandbox attribute for iframes",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M RC SC","4":"8 9 N O n o p q AB BB CB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC"},H:{"2":"4C"},I:{"1":"4B I D 6C 7C 8C OC 9C AD","2":"5C"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"sandbox attribute for iframes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-seamless.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-seamless.js
      index 0ebf7a080e27d5..1627d09f2c8b7f 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 I J D E F A B C K L G M N O AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","66":"6 7 8 9 n o p"},E:{"2":"4 I J E F A B C K L G SC 9B TC UC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","130":"D VC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","130":"jC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"seamless attribute for iframes",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 I J E F G A B C K L H M N O CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","66":"9 n o p q AB BB"},E:{"2":"7 I J F G A B C K L H TC BC UC VC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","130":"E WC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","130":"lC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"seamless attribute for iframes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-srcdoc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-srcdoc.js
      index 7483d6e2d2297a..e8fb18c6aa1b81 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":"NC","8":"J D E F A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","8":"C K L G M N O"},C:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC","8":"4 5 6 7 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K","8":"5 L G M N O"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B","8":"4 I TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B bC cC dC eC","8":"C yB LC fC zB"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B","8":"gC MC hC"},H:{"2":"1C"},I:{"1":"H 6C 7C","8":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","8":"D"},K:{"1":"q","2":"A B","8":"C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"8":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"srcdoc attribute for iframes",D:true};
      +module.exports={A:{A:{"2":"PC","8":"J E F G A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","8":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC","8":"7 8 9 4B I J E F G A B C K L H M N O n o p q RC SC"},D:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K","8":"8 L H M N O"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC","8":"7 I UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B dC eC fC gC","8":"C zB NC hC 0B"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC","8":"iC OC jC"},H:{"2":"4C"},I:{"1":"D 9C AD","8":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","8":"E"},K:{"1":"r","2":"A B","8":"C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"srcdoc attribute for iframes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imagecapture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imagecapture.js
      index 72b8ac52cd8217..0de73d580cd951 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB QC RC","194":"0 1 2 3 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","322":"aB bB cB dB eB fB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB bC cC dC eC yB LC fC zB","322":"NB OB PB QB RB SB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"194":"LD MD"}},B:5,C:"ImageCapture API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB RC SC","194":"0 1 2 3 4 5 6 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","322":"cB dB eB fB gB hB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB dC eC fC gC zB NC hC 0B","322":"PB QB RB SB TB UB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"194":"OD PD"}},B:5,C:"ImageCapture API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ime.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ime.js
      index 6050e512b9c426..bddf7d07d767e9 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 NC","161":"B"},B:{"2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A","161":"B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Input Method Editor API",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","161":"B"},B:{"2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","161":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A","161":"B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Input Method Editor API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js
      index 0d6c5575d32eca..77622a7aa24344 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"naturalWidth & naturalHeight image properties",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"naturalWidth & naturalHeight image properties",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/import-maps.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/import-maps.js
      index 50108c29e2bba5..f9ac7c4ddb255e 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 NC"},B:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O","194":"P Q R S T U V W X"},C:{"1":"0 1 2 3 v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k QC RC","322":"l m r s t u"},D:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q","194":"sB tB uB vB wB P Q R S T U V W X"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC"},F:{"1":"uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC dC eC yB LC fC zB","194":"hB iB jB kB lB mB nB oB pB qB rB q sB tB"},G:{"1":"HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD GD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"Import maps",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O","194":"P Q R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k RC SC","322":"l m s t u v"},D:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r","194":"uB vB wB xB yB P Q R S T U V W X"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC"},F:{"1":"wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB dC eC fC gC zB NC hC 0B","194":"jB kB lB mB nB oB pB qB rB sB tB r uB vB"},G:{"1":"JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID JD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"Import maps",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imports.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imports.js
      index 80d4bf84c01079..b49f3094ce466e 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 NC","8":"A B"},B:{"1":"P","2":"0 1 2 3 Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","8":"C K L G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB QC RC","8":"0 1 2 3 DB EB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","72":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P","2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","66":"DB EB FB GB HB","72":"IB"},E:{"2":"4 I SC 9B TC","8":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","2":"F B C G M mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","66":"5 N O n o","72":"p"},G:{"2":"9B gC MC hC iC","8":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"8":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I 8C 9C AD BD CD AC DD ED","2":"n o p FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"2":"KD"},S:{"1":"LD","8":"MD"}},B:5,C:"HTML Imports",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","8":"A B"},B:{"1":"P","2":"0 1 2 3 4 5 6 Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","8":"C K L H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB RC SC","8":"0 1 2 3 4 5 6 FB GB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","72":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P","2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","66":"FB GB HB IB JB","72":"KB"},E:{"2":"7 I TC BC UC","8":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","2":"G B C H M oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","66":"8 N O n o","72":"p"},G:{"2":"BC iC OC jC kC","8":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"8":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I BD CD DD ED FD CC GD HD","2":"n o p q ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"2":"ND"},S:{"1":"OD","8":"PD"}},B:5,C:"HTML Imports",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js
      index 9b2f442b1275d6..3bb57de3107296 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":"NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","2":"OC 3B","16":"QC"},D:{"1":"0 1 2 3 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F B bC cC dC eC yB LC"},G:{"1":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"indeterminate checkbox",D:true};
      +module.exports={A:{A:{"1":"J E F G A B","16":"PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","2":"QC 4B","16":"RC"},D:{"1":"0 1 2 3 4 5 6 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G B dC eC fC gC zB NC"},G:{"1":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"indeterminate checkbox",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb.js
      index b2acbef49f25f9..f68dea7ff33760 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 NC","132":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","132":"C K L G M N O"},C:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","33":"A B C K L G","36":"4 I J D E F"},D:{"1":"0 1 2 3 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"A","8":"4 I J D E F","33":"6","36":"5 B C K L G M N O n o p"},E:{"1":"A B C K L G AC yB zB BC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"4 I J D SC 9B TC UC","260":"E F VC WC","516":"XC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F bC cC","8":"B C dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"9B gC MC hC iC jC","260":"E kC lC mC","516":"yC"},H:{"2":"1C"},I:{"1":"H 6C 7C","8":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","8":"D"},K:{"1":"q","2":"A","8":"B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"IndexedDB",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","132":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","33":"A B C K L H","36":"7 I J E F G"},D:{"1":"0 1 2 3 4 5 6 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"A","8":"7 I J E F G","33":"q","36":"8 B C K L H M N O n o p"},E:{"1":"A B C K L H CC zB 0B DC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"7 I J E TC BC UC VC","260":"F G WC XC","516":"YC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G dC eC","8":"B C fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"BC iC OC jC kC lC","260":"F mC nC oC","516":"0C"},H:{"2":"4C"},I:{"1":"D 9C AD","8":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","8":"E"},K:{"1":"r","2":"A","8":"B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"IndexedDB",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb2.js
      index e97971f1d94204..0a85110fe95703 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB QC RC","132":"RB SB TB","260":"UB VB WB XB"},D:{"1":"0 1 2 3 fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","132":"VB WB XB YB","260":"ZB aB bB cB dB eB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB bC cC dC eC yB LC fC zB","132":"IB JB KB LB","260":"MB NB OB PB QB RB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC","16":"nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","260":"8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","260":"LD"}},B:2,C:"IndexedDB 2.0",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB RC SC","132":"TB UB VB","260":"WB XB YB ZB"},D:{"1":"0 1 2 3 4 5 6 hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","132":"XB YB ZB aB","260":"bB cB dB eB fB gB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB dC eC fC gC zB NC hC 0B","132":"KB LB MB NB","260":"OB PB QB RB SB TB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC","16":"pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","260":"BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","260":"OD"}},B:2,C:"IndexedDB 2.0",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/inline-block.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/inline-block.js
      index c9e8c6161a12bd..841f7e75bd377d 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":"NC","132":"J D"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","36":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS inline-block",D:true};
      +module.exports={A:{A:{"1":"F G A B","4":"PC","132":"J E"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","36":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS inline-block",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/innertext.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/innertext.js
      index bb71e9ebaef158..71c942b63b6371 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":"NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","16":"F"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"HTMLElement.innerText",D:true};
      +module.exports={A:{A:{"1":"J E F G A B","16":"PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","16":"G"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"HTMLElement.innerText",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js
      index 5cd1ace1e7ca8d..0dcc1451758fab 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 NC","132":"B"},B:{"132":"C K L G M N O","260":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB QC RC","516":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"5 6 7 8 9 N O n o p","2":"4 I J D E F A B C K L G M","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB","260":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"J TC UC","2":"4 I SC 9B","2052":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"9B gC MC","1025":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1025":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2052":"A B"},O:{"1025":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"260":"BC"},R:{"1":"KD"},S:{"516":"LD MD"}},B:1,C:"autocomplete attribute: on & off values",D:true};
      +module.exports={A:{A:{"1":"J E F G A PC","132":"B"},B:{"132":"C K L H M N O","260":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB RC SC","516":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"8 9 N O n o p q AB BB","2":"7 I J E F G A B C K L H M","132":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB","260":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"J UC VC","2":"7 I TC BC","2052":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"BC iC OC","1025":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1025":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2052":"A B"},O:{"1025":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"260":"DC"},R:{"1":"ND"},S:{"516":"OD PD"}},B:1,C:"autocomplete attribute: on & off values",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-color.js
      index 40a5931fa3e3ee..47e3482f49e4ef 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC"},D:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB"},F:{"1":"5 6 7 8 9 B C N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","2":"F G M bC cC dC eC"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC","129":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"Color input type",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC"},D:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB"},F:{"1":"8 9 B C N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","2":"G H M dC eC fC gC"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC","129":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"Color input type",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-datetime.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-datetime.js
      index e52335449b97ca..31dfe7ab11eb06 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","132":"C"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB QC RC","1090":"aB bB cB dB","2052":"eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b","4100":"0 1 2 3 c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O","2052":"6 7 n o p"},E:{"2":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC","4100":"G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"9B gC MC","260":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B 2C 3C 4C","514":"I 5C MC"},J:{"1":"A","2":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"4100":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2052":"LD MD"}},B:1,C:"Date and time input types",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","132":"C"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB RC SC","1090":"cB dB eB fB","2052":"gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b","4100":"0 1 2 3 4 5 6 c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O","2052":"9 n o p q"},E:{"2":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC","4100":"H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"BC iC OC","260":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B 5C 6C 7C","514":"I 8C OC"},J:{"1":"A","2":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"4100":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2052":"OD PD"}},B:1,C:"Date and time input types",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-email-tel-url.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-email-tel-url.js
      index 90bdf1abf4e24f..9735b4a6862241 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","132":"2C 3C 4C"},J:{"1":"A","132":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Email, telephone & URL input types",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","132":"5C 6C 7C"},J:{"1":"A","132":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Email, telephone & URL input types",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-event.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-event.js
      index 4b73fc44ae2be4..0b2b92c77ac083 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 NC","2561":"A B","2692":"F"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2561":"C K L G M N O"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","16":"OC","1537":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC","1796":"3B QC"},D:{"1":"0 1 2 3 lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L","1025":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB","1537":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB"},E:{"1":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I J SC 9B","1025":"D E F A B C UC VC WC AC yB","1537":"TC","4097":"K zB"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","16":"F B C bC cC dC eC yB LC","260":"fC","1025":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","1537":"5 G M N O n o"},G:{"1":"uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC","1025":"E kC lC mC nC oC pC qC rC","1537":"hC iC jC","4097":"sC tC"},H:{"2":"1C"},I:{"16":"2C 3C","1025":"H 7C","1537":"3B I 4C 5C MC 6C"},J:{"1025":"A","1537":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2561":"A B"},O:{"1":"0B"},P:{"1025":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","1537":"LD"}},B:1,C:"input event",D:true};
      +module.exports={A:{A:{"2":"J E F PC","2561":"A B","2692":"G"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2561":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"QC","1537":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB SC","1796":"4B RC"},D:{"1":"0 1 2 3 4 5 6 nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L","1025":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB","1537":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB"},E:{"1":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I J TC BC","1025":"E F G A B C VC WC XC CC zB","1537":"UC","4097":"K 0B"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","16":"G B C dC eC fC gC zB NC","260":"hC","1025":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","1537":"8 H M N O n o"},G:{"1":"wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC","1025":"F mC nC oC pC qC rC sC tC","1537":"jC kC lC","4097":"uC vC"},H:{"2":"4C"},I:{"16":"5C 6C","1025":"D AD","1537":"4B I 7C 8C OC 9C"},J:{"1025":"A","1537":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2561":"A B"},O:{"1":"1B"},P:{"1025":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","1537":"OD"}},B:1,C:"input event",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-accept.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-accept.js
      index f49344b1e6f901..d6935589b99d44 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","132":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I","16":"4 6 7 8 J D E o p","132":"5 F A B C K L G M N O n"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","132":"J D E F A B UC VC WC AC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"2":"iC jC","132":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","514":"9B gC MC hC"},H:{"2":"1C"},I:{"2":"2C 3C 4C","260":"3B I 5C MC","514":"H 6C 7C"},J:{"132":"A","260":"D"},K:{"2":"A B C yB LC zB","514":"q"},L:{"260":"H"},M:{"2":"xB"},N:{"514":"A","1028":"B"},O:{"2":"0B"},P:{"260":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"260":"BC"},R:{"260":"KD"},S:{"1":"LD MD"}},B:1,C:"accept attribute for file input",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","132":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I","16":"7 9 J E F o p q AB","132":"8 G A B C K L H M N O n"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","132":"J E F G A B VC WC XC CC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"2":"kC lC","132":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","514":"BC iC OC jC"},H:{"2":"4C"},I:{"2":"5C 6C 7C","260":"4B I 8C OC","514":"D 9C AD"},J:{"132":"A","260":"E"},K:{"2":"A B C zB NC 0B","514":"r"},L:{"260":"D"},M:{"2":"D"},N:{"514":"A","1028":"B"},O:{"2":"1B"},P:{"260":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"260":"DC"},R:{"260":"ND"},S:{"1":"OD PD"}},B:1,C:"accept attribute for file input",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-directory.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-directory.js
      index 92fc0c6186721a..c645276e7a6009 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB QC RC"},D:{"1":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC"},F:{"1":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C G M bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Directory selection from file input",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB RC SC"},D:{"1":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC"},F:{"1":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C H M dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Directory selection from file input",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-multiple.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-multiple.js
      index a7fe41a479f6de..d79df26c1052c8 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","2":"OC 3B QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","2":"F bC cC dC"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC"},H:{"130":"1C"},I:{"130":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"130":"A B C q yB LC zB"},L:{"132":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"130":"0B"},P:{"130":"I","132":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"132":"BC"},R:{"132":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"Multiple file selection",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","2":"QC 4B RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","2":"G dC eC fC"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC"},H:{"130":"4C"},I:{"130":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"130":"A B C r zB NC 0B"},L:{"132":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"130":"1B"},P:{"130":"I","132":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"132":"DC"},R:{"132":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"Multiple file selection",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-inputmode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-inputmode.js
      index 1572f36ea76c0d..7407816e1f4548 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M QC RC","4":"5 N O n","194":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d"},D:{"1":"0 1 2 3 lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","66":"dB eB fB 4B gB 5B hB iB jB kB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB bC cC dC eC yB LC fC zB","66":"QB RB SB TB UB VB WB XB YB ZB"},G:{"1":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"194":"LD MD"}},B:1,C:"inputmode attribute",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M RC SC","4":"8 N O n","194":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d"},D:{"1":"0 1 2 3 4 5 6 nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","66":"fB gB hB 5B iB 6B jB kB lB mB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB dC eC fC gC zB NC hC 0B","66":"SB TB UB VB WB XB YB ZB aB bB"},G:{"1":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED"},Q:{"1":"DC"},R:{"1":"ND"},S:{"194":"OD PD"}},B:1,C:"inputmode attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-minlength.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-minlength.js
      index 3a6938b308d2db..05216c61ecb43f 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 NC"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M"},C:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB QC RC"},D:{"1":"0 1 2 3 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"Minimum length attribute for input fields",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB RC SC"},D:{"1":"0 1 2 3 4 5 6 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"Minimum length attribute for input fields",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-number.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-number.js
      index 9ef17ef6bc7bf9..4e276d2c5d8be5 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 NC","129":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","129":"C K","1025":"L G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC","513":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"388":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B 2C 3C 4C","388":"I H 5C MC 6C 7C"},J:{"2":"D","388":"A"},K:{"1":"A B C yB LC zB","388":"q"},L:{"388":"H"},M:{"641":"xB"},N:{"388":"A B"},O:{"388":"0B"},P:{"388":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"388":"BC"},R:{"388":"KD"},S:{"513":"LD MD"}},B:1,C:"Number input type",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","129":"C K","1025":"L H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC","513":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"388":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B 5C 6C 7C","388":"I D 8C OC 9C AD"},J:{"2":"E","388":"A"},K:{"1":"A B C zB NC 0B","388":"r"},L:{"388":"D"},M:{"641":"D"},N:{"388":"A B"},O:{"388":"1B"},P:{"388":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"388":"DC"},R:{"388":"ND"},S:{"513":"OD PD"}},B:1,C:"Number input type",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-pattern.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-pattern.js
      index f7f274d0a5642c..055f617a0fef71 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","16":"4","388":"J D E F A TC UC VC WC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC","388":"E hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H 7C","2":"3B I 2C 3C 4C 5C MC 6C"},J:{"1":"A","2":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Pattern attribute for input fields",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","16":"7","388":"J E F G A UC VC WC XC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC","388":"F jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D AD","2":"4B I 5C 6C 7C 8C OC 9C"},J:{"1":"A","2":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Pattern attribute for input fields",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-placeholder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-placeholder.js
      index a2da51c54ba6f5..6c9ba7797c7031 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","132":"I SC 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m LC fC zB","2":"F bC cC dC eC","132":"B yB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B H 2C 3C 4C MC 6C 7C","4":"I 5C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"input placeholder attribute",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","132":"I TC BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m NC hC 0B","2":"G dC eC fC gC","132":"B zB"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B D 5C 6C 7C OC 9C AD","4":"I 8C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"input placeholder attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-range.js
      index 32c9985797bd66..17f4c378257b6f 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"1":"H MC 6C 7C","4":"3B I 2C 3C 4C 5C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Range input type",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o p RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"1":"D OC 9C AD","4":"4B I 5C 6C 7C 8C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Range input type",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-search.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-search.js
      index 3be78ed549ce69..ea1c400c44d8c2 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 NC","129":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","129":"C K L G M N O"},C:{"2":"OC 3B QC RC","129":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 6 7 8 I J D E F A B C K L o p","129":"5 G M N O n"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F bC cC dC eC","16":"B yB LC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC"},H:{"129":"1C"},I:{"1":"H 6C 7C","16":"2C 3C","129":"3B I 4C 5C MC"},J:{"1":"D","129":"A"},K:{"1":"C q","2":"A","16":"B yB LC","129":"zB"},L:{"1":"H"},M:{"129":"xB"},N:{"129":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"129":"LD MD"}},B:1,C:"Search input type",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","129":"C K L H M N O"},C:{"2":"QC 4B RC SC","129":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 9 I J E F G A B C K L o p q AB","129":"8 H M N O n"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G dC eC fC gC","16":"B zB NC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC"},H:{"129":"4C"},I:{"1":"D 9C AD","16":"5C 6C","129":"4B I 7C 8C OC"},J:{"1":"E","129":"A"},K:{"1":"C r","2":"A","16":"B zB NC","129":"0B"},L:{"1":"D"},M:{"129":"D"},N:{"129":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"129":"OD PD"}},B:1,C:"Search input type",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-selection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-selection.js
      index b800707d6f8e5c..ea6693b9bdb7e6 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","16":"F bC cC dC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"2":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Selection controls for input & textarea",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","16":"G dC eC fC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"2":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Selection controls for input & textarea",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insert-adjacent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insert-adjacent.js
      index d9c79df40d35f1..f7962136e74d9d 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":"NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","16":"F"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()",D:true};
      +module.exports={A:{A:{"1":"J E F G A B","16":"PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","16":"G"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insertadjacenthtml.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insertadjacenthtml.js
      index 2ee80d6cd01637..a1380522d02aad 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":"NC","132":"J D E F"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m cC dC eC yB LC fC zB","16":"F bC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Element.insertAdjacentHTML()",D:true};
      +module.exports={A:{A:{"1":"A B","16":"PC","132":"J E F G"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m eC fC gC zB NC hC 0B","16":"G dC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Element.insertAdjacentHTML()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/internationalization.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/internationalization.js
      index 2d649f08738ab8..8d8dbd27f3d6fb 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC"},D:{"1":"0 1 2 3 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 I J D E F A B C K L G M N O n o p"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"Internationalization API",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC"},D:{"1":"0 1 2 3 4 5 6 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n o p q"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"Internationalization API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js
      index 78c039358358c4..cc80bb86d9ee83 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"IntersectionObserver V2",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"IntersectionObserver V2",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver.js
      index b541c2f0a49fb8..dadcf83cf41d18 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 NC"},B:{"1":"M N O","2":"C K L","260":"G","513":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB QC RC","194":"ZB aB bB"},D:{"1":"fB 4B gB 5B hB iB jB","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","260":"YB ZB aB bB cB dB eB","513":"0 1 2 3 kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB bC cC dC eC yB LC fC zB","260":"LB MB NB OB PB QB RB","513":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","513":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","513":"q"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","260":"8C 9C"},Q:{"513":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"IntersectionObserver",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"M N O","2":"C K L","260":"H","513":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB RC SC","194":"bB cB dB"},D:{"1":"hB 5B iB 6B jB kB lB","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","260":"aB bB cB dB eB fB gB","513":"0 1 2 3 4 5 6 mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB dC eC fC gC zB NC hC 0B","260":"NB OB PB QB RB SB TB","513":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","513":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","513":"r"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","260":"BD CD"},Q:{"513":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"IntersectionObserver",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intl-pluralrules.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intl-pluralrules.js
      index 47775c890bc527..ef84c13c982244 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N","130":"O"},C:{"1":"0 1 2 3 fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB QC RC"},D:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB zB"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC dC eC yB LC fC zB"},G:{"1":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"Intl.PluralRules API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N","130":"O"},C:{"1":"0 1 2 3 4 5 6 hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB RC SC"},D:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB 0B"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB dC eC fC gC zB NC hC 0B"},G:{"1":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"Intl.PluralRules API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intrinsic-width.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intrinsic-width.js
      index 56e456444fadcd..64e8567ac81767 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 NC"},B:{"2":"C K L G M N O","1025":"0 1 2 3 d e f g h i j k l m r s t u v w x y z H","1537":"P Q R S T U V W X Y Z a b c"},C:{"2":"OC","932":"4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB QC RC","2308":"0 1 2 3 lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 I J D E F A B C K L G M N O n o","545":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","1025":"0 1 2 3 d e f g h i j k l m r s t u v w x y z H xB 7B 8B","1537":"TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC","516":"B C K L G yB zB BC XC YC CC DC 0B ZC","548":"F A WC AC","676":"D E UC VC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","513":"HB","545":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB","1025":"e f g h i j k l m","1537":"GB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC","516":"xC yC zC CC DC 0B 0C","548":"lC mC nC oC pC qC rC sC tC uC vC wC","676":"E jC kC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","545":"6C 7C","1025":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C yB LC zB","1025":"q"},L:{"1025":"H"},M:{"2308":"xB"},N:{"2":"A B"},O:{"1537":"0B"},P:{"545":"I","1025":"n o p 2B ID JD","1537":"8C 9C AD BD CD AC DD ED FD GD HD 1B"},Q:{"1537":"BC"},R:{"1537":"KD"},S:{"932":"LD","2308":"MD"}},B:5,C:"Intrinsic & Extrinsic Sizing",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","1025":"0 1 2 3 4 5 6 d e f g h i j k l m s t u v w x y z D","1537":"P Q R S T U V W X Y Z a b c"},C:{"2":"QC","932":"7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB RC SC","2308":"0 1 2 3 4 5 6 nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 I J E F G A B C K L H M N O n o","545":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","1025":"0 1 2 3 4 5 6 d e f g h i j k l m s t u v w x y z D 8B 9B AC","1537":"VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC","516":"B C K L H zB 0B DC YC ZC EC FC 1B aC","548":"G A XC CC","676":"E F VC WC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","513":"JB","545":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB","1025":"e f g h i j k l m","1537":"IB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC","516":"zC 0C 1C EC FC 1B 2C","548":"nC oC pC qC rC sC tC uC vC wC xC yC","676":"F lC mC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","545":"9C AD","1025":"D"},J:{"2":"E","545":"A"},K:{"2":"A B C zB NC 0B","1025":"r"},L:{"1025":"D"},M:{"2308":"D"},N:{"2":"A B"},O:{"1537":"1B"},P:{"545":"I","1025":"n o p q 3B LD MD","1537":"BD CD DD ED FD CC GD HD ID JD KD 2B"},Q:{"1537":"DC"},R:{"1537":"ND"},S:{"932":"OD","2308":"PD"}},B:5,C:"Intrinsic & Extrinsic Sizing",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpeg2000.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpeg2000.js
      index 614f186c1c4d4c..c7736a4ceb4489 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","129":"4 TC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"JPEG 2000 image format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","129":"7 UC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"JPEG 2000 image format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxl.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxl.js
      index a72cae6977a51f..09cc57070c3899 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z x y z H","578":"a b c d e f g h i j k l m r s t u v w"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y QC RC","322":"0 1 2 3 Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z x y z H xB 7B 8B","194":"a b c d e f g h i j k l m r s t u v w"},E:{"1":"2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB bC cC dC eC yB LC fC zB","194":"vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"JPEG XL image format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z y z D","578":"a b c d e f g h i j k l m s t u v w x"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y RC SC","322":"0 1 2 3 4 5 6 Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z y z D 8B 9B AC","194":"a b c d e f g h i j k l m s t u v w x"},E:{"1":"3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB dC eC fC gC zB NC hC 0B","194":"xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"JPEG XL image format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxr.js
      index c080287d5c128e..a18eae82948e7d 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 NC"},B:{"1":"C K L G M N O","2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"1":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"JPEG XR image format",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"C K L H M N O","2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"JPEG XR image format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js
      index c3ea2defb33a9c..4d668764f03c35 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB QC RC"},D:{"1":"0 1 2 3 hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB bC cC dC eC yB LC fC zB"},G:{"1":"HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"Lookbehind in JS regular expressions",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB RC SC"},D:{"1":"0 1 2 3 4 5 6 jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB dC eC fC gC zB NC hC 0B"},G:{"1":"JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"Lookbehind in JS regular expressions",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/json.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/json.js
      index 142fa89c6a742d..8ac301c54245c4 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 NC","129":"E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"JSON parsing",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E PC","129":"F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"JSON parsing",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js
      index 6eabb983217eaf..df4dc45b7f02c2 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G","132":"M N O"},C:{"1":"0 1 2 3 ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB QC RC"},D:{"1":"0 1 2 3 gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","132":"eB fB 4B"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC","132":"AC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB bC cC dC eC yB LC fC zB","132":"RB SB TB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC","132":"oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C","132":"AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","132":"LD"}},B:5,C:"CSS justify-content: space-evenly",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H","132":"M N O"},C:{"1":"0 1 2 3 4 5 6 bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB RC SC"},D:{"1":"0 1 2 3 4 5 6 iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","132":"gB hB 5B"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC","132":"CC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB dC eC fC gC zB NC hC 0B","132":"TB UB VB"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC","132":"qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD","132":"DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","132":"OD"}},B:5,C:"CSS justify-content: space-evenly",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js
      index 1e83f4ba2b048d..c2cbee99f6e6ac 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 NC"},B:{"1":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"2C 3C 4C","132":"3B I 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:7,C:"High-quality kerning pairs & ligatures",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"5C 6C 7C","132":"4B I 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:7,C:"High-quality kerning pairs & ligatures",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js
      index 2afcb60ea4c265..ce66ad77aa4cd3 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","16":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC yB LC fC","16":"C"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"q zB","2":"A B yB LC","16":"C"},L:{"1":"H"},M:{"130":"xB"},N:{"130":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:7,C:"KeyboardEvent.charCode",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","16":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC zB NC hC","16":"C"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"r 0B","2":"A B zB NC","16":"C"},L:{"1":"D"},M:{"130":"D"},N:{"130":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:7,C:"KeyboardEvent.charCode",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-code.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-code.js
      index 8c94f6b3a5b59a..6dead60c153c8f 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB QC RC"},D:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","194":"PB QB RB SB TB UB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB bC cC dC eC yB LC fC zB","194":"CB DB EB FB GB HB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"194":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I","194":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"194":"KD"},S:{"1":"LD MD"}},B:5,C:"KeyboardEvent.code",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB RC SC"},D:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB SB TB UB VB WB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB dC eC fC gC zB NC hC 0B","194":"EB FB GB HB IB JB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"194":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I","194":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"194":"ND"},S:{"1":"OD PD"}},B:5,C:"KeyboardEvent.code",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js
      index f8df870f04736b..95fe43935c6230 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L QC RC"},D:{"1":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B G M bC cC dC eC yB LC fC","16":"C"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q zB","2":"A B yB LC","16":"C"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"KeyboardEvent.getModifierState()",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L RC SC"},D:{"1":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B H M dC eC fC gC zB NC hC","16":"C"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r 0B","2":"A B zB NC","16":"C"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"KeyboardEvent.getModifierState()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-key.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-key.js
      index f34bfe3ea042b5..27edcb4a883f36 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 NC","260":"F A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L G M N O"},C:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n o p QC RC","132":"6 7 8 9 AB BB"},D:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"5 6 7 8 9 F B G M N O n o p AB BB CB DB EB FB GB HB IB JB KB bC cC dC eC yB LC fC","16":"C"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"1":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q zB","2":"A B yB LC","16":"C"},L:{"1":"H"},M:{"1":"xB"},N:{"260":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"KeyboardEvent.key",D:true};
      +module.exports={A:{A:{"2":"J E F PC","260":"G A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o p RC SC","132":"9 q AB BB CB DB"},D:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"8 9 G B H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB dC eC fC gC zB NC hC","16":"C"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"1":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r 0B","2":"A B zB NC","16":"C"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"KeyboardEvent.key",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-location.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-location.js
      index d3b9ed450122cc..49e2ddfcb69aaa 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L QC RC"},D:{"1":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"J SC 9B","132":"4 I TC"},F:{"1":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC yB LC fC","16":"C","132":"G M"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC","132":"hC iC jC"},H:{"2":"1C"},I:{"1":"H 6C 7C","16":"2C 3C","132":"3B I 4C 5C MC"},J:{"132":"D A"},K:{"1":"q zB","2":"A B yB LC","16":"C"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"KeyboardEvent.location",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L RC SC"},D:{"1":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"J TC BC","132":"7 I UC"},F:{"1":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC zB NC hC","16":"C","132":"H M"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC","132":"jC kC lC"},H:{"2":"4C"},I:{"1":"D 9C AD","16":"5C 6C","132":"4B I 7C 8C OC"},J:{"132":"E A"},K:{"1":"r 0B","2":"A B zB NC","16":"C"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"KeyboardEvent.location",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-which.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-which.js
      index 3bc9466c29967c..c53c432bd1de95 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","16":"4"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m cC dC eC yB LC fC zB","16":"F bC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC","16":"2C 3C","132":"6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"132":"H"},M:{"132":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"2":"I","132":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"132":"KD"},S:{"1":"LD MD"}},B:7,C:"KeyboardEvent.which",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","16":"7"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m eC fC gC zB NC hC 0B","16":"G dC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC","16":"5C 6C","132":"9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"132":"D"},M:{"132":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"2":"I","132":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"132":"ND"},S:{"1":"OD PD"}},B:7,C:"KeyboardEvent.which",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/lazyload.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/lazyload.js
      index b69e6a77a7370f..01448a2b2823d5 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 NC"},B:{"1":"C K L G M N O","2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"1":"B","2":"A"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Resource Hints: Lazyload",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"C K L H M N O","2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"1":"B","2":"A"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Resource Hints: Lazyload",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/let.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/let.js
      index 8a677380d6d193..ff41ff6e4acb67 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 NC","2052":"B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","194":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB QC RC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G M N O","322":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB","516":"OB PB QB RB SB TB UB VB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC","1028":"A AC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","322":"5 6 7 8 9 G M N O n o p AB","516":"BB CB DB EB FB GB HB IB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC","1028":"nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","516":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"let",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","2052":"B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","194":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB RC SC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H M N O","322":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","516":"QB RB SB TB UB VB WB XB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC","1028":"A CC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","322":"8 9 H M N O n o p q AB BB CB","516":"DB EB FB GB HB IB JB KB"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC","1028":"pC qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","516":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"let",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-png.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-png.js
      index f0ad369cf17095..849b452f8764f4 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","130":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC"},H:{"130":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D","130":"A"},K:{"1":"q","130":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"130":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"PNG favicons",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","130":"F BC iC OC jC kC lC mC nC oC pC qC rC sC"},H:{"130":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E","130":"A"},K:{"1":"r","130":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"130":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"PNG favicons",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-svg.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-svg.js
      index a0a5ee2e1104a3..623e05be4b33c0 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 NC"},B:{"2":"C K L G M N O P","1537":"0 1 2 3 Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"OC 3B QC RC","260":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB","513":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P","1537":"0 1 2 3 Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB bB cB dB eB fB gB hB iB jB kB lB bC cC dC eC yB LC fC zB","1537":"mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","130":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC"},H:{"130":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","130":"A"},K:{"130":"A B C yB LC zB","1537":"q"},L:{"1537":"H"},M:{"2":"xB"},N:{"130":"A B"},O:{"2":"0B"},P:{"2":"I 8C 9C AD BD CD AC DD ED","1537":"n o p FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"1537":"KD"},S:{"513":"LD MD"}},B:1,C:"SVG favicons",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O P","1537":"0 1 2 3 4 5 6 Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"QC 4B RC SC","260":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","513":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P","1537":"0 1 2 3 4 5 6 Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB dB eB fB gB hB iB jB kB lB mB nB dC eC fC gC zB NC hC 0B","1537":"oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","130":"F BC iC OC jC kC lC mC nC oC pC qC rC sC"},H:{"130":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","130":"A"},K:{"130":"A B C zB NC 0B","1537":"r"},L:{"1537":"D"},M:{"2":"D"},N:{"130":"A B"},O:{"2":"1B"},P:{"2":"I BD CD DD ED FD CC GD HD","1537":"n o p q ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"1537":"ND"},S:{"513":"OD PD"}},B:1,C:"SVG favicons",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js
      index 428dc6d08a69de..3203c63534a00d 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 NC","132":"F"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"OC 3B","260":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"16":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"16":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"16":"D A"},K:{"1":"q","16":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","16":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Resource Hints: dns-prefetch",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F PC","132":"G"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"QC 4B","260":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"16":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"16":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"16":"E A"},K:{"1":"r","16":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","16":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Resource Hints: dns-prefetch",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js
      index 150b8742b3ab25..fcc68c6b867252 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"2 3 H xB 7B 8B PC","2":"0 1 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z QC RC"},D:{"1":"0 1 2 3 lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB"},E:{"1":"2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB bC cC dC eC yB LC fC zB"},G:{"1":"2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:1,C:"Resource Hints: modulepreload",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"3 4 5 6 D 8B 9B AC","2":"0 1 2 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z RC SC"},D:{"1":"0 1 2 3 4 5 6 nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB"},E:{"1":"3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB dC eC fC gC zB NC hC 0B"},G:{"1":"3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:1,C:"Resource Hints: modulepreload",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preconnect.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preconnect.js
      index 045f1085b2e280..1b90c60f783f70 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L","260":"G M N O"},C:{"1":"2 3 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB QC RC","129":"MB","514":"0 1 qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z"},D:{"1":"0 1 2 3 TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Resource Hints: preconnect",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L","260":"H M N O"},C:{"1":"3 4 5 6 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB RC SC","129":"OB","514":"0 1 2 sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Resource Hints: preconnect",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prefetch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prefetch.js
      index aca5eb24edc04d..4e3eb5f821dc41 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D"},E:{"2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB","194":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC","194":"wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"I H 6C 7C","2":"3B 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Resource Hints: prefetch",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E"},E:{"2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B","194":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC","194":"yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"I D 9C AD","2":"4B 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Resource Hints: prefetch",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preload.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preload.js
      index ba79bff552423d..dc54921b9fd7b1 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M","1028":"N O"},C:{"1":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB QC RC","132":"dB","578":"eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T"},D:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","322":"B"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC","322":"pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:4,C:"Resource Hints: preload",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M","1028":"N O"},C:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB RC SC","132":"fB","578":"gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T"},D:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC","322":"B"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC","322":"rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:4,C:"Resource Hints: preload",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prerender.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prerender.js
      index f013d513fea878..2d81b651022c92 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:5,C:"Resource Hints: prerender",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:5,C:"Resource Hints: prerender",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/loading-lazy-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/loading-lazy-attr.js
      index 1389f6bc8b1003..88a9e27e5ba2a0 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB QC RC","132":"0 1 2 3 tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB","66":"tB uB"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB","322":"L G BC XC YC CC","580":"DC 0B ZC 1B EC FC GC"},F:{"1":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC dC eC yB LC fC zB","66":"hB iB"},G:{"1":"HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC","322":"wC xC yC zC CC","580":"DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"132":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD","132":"MD"}},B:1,C:"Lazy loading via attribute for images & iframes",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB RC SC","132":"0 1 2 3 4 5 6 vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B"},D:{"1":"0 1 2 3 4 5 6 xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB","66":"vB wB"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B","322":"L H DC YC ZC EC","580":"FC 1B aC 2B GC HC IC"},F:{"1":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB dC eC fC gC zB NC hC 0B","66":"jB kB"},G:{"1":"JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC","322":"yC zC 0C 1C EC","580":"FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"132":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD","132":"PD"}},B:1,C:"Lazy loading via attribute for images & iframes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/localecompare.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/localecompare.js
      index a8a07deb21fa32..c2c1654b3bc4ef 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":"NC","132":"J D E F A"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","132":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC"},D:{"1":"0 1 2 3 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 5 6 I J D E F A B C K L G M N O n o p"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","132":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F B C bC cC dC eC yB LC fC","132":"zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","132":"E 9B gC MC hC iC jC kC lC mC"},H:{"132":"1C"},I:{"1":"H 6C 7C","132":"3B I 2C 3C 4C 5C MC"},J:{"132":"D A"},K:{"1":"q","16":"A B C yB LC","132":"zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","132":"A"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","132":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","4":"LD"}},B:6,C:"localeCompare()",D:true};
      +module.exports={A:{A:{"1":"B","16":"PC","132":"J E F G A"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC"},D:{"1":"0 1 2 3 4 5 6 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 I J E F G A B C K L H M N O n o p q"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","132":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G B C dC eC fC gC zB NC hC","132":"0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","132":"F BC iC OC jC kC lC mC nC oC"},H:{"132":"4C"},I:{"1":"D 9C AD","132":"4B I 5C 6C 7C 8C OC"},J:{"132":"E A"},K:{"1":"r","16":"A B C zB NC","132":"0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","132":"A"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","132":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","4":"OD"}},B:6,C:"localeCompare()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/magnetometer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/magnetometer.js
      index b6d2e533d41120..1d9c5bed4f6510 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","194":"fB 4B gB 5B hB iB jB kB lB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"194":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:4,C:"Magnetometer",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","194":"hB 5B iB 6B jB kB lB mB nB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"194":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:4,C:"Magnetometer",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchesselector.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchesselector.js
      index ac370cee9e7318..ce5e51a9430f54 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 NC","36":"F A B"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","36":"C K L"},C:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC","36":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB RC"},D:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","36":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB"},E:{"1":"E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","36":"4 J D TC UC"},F:{"1":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B bC cC dC eC yB","36":"5 C G M N O n LC fC zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B","36":"gC MC hC iC jC"},H:{"2":"1C"},I:{"1":"H","2":"2C","36":"3B I 3C 4C 5C MC 6C 7C"},J:{"36":"D A"},K:{"1":"q","2":"A B","36":"C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"36":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","36":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"matches() DOM method",D:true};
      +module.exports={A:{A:{"2":"J E F PC","36":"G A B"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","36":"C K L"},C:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC","36":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB SC"},D:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","36":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB"},E:{"1":"F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","36":"7 J E UC VC"},F:{"1":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B dC eC fC gC zB","36":"8 C H M N O n NC hC 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC","36":"iC OC jC kC lC"},H:{"2":"4C"},I:{"1":"D","2":"5C","36":"4B I 6C 7C 8C OC 9C AD"},J:{"36":"E A"},K:{"1":"r","2":"A B","36":"C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"36":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","36":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"matches() DOM method",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchmedia.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchmedia.js
      index 5ed6cbdd774299..6f0a7cae7708ec 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B C bC cC dC eC yB LC fC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"1":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"A","2":"D"},K:{"1":"q zB","2":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"matchMedia",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B C dC eC fC gC zB NC hC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"1":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"A","2":"E"},K:{"1":"r 0B","2":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"matchMedia",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mathml.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mathml.js
      index 315491422f2722..98e03b7ac39eb6 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 NC","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z a b c d e f","584":"g h i j k l m r s t u v","1025":"0 1 2 3 w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","129":"OC 3B QC RC"},D:{"1":"7","8":"4 5 6 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f","584":"g h i j k l m r s t u v","1025":"0 1 2 3 w x y z H xB 7B 8B"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","260":"4 I J D E F SC 9B TC UC VC WC"},F:{"2":"F","8":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B","584":"S T U V W X Y Z a b c d","1025":"e f g h i j k l m","2052":"B C bC cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"9B gC MC"},H:{"8":"1C"},I:{"8":"3B I 2C 3C 4C 5C MC 6C 7C","1025":"H"},J:{"1":"A","8":"D"},K:{"8":"A B C q yB LC zB"},L:{"1025":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"8":"0B"},P:{"1":"o p","8":"I n 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"8":"BC"},R:{"8":"KD"},S:{"1":"LD MD"}},B:2,C:"MathML",D:true};
      +module.exports={A:{A:{"2":"G A B PC","8":"J E F"},B:{"2":"C K L H M N O","8":"P Q R S T U V W X Y Z a b c d e f","584":"g h i j k l m s t u v w","1025":"0 1 2 3 4 5 6 x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","129":"QC 4B RC SC"},D:{"1":"9","8":"7 8 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f","584":"g h i j k l m s t u v w","1025":"0 1 2 3 4 5 6 x y z D 8B 9B AC"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","260":"7 I J E F G TC BC UC VC WC XC"},F:{"2":"G","8":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B","584":"S T U V W X Y Z a b c d","1025":"e f g h i j k l m","2052":"B C dC eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"BC iC OC"},H:{"8":"4C"},I:{"8":"4B I 5C 6C 7C 8C OC 9C AD","1025":"D"},J:{"1":"A","8":"E"},K:{"8":"A B C r zB NC 0B"},L:{"1025":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"8":"1B"},P:{"1":"o p q","8":"I n BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"8":"DC"},R:{"8":"ND"},S:{"1":"OD PD"}},B:2,C:"MathML",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/maxlength.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/maxlength.js
      index 305ca29c2e8a00..3ab5793c5bdd48 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":"NC","900":"J D E F"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","1025":"C K L G M N O"},C:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","900":"OC 3B QC RC","1025":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 SC","900":"I 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F","132":"B C bC cC dC eC yB LC fC zB"},G:{"1":"gC MC hC iC jC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B","2052":"E kC"},H:{"132":"1C"},I:{"1":"3B I 4C 5C MC 6C 7C","16":"2C 3C","4097":"H"},J:{"1":"D A"},K:{"132":"A B C yB LC zB","4097":"q"},L:{"4097":"H"},M:{"4097":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"4097":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1025":"LD MD"}},B:1,C:"maxlength attribute for input and textarea elements",D:true};
      +module.exports={A:{A:{"1":"A B","16":"PC","900":"J E F G"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","1025":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","900":"QC 4B RC SC","1025":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 TC","900":"I BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G","132":"B C dC eC fC gC zB NC hC 0B"},G:{"1":"iC OC jC kC lC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC","2052":"F mC"},H:{"132":"4C"},I:{"1":"4B I 7C 8C OC 9C AD","16":"5C 6C","4097":"D"},J:{"1":"E A"},K:{"132":"A B C zB NC 0B","4097":"r"},L:{"4097":"D"},M:{"4097":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"4097":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1025":"OD PD"}},B:1,C:"maxlength attribute for input and textarea elements",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js
      index 9d5297e6c8cf56..a61982dd5316a7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js
      @@ -1 +1 @@
      -module.exports={A:{D:{"1":"0 1 2 3 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB","33":"FB GB HB IB JB"},L:{"1":"H"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","33":"C K L G M N O"},C:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB QC RC"},M:{"1":"xB"},A:{"2":"J D E F A NC","33":"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 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C G M N O bC cC dC eC yB LC fC zB","33":"5 6 n o p"},K:{"1":"q","2":"A B C yB LC zB"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC aC"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","33":"6C 7C"}},B:6,C:"CSS ::backdrop pseudo-element",D:undefined};
      +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB","33":"HB IB JB KB LB"},L:{"1":"D"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","33":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC SC"},M:{"1":"D"},A:{"2":"J E F G A PC","33":"B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C H M N O dC eC fC gC zB NC hC 0B","33":"8 n o p q"},K:{"1":"r","2":"A B C zB NC 0B"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC cC"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","33":"9C AD"}},B:6,C:"CSS ::backdrop pseudo-element",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js
      index 9160e2c417d735..766f96bd873b9b 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js
      @@ -1 +1 @@
      -module.exports={A:{D:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},L:{"1":"H"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M QC RC","33":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},M:{"1":"xB"},A:{"2":"J D E F A B NC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB bC cC dC eC yB LC fC zB"},K:{"1":"q","2":"A B C yB LC zB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"4 I J SC 9B TC UC aC","33":"D E F A VC WC AC"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC","33":"E jC kC lC mC nC oC"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"}},B:6,C:"isolate-override from unicode-bidi",D:undefined};
      +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},L:{"1":"D"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M RC SC","33":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},M:{"1":"D"},A:{"2":"J E F G A B PC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB dC eC fC gC zB NC hC 0B"},K:{"1":"r","2":"A B C zB NC 0B"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"7 I J TC BC UC VC cC","33":"E F G A WC XC CC"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC","33":"F lC mC nC oC pC qC"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"}},B:6,C:"isolate-override from unicode-bidi",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js
      index 8a21c53d83cf11..b91296e366b49c 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js
      @@ -1 +1 @@
      -module.exports={A:{D:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G","33":"5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},L:{"1":"H"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F QC RC","33":"5 6 7 8 9 A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},M:{"1":"xB"},A:{"2":"J D E F A B NC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB"},K:{"1":"q","2":"A B C yB LC zB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"4 I SC 9B TC aC","33":"J D E F A UC VC WC AC"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"E iC jC kC lC mC nC oC"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"}},B:6,C:"isolate from unicode-bidi",D:undefined};
      +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H","33":"8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},L:{"1":"D"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G RC SC","33":"8 9 A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},M:{"1":"D"},A:{"2":"J E F G A B PC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB"},K:{"1":"r","2":"A B C zB NC 0B"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"7 I TC BC UC cC","33":"J E F G A VC WC XC CC"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"F kC lC mC nC oC pC qC"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"}},B:6,C:"isolate from unicode-bidi",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js
      index e761fba4e3c339..c3da233486efd0 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js
      @@ -1 +1 @@
      -module.exports={A:{D:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},L:{"1":"H"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F QC RC","33":"5 6 7 8 9 A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},M:{"1":"xB"},A:{"2":"J D E F A B NC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB bC cC dC eC yB LC fC zB"},K:{"1":"q","2":"A B C yB LC zB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"4 I SC 9B TC aC","33":"J D E F A UC VC WC AC"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"E iC jC kC lC mC nC oC"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"}},B:6,C:"plaintext from unicode-bidi",D:undefined};
      +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},L:{"1":"D"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G RC SC","33":"8 9 A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},M:{"1":"D"},A:{"2":"J E F G A B PC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB dC eC fC gC zB NC hC 0B"},K:{"1":"r","2":"A B C zB NC 0B"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"7 I TC BC UC cC","33":"J E F G A VC WC XC CC"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"F kC lC mC nC oC pC qC"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"}},B:6,C:"plaintext from unicode-bidi",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js
      index 1ae4b8311372da..c128f0c371f9b8 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js
      @@ -1 +1 @@
      -module.exports={A:{D:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},L:{"1":"H"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC","33":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},M:{"1":"xB"},A:{"2":"J D E F A B NC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB bC cC dC eC yB LC fC zB"},K:{"1":"q","2":"A B C yB LC zB"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"4 I J D SC 9B TC UC VC aC","33":"E F A B C WC AC yB"},G:{"1":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC","33":"E kC lC mC nC oC pC qC rC"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"}},B:6,C:"text-decoration-color property",D:undefined};
      +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},L:{"1":"D"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC","33":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},M:{"1":"D"},A:{"2":"J E F G A B PC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB dC eC fC gC zB NC hC 0B"},K:{"1":"r","2":"A B C zB NC 0B"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"7 I J E TC BC UC VC WC cC","33":"F G A B C XC CC zB"},G:{"1":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC","33":"F mC nC oC pC qC rC sC tC"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"}},B:6,C:"text-decoration-color property",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js
      index 436ffe5161fe25..51f928ed837e7f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js
      @@ -1 +1 @@
      -module.exports={A:{D:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},L:{"1":"H"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC","33":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},M:{"1":"xB"},A:{"2":"J D E F A B NC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB bC cC dC eC yB LC fC zB"},K:{"1":"q","2":"A B C yB LC zB"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"4 I J D SC 9B TC UC VC aC","33":"E F A B C WC AC yB"},G:{"1":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC","33":"E kC lC mC nC oC pC qC rC"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"}},B:6,C:"text-decoration-line property",D:undefined};
      +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},L:{"1":"D"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC","33":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},M:{"1":"D"},A:{"2":"J E F G A B PC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB dC eC fC gC zB NC hC 0B"},K:{"1":"r","2":"A B C zB NC 0B"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"7 I J E TC BC UC VC WC cC","33":"F G A B C XC CC zB"},G:{"1":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC","33":"F mC nC oC pC qC rC sC tC"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"}},B:6,C:"text-decoration-line property",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js
      index 8017856588b101..68504b6aa01e57 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js
      @@ -1 +1 @@
      -module.exports={A:{D:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},L:{"1":"H"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC"},M:{"1":"xB"},A:{"2":"J D E F A B NC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB bC cC dC eC yB LC fC zB"},K:{"1":"q","2":"A B C yB LC zB"},E:{"2":"4 I J D SC 9B TC UC VC aC","33":"E F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC"},G:{"2":"9B gC MC hC iC jC","33":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"}},B:6,C:"text-decoration shorthand property",D:undefined};
      +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},L:{"1":"D"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC"},M:{"1":"D"},A:{"2":"J E F G A B PC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB dC eC fC gC zB NC hC 0B"},K:{"1":"r","2":"A B C zB NC 0B"},E:{"2":"7 I J E TC BC UC VC WC cC","33":"F G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC"},G:{"2":"BC iC OC jC kC lC","33":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"}},B:6,C:"text-decoration shorthand property",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js
      index e451c29202d126..119edbe5f373de 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js
      @@ -1 +1 @@
      -module.exports={A:{D:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},L:{"1":"H"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC","33":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},M:{"1":"xB"},A:{"2":"J D E F A B NC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB bC cC dC eC yB LC fC zB"},K:{"1":"q","2":"A B C yB LC zB"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC","2":"4 I J D SC 9B TC UC VC aC","33":"E F A B C WC AC yB"},G:{"1":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC","33":"E kC lC mC nC oC pC qC rC"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"}},B:6,C:"text-decoration-style property",D:undefined};
      +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},L:{"1":"D"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC","33":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},M:{"1":"D"},A:{"2":"J E F G A B PC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB dC eC fC gC zB NC hC 0B"},K:{"1":"r","2":"A B C zB NC 0B"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC","2":"7 I J E TC BC UC VC WC cC","33":"F G A B C XC CC zB"},G:{"1":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC","33":"F mC nC oC pC qC rC sC tC"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"}},B:6,C:"text-decoration-style property",D:undefined};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-fragments.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-fragments.js
      index 24484648a4b6f8..ae7b755ef7417c 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 NC"},B:{"2":"C K L G M N O","132":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB QC RC","132":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 I J D E F A B C K L G M N","132":"0 1 2 3 5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I SC 9B TC","132":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"9B gC MC hC iC jC","132":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","132":"H 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","132":"q"},L:{"132":"H"},M:{"132":"xB"},N:{"132":"A B"},O:{"132":"0B"},P:{"2":"I 8C","132":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"132":"BC"},R:{"132":"KD"},S:{"132":"LD MD"}},B:2,C:"Media Fragments",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","132":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB RC SC","132":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 I J E F G A B C K L H M N","132":"0 1 2 3 4 5 6 8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I TC BC UC","132":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"BC iC OC jC kC lC","132":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","132":"D 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","132":"r"},L:{"132":"D"},M:{"132":"D"},N:{"132":"A B"},O:{"132":"1B"},P:{"2":"I BD","132":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"132":"DC"},R:{"132":"ND"},S:{"132":"OD PD"}},B:2,C:"Media Fragments",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js
      index cbd7158e98c0ec..1ed383a0698bc8 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QC RC","260":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","324":"YB ZB aB bB cB dB eB fB 4B gB 5B"},E:{"2":"4 I J D E F A SC 9B TC UC VC WC AC","132":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB","324":"JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"260":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","132":"8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"260":"LD MD"}},B:5,C:"Media Capture from DOM Elements API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB RC SC","260":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","324":"aB bB cB dB eB fB gB hB 5B iB 6B"},E:{"2":"7 I J E F G A TC BC UC VC WC XC CC","132":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B","324":"LB MB NB OB PB QB RB SB TB UB VB WB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"260":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","132":"BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"260":"OD PD"}},B:5,C:"Media Capture from DOM Elements API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediarecorder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediarecorder.js
      index 05dfca21e62382..451cf591725089 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"UB VB"},E:{"1":"G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB","322":"K L zB BC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB bC cC dC eC yB LC fC zB","194":"HB IB"},G:{"1":"yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC","578":"rC sC tC uC vC wC xC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"MediaRecorder API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","194":"WB XB"},E:{"1":"H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB","322":"K L 0B DC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB dC eC fC gC zB NC hC 0B","194":"JB KB"},G:{"1":"0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC","578":"tC uC vC wC xC yC zC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"MediaRecorder API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediasource.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediasource.js
      index 684345daec1ea7..4b486bec354571 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 NC","132":"B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 OC 3B I J D E F A B C K L G M N O n o p QC RC","66":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"1":"0 1 2 3 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G M","33":"6 7 8 9 AB BB CB DB","66":"5 N O n o p"},E:{"1":"E F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC VC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC","260":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H 7C","2":"3B I 2C 3C 4C 5C MC 6C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"n o p CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Media Source Extensions",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","132":"B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q RC SC","66":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"0 1 2 3 4 5 6 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H M","33":"9 q AB BB CB DB EB FB","66":"8 N O n o p"},E:{"1":"F G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC WC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC","260":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D AD","2":"4B I 5C 6C 7C 8C OC 9C"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Media Source Extensions",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/menu.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/menu.js
      index 1a262d697c8679..d72cdb527b70f3 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 OC 3B I J D QC RC","132":"5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T","450":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","66":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","66":"IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"450":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Context menu item (menuitem element)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 QC 4B I J E RC SC","132":"8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T","450":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","66":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","66":"KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"450":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Context menu item (menuitem element)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meta-theme-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meta-theme-color.js
      index 15b653c1df6f13..cf259368a225f8 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB","132":"0 1 2 3 q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","258":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB"},E:{"1":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC XC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"513":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","16":"8C"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:1,C:"theme-color Meta Tag",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB","132":"0 1 2 3 4 5 6 r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","258":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB"},E:{"1":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC YC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"513":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","16":"BD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:1,C:"theme-color Meta Tag",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meter.js
      index fb14a86d0e5ba9..9f3878ea33fac0 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C"},C:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","2":"F bC cC dC eC"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"meter element",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C"},C:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","2":"G dC eC fC gC"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"meter element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/midi.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/midi.js
      index 33f4f3232fab9f..51fd5948f5204b 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u QC RC"},D:{"1":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:5,C:"Web MIDI API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v RC SC"},D:{"1":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:5,C:"Web MIDI API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/minmaxwh.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/minmaxwh.js
      index b01d1b422bdf11..1768969f5b3676 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 NC","129":"D","257":"E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS min/max-width/height",D:true};
      +module.exports={A:{A:{"1":"G A B","8":"J PC","129":"E","257":"F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS min/max-width/height",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mp3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mp3.js
      index c538e47c13f1cc..64a3049045e114 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","132":"4 5 I J D E F A B C K L G M N O n o QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","2":"2C 3C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"MP3 audio format",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","132":"7 8 I J E F G A B C K L H M N O n o RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","2":"5C 6C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"MP3 audio format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg-dash.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg-dash.js
      index 3bd7163e2331a4..1455efa728e3a3 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 NC"},B:{"1":"C K L G M N O","2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","386":"o p"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"C K L H M N O","2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","386":"o p"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg4.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg4.js
      index 71cf15f36d9c41..481e2314326b53 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n QC RC","4":"6 7 8 9 o p AB BB CB DB EB FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H 6C 7C","4":"3B I 2C 3C 5C MC","132":"4C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"260":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"MPEG-4/H.264 video format",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n RC SC","4":"9 o p q AB BB CB DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D 9C AD","4":"4B I 5C 6C 8C OC","132":"7C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"260":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"MPEG-4/H.264 video format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multibackgrounds.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multibackgrounds.js
      index 58c7f942209483..ec329648bd4537 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","2":"OC 3B QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS3 Multiple backgrounds",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","2":"QC 4B RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS3 Multiple backgrounds",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multicolumn.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multicolumn.js
      index 3155b43aae6e61..2bcd16390dab7b 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 NC"},B:{"1":"C K L G M N O","516":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"132":"ZB aB bB cB dB eB fB 4B gB 5B hB iB jB","164":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB QC RC","516":"kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a","1028":"0 1 2 3 b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"420":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","516":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","132":"F WC","164":"D E VC","420":"4 I J SC 9B TC UC"},F:{"1":"C yB LC fC zB","2":"F B bC cC dC eC","420":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB","516":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","132":"lC mC","164":"E jC kC","420":"9B gC MC hC iC"},H:{"1":"1C"},I:{"420":"3B I 2C 3C 4C 5C MC 6C 7C","516":"H"},J:{"420":"D A"},K:{"1":"C yB LC zB","2":"A B","516":"q"},L:{"516":"H"},M:{"1028":"xB"},N:{"1":"A B"},O:{"516":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","420":"I"},Q:{"516":"BC"},R:{"516":"KD"},S:{"164":"LD MD"}},B:4,C:"CSS3 Multiple column layout",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"C K L H M N O","516":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"132":"bB cB dB eB fB gB hB 5B iB 6B jB kB lB","164":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB RC SC","516":"mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a","1028":"0 1 2 3 4 5 6 b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"420":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","516":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","132":"G XC","164":"E F WC","420":"7 I J TC BC UC VC"},F:{"1":"C zB NC hC 0B","2":"G B dC eC fC gC","420":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB","516":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","132":"nC oC","164":"F lC mC","420":"BC iC OC jC kC"},H:{"1":"4C"},I:{"420":"4B I 5C 6C 7C 8C OC 9C AD","516":"D"},J:{"420":"E A"},K:{"1":"C zB NC 0B","2":"A B","516":"r"},L:{"516":"D"},M:{"1028":"D"},N:{"1":"A B"},O:{"516":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","420":"I"},Q:{"516":"DC"},R:{"516":"ND"},S:{"164":"OD PD"}},B:4,C:"CSS3 Multiple column layout",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutation-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutation-events.js
      index 222814e4e15e80..c251bc18149914 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 NC","260":"F A B"},B:{"132":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L G M N O"},C:{"2":"4 OC 3B I QC RC","260":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"16":"4 I J D E F A B C K L","132":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"16":"SC 9B","132":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"C fC zB","2":"F bC cC dC eC","16":"B yB LC","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"16":"9B gC","132":"E MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"16":"2C 3C","132":"3B I H 4C 5C MC 6C 7C"},J:{"132":"D A"},K:{"1":"C zB","2":"A","16":"B yB LC","132":"q"},L:{"132":"H"},M:{"260":"xB"},N:{"260":"A B"},O:{"132":"0B"},P:{"132":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"132":"BC"},R:{"132":"KD"},S:{"260":"LD MD"}},B:5,C:"Mutation events",D:true};
      +module.exports={A:{A:{"2":"J E F PC","260":"G A B"},B:{"132":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L H M N O"},C:{"2":"7 QC 4B I RC SC","260":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"16":"7 I J E F G A B C K L","132":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"16":"TC BC","132":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"C hC 0B","2":"G dC eC fC gC","16":"B zB NC","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"16":"BC iC","132":"F OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"16":"5C 6C","132":"4B I D 7C 8C OC 9C AD"},J:{"132":"E A"},K:{"1":"C 0B","2":"A","16":"B zB NC","132":"r"},L:{"132":"D"},M:{"260":"D"},N:{"260":"A B"},O:{"132":"1B"},P:{"132":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"132":"DC"},R:{"132":"ND"},S:{"260":"OD PD"}},B:5,C:"Mutation events",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutationobserver.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutationobserver.js
      index 90ab33ead43409..cd141491b0357c 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 NC","8":"F A"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K QC RC"},D:{"1":"0 1 2 3 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G M N","33":"5 6 7 8 9 O n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","33":"J"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B 2C 3C 4C","8":"I 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","8":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Mutation Observer",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F PC","8":"G A"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K RC SC"},D:{"1":"0 1 2 3 4 5 6 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H M N","33":"8 9 O n o p q AB BB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","33":"J"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B 5C 6C 7C","8":"I 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","8":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Mutation Observer",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/namevalue-storage.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/namevalue-storage.js
      index 76759e9a5786ad..905825f32ce6a4 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":"NC","8":"J D"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","4":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Web Storage - name/value pairs",D:true};
      +module.exports={A:{A:{"1":"F G A B","2":"PC","8":"J E"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","4":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Web Storage - name/value pairs",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/native-filesystem-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/native-filesystem-api.js
      index 5755d16b39e80d..d1807e9e129203 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 NC"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"0 1 2 3 V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x QC RC","516":"0 1 2 3 y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q","194":"sB tB uB vB wB P Q R S T U","260":"0 1 2 3 V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC","516":"CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC dC eC yB LC fC zB","194":"hB iB jB kB lB mB nB oB pB qB","260":"rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC","516":"CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","516":"H"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"516":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"File System Access API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","194":"P Q R S T U","260":"0 1 2 3 4 5 6 V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y RC SC","516":"0 1 2 3 4 5 6 z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r","194":"uB vB wB xB yB P Q R S T U","260":"0 1 2 3 4 5 6 V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC","516":"EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB dC eC fC gC zB NC hC 0B","194":"jB kB lB mB nB oB pB qB rB sB","260":"tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C","516":"EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","516":"D"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"516":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"File System Access API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/nav-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/nav-timing.js
      index b9a6cb19fb9bf9..e8f1029b5ca6ad 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I","33":"J D E F A B C"},E:{"1":"E F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC VC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"I H 5C MC 6C 7C","2":"3B 2C 3C 4C"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Navigation Timing API",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I","33":"J E F G A B C"},E:{"1":"F G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC WC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"I D 8C OC 9C AD","2":"4B 5C 6C 7C"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Navigation Timing API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/netinfo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/netinfo.js
      index a4a73b6238b461..2a736b21f0dea1 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 NC"},B:{"2":"C K L G M N O","1028":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB","1028":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB bC cC dC eC yB LC fC zB","1028":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"2C 6C 7C","132":"3B I 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","132":"I","516":"8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"MD","260":"LD"}},B:7,C:"Network Information API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","1028":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB","1028":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB dC eC fC gC zB NC hC 0B","1028":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"5C 9C AD","132":"4B I 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","132":"I","516":"BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"PD","260":"OD"}},B:7,C:"Network Information API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/notifications.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/notifications.js
      index b3b9f8adad9849..78d5a4a4402f81 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC"},D:{"1":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I","36":"4 5 J D E F A B C K L G M N O n o"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC","516":"HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","36":"H 6C 7C"},J:{"1":"A","2":"D"},K:{"2":"A B C yB LC zB","36":"q"},L:{"257":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"36":"I","130":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"130":"KD"},S:{"1":"LD MD"}},B:1,C:"Web Notifications",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC"},D:{"1":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I","36":"7 8 J E F G A B C K L H M N O n o"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC","516":"JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","36":"D 9C AD"},J:{"1":"A","2":"E"},K:{"2":"A B C zB NC 0B","36":"r"},L:{"257":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"36":"I","130":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"130":"ND"},S:{"1":"OD PD"}},B:1,C:"Web Notifications",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-entries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-entries.js
      index e221693264aec4..cb0dfec10e188d 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB QC RC"},D:{"1":"0 1 2 3 bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","16":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Object.entries",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC SC"},D:{"1":"0 1 2 3 4 5 6 dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","16":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Object.entries",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-fit.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-fit.js
      index 1f6fd696fc78d3..655f3f1ece6efc 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G","260":"M N O"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB QC RC"},D:{"1":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC","132":"E F VC WC"},F:{"1":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F G M N O bC cC dC","33":"B C eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC","132":"E kC lC mC"},H:{"33":"1C"},I:{"1":"H 7C","2":"3B I 2C 3C 4C 5C MC 6C"},J:{"2":"D A"},K:{"1":"q","2":"A","33":"B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS3 object-fit/object-position",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H","260":"M N O"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB RC SC"},D:{"1":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC","132":"F G WC XC"},F:{"1":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G H M N O dC eC fC","33":"B C gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC","132":"F mC nC oC"},H:{"33":"4C"},I:{"1":"D AD","2":"4B I 5C 6C 7C 8C OC 9C"},J:{"2":"E A"},K:{"1":"r","2":"A","33":"B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS3 object-fit/object-position",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-observe.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-observe.js
      index b8efa4bacf6be0..e2b0fee749d198 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB","2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB","2":"5 F B C G M N O n o p KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"I","2":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Object.observe data binding",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB","2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"9 q AB BB CB DB EB FB GB HB IB JB KB LB","2":"8 G B C H M N O n o p MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"I","2":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Object.observe data binding",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-values.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-values.js
      index 2b47f200156cb3..57c4a19b858c86 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","8":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB QC RC"},D:{"1":"0 1 2 3 bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","8":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","8":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"8":"1C"},I:{"1":"H","8":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"8":"D A"},K:{"1":"q","8":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"8":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","8":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Object.values method",D:true};
      +module.exports={A:{A:{"8":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC SC"},D:{"1":"0 1 2 3 4 5 6 dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","8":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"F BC iC OC jC kC lC mC nC oC pC"},H:{"8":"4C"},I:{"1":"D","8":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"8":"E A"},K:{"1":"r","8":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","8":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Object.values method",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/objectrtc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/objectrtc.js
      index 3dd017e958bbd3..8c29ad5386031d 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 NC"},B:{"1":"K L G M N O","2":"0 1 2 3 C P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"Object RTC (ORTC) API for WebRTC",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"K L H M N O","2":"0 1 2 3 4 5 6 C P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"Object RTC (ORTC) API for WebRTC",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offline-apps.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offline-apps.js
      index 2d107541d6ea9f..0692ac938d443e 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 NC","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S QC RC","2":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","4":"3B","8":"OC"},D:{"1":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T","2":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB eC yB LC fC zB","2":"F q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC","8":"cC dC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I 2C 3C 4C 5C MC 6C 7C","2":"H"},J:{"1":"D A"},K:{"1":"B C yB LC zB","2":"A q"},L:{"2":"H"},M:{"2":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"2":"KD"},S:{"1":"LD","2":"MD"}},B:7,C:"Offline web applications",D:true};
      +module.exports={A:{A:{"1":"A B","2":"G PC","8":"J E F"},B:{"1":"C K L H M N O P Q R S T","2":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S RC SC","2":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"4B","8":"QC"},D:{"1":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T","2":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB gC zB NC hC 0B","2":"G r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC","8":"eC fC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I 5C 6C 7C 8C OC 9C AD","2":"D"},J:{"1":"E A"},K:{"1":"B C zB NC 0B","2":"A r"},L:{"2":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"2":"ND"},S:{"1":"OD","2":"PD"}},B:7,C:"Offline web applications",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offscreencanvas.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offscreencanvas.js
      index 50aae6341fd809..e85bdff0338cd2 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB QC RC","194":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r"},D:{"1":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","322":"fB 4B gB 5B hB iB jB kB lB mB nB"},E:{"1":"2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC","516":"FC GC HC IC JC"},F:{"1":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB bC cC dC eC yB LC fC zB","322":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},G:{"1":"2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC","516":"FC GC HC IC JC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"194":"LD MD"}},B:1,C:"OffscreenCanvas",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB RC SC","194":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s"},D:{"1":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","322":"hB 5B iB 6B jB kB lB mB nB oB pB"},E:{"1":"3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC","516":"HC IC JC KC bC"},F:{"1":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB dC eC fC gC zB NC hC 0B","322":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},G:{"1":"3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC","516":"HC IC JC KC 3C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"194":"OD PD"}},B:1,C:"OffscreenCanvas",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogg-vorbis.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogg-vorbis.js
      index 03f78c1ab8555e..d899cff16a8ccd 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 NC"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC","132":"G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"A","2":"D"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Ogg Vorbis audio format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC","132":"H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"A","2":"E"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Ogg Vorbis audio format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogv.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogv.js
      index 6ffa310ce36742..fc99f4fc25c0e3 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 NC","8":"F A B"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"1":"xB"},N:{"8":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"2":"KD"},S:{"1":"LD MD"}},B:6,C:"Ogg/Theora video format",D:true};
      +module.exports={A:{A:{"2":"J E F PC","8":"G A B"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","8":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","194":"8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"2":"ND"},S:{"1":"OD PD"}},B:6,C:"Ogg/Theora video format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ol-reversed.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ol-reversed.js
      index d31b378fb1f1ef..63bfc470b090bf 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M N QC RC"},D:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G","16":"5 M N O"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","16":"J"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC yB LC fC","16":"C"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Reversed attribute of ordered lists",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M N RC SC"},D:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H","16":"8 M N O"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","16":"J"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC zB NC hC","16":"C"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Reversed attribute of ordered lists",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/once-event-listener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/once-event-listener.js
      index ae1ae6967e45eb..c310241a9fa150 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 NC"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G"},C:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB QC RC"},D:{"1":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"\"once\" event listener option",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H"},C:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB RC SC"},D:{"1":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"\"once\" event listener option",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/online-status.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/online-status.js
      index 3c0117c14f85e4..35e4b1c8775eda 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 NC","260":"E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B","516":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 5 6 7 8 9 L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K"},E:{"1":"4 J E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","1025":"D"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC","4":"zB"},G:{"1":"E MC hC iC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC","1025":"jC"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"A","132":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Online/offline status",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E PC","260":"F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B","516":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 8 9 L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K"},E:{"1":"7 J F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","1025":"E"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC","4":"0B"},G:{"1":"F OC jC kC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC","1025":"lC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"A","132":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Online/offline status",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/opus.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/opus.js
      index ad3bdc2f146d51..7fd74f125430de 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L QC RC"},D:{"1":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB"},E:{"2":"4 I J D E F A SC 9B TC UC VC WC AC","132":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC","132":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Opus audio format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L RC SC"},D:{"1":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB"},E:{"2":"7 I J E F G A TC BC UC VC WC XC CC","132":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC","132":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Opus audio format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/orientation-sensor.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/orientation-sensor.js
      index c3d6b68c753aeb..be202e917affa4 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","194":"fB 4B gB 5B hB iB jB kB lB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:4,C:"Orientation Sensor",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","194":"hB 5B iB 6B jB kB lB mB nB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:4,C:"Orientation Sensor",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/outline.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/outline.js
      index 824c6a68b08d77..7efacfb4455626 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 NC","260":"E","388":"F A B"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC","129":"zB","260":"F B bC cC dC eC yB LC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"C q zB","260":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"388":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS outline properties",D:true};
      +module.exports={A:{A:{"2":"J E PC","260":"F","388":"G A B"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC","129":"0B","260":"G B dC eC fC gC zB NC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"C r 0B","260":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"388":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS outline properties",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pad-start-end.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pad-start-end.js
      index bf4cf994a2db31..2588aef06832f6 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 NC"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L"},C:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB QC RC"},D:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB RC SC"},D:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/page-transition-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/page-transition-events.js
      index f7fcad9937f267..85e5ca08497f7a 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"PageTransitionEvent",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"PageTransitionEvent",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pagevisibility.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pagevisibility.js
      index 4b070de3d9d334..d10d89ab6a459f 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F QC RC","33":"A B C K L G M N"},D:{"1":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K","33":"5 6 7 8 9 L G M N O n o p AB BB CB DB EB FB"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC"},F:{"1":"6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B C bC cC dC eC yB LC fC","33":"5 G M N O"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","33":"6C 7C"},J:{"1":"A","2":"D"},K:{"1":"q zB","2":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","33":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Page Visibility",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G RC SC","33":"A B C K L H M N"},D:{"1":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K","33":"8 9 L H M N O n o p q AB BB CB DB EB FB GB HB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC"},F:{"1":"9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B C dC eC fC gC zB NC hC","33":"8 H M N O"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","33":"9C AD"},J:{"1":"A","2":"E"},K:{"1":"r 0B","2":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","33":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Page Visibility",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passive-event-listener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passive-event-listener.js
      index dfa925daea6125..6c6bf5256ff255 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 NC"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB QC RC"},D:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"Passive event listeners",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB RC SC"},D:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"Passive event listeners",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passkeys.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passkeys.js
      index a181e03ff77a7d..552238deea6f40 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passkeys.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passkeys.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"1":"0 1 2 3 v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u"},E:{"1":"EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B"},F:{"1":"g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f bC cC dC eC yB LC fC zB"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"o p","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","16":"n"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"Passkeys",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v"},E:{"1":"GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B"},F:{"1":"g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f dC eC fC gC zB NC hC 0B"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"o p q","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","16":"n"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"Passkeys",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passwordrules.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passwordrules.js
      index 31386b1dc6b4d7..e9d50a3839eaec 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 NC"},B:{"2":"C K L G M N O","16":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB QC RC","16":"7B 8B PC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","16":"xB 7B 8B"},E:{"1":"C K zB","2":"4 I J D E F A B SC 9B TC UC VC WC AC yB","16":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB bC cC dC eC yB LC fC zB","16":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"16":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C yB LC zB","16":"q"},L:{"16":"H"},M:{"16":"xB"},N:{"2":"A","16":"B"},O:{"16":"0B"},P:{"2":"I 8C 9C","16":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"16":"BC"},R:{"16":"KD"},S:{"2":"LD MD"}},B:1,C:"Password Rules",D:false};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","16":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D RC SC","16":"8B 9B AC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","16":"8B 9B AC"},E:{"1":"C K 0B","2":"7 I J E F G A B TC BC UC VC WC XC CC zB","16":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB dC eC fC gC zB NC hC 0B","16":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"16":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","16":"D"},J:{"2":"E","16":"A"},K:{"2":"A B C zB NC 0B","16":"r"},L:{"16":"D"},M:{"16":"D"},N:{"2":"A","16":"B"},O:{"16":"1B"},P:{"2":"I BD CD","16":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"16":"DC"},R:{"16":"ND"},S:{"2":"OD PD"}},B:1,C:"Password Rules",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/path2d.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/path2d.js
      index 435d32d0e046cb..a5d616e51114a5 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K","132":"L G M N O"},C:{"1":"0 1 2 3 VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB QC RC","132":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"0 1 2 3 nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB","132":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC UC","132":"E F VC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n o p bC cC dC eC yB LC fC zB","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC","16":"E","132":"kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","132":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Path2D",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K","132":"L H M N O"},C:{"1":"0 1 2 3 4 5 6 XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB RC SC","132":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},D:{"1":"0 1 2 3 4 5 6 pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB","132":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC VC","132":"F G WC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p dC eC fC gC zB NC hC 0B","132":"9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC","16":"F","132":"mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","132":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Path2D",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/payment-request.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/payment-request.js
      index c1df3bf1c50222..87e98542dfac85 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB QC RC","4162":"cB dB eB fB 4B gB 5B hB iB jB kB","16452":"0 1 2 3 lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","194":"aB bB cB dB eB fB","1090":"4B gB","8196":"5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC","514":"A B AC","8196":"C yB"},F:{"1":"lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB bC cC dC eC yB LC fC zB","194":"NB OB PB QB RB SB TB UB","8196":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},G:{"1":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC","514":"nC oC pC","8196":"qC rC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"2049":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p ED FD GD HD 1B 2B ID JD","2":"I","8196":"8C 9C AD BD CD AC DD"},Q:{"8196":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:2,C:"Payment Request API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K","322":"L","8196":"H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB RC SC","4162":"eB fB gB hB 5B iB 6B jB kB lB mB","16452":"0 1 2 3 4 5 6 nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","194":"cB dB eB fB gB hB","1090":"5B iB","8196":"6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC","514":"A B CC","8196":"C zB"},F:{"1":"nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB dC eC fC gC zB NC hC 0B","194":"PB QB RB SB TB UB VB WB","8196":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB"},G:{"1":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC","514":"pC qC rC","8196":"sC tC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"2049":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q HD ID JD KD 2B 3B LD MD","2":"I","8196":"BD CD DD ED FD CC GD"},Q:{"8196":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:2,C:"Payment Request API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pdf-viewer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pdf-viewer.js
      index 0e1aa5af304647..3753e9ffb7e06d 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 NC","132":"B"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","16":"C K L"},C:{"1":"0 1 2 3 5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M N O QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC yB LC fC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"16":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"16":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"Built-in PDF viewer",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","132":"B"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M N O RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC zB NC hC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"16":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"16":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"Built-in PDF viewer",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-api.js
      index 9a9380ae1d520b..b6f93ab8f5be9f 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB QC RC"},D:{"1":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB bC cC dC eC yB LC fC zB"},G:{"1":"1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Permissions API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB RC SC"},D:{"1":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB dC eC fC gC zB NC hC 0B"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Permissions API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-policy.js
      index a36922d23e2505..145932f4c5d858 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 NC"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q QC RC","258":"0 1 2 3 sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B","258":"gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U","322":"V W","388":"0 1 2 3 X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B SC 9B TC UC VC WC AC","258":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB bC cC dC eC yB LC fC zB","258":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB","322":"rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d","388":"e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC","258":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","258":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","388":"q"},L:{"388":"H"},M:{"258":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I 8C 9C AD","258":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"258":"BC"},R:{"388":"KD"},S:{"2":"LD","258":"MD"}},B:5,C:"Permissions Policy",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","258":"P Q R S T U","322":"V W","388":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r RC SC","258":"0 1 2 3 4 5 6 uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B","258":"iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U","322":"V W","388":"0 1 2 3 4 5 6 X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B TC BC UC VC WC XC CC","258":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB dC eC fC gC zB NC hC 0B","258":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB","322":"tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d","388":"e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC","258":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","258":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","388":"r"},L:{"388":"D"},M:{"258":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I BD CD DD","258":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"258":"DC"},R:{"388":"ND"},S:{"2":"OD","258":"PD"}},B:5,C:"Permissions Policy",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture-in-picture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture-in-picture.js
      index ce21c8d9a0ab02..145ab0296e478b 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB QC RC","132":"0 1 2 3 rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","1090":"mB","1412":"qB","1668":"nB oB pB"},D:{"1":"0 1 2 3 pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB","2114":"oB"},E:{"1":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC","4100":"A B C K AC yB zB"},F:{"1":"q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB bC cC dC eC yB LC fC zB","8196":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB"},G:{"1":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC","4100":"lC mC nC oC pC qC rC sC tC uC vC wC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"16388":"H"},M:{"16388":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"Picture-in-Picture",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB RC SC","132":"0 1 2 3 4 5 6 tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","1090":"oB","1412":"sB","1668":"pB qB rB"},D:{"1":"0 1 2 3 4 5 6 rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB","2114":"qB"},E:{"1":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC","4100":"A B C K CC zB 0B"},F:{"1":"r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB dC eC fC gC zB NC hC 0B","8196":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},G:{"1":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC","4100":"nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"16388":"D"},M:{"16388":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"Picture-in-Picture",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture.js
      index 125cf17ae2f4f9..9b8ef064b74152 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C"},C:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB QC RC","578":"HB IB JB KB"},D:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB","194":"KB"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 F B C G M N O n o p bC cC dC eC yB LC fC zB","322":"7"},G:{"1":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Picture element",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C"},C:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB RC SC","578":"JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB","194":"MB"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p q dC eC fC gC zB NC hC 0B","322":"9"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Picture element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ping.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ping.js
      index 8121c1987af97f..8f217d295d9af6 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 NC"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M"},C:{"2":"OC","194":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"194":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"194":"LD MD"}},B:1,C:"Ping attribute",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M"},C:{"2":"QC","194":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"194":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"194":"OD PD"}},B:1,C:"Ping attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/png-alpha.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/png-alpha.js
      index bdfc40895f9f17..3e3de680a4860a 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":"NC","8":"J"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"PNG alpha transparency",D:true};
      +module.exports={A:{A:{"1":"E F G A B","2":"PC","8":"J"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"PNG alpha transparency",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer-events.js
      index 740caf91a64b97..501a290213d9b5 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","2":"OC 3B QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:7,C:"CSS pointer-events (for HTML)",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","2":"QC 4B RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:7,C:"CSS pointer-events (for HTML)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer.js
      index 336e72cf6a1283..2fca5620f8ebd7 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 NC","164":"A"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC","8":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB","328":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},D:{"1":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n o","8":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","584":"ZB aB bB"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC","8":"D E F A B C UC VC WC AC yB","1096":"zB"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","8":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB","584":"MB NB OB"},G:{"1":"uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC","6148":"tC"},H:{"2":"1C"},I:{"1":"H","8":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"8":"D A"},K:{"1":"q","2":"A","8":"B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","36":"A"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"8C","8":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","328":"LD"}},B:2,C:"Pointer events",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G PC","164":"A"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC","8":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","328":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},D:{"1":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n o","8":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","584":"bB cB dB"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC","8":"E F G A B C VC WC XC CC zB","1096":"0B"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","8":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB","584":"OB PB QB"},G:{"1":"wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC","6148":"vC"},H:{"2":"4C"},I:{"1":"D","8":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"8":"E A"},K:{"1":"r","2":"A","8":"B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","36":"A"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"BD","8":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","328":"OD"}},B:2,C:"Pointer events",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointerlock.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointerlock.js
      index 95527c5ea7ba12..d4a081f22e30a0 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C"},C:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K QC RC","33":"5 6 7 8 9 L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G","33":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB","66":"5 M N O n o"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 G M N O n o p"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Pointer Lock API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C"},C:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K RC SC","33":"8 9 L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H","33":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB","66":"8 M N O n o"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 H M N O n o p q"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Pointer Lock API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/portals.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/portals.js
      index b8e61c954c2bb3..14fa5f2061042e 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 NC"},B:{"2":"C K L G M N O P Q R S T","322":"0 1 2 3 Z a b c d e f g h i j k l m r s t u v w x y z H","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB","194":"tB uB vB wB P Q R S T","322":"0 1 2 3 V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","450":"U"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC dC eC yB LC fC zB","194":"hB iB jB kB lB mB nB oB pB qB rB","322":"q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"450":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Portals",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O P Q R S T","322":"0 1 2 3 4 5 6 Z a b c d e f g h i j k l m s t u v w x y z D","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB","194":"vB wB xB yB P Q R S T","322":"0 1 2 3 4 5 6 V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","450":"U"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB dC eC fC gC zB NC hC 0B","194":"jB kB lB mB nB oB pB qB rB sB tB","322":"r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"450":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Portals",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-color-scheme.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-color-scheme.js
      index bee23c0157896e..58e69850ee6db4 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB QC RC"},D:{"1":"0 1 2 3 uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB"},E:{"1":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB"},F:{"1":"hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC dC eC yB LC fC zB"},G:{"1":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"prefers-color-scheme media query",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB RC SC"},D:{"1":"0 1 2 3 4 5 6 wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB"},E:{"1":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB dC eC fC gC zB NC hC 0B"},G:{"1":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"prefers-color-scheme media query",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js
      index d8c913aa5a3eb0..49a2467e653e71 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB QC RC"},D:{"1":"0 1 2 3 sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"prefers-reduced-motion media query",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB RC SC"},D:{"1":"0 1 2 3 4 5 6 uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"prefers-reduced-motion media query",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/progress.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/progress.js
      index 65bdc3dc089ded..187f98cb287dbe 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","2":"F bC cC dC eC"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC","132":"jC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"progress element",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","2":"G dC eC fC gC"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC","132":"lC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"progress element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promise-finally.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promise-finally.js
      index 80702120b6e3b8..57bc567d83d165 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 NC"},B:{"1":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N"},C:{"1":"0 1 2 3 fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB QC RC"},D:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"Promise.prototype.finally",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N"},C:{"1":"0 1 2 3 4 5 6 hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB RC SC"},D:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"Promise.prototype.finally",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promises.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promises.js
      index a33826ab81d477..2f80aac2e9c24f 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","4":"AB BB","8":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","4":"FB","8":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB"},E:{"1":"E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"4 I J D SC 9B TC UC"},F:{"1":"6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","4":"5","8":"F B C G M N O bC cC dC eC yB LC fC zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"9B gC MC hC iC jC"},H:{"8":"1C"},I:{"1":"H 7C","8":"3B I 2C 3C 4C 5C MC 6C"},J:{"8":"D A"},K:{"1":"q","8":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"8":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Promises",D:true};
      +module.exports={A:{A:{"8":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"CB DB","8":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB RC SC"},D:{"1":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"HB","8":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB"},E:{"1":"F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"7 I J E TC BC UC VC"},F:{"1":"9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","4":"8","8":"G B C H M N O dC eC fC gC zB NC hC 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"BC iC OC jC kC lC"},H:{"8":"4C"},I:{"1":"D AD","8":"4B I 5C 6C 7C 8C OC 9C"},J:{"8":"E A"},K:{"1":"r","8":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Promises",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proximity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proximity.js
      index a7d947d947bfcc..6f9dedf712ad10 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"LD MD"}},B:4,C:"Proximity API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"OD PD"}},B:4,C:"Proximity API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proxy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proxy.js
      index 4960dab400cd28..5fa8cb467c47db 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M N QC RC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G M N O LB MB NB OB PB QB RB SB TB UB VB","66":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 F B C AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB","66":"5 6 7 G M N O n o p"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Proxy object",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M N RC SC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H M N O NB OB PB QB RB SB TB UB VB WB XB","66":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B","66":"8 9 H M N O n o p q"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Proxy object",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/publickeypinning.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/publickeypinning.js
      index 23da88e6b312a9..1074f44de4c268 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB","2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC 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 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","2":"5 F B C G M N O lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","4":"6","16":"7 n o p"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"I 8C 9C AD BD CD AC","2":"n o p DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"LD","2":"MD"}},B:6,C:"HTTP Public Key Pinning",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB","2":"8 G B C H M N O nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","4":"q","16":"9 n o p"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"I BD CD DD ED FD CC","2":"n o p q GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"OD","2":"PD"}},B:6,C:"HTTP Public Key Pinning",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/push-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/push-api.js
      index 2364b50b606417..52a60019c77dd2 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 NC"},B:{"1":"N O","2":"C K L G M","257":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB QC RC","257":"0 1 2 3 RB TB UB VB WB XB YB aB bB cB dB eB fB 4B 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","1281":"SB ZB gB"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","257":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","388":"RB SB TB UB VB WB"},E:{"2":"4 I J SC 9B TC UC","514":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B","2564":"EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB bC cC dC eC yB LC fC zB","16":"KB LB MB NB OB","257":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC","4100":"HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"2":"KD"},S:{"257":"LD MD"}},B:5,C:"Push API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"N O","2":"C K L H M","257":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB RC SC","257":"0 1 2 3 4 5 6 TB VB WB XB YB ZB aB cB dB eB fB gB hB 5B 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","1281":"UB bB iB"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","257":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","388":"TB UB VB WB XB YB"},E:{"2":"7 I J TC BC UC VC","514":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B","2564":"GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB dC eC fC gC zB NC hC 0B","16":"MB NB OB PB QB","257":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC","4100":"JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"2":"ND"},S:{"257":"OD PD"}},B:5,C:"Push API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/queryselector.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/queryselector.js
      index a00aa9342a49c1..f82151f575faed 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":"NC","8":"J D","132":"E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","8":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m cC dC eC yB LC fC zB","8":"F bC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"querySelector/querySelectorAll",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"PC","8":"J E","132":"F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","8":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m eC fC gC zB NC hC 0B","8":"G dC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"querySelector/querySelectorAll",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/readonly-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/readonly-attr.js
      index 7fc7a4a26be33c..16315bef1ea15d 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":"NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","16":"OC 3B QC RC"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 5 6 7 8 I J D E F A B C K L G M N O n o p"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F bC","132":"B C cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC hC iC"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"q","132":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"257":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"readonly attribute of input and textarea elements",D:true};
      +module.exports={A:{A:{"1":"J E F G A B","16":"PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 8 9 I J E F G A B C K L H M N O n o p q AB"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G dC","132":"B C eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC jC kC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"r","132":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"257":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"readonly attribute of input and textarea elements",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/referrer-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/referrer-policy.js
      index 088adb153bed40..bb22cd72b08081 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 NC","132":"B"},B:{"1":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","132":"C K L G M N O","516":"P Q R S T"},C:{"1":"W X Y Z a","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB QC RC","516":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V","2049":"0 1 2 3 b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n","260":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB","516":"5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T"},E:{"2":"4 I J D SC 9B TC UC","132":"E F A B VC WC AC","516":"C yB zB","1025":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","1540":"K L BC XC"},F:{"1":"q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","516":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB"},G:{"2":"9B gC MC hC iC jC","132":"E kC lC mC nC oC pC qC","516":"rC sC tC uC","1025":"zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","1540":"vC wC xC yC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2049":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I","516":"8C 9C AD BD CD AC DD ED FD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"516":"LD MD"}},B:4,C:"Referrer Policy",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","132":"B"},B:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","132":"C K L H M N O","516":"P Q R S T"},C:{"1":"W X Y Z a","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB RC SC","516":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V","2049":"0 1 2 3 4 5 6 b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n","260":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB","516":"6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T"},E:{"2":"7 I J E TC BC UC VC","132":"F G A B WC XC CC","516":"C zB 0B","1025":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","1540":"K L DC YC"},F:{"1":"r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","516":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},G:{"2":"BC iC OC jC kC lC","132":"F mC nC oC pC qC rC sC","516":"tC uC vC wC","1025":"1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","1540":"xC yC zC 0C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2049":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I","516":"BD CD DD ED FD CC GD HD ID"},Q:{"1":"DC"},R:{"1":"ND"},S:{"516":"OD PD"}},B:4,C:"Referrer Policy",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/registerprotocolhandler.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/registerprotocolhandler.js
      index 4e9d035a9489a5..0942cb84534229 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 NC"},B:{"2":"C K L G M N O","129":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC"},D:{"2":"4 I J D E F A B C","129":"0 1 2 3 5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B bC cC dC eC yB LC","129":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","129":"A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:1,C:"Custom protocol handling",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","129":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC"},D:{"2":"7 I J E F G A B C","129":"0 1 2 3 4 5 6 8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B dC eC fC gC zB NC","129":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","129":"A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:1,C:"Custom protocol handling",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noopener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noopener.js
      index f43e822967c7b3..04710dab625b72 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB QC RC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"rel=noopener",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB RC SC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"rel=noopener",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noreferrer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noreferrer.js
      index c6857f9904b866..21f068098ed011 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 NC","132":"B"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","16":"C"},C:{"1":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L G"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Link type \"noreferrer\"",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","132":"B"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","16":"C"},C:{"1":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L H"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Link type \"noreferrer\"",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rellist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rellist.js
      index b014b5607fd3d2..4a7ce12af3270c 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 NC"},B:{"1":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M","132":"N"},C:{"1":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB QC RC"},D:{"1":"0 1 2 3 kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","132":"XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E SC 9B TC UC VC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB bC cC dC eC yB LC fC zB","132":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","132":"8C 9C AD BD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"relList (DOMTokenList)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M","132":"N"},C:{"1":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB RC SC"},D:{"1":"0 1 2 3 4 5 6 mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","132":"ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F TC BC UC VC WC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB dC eC fC gC zB NC hC 0B","132":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","132":"BD CD DD ED"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"relList (DOMTokenList)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rem.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rem.js
      index 6bddbb37254dff..fec75b3546bd2f 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 NC","132":"F A"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","2":"OC 3B QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F B bC cC dC eC yB LC"},G:{"1":"E gC MC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B","260":"hC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"C q zB","2":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"rem (root em) units",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F PC","132":"G A"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","2":"QC 4B RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G B dC eC fC gC zB NC"},G:{"1":"F iC OC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC","260":"jC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"C r 0B","2":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"rem (root em) units",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestanimationframe.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestanimationframe.js
      index cc2bcea93eea27..3e3ff5c07548f5 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","33":"5 B C K L G M N O n o p","164":"4 I J D E F A"},D:{"1":"0 1 2 3 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F","33":"6 p","164":"5 O n o","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","33":"J"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","33":"iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"requestAnimationFrame",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","33":"8 B C K L H M N O n o p","164":"7 I J E F G A"},D:{"1":"0 1 2 3 4 5 6 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G","33":"p q","164":"8 O n o","420":"A B C K L H M N"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","33":"J"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","33":"kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"requestAnimationFrame",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestidlecallback.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestidlecallback.js
      index 9a18242a5b17cb..d4059ce196b1ff 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB QC RC","194":"aB bB"},D:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"aC","2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB","322":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC","322":"wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"requestIdleCallback",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB RC SC","194":"cB dB"},D:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"cC","2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B","322":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC","322":"yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"requestIdleCallback",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resizeobserver.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resizeobserver.js
      index 8a144707c7e8be..a8cc5a71404cfc 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB QC RC"},D:{"1":"0 1 2 3 jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB cB dB eB fB 4B gB 5B hB iB"},E:{"1":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB zB","66":"K"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB bC cC dC eC yB LC fC zB","194":"OB PB QB RB SB TB UB VB WB XB YB"},G:{"1":"wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"Resize Observer",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB RC SC"},D:{"1":"0 1 2 3 4 5 6 lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","194":"dB eB fB gB hB 5B iB 6B jB kB"},E:{"1":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB 0B","66":"K"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB dC eC fC gC zB NC hC 0B","194":"QB RB SB TB UB VB WB XB YB ZB aB"},G:{"1":"yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"Resize Observer",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resource-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resource-timing.js
      index 727aa51abf2b82..39e95339b5bafc 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB QC RC","194":"EB FB GB HB"},D:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 I J D E F A B C K L G M N O n o p"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","260":"B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Resource Timing",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB RC SC","194":"GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC","260":"B"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Resource Timing",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rest-parameters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rest-parameters.js
      index b79a7a03f0d328..208fa9bcebf1b5 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L QC RC"},D:{"1":"0 1 2 3 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB SB TB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB bC cC dC eC yB LC fC zB","194":"EB FB GB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Rest parameters",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L RC SC"},D:{"1":"0 1 2 3 4 5 6 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","194":"TB UB VB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB dC eC fC gC zB NC hC 0B","194":"GB HB IB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Rest parameters",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rtcpeerconnection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rtcpeerconnection.js
      index ff05d69fc807ec..1bc00fb74114f8 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L","260":"G M N O"},C:{"1":"0 1 2 3 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC","33":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"0 1 2 3 dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n o p","33":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C G M N bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","130":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"33":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"WebRTC Peer-to-peer connections",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L","260":"H M N O"},C:{"1":"0 1 2 3 4 5 6 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC","33":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n o p","33":"9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C H M N dC eC fC gC zB NC hC 0B","33":"8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","130":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"33":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"WebRTC Peer-to-peer connections",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js
      index 0812c3df1cf391..9754b2e3188647 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 NC","132":"F A B"},B:{"4":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","8":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB QC RC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","8":"I"},E:{"4":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"I SC 9B"},F:{"4":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","8":"F B C bC cC dC eC yB LC fC zB"},G:{"4":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"9B gC MC"},H:{"8":"1C"},I:{"4":"3B I H 5C MC 6C 7C","8":"2C 3C 4C"},J:{"4":"A","8":"D"},K:{"4":"q","8":"A B C yB LC zB"},L:{"4":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"4":"0B"},P:{"4":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"4":"BC"},R:{"4":"KD"},S:{"1":"LD MD"}},B:1,C:"Ruby annotation",D:true};
      +module.exports={A:{A:{"4":"J E F PC","132":"G A B"},B:{"4":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB RC SC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"I"},E:{"4":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"I TC BC"},F:{"4":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","8":"G B C dC eC fC gC zB NC hC 0B"},G:{"4":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"BC iC OC"},H:{"8":"4C"},I:{"4":"4B I D 8C OC 9C AD","8":"5C 6C 7C"},J:{"4":"A","8":"E"},K:{"4":"r","8":"A B C zB NC 0B"},L:{"4":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"4":"1B"},P:{"4":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"4":"DC"},R:{"4":"ND"},S:{"1":"OD PD"}},B:1,C:"Ruby annotation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/run-in.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/run-in.js
      index cd5193c6aaed71..8a7ba3b218e9e7 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB","2":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J TC","2":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"UC","129":"I SC 9B"},F:{"1":"F B C G M N O bC cC dC eC yB LC fC zB","2":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"gC MC hC iC jC","2":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","129":"9B"},H:{"1":"1C"},I:{"1":"3B I 2C 3C 4C 5C MC 6C","2":"H 7C"},J:{"1":"D A"},K:{"1":"A B C yB LC zB","2":"q"},L:{"2":"H"},M:{"2":"xB"},N:{"1":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:4,C:"display: run-in",D:true};
      +module.exports={A:{A:{"1":"F G A B","2":"J E PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB","2":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J UC","2":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"VC","129":"I TC BC"},F:{"1":"G B C H M N O dC eC fC gC zB NC hC 0B","2":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"iC OC jC kC lC","2":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","129":"BC"},H:{"1":"4C"},I:{"1":"4B I 5C 6C 7C 8C OC 9C","2":"D AD"},J:{"1":"E A"},K:{"1":"A B C zB NC 0B","2":"r"},L:{"2":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:4,C:"display: run-in",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js
      index 95e384ef21d638..c1ba948746c5af 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 NC","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"0 1 2 3 V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B QC RC"},D:{"1":"YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","513":"0 1 2 3 Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC yB","2052":"L XC","3076":"C K zB BC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB bC cC dC eC yB LC fC zB","513":"qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC","2052":"rC sC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","513":"q"},L:{"513":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"16":"BC"},R:{"513":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"'SameSite' cookie attribute",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","388":"B"},B:{"1":"O P Q R S T U","2":"C K L H","129":"M N","513":"0 1 2 3 4 5 6 V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B RC SC"},D:{"1":"aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","513":"0 1 2 3 4 5 6 Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC zB","2052":"L YC","3076":"C K 0B DC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB dC eC fC gC zB NC hC 0B","513":"sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC","2052":"tC uC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","513":"r"},L:{"513":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"16":"DC"},R:{"513":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"'SameSite' cookie attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/screen-orientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/screen-orientation.js
      index dcc42367d484e6..b182b63ff2b858 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 NC","164":"B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","36":"C K L G M N O"},C:{"1":"0 1 2 3 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M N QC RC","36":"5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A","36":"B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","16":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"Screen Orientation",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","164":"B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","36":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M N RC SC","36":"8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"1":"JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A","36":"B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","16":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"Screen Orientation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-async.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-async.js
      index 9669df86dfe298..50d98de29c3152 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","2":"OC 3B QC"},D:{"1":"0 1 2 3 5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","132":"4"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"async attribute for external scripts",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","2":"QC 4B RC"},D:{"1":"0 1 2 3 4 5 6 8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","132":"7"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"async attribute for external scripts",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-defer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-defer.js
      index daa383036ab956..bf5afc3a2c5a90 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","257":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"defer attribute for external scripts",D:true};
      +module.exports={A:{A:{"1":"A B","132":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","257":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"defer attribute for external scripts",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoview.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoview.js
      index d487099c0b6017..4449c75d840969 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 NC","132":"E F A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","132":"C K L G M N O"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","132":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB QC RC"},D:{"1":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B","132":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F bC cC dC eC","16":"B yB LC","132":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB fC zB"},G:{"1":"1B EC FC GC HC IC JC 2B KC","16":"9B gC MC","132":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"1":"H","16":"2C 3C","132":"3B I 4C 5C MC 6C 7C"},J:{"132":"D A"},K:{"1":"q","132":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"132":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"scrollIntoView",D:true};
      +module.exports={A:{A:{"2":"J E PC","132":"F G A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","132":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB RC SC"},D:{"1":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC","132":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G dC eC fC gC","16":"B zB NC","132":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB hC 0B"},G:{"1":"2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC","132":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"1":"D","16":"5C 6C","132":"4B I 7C 8C OC 9C AD"},J:{"132":"E A"},K:{"1":"r","132":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"132":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"scrollIntoView",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js
      index bffe3a93553bed..0648aae1338fab 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"Element.scrollIntoViewIfNeeded()",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"Element.scrollIntoViewIfNeeded()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sdch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sdch.js
      index fedd265826f19f..842b09df1fdc9c 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","2":"0 1 2 3 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB","2":"F B C q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","2":"0 1 2 3 4 5 6 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB","2":"G B C r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selection-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selection-api.js
      index 654968b7efd569..f76c753a0b8fc7 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":"NC","260":"J D E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","132":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QC RC","2180":"QB RB SB TB UB VB WB XB YB"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","132":"F B C bC cC dC eC yB LC fC zB"},G:{"16":"MC","132":"9B gC","516":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H 6C 7C","16":"3B I 2C 3C 4C 5C","1025":"MC"},J:{"1":"A","16":"D"},K:{"1":"q","16":"A B C yB LC","132":"zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","16":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2180":"LD"}},B:5,C:"Selection API",D:true};
      +module.exports={A:{A:{"1":"G A B","16":"PC","260":"J E F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB RC SC","2180":"SB TB UB VB WB XB YB ZB aB"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","132":"G B C dC eC fC gC zB NC hC 0B"},G:{"16":"OC","132":"BC iC","516":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D 9C AD","16":"4B I 5C 6C 7C 8C","1025":"OC"},J:{"1":"A","16":"E"},K:{"1":"r","16":"A B C zB NC","132":"0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","16":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2180":"OD"}},B:5,C:"Selection API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/server-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/server-timing.js
      index f004a041694417..5e7a1b871c619c 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB QC RC"},D:{"1":"0 1 2 3 kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B","196":"gB 5B hB iB","324":"jB"},E:{"2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB","516":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"Server Timing",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB RC SC"},D:{"1":"0 1 2 3 4 5 6 mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B","196":"iB 6B jB kB","324":"lB"},E:{"2":"7 I J E F G A B C TC BC UC VC WC XC CC zB","516":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"Server Timing",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/serviceworkers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/serviceworkers.js
      index 9e4c5ae346c11f..36f0bd8651d12b 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 NC"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L","322":"G M"},C:{"1":"0 1 2 3 RB TB UB VB WB XB YB aB bB cB dB eB fB 4B 5B hB iB jB kB lB mB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB QC RC","194":"GB HB IB JB KB LB MB NB OB PB QB","513":"SB ZB gB nB"},D:{"1":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB","4":"NB OB PB QB RB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B SC 9B TC UC VC WC AC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p bC cC dC eC yB LC fC zB","4":"AB BB CB DB EB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","4":"H"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"Service Workers",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L","322":"H M"},C:{"1":"0 1 2 3 4 5 6 TB VB WB XB YB ZB aB cB dB eB fB gB hB 5B 6B jB kB lB mB nB oB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB RC SC","194":"IB JB KB LB MB NB OB PB QB RB SB","513":"UB bB iB pB"},D:{"1":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","4":"PB QB RB SB TB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B TC BC UC VC WC XC CC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB dC eC fC gC zB NC hC 0B","4":"CB DB EB FB GB"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","4":"D"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"Service Workers",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/setimmediate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/setimmediate.js
      index 0596aee846da53..7b8bbc95e75f2e 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 NC"},B:{"1":"C K L G M N O","2":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"1":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Efficient Script Yielding: setImmediate()",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"C K L H M N O","2":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"1":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Efficient Script Yielding: setImmediate()",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdom.js
      index 6fd372d808147f..3bc0bbdddcb75b 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 NC"},B:{"1":"P","2":"0 1 2 3 C K L G M N O Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","66":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P","2":"0 1 2 3 4 5 6 7 I J D E F A B C K L G M N O n o p Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"8 9 AB BB CB DB EB FB GB HB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","2":"F B C mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","33":"5 G M N O n o"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC","33":"6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"8C 9C AD BD CD AC DD ED","2":"n o p FD GD HD 1B 2B ID JD","33":"I"},Q:{"1":"BC"},R:{"2":"KD"},S:{"1":"LD","2":"MD"}},B:7,C:"Shadow DOM (deprecated V0 spec)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"P","2":"0 1 2 3 4 5 6 C K L H M N O Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","66":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P","2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"AB BB CB DB EB FB GB HB IB JB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","2":"G B C oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","33":"8 H M N O n o"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC","33":"9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"BD CD DD ED FD CC GD HD","2":"n o p q ID JD KD 2B 3B LD MD","33":"I"},Q:{"1":"DC"},R:{"2":"ND"},S:{"1":"OD","2":"PD"}},B:7,C:"Shadow DOM (deprecated V0 spec)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdomv1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdomv1.js
      index 88d1dd67fd1277..94c90b7c78f244 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB QC RC","322":"fB","578":"4B gB 5B hB"},D:{"1":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"A B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB bC cC dC eC yB LC fC zB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC","132":"nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","4":"8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"Shadow DOM (V1)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB RC SC","322":"hB","578":"5B iB 6B jB"},D:{"1":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"A B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB dC eC fC gC zB NC hC 0B"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC","132":"pC qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","4":"BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"Shadow DOM (V1)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedarraybuffer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedarraybuffer.js
      index 4020e65e1de863..46e870d790d0d2 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 NC"},B:{"1":"P Q R S T U V W X Y Z","2":"C K L G","194":"M N O","513":"0 1 2 3 a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB QC RC","194":"eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q","450":"sB tB uB vB wB","513":"0 1 2 3 P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B","194":"gB 5B hB iB jB kB lB mB","513":"0 1 2 3 a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A SC 9B TC UC VC WC","194":"B C K L G AC yB zB BC XC YC","513":"CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"jB kB lB mB nB oB pB qB rB q sB tB uB vB","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB bC cC dC eC yB LC fC zB","194":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","513":"wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC","194":"oC pC qC rC sC tC uC vC wC xC yC zC","513":"CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","513":"q"},L:{"513":"H"},M:{"513":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I 8C 9C AD BD CD AC DD ED FD GD","513":"n o p HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"513":"KD"},S:{"2":"LD","513":"MD"}},B:6,C:"Shared Array Buffer",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"P Q R S T U V W X Y Z","2":"C K L H","194":"M N O","513":"0 1 2 3 4 5 6 a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB RC SC","194":"gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r","450":"uB vB wB xB yB","513":"0 1 2 3 4 5 6 P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B","194":"iB 6B jB kB lB mB nB oB","513":"0 1 2 3 4 5 6 a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A TC BC UC VC WC XC","194":"B C K L H CC zB 0B DC YC ZC","513":"EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"lB mB nB oB pB qB rB sB tB r uB vB wB xB","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB dC eC fC gC zB NC hC 0B","194":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","513":"yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC","194":"qC rC sC tC uC vC wC xC yC zC 0C 1C","513":"EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","513":"r"},L:{"513":"D"},M:{"513":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I BD CD DD ED FD CC GD HD ID JD","513":"n o p q KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"513":"ND"},S:{"2":"OD","513":"PD"}},B:6,C:"Shared Array Buffer",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedworkers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedworkers.js
      index 7cff8a1556fb0e..5a56c8cbb4273d 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 J TC 1B EC FC GC HC IC JC 2B KC aC","2":"I D E F A B C K L G SC 9B UC VC WC AC yB zB BC XC YC CC DC 0B ZC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","2":"F bC cC dC"},G:{"1":"hC iC 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"B C yB LC zB","2":"q","16":"A"},L:{"2":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"I","2":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"LD MD"}},B:1,C:"Shared Web Workers",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 J UC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I E F G A B C K L H TC BC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","2":"G dC eC fC"},G:{"1":"jC kC 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"B C zB NC 0B","2":"r","16":"A"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"I","2":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"OD PD"}},B:1,C:"Shared Web Workers",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sni.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sni.js
      index 88028b762b02f4..0d7e8cfa81db26 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 NC","132":"D E"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B"},H:{"1":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"A","2":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Server Name Indication",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J PC","132":"E F"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC"},H:{"1":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"A","2":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Server Name Indication",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spdy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spdy.js
      index bcbd4558bc196c..4270f2afd49947 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 OC 3B I J D E F A B C YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"E F A B C WC AC yB","2":"4 I J D SC 9B TC UC VC","129":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB PB RB zB","2":"F B C NB OB QB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC"},G:{"1":"E kC lC mC nC oC pC qC rC","2":"9B gC MC hC iC jC","257":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I 5C MC 6C 7C","2":"H 2C 3C 4C"},J:{"2":"D A"},K:{"1":"zB","2":"A B C q yB LC"},L:{"2":"H"},M:{"2":"xB"},N:{"1":"B","2":"A"},O:{"2":"0B"},P:{"1":"I","2":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"LD","2":"MD"}},B:7,C:"SPDY protocol",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G A PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","2":"0 1 2 3 4 5 6 7 QC 4B I J E F G A B C aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","2":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"F G A B C XC CC zB","2":"7 I J E TC BC UC VC WC","129":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB RB TB 0B","2":"G B C PB QB SB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC"},G:{"1":"F mC nC oC pC qC rC sC tC","2":"BC iC OC jC kC lC","257":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I 8C OC 9C AD","2":"D 5C 6C 7C"},J:{"2":"E A"},K:{"1":"0B","2":"A B C r zB NC"},L:{"2":"D"},M:{"2":"D"},N:{"1":"B","2":"A"},O:{"2":"1B"},P:{"1":"I","2":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"OD","2":"PD"}},B:7,C:"SPDY protocol",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-recognition.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-recognition.js
      index ba9427c803b9a4..4ff391e3d589c3 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 NC"},B:{"2":"C K L G M N O","514":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC","322":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 I J D E F A B C K L G M N O n o p","164":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L SC 9B TC UC VC WC AC yB zB BC","1060":"G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p bC cC dC eC yB LC fC zB","514":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC","1060":"yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","164":"q"},L:{"164":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"164":"0B"},P:{"164":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"164":"BC"},R:{"164":"KD"},S:{"322":"LD MD"}},B:7,C:"Speech Recognition API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","514":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC","322":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q","164":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L TC BC UC VC WC XC CC zB 0B DC","1060":"H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB dC eC fC gC zB NC hC 0B","514":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC","1060":"0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","164":"r"},L:{"164":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"164":"1B"},P:{"164":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"164":"DC"},R:{"164":"ND"},S:{"322":"OD PD"}},B:7,C:"Speech Recognition API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-synthesis.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-synthesis.js
      index 68a08a61686cc7..617634a693ee67 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 NC"},B:{"1":"L G M N O","2":"C K","257":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB QC RC","194":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB","257":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","2":"5 6 7 8 9 F B C G M N O n o p bC cC dC eC yB LC fC zB","257":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"2":"KD"},S:{"1":"LD MD"}},B:7,C:"Speech Synthesis API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"L H M N O","2":"C K","257":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB RC SC","194":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB","257":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","2":"8 9 G B C H M N O n o p q AB BB dC eC fC gC zB NC hC 0B","257":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"2":"ND"},S:{"1":"OD PD"}},B:7,C:"Speech Synthesis API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spellcheck-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spellcheck-attribute.js
      index 65edac457e31df..be12f3cf572550 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"4":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"4":"1C"},I:{"4":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"A","4":"D"},K:{"4":"A B C q yB LC zB"},L:{"4":"H"},M:{"4":"xB"},N:{"4":"A B"},O:{"4":"0B"},P:{"4":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"4":"KD"},S:{"2":"LD MD"}},B:1,C:"Spellcheck attribute",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"4":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"4":"4C"},I:{"4":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"A","4":"E"},K:{"4":"A B C r zB NC 0B"},L:{"4":"D"},M:{"4":"D"},N:{"4":"A B"},O:{"4":"1B"},P:{"4":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"4":"ND"},S:{"2":"OD PD"}},B:1,C:"Spellcheck attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sql-storage.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sql-storage.js
      index 3243f7a69f6ac5..3d4fdad668b32c 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 NC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i j","2":"C K L G M N O","129":"k l m r s t u v w","385":"0 1 2 3 x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j","129":"k l m r s t u v w","385":"0 1 2 3 x y z H xB","897":"7B 8B"},E:{"1":"4 I J D E F A B C SC 9B TC UC VC WC AC yB zB","2":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z dC eC yB LC fC zB","2":"F bC cC","257":"a b c d e f g h i j k l m"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC","2":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I 2C 3C 4C 5C MC 6C 7C","257":"H"},J:{"1":"D A"},K:{"1":"B C yB LC zB","2":"A","257":"q"},L:{"257":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"Web SQL Database",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"P Q R S T U V W X Y Z a b c d e f g h i j","2":"C K L H M N O","129":"k l m s t u v w x","385":"0 1 2 3 4 5 6 y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j","129":"k l m s t u v w x","385":"0 1 2 3 4 5 6 y z","897":"D 8B 9B AC"},E:{"1":"7 I J E F G A B C TC BC UC VC WC XC CC zB 0B","2":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z fC gC zB NC hC 0B","2":"G dC eC","257":"a b c d e f g h i j k l m"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC","2":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I 5C 6C 7C 8C OC 9C AD","257":"D"},J:{"1":"E A"},K:{"1":"B C zB NC 0B","2":"A","257":"r"},L:{"257":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"Web SQL Database",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/srcset.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/srcset.js
      index d1b1b55c9cc0cc..10b9eae7aa288c 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 NC"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C","514":"K L G"},C:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB QC RC","194":"FB GB HB IB JB KB"},D:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB","260":"HB IB JB KB"},E:{"2":"4 I J D SC 9B TC UC","260":"E VC","1028":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC 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 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n bC cC dC eC yB LC fC zB","260":"6 7 o p"},G:{"2":"9B gC MC hC iC jC","260":"E kC","1028":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Srcset and sizes attributes",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C","514":"K L H"},C:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB RC SC","194":"HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB","260":"JB KB LB MB"},E:{"2":"7 I J E TC BC UC VC","260":"F WC","1028":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n dC eC fC gC zB NC hC 0B","260":"9 o p q"},G:{"2":"BC iC OC jC kC lC","260":"F mC","1028":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Srcset and sizes attributes",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stream.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stream.js
      index f788d496c64ee1..c48f6edef2315b 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M QC RC","129":"JB KB LB MB NB OB","420":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB"},D:{"1":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n","420":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B G M N bC cC dC eC yB LC fC","420":"5 6 7 8 9 C O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC","513":"wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","1537":"pC qC rC sC tC uC vC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","420":"A"},K:{"1":"q","2":"A B yB LC","420":"C zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","420":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:4,C:"getUserMedia/Stream API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M RC SC","129":"LB MB NB OB PB QB","420":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n","420":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B H M N dC eC fC gC zB NC hC","420":"8 9 C O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC","513":"yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","1537":"rC sC tC uC vC wC xC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","420":"A"},K:{"1":"r","2":"A B zB NC","420":"C 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","420":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:4,C:"getUserMedia/Stream API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/streams.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/streams.js
      index 33131008b642d2..099f15b5b3d19d 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 NC","130":"B"},B:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H","16":"C K","260":"L G","1028":"P Q R S T U V W X","5124":"M N O"},C:{"1":"0 1 2 3 l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB QC RC","5124":"j k","7172":"kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i","7746":"eB fB 4B gB 5B hB iB jB"},D:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","260":"ZB aB bB cB dB eB fB","1028":"4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X"},E:{"2":"4 I J D E F SC 9B TC UC VC WC","1028":"G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","3076":"A B C K L AC yB zB BC"},F:{"1":"uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB bC cC dC eC yB LC fC zB","260":"MB NB OB PB QB RB SB","1028":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC","16":"nC","1028":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p HD 1B 2B ID JD","2":"I 8C 9C","1028":"AD BD CD AC DD ED FD GD"},Q:{"1028":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:1,C:"Streams",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","130":"B"},B:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D","16":"C K","260":"L H","1028":"P Q R S T U V W X","5124":"M N O"},C:{"1":"0 1 2 3 4 5 6 l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB RC SC","5124":"j k","7172":"mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i","7746":"gB hB 5B iB 6B jB kB lB"},D:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","260":"bB cB dB eB fB gB hB","1028":"5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X"},E:{"2":"7 I J E F G TC BC UC VC WC XC","1028":"H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","3076":"A B C K L CC zB 0B DC"},F:{"1":"wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB dC eC fC gC zB NC hC 0B","260":"OB PB QB RB SB TB UB","1028":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB"},G:{"2":"F BC iC OC jC kC lC mC nC oC","16":"pC","1028":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q KD 2B 3B LD MD","2":"I BD CD","1028":"DD ED FD CC GD HD ID JD"},Q:{"1028":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:1,C:"Streams",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stricttransportsecurity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stricttransportsecurity.js
      index 02e970d7c6e432..fa9be068684bdb 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 NC","129":"B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC yB LC fC"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Strict Transport Security",D:true};
      +module.exports={A:{A:{"2":"J E F G A PC","129":"B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC zB NC hC"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Strict Transport Security",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/style-scoped.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/style-scoped.js
      index 5e6dc5919b7a65..f304a1caa38dc0 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"6 7 8 9 o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","2":"0 1 2 3 4 5 OC 3B I J D E F A B C K L G M N O n 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","322":"cB dB eB fB 4B gB"},D:{"2":"0 1 2 3 4 5 I J D E F A B C K L G M N O KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","194":"6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"LD","2":"MD"}},B:7,C:"Scoped CSS",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"9 o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","2":"0 1 2 3 4 5 6 7 8 QC 4B I J E F G A B C K L H M N O n 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","322":"eB fB gB hB 5B iB"},D:{"2":"0 1 2 3 4 5 6 7 8 I J E F G A B C K L H M N O MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","194":"9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"OD","2":"PD"}},B:7,C:"Scoped CSS",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js
      index 81e4a04d2abd14..a879b7356f4817 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"1":"0 1 2 3 r s t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Subresource Loading with Web Bundles",D:false};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 s t u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Subresource Loading with Web Bundles",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-integrity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-integrity.js
      index d9d21df33c23ba..11583ba3e4dc43 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 NC"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M"},C:{"1":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QC RC"},D:{"1":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC","194":"pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Subresource Integrity",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB RC SC"},D:{"1":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC","194":"rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Subresource Integrity",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-css.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-css.js
      index b7f5e8b345e891..1feb99b6a26eb6 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 NC"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","516":"C K L G"},C:{"1":"0 1 2 3 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","260":"4 5 6 I J D E F A B C K L G M N O n o p"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","4":"I"},E:{"1":"4 J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC","132":"I 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","132":"9B gC"},H:{"260":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"D A"},K:{"1":"q","260":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"SVG in CSS backgrounds",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","516":"C K L H"},C:{"1":"0 1 2 3 4 5 6 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","260":"7 8 I J E F G A B C K L H M N O n o p q"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"I"},E:{"1":"7 J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC","132":"I BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","132":"BC iC"},H:{"260":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"E A"},K:{"1":"r","260":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"SVG in CSS backgrounds",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-filters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-filters.js
      index c8a382e6c4b02c..55592acbc5b847 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC"},D:{"1":"0 1 2 3 5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I","4":"4 J D"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"SVG filters",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC"},D:{"1":"0 1 2 3 4 5 6 8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I","4":"7 J E"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"SVG filters",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fonts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fonts.js
      index 335de0cac4cd30..38ea3783ef3e65 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 NC","8":"J D E"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB","2":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","130":"LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC"},F:{"1":"5 6 7 F B C G M N O n o p bC cC dC eC yB LC fC zB","2":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","130":"8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"258":"1C"},I:{"1":"3B I 5C MC 6C 7C","2":"H 2C 3C 4C"},J:{"1":"D A"},K:{"1":"A B C yB LC zB","2":"q"},L:{"130":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"I","130":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"130":"KD"},S:{"2":"LD MD"}},B:2,C:"SVG fonts",D:true};
      +module.exports={A:{A:{"2":"G A B PC","8":"J E F"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","130":"NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC"},F:{"1":"8 9 G B C H M N O n o p q dC eC fC gC zB NC hC 0B","2":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","130":"AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"258":"4C"},I:{"1":"4B I 8C OC 9C AD","2":"D 5C 6C 7C"},J:{"1":"E A"},K:{"1":"A B C zB NC 0B","2":"r"},L:{"130":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"I","130":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"130":"ND"},S:{"2":"OD PD"}},B:2,C:"SVG fonts",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fragment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fragment.js
      index 8534ada25cf21f..d0f816b4ecef06 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 NC","260":"F A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L QC RC"},D:{"1":"0 1 2 3 XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB","132":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D F A B SC 9B TC UC WC AC","132":"E VC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"5 G M N O n o p","4":"B C cC dC eC yB LC fC","16":"F bC","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC lC mC nC oC pC","132":"E kC"},H:{"1":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D","132":"A"},K:{"1":"q zB","4":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","132":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"SVG fragment identifiers",D:true};
      +module.exports={A:{A:{"2":"J E F PC","260":"G A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L RC SC"},D:{"1":"0 1 2 3 4 5 6 ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB","132":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E G A B TC BC UC VC XC CC","132":"F WC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"8 H M N O n o p","4":"B C eC fC gC zB NC hC","16":"G dC","132":"9 q AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC nC oC pC qC rC","132":"F mC"},H:{"1":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E","132":"A"},K:{"1":"r 0B","4":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","132":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"SVG fragment identifiers",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html.js
      index d5ffae5885de99..747b646d7d0314 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 NC","388":"F A B"},B:{"4":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC","4":"3B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"SC 9B","4":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"4":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"4":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","4":"H 6C 7C"},J:{"1":"A","2":"D"},K:{"4":"A B C q yB LC zB"},L:{"4":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"4":"0B"},P:{"4":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"4":"BC"},R:{"4":"KD"},S:{"1":"LD MD"}},B:2,C:"SVG effects for HTML",D:true};
      +module.exports={A:{A:{"2":"J E F PC","388":"G A B"},B:{"4":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC","4":"4B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"TC BC","4":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"4":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"4":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","4":"D 9C AD"},J:{"1":"A","2":"E"},K:{"4":"A B C r zB NC 0B"},L:{"4":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"4":"1B"},P:{"4":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"4":"DC"},R:{"4":"ND"},S:{"1":"OD PD"}},B:2,C:"SVG effects for HTML",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html5.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html5.js
      index c1019d01a397a0..44615d3be5e9d0 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":"NC","8":"J D E","129":"F A B"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","8":"OC 3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","8":"4 I J"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"4 I SC 9B","129":"J D E TC UC VC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"B eC yB LC","8":"F bC cC dC"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","8":"9B gC MC","129":"E hC iC jC kC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"2C 3C 4C","129":"3B I 5C MC"},J:{"1":"A","129":"D"},K:{"1":"C q zB","8":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"129":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Inline SVG in HTML5",D:true};
      +module.exports={A:{A:{"2":"PC","8":"J E F","129":"G A B"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","129":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 I J"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"7 I TC BC","129":"J E F UC VC WC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"B gC zB NC","8":"G dC eC fC"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","8":"BC iC OC","129":"F jC kC lC mC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"5C 6C 7C","129":"4B I 8C OC"},J:{"1":"A","129":"E"},K:{"1":"C r 0B","8":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"129":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Inline SVG in HTML5",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-img.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-img.js
      index 94e1e20c2b19d6..bf543fcf0b0f1a 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC","4":"9B","132":"4 I J D E TC UC VC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","132":"E 9B gC MC hC iC jC kC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"2C 3C 4C","132":"3B I 5C MC"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"SVG in HTML img element",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC","4":"BC","132":"7 I J E F UC VC WC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","132":"F BC iC OC jC kC lC mC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"5C 6C 7C","132":"4B I 8C OC"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"SVG in HTML img element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-smil.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-smil.js
      index aed6300dbd6510..df4a86ec0625cc 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":"NC","8":"J D E F A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","8":"OC 3B QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","4":"I"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"SC 9B","132":"4 I TC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","132":"9B gC MC hC"},H:{"2":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"8":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"SVG SMIL animation",D:true};
      +module.exports={A:{A:{"2":"PC","8":"J E F G A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","8":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"I"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"TC BC","132":"7 I UC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","132":"BC iC OC jC"},H:{"2":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"SVG SMIL animation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg.js
      index 9915b8fee733d8..b390d9c12c1243 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":"NC","8":"J D E","772":"F A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","4":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","4":"SC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"H 6C 7C","2":"2C 3C 4C","132":"3B I 5C MC"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"257":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"SVG (basic support)",D:true};
      +module.exports={A:{A:{"2":"PC","8":"J E F","772":"G A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","513":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","4":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","4":"TC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"D 9C AD","2":"5C 6C 7C","132":"4B I 8C OC"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"257":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"SVG (basic support)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sxg.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sxg.js
      index bd934ad7df46fe..66f82555bdd467 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB","132":"qB rB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:6,C:"Signed HTTP Exchanges (SXG)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB","132":"sB tB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:6,C:"Signed HTTP Exchanges (SXG)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tabindex-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tabindex-attr.js
      index d3a8e3bad2f1f3..7fd7ae7038805d 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"16":"OC 3B QC RC","129":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"16":"4 I SC 9B","257":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","16":"F"},G:{"769":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"16":"1C"},I:{"16":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"16":"D A"},K:{"1":"q","16":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"16":"A B"},O:{"1":"0B"},P:{"16":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"129":"LD MD"}},B:1,C:"tabindex global attribute",D:true};
      +module.exports={A:{A:{"1":"E F G A B","16":"J PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"16":"QC 4B RC SC","129":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"16":"7 I TC BC","257":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","16":"G"},G:{"769":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"16":"4C"},I:{"16":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"16":"E A"},K:{"1":"r","16":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"16":"A B"},O:{"1":"1B"},P:{"16":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"129":"OD PD"}},B:1,C:"tabindex global attribute",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template-literals.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template-literals.js
      index 195e122433d8f3..0030212778a698 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 NC"},B:{"1":"0 1 2 3 K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","16":"C"},C:{"1":"0 1 2 3 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB QC RC"},D:{"1":"0 1 2 3 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC","129":"C"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB bC cC dC eC yB LC fC zB"},G:{"1":"lC mC nC oC pC qC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC","129":"rC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"ES6 Template Literals (Template Strings)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","16":"C"},C:{"1":"0 1 2 3 4 5 6 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB RC SC"},D:{"1":"0 1 2 3 4 5 6 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"A B K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC","129":"C"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB dC eC fC gC zB NC hC 0B"},G:{"1":"nC oC pC qC rC sC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC","129":"tC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"ES6 Template Literals (Template Strings)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template.js
      index 2c6e0db74094f4..f4457e1d67d53b 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 NC"},B:{"1":"0 1 2 3 G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C","388":"K L"},C:{"1":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 OC 3B I J D E F A B C K L G M N O n o QC RC"},D:{"1":"0 1 2 3 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 I J D E F A B C K L G M N O n o p","132":"9 AB BB CB DB EB FB GB HB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D SC 9B TC","388":"E VC","514":"UC"},F:{"1":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","132":"5 G M N O n o"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC","388":"E kC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"HTML templates",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o RC SC"},D:{"1":"0 1 2 3 4 5 6 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB","132":"BB CB DB EB FB GB HB IB JB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E TC BC UC","388":"F WC","514":"VC"},F:{"1":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","132":"8 H M N O n o"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC","388":"F mC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"HTML templates",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/temporal.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/temporal.js
      index 3f67d8c13b2b73..64cdd8e8e9ff34 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"Temporal",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"Temporal",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/testfeat.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/testfeat.js
      index 34c0a8a652256e..a7fb292c2690e4 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 NC","16":"F"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 5 6 7 8 9 OC 3B J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","16":"4 I"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"B C"},E:{"2":"I J SC 9B TC","16":"4 D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC LC fC zB","16":"yB"},G:{"2":"9B gC MC hC iC","16":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 5C MC 6C 7C","16":"4C"},J:{"2":"A","16":"D"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Test feature - updated",D:false};
      +module.exports={A:{A:{"2":"J E F A B PC","16":"G"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 8 9 QC 4B J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","16":"7 I"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"B C"},E:{"2":"I J TC BC UC","16":"7 E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC NC hC 0B","16":"zB"},G:{"2":"BC iC OC jC kC","16":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 8C OC 9C AD","16":"7C"},J:{"2":"A","16":"E"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Test feature - updated",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-decoration.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-decoration.js
      index 404559814f3248..00db24ba61884e 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 NC"},B:{"2":"C K L G M N O","2052":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 OC 3B I QC RC","1028":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","1060":"5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},D:{"2":"4 5 6 7 8 I J D E F A B C K L G M N O n o p","226":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","2052":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D SC 9B TC UC","772":"K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","804":"E F A B C WC AC yB","1316":"VC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB bC cC dC eC yB LC fC zB","226":"IB JB KB LB MB NB OB PB QB","2052":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"9B gC MC hC iC jC","292":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","2052":"q"},L:{"2052":"H"},M:{"1028":"xB"},N:{"2":"A B"},O:{"2052":"0B"},P:{"2":"I 8C 9C","2052":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2052":"BC"},R:{"2052":"KD"},S:{"1028":"LD MD"}},B:4,C:"text-decoration styling",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","2052":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 QC 4B I RC SC","1028":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","1060":"8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB","226":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","2052":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E TC BC UC VC","772":"K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","804":"F G A B C XC CC zB","1316":"WC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB dC eC fC gC zB NC hC 0B","226":"KB LB MB NB OB PB QB RB SB","2052":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"BC iC OC jC kC lC","292":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","2052":"r"},L:{"2052":"D"},M:{"1028":"D"},N:{"2":"A B"},O:{"2052":"1B"},P:{"2":"I BD CD","2052":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2052":"DC"},R:{"2052":"ND"},S:{"1028":"OD PD"}},B:4,C:"text-decoration styling",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-emphasis.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-emphasis.js
      index eb8b85ddf65eab..933139bdb1a6ee 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 NC"},B:{"1":"0 1 2 3 i j k l m r s t u v w x y z H","2":"C K L G M N O","164":"P Q R S T U V W X Y Z a b c d e f g h"},C:{"1":"0 1 2 3 TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB QC RC","322":"SB"},D:{"1":"0 1 2 3 i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 I J D E F A B C K L G M N O n o p","164":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h"},E:{"1":"E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC","164":"D UC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","164":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC","164":"6C 7C"},J:{"2":"D","164":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p ID JD","164":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B"},Q:{"164":"BC"},R:{"164":"KD"},S:{"1":"LD MD"}},B:4,C:"text-emphasis styling",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 i j k l m s t u v w x y z D","2":"C K L H M N O","164":"P Q R S T U V W X Y Z a b c d e f g h"},C:{"1":"0 1 2 3 4 5 6 VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB RC SC","322":"UB"},D:{"1":"0 1 2 3 4 5 6 i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q","164":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h"},E:{"1":"F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC","164":"E VC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","164":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC","164":"9C AD"},J:{"2":"E","164":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q LD MD","164":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B"},Q:{"164":"DC"},R:{"164":"ND"},S:{"1":"OD PD"}},B:4,C:"text-emphasis styling",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-overflow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-overflow.js
      index c1619271b4313c..0bc107c6590bd1 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":"NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","8":"4 OC 3B I J QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","33":"F bC cC dC eC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"q zB","33":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"CSS3 Text-overflow",D:true};
      +module.exports={A:{A:{"1":"J E F G A B","2":"PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","8":"7 QC 4B I J RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","33":"G dC eC fC gC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"r 0B","33":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"CSS3 Text-overflow",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-size-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-size-adjust.js
      index a9b017ce4b169c..505c7baec8ce15 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","258":"9"},E:{"2":"4 I J D E F A B C K L G SC 9B UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","258":"TC"},F:{"1":"QB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB RB bC cC dC eC yB LC fC zB"},G:{"2":"9B gC MC","33":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"33":"xB"},N:{"161":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS text-size-adjust",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","33":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","258":"BB"},E:{"2":"7 I J E F G A B C K L H TC BC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","258":"UC"},F:{"1":"SB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB TB dC eC fC gC zB NC hC 0B"},G:{"2":"BC iC OC","33":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"33":"D"},N:{"161":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"CSS text-size-adjust",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-stroke.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-stroke.js
      index c374df3addc1e2..277245764d14dc 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 NC"},B:{"2":"C K L","33":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","161":"G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB QC RC","161":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","450":"VB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"33":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"33":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","36":"9B"},H:{"2":"1C"},I:{"2":"3B","33":"I H 2C 3C 4C 5C MC 6C 7C"},J:{"33":"D A"},K:{"2":"A B C yB LC zB","33":"q"},L:{"33":"H"},M:{"161":"xB"},N:{"2":"A B"},O:{"33":"0B"},P:{"33":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"33":"BC"},R:{"33":"KD"},S:{"161":"LD MD"}},B:7,C:"CSS text-stroke and text-fill",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L","33":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","161":"H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB RC SC","161":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","450":"XB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"33":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"33":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","36":"BC"},H:{"2":"4C"},I:{"2":"4B","33":"I D 5C 6C 7C 8C OC 9C AD"},J:{"33":"E A"},K:{"2":"A B C zB NC 0B","33":"r"},L:{"33":"D"},M:{"161":"D"},N:{"2":"A B"},O:{"33":"1B"},P:{"33":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"33":"DC"},R:{"33":"ND"},S:{"161":"OD PD"}},B:7,C:"CSS text-stroke and text-fill",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textcontent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textcontent.js
      index add270b38fb157..0e618613e81de6 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","16":"F"},G:{"1":"E gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Node.textContent",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","16":"G"},G:{"1":"F iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Node.textContent",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textencoder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textencoder.js
      index b329bff2bedeaf..7b4acee43e462c 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M N O QC RC","132":"5"},D:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"TextEncoder & TextDecoder",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M N O RC SC","132":"8"},D:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"TextEncoder & TextDecoder",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-1.js
      index 61e1607e26b4df..6116afaabdc7d5 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 NC","66":"E F A"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB","2":"4 5 OC 3B I J D E F A B C K L G M N O n o p QC RC","66":"6","129":"nB oB pB qB rB q sB tB uB vB","388":"0 1 2 3 wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T","2":"4 5 I J D E F A B C K L G M N O n o","1540":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"D E F A B C K VC WC AC yB zB","2":"4 I J SC 9B TC UC","513":"L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB zB","2":"F B C bC cC dC eC yB LC fC","1540":"q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"1":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"1":"A","2":"D"},K:{"1":"q zB","2":"A B C yB LC"},L:{"1":"H"},M:{"129":"xB"},N:{"1":"B","66":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"TLS 1.1",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E PC","66":"F G A"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB","2":"7 8 QC 4B I J E F G A B C K L H M N O n o p RC SC","66":"q","129":"pB qB rB sB tB r uB vB wB xB","388":"0 1 2 3 4 5 6 yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T","2":"7 8 I J E F G A B C K L H M N O n o","1540":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"E F G A B C K WC XC CC zB 0B","2":"7 I J TC BC UC VC","513":"L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB 0B","2":"G B C dC eC fC gC zB NC hC","1540":"r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"1":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"1":"A","2":"E"},K:{"1":"r 0B","2":"A B C zB NC"},L:{"1":"D"},M:{"129":"D"},N:{"1":"B","66":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"TLS 1.1",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-2.js
      index edfed6201dee90..a36c849614d95b 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 NC","66":"E F A"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 OC 3B I J D E F A B C K L G M N O n o p QC RC","66":"7 8 9"},D:{"1":"0 1 2 3 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC"},F:{"1":"5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F G bC","66":"B C cC dC eC yB LC fC zB"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"1":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"1":"A","2":"D"},K:{"1":"q zB","2":"A B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","66":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"TLS 1.2",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E PC","66":"F G A"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 QC 4B I J E F G A B C K L H M N O n o p q RC SC","66":"9 AB BB"},D:{"1":"0 1 2 3 4 5 6 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC"},F:{"1":"8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G H dC","66":"B C eC fC gC zB NC hC 0B"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"1":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"1":"A","2":"E"},K:{"1":"r 0B","2":"A B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","66":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"TLS 1.2",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-3.js
      index 82de93bdbb2513..e9cefb7f1163fd 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB QC RC","132":"gB 5B hB","450":"YB ZB aB bB cB dB eB fB 4B"},D:{"1":"0 1 2 3 pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","706":"bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB"},E:{"1":"L G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB","1028":"K zB BC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC dC eC yB LC fC zB","706":"bB cB dB"},G:{"1":"sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:6,C:"TLS 1.3",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB RC SC","132":"iB 6B jB","450":"aB bB cB dB eB fB gB hB 5B"},D:{"1":"0 1 2 3 4 5 6 rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","706":"dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB"},E:{"1":"L H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB","1028":"K 0B DC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dC eC fC gC zB NC hC 0B","706":"dB eB fB"},G:{"1":"uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:6,C:"TLS 1.3",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/touch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/touch.js
      index 9dbefe892a33ce..c7147169b5696b 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 NC","8":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","578":"C K L G M N O"},C:{"1":"0 1 2 3 5 6 7 O n o p ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","4":"4 I J D E F A B C K L G M N","194":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},D:{"1":"0 1 2 3 6 7 8 9 p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n o"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"8":"A","260":"B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:2,C:"Touch events",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","8":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","578":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 8 9 O n o p q bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","4":"7 I J E F G A B C K L H M N","194":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},D:{"1":"0 1 2 3 4 5 6 9 p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n o"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A","260":"B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:2,C:"Touch events",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms2d.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms2d.js
      index 0b0a76a7f48ffe..942402fa27f027 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":"NC","8":"J D E","129":"A B","161":"F"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","129":"C K L G M"},C:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","33":"4 I J D E F A B C K L G QC RC"},D:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","33":"4 I J D E SC 9B TC UC VC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F bC cC","33":"5 B C G M N O n o p dC eC yB LC fC"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","33":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"33":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS3 2D Transforms",D:true};
      +module.exports={A:{A:{"2":"PC","8":"J E F","129":"A B","161":"G"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","129":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","33":"7 I J E F G A B C K L H RC SC"},D:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","33":"7 I J E F TC BC UC VC WC"},F:{"1":"9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G dC eC","33":"8 B C H M N O n o p fC gC zB NC hC"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","33":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"33":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS3 2D Transforms",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms3d.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms3d.js
      index 82af1a54417bae..0bc735f7509d23 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 NC","132":"A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F QC RC","33":"A B C K L G"},D:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B","33":"5 6 7 8 9 C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B","33":"4 I J D E TC UC VC","257":"F A B C K L G WC AC yB zB BC XC YC CC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 G M N O n o p"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","33":"E 9B gC MC hC iC jC kC","257":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"1":"H","2":"2C 3C 4C","33":"3B I 5C MC 6C 7C"},J:{"33":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:5,C:"CSS3 3D Transforms",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G RC SC","33":"A B C K L H"},D:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B","33":"8 9 C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC","33":"7 I J E F UC VC WC","257":"G A B C K L H XC CC zB 0B DC YC ZC EC"},F:{"1":"9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 H M N O n o p"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","33":"F BC iC OC jC kC lC mC","257":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"1":"D","2":"5C 6C 7C","33":"4B I 8C OC 9C AD"},J:{"33":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:5,C:"CSS3 3D Transforms",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/trusted-types.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/trusted-types.js
      index cc4026c270fea3..0ebd9d9a03425e 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 NC"},B:{"1":"0 1 2 3 S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"Trusted Types for DOM manipulation",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"Trusted Types for DOM manipulation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ttf.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ttf.js
      index aedaada8bd680c..124a8c99430e79 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 NC","132":"F A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m cC dC eC yB LC fC zB","2":"F bC"},G:{"1":"E MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC"},H:{"2":"1C"},I:{"1":"3B I H 3C 4C 5C MC 6C 7C","2":"2C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"TTF/OTF - TrueType and OpenType font support",D:true};
      +module.exports={A:{A:{"2":"J E F PC","132":"G A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m eC fC gC zB NC hC 0B","2":"G dC"},G:{"1":"F OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC"},H:{"2":"4C"},I:{"1":"4B I D 6C 7C 8C OC 9C AD","2":"5C"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"TTF/OTF - TrueType and OpenType font support",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/typedarrays.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/typedarrays.js
      index 6644d709d8c005..537d5fb51dcaea 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 NC","132":"A"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B","260":"TC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F B bC cC dC eC yB LC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC","260":"MC"},H:{"1":"1C"},I:{"1":"I H 5C MC 6C 7C","2":"3B 2C 3C 4C"},J:{"1":"A","2":"D"},K:{"1":"C q zB","2":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Typed Arrays",D:true};
      +module.exports={A:{A:{"1":"B","2":"J E F G PC","132":"A"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC","260":"UC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G B dC eC fC gC zB NC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC","260":"OC"},H:{"1":"4C"},I:{"1":"I D 8C OC 9C AD","2":"4B 5C 6C 7C"},J:{"1":"A","2":"E"},K:{"1":"C r 0B","2":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Typed Arrays",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/u2f.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/u2f.js
      index 634968fed364f3..c14c91a16567b3 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 NC"},B:{"2":"0 1 2 3 C K L G M N O t u v w x y z H","513":"P Q R S T U V W X Y Z a b c d e f g h i j k l m r s"},C:{"1":"mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y","2":"1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB H xB 7B 8B PC QC RC","322":"0 UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB z"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB t u v w x y z H xB 7B 8B","130":"LB MB NB","513":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g","578":"h i j k l m r s"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB zB"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB OB bC cC dC eC yB LC fC zB","513":"NB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"1":"MD","322":"LD"}},B:7,C:"FIDO U2F API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O u v w x y z D","513":"P Q R S T U V W X Y Z a b c d e f g h i j k l m s t"},C:{"1":"oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","2":"2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB D 8B 9B AC RC SC","322":"0 1 WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB u v w x y z D 8B 9B AC","130":"NB OB PB","513":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g","578":"h i j k l m s t"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB 0B"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB QB dC eC fC gC zB NC hC 0B","513":"PB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"1":"PD","322":"OD"}},B:7,C:"FIDO U2F API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js
      index 7a6851ae237324..c0c58b9af59c00 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB QC RC"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB"},G:{"1":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC","16":"pC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:1,C:"unhandledrejection/rejectionhandled events",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB RC SC"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B"},G:{"1":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC","16":"rC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:1,C:"unhandledrejection/rejectionhandled events",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js
      index dd1ff344b99173..d91328d4c302b0 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 NC"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M"},C:{"1":"0 1 2 3 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB QC RC"},D:{"1":"0 1 2 3 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Upgrade Insecure Requests",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RC SC"},D:{"1":"0 1 2 3 4 5 6 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Upgrade Insecure Requests",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js
      index c4febe2ac54b3f..8f37a8d1a53c48 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 NC"},B:{"1":"0 1 2 3 S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z 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 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q","66":"sB tB uB vB wB P Q"},E:{"1":"EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B"},F:{"1":"nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB bC cC dC eC yB LC fC zB","66":"lB mB"},G:{"1":"EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p FD GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"URL Scroll-To-Text Fragment",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O","66":"P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r","66":"uB vB wB xB yB P Q"},E:{"1":"GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B"},F:{"1":"pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB dC eC fC gC zB NC hC 0B","66":"nB oB"},G:{"1":"GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q ID JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"URL Scroll-To-Text Fragment",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url.js
      index 7e367cb3003b55..ea1f4c9773b3b2 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 OC 3B I J D E F A B C K L G M N O n o p QC RC"},D:{"1":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O n o p","130":"6 7 8 9 AB BB CB DB EB"},E:{"1":"E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC UC","130":"D"},F:{"1":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","130":"G M N O"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC","130":"jC"},H:{"2":"1C"},I:{"1":"H 7C","2":"3B I 2C 3C 4C 5C MC","130":"6C"},J:{"2":"D","130":"A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"URL API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB RC SC"},D:{"1":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O n o p","130":"9 q AB BB CB DB EB FB GB"},E:{"1":"F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC VC","130":"E"},F:{"1":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","130":"H M N O"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC","130":"lC"},H:{"2":"4C"},I:{"1":"D AD","2":"4B I 5C 6C 7C 8C OC","130":"9C"},J:{"2":"E","130":"A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"URL API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/urlsearchparams.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/urlsearchparams.js
      index b06f0d296e4248..56f335eef0e170 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 NC"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M"},C:{"1":"0 1 2 3 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC","132":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"B C K L G AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"URLSearchParams",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M"},C:{"1":"0 1 2 3 4 5 6 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC","132":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"B C K L H CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B"},G:{"1":"qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"URLSearchParams",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/use-strict.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/use-strict.js
      index d162de457fab36..e30aacb20521af 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","132":"4 TC"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F B bC cC dC eC yB LC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"1":"1C"},I:{"1":"3B I H 5C MC 6C 7C","2":"2C 3C 4C"},J:{"1":"D A"},K:{"1":"C q LC zB","2":"A B yB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"ECMAScript 5 Strict Mode",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","132":"7 UC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G B dC eC fC gC zB NC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"1":"4C"},I:{"1":"4B I D 8C OC 9C AD","2":"5C 6C 7C"},J:{"1":"E A"},K:{"1":"C r NC 0B","2":"A B zB"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"ECMAScript 5 Strict Mode",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-select-none.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-select-none.js
      index abd8d61e839f18..6463a297853a6d 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 NC","33":"A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","33":"C K L G M N O"},C:{"1":"0 1 2 3 oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","33":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB QC RC"},D:{"1":"0 1 2 3 bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","33":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"aC","33":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","33":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"33":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","33":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"33":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"33":"A B"},O:{"1":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","33":"I 8C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","33":"LD"}},B:5,C:"CSS user-select: none",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","33":"A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","33":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB RC SC"},D:{"1":"0 1 2 3 4 5 6 dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","33":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"cC","33":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","33":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},G:{"33":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","33":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"33":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"33":"A B"},O:{"1":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","33":"I BD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","33":"OD"}},B:5,C:"CSS user-select: none",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-timing.js
      index 131512c0fdb735..31ada559dc6f64 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB QC RC"},D:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 I J D E F A B C K L G M N O n o p"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"User Timing API",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB RC SC"},D:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"User Timing API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/variable-fonts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/variable-fonts.js
      index 6ebbab0662febd..668b5fa863e88b 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 NC"},B:{"1":"0 1 2 3 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB QC RC","4609":"hB iB jB kB lB mB nB oB pB","4674":"5B","5698":"gB","7490":"aB bB cB dB eB","7746":"fB 4B","8705":"0 1 2 3 qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","4097":"lB","4290":"4B gB 5B","6148":"hB iB jB kB"},E:{"1":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","4609":"B C yB zB","8193":"K L BC XC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB bC cC dC eC yB LC fC zB","4097":"aB","6148":"WB XB YB ZB"},G:{"1":"tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC","4097":"pC qC rC sC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"4097":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"2":"I 8C 9C AD","4097":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:5,C:"Variable fonts",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB RC SC","4609":"jB kB lB mB nB oB pB qB rB","4674":"6B","5698":"iB","7490":"cB dB eB fB gB","7746":"hB 5B","8705":"0 1 2 3 4 5 6 sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","4097":"nB","4290":"5B iB 6B","6148":"jB kB lB mB"},E:{"1":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC","4609":"B C zB 0B","8193":"K L DC YC"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB dC eC fC gC zB NC hC 0B","4097":"cB","6148":"YB ZB aB bB"},G:{"1":"vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC","4097":"rC sC tC uC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"4097":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"2":"I BD CD DD","4097":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:5,C:"Variable fonts",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vector-effect.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vector-effect.js
      index 06266288104cbb..d24350261b4d01 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L QC RC"},D:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J D E F A B C K L"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","2":"F B bC cC dC eC yB LC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC"},H:{"1":"1C"},I:{"1":"H 6C 7C","16":"3B I 2C 3C 4C 5C MC"},J:{"16":"D A"},K:{"1":"C q zB","2":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"SVG vector-effect: non-scaling-stroke",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L RC SC"},D:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J E F G A B C K L"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","2":"G B dC eC fC gC zB NC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC"},H:{"1":"4C"},I:{"1":"D 9C AD","16":"4B I 5C 6C 7C 8C OC"},J:{"16":"E A"},K:{"1":"C r 0B","2":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"SVG vector-effect: non-scaling-stroke",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vibration.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vibration.js
      index 775783a47ca5e5..10965fff07fac8 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A QC RC","33":"B C K L G"},D:{"1":"0 1 2 3 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C G M bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"Vibration API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A RC SC","33":"B C K L H"},D:{"1":"0 1 2 3 4 5 6 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C H M dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"Vibration API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/video.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/video.js
      index bf81bb337769f2..3d6ac53fda513e 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","260":"4 5 I J D E F A B C K L G M N O QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A TC UC VC WC AC","2":"SC 9B","513":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC","513":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","132":"2C 3C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Video element",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","260":"7 8 I J E F G A B C K L H M N O RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A UC VC WC XC CC","2":"TC BC","513":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC","513":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","132":"5C 6C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Video element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/videotracks.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/videotracks.js
      index 050b1d1437cdb3..ebf247d454cccf 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 NC"},B:{"1":"C K L G M N O","322":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB QC RC","194":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","322":"0 1 2 3 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J SC 9B TC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB bC cC dC eC yB LC fC zB","322":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","322":"q"},L:{"322":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"322":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"322":"BC"},R:{"322":"KD"},S:{"194":"LD MD"}},B:1,C:"Video Tracks",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"C K L H M N O","322":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB RC SC","194":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","322":"0 1 2 3 4 5 6 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J TC BC UC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB dC eC fC gC zB NC hC 0B","322":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","322":"r"},L:{"322":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"322":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"322":"DC"},R:{"322":"ND"},S:{"194":"OD PD"}},B:1,C:"Video Tracks",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/view-transitions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/view-transitions.js
      index 36d03238ac34f4..a2b59f83e8e36f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/view-transitions.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/view-transitions.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"1":"0 1 2 3 y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"View Transitions API (single-document)",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"q","2":"I n o p BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"View Transitions API (single-document)",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-unit-variants.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-unit-variants.js
      index 41425f201a2250..8e2ed04e1246fb 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 NC"},B:{"1":"0 1 2 3 v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r","194":"s t u"},C:{"1":"0 1 2 3 k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j QC RC"},D:{"1":"0 1 2 3 v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i","194":"j k l m r s t u"},E:{"1":"DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC"},F:{"1":"d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z bC cC dC eC yB LC fC zB","194":"a b c"},G:{"1":"DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"o p","2":"I n 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:5,C:"Small, Large, and Dynamic viewport units",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s","194":"t u v"},C:{"1":"0 1 2 3 4 5 6 k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j RC SC"},D:{"1":"0 1 2 3 4 5 6 w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i","194":"j k l m s t u v"},E:{"1":"FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC"},F:{"1":"d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z dC eC fC gC zB NC hC 0B","194":"a b c"},G:{"1":"FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"o p q","2":"I n BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:5,C:"Small, Large, and Dynamic viewport units",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js
      index 4654e11b85cb53..407a7a8641523a 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 NC","132":"F","260":"A B"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","260":"C K L G"},C:{"1":"0 1 2 3 5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L G M N O QC RC"},D:{"1":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 I J D E F A B C K L G M N O","260":"6 7 8 n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC","260":"J"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC","516":"jC","772":"iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"260":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"Viewport units: vw, vh, vmin, vmax",D:true};
      +module.exports={A:{A:{"2":"J E F PC","132":"G","260":"A B"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","260":"C K L H"},C:{"1":"0 1 2 3 4 5 6 8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L H M N O RC SC"},D:{"1":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 I J E F G A B C K L H M N O","260":"9 n o p q AB"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC","260":"J"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC","516":"lC","772":"kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"260":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"Viewport units: vw, vh, vmin, vmax",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wai-aria.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wai-aria.js
      index 47e9183005ee20..f0e43a138c2b2b 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 NC","4":"E F A B"},B:{"4":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"SC 9B","4":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F","4":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"4":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"4":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC","4":"H 6C 7C"},J:{"2":"D A"},K:{"4":"A B C q yB LC zB"},L:{"4":"H"},M:{"4":"xB"},N:{"4":"A B"},O:{"4":"0B"},P:{"4":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"4":"BC"},R:{"4":"KD"},S:{"4":"LD MD"}},B:2,C:"WAI-ARIA Accessibility features",D:true};
      +module.exports={A:{A:{"2":"J E PC","4":"F G A B"},B:{"4":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"4":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"TC BC","4":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G","4":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"4":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"4":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC","4":"D 9C AD"},J:{"2":"E A"},K:{"4":"A B C r zB NC 0B"},L:{"4":"D"},M:{"4":"D"},N:{"4":"A B"},O:{"4":"1B"},P:{"4":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"4":"DC"},R:{"4":"ND"},S:{"4":"OD PD"}},B:2,C:"WAI-ARIA Accessibility features",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wake-lock.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wake-lock.js
      index fea80a5c4c4dea..899855f9c3ccad 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 NC"},B:{"1":"0 1 2 3 Z a b c d e f g h i j k l m r s t u v w x y z 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 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB","194":"qB rB q sB tB uB vB wB P Q R S T"},E:{"1":"HC IC JC 2B KC aC","2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC"},F:{"1":"q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB bC cC dC eC yB LC fC zB","194":"fB gB hB iB jB kB lB mB nB oB pB qB rB"},G:{"1":"HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p GD HD 1B 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:4,C:"Screen Wake Lock API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H 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 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB","194":"sB tB r uB vB wB xB yB P Q R S T"},E:{"1":"JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC"},F:{"1":"r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB dC eC fC gC zB NC hC 0B","194":"hB iB jB kB lB mB nB oB pB qB rB sB tB"},G:{"1":"JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q JD KD 2B 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:4,C:"Screen Wake Lock API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm.js
      index 583f101950ca65..24ec7ba590741f 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 NC"},B:{"1":"0 1 2 3 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L","578":"G"},C:{"1":"0 1 2 3 aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB QC RC","194":"UB VB WB XB YB","1025":"ZB"},D:{"1":"0 1 2 3 eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","322":"YB ZB aB bB cB dB"},E:{"1":"B C K L G yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB bC cC dC eC yB LC fC zB","322":"LB MB NB OB PB QB"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","194":"LD"}},B:6,C:"WebAssembly",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L","578":"H"},C:{"1":"0 1 2 3 4 5 6 cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB RC SC","194":"WB XB YB ZB aB","1025":"bB"},D:{"1":"0 1 2 3 4 5 6 gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","322":"aB bB cB dB eB fB"},E:{"1":"B C K L H zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB dC eC fC gC zB NC hC 0B","322":"NB OB PB QB RB SB"},G:{"1":"rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","194":"OD"}},B:6,C:"WebAssembly",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wav.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wav.js
      index 34ccfd6e413198..e2eb44195f2e09 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC 3B"},D:{"1":"0 1 2 3 5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m dC eC yB LC fC zB","2":"F bC cC"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","16":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"Wav audio format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m fC gC zB NC hC 0B","2":"G dC eC"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","16":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"Wav audio format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wbr-element.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wbr-element.js
      index 256980d60d5a70..87bc34b62f7127 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 NC","2":"E F A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"SC"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","16":"F"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC"},H:{"1":"1C"},I:{"1":"3B I H 4C 5C MC 6C 7C","16":"2C 3C"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"wbr (word break opportunity) element",D:true};
      +module.exports={A:{A:{"1":"J E PC","2":"F G A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"TC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","16":"G"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC"},H:{"1":"4C"},I:{"1":"4B I D 7C 8C OC 9C AD","16":"5C 6C"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"wbr (word break opportunity) element",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-animation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-animation.js
      index 2bc73294c067b4..c3f9e4ce63fdf9 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 NC"},B:{"1":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O","260":"P Q R S"},C:{"1":"0 1 2 3 R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB QC RC","260":"4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB","516":"UB VB WB XB YB ZB aB bB cB dB eB fB","580":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB","2049":"tB uB vB wB P Q"},D:{"1":"0 1 2 3 T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB","132":"JB KB LB","260":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S"},E:{"1":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC AC","1090":"B C K yB zB","2049":"L BC XC"},F:{"1":"qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n o p bC cC dC eC yB LC fC zB","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 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC","1090":"pC qC rC sC tC uC vC","2049":"wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"260":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"260":"BC"},R:{"1":"KD"},S:{"1":"MD","516":"LD"}},B:5,C:"Web Animations API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O","260":"P Q R S"},C:{"1":"0 1 2 3 4 5 6 R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB RC SC","260":"5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB","516":"WB XB YB ZB aB bB cB dB eB fB gB hB","580":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB","2049":"vB wB xB yB P Q"},D:{"1":"0 1 2 3 4 5 6 T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB","132":"LB MB NB","260":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S"},E:{"1":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC CC","1090":"B C K zB 0B","2049":"L DC YC"},F:{"1":"sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p dC eC fC gC zB NC hC 0B","132":"9 q AB","260":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC","1090":"rC sC tC uC vC wC xC","2049":"yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"260":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"260":"DC"},R:{"1":"ND"},S:{"1":"PD","516":"OD"}},B:5,C:"Web Animations API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-app-manifest.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-app-manifest.js
      index 1a019d74007f33..db5d170a78029e 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","578":"uB vB wB P Q R 6B S T U"},D:{"1":"0 1 2 3 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC","4":"2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC","4":"HC IC JC 2B KC","260":"qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:5,C:"Add to home screen (A2HS)",D:false};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","578":"wB xB yB P Q R 7B S T U"},D:{"1":"0 1 2 3 4 5 6 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC","4":"3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC","4":"JC KC 3C 3B LC MC","260":"sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:5,C:"Add to home screen (A2HS)",D:false};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-bluetooth.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-bluetooth.js
      index 601e4d4debe3c1..031da2cf2cca7a 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 NC"},B:{"2":"C K L G M N O","1025":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"SB TB UB VB WB XB YB ZB","706":"aB bB cB","1025":"0 1 2 3 dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB bC cC dC eC yB LC fC zB","450":"JB KB LB MB","706":"NB OB PB","1025":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C 7C","1025":"H"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","1025":"q"},L:{"1025":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1025":"0B"},P:{"1":"n o p 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C"},Q:{"2":"BC"},R:{"1025":"KD"},S:{"2":"LD MD"}},B:7,C:"Web Bluetooth",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","1025":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"UB VB WB XB YB ZB aB bB","706":"cB dB eB","1025":"0 1 2 3 4 5 6 fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB dC eC fC gC zB NC hC 0B","450":"LB MB NB OB","706":"PB QB RB","1025":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C AD","1025":"D"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","1025":"r"},L:{"1025":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1025":"1B"},P:{"1":"n o p q CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD"},Q:{"2":"DC"},R:{"1025":"ND"},S:{"2":"OD PD"}},B:7,C:"Web Bluetooth",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-serial.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-serial.js
      index 80c6decbd7e180..1f3880a68e5ece 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 NC"},B:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z 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 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB","66":"wB P Q R S T U V W X"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB bC cC dC eC yB LC fC zB","66":"kB lB mB nB oB pB qB rB q sB tB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"Web Serial API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H 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 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB","66":"yB P Q R S T U V W X"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB dC eC fC gC zB NC hC 0B","66":"mB nB oB pB qB rB sB tB r uB vB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"Web Serial API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-share.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-share.js
      index 5d16c1c80dacdf..ad10ebdd1c6db4 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 NC"},B:{"1":"0 1 2 3 e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O P Q","516":"R S T U V W X Y Z a b c d"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"4 8 9 I J D E F A B C K L G M N AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X","130":"5 6 7 O n o p","1028":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"L G XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB","2049":"K zB BC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC","2049":"sC tC uC vC wC"},H:{"2":"1C"},I:{"2":"3B I 2C 3C 4C 5C MC 6C","258":"H 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I","258":"8C 9C AD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:4,C:"Web Share API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 e f g h i j k l m s t u v w x y z D","2":"C K L H M N O P Q","516":"R S T U V W X Y Z a b c d"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"7 I J E F G A B C K L H M N AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X","130":"8 9 O n o p q","1028":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"L H YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB","2049":"K 0B DC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC","2049":"uC vC wC xC yC"},H:{"2":"4C"},I:{"2":"4B I 5C 6C 7C 8C OC 9C","258":"D AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I","258":"BD CD DD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:4,C:"Web Share API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webauthn.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webauthn.js
      index ee60cc6d87b55a..bff06b14b2606d 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 NC"},B:{"1":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C","226":"K L G M N"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B QC RC","4100":"1 2 3 H xB 7B 8B PC","5124":"0 gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z"},D:{"1":"0 1 2 3 mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB"},E:{"1":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB","322":"zB"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC dC eC yB LC fC zB"},G:{"1":"yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC","578":"uC","2052":"xC","3076":"vC wC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1028":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2":"LD"}},B:2,C:"Web Authentication API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C","226":"K L H M N"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B RC SC","4100":"2 3 4 5 6 D 8B 9B AC","5124":"0 1 iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB"},E:{"1":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C TC BC UC VC WC XC CC zB","322":"0B"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dC eC fC gC zB NC hC 0B"},G:{"1":"0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC","578":"wC","2052":"zC","3076":"xC yC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1028":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2":"OD"}},B:2,C:"Web Authentication API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js
      index 98b3e1fd2a465b..de61033378ed1a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"1":"0 1 2 3 d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC","132":"HC IC JC 2B KC aC"},F:{"1":"Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC","132":"HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p 2B ID JD","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:5,C:"WebCodecs API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC","132":"JC KC bC 3B LC MC cC"},F:{"1":"Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC","132":"JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q 3B LD MD","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:5,C:"WebCodecs API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl.js
      index e6c35ae3b11617..b070fe1a1f8a65 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":"NC","8":"J D E F A","129":"B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","129":"C K L G M N O"},C:{"1":"0 1 2 3 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","129":"4 5 6 I J D E F A B C K L G M N O n o p"},D:{"1":"0 1 2 3 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D","129":"5 6 7 8 9 E F A B C K L G M N O n o p AB BB CB DB EB FB"},E:{"1":"E F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B","129":"J D TC UC VC"},F:{"1":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B bC cC dC eC yB LC fC","129":"C G M N O zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC jC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"1":"A","2":"D"},K:{"1":"C q zB","2":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"8":"A","129":"B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","129":"LD"}},B:6,C:"WebGL - 3D Canvas graphics",D:true};
      +module.exports={A:{A:{"2":"PC","8":"J E F G A","129":"B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","129":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","129":"7 8 I J E F G A B C K L H M N O n o p q"},D:{"1":"0 1 2 3 4 5 6 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E","129":"8 9 F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB"},E:{"1":"F G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC","129":"J E UC VC WC"},F:{"1":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B dC eC fC gC zB NC hC","129":"C H M N O 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC lC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"1":"A","2":"E"},K:{"1":"C r 0B","2":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A","129":"B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","129":"OD"}},B:6,C:"WebGL - 3D Canvas graphics",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl2.js
      index 3c0dce87c324fa..f52187bebe6e29 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 OC 3B I J D E F A B C K L G M N O n o p QC RC","194":"PB QB RB","450":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","2242":"SB TB UB VB WB XB"},D:{"1":"0 1 2 3 dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","578":"QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"G YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A SC 9B TC UC VC WC","1090":"B C K L AC yB zB BC XC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB bC cC dC eC yB LC fC zB"},G:{"1":"zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC","1090":"rC sC tC uC vC wC xC yC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p AD BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","2242":"LD"}},B:6,C:"WebGL 2.0",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q RC SC","194":"RB SB TB","450":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","2242":"UB VB WB XB YB ZB"},D:{"1":"0 1 2 3 4 5 6 fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","578":"SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"H ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A TC BC UC VC WC XC","1090":"B C K L CC zB 0B DC YC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB dC eC fC gC zB NC hC 0B"},G:{"1":"1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC","1090":"tC uC vC wC xC yC zC 0C"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q DD ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","2242":"OD"}},B:6,C:"WebGL 2.0",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgpu.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgpu.js
      index 75620d88557313..1ba1d38a312aea 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 NC"},B:{"1":"0 1 2 3 H","2":"C K L G M N O P","578":"Q R S T U V W X Y Z a b c","1602":"d e f g h i j k l m r s t u v w x y z"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB QC RC","194":"0 1 2 3 iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P","578":"Q R S T U V W X Y Z a b c","1602":"d e f g h i j k l m r s t u v w x y z","2049":"0 1 2 3 H xB 7B 8B"},E:{"2":"4 I J D E F A B G SC 9B TC UC VC WC AC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","322":"C K L yB zB BC XC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB bC cC dC eC yB LC fC zB","578":"q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h","2049":"i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"194":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD","194":"MD"}},B:5,C:"WebGPU",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"1 2 3 4 5 6 D","2":"C K L H M N O P","578":"Q R S T U V W X Y Z a b c","1602":"0 d e f g h i j k l m s t u v w x y z"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB RC SC","194":"0 1 2 3 4 5 6 kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P","578":"Q R S T U V W X Y Z a b c","1602":"0 d e f g h i j k l m s t u v w x y z","2049":"1 2 3 4 5 6 D 8B 9B AC"},E:{"2":"7 I J E F G A B H TC BC UC VC WC XC CC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","322":"C K L zB 0B DC YC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB dC eC fC gC zB NC hC 0B","578":"r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h","2049":"i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"194":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD","194":"PD"}},B:5,C:"WebGPU",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webhid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webhid.js
      index ec901525b63036..88c4f135b3c1b3 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 NC"},B:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z 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 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB","66":"wB P Q R S T U V W X"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB bC cC dC eC yB LC fC zB","66":"lB mB nB oB pB qB rB q sB tB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"WebHID API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H 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 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB","66":"yB P Q R S T U V W X"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB dC eC fC gC zB NC hC 0B","66":"nB oB pB qB rB sB tB r uB vB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"WebHID API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webkit-user-drag.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webkit-user-drag.js
      index ba707c3a4a55f7..b41fb381c819ca 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 NC"},B:{"2":"C K L G M N O","132":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"16":"4 I J D E F A B C K L G","132":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"F B C bC cC dC eC yB LC fC zB","132":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"CSS -webkit-user-drag property",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","132":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"16":"7 I J E F G A B C K L H","132":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"G B C dC eC fC gC zB NC hC 0B","132":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"CSS -webkit-user-drag property",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webm.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webm.js
      index d88c35923c47a1..43d54e912c532a 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 NC","520":"F A B"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","8":"C K","388":"L G M N O"},C:{"1":"0 1 2 3 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","132":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB"},D:{"1":"0 1 2 3 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I","132":"5 6 7 J D E F A B C K L G M N O n o p"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"SC","8":"4 I 9B TC","520":"J D E F A B C UC VC WC AC yB","1028":"K zB BC","7172":"L","8196":"G XC YC CC DC 0B ZC"},F:{"1":"5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F bC cC dC","132":"B C G eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC","1028":"sC tC uC vC wC","3076":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"2C 3C","132":"3B I 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"8":"A B"},O:{"1":"0B"},P:{"1":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD","132":"I"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:6,C:"WebM video format",D:true};
      +module.exports={A:{A:{"2":"J E F PC","520":"G A B"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","8":"C K","388":"L H M N O"},C:{"1":"0 1 2 3 4 5 6 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","132":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB"},D:{"1":"0 1 2 3 4 5 6 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I","132":"8 9 J E F G A B C K L H M N O n o p q"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"TC","8":"7 I BC UC","520":"J E F G A B C VC WC XC CC zB","1028":"K 0B DC","7172":"L","8196":"H YC ZC EC FC 1B aC"},F:{"1":"8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G dC eC fC","132":"B C H gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC","1028":"uC vC wC xC yC","3076":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"5C 6C","132":"4B I 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"8":"A B"},O:{"1":"1B"},P:{"1":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD","132":"I"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:6,C:"WebM video format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webnfc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webnfc.js
      index 1276299ddf14fc..eb6651a538ab8d 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 NC"},B:{"2":"0 1 2 3 C K L G M N O P Y Z a b c d e f g h i j k l m r s t u v w x y z H","450":"Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","450":"Q R S T U V W X"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","450":"mB nB oB pB qB rB q sB tB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"257":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"Web NFC",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L H M N O P Y Z a b c d e f g h i j k l m s t u v w x y z D","450":"Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","450":"Q R S T U V W X"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","450":"oB pB qB rB sB tB r uB vB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"257":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"Web NFC",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webp.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webp.js
      index ece14f79a0e812..ccf754dec12c63 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 NC"},B:{"1":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N"},C:{"1":"0 1 2 3 kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","8":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB"},D:{"1":"0 1 2 3 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I","8":"J D E","132":"5 F A B C K L G M N O n o p","260":"6 7 8 9 AB BB CB DB EB"},E:{"1":"1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F A B C K SC 9B TC UC VC WC AC yB zB BC","516":"L G XC YC CC DC 0B ZC"},F:{"1":"5 6 7 8 9 n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F bC cC dC","8":"B eC","132":"yB LC fC","260":"C G M N O zB"},G:{"1":"xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC"},H:{"1":"1C"},I:{"1":"H MC 6C 7C","2":"3B 2C 3C 4C","132":"I 5C"},J:{"2":"D A"},K:{"1":"C q yB LC zB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","8":"LD"}},B:6,C:"WebP image format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N"},C:{"1":"0 1 2 3 4 5 6 mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","8":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB"},D:{"1":"0 1 2 3 4 5 6 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I","8":"J E F","132":"8 G A B C K L H M N O n o p","260":"9 q AB BB CB DB EB FB GB"},E:{"1":"2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G A B C K TC BC UC VC WC XC CC zB 0B DC","516":"L H YC ZC EC FC 1B aC"},F:{"1":"8 9 n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G dC eC fC","8":"B gC","132":"zB NC hC","260":"C H M N O 0B"},G:{"1":"zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC"},H:{"1":"4C"},I:{"1":"D OC 9C AD","2":"4B 5C 6C 7C","132":"I 8C"},J:{"2":"E A"},K:{"1":"C r zB NC 0B","2":"A","132":"B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","8":"OD"}},B:6,C:"WebP image format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js
      index 6f1af5581d3b29..e63b3f9e803b71 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B QC RC","132":"4 I","292":"J D E F A"},D:{"1":"0 1 2 3 5 6 7 8 9 M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 I J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","132":"4 TC","260":"J UC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F bC cC dC eC","132":"B C yB LC fC"},G:{"1":"E iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC","132":"MC hC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","129":"D"},K:{"1":"q zB","2":"A","132":"B C yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Web Sockets",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B RC SC","132":"7 I","292":"J E F G A"},D:{"1":"0 1 2 3 4 5 6 8 9 M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 I J E F G A B C K L","260":"H"},E:{"1":"E F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","132":"7 UC","260":"J VC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G dC eC fC gC","132":"B C zB NC hC"},G:{"1":"F kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC","132":"OC jC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","129":"E"},K:{"1":"r 0B","2":"A","132":"B C zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Web Sockets",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js
      index 80983dbe2fd896..e9ed8cff25631f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"1":"0 1 2 3 h i j k l m r s t u v w x y z H","2":"C K L G M N O P Q R S T U V W X Y Z a b c d e f g"},C:{"1":"1 2 3 H xB 7B 8B PC","2":"0 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z QC RC"},D:{"1":"0 1 2 3 g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z e f","66":"a b c d"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p ID JD","2":"I 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:5,C:"WebTransport",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 h i j k l m s t u v w x y z D","2":"C K L H M N O P Q R S T U V W X Y Z a b c d e f g"},C:{"1":"2 3 4 5 6 D 8B 9B AC","2":"0 1 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z RC SC"},D:{"1":"0 1 2 3 4 5 6 g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z e f","66":"a b c d"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q LD MD","2":"I BD CD DD ED FD CC GD HD ID JD KD 2B 3B"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:5,C:"WebTransport",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js
      index a0a968d1213c8a..95bc1255c001e2 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","66":"bB cB dB eB fB 4B gB"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB bC cC dC eC yB LC fC zB","66":"OB PB QB RB SB TB UB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"n o p BD CD AC DD ED FD GD HD 1B 2B ID JD","2":"I 8C 9C AD"},Q:{"2":"BC"},R:{"1":"KD"},S:{"2":"LD MD"}},B:7,C:"WebUSB",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","66":"dB eB fB gB hB 5B iB"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB dC eC fC gC zB NC hC 0B","66":"QB RB SB TB UB VB WB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"n o p q ED FD CC GD HD ID JD KD 2B 3B LD MD","2":"I BD CD DD"},Q:{"2":"DC"},R:{"1":"ND"},S:{"2":"OD PD"}},B:7,C:"WebUSB",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvr.js
      index b56dceff581bb3..9c74edd15b45c6 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 NC"},B:{"2":"0 1 2 3 C K L Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","66":"P","257":"G M N O"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB QC RC","129":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","194":"bB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","66":"eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","66":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"513":"I","516":"n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:7,C:"WebVR API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 6 C K L Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","66":"P","257":"H M N O"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB RC SC","129":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","194":"dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","66":"gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","66":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"513":"I","516":"n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:7,C:"WebVR API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvtt.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvtt.js
      index 7210b2cc6d5ee2..222820ee50a487 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 OC 3B I J D E F A B C K L G M N O n o p QC RC","66":"7 8 9 AB BB CB DB","129":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","257":"0 1 2 3 cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"1":"0 1 2 3 5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 I J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC hC iC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","2":"D"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"B","2":"A"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"129":"LD MD"}},B:4,C:"WebVTT - Web Video Text Tracks",D:true};
      +module.exports={A:{A:{"1":"A B","2":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 QC 4B I J E F G A B C K L H M N O n o p q RC SC","66":"9 AB BB CB DB EB FB","129":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","257":"0 1 2 3 4 5 6 eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"1":"0 1 2 3 4 5 6 8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 I J E F G A B C K L H M N"},E:{"1":"J E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC jC kC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","2":"E"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"B","2":"A"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"129":"OD PD"}},B:4,C:"WebVTT - Web Video Text Tracks",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webworkers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webworkers.js
      index d21d5c375ad74b..31a12432eedf72 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":"NC","8":"J D E F"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","8":"OC 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","8":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m eC yB LC fC zB","2":"F bC","8":"cC dC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"1":"H 2C 6C 7C","2":"3B I 3C 4C 5C MC"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","8":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Web Workers",D:true};
      +module.exports={A:{A:{"1":"A B","2":"PC","8":"J E F G"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","8":"QC 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","8":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m gC zB NC hC 0B","2":"G dC","8":"eC fC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"1":"D 5C 9C AD","2":"4B I 6C 7C 8C OC"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","8":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Web Workers",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webxr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webxr.js
      index 4f7c834358fc66..d2c7c70b276f5f 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 NC"},B:{"2":"C K L G M N O","132":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB QC RC","322":"0 1 2 3 vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC"},D:{"2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB","66":"kB lB mB nB oB pB qB rB q sB tB uB vB wB","132":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"2":"4 I J D E F A B C SC 9B TC UC VC WC AC yB zB","578":"K L G BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB bC cC dC eC yB LC fC zB","66":"ZB aB bB cB dB eB fB gB hB iB jB kB","132":"lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C yB LC zB","132":"q"},L:{"132":"H"},M:{"322":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I 8C 9C AD BD CD AC DD","132":"n o p ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD","322":"MD"}},B:4,C:"WebXR Device API",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"C K L H M N O","132":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB RC SC","322":"0 1 2 3 4 5 6 xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},D:{"2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB","66":"mB nB oB pB qB rB sB tB r uB vB wB xB yB","132":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"2":"7 I J E F G A B C TC BC UC VC WC XC CC zB 0B","578":"K L H DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB dC eC fC gC zB NC hC 0B","66":"bB cB dB eB fB gB hB iB jB kB lB mB","132":"nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C zB NC 0B","132":"r"},L:{"132":"D"},M:{"322":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I BD CD DD ED FD CC GD","132":"n o p q HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD","322":"PD"}},B:4,C:"WebXR Device API",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js
      index 4e2461508374cc..7911ddca63889e 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 NC"},B:{"1":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K L G M N O"},C:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB QC RC","194":"CB DB EB FB GB HB IB"},D:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},E:{"1":"A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 6 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS will-change property",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K L H M N O"},C:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB RC SC","194":"EB FB GB HB IB JB KB"},D:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p q dC eC fC gC zB NC hC 0B"},G:{"1":"oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS will-change property",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff.js
      index 23c3303a7efb3d..e961c954d2ee60 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC RC","2":"OC 3B QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"I"},E:{"1":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I SC 9B"},F:{"1":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m yB LC fC zB","2":"F B bC cC dC eC"},G:{"1":"E hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC"},H:{"2":"1C"},I:{"1":"H 6C 7C","2":"3B 2C 3C 4C 5C MC","130":"I"},J:{"1":"D A"},K:{"1":"B C q yB LC zB","2":"A"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"WOFF - Web Open Font Format",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC SC","2":"QC 4B RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"I"},E:{"1":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I TC BC"},F:{"1":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m zB NC hC 0B","2":"G B dC eC fC gC"},G:{"1":"F jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC"},H:{"2":"4C"},I:{"1":"D 9C AD","2":"4B 5C 6C 7C 8C OC","130":"I"},J:{"1":"E A"},K:{"1":"B C r zB NC 0B","2":"A"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"WOFF - Web Open Font Format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff2.js
      index fda53916da34d6..98a56aea0d5206 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 NC"},B:{"1":"0 1 2 3 L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","2":"C K"},C:{"1":"0 1 2 3 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB QC RC"},D:{"1":"0 1 2 3 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","2":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB"},E:{"1":"C K L G zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"4 I J D E F SC 9B TC UC VC WC","132":"A B AC yB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"5 F B C G M N O n o p bC cC dC eC yB LC fC zB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"E 9B gC MC hC iC jC kC lC mC"},H:{"2":"1C"},I:{"1":"H","2":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"2":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:2,C:"WOFF 2.0 - Web Open Font Format",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","2":"C K"},C:{"1":"0 1 2 3 4 5 6 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB RC SC"},D:{"1":"0 1 2 3 4 5 6 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"C K L H 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"7 I J E F G TC BC UC VC WC XC","132":"A B CC zB"},F:{"1":"9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"8 G B C H M N O n o p dC eC fC gC zB NC hC 0B"},G:{"1":"pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"F BC iC OC jC kC lC mC nC oC"},H:{"2":"4C"},I:{"1":"D","2":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"2":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:2,C:"WOFF 2.0 - Web Open Font Format",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/word-break.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/word-break.js
      index 801dc8fc24da69..437c2e2b1ca59c 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"4 OC 3B I J D E F A B C K L QC RC"},D:{"1":"0 1 2 3 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","4":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"F A B C K L G WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","4":"4 I J D E SC 9B TC UC VC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","2":"F B C bC cC dC eC yB LC fC zB","4":"5 6 7 8 9 G M N O n o p AB BB CB DB"},G:{"1":"lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","4":"E 9B gC MC hC iC jC kC"},H:{"2":"1C"},I:{"1":"H","4":"3B I 2C 3C 4C 5C MC 6C 7C"},J:{"4":"D A"},K:{"1":"q","2":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"CSS3 word-break",D:true};
      +module.exports={A:{A:{"1":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"7 QC 4B I J E F G A B C K L RC SC"},D:{"1":"0 1 2 3 4 5 6 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"G A B C K L H XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","4":"7 I J E F TC BC UC VC WC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","2":"G B C dC eC fC gC zB NC hC 0B","4":"8 9 H M N O n o p q AB BB CB DB EB FB"},G:{"1":"nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","4":"F BC iC OC jC kC lC mC"},H:{"2":"4C"},I:{"1":"D","4":"4B I 5C 6C 7C 8C OC 9C AD"},J:{"4":"E A"},K:{"1":"r","2":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"CSS3 word-break",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wordwrap.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wordwrap.js
      index a56b8594570638..df4fb212575def 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 NC"},B:{"1":"0 1 2 3 O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","4":"C K L G M N"},C:{"1":"0 1 2 3 WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","4":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB QC RC"},D:{"1":"0 1 2 3 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","4":"4 5 I J D E F A B C K L G M N O n o p"},E:{"1":"D E F A B C K L G UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","4":"4 I J SC 9B TC"},F:{"1":"5 6 7 8 9 G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F bC cC","4":"B C dC eC yB LC fC"},G:{"1":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","4":"9B gC MC hC iC"},H:{"4":"1C"},I:{"1":"H 6C 7C","4":"3B I 2C 3C 4C 5C MC"},J:{"1":"A","4":"D"},K:{"1":"q","4":"A B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"4":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"MD","4":"LD"}},B:4,C:"CSS3 Overflow-wrap",D:true};
      +module.exports={A:{A:{"4":"J E F G A B PC"},B:{"1":"0 1 2 3 4 5 6 O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D","4":"C K L H M N"},C:{"1":"0 1 2 3 4 5 6 YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","4":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB RC SC"},D:{"1":"0 1 2 3 4 5 6 9 q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","4":"7 8 I J E F G A B C K L H M N O n o p"},E:{"1":"E F G A B C K L H VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","4":"7 I J TC BC UC"},F:{"1":"8 9 H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G dC eC","4":"B C fC gC zB NC hC"},G:{"1":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","4":"BC iC OC jC kC"},H:{"4":"4C"},I:{"1":"D 9C AD","4":"4B I 5C 6C 7C 8C OC"},J:{"1":"A","4":"E"},K:{"1":"r","4":"A B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"4":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"PD","4":"OD"}},B:4,C:"CSS3 Overflow-wrap",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-doc-messaging.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-doc-messaging.js
      index 8976faf17f051b..8a571ede2ce0f1 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 NC","132":"E F","260":"A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC","2":"OC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"SC 9B"},F:{"1":"5 6 7 8 9 B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB","2":"F"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"4":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"Cross-document messaging",D:true};
      +module.exports={A:{A:{"2":"J E PC","132":"F G","260":"A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC","2":"QC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"TC BC"},F:{"1":"8 9 B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B","2":"G"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"4":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"Cross-document messaging",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-frame-options.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-frame-options.js
      index 010c73352ac098..db5a0e78a20789 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 NC"},B:{"1":"C K L G M N O","4":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB","4":"0 1 2 3 4 I J D E F A B C K L G M N pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","16":"OC 3B QC RC"},D:{"4":"0 1 2 3 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 5 6 7 8 I J D E F A B C K L G M N O n o p"},E:{"4":"J D E F A B C K L G TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","16":"4 I SC 9B"},F:{"4":"5 6 7 8 9 C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m fC zB","16":"F B bC cC dC eC yB LC"},G:{"4":"E jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","16":"9B gC MC hC iC"},H:{"2":"1C"},I:{"4":"I H 5C MC 6C 7C","16":"3B 2C 3C 4C"},J:{"4":"D A"},K:{"4":"q zB","16":"A B C yB LC"},L:{"4":"H"},M:{"4":"xB"},N:{"1":"A B"},O:{"4":"0B"},P:{"4":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"4":"BC"},R:{"4":"KD"},S:{"1":"LD","4":"MD"}},B:6,C:"X-Frame-Options HTTP header",D:true};
      +module.exports={A:{A:{"1":"F G A B","2":"J E PC"},B:{"1":"C K L H M N O","4":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB","4":"0 1 2 3 4 5 6 7 I J E F G A B C K L H M N rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"QC 4B RC SC"},D:{"4":"0 1 2 3 4 5 6 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 8 9 I J E F G A B C K L H M N O n o p q AB"},E:{"4":"J E F G A B C K L H UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","16":"7 I TC BC"},F:{"4":"8 9 C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m hC 0B","16":"G B dC eC fC gC zB NC"},G:{"4":"F lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","16":"BC iC OC jC kC"},H:{"2":"4C"},I:{"4":"I D 8C OC 9C AD","16":"4B 5C 6C 7C"},J:{"4":"E A"},K:{"4":"r 0B","16":"A B C zB NC"},L:{"4":"D"},M:{"4":"D"},N:{"1":"A B"},O:{"4":"1B"},P:{"4":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"4":"DC"},R:{"4":"ND"},S:{"1":"OD","4":"PD"}},B:6,C:"X-Frame-Options HTTP header",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhr2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhr2.js
      index 64c3a14cc7e393..37b97b88e7cb67 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 NC","132":"A B"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","2":"OC 3B","260":"A B","388":"J D E F","900":"4 I QC RC"},D:{"1":"0 1 2 3 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","16":"4 I J","132":"CB DB","388":"5 6 7 8 9 D E F A B C K L G M N O n o p AB BB"},E:{"1":"E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","2":"I SC 9B","132":"D UC","388":"4 J TC"},F:{"1":"5 6 7 8 9 C O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m zB","2":"F B bC cC dC eC yB LC fC","132":"G M N"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","2":"9B gC MC","132":"jC","388":"hC iC"},H:{"2":"1C"},I:{"1":"H 7C","2":"2C 3C 4C","388":"6C","900":"3B I 5C MC"},J:{"132":"A","388":"D"},K:{"1":"C q zB","2":"A B yB LC"},L:{"1":"H"},M:{"1":"xB"},N:{"132":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"XMLHttpRequest advanced features",D:true};
      +module.exports={A:{A:{"2":"J E F G PC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","2":"QC 4B","260":"A B","388":"J E F G","900":"7 I RC SC"},D:{"1":"0 1 2 3 4 5 6 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","16":"7 I J","132":"EB FB","388":"8 9 E F G A B C K L H M N O n o p q AB BB CB DB"},E:{"1":"F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","2":"I TC BC","132":"E VC","388":"7 J UC"},F:{"1":"8 9 C O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m 0B","2":"G B dC eC fC gC zB NC hC","132":"H M N"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","2":"BC iC OC","132":"lC","388":"jC kC"},H:{"2":"4C"},I:{"1":"D AD","2":"5C 6C 7C","388":"9C","900":"4B I 8C OC"},J:{"132":"A","388":"E"},K:{"1":"C r 0B","2":"A B zB NC"},L:{"1":"D"},M:{"1":"D"},N:{"132":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"XMLHttpRequest advanced features",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtml.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtml.js
      index 7a659f3d35e3d4..484a4a57e6a8ac 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"1":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"1":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"1":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"1":"1C"},I:{"1":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"1":"D A"},K:{"1":"A B C q yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:1,C:"XHTML served as application/xhtml+xml",D:true};
      +module.exports={A:{A:{"1":"G A B","2":"J E F PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"1":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"1":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"1":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"1":"4C"},I:{"1":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"1":"E A"},K:{"1":"A B C r zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:1,C:"XHTML served as application/xhtml+xml",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtmlsmil.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtmlsmil.js
      index 836190acd94521..339db9f810992a 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 NC","4":"J D E"},B:{"2":"C K L G M N O","8":"0 1 2 3 P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B"},E:{"8":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"8":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"8":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"8":"1C"},I:{"8":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"8":"D A"},K:{"8":"A B C q yB LC zB"},L:{"8":"H"},M:{"8":"xB"},N:{"2":"A B"},O:{"8":"0B"},P:{"8":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"8":"BC"},R:{"8":"KD"},S:{"8":"LD MD"}},B:7,C:"XHTML+SMIL animation",D:true};
      +module.exports={A:{A:{"2":"G A B PC","4":"J E F"},B:{"2":"C K L H M N O","8":"0 1 2 3 4 5 6 P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"8":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC"},E:{"8":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"8":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"8":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"8":"4C"},I:{"8":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"8":"E A"},K:{"8":"A B C r zB NC 0B"},L:{"8":"D"},M:{"8":"D"},N:{"2":"A B"},O:{"8":"1B"},P:{"8":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"8":"DC"},R:{"8":"ND"},S:{"8":"OD PD"}},B:7,C:"XHTML+SMIL animation",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xml-serializer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xml-serializer.js
      index 27c22f8c2ea9ed..844088a19f2b4d 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 NC"},B:{"1":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"1":"0 1 2 3 5 6 7 8 9 C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC","132":"B","260":"4 OC 3B I J D QC RC","516":"E F A"},D:{"1":"0 1 2 3 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B","132":"4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB"},E:{"1":"E F A B C K L G VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC","132":"4 I J D SC 9B TC UC"},F:{"1":"5 6 7 8 9 O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m","16":"F bC","132":"B C G M N cC dC eC yB LC fC zB"},G:{"1":"E kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC","132":"9B gC MC hC iC jC"},H:{"132":"1C"},I:{"1":"H 6C 7C","132":"3B I 2C 3C 4C 5C MC"},J:{"132":"D A"},K:{"1":"q","16":"A","132":"B C yB LC zB"},L:{"1":"H"},M:{"1":"xB"},N:{"1":"A B"},O:{"1":"0B"},P:{"1":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"1":"BC"},R:{"1":"KD"},S:{"1":"LD MD"}},B:4,C:"DOM Parsing and Serialization",D:true};
      +module.exports={A:{A:{"1":"A B","260":"J E F G PC"},B:{"1":"0 1 2 3 4 5 6 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D"},C:{"1":"0 1 2 3 4 5 6 8 9 C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"B","260":"7 QC 4B I J E RC SC","516":"F G A"},D:{"1":"0 1 2 3 4 5 6 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC","132":"7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB"},E:{"1":"F G A B C K L H WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC","132":"7 I J E TC BC UC VC"},F:{"1":"8 9 O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m","16":"G dC","132":"B C H M N eC fC gC zB NC hC 0B"},G:{"1":"F mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC","132":"BC iC OC jC kC lC"},H:{"132":"4C"},I:{"1":"D 9C AD","132":"4B I 5C 6C 7C 8C OC"},J:{"132":"E A"},K:{"1":"r","16":"A","132":"B C zB NC 0B"},L:{"1":"D"},M:{"1":"D"},N:{"1":"A B"},O:{"1":"1B"},P:{"1":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"1":"DC"},R:{"1":"ND"},S:{"1":"OD PD"}},B:4,C:"DOM Parsing and Serialization",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/zstd.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/zstd.js
      index c0fbffa36795e1..920a5ca2a90f3f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/zstd.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/zstd.js
      @@ -1 +1 @@
      -module.exports={A:{A:{"2":"J D E F A B NC"},B:{"2":"0 1 2 3 C K L G M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 OC 3B I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H xB 7B 8B PC QC RC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I J D E F A B C K L G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB 4B gB 5B hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R S T U V W X Y Z a b c d e f g h i j k l m r s t u v w x y z H","194":"xB 7B 8B"},E:{"2":"4 I J D E F A B C K L G SC 9B TC UC VC WC AC yB zB BC XC YC CC DC 0B ZC 1B EC FC GC HC IC JC 2B KC aC"},F:{"2":"5 6 7 8 9 F B C G M N O n o p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB q sB tB uB vB wB P Q R 6B S T U V W X Y Z a b c d e f g h i j k l m bC cC dC eC yB LC fC zB"},G:{"2":"E 9B gC MC hC iC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC CC DC 0B 0C 1B EC FC GC HC IC JC 2B KC"},H:{"2":"1C"},I:{"2":"3B I H 2C 3C 4C 5C MC 6C 7C"},J:{"2":"D A"},K:{"2":"A B C q yB LC zB"},L:{"2":"H"},M:{"2":"xB"},N:{"2":"A B"},O:{"2":"0B"},P:{"2":"I n o p 8C 9C AD BD CD AC DD ED FD GD HD 1B 2B ID JD"},Q:{"2":"BC"},R:{"2":"KD"},S:{"2":"LD MD"}},B:6,C:"zstd (Zstandard) content-encoding",D:true};
      +module.exports={A:{A:{"2":"J E F G A B PC"},B:{"2":"0 1 2 3 4 5 C K L H M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","194":"6 D"},C:{"2":"0 1 2 3 4 5 6 7 8 9 QC 4B I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z D 8B 9B AC RC SC"},D:{"2":"0 1 2 3 4 5 7 8 9 I J E F G A B C K L H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB 5B iB 6B jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R S T U V W X Y Z a b c d e f g h i j k l m s t u v w x y z","194":"6 D 8B 9B AC"},E:{"2":"7 I J E F G A B C K L H TC BC UC VC WC XC CC zB 0B DC YC ZC EC FC 1B aC 2B GC HC IC JC KC bC 3B LC MC cC"},F:{"2":"8 9 G B C H M N O n o p q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB r uB vB wB xB yB P Q R 7B S T U V W X Y Z a b c d e f g h i j k l m dC eC fC gC zB NC hC 0B"},G:{"2":"F BC iC OC jC kC lC mC nC oC pC qC rC sC tC uC vC wC xC yC zC 0C 1C EC FC 1B 2C 2B GC HC IC JC KC 3C 3B LC MC"},H:{"2":"4C"},I:{"2":"4B I D 5C 6C 7C 8C OC 9C AD"},J:{"2":"E A"},K:{"2":"A B C r zB NC 0B"},L:{"2":"D"},M:{"2":"D"},N:{"2":"A B"},O:{"2":"1B"},P:{"2":"I n o p q BD CD DD ED FD CC GD HD ID JD KD 2B 3B LD MD"},Q:{"2":"DC"},R:{"2":"ND"},S:{"2":"OD PD"}},B:6,C:"zstd (Zstandard) content-encoding",D:true};
      diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js
      index 4166a6245dfca5..68afdc07000674 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.03369,"49":0,"50":0,"51":0,"52":0.00421,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00421,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01263,"79":0,"80":0.00421,"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.00842,"102":0,"103":0.00842,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00421,"112":0,"113":0.00421,"114":0.00421,"115":0.07159,"116":0.03369,"117":0.67376,"118":0.05895,"119":0,"120":0,"3.5":0,"3.6":0},D:{"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.00421,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00421,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00421,"45":0.00421,"46":0.00421,"47":0.00421,"48":0,"49":0.00842,"50":0,"51":0.00421,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00842,"80":0,"81":0.00421,"83":0,"84":0.00421,"85":0.01263,"86":0.00421,"87":0.00842,"88":0.00421,"89":0.00421,"90":0,"91":0.02527,"92":0.01684,"93":0,"94":0,"95":0,"96":0.00842,"97":0,"98":0,"99":0.02106,"100":0.01263,"101":0,"102":0,"103":0.04211,"104":0,"105":0.00842,"106":0,"107":0,"108":0.00421,"109":0.40426,"110":0.0379,"111":0.00421,"112":0.01263,"113":0.02948,"114":0.12633,"115":0.40426,"116":5.19637,"117":2.20235,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00421,"99":0.00421,"100":0.02527,"101":0.32004,"102":0.26108,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00421,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00421,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00421,"108":0,"109":0.00842,"110":0,"111":0,"112":0,"113":0,"114":0.00842,"115":0.0379,"116":0.5727,"117":0.48848},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00421,"10":0,"11":0,"12":0,"13":0,"14":0.02106,"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.09264,"14.1":0.05474,"15.1":0.04632,"15.2-15.3":0.0379,"15.4":0.06317,"15.5":0.06738,"15.6":0.3832,"16.0":0.16002,"16.1":0.12633,"16.2":0.13475,"16.3":0.45479,"16.4":0.15581,"16.5":0.5348,"16.6":3.11614,"17.0":0.28214,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03336,"8.1-8.4":0.0278,"9.0-9.2":0,"9.3":0.0278,"10.0-10.2":0,"10.3":0.03336,"11.0-11.2":0.02224,"11.3-11.4":0,"12.0-12.1":0.0278,"12.2-12.5":0.17236,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.06116,"14.0-14.4":0.03892,"14.5-14.8":0.18348,"15.0-15.1":0.14456,"15.2-15.3":0.68943,"15.4":0.2224,"15.5":0.49483,"15.6-15.7":3.31929,"16.0":2.10722,"16.1":3.4972,"16.2":1.32883,"16.3":2.72437,"16.4":0.54487,"16.5":2.27402,"16.6":33.36521,"17.0":3.53056,"17.1":0.00556},P:{"4":0.0409,"20":0.01023,"21":0.06135,"22":1.19642,"5.0-5.4":0,"6.2-6.4":0.01023,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02045,"12.0":0,"13.0":0,"14.0":0.02045,"15.0":0.01023,"16.0":0,"17.0":0.01023,"18.0":0,"19.0":0.02045},I:{"0":0,"3":0.00236,"4":0.00943,"2.1":0.00825,"2.2":0.00825,"2.3":0.01179,"4.1":0.01061,"4.2-4.3":0.02358,"4.4":0,"4.4.3-4.4.4":0.06837},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0379,"9":0.00421,"10":0.00842,"11":0.02527,"5.5":0},S:{"2.5":0.00579,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0.01158},L:{"0":25.02781},R:{_:"0"},M:{"0":0.19104},Q:{"13.1":0},O:{"0":0.02316},H:{"0":0.07673}};
      +module.exports={C:{"4":0.00444,"9":0.00444,"31":0.00444,"40":0.00444,"48":0.04444,"52":0.01333,"78":0.00889,"81":0.00444,"88":0.00444,"89":0.00444,"91":0.00889,"97":0.00444,"98":0.00444,"103":0.00889,"104":0.00889,"106":0.00444,"107":0.00444,"108":0.00444,"109":0.05333,"113":0.00444,"114":0.00444,"115":0.19998,"116":0.01333,"117":0.09332,"118":1.02212,"119":0.2222,_:"2 3 5 6 7 8 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 90 92 93 94 95 96 99 100 101 102 105 110 111 112 120 121 122","3.5":0.00444,"3.6":0.00444},D:{"11":0.00444,"16":0.00444,"34":0.00444,"38":0.00444,"39":0.00889,"41":0.00444,"42":0.00444,"43":0.00444,"44":0.00889,"45":0.00889,"46":0.00889,"47":0.00889,"49":0.02222,"51":0.00444,"70":0.00444,"79":0.02222,"84":0.00444,"86":0.00444,"87":0.02222,"88":0.00889,"89":0.00444,"90":0.01333,"91":0.02222,"92":0.00444,"96":0.00889,"97":0.00889,"98":0.11554,"99":0.04,"100":0.01333,"103":0.17332,"104":0.00444,"105":0.03111,"106":0.00444,"107":0.00889,"108":0.01333,"109":0.92435,"110":0.03555,"111":0.00444,"112":0.02222,"113":0.07555,"114":0.43107,"115":0.06222,"116":0.96879,"117":8.98132,"118":9.2613,"119":0.01333,_:"4 5 6 7 8 9 10 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 80 81 83 85 93 94 95 101 102 120 121 122"},F:{"31":0.00444,"83":0.00444,"84":0.00444,"95":0.00889,"98":0.00444,"99":0.00444,"101":0.00444,"102":1.64872,"103":0.25775,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 85 86 87 88 89 90 91 92 93 94 96 97 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"84":0.00444,"86":0.00444,"87":0.00444,"88":0.00444,"90":0.00444,"92":0.00889,"94":0.00444,"95":0.00889,"96":0.00444,"97":0.00444,"98":0.01778,"99":0.00444,"100":0.00444,"105":0.00444,"106":0.05777,"107":0.00444,"108":0.00444,"109":0.03555,"111":0.00889,"114":0.00444,"115":0.00444,"116":0.07555,"117":1.45763,"118":1.01323,_:"12 13 14 15 16 17 18 79 80 81 83 85 89 91 93 101 102 103 104 110 112 113 119"},E:{"7":0.00444,"9":0.02222,"13":0.00889,"14":0.03111,"15":0.00444,_:"0 4 5 6 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00444,"13.1":0.12443,"14.1":0.26664,"15.1":0.06666,"15.2-15.3":0.10221,"15.4":0.1111,"15.5":0.2622,"15.6":1.02212,"16.0":0.43551,"16.1":0.28886,"16.2":0.39552,"16.3":1.53762,"16.4":0.45329,"16.5":1.12433,"16.6":5.31058,"17.0":3.39077,"17.1":0.40885,"17.2":0.00444},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00359,"5.0-5.1":0.00359,"6.0-6.1":0.01076,"7.0-7.1":0.02512,"8.1-8.4":0.00359,"9.0-9.2":0.02512,"9.3":0.08611,"10.0-10.2":0.00359,"10.3":0.12558,"11.0-11.2":0.11482,"11.3-11.4":0.03947,"12.0-12.1":0.03229,"12.2-12.5":0.5705,"13.0-13.1":0.01794,"13.2":0.09688,"13.3":0.03588,"13.4-13.7":0.11482,"14.0-14.4":0.31575,"14.5-14.8":0.50951,"15.0-15.1":0.20093,"15.2-15.3":0.22964,"15.4":0.25475,"15.5":0.36239,"15.6-15.7":2.50806,"16.0":0.92572,"16.1":1.7725,"16.2":0.86472,"16.3":1.60386,"16.4":0.34445,"16.5":0.91854,"16.6-16.7":17.20477,"17.0":6.12841,"17.1":0.36957,"17.2":0.01076},P:{"4":0.03111,"20":0.01037,"21":0.03111,"22":0.99564,"23":0.30076,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","6.2-6.4":0.01037,"17.0":0.01037,"19.0":0.01037},I:{"0":0.0995,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.0003},A:{"6":0.00444,"7":0.00889,"8":0.07555,"9":0.01778,"10":0.01333,"11":0.04888,_:"5.5"},K:{"0":0.22224,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00556,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.23335},Q:{_:"13.1"},O:{"0":0.03334},H:{"0":0},L:{"0":18.01468}};
      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 932de97b6ce042..0a8441ceb3627a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00305,"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.00305,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00305,"103":0.00609,"104":0,"105":0.00305,"106":0,"107":0,"108":0,"109":0.00305,"110":0.00305,"111":0,"112":0,"113":0,"114":0,"115":0.02133,"116":0.01524,"117":0.1554,"118":0.01524,"119":0.00305,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00305,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.14626,"36":0,"37":0,"38":0.00305,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00305,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00305,"66":0,"67":0,"68":0.00305,"69":0.00305,"70":0,"71":0,"72":0.00305,"73":0.00914,"74":0,"75":0.00305,"76":0.00609,"77":0,"78":0.00305,"79":0.01524,"80":0.00305,"81":0.00609,"83":0.00305,"84":0.00609,"85":0.01219,"86":0.00609,"87":0.00914,"88":0.00914,"89":0.00305,"90":0.00305,"91":0.00609,"92":0.00305,"93":0.01219,"94":0.00305,"95":0.00305,"96":0,"97":0.00305,"98":0.00609,"99":0.00914,"100":0.01219,"101":0.01524,"102":0.00609,"103":0.05789,"104":0.01219,"105":0.01219,"106":0.00914,"107":0.01524,"108":0.01524,"109":0.49666,"110":0.01524,"111":0.07313,"112":0.02133,"113":0.18587,"114":0.10665,"115":0.11883,"116":4.10126,"117":0.95066,"118":0.00305,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00305,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00305,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00305,"47":0,"48":0,"49":0,"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.00305,"71":0,"72":0.01219,"73":0.00609,"74":0.00305,"75":0.00609,"76":0,"77":0.04266,"78":0.01219,"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.00305,"95":0.00305,"96":0.00305,"97":0.00305,"98":0,"99":0.00609,"100":0.02742,"101":0.07313,"102":0.08836,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00305,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00305,"108":0.00914,"109":0.00609,"110":0,"111":0.00305,"112":0,"113":0.00305,"114":0.00914,"115":0.02438,"116":0.42963,"117":0.29556},E:{"4":0,"5":0,"6":0,"7":0,"8":0.01524,"9":0,"10":0,"11":0.00305,"12":0,"13":0.00305,"14":0.01219,"15":0.00305,_:"0","3.1":0,"3.2":0,"5.1":0.00305,"6.1":0,"7.1":0,"9.1":0.00305,"10.1":0,"11.1":0,"12.1":0.00305,"13.1":0.00914,"14.1":0.03961,"15.1":0.00609,"15.2-15.3":0.00609,"15.4":0.01219,"15.5":0.02133,"15.6":0.07008,"16.0":0.00609,"16.1":0.03047,"16.2":0.02438,"16.3":0.06094,"16.4":0.02438,"16.5":0.06094,"16.6":0.39306,"17.0":0.03961,"17.1":0},G:{"8":0.0016,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0032,"6.0-6.1":0,"7.0-7.1":0.01282,"8.1-8.4":0,"9.0-9.2":0.0016,"9.3":0.05769,"10.0-10.2":0.00641,"10.3":0.05769,"11.0-11.2":0.01282,"11.3-11.4":0.00801,"12.0-12.1":0.00641,"12.2-12.5":0.20031,"13.0-13.1":0.00641,"13.2":0.00641,"13.3":0.00961,"13.4-13.7":0.03525,"14.0-14.4":0.09134,"14.5-14.8":0.16025,"15.0-15.1":0.10737,"15.2-15.3":0.0657,"15.4":0.08012,"15.5":0.13461,"15.6-15.7":1.1618,"16.0":0.49356,"16.1":0.66663,"16.2":0.37498,"16.3":0.77239,"16.4":0.13942,"16.5":0.53523,"16.6":9.21905,"17.0":1.38454,"17.1":0.0032},P:{"4":0.09204,"20":0.05114,"21":0.07159,"22":1.58521,"5.0-5.4":0.01023,"6.2-6.4":0,"7.2-7.4":0.02045,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01023,"12.0":0,"13.0":0.01023,"14.0":0,"15.0":0,"16.0":0.01023,"17.0":0.02045,"18.0":0.02045,"19.0":0.03068},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08524},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.09446,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.05963},R:{_:"0"},M:{"0":0.16687},Q:{"13.1":0},O:{"0":3.14971},H:{"0":0.90182}};
      +module.exports={C:{"34":0.00273,"44":0.00273,"52":0.00273,"66":0.00273,"68":0.00273,"72":0.00273,"78":0.00273,"81":0.00273,"101":0.00273,"102":0.01093,"103":0.01366,"105":0.00273,"107":0.00273,"108":0.00273,"109":0.00273,"110":0.00273,"111":0.00546,"112":0.00273,"113":0.00273,"114":0.00273,"115":0.07103,"116":0.00546,"117":0.02459,"118":0.43439,"119":0.0683,"120":0.01639,"121":0.00546,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 67 69 70 71 73 74 75 76 77 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 104 106 122 3.5 3.6"},D:{"11":0.00546,"22":0.00273,"29":0.01093,"35":0.39341,"38":0.0082,"41":0.04098,"43":0.00273,"49":0.00546,"51":0.00273,"56":0.00273,"58":0.01093,"65":0.00546,"66":0.00273,"68":0.00546,"69":0.01912,"70":0.00273,"71":0.00273,"72":0.00273,"73":0.00546,"74":0.00273,"75":0.00546,"76":0.01639,"77":0.00273,"78":0.0082,"79":0.04098,"80":0.0082,"81":0.00546,"83":0.01639,"84":0.00546,"85":0.02186,"86":0.01639,"87":0.02459,"88":0.0082,"89":0.00546,"90":0.00546,"91":0.01093,"92":0.00546,"93":0.04098,"94":0.01366,"95":0.01366,"96":0.00546,"97":0.0082,"98":0.02459,"99":0.01639,"100":0.01366,"101":0.02732,"102":0.02459,"103":0.18304,"104":0.04098,"105":0.03005,"106":0.03552,"107":0.05191,"108":0.05191,"109":0.86058,"110":0.02459,"111":0.04371,"112":0.04098,"113":0.15026,"114":0.2732,"115":0.10108,"116":0.79774,"117":7.75342,"118":7.45563,"119":0.01912,"120":0.00546,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 30 31 32 33 34 36 37 39 40 42 44 45 46 47 48 50 52 53 54 55 57 59 60 61 62 63 64 67 121 122"},F:{"28":0.0082,"36":0.00273,"46":0.0082,"74":0.00273,"78":0.00273,"83":0.00273,"85":0.00546,"92":0.00273,"94":0.01093,"95":0.02459,"96":0.00546,"97":0.00273,"99":0.00546,"100":0.0082,"101":0.01093,"102":0.61743,"103":0.09835,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 79 80 81 82 84 86 87 88 89 90 91 93 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00546,"84":0.00273,"92":0.0082,"96":0.00273,"100":0.00273,"105":0.00546,"106":0.00546,"107":0.00546,"108":0.01093,"109":0.01639,"110":0.00273,"111":0.00546,"112":0.00273,"113":0.00546,"114":0.02459,"115":0.01912,"116":0.03278,"117":1.14471,"118":1.10919,"119":0.00546,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 97 98 99 101 102 103 104"},E:{"9":0.00273,"11":0.00546,"13":0.00273,"14":0.03825,"15":0.00546,_:"0 4 5 6 7 8 10 12 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.0082,"9.1":0.00546,"12.1":0.00546,"13.1":0.03278,"14.1":0.10108,"15.1":0.02186,"15.2-15.3":0.01366,"15.4":0.03278,"15.5":0.04371,"15.6":0.22402,"16.0":0.02459,"16.1":0.0683,"16.2":0.06557,"16.3":0.14753,"16.4":0.07103,"16.5":0.1284,"16.6":0.79774,"17.0":0.55186,"17.1":0.03552},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00117,"5.0-5.1":0.00117,"6.0-6.1":0.00352,"7.0-7.1":0.00822,"8.1-8.4":0.00117,"9.0-9.2":0.00822,"9.3":0.02819,"10.0-10.2":0.00117,"10.3":0.04111,"11.0-11.2":0.03758,"11.3-11.4":0.01292,"12.0-12.1":0.01057,"12.2-12.5":0.18675,"13.0-13.1":0.00587,"13.2":0.03171,"13.3":0.01175,"13.4-13.7":0.03758,"14.0-14.4":0.10336,"14.5-14.8":0.16678,"15.0-15.1":0.06577,"15.2-15.3":0.07517,"15.4":0.08339,"15.5":0.11863,"15.6-15.7":0.82098,"16.0":0.30302,"16.1":0.58021,"16.2":0.28306,"16.3":0.52501,"16.4":0.11275,"16.5":0.30067,"16.6-16.7":5.63177,"17.0":2.00606,"17.1":0.12097,"17.2":0.00352},P:{"4":0.07272,"20":0.03117,"21":0.06233,"22":1.35051,"23":0.25971,"5.0-5.4":0.01039,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.03117,"11.1-11.2":0.01039,"13.0":0.01039,"16.0":0.01039,"17.0":0.02078,"18.0":0.01039,"19.0":0.03117},I:{"0":0.05785,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"8":0.00303,"11":0.58435,_:"6 7 9 10 5.5"},K:{"0":1.19922,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00727,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.14536},Q:{_:"13.1"},O:{"0":3.00895},H:{"0":0},L:{"0":55.7459}};
      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 23ee2e99c6f137..bb260e67ebaa24 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00145,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00145,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00145,"73":0,"74":0,"75":0,"76":0,"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.00145,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00145,"114":0.00145,"115":0.03199,"116":0.00436,"117":0.04362,"118":0.00291,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00145,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00145,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00291,"63":0.00145,"64":0,"65":0,"66":0,"67":0.00145,"68":0,"69":0.00145,"70":0.00145,"71":0.00291,"72":0.00145,"73":0.00145,"74":0,"75":0,"76":0,"77":0,"78":0.00145,"79":0.00145,"80":0.00291,"81":0.00291,"83":0.00145,"84":0,"85":0.00145,"86":0.00291,"87":0.00291,"88":0,"89":0.00145,"90":0.00145,"91":0.00145,"92":0.00291,"93":0.00145,"94":0.00291,"95":0,"96":0.00291,"97":0.00145,"98":0,"99":0.00145,"100":0,"101":0,"102":0.00436,"103":0.00291,"104":0,"105":0.00145,"106":0.00291,"107":0.00582,"108":0.01018,"109":0.29516,"110":0.00145,"111":0.00291,"112":0.01018,"113":0.00582,"114":0.01454,"115":0.01745,"116":0.6165,"117":0.14976,"118":0.00145,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00291,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00145,"70":0.04653,"71":0.00582,"72":0.02326,"73":0.00291,"74":0,"75":0,"76":0,"77":0.00291,"78":0,"79":0.00145,"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.01018,"96":0,"97":0,"98":0,"99":0,"100":0.00145,"101":0.01599,"102":0.01745,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00145,"13":0,"14":0.00291,"15":0,"16":0.00436,"17":0.00145,"18":0.01163,"79":0,"80":0,"81":0,"83":0,"84":0.00145,"85":0,"86":0,"87":0,"88":0,"89":0.00291,"90":0.00436,"91":0,"92":0.0189,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00145,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00872,"110":0.00145,"111":0.00291,"112":0.00291,"113":0.00145,"114":0.00582,"115":0.00436,"116":0.07997,"117":0.05671},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.00145,"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.00291,"15.2-15.3":0.00291,"15.4":0.00291,"15.5":0.00436,"15.6":0.0189,"16.0":0.00145,"16.1":0.01454,"16.2":0.00436,"16.3":0.0189,"16.4":0.01163,"16.5":0.03635,"16.6":0.15558,"17.0":0.02617,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00288,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02301,"10.0-10.2":0,"10.3":0.01438,"11.0-11.2":0,"11.3-11.4":0.00288,"12.0-12.1":0.00863,"12.2-12.5":0.2517,"13.0-13.1":0.00863,"13.2":0.00288,"13.3":0.01438,"13.4-13.7":0.0187,"14.0-14.4":0.10068,"14.5-14.8":0.08054,"15.0-15.1":0.09493,"15.2-15.3":0.1467,"15.4":0.14383,"15.5":0.22293,"15.6-15.7":1.43107,"16.0":0.5336,"16.1":0.64434,"16.2":0.41997,"16.3":0.74214,"16.4":0.39552,"16.5":1.02117,"16.6":6.43766,"17.0":1.4886,"17.1":0.00144},P:{"4":0.26537,"20":0.10207,"21":0.14289,"22":0.7757,"5.0-5.4":0.06124,"6.2-6.4":0.05103,"7.2-7.4":0.26537,"8.2":0.01021,"9.2":0.08165,"10.1":0.01021,"11.1-11.2":0.03062,"12.0":0,"13.0":0.04083,"14.0":0.03062,"15.0":0.01021,"16.0":0.08165,"17.0":0.06124,"18.0":0.04083,"19.0":0.08165},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00099,"4.4":0,"4.4.3-4.4.4":0.06809},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03053,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":79.22315},R:{_:"0"},M:{"0":0.03418},Q:{"13.1":0},O:{"0":0.77769},H:{"0":0.87381}};
      +module.exports={C:{"29":0.00143,"38":0.0043,"41":0.00143,"44":0.00143,"47":0.00287,"48":0.00143,"52":0.00287,"56":0.00717,"57":0.00287,"66":0.0043,"72":0.0086,"73":0.00143,"77":0.00143,"84":0.00143,"86":0.00143,"92":0.00143,"93":0.00143,"94":0.00287,"95":0.00143,"99":0.00143,"102":0.00143,"105":0.00143,"106":0.00143,"107":0.00287,"110":0.0043,"111":0.00143,"113":0.00287,"114":0.00287,"115":0.17913,"116":0.0043,"117":0.0172,"118":0.23788,"119":0.04872,_:"2 3 4 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 42 43 45 46 49 50 51 53 54 55 58 59 60 61 62 63 64 65 67 68 69 70 71 74 75 76 78 79 80 81 82 83 85 87 88 89 90 91 96 97 98 100 101 103 104 108 109 112 120 121 122 3.5 3.6"},D:{"30":0.00573,"31":0.00143,"34":0.00573,"36":0.00287,"37":0.00143,"38":0.00143,"41":0.00287,"43":0.00287,"44":0.00287,"45":0.00143,"46":0.00143,"47":0.00287,"48":0.07595,"49":0.00143,"50":0.00143,"51":0.0043,"52":0.00287,"53":0.00143,"54":0.00287,"55":0.00287,"56":0.00143,"60":0.00573,"61":0.00573,"62":0.01863,"63":0.00573,"64":0.0043,"65":0.00717,"66":0.00143,"67":0.0043,"68":0.00287,"69":0.00143,"70":0.00287,"71":0.0172,"72":0.00573,"73":0.00717,"74":0.00287,"75":0.00287,"76":0.01863,"77":0.0043,"78":0.01433,"79":0.01146,"80":0.0129,"81":0.0129,"83":0.11321,"84":0.0043,"85":0.00573,"86":0.01863,"87":0.01576,"88":0.00287,"89":0.00717,"90":0.00143,"91":0.02293,"92":0.0215,"93":0.00287,"94":0.00717,"95":0.0086,"96":0.0086,"97":0.00717,"98":0.01003,"99":0.01003,"100":0.0043,"101":0.00573,"102":0.02723,"103":0.01433,"104":0.0043,"105":0.02006,"106":0.02006,"107":0.02723,"108":0.02579,"109":1.65225,"110":0.01003,"111":0.01433,"112":0.06449,"113":0.0172,"114":0.05445,"115":0.04299,"116":0.20349,"117":2.38308,"118":2.2971,"119":0.01146,"120":0.00143,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 35 39 40 42 57 58 59 121 122"},F:{"64":0.00287,"73":0.00143,"79":0.0129,"82":0.00143,"89":0.00143,"93":0.00143,"95":0.05875,"97":0.00287,"99":0.00143,"101":0.00287,"102":0.17053,"103":0.07452,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 83 84 85 86 87 88 90 91 92 94 96 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01003,"13":0.00717,"14":0.0086,"15":0.00717,"16":0.04442,"17":0.01146,"18":0.07882,"81":0.0086,"83":0.00287,"84":0.0129,"85":0.00143,"88":0.0043,"89":0.02293,"90":0.02293,"92":0.11751,"94":0.00143,"96":0.00143,"100":0.02293,"103":0.07882,"104":0.00143,"105":0.00143,"107":0.00143,"108":0.00287,"109":0.06735,"110":0.0043,"111":0.00143,"112":0.0086,"113":0.00573,"114":0.01576,"115":0.01433,"116":0.03153,"117":0.43707,"118":0.41557,"119":0.00143,_:"79 80 86 87 91 93 95 97 98 99 101 102 106"},E:{"13":0.00143,"14":0.00287,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.0129,"13.1":0.0043,"14.1":0.0043,"15.1":0.03726,"15.2-15.3":0.02293,"15.4":0.0215,"15.5":0.04729,"15.6":0.10031,"16.0":0.01146,"16.1":0.12467,"16.2":0.04012,"16.3":0.10318,"16.4":0.07308,"16.5":0.17483,"16.6":0.62479,"17.0":0.90996,"17.1":0.12181,"17.2":0.01003},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00127,"5.0-5.1":0.00127,"6.0-6.1":0.00381,"7.0-7.1":0.00888,"8.1-8.4":0.00127,"9.0-9.2":0.00888,"9.3":0.03045,"10.0-10.2":0.00127,"10.3":0.04441,"11.0-11.2":0.0406,"11.3-11.4":0.01396,"12.0-12.1":0.01142,"12.2-12.5":0.20173,"13.0-13.1":0.00634,"13.2":0.03426,"13.3":0.01269,"13.4-13.7":0.0406,"14.0-14.4":0.11165,"14.5-14.8":0.18017,"15.0-15.1":0.07105,"15.2-15.3":0.0812,"15.4":0.09008,"15.5":0.12815,"15.6-15.7":0.88687,"16.0":0.32734,"16.1":0.62677,"16.2":0.30577,"16.3":0.56714,"16.4":0.1218,"16.5":0.32481,"16.6-16.7":6.08377,"17.0":2.16706,"17.1":0.13068,"17.2":0.00381},P:{"4":0.25347,"20":0.09125,"21":0.15208,"22":0.81111,"23":0.08111,"5.0-5.4":0.06083,"6.2-6.4":0.04056,"7.2-7.4":0.20278,"8.2":0.02028,"9.2":0.07097,_:"10.1","11.1-11.2":0.04056,"12.0":0.01014,"13.0":0.05069,"14.0":0.02028,"15.0":0.02028,"16.0":0.08111,"17.0":0.06083,"18.0":0.03042,"19.0":0.11153},I:{"0":0.04262,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"8":0.00158,"9":0.00475,"10":0.00316,"11":0.23412,_:"6 7 5.5"},K:{"0":0.59109,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00857,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.0514},Q:{_:"13.1"},O:{"0":0.831},H:{"0":0.06},L:{"0":70.73364}};
      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 344f2976de29a5..bd906b4b250dec 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00388,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00388,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00388,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00388,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00388,"115":0.06588,"116":0.03488,"117":0.34488,"118":0.02713,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00775,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00388,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00775,"77":0,"78":0,"79":0.00775,"80":0,"81":0,"83":0,"84":0.00388,"85":0.00775,"86":0.01163,"87":0.00388,"88":0.00388,"89":0,"90":0,"91":0.00388,"92":0,"93":0.031,"94":0.00775,"95":0,"96":0,"97":0,"98":0.00388,"99":0,"100":0,"101":0,"102":0.00388,"103":0.05038,"104":0,"105":0,"106":0.00775,"107":0,"108":0.00775,"109":0.372,"110":0.00775,"111":0.00388,"112":0.00388,"113":0.01938,"114":0.08913,"115":0.2325,"116":5.74663,"117":1.26713,"118":0.00388,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02325,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00388,"72":0.00775,"73":0,"74":0,"75":0,"76":0,"77":0.04263,"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.00388,"96":0,"97":0,"98":0,"99":0.00775,"100":0.03875,"101":0.06588,"102":0.05038,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00775,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00388,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00775,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.02325,"110":0,"111":0.00388,"112":0,"113":0.00388,"114":0.0155,"115":0.0465,"116":1.18575,"117":0.75563},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00388,"15":0.00388,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02325,"14.1":0.02713,"15.1":0.00775,"15.2-15.3":0.00775,"15.4":0.00388,"15.5":0.01163,"15.6":0.10463,"16.0":0.14725,"16.1":0.02713,"16.2":0.02713,"16.3":0.09688,"16.4":0.06588,"16.5":0.0775,"16.6":1.44925,"17.0":0.062,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.05479,"6.0-6.1":0,"7.0-7.1":0.00548,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00822,"10.0-10.2":0,"10.3":0.01918,"11.0-11.2":0.00548,"11.3-11.4":0.00274,"12.0-12.1":0,"12.2-12.5":0.20272,"13.0-13.1":0,"13.2":0.00274,"13.3":0.01096,"13.4-13.7":0.01096,"14.0-14.4":0.13697,"14.5-14.8":0.07944,"15.0-15.1":0.06849,"15.2-15.3":0.09588,"15.4":0.05479,"15.5":0.16437,"15.6-15.7":1.43547,"16.0":0.5835,"16.1":1.31494,"16.2":0.44653,"16.3":1.4026,"16.4":0.37804,"16.5":0.76979,"16.6":17.99822,"17.0":1.8327,"17.1":0},P:{"4":0.18405,"20":0.07578,"21":0.46554,"22":4.29809,"5.0-5.4":0.02165,"6.2-6.4":0,"7.2-7.4":0.24901,"8.2":0,"9.2":0.02165,"10.1":0,"11.1-11.2":0.04331,"12.0":0,"13.0":0.03248,"14.0":0.02165,"15.0":0,"16.0":0.02165,"17.0":0.04331,"18.0":0.03248,"19.0":0.03248},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":2.23938},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.01938,"11":0.00775,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":49.158},R:{_:"0"},M:{"0":0.06125},Q:{"13.1":0},O:{"0":0.049},H:{"0":0.51609}};
      +module.exports={C:{"52":0.00709,"66":0.00355,"88":0.01064,"97":0.00355,"102":0.00355,"110":0.01064,"115":0.20212,"116":0.00709,"117":0.02128,"118":0.60282,"119":0.07801,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 98 99 100 101 103 104 105 106 107 108 109 111 112 113 114 120 121 122 3.5 3.6"},D:{"11":0.00709,"38":0.00355,"49":0.03901,"50":0.00355,"74":0.01064,"75":0.00355,"76":0.00355,"79":0.00709,"81":0.01064,"85":0.00355,"86":0.01773,"87":0.00355,"88":0.06028,"89":0.00709,"91":0.00709,"92":0.00709,"93":0.07801,"94":0.00709,"95":0.01418,"100":0.00355,"102":0.07801,"103":0.18085,"105":0.00709,"106":0.01064,"107":0.00709,"108":0.00709,"109":0.64183,"110":0.00355,"111":0.01773,"112":0.02482,"113":0.03546,"114":0.07092,"115":0.08156,"116":0.74111,"117":7.19483,"118":8.54231,"119":0.01418,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 77 78 80 83 84 90 96 97 98 99 101 104 120 121 122"},F:{"28":0.0851,"91":0.00709,"101":0.01773,"102":0.20212,"103":0.02482,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00709,"84":0.00709,"102":0.01064,"105":0.01064,"109":0.09929,"110":0.00355,"111":0.00355,"112":0.01418,"113":0.01064,"114":0.02482,"115":0.02482,"116":0.08156,"117":2.38291,"118":2.42192,"119":0.00709,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 106 107 108"},E:{"12":0.00355,"14":0.03546,"15":0.01418,_:"0 4 5 6 7 8 9 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00355,"13.1":0.01773,"14.1":0.08865,"15.1":0.01773,"15.2-15.3":0.00355,"15.4":0.00709,"15.5":0.05674,"15.6":0.4858,"16.0":0.14539,"16.1":0.04964,"16.2":0.09574,"16.3":0.80494,"16.4":0.59927,"16.5":0.25531,"16.6":4.3864,"17.0":0.75884,"17.1":0.08865,"17.2":0.00355},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00192,"5.0-5.1":0.00192,"6.0-6.1":0.00575,"7.0-7.1":0.01343,"8.1-8.4":0.00192,"9.0-9.2":0.01343,"9.3":0.04604,"10.0-10.2":0.00192,"10.3":0.06713,"11.0-11.2":0.06138,"11.3-11.4":0.0211,"12.0-12.1":0.01726,"12.2-12.5":0.30498,"13.0-13.1":0.00959,"13.2":0.05179,"13.3":0.01918,"13.4-13.7":0.06138,"14.0-14.4":0.1688,"14.5-14.8":0.27237,"15.0-15.1":0.10742,"15.2-15.3":0.12276,"15.4":0.13619,"15.5":0.19373,"15.6-15.7":1.34077,"16.0":0.49488,"16.1":0.94756,"16.2":0.46227,"16.3":0.8574,"16.4":0.18414,"16.5":0.49104,"16.6-16.7":9.19743,"17.0":3.27616,"17.1":0.19757,"17.2":0.00575},P:{"4":0.17893,"20":0.04473,"21":0.2572,"22":3.16474,"23":0.60387,"5.0-5.4":0.01118,_:"6.2-6.4 8.2 10.1 12.0 15.0","7.2-7.4":0.13419,"9.2":0.04473,"11.1-11.2":0.03355,"13.0":0.03355,"14.0":0.01118,"16.0":0.05591,"17.0":0.02237,"18.0":0.04473,"19.0":0.04473},I:{"0":0.01926,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"10":0.04255,"11":0.01064,_:"6 7 8 9 5.5"},K:{"0":0.47114,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.0839},Q:{_:"13.1"},O:{"0":0.01291},H:{"0":0},L:{"0":42.86472}};
      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 8d5bd2cb857396..f40abccfb02e62 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.01377,"116":0.00459,"117":0.60601,"118":0.01377,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.03673,"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.01377,"94":0,"95":0,"96":0.00918,"97":0.00918,"98":0.02755,"99":0,"100":0.01377,"101":0.01377,"102":0,"103":0.13773,"104":0,"105":0.00918,"106":0.00459,"107":0,"108":0.00459,"109":0.28464,"110":0.00459,"111":0.01377,"112":0,"113":0.18823,"114":0.14691,"115":0.08723,"116":8.34185,"117":1.42321,"118":0.01377,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.01377,"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.00918,"101":0.16987,"102":0.26628,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00459,"110":0,"111":0,"112":0,"113":0,"114":0.00459,"115":0.03673,"116":2.02463,"117":1.73999},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00459,"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.00459,"13.1":0.07805,"14.1":0.03214,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.01377,"15.6":0.16987,"16.0":0,"16.1":0.04591,"16.2":0.18823,"16.3":0.05968,"16.4":0.05509,"16.5":0.28464,"16.6":0.68865,"17.0":0.03214,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.01718,"11.0-11.2":0.00736,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.10064,"13.0-13.1":0.00736,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.02455,"14.5-14.8":1.72564,"15.0-15.1":0.12519,"15.2-15.3":0.01473,"15.4":0.19392,"15.5":0.08346,"15.6-15.7":0.41484,"16.0":0.32893,"16.1":0.4222,"16.2":0.19392,"16.3":1.04815,"16.4":0.12764,"16.5":1.13406,"16.6":17.63684,"17.0":0.77813,"17.1":0},P:{"4":0.06412,"20":0.12825,"21":0.16031,"22":5.51456,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11756,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01069,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.01069,"17.0":0.44886,"18.0":0.04275,"19.0":0.12825},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.89525},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04591,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":47.17131},R:{_:"0"},M:{"0":0.10818},Q:{"13.1":0},O:{"0":0},H:{"0":0.03585}};
      +module.exports={C:{"78":0.24083,"104":0.02369,"115":0.01974,"117":0.0079,"118":1.83187,"119":0.08686,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"60":0.0079,"79":0.0079,"87":0.0079,"93":0.01184,"100":0.0079,"101":0.0079,"103":0.20924,"108":0.01184,"109":0.304,"110":0.05132,"111":0.0079,"113":0.22109,"114":0.01974,"115":0.13423,"116":1.09754,"117":10.20953,"118":6.51815,"119":0.01974,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 91 92 94 95 96 97 98 99 102 104 105 106 107 112 120 121 122"},F:{"101":0.0079,"102":0.46981,"103":0.1066,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.03158,"113":0.03948,"114":0.01184,"116":0.0079,"117":4.41386,"118":2.92942,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 115 119"},E:{"14":0.0079,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.4 17.2","13.1":0.08686,"14.1":0.18556,"15.1":0.08291,"15.2-15.3":0.03158,"15.5":0.01974,"15.6":0.76196,"16.0":0.0079,"16.1":0.07106,"16.2":0.54482,"16.3":0.2961,"16.4":0.16582,"16.5":0.33163,"16.6":2.53067,"17.0":2.11218,"17.1":0.0079},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00187,"5.0-5.1":0.00187,"6.0-6.1":0.00561,"7.0-7.1":0.01308,"8.1-8.4":0.00187,"9.0-9.2":0.01308,"9.3":0.04485,"10.0-10.2":0.00187,"10.3":0.0654,"11.0-11.2":0.05979,"11.3-11.4":0.02055,"12.0-12.1":0.01682,"12.2-12.5":0.2971,"13.0-13.1":0.00934,"13.2":0.05045,"13.3":0.01869,"13.4-13.7":0.05979,"14.0-14.4":0.16443,"14.5-14.8":0.26533,"15.0-15.1":0.10464,"15.2-15.3":0.11959,"15.4":0.13267,"15.5":0.18872,"15.6-15.7":1.30612,"16.0":0.48209,"16.1":0.92306,"16.2":0.45032,"16.3":0.83524,"16.4":0.17938,"16.5":0.47835,"16.6-16.7":8.95969,"17.0":3.19148,"17.1":0.19246,"17.2":0.00561},P:{"4":0.79173,"20":0.03299,"21":0.04399,"22":4.87135,"23":1.05564,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 16.0","7.2-7.4":0.08797,"11.1-11.2":0.06598,"12.0":0.05498,"13.0":0.011,"14.0":0.011,"15.0":0.011,"17.0":0.52782,"18.0":0.03299,"19.0":0.04399},I:{"0":0.08428,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.00605,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.07866},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":36.85712}};
      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 44f1127eb29664..79fef143c170a8 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00175,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00175,"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.0035,"103":0,"104":0,"105":0,"106":0.0035,"107":0.00175,"108":0.0035,"109":0,"110":0,"111":0,"112":0,"113":0.00175,"114":0,"115":0.02975,"116":0.00525,"117":0.10325,"118":0.00875,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00175,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0105,"50":0,"51":0.00175,"52":0,"53":0,"54":0,"55":0.0035,"56":0.0035,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.0035,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00175,"69":0,"70":0.00175,"71":0.00175,"72":0,"73":0,"74":0,"75":0.00175,"76":0.00175,"77":0,"78":0,"79":0.01225,"80":0,"81":0,"83":0.0035,"84":0.00175,"85":0.00175,"86":0.00175,"87":0.00175,"88":0.00175,"89":0.00175,"90":0.00175,"91":0.00175,"92":0.00525,"93":0,"94":0,"95":0.00175,"96":0,"97":0.00175,"98":0,"99":0,"100":0,"101":0.00175,"102":0.00175,"103":0.00525,"104":0,"105":0.0035,"106":0.00525,"107":0.0035,"108":0.007,"109":0.36225,"110":0.00175,"111":0.007,"112":0.00525,"113":0.0035,"114":0.01925,"115":0.02975,"116":1.07625,"117":0.3185,"118":0.0035,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00175,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.007,"47":0,"48":0,"49":0,"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.00175,"70":0,"71":0,"72":0.0035,"73":0.00175,"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,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0035,"96":0,"97":0,"98":0,"99":0,"100":0.0035,"101":0.028,"102":0.035,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00175,"90":0.00175,"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.00175,"107":0,"108":0.00175,"109":0.00525,"110":0,"111":0,"112":0.00175,"113":0.00175,"114":0,"115":0.0035,"116":0.06475,"117":0.06475},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00175,"10":0,"11":0,"12":0,"13":0,"14":0.00175,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00175,"13.1":0.0035,"14.1":0.0035,"15.1":0.00175,"15.2-15.3":0.00175,"15.4":0.00525,"15.5":0.014,"15.6":0.063,"16.0":0.00175,"16.1":0.01225,"16.2":0.01225,"16.3":0.028,"16.4":0.0105,"16.5":0.063,"16.6":0.29225,"17.0":0.02625,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.09223,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02306,"10.0-10.2":0,"10.3":0.05764,"11.0-11.2":0.02882,"11.3-11.4":0,"12.0-12.1":0.00576,"12.2-12.5":0.50147,"13.0-13.1":0,"13.2":0,"13.3":0.01153,"13.4-13.7":0.0634,"14.0-14.4":0.21327,"14.5-14.8":0.51877,"15.0-15.1":0.13257,"15.2-15.3":0.25362,"15.4":0.3055,"15.5":1.02024,"15.6-15.7":5.10697,"16.0":1.64853,"16.1":2.56501,"16.2":1.33727,"16.3":2.34022,"16.4":0.57641,"16.5":1.63123,"16.6":33.34518,"17.0":4.51327,"17.1":0.01153},P:{"4":0.14371,"20":0.06159,"21":0.18477,"22":3.0897,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.11291,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.03079,"12.0":0.01026,"13.0":0.03079,"14.0":0.04106,"15.0":0.01026,"16.0":0.06159,"17.0":0.10265,"18.0":0.02053,"19.0":0.07185},I:{"0":0,"3":0,"4":0.00339,"2.1":0,"2.2":0.00226,"2.3":0.00226,"4.1":0.0237,"4.2-4.3":0.00564,"4.4":0,"4.4.3-4.4.4":0.03725},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00175,"9":0,"10":0,"11":0.00175,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":35.356},R:{_:"0"},M:{"0":0.2145},Q:{"13.1":0},O:{"0":0.066},H:{"0":0.18745}};
      +module.exports={C:{"52":0.00914,"68":0.00152,"72":0.00152,"78":0.00152,"87":0.00305,"89":0.00305,"99":0.00152,"102":0.00457,"103":0.00152,"104":0.00152,"105":0.00457,"106":0.00152,"107":0.00457,"108":0.0061,"110":0.01219,"111":0.00152,"112":0.00152,"113":0.00305,"114":0.00152,"115":0.10668,"116":0.01067,"117":0.02438,"118":0.29108,"119":0.04877,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 88 90 91 92 93 94 95 96 97 98 100 101 109 120 121 122 3.5 3.6"},D:{"11":0.00152,"38":0.00152,"43":0.00152,"46":0.00152,"47":0.00152,"49":0.11582,"51":0.0061,"53":0.00152,"54":0.00152,"55":0.00152,"56":0.00152,"58":0.00152,"62":0.00305,"63":0.00152,"65":0.00152,"68":0.0061,"69":0.00305,"70":0.00457,"71":0.00305,"72":0.00152,"73":0.00152,"74":0.00152,"75":0.00457,"76":0.00457,"78":0.00152,"79":0.05182,"80":0.00305,"81":0.00152,"83":0.01981,"84":0.00457,"85":0.00305,"86":0.0061,"87":0.00762,"88":0.00457,"89":0.01219,"90":0.00457,"91":0.00457,"93":0.0061,"94":0.00305,"95":0.00305,"96":0.00305,"97":0.00762,"98":0.00152,"99":0.00305,"100":0.00305,"101":0.00305,"102":0.00762,"103":0.01829,"104":0.00305,"105":0.00762,"106":0.01219,"107":0.02896,"108":0.07163,"109":1.49962,"110":0.03505,"111":0.00914,"112":0.02591,"113":0.01219,"114":0.04877,"115":0.02743,"116":0.30023,"117":3.29032,"118":3.27508,"119":0.03048,_:"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 48 50 52 57 59 60 61 64 66 67 77 92 120 121 122"},F:{"28":0.00457,"36":0.00152,"40":0.00152,"46":0.01676,"69":0.00305,"94":0.00152,"95":0.01372,"102":0.20422,"103":0.05029,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00152,"18":0.00305,"84":0.00152,"86":0.00152,"89":0.0061,"92":0.00457,"106":0.01219,"107":0.00152,"108":0.00305,"109":0.01829,"110":0.01067,"111":0.00152,"112":0.0061,"113":0.00305,"114":0.00305,"115":0.00457,"116":0.01067,"117":0.3749,"118":0.32461,"119":0.00152,_:"13 14 15 16 17 79 80 81 83 85 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105"},E:{"9":0.00914,"13":0.00305,"14":0.00914,"15":0.00152,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.0061,"11.1":0.00152,"12.1":0.00305,"13.1":0.01067,"14.1":0.01524,"15.1":0.01676,"15.2-15.3":0.01219,"15.4":0.03048,"15.5":0.06096,"15.6":0.34138,"16.0":0.01067,"16.1":0.04877,"16.2":0.08687,"16.3":0.10058,"16.4":0.04724,"16.5":0.39776,"16.6":1.25882,"17.0":1.37008,"17.1":0.04724,"17.2":0.00305},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0057,"5.0-5.1":0.0057,"6.0-6.1":0.0171,"7.0-7.1":0.03989,"8.1-8.4":0.0057,"9.0-9.2":0.03989,"9.3":0.13676,"10.0-10.2":0.0057,"10.3":0.19944,"11.0-11.2":0.18235,"11.3-11.4":0.06268,"12.0-12.1":0.05129,"12.2-12.5":0.90605,"13.0-13.1":0.02849,"13.2":0.15386,"13.3":0.05698,"13.4-13.7":0.18235,"14.0-14.4":0.50146,"14.5-14.8":0.80917,"15.0-15.1":0.31911,"15.2-15.3":0.3647,"15.4":0.40459,"15.5":0.57554,"15.6-15.7":3.98319,"16.0":1.47019,"16.1":2.81502,"16.2":1.37332,"16.3":2.54719,"16.4":0.54705,"16.5":1.45879,"16.6-16.7":27.3239,"17.0":9.73289,"17.1":0.58694,"17.2":0.0171},P:{"4":0.10183,"20":0.05092,"21":0.1222,"22":1.79228,"23":0.3666,"5.0-5.4":0.01018,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.08147,"9.2":0.01018,"11.1-11.2":0.02037,"12.0":0.04073,"13.0":0.02037,"14.0":0.02037,"15.0":0.01018,"16.0":0.02037,"17.0":0.07128,"18.0":0.02037,"19.0":0.07128},I:{"0":0.04216,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"8":0.00492,"9":0.00164,"10":0.00164,"11":0.01313,_:"6 7 5.5"},K:{"0":0.09324,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00848,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.15257},Q:{_:"13.1"},O:{"0":0.02543},H:{"0":0},L:{"0":25.09228}};
      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 115158176719ce..297b6203f882de 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.01442,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":35.46107,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00721,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.04325,"72":0,"73":0,"74":0.09372,"75":0,"76":0,"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.00721,"101":0,"102":0.00721,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00721,"109":0,"110":0,"111":0.02163,"112":0.00721,"113":0,"114":0.00721,"115":0.10814,"116":0.02884,"117":0.3172,"118":0.02884,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01442,"50":0,"51":0,"52":0,"53":0.07209,"54":0,"55":0,"56":0,"57":0,"58":0.00721,"59":0,"60":0,"61":0,"62":0,"63":0.03605,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.03605,"71":0,"72":0,"73":0,"74":0.02163,"75":0,"76":0.0793,"77":0,"78":0,"79":0.06488,"80":0.0793,"81":0.00721,"83":0.17302,"84":0.02163,"85":0.02884,"86":0.05046,"87":0.00721,"88":0,"89":0.00721,"90":0.14418,"91":0.08651,"92":0.12255,"93":0.0793,"94":0.02884,"95":0.00721,"96":0,"97":0.05767,"98":0.04325,"99":0.07209,"100":0.01442,"101":0,"102":0.16581,"103":0.11534,"104":0,"105":0.05046,"106":0.06488,"107":0.04325,"108":0.10093,"109":1.62203,"110":0.02884,"111":0.02163,"112":0.02163,"113":0.02163,"114":0.10814,"115":0.22348,"116":6.22858,"117":1.50668,"118":0.01442,"119":0,"120":0},F:{"9":0,"11":0,"12":0.08651,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.01442,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.02884,"63":0,"64":0,"65":0,"66":0,"67":0.00721,"68":0,"69":0.00721,"70":0.02884,"71":0,"72":0.02163,"73":0.00721,"74":0,"75":0,"76":0.03605,"77":0.04325,"78":0,"79":0.00721,"80":0,"81":0,"82":0.00721,"83":0,"84":0.02163,"85":0.00721,"86":0,"87":0.00721,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.02884,"94":0,"95":0.02884,"96":0,"97":0,"98":0,"99":0.00721,"100":0.02884,"101":0.47579,"102":0.27394,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01442,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01442,"108":0,"109":0,"110":0.04325,"111":0,"112":0,"113":0,"114":0.00721,"115":0.01442,"116":0.29557,"117":0.2379},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00721,"15":0.00721,_:"0","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.00721,"14.1":0.01442,"15.1":0.00721,"15.2-15.3":0.02163,"15.4":0.01442,"15.5":0.00721,"15.6":0.05046,"16.0":0.00721,"16.1":0.05767,"16.2":0.01442,"16.3":0.06488,"16.4":0.02163,"16.5":0.05046,"16.6":0.33882,"17.0":0.02884,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00381,"6.0-6.1":0.00953,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0324,"10.0-10.2":0,"10.3":0.02287,"11.0-11.2":0.00953,"11.3-11.4":0.00572,"12.0-12.1":0.00762,"12.2-12.5":0.20585,"13.0-13.1":0.00191,"13.2":0.00381,"13.3":6.44613,"13.4-13.7":0.03431,"14.0-14.4":0.09911,"14.5-14.8":0.21729,"15.0-15.1":0.06671,"15.2-15.3":0.0629,"15.4":0.05337,"15.5":0.13533,"15.6-15.7":1.06737,"16.0":0.41932,"16.1":0.49747,"16.2":0.29924,"16.3":0.4765,"16.4":0.12389,"16.5":0.47078,"16.6":6.93979,"17.0":1.23891,"17.1":0},P:{"4":0,"20":0.02073,"21":0.0622,"22":0.72566,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02073,"8.2":0.0311,"9.2":0,"10.1":0,"11.1-11.2":0.01037,"12.0":0,"13.0":0.01037,"14.0":0,"15.0":0,"16.0":0.01037,"17.0":0.01037,"18.0":0.01037,"19.0":0.0311},I:{"0":0,"3":0,"4":0.00201,"2.1":0,"2.2":0,"2.3":0.00603,"4.1":0.00302,"4.2-4.3":0.00603,"4.4":0,"4.4.3-4.4.4":0.02011},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00721,"9":0,"10":0,"11":0.02884,"5.5":0},S:{"2.5":0.00279,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":26.34846},R:{_:"0"},M:{"0":0.06698},Q:{"13.1":0},O:{"0":0.11722},H:{"0":0.17175}};
      +module.exports={C:{"52":52.0869,"56":0.00729,"68":0.00729,"102":0.00729,"104":0.00729,"108":0.00729,"110":0.00729,"112":0.00729,"115":0.19686,"116":0.00729,"117":0.02916,"118":0.39371,"119":0.05104,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 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 105 106 107 109 111 113 114 120 121 122 3.5 3.6"},D:{"48":0.02187,"49":0.03646,"51":0.01458,"79":0.01458,"80":0.01458,"85":0.00729,"87":0.00729,"89":0.00729,"92":0.00729,"94":0.00729,"96":0.00729,"97":0.02916,"98":0.03646,"99":0.01458,"100":0.00729,"102":0.02916,"103":0.03646,"104":0.00729,"105":0.00729,"106":0.02916,"107":0.02916,"108":0.05833,"109":2.1873,"110":0.03646,"111":0.00729,"112":0.04375,"113":0.02916,"114":0.0802,"115":0.06562,"116":0.65619,"117":5.68698,"118":6.32859,"119":0.01458,"120":0.01458,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 86 88 90 91 93 95 101 121 122"},F:{"71":0.00729,"79":0.00729,"82":0.01458,"85":0.00729,"95":0.10207,"101":0.01458,"102":0.59057,"103":0.19686,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.02916,"98":0.00729,"106":0.00729,"109":0.00729,"111":0.03646,"115":0.00729,"116":0.00729,"117":0.43017,"118":0.45933,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 103 104 105 107 108 110 112 113 114 119"},E:{"14":0.01458,"15":0.02187,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 17.2","13.1":0.02187,"14.1":0.02187,"15.2-15.3":0.00729,"15.4":0.00729,"15.5":0.00729,"15.6":0.0802,"16.0":0.00729,"16.1":0.18957,"16.2":0.02187,"16.3":0.13853,"16.4":0.03646,"16.5":0.07291,"16.6":0.27706,"17.0":0.3281,"17.1":0.02187},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00071,"5.0-5.1":0.00071,"6.0-6.1":0.00212,"7.0-7.1":0.00495,"8.1-8.4":0.00071,"9.0-9.2":0.00495,"9.3":0.01698,"10.0-10.2":0.00071,"10.3":0.02477,"11.0-11.2":0.02264,"11.3-11.4":0.00778,"12.0-12.1":0.00637,"12.2-12.5":0.11251,"13.0-13.1":0.00354,"13.2":0.0191,"13.3":0.00708,"13.4-13.7":0.02264,"14.0-14.4":0.06227,"14.5-14.8":0.10048,"15.0-15.1":0.03962,"15.2-15.3":0.04529,"15.4":0.05024,"15.5":0.07147,"15.6-15.7":0.4946,"16.0":0.18256,"16.1":0.34955,"16.2":0.17053,"16.3":0.31629,"16.4":0.06793,"16.5":0.18114,"16.6-16.7":3.39285,"17.0":1.20855,"17.1":0.07288,"17.2":0.00212},P:{"4":0.03142,"20":0.03142,"21":0.06284,"22":0.62838,"23":0.12568,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0","7.2-7.4":0.05237,"11.1-11.2":0.01047,"16.0":0.01047,"17.0":0.01047,"18.0":0.01047,"19.0":0.03142},I:{"0":0.01078,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"8":0.00729,"11":0.03646,_:"6 7 9 10 5.5"},K:{"0":0.24455,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00271,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.06233},Q:{_:"13.1"},O:{"0":0.13279},H:{"0":0.04},L:{"0":18.56323}};
      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 25d64b00b3e895..4b1dbe7a562090 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00793,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00397,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.0119,"100":0,"101":0,"102":0.00793,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00793,"112":0,"113":0.0119,"114":0,"115":0.07141,"116":0.0119,"117":0.15868,"118":0.01984,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00397,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00793,"32":0,"33":0,"34":0,"35":0.00793,"36":0,"37":0,"38":0,"39":0,"40":0.02777,"41":0,"42":0.0119,"43":0.0119,"44":0,"45":0,"46":0.00397,"47":0,"48":0,"49":0.00397,"50":0,"51":0.00397,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00397,"59":0.00397,"60":0.00397,"61":0,"62":0,"63":0.00397,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00397,"71":0,"72":0,"73":0.00397,"74":0.0119,"75":0.00397,"76":0.0119,"77":0.00397,"78":0,"79":0.00793,"80":0.00397,"81":0.0238,"83":0.00397,"84":0.00397,"85":0,"86":0.01984,"87":0.03174,"88":0.00793,"89":0.00397,"90":0.01984,"91":0.00793,"92":0.00793,"93":0.00793,"94":0.00793,"95":0.0119,"96":0,"97":0.00397,"98":0,"99":0.00793,"100":0.00397,"101":0.00397,"102":0.01587,"103":0.0119,"104":0,"105":0.00793,"106":0.00793,"107":0.00793,"108":0.01984,"109":0.92431,"110":0.00793,"111":0.00793,"112":0.0119,"113":0.01587,"114":0.05554,"115":0.05554,"116":2.78483,"117":0.89258,"118":0.0119,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00397,"33":0,"34":0,"35":0,"36":0,"37":0.00397,"38":0,"39":0,"40":0,"41":0,"42":0.00397,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01984,"62":0,"63":0.00793,"64":0,"65":0,"66":0.00397,"67":0.0119,"68":0,"69":0.03174,"70":0.01587,"71":0.01587,"72":0.03967,"73":0.0119,"74":0,"75":0,"76":0,"77":0.00397,"78":0.00793,"79":0.00397,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00397,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.06347,"96":0,"97":0,"98":0,"99":0,"100":0.00793,"101":0.11504,"102":0.16661,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00397,"13":0.00793,"14":0.00397,"15":0.00397,"16":0,"17":0,"18":0.01587,"79":0,"80":0,"81":0,"83":0,"84":0.0119,"85":0.00397,"86":0,"87":0,"88":0.00397,"89":0.00397,"90":0.00793,"91":0,"92":0.0119,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00397,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.03967,"110":0.00793,"111":0.00793,"112":0.00793,"113":0.00397,"114":0.01984,"115":0.05157,"116":0.61092,"117":0.53555},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.00397,"13.1":0.0119,"14.1":0.00397,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.0119,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0.00397,"16.6":0.0238,"17.0":0.00793,"17.1":0},G:{"8":0.00254,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00635,"5.0-5.1":0.00762,"6.0-6.1":0,"7.0-7.1":0.06735,"8.1-8.4":0.00381,"9.0-9.2":0.00254,"9.3":0.12581,"10.0-10.2":0.00127,"10.3":0.25289,"11.0-11.2":0.0216,"11.3-11.4":0.00254,"12.0-12.1":0.04448,"12.2-12.5":2.0727,"13.0-13.1":0.00381,"13.2":0.01525,"13.3":0.29229,"13.4-13.7":0.21858,"14.0-14.4":0.36726,"14.5-14.8":0.51976,"15.0-15.1":0.2351,"15.2-15.3":0.183,"15.4":0.16648,"15.5":0.34693,"15.6-15.7":3.2177,"16.0":0.28339,"16.1":0.43081,"16.2":0.19698,"16.3":0.50197,"16.4":0.28593,"16.5":0.63668,"16.6":1.76389,"17.0":0.31389,"17.1":0},P:{"4":0.30639,"20":0.0817,"21":0.14298,"22":0.40852,"5.0-5.4":0.02043,"6.2-6.4":0,"7.2-7.4":0.09192,"8.2":0.01021,"9.2":0.01021,"10.1":0,"11.1-11.2":0.01021,"12.0":0,"13.0":0.05107,"14.0":0.04085,"15.0":0.01021,"16.0":0.06128,"17.0":0.05107,"18.0":0.09192,"19.0":0.04085},I:{"0":0,"3":0,"4":0.00096,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00911,"4.2-4.3":0.04106,"4.4":0,"4.4.3-4.4.4":0.14491},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00397,"8":0.0119,"9":0,"10":0,"11":0.00793,"5.5":0},S:{"2.5":0.19306,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":75.71373},R:{_:"0"},M:{"0":0.10256},Q:{"13.1":0.00603},O:{"0":0.27149},H:{"0":0.74823}};
      +module.exports={C:{"34":0.01376,"78":0.00344,"97":0.00344,"99":0.01376,"102":0.00688,"108":0.00344,"110":0.00344,"112":0.00344,"115":0.1204,"116":0.00344,"117":0.01032,"118":0.3268,"119":0.086,"120":0.00344,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 100 101 103 104 105 106 107 109 111 113 114 121 122 3.5 3.6"},D:{"11":0.01032,"31":0.00344,"40":0.00344,"42":0.01376,"43":0.0344,"46":0.00344,"47":0.00344,"49":0.00688,"50":0.00344,"53":0.00688,"55":0.00344,"60":0.00344,"63":0.00344,"67":0.00344,"69":0.00344,"70":0.00344,"71":0.00344,"73":0.00688,"75":0.01032,"76":0.00344,"77":0.00344,"78":0.00344,"79":0.0172,"80":0.00688,"81":0.06536,"83":0.00344,"84":0.01032,"85":0.00688,"86":0.0344,"87":0.11352,"88":0.02064,"89":0.01376,"90":0.01376,"91":0.0172,"92":0.01376,"93":0.01376,"94":0.0172,"95":0.0172,"96":0.00344,"97":0.00344,"98":0.00344,"99":0.01032,"100":0.01032,"101":0.00688,"102":0.06192,"103":0.0344,"104":0.00344,"105":0.01032,"106":0.0172,"107":0.01376,"108":0.03096,"109":2.04336,"110":0.01376,"111":0.01032,"112":0.02752,"113":0.0172,"114":0.086,"115":0.05504,"116":0.33368,"117":3.5604,"118":4.52016,"119":0.0344,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 44 45 48 51 52 54 56 57 58 59 61 62 64 65 66 68 72 74 120 121 122"},F:{"32":0.00688,"42":0.00344,"78":0.00688,"79":0.02064,"85":0.00344,"87":0.00344,"94":0.00344,"95":0.17544,"101":0.00344,"102":0.32336,"103":0.2752,_:"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 80 81 82 83 84 86 88 89 90 91 92 93 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00688,"13":0.00344,"14":0.00344,"15":0.00344,"18":0.02408,"84":0.01032,"89":0.0172,"90":0.01032,"92":0.0172,"100":0.00688,"101":0.00344,"104":0.00688,"105":0.00344,"107":0.00344,"109":0.09976,"110":0.00344,"111":0.01032,"112":0.01032,"113":0.02064,"114":0.02408,"115":0.03784,"116":0.07568,"117":1.21088,"118":1.24528,_:"16 17 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 102 103 106 108 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.4 15.5 16.0 16.4","12.1":0.00344,"13.1":0.02064,"14.1":0.01032,"15.2-15.3":0.00344,"15.6":0.03096,"16.1":0.00344,"16.2":0.00344,"16.3":0.00344,"16.5":0.00344,"16.6":0.0344,"17.0":0.02752,"17.1":0.0172,"17.2":0.00688},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00091,"5.0-5.1":0.00091,"6.0-6.1":0.00274,"7.0-7.1":0.00638,"8.1-8.4":0.00091,"9.0-9.2":0.00638,"9.3":0.02188,"10.0-10.2":0.00091,"10.3":0.03191,"11.0-11.2":0.02918,"11.3-11.4":0.01003,"12.0-12.1":0.00821,"12.2-12.5":0.14498,"13.0-13.1":0.00456,"13.2":0.02462,"13.3":0.00912,"13.4-13.7":0.02918,"14.0-14.4":0.08024,"14.5-14.8":0.12948,"15.0-15.1":0.05106,"15.2-15.3":0.05836,"15.4":0.06474,"15.5":0.0921,"15.6-15.7":0.63738,"16.0":0.23525,"16.1":0.45045,"16.2":0.21975,"16.3":0.40759,"16.4":0.08754,"16.5":0.23343,"16.6-16.7":4.37227,"17.0":1.55742,"17.1":0.09392,"17.2":0.00274},P:{"4":0.47667,"20":0.0829,"21":0.11399,"22":0.35232,"23":0.05181,"5.0-5.4":0.01036,_:"6.2-6.4 8.2 12.0","7.2-7.4":0.14507,"9.2":0.02072,"10.1":0.01036,"11.1-11.2":0.01036,"13.0":0.04145,"14.0":0.03109,"15.0":0.02072,"16.0":0.07254,"17.0":0.06217,"18.0":0.07254,"19.0":0.05181},I:{"0":0.11748,"3":0,"4":0.00002,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00035},A:{"11":0.01376,_:"6 7 8 9 10 5.5"},K:{"0":0.58376,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.15088,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.08528},Q:{"13.1":0.00656},O:{"0":0.23616},H:{"0":0.21},L:{"0":71.56984}};
      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 203d49a6573580..49b6f38e01e7a2 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01602,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.004,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.004,"67":0,"68":0.004,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.004,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.004,"87":0.004,"88":0.01201,"89":0,"90":0.004,"91":0.04004,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.004,"100":0.004,"101":0,"102":0.00801,"103":0.004,"104":0.00801,"105":0.004,"106":0.004,"107":0.004,"108":0.004,"109":0.004,"110":0.004,"111":0.004,"112":0.004,"113":0.004,"114":0.01201,"115":0.19219,"116":0.03203,"117":0.44444,"118":0.03604,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.004,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02803,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.01602,"63":0,"64":0,"65":0,"66":0.01201,"67":0,"68":0,"69":0,"70":0.004,"71":0,"72":0.004,"73":0,"74":0.004,"75":0.004,"76":0.004,"77":0,"78":0.004,"79":0.01602,"80":0.004,"81":0.004,"83":0.004,"84":0.004,"85":0.004,"86":0.004,"87":0.00801,"88":0.01201,"89":0.004,"90":0.004,"91":0.01201,"92":0.00801,"93":0.00801,"94":0.00801,"95":0.00801,"96":0.004,"97":0.00801,"98":0.004,"99":0.00801,"100":0.004,"101":0.00801,"102":0.00801,"103":0.02803,"104":0.01201,"105":0.01602,"106":0.01201,"107":0.01602,"108":0.02402,"109":1.8058,"110":0.01201,"111":0.01201,"112":0.02402,"113":0.03203,"114":0.08008,"115":0.16016,"116":7.57156,"117":2.23423,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.004,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.004,"71":0,"72":0.00801,"73":0.004,"74":0,"75":0,"76":0,"77":0.01201,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.004,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02803,"96":0,"97":0,"98":0,"99":0.004,"100":0.12012,"101":0.22022,"102":0.42442,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.004,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.004,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.02002,"110":0,"111":0,"112":0.004,"113":0.004,"114":0.01201,"115":0.02002,"116":0.54454,"117":0.46046},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.004,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.004,"10.1":0,"11.1":0.004,"12.1":0,"13.1":0.00801,"14.1":0.01602,"15.1":0,"15.2-15.3":0,"15.4":0.004,"15.5":0.004,"15.6":0.03203,"16.0":0,"16.1":0.00801,"16.2":0.004,"16.3":0.01201,"16.4":0.00801,"16.5":0.02402,"16.6":0.11612,"17.0":0.00801,"17.1":0},G:{"8":0,"3.2":0.00142,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01495,"6.0-6.1":0,"7.0-7.1":0.00214,"8.1-8.4":0.00142,"9.0-9.2":0,"9.3":0.02064,"10.0-10.2":0,"10.3":0.01566,"11.0-11.2":0.00142,"11.3-11.4":0.04555,"12.0-12.1":0.00214,"12.2-12.5":0.11601,"13.0-13.1":0.00214,"13.2":0.00071,"13.3":0.02135,"13.4-13.7":0.01281,"14.0-14.4":0.02562,"14.5-14.8":0.06548,"15.0-15.1":0.01495,"15.2-15.3":0.01922,"15.4":0.02491,"15.5":0.04199,"15.6-15.7":0.73305,"16.0":0.12455,"16.1":0.28397,"16.2":0.11316,"16.3":0.28041,"16.4":0.03914,"16.5":0.14661,"16.6":4.47945,"17.0":0.34375,"17.1":0.00071},P:{"4":0.10193,"20":0.06116,"21":0.13251,"22":2.28328,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.19367,"8.2":0.01019,"9.2":0,"10.1":0,"11.1-11.2":0.01019,"12.0":0.01019,"13.0":0.03058,"14.0":0.02039,"15.0":0.01019,"16.0":0.03058,"17.0":0.10193,"18.0":0.02039,"19.0":0.04077},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01008,"4.4":0,"4.4.3-4.4.4":0.05795},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01602,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":72.40833},R:{_:"0"},M:{"0":0.11992},Q:{"13.1":0},O:{"0":0.03598},H:{"0":0.16462}};
      +module.exports={C:{"52":0.03235,"59":0.00809,"60":0.00404,"66":0.00404,"68":0.00404,"72":0.00404,"73":0.00404,"78":0.01213,"80":0.00404,"82":0.00404,"84":0.00404,"86":0.01213,"87":0.00809,"88":0.02831,"89":0.00404,"90":0.01213,"91":0.09706,"93":0.00404,"99":0.00404,"100":0.00404,"101":0.00404,"102":0.00809,"103":0.02426,"104":0.00404,"105":0.00809,"106":0.00809,"107":0.00404,"108":0.00404,"109":0.00404,"110":0.00809,"111":0.00404,"112":0.01213,"113":0.02022,"114":0.02426,"115":0.4044,"116":0.01213,"117":0.04044,"118":0.8735,"119":0.18602,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 61 62 63 64 65 67 69 70 71 74 75 76 77 79 81 83 85 92 94 95 96 97 98 120 121 122 3.5 3.6"},D:{"34":0.00404,"38":0.01213,"47":0.00404,"49":0.05662,"51":0.00404,"58":0.00404,"60":0.00404,"62":0.02831,"63":0.00404,"66":0.02831,"67":0.00404,"70":0.00404,"71":0.00404,"73":0.00404,"74":0.00404,"75":0.00404,"76":0.00404,"77":0.00404,"78":0.00809,"79":0.03235,"80":0.00404,"81":0.00809,"83":0.00809,"84":0.00404,"85":0.01213,"86":0.00809,"87":0.01213,"88":0.02831,"89":0.01213,"90":0.01213,"91":0.04448,"92":0.0364,"93":0.01213,"94":0.01213,"95":0.01618,"96":0.01213,"97":0.01618,"98":0.00809,"99":0.01213,"100":0.01213,"101":0.01618,"102":0.01213,"103":0.0647,"104":0.02022,"105":0.0364,"106":0.02022,"107":0.03235,"108":0.05257,"109":3.99143,"110":0.02426,"111":0.02831,"112":0.04448,"113":0.0364,"114":0.10919,"115":0.10514,"116":0.7441,"117":11.82466,"118":13.34116,"119":0.01213,"120":0.00404,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 52 53 54 55 56 57 59 61 64 65 68 69 72 121 122"},F:{"28":0.00809,"36":0.00404,"77":0.00404,"79":0.00404,"85":0.00809,"86":0.00404,"89":0.00404,"91":0.00404,"95":0.06066,"100":0.00404,"101":0.00404,"102":2.17972,"103":0.20624,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 84 87 88 90 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00404,"18":0.00404,"92":0.02426,"106":0.00404,"108":0.00404,"109":0.04853,"110":0.00404,"111":0.00404,"112":0.00404,"113":0.01213,"114":0.01213,"115":0.01618,"116":0.03235,"117":1.26173,"118":1.29812,"119":0.00404,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 107"},E:{"14":0.00809,"15":0.00404,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 15.2-15.3 17.2","5.1":0.00404,"11.1":0.00809,"12.1":0.00404,"13.1":0.02022,"14.1":0.04044,"15.1":0.00404,"15.4":0.00404,"15.5":0.00809,"15.6":0.06875,"16.0":0.00404,"16.1":0.01618,"16.2":0.00809,"16.3":0.02831,"16.4":0.01213,"16.5":0.04044,"16.6":0.2022,"17.0":0.12536,"17.1":0.00809},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00047,"5.0-5.1":0.00047,"6.0-6.1":0.00142,"7.0-7.1":0.00331,"8.1-8.4":0.00047,"9.0-9.2":0.00331,"9.3":0.01134,"10.0-10.2":0.00047,"10.3":0.01653,"11.0-11.2":0.01511,"11.3-11.4":0.0052,"12.0-12.1":0.00425,"12.2-12.5":0.0751,"13.0-13.1":0.00236,"13.2":0.01275,"13.3":0.00472,"13.4-13.7":0.01511,"14.0-14.4":0.04156,"14.5-14.8":0.06707,"15.0-15.1":0.02645,"15.2-15.3":0.03023,"15.4":0.03353,"15.5":0.0477,"15.6-15.7":0.33015,"16.0":0.12186,"16.1":0.23332,"16.2":0.11383,"16.3":0.21112,"16.4":0.04534,"16.5":0.12091,"16.6-16.7":2.26473,"17.0":0.80671,"17.1":0.04865,"17.2":0.00142},P:{"4":0.10181,"20":0.04072,"21":0.11199,"22":1.80201,"23":0.45814,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.16289,"9.2":0.01018,"11.1-11.2":0.01018,"12.0":0.01018,"13.0":0.03054,"14.0":0.02036,"15.0":0.01018,"16.0":0.03054,"17.0":0.09163,"18.0":0.02036,"19.0":0.03054},I:{"0":0.0237,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"11":0.04853,_:"6 7 8 9 10 5.5"},K:{"0":0.15677,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.12508},Q:{_:"13.1"},O:{"0":0.03574},H:{"0":0.01},L:{"0":52.72634}};
      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 9aaa11b099f2dc..5466da842d928f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.01425,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.04276,"116":0.00713,"117":0.47744,"118":0.0285,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.40618,"76":0.01425,"77":0,"78":0,"79":0.01425,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.14965,"88":0.1924,"89":0,"90":0,"91":0,"92":0,"93":13.99546,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00713,"102":0,"103":0.73398,"104":0,"105":0.5202,"106":0.00713,"107":0,"108":0.01425,"109":0.5487,"110":0.02138,"111":0.02138,"112":0.00713,"113":0.0285,"114":2.04516,"115":1.73162,"116":14.92184,"117":0.42756,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00713,"101":0.00713,"102":0.00713,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.0285,"110":0,"111":0,"112":0,"113":0,"114":0.07839,"115":0.01425,"116":0.77673,"117":1.22567},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.22091,"15":0.00713,_:"0","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.01425,"13.1":0.02138,"14.1":0.34917,"15.1":0.64134,"15.2-15.3":0.54158,"15.4":0.06413,"15.5":0.29217,"15.6":0.71973,"16.0":0.01425,"16.1":0.14965,"16.2":0.22091,"16.3":0.36343,"16.4":0.13539,"16.5":1.76725,"16.6":5.316,"17.0":0.31354,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0137,"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.0274,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.00913,"14.5-14.8":0.0274,"15.0-15.1":0.0685,"15.2-15.3":0.07307,"15.4":0.25117,"15.5":0.42014,"15.6-15.7":3.19217,"16.0":1.6349,"16.1":3.2013,"16.2":1.24216,"16.3":2.47975,"16.4":0.43384,"16.5":1.23759,"16.6":28.68384,"17.0":2.20575,"17.1":0.00457},P:{"4":0,"20":0,"21":0.01042,"22":0.15627,"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,"19.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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":3.73515},R:{_:"0"},M:{"0":0.21842},Q:{"13.1":0},O:{"0":0.02299},H:{"0":0.00544}};
      +module.exports={C:{"115":0.23293,"118":1.00937,"119":0.17747,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 120 121 122 3.5 3.6"},D:{"61":0.25512,"65":0.00555,"74":0.00555,"75":0.21075,"76":0.04437,"79":0.00555,"84":0.00555,"86":0.00555,"87":0.11647,"88":0.01109,"90":0.00555,"91":0.00555,"92":0.00555,"93":0.38822,"96":0.00555,"98":0.00555,"99":0.00555,"100":0.07764,"101":0.00555,"103":0.58233,"105":0.2052,"106":0.00555,"108":0.01664,"109":0.60451,"110":0.00555,"111":0.05546,"112":0.00555,"113":0.24957,"114":3.48289,"115":0.03882,"116":4.86939,"117":7.72558,"118":0.85963,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 66 67 68 69 70 71 72 73 77 78 80 81 83 85 89 94 95 97 102 104 107 119 120 121 122"},F:{"101":0.00555,"102":0.03328,"103":0.03328,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01109,"96":0.00555,"100":0.26621,"109":0.04437,"115":0.01664,"116":0.01109,"117":1.78027,"118":0.26066,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 114 119"},E:{"12":0.00555,"13":0.00555,"14":0.0721,"15":0.00555,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.2","13.1":0.12201,"14.1":0.04991,"15.1":1.09811,"15.2-15.3":0.64888,"15.4":0.21075,"15.5":3.45516,"15.6":1.85791,"16.0":0.66552,"16.1":0.33276,"16.2":0.51578,"16.3":2.09084,"16.4":0.18856,"16.5":0.95946,"16.6":9.58903,"17.0":3.20559,"17.1":0.30503},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00417,"5.0-5.1":0.00417,"6.0-6.1":0.01251,"7.0-7.1":0.02919,"8.1-8.4":0.00417,"9.0-9.2":0.02919,"9.3":0.1001,"10.0-10.2":0.00417,"10.3":0.14597,"11.0-11.2":0.13346,"11.3-11.4":0.04588,"12.0-12.1":0.03754,"12.2-12.5":0.66314,"13.0-13.1":0.02085,"13.2":0.11261,"13.3":0.04171,"13.4-13.7":0.13346,"14.0-14.4":0.36702,"14.5-14.8":0.59224,"15.0-15.1":0.23356,"15.2-15.3":0.26692,"15.4":0.29612,"15.5":0.42124,"15.6-15.7":2.91531,"16.0":1.07604,"16.1":2.06032,"16.2":1.00513,"16.3":1.86429,"16.4":0.40039,"16.5":1.06769,"16.6-16.7":19.99841,"17.0":7.12352,"17.1":0.42958,"17.2":0.01251},P:{"21":0.01032,"22":0.38195,"23":0.01032,_:"4 20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","17.0":0.05161},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.06234,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.1425},Q:{_:"13.1"},O:{"0":0.01336},H:{"0":0},L:{"0":2.59213}};
      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 f12e3d0e1cffd0..14a330399ef692 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00542,"48":0.00542,"49":0,"50":0,"51":0,"52":0.03251,"53":0.00542,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02168,"69":0,"70":0,"71":0,"72":0,"73":0.00542,"74":0,"75":0,"76":0,"77":0,"78":0.03251,"79":0,"80":0,"81":0,"82":0,"83":0.00542,"84":0,"85":0,"86":0,"87":0,"88":0.00542,"89":0,"90":0,"91":0.01626,"92":0,"93":0,"94":0,"95":0,"96":0.01626,"97":0,"98":0,"99":0.00542,"100":0,"101":0,"102":0.52564,"103":0.00542,"104":0.00542,"105":0.01084,"106":0.00542,"107":0.01084,"108":0.01084,"109":0.02168,"110":0.01084,"111":0.01626,"112":0.01084,"113":0.02168,"114":0.03251,"115":0.4281,"116":0.20592,"117":3.18637,"118":0.30888,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01084,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01084,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00542,"66":0,"67":0,"68":0.00542,"69":0.00542,"70":0.00542,"71":0,"72":0,"73":0,"74":0,"75":0.00542,"76":0.00542,"77":0.00542,"78":0.00542,"79":0.05961,"80":0.00542,"81":0.07045,"83":0.00542,"84":0.00542,"85":0.01084,"86":0.07045,"87":0.01626,"88":0.01084,"89":0.03251,"90":0.0271,"91":0,"92":0,"93":0.00542,"94":0.00542,"95":0.00542,"96":0.00542,"97":0.00542,"98":0.01626,"99":0.01626,"100":0.07045,"101":0.13006,"102":0.08129,"103":0.09754,"104":0.07587,"105":0.00542,"106":0.01626,"107":0.01084,"108":0.03251,"109":0.50397,"110":0.04877,"111":0.03793,"112":0.03251,"113":0.0867,"114":0.24927,"115":0.28721,"116":8.31275,"117":3.0238,"118":0.00542,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00542,"47":0,"48":0,"49":0,"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.00542,"70":0,"71":0.00542,"72":0.01084,"73":0,"74":0,"75":0,"76":0,"77":0.03793,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01084,"86":0,"87":0.00542,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0271,"96":0,"97":0,"98":0,"99":0.01626,"100":0.18425,"101":0.52022,"102":1.36559,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00542,"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.00542,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01084,"108":0.01084,"109":0.0867,"110":0.01626,"111":0.00542,"112":0.01626,"113":0.03251,"114":0.10296,"115":0.11922,"116":2.40604,"117":2.43855},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00542,"14":0.04877,"15":0.00542,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01626,"10.1":0,"11.1":0.00542,"12.1":0.01084,"13.1":0.0867,"14.1":0.11922,"15.1":0.01626,"15.2-15.3":0.01626,"15.4":0.0271,"15.5":0.03793,"15.6":0.25469,"16.0":0.03793,"16.1":0.08129,"16.2":0.08129,"16.3":0.18967,"16.4":0.0867,"16.5":0.26553,"16.6":1.3114,"17.0":0.1138,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00582,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04659,"10.0-10.2":0,"10.3":0.06406,"11.0-11.2":0.01165,"11.3-11.4":0.01165,"12.0-12.1":0.01165,"12.2-12.5":0.27079,"13.0-13.1":0.01165,"13.2":0.02621,"13.3":0.02038,"13.4-13.7":0.03203,"14.0-14.4":0.14558,"14.5-14.8":0.34649,"15.0-15.1":0.13394,"15.2-15.3":0.10191,"15.4":0.11647,"15.5":0.19508,"15.6-15.7":1.42673,"16.0":1.04821,"16.1":1.60725,"16.2":0.75704,"16.3":1.39178,"16.4":0.23876,"16.5":0.93756,"16.6":17.29249,"17.0":2.47784,"17.1":0.00582},P:{"4":0.18599,"20":0.062,"21":0.16532,"22":3.57507,"5.0-5.4":0.01033,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01033,"12.0":0,"13.0":0.02067,"14.0":0.031,"15.0":0.01033,"16.0":0.02067,"17.0":0.031,"18.0":0.02067,"19.0":0.062},I:{"0":0,"3":0,"4":0.0029,"2.1":0,"2.2":0,"2.3":0.0029,"4.1":0.02614,"4.2-4.3":0.01162,"4.4":0,"4.4.3-4.4.4":0.1394},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00542,"10":0,"11":0.04335,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.56177},R:{_:"0"},M:{"0":0.85207},Q:{"13.1":0},O:{"0":0.03665},H:{"0":0.4337}};
      +module.exports={C:{"47":0.00537,"48":0.00537,"52":0.05907,"53":0.00537,"65":0.00537,"68":0.01611,"72":0.00537,"75":0.00537,"78":0.04296,"83":0.01074,"88":0.00537,"91":0.02148,"94":0.00537,"96":0.02685,"99":0.00537,"102":0.20406,"103":0.00537,"104":0.01074,"105":0.01074,"106":0.00537,"107":0.01074,"108":0.01611,"109":0.03222,"110":0.01611,"111":0.01074,"112":0.00537,"113":0.02148,"114":0.03759,"115":0.95586,"116":0.04833,"117":0.22017,"118":4.8867,"119":0.98271,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 76 77 79 80 81 82 84 85 86 87 89 90 92 93 95 97 98 100 101 120 121 122 3.5 3.6"},D:{"34":0.00537,"38":0.01074,"49":0.02148,"65":0.00537,"68":0.00537,"70":0.00537,"75":0.00537,"77":0.00537,"78":0.00537,"79":0.11277,"80":0.01074,"81":0.01074,"83":0.01074,"84":0.00537,"85":0.01611,"86":0.13425,"87":0.03759,"88":0.01074,"89":0.04833,"90":0.01074,"91":0.00537,"92":0.00537,"93":0.01074,"94":0.00537,"95":0.00537,"96":0.01074,"97":0.00537,"98":0.00537,"99":0.01611,"100":0.13425,"101":0.25239,"102":0.13962,"103":0.18795,"104":0.13962,"105":0.01611,"106":0.01074,"107":0.02685,"108":0.06444,"109":0.81087,"110":0.03759,"111":0.03759,"112":0.05907,"113":0.17721,"114":0.38127,"115":0.15573,"116":0.90753,"117":11.22867,"118":11.05146,"119":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 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 71 72 73 74 76 120 121 122"},F:{"28":0.00537,"46":0.01074,"71":0.00537,"84":0.00537,"85":0.03222,"95":0.0537,"98":0.00537,"99":0.00537,"100":0.01074,"101":0.03759,"102":3.79122,"103":0.55311,_:"9 11 12 15 16 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 76 77 78 79 80 81 82 83 86 87 88 89 90 91 92 93 94 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00537,"18":0.00537,"92":0.01074,"100":0.00537,"104":0.00537,"105":0.00537,"106":0.00537,"107":0.01074,"108":0.01074,"109":0.13962,"110":0.01074,"111":0.00537,"112":0.01611,"113":0.02685,"114":0.0537,"115":0.0537,"116":0.31146,"117":4.17786,"118":3.9738,"119":0.00537,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103"},E:{"9":0.00537,"13":0.01074,"14":0.07518,"15":0.01074,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 17.2","5.1":0.00537,"9.1":0.00537,"11.1":0.01611,"12.1":0.02148,"13.1":0.11277,"14.1":0.18795,"15.1":0.02685,"15.2-15.3":0.03759,"15.4":0.04833,"15.5":0.07518,"15.6":0.46719,"16.0":0.06981,"16.1":0.14499,"16.2":0.15036,"16.3":0.38127,"16.4":0.12351,"16.5":0.35442,"16.6":1.79358,"17.0":1.00956,"17.1":0.09129},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00192,"5.0-5.1":0.00192,"6.0-6.1":0.00577,"7.0-7.1":0.01347,"8.1-8.4":0.00192,"9.0-9.2":0.01347,"9.3":0.04619,"10.0-10.2":0.00192,"10.3":0.06736,"11.0-11.2":0.06159,"11.3-11.4":0.02117,"12.0-12.1":0.01732,"12.2-12.5":0.30603,"13.0-13.1":0.00962,"13.2":0.05197,"13.3":0.01925,"13.4-13.7":0.06159,"14.0-14.4":0.16937,"14.5-14.8":0.27331,"15.0-15.1":0.10778,"15.2-15.3":0.12318,"15.4":0.13665,"15.5":0.19439,"15.6-15.7":1.34536,"16.0":0.49657,"16.1":0.9508,"16.2":0.46385,"16.3":0.86034,"16.4":0.18477,"16.5":0.49272,"16.6-16.7":9.22889,"17.0":3.28737,"17.1":0.19824,"17.2":0.00577},P:{"4":0.18798,"20":0.05222,"21":0.11488,"22":2.90332,"23":0.69972,"5.0-5.4":0.01044,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.01044,"12.0":0.01044,"13.0":0.02089,"14.0":0.02089,"15.0":0.01044,"16.0":0.02089,"17.0":0.02089,"18.0":0.02089,"19.0":0.06266},I:{"0":0.03685,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"9":0.01074,"11":0.08592,_:"6 7 8 10 5.5"},K:{"0":0.42133,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.72691},Q:{_:"13.1"},O:{"0":0.03241},H:{"0":0},L:{"0":22.00872}};
      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 fa344adf199ffe..4e849eee77670b 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AU.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AU.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00546,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01091,"53":0,"54":0.00546,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01637,"79":0,"80":0,"81":0,"82":0,"83":0.00546,"84":0,"85":0,"86":0,"87":0.00546,"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.03274,"103":0.00546,"104":0,"105":0.00546,"106":0.00546,"107":0,"108":0.00546,"109":0.00546,"110":0.00546,"111":0.00546,"112":0.00546,"113":0.01091,"114":0.01637,"115":0.14188,"116":0.09823,"117":1.06412,"118":0.09277,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01637,"26":0.00546,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01637,"35":0,"36":0,"37":0,"38":0.04366,"39":0.00546,"40":0.00546,"41":0.00546,"42":0,"43":0.00546,"44":0.00546,"45":0.00546,"46":0.00546,"47":0.00546,"48":0,"49":0.01091,"50":0,"51":0.00546,"52":0.01091,"53":0.00546,"54":0,"55":0.00546,"56":0.00546,"57":0,"58":0,"59":0.01637,"60":0.00546,"61":0,"62":0,"63":0.00546,"64":0,"65":0.00546,"66":0.01637,"67":0.01637,"68":0.00546,"69":0.1146,"70":0.00546,"71":0,"72":0.00546,"73":0.00546,"74":0.00546,"75":0.00546,"76":0.00546,"77":0,"78":0.00546,"79":0.05457,"80":0.00546,"81":0.02183,"83":0.00546,"84":0.00546,"85":0.01637,"86":0.02183,"87":0.0382,"88":0.02183,"89":0.00546,"90":0.00546,"91":0.01091,"92":0.01091,"93":0.01091,"94":0.00546,"95":0.00546,"96":0.01091,"97":0.01091,"98":0.01091,"99":0.02183,"100":0.01637,"101":0.03274,"102":0.02183,"103":0.12551,"104":0.03274,"105":0.01637,"106":0.03274,"107":0.04366,"108":0.06548,"109":0.4693,"110":0.17462,"111":0.05457,"112":0.09277,"113":0.12005,"114":0.40928,"115":0.74215,"116":11.46516,"117":2.7667,"118":0.01637,"119":0.00546,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02183,"47":0,"48":0,"49":0,"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.00546,"73":0,"74":0,"75":0,"76":0,"77":0.01637,"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.00546,"96":0,"97":0,"98":0,"99":0.01091,"100":0.09823,"101":0.18008,"102":0.24557,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00546,"15":0.01091,"16":0,"17":0,"18":0.00546,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00546,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00546,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00546,"103":0,"104":0,"105":0.00546,"106":0,"107":0.00546,"108":0.01091,"109":0.0382,"110":0.00546,"111":0.01091,"112":0.01091,"113":0.01637,"114":0.06003,"115":0.13097,"116":2.04638,"117":1.36971},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00546,"10":0,"11":0,"12":0,"13":0.01637,"14":0.08186,"15":0.01637,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00546,"12.1":0.02729,"13.1":0.10368,"14.1":0.22374,"15.1":0.03274,"15.2-15.3":0.03274,"15.4":0.06003,"15.5":0.09277,"15.6":0.52387,"16.0":0.04366,"16.1":0.13643,"16.2":0.12005,"16.3":0.31651,"16.4":0.1146,"16.5":0.31651,"16.6":2.48839,"17.0":0.08731,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0123,"6.0-6.1":0.0164,"7.0-7.1":0.0123,"8.1-8.4":0.0246,"9.0-9.2":0.0164,"9.3":0.1517,"10.0-10.2":0.0041,"10.3":0.2132,"11.0-11.2":0.1148,"11.3-11.4":0.0779,"12.0-12.1":0.0492,"12.2-12.5":0.88149,"13.0-13.1":0.0082,"13.2":0.0082,"13.3":0.041,"13.4-13.7":0.0943,"14.0-14.4":0.2583,"14.5-14.8":0.5002,"15.0-15.1":0.1599,"15.2-15.3":0.1763,"15.4":0.246,"15.5":0.3444,"15.6-15.7":2.64448,"16.0":1.14389,"16.1":2.34928,"16.2":1.12339,"16.3":2.07049,"16.4":0.3362,"16.5":1.09879,"16.6":24.77612,"17.0":1.57849,"17.1":0},P:{"4":0.20022,"20":0.07377,"21":0.15807,"22":2.41318,"5.0-5.4":0.04215,"6.2-6.4":0.01054,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01054,"12.0":0,"13.0":0.02108,"14.0":0.01054,"15.0":0.01054,"16.0":0.03161,"17.0":0.02108,"18.0":0.02108,"19.0":0.04215},I:{"0":0,"3":0.00684,"4":0.02051,"2.1":0.00228,"2.2":0.0114,"2.3":0.01367,"4.1":0.0114,"4.2-4.3":0.02507,"4.4":0,"4.4.3-4.4.4":0.07521},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03547,"9":0.02365,"10":0.01182,"11":0.07094,"5.5":0},S:{"2.5":0.00454,_:"3.0-3.1"},J:{"7":0,"10":0.00454},N:{"10":0.00909,"11":0},L:{"0":24.90616},R:{_:"0"},M:{"0":0.38161},Q:{"13.1":0.00454},O:{"0":0.05452},H:{"0":0.15914}};
      +module.exports={C:{"34":0.00527,"48":0.00527,"52":0.01582,"54":0.01055,"59":0.00527,"78":0.02109,"81":0.00527,"83":0.00527,"87":0.01055,"88":0.00527,"102":0.02109,"103":0.00527,"105":0.00527,"108":0.00527,"109":0.00527,"110":0.00527,"111":0.00527,"113":0.01055,"114":0.02637,"115":0.24783,"116":0.02109,"117":0.14237,"118":1.57663,"119":0.29002,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 84 85 86 89 90 91 92 93 94 95 96 97 98 99 100 101 104 106 107 112 120 121 122 3.5 3.6"},D:{"25":0.02637,"26":0.00527,"34":0.02637,"38":0.07382,"39":0.00527,"40":0.00527,"41":0.00527,"42":0.00527,"43":0.00527,"44":0.00527,"45":0.00527,"46":0.00527,"47":0.00527,"48":0.00527,"49":0.02637,"50":0.00527,"51":0.00527,"52":0.01055,"53":0.00527,"54":0.00527,"55":0.00527,"56":0.01055,"57":0.00527,"58":0.00527,"59":0.02637,"60":0.00527,"65":0.00527,"66":0.02637,"67":0.03691,"68":0.00527,"69":0.26892,"70":0.00527,"71":0.00527,"72":0.00527,"73":0.00527,"74":0.00527,"75":0.00527,"76":0.00527,"77":0.00527,"78":0.00527,"79":0.09491,"80":0.01582,"81":0.03691,"83":0.01582,"84":0.00527,"85":0.02637,"86":0.04218,"87":0.08964,"88":0.03164,"89":0.01055,"90":0.01055,"91":0.02637,"92":0.01055,"93":0.02109,"94":0.01055,"95":0.01055,"96":0.02637,"97":0.02109,"98":0.02109,"99":0.03691,"100":0.04218,"101":0.06855,"102":0.04218,"103":0.23729,"104":0.058,"105":0.02637,"106":0.03164,"107":0.058,"108":0.10546,"109":0.79095,"110":0.058,"111":0.07382,"112":0.09491,"113":0.13183,"114":0.40075,"115":0.45348,"116":2.61014,"117":13.89436,"118":12.1279,"119":0.02637,"120":0.01582,_:"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 61 62 63 64 121 122"},F:{"28":0.00527,"46":0.03691,"72":0.00527,"95":0.01055,"99":0.00527,"100":0.01055,"101":0.01582,"102":0.92278,"103":0.12128,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00527,"17":0.00527,"18":0.00527,"85":0.01055,"90":0.00527,"92":0.00527,"99":0.00527,"105":0.00527,"106":0.01055,"107":0.00527,"108":0.01055,"109":0.06328,"110":0.01055,"111":0.01055,"112":0.01582,"113":0.02637,"114":0.058,"115":0.03691,"116":0.15292,"117":3.15853,"118":2.96343,"119":0.01055,_:"12 13 14 15 79 80 81 83 84 86 87 88 89 91 93 94 95 96 97 98 100 101 102 103 104"},E:{"9":0.00527,"13":0.03164,"14":0.14237,"15":0.03164,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.00527,"11.1":0.01055,"12.1":0.04746,"13.1":0.18983,"14.1":0.38493,"15.1":0.058,"15.2-15.3":0.06855,"15.4":0.10019,"15.5":0.16874,"15.6":0.88586,"16.0":0.0791,"16.1":0.24783,"16.2":0.18456,"16.3":0.5273,"16.4":0.18456,"16.5":0.4693,"16.6":3.86511,"17.0":0.95969,"17.1":0.06855},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00254,"5.0-5.1":0.00254,"6.0-6.1":0.00763,"7.0-7.1":0.0178,"8.1-8.4":0.00254,"9.0-9.2":0.0178,"9.3":0.06101,"10.0-10.2":0.00254,"10.3":0.08898,"11.0-11.2":0.08135,"11.3-11.4":0.02796,"12.0-12.1":0.02288,"12.2-12.5":0.40421,"13.0-13.1":0.01271,"13.2":0.06864,"13.3":0.02542,"13.4-13.7":0.08135,"14.0-14.4":0.22371,"14.5-14.8":0.36099,"15.0-15.1":0.14236,"15.2-15.3":0.1627,"15.4":0.18049,"15.5":0.25676,"15.6-15.7":1.77698,"16.0":0.65588,"16.1":1.25584,"16.2":0.61267,"16.3":1.13635,"16.4":0.24405,"16.5":0.6508,"16.6-16.7":12.18976,"17.0":4.34204,"17.1":0.26184,"17.2":0.00763},P:{"4":0.17744,"20":0.07763,"21":0.13308,"22":2.12933,"23":0.47688,"5.0-5.4":0.02218,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.01109,"13.0":0.01109,"14.0":0.01109,"15.0":0.01109,"16.0":0.02218,"17.0":0.02218,"18.0":0.02218,"19.0":0.04436},I:{"0":0.04703,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"8":0.03002,"9":0.06003,"11":0.10505,_:"6 7 10 5.5"},K:{"0":0.14654,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.36398},Q:{"13.1":0.00473},O:{"0":0.04254},H:{"0":0},L:{"0":18.37282}};
      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 f60f631a08078f..03c6f7156f810c 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AW.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AW.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00294,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00587,"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.02055,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00294,"108":0,"109":0,"110":0.01468,"111":0.03523,"112":0,"113":0,"114":0.01174,"115":0.01174,"116":0.01174,"117":0.21726,"118":0.02349,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00294,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00294,"76":0,"77":0,"78":0,"79":0.00587,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00294,"88":0,"89":0,"90":0,"91":0,"92":0.03817,"93":0.00587,"94":0,"95":0,"96":0,"97":0,"98":0.00294,"99":0.00294,"100":0,"101":0,"102":0,"103":0.02642,"104":0,"105":0.01174,"106":0.02349,"107":0.06753,"108":0.0323,"109":0.38755,"110":0.02055,"111":0.05578,"112":0.02349,"113":0.01762,"114":0.04991,"115":0.1468,"116":2.88902,"117":0.78978,"118":0.00294,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00587,"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.00587,"101":0.04404,"102":0.0411,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.0323,"109":0.08221,"110":0,"111":0,"112":0,"113":0.00587,"114":0.01174,"115":0.06753,"116":1.00118,"117":0.74281},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01174,"15":0.00587,_:"0","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.02642,"14.1":0.02936,"15.1":0.01174,"15.2-15.3":0.01174,"15.4":0.01468,"15.5":0.01468,"15.6":0.06459,"16.0":0.01468,"16.1":0.01762,"16.2":0.02055,"16.3":0.08514,"16.4":0.02055,"16.5":0.09689,"16.6":0.6195,"17.0":0.03523,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01947,"10.0-10.2":0,"10.3":0.03115,"11.0-11.2":0,"11.3-11.4":0.00389,"12.0-12.1":0.01947,"12.2-12.5":0.45561,"13.0-13.1":0,"13.2":0,"13.3":0.02726,"13.4-13.7":0.1285,"14.0-14.4":0.12461,"14.5-14.8":0.71651,"15.0-15.1":0.05841,"15.2-15.3":0.15187,"15.4":0.11682,"15.5":0.21417,"15.6-15.7":3.29049,"16.0":1.13318,"16.1":1.95872,"16.2":0.80218,"16.3":1.62772,"16.4":0.37383,"16.5":0.99299,"16.6":24.2484,"17.0":2.02492,"17.1":0},P:{"4":0.09307,"20":0.07239,"21":0.81697,"22":7.65267,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.19649,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01034,"12.0":0.01034,"13.0":0.02068,"14.0":0.05171,"15.0":0,"16.0":0.05171,"17.0":0.07239,"18.0":0.03102,"19.0":0.10341},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.1568},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00294,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.00706,"11":0},L:{"0":40.55609},R:{_:"0"},M:{"0":0.33907},Q:{"13.1":0.01413},O:{"0":0.01413},H:{"0":0.11369}};
      +module.exports={C:{"78":0.0118,"82":0.00295,"88":0.00295,"98":0.0059,"101":0.02655,"102":0.00295,"103":0.00295,"104":0.00295,"105":0.00295,"106":0.04425,"107":0.00885,"109":0.00295,"113":0.0059,"115":0.0531,"116":0.00885,"117":0.02655,"118":0.5074,"119":0.0944,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 90 91 92 93 94 95 96 97 99 100 108 110 111 112 114 120 121 122 3.5 3.6"},D:{"47":0.0059,"49":0.00885,"53":0.0059,"69":0.00295,"77":0.00885,"78":0.00295,"79":0.00885,"81":0.00295,"87":0.0885,"89":0.00295,"91":0.00295,"92":0.0059,"93":0.03245,"98":0.0059,"99":0.01475,"103":0.29795,"105":0.00295,"106":0.00295,"107":0.00885,"108":0.1062,"109":1.1269,"110":0.0295,"111":0.38645,"112":0.1593,"113":0.0531,"114":0.1003,"115":0.1888,"116":0.8201,"117":6.77615,"118":6.8971,"119":0.0177,"120":0.0177,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 80 83 84 85 86 88 90 94 95 96 97 100 101 102 104 121 122"},F:{"95":0.00295,"102":0.29205,"103":0.0944,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0059,"100":0.00295,"106":0.00295,"108":0.00295,"109":0.03245,"110":0.00295,"111":0.1298,"113":0.0059,"114":0.0177,"115":0.0295,"116":0.06195,"117":3.07685,"118":2.85855,"119":0.00295,_:"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 102 103 104 105 107 112"},E:{"13":0.00295,"14":0.0472,"15":0.00885,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.02655,"13.1":0.08555,"14.1":0.08555,"15.1":0.01475,"15.2-15.3":0.0118,"15.4":0.059,"15.5":0.05605,"15.6":0.2419,"16.0":0.03835,"16.1":0.09735,"16.2":0.52215,"16.3":0.2714,"16.4":0.09145,"16.5":0.23895,"16.6":1.4455,"17.0":0.6431,"17.1":0.059},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00289,"5.0-5.1":0.00289,"6.0-6.1":0.00867,"7.0-7.1":0.02023,"8.1-8.4":0.00289,"9.0-9.2":0.02023,"9.3":0.06937,"10.0-10.2":0.00289,"10.3":0.10117,"11.0-11.2":0.0925,"11.3-11.4":0.0318,"12.0-12.1":0.02601,"12.2-12.5":0.45959,"13.0-13.1":0.01445,"13.2":0.07804,"13.3":0.02891,"13.4-13.7":0.0925,"14.0-14.4":0.25436,"14.5-14.8":0.41045,"15.0-15.1":0.16187,"15.2-15.3":0.18499,"15.4":0.20523,"15.5":0.29194,"15.6-15.7":2.02046,"16.0":0.74575,"16.1":1.42791,"16.2":0.69661,"16.3":1.29205,"16.4":0.27749,"16.5":0.73997,"16.6-16.7":13.85995,"17.0":4.93697,"17.1":0.29772,"17.2":0.00867},P:{"4":0.0932,"20":0.12427,"21":0.24854,"22":6.02707,"23":1.34625,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.0932,"11.1-11.2":0.02071,"13.0":0.06213,"14.0":0.07249,"15.0":0.01036,"16.0":0.01036,"17.0":0.13463,"18.0":0.03107,"19.0":0.05178},I:{"0":0.01403,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"8":0.00295,"11":0.0118,_:"6 7 9 10 5.5"},K:{"0":0.13395,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.44415},Q:{_:"13.1"},O:{"0":0.0141},H:{"0":0},L:{"0":33.2254}};
      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 bc6618e6641a47..7232f74179c4c2 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02758,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00552,"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.01655,"103":0,"104":0,"105":0,"106":0.00552,"107":0,"108":0.01103,"109":0,"110":0.00552,"111":0,"112":0,"113":0.00552,"114":0,"115":0.17651,"116":0.08274,"117":1.6879,"118":0.15996,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.01655,"77":0,"78":0,"79":0.02758,"80":0,"81":0,"83":0,"84":0,"85":0.00552,"86":0,"87":0.03861,"88":0,"89":0,"90":0,"91":0,"92":0.01103,"93":0,"94":0,"95":0,"96":0.00552,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.07171,"104":0,"105":0.00552,"106":0.00552,"107":0,"108":0,"109":0.85498,"110":0,"111":0.00552,"112":0.00552,"113":0.00552,"114":0.07722,"115":0.33648,"116":12.9295,"117":4.36867,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.03861,"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.00552,"96":0,"97":0,"98":0,"99":0.00552,"100":0.04413,"101":0.14893,"102":0.07171,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.04964,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01103,"110":0,"111":0,"112":0.00552,"113":0.1048,"114":0.08826,"115":0.05516,"116":2.45462,"117":1.9306},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.01103,"13":0.02758,"14":0.3089,"15":0.00552,_:"0","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.01103,"13.1":0.06619,"14.1":0.11584,"15.1":0,"15.2-15.3":0.04413,"15.4":0.01655,"15.5":0.02758,"15.6":0.17651,"16.0":0.01655,"16.1":0.01103,"16.2":0.05516,"16.3":0.17651,"16.4":0.0331,"16.5":0.09377,"16.6":0.8605,"17.0":0.02758,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04013,"10.0-10.2":0,"10.3":0.36119,"11.0-11.2":0,"11.3-11.4":0.0086,"12.0-12.1":0.04873,"12.2-12.5":1.07209,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.01147,"14.0-14.4":0.0516,"14.5-14.8":0.18346,"15.0-15.1":0.01433,"15.2-15.3":0.24366,"15.4":0.0258,"15.5":0.07453,"15.6-15.7":0.62204,"16.0":0.49018,"16.1":1.30142,"16.2":0.26946,"16.3":0.45292,"16.4":0.01433,"16.5":0.18059,"16.6":22.2416,"17.0":0.8055,"17.1":0},P:{"4":0,"20":0.08611,"21":0.12916,"22":4.39157,"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.01076,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0.08611},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07413},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00552,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.21495},R:{_:"0"},M:{"0":2.20164},Q:{"13.1":0},O:{"0":0},H:{"0":0.20377}};
      +module.exports={C:{"78":0.00632,"101":0.00632,"108":0.04423,"110":0.01264,"115":0.21481,"116":0.10741,"117":0.16427,"118":3.58862,"119":0.76448,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 109 111 112 113 114 120 121 122 3.5 3.6"},D:{"49":0.01264,"76":0.15795,"79":0.01895,"85":0.00632,"87":0.21481,"92":0.01264,"94":0.01264,"103":0.16427,"109":1.54159,"111":0.00632,"113":0.01895,"114":0.19586,"115":0.08845,"116":2.43243,"117":19.81325,"118":18.67601,"119":0.03791,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 83 84 86 88 89 90 91 93 95 96 97 98 99 100 101 102 104 105 106 107 108 110 112 120 121 122"},F:{"97":0.00632,"102":1.30783,"103":0.03159,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.03791,"109":0.06318,"113":0.04423,"114":0.02527,"115":0.01264,"116":0.07582,"117":4.42892,"118":3.62021,"119":0.00632,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112"},E:{"14":0.81502,"15":0.01895,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.02527,"13.1":0.10109,"14.1":0.139,"15.1":0.00632,"15.2-15.3":0.01264,"15.4":0.03159,"15.5":0.04423,"15.6":0.32222,"16.0":0.0695,"16.1":0.05686,"16.2":0.12004,"16.3":0.26536,"16.4":0.02527,"16.5":0.10109,"16.6":1.37101,"17.0":0.28431,"17.1":0.01264},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00054,"5.0-5.1":0.00054,"6.0-6.1":0.00162,"7.0-7.1":0.00379,"8.1-8.4":0.00054,"9.0-9.2":0.00379,"9.3":0.01299,"10.0-10.2":0.00054,"10.3":0.01894,"11.0-11.2":0.01732,"11.3-11.4":0.00595,"12.0-12.1":0.00487,"12.2-12.5":0.08606,"13.0-13.1":0.00271,"13.2":0.01461,"13.3":0.00541,"13.4-13.7":0.01732,"14.0-14.4":0.04763,"14.5-14.8":0.07686,"15.0-15.1":0.03031,"15.2-15.3":0.03464,"15.4":0.03843,"15.5":0.05467,"15.6-15.7":0.37834,"16.0":0.13964,"16.1":0.26738,"16.2":0.13044,"16.3":0.24194,"16.4":0.05196,"16.5":0.13856,"16.6-16.7":2.59531,"17.0":0.92446,"17.1":0.05575,"17.2":0.00162},P:{"4":0.01136,"21":0.05681,"22":3.7266,"23":0.52263,_:"20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0 18.0","14.0":0.01136,"19.0":0.04545},I:{"0":0.01465,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.00632,_:"6 7 8 9 10 5.5"},K:{"0":0.82109,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":2.6584},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":24.66367}};
      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 e37a3f11a50244..e7f6e5e04273fa 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00284,"46":0,"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.00853,"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.02274,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00284,"103":0,"104":0,"105":0.00284,"106":0,"107":0,"108":0,"109":0,"110":0.00568,"111":0,"112":0.01137,"113":0.00284,"114":0.00284,"115":0.01989,"116":0.01421,"117":0.1421,"118":0.00568,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00284,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00284,"39":0,"40":0,"41":0.00284,"42":0,"43":0.00284,"44":0.00284,"45":0.00284,"46":0.00284,"47":0,"48":0,"49":0.01989,"50":0,"51":0.00853,"52":0,"53":0.00568,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00284,"69":0,"70":0.00284,"71":0,"72":0,"73":0.00284,"74":0.00284,"75":0.00853,"76":0.04547,"77":0.00284,"78":0.00284,"79":0.12505,"80":0.03695,"81":0.00853,"83":0.00568,"84":0.01705,"85":0.00284,"86":0.03695,"87":0.02842,"88":0.08526,"89":0.01989,"90":0.14494,"91":0.01705,"92":0.00284,"93":0,"94":0.03695,"95":0.00853,"96":0.00284,"97":0.00853,"98":0,"99":0.01989,"100":0.01137,"101":0.00568,"102":0.00568,"103":0.03126,"104":0.00853,"105":0.00853,"106":0.00853,"107":0.01421,"108":0.01137,"109":0.82134,"110":0.01421,"111":0.01421,"112":0.04263,"113":0.01137,"114":0.02842,"115":0.07105,"116":3.21999,"117":0.75881,"118":0.00284,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00284,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00568,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.01137,"54":0,"55":0,"56":0,"57":0,"58":0.02842,"60":0,"62":0.01705,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00284,"70":0.00853,"71":0.00284,"72":0.09663,"73":0.02558,"74":0,"75":0,"76":0,"77":0.03126,"78":0.00284,"79":0.00568,"80":0,"81":0,"82":0,"83":0,"84":0.00284,"85":0.01421,"86":0,"87":0,"88":0,"89":0,"90":0.00568,"91":0,"92":0,"93":0,"94":0,"95":0.05684,"96":0,"97":0,"98":0,"99":0.00284,"100":0.03126,"101":0.13926,"102":0.14778,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00284,"13":0,"14":0.00284,"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.0341,"91":0,"92":0.00568,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00284,"108":0.00284,"109":0.01137,"110":0,"111":0,"112":0,"113":0,"114":0.00284,"115":0.00853,"116":0.13642,"117":0.09663},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00568,"10":0,"11":0,"12":0,"13":0,"14":0.00284,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.09094,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00568,"14.1":0.00568,"15.1":0.00284,"15.2-15.3":0,"15.4":0.00568,"15.5":0.00284,"15.6":0.01421,"16.0":0.00284,"16.1":0.01137,"16.2":0.00568,"16.3":0.00853,"16.4":0.00568,"16.5":0.01137,"16.6":0.0881,"17.0":0.00568,"17.1":0},G:{"8":0.00352,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00352,"6.0-6.1":0,"7.0-7.1":0.02642,"8.1-8.4":0.01057,"9.0-9.2":0.00352,"9.3":0.02114,"10.0-10.2":0,"10.3":0.07221,"11.0-11.2":0.03347,"11.3-11.4":0,"12.0-12.1":0.01585,"12.2-12.5":0.28181,"13.0-13.1":0.00176,"13.2":0.00176,"13.3":3.45924,"13.4-13.7":0.02994,"14.0-14.4":0.08102,"14.5-14.8":0.19727,"15.0-15.1":0.05284,"15.2-15.3":0.05284,"15.4":0.05636,"15.5":0.14443,"15.6-15.7":1.02861,"16.0":0.42272,"16.1":0.60766,"16.2":0.31352,"16.3":0.61646,"16.4":0.20079,"16.5":0.51783,"16.6":8.15669,"17.0":1.03214,"17.1":0},P:{"4":0.52002,"20":0.12236,"21":0.32629,"22":3.37504,"5.0-5.4":0,"6.2-6.4":0.02039,"7.2-7.4":0.07138,"8.2":0,"9.2":0.0102,"10.1":0,"11.1-11.2":0.02039,"12.0":0.03059,"13.0":0.08157,"14.0":0.03059,"15.0":0.03059,"16.0":0.03059,"17.0":0.10196,"18.0":0.07138,"19.0":0.12236},I:{"0":0,"3":0,"4":0.01081,"2.1":0,"2.2":0.00649,"2.3":0.00649,"4.1":0.01297,"4.2-4.3":0.03027,"4.4":0,"4.4.3-4.4.4":0.08865},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02274,"9":0.00284,"10":0.00284,"11":0.03979,"5.5":0},S:{"2.5":0.00716,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.01432,"11":0},L:{"0":65.93823},R:{_:"0"},M:{"0":0.32927},Q:{"13.1":0},O:{"0":0.21474},H:{"0":0.90131}};
      +module.exports={C:{"52":0.01354,"68":0.00451,"78":0.00226,"79":0.00226,"95":0.00451,"101":0.00226,"102":0.00226,"111":0.00902,"112":0.00226,"113":0.00226,"115":0.07445,"116":0.00677,"117":0.01128,"118":0.25493,"119":0.04738,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 103 104 105 106 107 108 109 110 114 120 121 122 3.5 3.6"},D:{"11":0.00226,"22":0.00677,"26":0.00226,"38":0.00451,"41":0.00226,"42":0.00226,"49":0.02256,"53":0.00677,"56":0.00451,"63":0.00451,"65":0.00226,"66":0.00226,"68":0.00226,"69":0.00226,"70":0.00451,"71":0.00677,"72":0.00451,"73":0.00226,"74":0.00902,"75":0.00226,"76":0.00226,"77":0.00226,"78":0.00226,"79":0.13762,"80":0.02482,"81":0.00451,"83":0.02256,"84":0.00226,"85":0.00226,"86":0.00677,"87":0.05189,"88":0.01354,"89":0.00677,"90":0.01805,"91":0.00451,"92":0.00451,"93":0.00226,"94":0.00902,"95":0.00451,"96":0.00451,"97":0.00677,"98":0.00451,"99":0.00902,"100":0.03384,"101":0.01805,"102":0.01805,"103":0.02707,"104":0.01128,"105":0.01805,"106":0.03835,"107":0.06768,"108":0.04963,"109":2.89445,"110":0.00451,"111":0.02933,"112":0.06994,"113":0.01805,"114":0.06317,"115":0.06994,"116":0.42187,"117":5.96261,"118":6.23107,"119":0.01128,"120":0.00226,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 48 50 51 52 54 55 57 58 59 60 61 62 64 67 121 122"},F:{"28":0.00226,"36":0.00226,"40":0.00226,"46":0.00902,"55":0.00451,"65":0.00226,"79":0.01579,"82":0.00226,"83":0.00677,"84":0.01128,"85":0.04738,"86":0.00226,"87":0.00226,"92":0.00226,"93":0.01805,"95":0.12634,"99":0.00226,"100":0.00226,"101":0.00451,"102":0.6407,"103":0.24365,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 88 89 90 91 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01354,"18":0.00451,"84":0.00226,"92":0.01128,"100":0.00226,"108":0.00226,"109":0.0361,"110":0.00226,"111":0.00451,"112":0.00451,"113":0.00451,"114":0.00677,"115":0.00451,"116":0.03384,"117":0.60912,"118":0.6768,"119":0.00226,_:"13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107"},E:{"13":0.00226,"14":0.01354,"15":0.00226,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 12.1 15.2-15.3 17.2","5.1":0.38352,"9.1":0.01805,"13.1":0.00902,"14.1":0.02707,"15.1":0.00451,"15.4":0.01805,"15.5":0.02256,"15.6":0.05189,"16.0":0.00677,"16.1":0.06768,"16.2":0.00902,"16.3":0.05866,"16.4":0.01579,"16.5":0.02707,"16.6":0.1692,"17.0":0.09701,"17.1":0.00902},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00105,"5.0-5.1":0.00105,"6.0-6.1":0.00314,"7.0-7.1":0.00732,"8.1-8.4":0.00105,"9.0-9.2":0.00732,"9.3":0.02511,"10.0-10.2":0.00105,"10.3":0.03662,"11.0-11.2":0.03348,"11.3-11.4":0.01151,"12.0-12.1":0.00942,"12.2-12.5":0.16635,"13.0-13.1":0.00523,"13.2":0.02825,"13.3":0.01046,"13.4-13.7":0.03348,"14.0-14.4":0.09207,"14.5-14.8":0.14856,"15.0-15.1":0.05859,"15.2-15.3":0.06696,"15.4":0.07428,"15.5":0.10567,"15.6-15.7":0.7313,"16.0":0.26992,"16.1":0.51683,"16.2":0.25214,"16.3":0.46766,"16.4":0.10044,"16.5":0.26783,"16.6-16.7":5.0166,"17.0":1.78693,"17.1":0.10776,"17.2":0.00314},P:{"4":0.46219,"20":0.08217,"21":0.23623,"22":3.29694,"23":0.69842,_:"5.0-5.4 10.1 12.0","6.2-6.4":0.01027,"7.2-7.4":0.08217,"8.2":0.01027,"9.2":0.01027,"11.1-11.2":0.02054,"13.0":0.08217,"14.0":0.01027,"15.0":0.02054,"16.0":0.04108,"17.0":0.14379,"18.0":0.05135,"19.0":0.09244},I:{"0":0.04623,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"8":0.00451,"11":0.08798,_:"6 7 9 10 5.5"},K:{"0":1.23453,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00774,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.36397},Q:{_:"13.1"},O:{"0":0.15488},H:{"0":0.02},L:{"0":60.66739}};
      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 fce2b0b52cfbfd..44f66429e27f29 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00382,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03054,"53":0,"54":0,"55":0,"56":0.00382,"57":0.00382,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00382,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00382,"78":0.00382,"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,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00382,"100":0,"101":0,"102":0.00382,"103":0.00382,"104":0.00382,"105":0,"106":0.00763,"107":0,"108":0.00382,"109":0.00382,"110":0.00763,"111":0.01145,"112":0.00382,"113":0.00382,"114":0.00382,"115":0.39697,"116":0.03435,"117":0.98479,"118":0.12596,"119":0,"120":0,"3.5":0,"3.6":0.00382},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00382,"39":0,"40":0,"41":0,"42":0,"43":0.00382,"44":0.00382,"45":0.00382,"46":0.00382,"47":0.00382,"48":0,"49":0.04199,"50":0,"51":0.00382,"52":0,"53":0.01145,"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.01145,"69":0,"70":0.00382,"71":0,"72":0.00382,"73":0.00382,"74":0.00382,"75":0.00382,"76":0,"77":0,"78":0.00382,"79":0.09543,"80":0.00382,"81":0.01527,"83":0.00382,"84":0.00763,"85":0.01145,"86":0.00382,"87":0.03435,"88":0.00763,"89":0.00382,"90":0.00382,"91":0.00763,"92":0.00763,"93":0.00382,"94":0.01145,"95":0.00763,"96":0.00763,"97":0.00763,"98":0.00382,"99":0.01527,"100":0.01145,"101":0,"102":0.00763,"103":0.01527,"104":0.01145,"105":0.00382,"106":0.01145,"107":0.03054,"108":0.03054,"109":1.7291,"110":0.01145,"111":0.01145,"112":0.03817,"113":0.02672,"114":0.07252,"115":0.12596,"116":6.11102,"117":1.64894,"118":0.00382,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01909,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00763,"37":0,"38":0,"39":0,"40":0.00382,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01527,"47":0,"48":0,"49":0,"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.00382,"70":0.00382,"71":0,"72":0.00763,"73":0.00382,"74":0,"75":0,"76":0,"77":0.01527,"78":0.00382,"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.0458,"96":0,"97":0,"98":0,"99":0.00382,"100":0.04962,"101":0.22139,"102":0.25574,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00382,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.01145,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00382,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00382,"109":0.01527,"110":0,"111":0,"112":0.00382,"113":0.00382,"114":0.00763,"115":0.02672,"116":0.47331,"117":0.34353},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00763,"10":0,"11":0,"12":0,"13":0,"14":0.00382,"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.00763,"13.1":0.01145,"14.1":0.01145,"15.1":0.00382,"15.2-15.3":0.00382,"15.4":0.00382,"15.5":0.01145,"15.6":0.04962,"16.0":0.01145,"16.1":0.00763,"16.2":0.01145,"16.3":0.02672,"16.4":0.00763,"16.5":0.04962,"16.6":0.19467,"17.0":0.01527,"17.1":0},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.0011,"7.0-7.1":0.03306,"8.1-8.4":0.01763,"9.0-9.2":0.00441,"9.3":0.07935,"10.0-10.2":0,"10.3":0.10249,"11.0-11.2":0.06833,"11.3-11.4":0.00771,"12.0-12.1":0.01653,"12.2-12.5":0.216,"13.0-13.1":0.0022,"13.2":0,"13.3":0.00661,"13.4-13.7":0.00992,"14.0-14.4":0.07384,"14.5-14.8":0.19285,"15.0-15.1":0.02204,"15.2-15.3":0.03967,"15.4":0.02865,"15.5":0.07494,"15.6-15.7":0.82211,"16.0":0.27771,"16.1":0.52126,"16.2":0.29204,"16.3":0.50693,"16.4":0.07714,"16.5":0.28983,"16.6":6.37303,"17.0":0.68105,"17.1":0.00331},P:{"4":0.39817,"20":0.1123,"21":0.22461,"22":3.95105,"5.0-5.4":0.02042,"6.2-6.4":0.02042,"7.2-7.4":0.06126,"8.2":0,"9.2":0.01021,"10.1":0,"11.1-11.2":0.02042,"12.0":0.01021,"13.0":0.04084,"14.0":0.03063,"15.0":0.01021,"16.0":0.04084,"17.0":0.02042,"18.0":0.03063,"19.0":0.06126},I:{"0":0,"3":0.01011,"4":0.02358,"2.1":0,"2.2":0.01348,"2.3":0.02021,"4.1":0.02695,"4.2-4.3":0.03032,"4.4":0,"4.4.3-4.4.4":0.15497},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00382,"8":0.02672,"9":0.00382,"10":0.00382,"11":0.03817,"5.5":0},S:{"2.5":0.00618,_:"3.0-3.1"},J:{"7":0,"10":0.00618},N:{"10":0.01855,"11":0},L:{"0":66.91288},R:{_:"0"},M:{"0":0.22259},Q:{"13.1":0},O:{"0":0.01855},H:{"0":0.24585}};
      +module.exports={C:{"43":0.00376,"52":0.09012,"56":0.00376,"64":0.00376,"66":0.00376,"68":0.00376,"72":0.00376,"78":0.00751,"84":0.00376,"88":0.00751,"89":0.00376,"91":0.00376,"97":0.00376,"99":0.01127,"101":0.00376,"102":0.00376,"103":0.00376,"108":0.00751,"109":0.00376,"110":0.01878,"111":0.00751,"112":0.00376,"113":0.00751,"114":0.00376,"115":0.9763,"116":0.01127,"117":0.04506,"118":1.88501,"119":0.35297,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 90 92 93 94 95 96 98 100 104 105 106 107 120 121 122 3.5 3.6"},D:{"11":0.00376,"38":0.00751,"39":0.00376,"41":0.00376,"43":0.00376,"44":0.00376,"45":0.00376,"46":0.00376,"47":0.00376,"49":0.07886,"51":0.00376,"53":0.04882,"56":0.00376,"58":0.00376,"59":0.00376,"63":0.00376,"65":0.00376,"68":0.02253,"69":0.00751,"70":0.00751,"71":0.00376,"72":0.00751,"73":0.00751,"74":0.00376,"75":0.00751,"76":0.00751,"77":0.00751,"78":0.01127,"79":0.3342,"80":0.00376,"81":0.00751,"83":0.02253,"84":0.01127,"85":0.01502,"86":0.01878,"87":0.07135,"88":0.01502,"89":0.01502,"90":0.01127,"91":0.01878,"92":0.01127,"93":0.01502,"94":0.04131,"95":0.00751,"96":0.01127,"97":0.01502,"98":0.00751,"99":0.02253,"100":0.02629,"101":0.00751,"102":0.01127,"103":0.03755,"104":0.04131,"105":0.01127,"106":0.01878,"107":0.05633,"108":0.05633,"109":4.29948,"110":0.0338,"111":0.03004,"112":0.05633,"113":0.03755,"114":0.10514,"115":0.11641,"116":0.751,"117":10.26617,"118":10.57784,"119":0.00751,"120":0.00376,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 42 48 50 52 54 55 57 60 61 62 64 66 67 121 122"},F:{"28":0.04506,"36":0.01127,"40":0.00376,"46":0.04506,"69":0.00376,"72":0.00376,"79":0.00376,"85":0.00376,"86":0.00376,"95":0.09763,"96":0.01878,"100":0.00376,"101":0.00751,"102":1.02887,"103":0.37175,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 73 74 75 76 77 78 80 81 82 83 84 87 88 89 90 91 92 93 94 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00751,"17":0.00376,"18":0.00751,"85":0.02253,"89":0.00376,"92":0.01127,"102":0.00376,"106":0.00376,"108":0.01127,"109":0.05633,"112":0.00751,"113":0.00751,"114":0.02253,"115":0.02253,"116":0.01878,"117":1.07393,"118":1.1603,"119":0.00376,_:"12 13 15 16 79 80 81 83 84 86 87 88 90 91 93 94 95 96 97 98 99 100 101 103 104 105 107 110 111"},E:{"9":0.00751,"14":0.01878,"15":0.00376,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.01127,"13.1":0.02253,"14.1":0.02253,"15.1":0.01502,"15.2-15.3":0.00376,"15.4":0.00751,"15.5":0.02253,"15.6":0.12016,"16.0":0.02629,"16.1":0.02253,"16.2":0.02253,"16.3":0.05257,"16.4":0.00751,"16.5":0.0751,"16.6":0.31542,"17.0":0.29665,"17.1":0.01502},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00084,"5.0-5.1":0.00084,"6.0-6.1":0.00253,"7.0-7.1":0.00591,"8.1-8.4":0.00084,"9.0-9.2":0.00591,"9.3":0.02026,"10.0-10.2":0.00084,"10.3":0.02955,"11.0-11.2":0.02702,"11.3-11.4":0.00929,"12.0-12.1":0.0076,"12.2-12.5":0.13425,"13.0-13.1":0.00422,"13.2":0.0228,"13.3":0.00844,"13.4-13.7":0.02702,"14.0-14.4":0.0743,"14.5-14.8":0.11989,"15.0-15.1":0.04728,"15.2-15.3":0.05404,"15.4":0.05995,"15.5":0.08528,"15.6-15.7":0.59018,"16.0":0.21784,"16.1":0.4171,"16.2":0.20348,"16.3":0.37741,"16.4":0.08106,"16.5":0.21615,"16.6-16.7":4.04853,"17.0":1.44211,"17.1":0.08697,"17.2":0.00253},P:{"4":0.59473,"20":0.07178,"21":0.17432,"22":2.95314,"23":0.70752,"5.0-5.4":0.03076,"6.2-6.4":0.01025,"7.2-7.4":0.05127,_:"8.2 10.1 12.0","9.2":0.01025,"11.1-11.2":0.03076,"13.0":0.04102,"14.0":0.01025,"15.0":0.01025,"16.0":0.03076,"17.0":0.03076,"18.0":0.02051,"19.0":0.06152},I:{"0":0.13669,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.00041},A:{"7":0.00376,"8":0.02253,"9":0.00376,"10":0.00376,"11":0.0751,_:"6 5.5"},K:{"0":0.31225,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.29352},Q:{_:"13.1"},O:{"0":0.03747},H:{"0":0},L:{"0":49.25517}};
      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 9014736e89911e..a6f82ba708a579 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BB.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BB.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.03425,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00489,"113":0.00489,"114":0.01468,"115":0.02447,"116":0.07829,"117":0.94435,"118":0.06361,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00489,"50":0.00489,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00489,"75":0,"76":0.01468,"77":0,"78":0,"79":0.08318,"80":0.02936,"81":0.00979,"83":0.00489,"84":0.03425,"85":0.01468,"86":0,"87":0.01468,"88":0,"89":0,"90":0,"91":0.00489,"92":0,"93":0.00979,"94":0,"95":0.00979,"96":0,"97":0,"98":0,"99":0.00489,"100":0.00489,"101":0,"102":0,"103":0.15168,"104":0.00489,"105":0,"106":0.00489,"107":0.00489,"108":0.00979,"109":0.38655,"110":0.00489,"111":0.00489,"112":0.03425,"113":0.01468,"114":0.10765,"115":0.25933,"116":11.17072,"117":2.45629,"118":0.01957,"119":0.00489,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00489,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00489,"68":0,"69":0,"70":0,"71":0,"72":0.00979,"73":0,"74":0,"75":0,"76":0,"77":0.00489,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00489,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00489,"96":0,"97":0,"98":0,"99":0.00489,"100":0.17126,"101":0.20061,"102":0.18104,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00979,"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.00489,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.03425,"110":0,"111":0,"112":0,"113":0,"114":0.00979,"115":0.0734,"116":1.93274,"117":1.35536},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00489,"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.02447,"14.1":0.05382,"15.1":0.00979,"15.2-15.3":0.00489,"15.4":0.01468,"15.5":0.05382,"15.6":0.14679,"16.0":0.01468,"16.1":0.12722,"16.2":0.02936,"16.3":0.09786,"16.4":0.03425,"16.5":0.10275,"16.6":1.16943,"17.0":0.04404,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01417,"6.0-6.1":0,"7.0-7.1":0.00607,"8.1-8.4":0,"9.0-9.2":0.00405,"9.3":0.20038,"10.0-10.2":0,"10.3":0.07691,"11.0-11.2":0.00607,"11.3-11.4":0.00607,"12.0-12.1":0,"12.2-12.5":0.5222,"13.0-13.1":0.00405,"13.2":0,"13.3":0,"13.4-13.7":0.01214,"14.0-14.4":0.02024,"14.5-14.8":0.06072,"15.0-15.1":0.0081,"15.2-15.3":0.01822,"15.4":0.02631,"15.5":0.0506,"15.6-15.7":1.94509,"16.0":0.44326,"16.1":0.75901,"16.2":0.26717,"16.3":0.7327,"16.4":0.06679,"16.5":0.7327,"16.6":12.40529,"17.0":1.35003,"17.1":0.01012},P:{"4":0.16132,"20":0.15057,"21":0.24736,"22":4.46322,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.18283,"8.2":0,"9.2":0.01075,"10.1":0,"11.1-11.2":0.01075,"12.0":0,"13.0":0.06453,"14.0":0.04302,"15.0":0.01075,"16.0":0.01075,"17.0":0.03226,"18.0":0.06453,"19.0":0.03226},I:{"0":0,"3":0,"4":0.04201,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.08401,"4.4":0,"4.4.3-4.4.4":1.17616},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00734,"11":0.00734,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":47.73852},R:{_:"0"},M:{"0":0.53113},Q:{"13.1":0},O:{"0":0.09193},H:{"0":0.13538}};
      +module.exports={C:{"78":0.00465,"101":0.08377,"108":0.00465,"110":0.00931,"113":0.00465,"115":0.08377,"117":0.04189,"118":1.8011,"119":0.2932,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 109 111 112 114 116 120 121 122 3.5 3.6"},D:{"49":0.01396,"50":0.01862,"58":0.00465,"65":0.00465,"74":0.01396,"76":0.01396,"77":0.00465,"79":0.21408,"80":0.08843,"81":0.00931,"83":0.07912,"84":0.01396,"85":0.03258,"87":0.07912,"89":0.00931,"93":0.04654,"95":0.00465,"96":0.00465,"97":0.02327,"98":0.00465,"99":0.00465,"102":0.00465,"103":0.26062,"104":0.00465,"105":0.01396,"106":0.00931,"107":0.00931,"109":1.03319,"110":0.00465,"111":0.00931,"112":0.05585,"113":0.01396,"114":0.21874,"115":0.1117,"116":1.52186,"117":13.54314,"118":13.52918,"119":0.03723,"120":0.00465,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 59 60 61 62 63 64 66 67 68 69 70 71 72 73 75 78 86 88 90 91 92 94 100 101 108 121 122"},F:{"89":0.00931,"95":0.01396,"97":0.00931,"101":0.00465,"102":0.9308,"103":0.15358,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.03258,"18":0.00465,"108":0.00465,"109":0.01862,"110":0.00465,"114":0.00465,"115":0.00465,"116":0.04189,"117":3.32296,"118":3.38811,_:"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 101 102 103 104 105 106 107 111 112 113 119"},E:{"13":0.00465,"14":0.00465,"15":0.00465,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.00465,"13.1":0.02792,"14.1":0.1117,"15.1":0.01396,"15.2-15.3":0.00465,"15.4":0.03258,"15.5":0.08377,"15.6":0.32113,"16.0":0.01862,"16.1":0.19081,"16.2":0.03723,"16.3":0.1722,"16.4":0.06516,"16.5":0.13497,"16.6":2.02449,"17.0":0.55848,"17.1":0.02792},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00141,"5.0-5.1":0.00141,"6.0-6.1":0.00424,"7.0-7.1":0.0099,"8.1-8.4":0.00141,"9.0-9.2":0.0099,"9.3":0.03395,"10.0-10.2":0.00141,"10.3":0.04951,"11.0-11.2":0.04527,"11.3-11.4":0.01556,"12.0-12.1":0.01273,"12.2-12.5":0.22491,"13.0-13.1":0.00707,"13.2":0.03819,"13.3":0.01415,"13.4-13.7":0.04527,"14.0-14.4":0.12448,"14.5-14.8":0.20087,"15.0-15.1":0.07921,"15.2-15.3":0.09053,"15.4":0.10043,"15.5":0.14287,"15.6-15.7":0.98877,"16.0":0.36495,"16.1":0.69879,"16.2":0.34091,"16.3":0.6323,"16.4":0.1358,"16.5":0.36213,"16.6-16.7":6.78277,"17.0":2.41605,"17.1":0.1457,"17.2":0.00424},P:{"4":0.15825,"20":0.18086,"21":0.24868,"22":3.69627,"23":0.9382,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 15.0","6.2-6.4":0.0113,"7.2-7.4":0.18086,"12.0":0.0113,"13.0":0.04521,"14.0":0.04521,"16.0":0.02261,"17.0":0.11304,"18.0":0.04521,"19.0":0.03391},I:{"0":0.01064,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"11":0.01396,_:"6 7 8 9 10 5.5"},K:{"0":0.24592,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.43837},Q:{_:"13.1"},O:{"0":0.05881},H:{"0":0},L:{"0":33.69913}};
      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 2339f9e9a7a773..daa5c24b4ce4e1 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00828,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00552,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00276,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00276,"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.01104,"103":0,"104":0,"105":0.00276,"106":0.00276,"107":0.00276,"108":0.00276,"109":0.00276,"110":0.00276,"111":0.00276,"112":0,"113":0.00276,"114":0.00276,"115":0.19313,"116":0.02207,"117":0.4911,"118":0.06346,"119":0.00276,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00276,"47":0,"48":0.00276,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00276,"57":0,"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.00276,"71":0,"72":0,"73":0.00552,"74":0.00276,"75":0.00552,"76":0.00276,"77":0.00276,"78":0.00276,"79":0.00552,"80":0.00276,"81":0.00828,"83":0.00276,"84":0.00276,"85":0.01931,"86":0.00828,"87":0.00828,"88":0.00552,"89":0.00276,"90":0.00276,"91":0.00276,"92":0.00276,"93":0.00276,"94":0.00828,"95":0.00552,"96":0.00276,"97":0.00276,"98":0.00552,"99":0.00276,"100":0.00276,"101":0.00276,"102":0.00828,"103":0.01104,"104":0.00552,"105":0.01655,"106":0.03311,"107":0.03863,"108":0.04966,"109":0.49386,"110":0.01931,"111":0.02207,"112":0.03035,"113":0.0138,"114":0.03587,"115":0.05518,"116":3.1894,"117":0.90219,"118":0.01655,"119":0.00552,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00276,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00276,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00552,"62":0,"63":0.00276,"64":0.00276,"65":0,"66":0,"67":0,"68":0.00552,"69":0.0138,"70":0.0138,"71":0.03035,"72":0.28694,"73":0.06898,"74":0.00276,"75":0,"76":0.00276,"77":0.02759,"78":0.00552,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00552,"89":0,"90":0.00276,"91":0,"92":0,"93":0,"94":0.00276,"95":0.01104,"96":0,"97":0,"98":0,"99":0,"100":0.00828,"101":0.06622,"102":0.06346,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00276,"79":0,"80":0,"81":0,"83":0,"84":0.00276,"85":0.00276,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00552,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00276,"104":0,"105":0,"106":0.00276,"107":0.00828,"108":0.00552,"109":0.00552,"110":0.00276,"111":0.00276,"112":0.00276,"113":0,"114":0.00276,"115":0.00552,"116":0.1683,"117":0.1214},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.00276,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00276,"15.6":0.00828,"16.0":0,"16.1":0.00276,"16.2":0.00276,"16.3":0.00276,"16.4":0.00276,"16.5":0.00552,"16.6":0.03311,"17.0":0.00552,"17.1":0},G:{"8":0,"3.2":0.00067,"4.0-4.1":0,"4.2-4.3":0.00067,"5.0-5.1":0.00168,"6.0-6.1":0,"7.0-7.1":0.07423,"8.1-8.4":0.00134,"9.0-9.2":0.00336,"9.3":0.02183,"10.0-10.2":0.00101,"10.3":0.01411,"11.0-11.2":0.00974,"11.3-11.4":0.00202,"12.0-12.1":0.00369,"12.2-12.5":0.1236,"13.0-13.1":0.00134,"13.2":0.00202,"13.3":0.19346,"13.4-13.7":0.01142,"14.0-14.4":0.03627,"14.5-14.8":0.03392,"15.0-15.1":0.02351,"15.2-15.3":0.02519,"15.4":0.03191,"15.5":0.05105,"15.6-15.7":0.441,"16.0":0.09405,"16.1":0.15618,"16.2":0.08229,"16.3":0.16794,"16.4":0.06214,"16.5":0.16324,"16.6":1.31966,"17.0":0.17029,"17.1":0.00034},P:{"4":0.17929,"20":0.03164,"21":0.07383,"22":0.50624,"5.0-5.4":0,"6.2-6.4":0.01055,"7.2-7.4":0.06328,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01055,"12.0":0,"13.0":0.01055,"14.0":0,"15.0":0,"16.0":0.02109,"17.0":0.03164,"18.0":0.01055,"19.0":0.02109},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00829,"4.4":0,"4.4.3-4.4.4":0.14654},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00276,"9":0,"10":0,"11":0.02759,"5.5":0},S:{"2.5":0.00724,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.11057},R:{_:"0"},M:{"0":0.09413},Q:{"13.1":0},O:{"0":3.38155},H:{"0":2.21427}};
      +module.exports={C:{"37":0.00264,"40":0.01849,"43":0.00264,"44":0.00264,"47":0.00264,"49":0.00528,"52":0.01849,"56":0.00264,"65":0.00528,"68":0.00264,"72":0.00528,"75":0.00264,"78":0.00264,"80":0.00264,"81":0.00264,"86":0.00264,"87":0.01056,"89":0.00264,"91":0.00264,"99":0.00264,"102":0.01056,"103":0.00264,"104":0.00264,"105":0.01056,"106":0.01321,"107":0.01056,"108":0.01585,"109":0.00792,"110":0.01849,"111":0.01321,"112":0.00264,"113":0.00792,"114":0.00528,"115":0.64705,"116":0.02905,"117":0.05018,"118":1.43935,"119":0.33013,"120":0.01585,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 42 45 46 48 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 76 77 79 82 83 84 85 88 90 92 93 94 95 96 97 98 100 101 121 122 3.5 3.6"},D:{"38":0.00264,"41":0.00528,"46":0.00264,"48":0.00528,"49":0.00528,"50":0.00264,"53":0.00264,"56":0.00528,"58":0.00264,"63":0.00264,"64":0.00264,"65":0.00528,"66":0.00264,"68":0.00264,"69":0.00792,"70":0.00528,"71":0.00264,"72":0.00264,"73":0.01056,"74":0.00792,"75":0.01056,"76":0.00264,"77":0.00528,"78":0.00792,"79":0.01585,"80":0.00528,"81":0.02113,"83":0.00792,"84":0.00528,"85":0.07659,"86":0.02377,"87":0.01585,"88":0.01056,"89":0.00792,"90":0.00528,"91":0.00792,"92":0.00528,"93":0.01056,"94":0.01849,"95":0.01321,"96":0.00528,"97":0.01056,"98":0.00792,"99":0.00792,"100":0.01056,"101":0.00792,"102":0.02113,"103":0.03697,"104":0.01056,"105":0.07131,"106":0.14526,"107":0.16902,"108":0.20864,"109":1.76419,"110":0.12413,"111":0.1162,"112":0.11885,"113":0.03169,"114":0.07395,"115":0.06074,"116":0.26674,"117":7.04091,"118":7.16767,"119":0.0449,"120":0.02377,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 47 51 52 54 55 57 59 60 61 62 67 121 122"},F:{"28":0.00264,"36":0.00264,"46":0.00264,"70":0.00264,"75":0.00264,"78":0.00264,"79":0.00264,"85":0.00264,"90":0.00264,"91":0.00528,"92":0.00528,"93":0.01056,"94":0.01321,"95":0.03433,"96":0.00528,"97":0.00264,"99":0.00264,"100":0.00264,"101":0.00264,"102":0.3222,"103":0.13733,_:"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 71 72 73 74 76 77 80 81 82 83 84 86 87 88 89 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00528,"16":0.00264,"18":0.01056,"84":0.00264,"85":0.00264,"86":0.00264,"89":0.00264,"92":0.02113,"100":0.00264,"101":0.00264,"103":0.00792,"104":0.00264,"105":0.00264,"106":0.01321,"107":0.02905,"108":0.03433,"109":0.03697,"110":0.02113,"111":0.01849,"112":0.00528,"113":0.00264,"114":0.00528,"115":0.00528,"116":0.01056,"117":0.50443,"118":0.4833,"119":0.00528,_:"13 14 15 17 79 80 81 83 87 88 90 91 93 94 95 96 97 98 99 102"},E:{"8":0.00264,"14":0.00528,_:"0 4 5 6 7 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 17.2","13.1":0.00528,"14.1":0.01321,"15.4":0.00528,"15.5":0.00792,"15.6":0.02905,"16.0":0.00528,"16.1":0.01056,"16.2":0.00792,"16.3":0.01585,"16.4":0.00528,"16.5":0.01056,"16.6":0.07131,"17.0":0.07131,"17.1":0.00792},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00023,"5.0-5.1":0.00023,"6.0-6.1":0.00068,"7.0-7.1":0.00159,"8.1-8.4":0.00023,"9.0-9.2":0.00159,"9.3":0.00544,"10.0-10.2":0.00023,"10.3":0.00793,"11.0-11.2":0.00725,"11.3-11.4":0.00249,"12.0-12.1":0.00204,"12.2-12.5":0.03603,"13.0-13.1":0.00113,"13.2":0.00612,"13.3":0.00227,"13.4-13.7":0.00725,"14.0-14.4":0.01994,"14.5-14.8":0.03218,"15.0-15.1":0.01269,"15.2-15.3":0.0145,"15.4":0.01609,"15.5":0.02289,"15.6-15.7":0.15841,"16.0":0.05847,"16.1":0.11195,"16.2":0.05462,"16.3":0.1013,"16.4":0.02176,"16.5":0.05802,"16.6-16.7":1.08667,"17.0":0.38708,"17.1":0.02334,"17.2":0.00068},P:{"4":0.17775,"20":0.03137,"21":0.05228,"22":0.47052,"23":0.08365,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.06274,"11.1-11.2":0.01046,"13.0":0.01046,"16.0":0.02091,"17.0":0.03137,"18.0":0.01046,"19.0":0.03137},I:{"0":0.08053,"3":0,"4":0.00002,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00024},A:{"7":0.01098,"8":0.01098,"9":0.00274,"10":0.00274,"11":0.11253,_:"6 5.5"},K:{"0":2.0974,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01472,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.09565},Q:{_:"13.1"},O:{"0":3.679},H:{"0":0.11},L:{"0":67.51111}};
      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 5a3033f05e7946..2a615ef4ce3b1d 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00617,"49":0,"50":0,"51":0,"52":0.01234,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00617,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03085,"79":0,"80":0,"81":0,"82":0,"83":0.01234,"84":0,"85":0,"86":0,"87":0.04936,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00617,"95":0,"96":0,"97":0,"98":0.00617,"99":0,"100":0,"101":0,"102":0.07404,"103":0,"104":0.00617,"105":0.00617,"106":0,"107":0,"108":0.00617,"109":0.00617,"110":0.00617,"111":0,"112":0.00617,"113":0.01851,"114":0.00617,"115":0.1851,"116":0.1234,"117":1.73377,"118":0.17276,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00617,"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.03085,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01851,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.04319,"75":0.04319,"76":0.04319,"77":0.04319,"78":0.70955,"79":0.93784,"80":0.00617,"81":0.00617,"83":0.06787,"84":0.00617,"85":0.00617,"86":0,"87":0.01234,"88":0.00617,"89":0.01234,"90":0.00617,"91":0.00617,"92":0,"93":0.03702,"94":0.00617,"95":0.09255,"96":0.01234,"97":0.00617,"98":0.00617,"99":0.00617,"100":0.00617,"101":0.00617,"102":0.00617,"103":0.08021,"104":0.01234,"105":0.03702,"106":0.01851,"107":0.01851,"108":0.03702,"109":0.73423,"110":0.01234,"111":0.02468,"112":0.04319,"113":0.11106,"114":0.4319,"115":0.86997,"116":15.58542,"117":3.49839,"118":0.01234,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00617,"73":0,"74":0,"75":0,"76":0,"77":0.01234,"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.01234,"96":0,"97":0,"98":0,"99":0.01234,"100":0.08638,"101":0.22829,"102":0.43807,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00617,"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.00617,"93":0,"94":0,"95":0.00617,"96":0,"97":0,"98":0,"99":0.00617,"100":0,"101":0.00617,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00617,"108":0.01234,"109":0.08638,"110":0.01234,"111":0.00617,"112":0.01234,"113":0.01234,"114":0.10489,"115":0.31467,"116":4.10305,"117":2.11014},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00617,"14":0.03702,"15":0.00617,_:"0","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.02468,"13.1":0.10489,"14.1":0.1234,"15.1":0.01851,"15.2-15.3":0.01851,"15.4":0.04319,"15.5":0.05553,"15.6":0.37637,"16.0":0.03085,"16.1":0.08021,"16.2":0.08021,"16.3":0.20978,"16.4":0.07404,"16.5":0.26531,"16.6":1.62271,"17.0":0.08021,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0143,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04576,"10.0-10.2":0,"10.3":0.08007,"11.0-11.2":0.02288,"11.3-11.4":0.03432,"12.0-12.1":0.01144,"12.2-12.5":0.28598,"13.0-13.1":0,"13.2":0,"13.3":0.05148,"13.4-13.7":0.0286,"14.0-14.4":0.13155,"14.5-14.8":0.2059,"15.0-15.1":0.07721,"15.2-15.3":0.10009,"15.4":0.12869,"15.5":0.18875,"15.6-15.7":1.75019,"16.0":1.00951,"16.1":1.80453,"16.2":0.74641,"16.3":1.56716,"16.4":0.21734,"16.5":0.73211,"16.6":17.26455,"17.0":1.73589,"17.1":0.00286},P:{"4":0.02092,"20":0.03138,"21":0.11506,"22":2.9498,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01046,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01046,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01046,"18.0":0.01046,"19.0":0.03138},I:{"0":0,"3":0,"4":0.01099,"2.1":0,"2.2":0.00733,"2.3":0.01099,"4.1":0.01832,"4.2-4.3":0.01832,"4.4":0,"4.4.3-4.4.4":0.10257},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01234,"9":0,"10":0,"11":0.04936,"5.5":0},S:{"2.5":0.00383,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":28.12061},R:{_:"0"},M:{"0":0.3064},Q:{"13.1":0},O:{"0":0.02298},H:{"0":0.13054}};
      +module.exports={C:{"48":0.00561,"52":0.02243,"68":0.00561,"78":0.05608,"83":0.01122,"87":0.0729,"91":0.00561,"102":0.03926,"104":0.01122,"107":0.00561,"108":0.00561,"109":0.00561,"110":0.00561,"111":0.00561,"113":0.01682,"114":0.00561,"115":0.35891,"116":0.02243,"117":0.11777,"118":2.70306,"119":0.52715,"120":0.00561,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 88 89 90 92 93 94 95 96 97 98 99 100 101 103 105 106 112 121 122 3.5 3.6"},D:{"38":0.00561,"49":0.03926,"65":0.00561,"66":0.03365,"67":0.00561,"72":0.00561,"74":0.07851,"75":0.0729,"76":0.07851,"77":0.0729,"78":1.17768,"79":1.55342,"80":0.01122,"81":0.01122,"83":0.08412,"84":0.00561,"85":0.01122,"86":0.00561,"87":0.02243,"88":0.00561,"89":0.02243,"90":0.01122,"91":0.00561,"92":0.00561,"93":0.04486,"94":0.00561,"95":0.16263,"96":0.00561,"97":0.00561,"98":0.00561,"99":0.00561,"100":0.01122,"101":0.00561,"102":0.00561,"103":0.09534,"104":0.01122,"105":0.0673,"106":0.02243,"107":0.03926,"108":0.05047,"109":0.97018,"110":0.02243,"111":0.03926,"112":0.04486,"113":0.0673,"114":0.24675,"115":0.2075,"116":1.53659,"117":14.02561,"118":13.54332,"119":0.01682,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 68 69 70 71 73 120 121 122"},F:{"46":0.00561,"95":0.02243,"100":0.00561,"101":0.00561,"102":1.51416,"103":0.22993,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00561,"92":0.00561,"94":0.00561,"102":0.00561,"104":0.00561,"105":0.00561,"106":0.00561,"107":0.00561,"108":0.01682,"109":0.12898,"110":0.00561,"111":0.00561,"112":0.02243,"113":0.02804,"114":0.05608,"115":0.04486,"116":0.17946,"117":4.14431,"118":3.91999,"119":0.01122,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 95 96 97 98 99 100 101 103"},E:{"13":0.00561,"14":0.0673,"15":0.01682,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.2","9.1":0.01122,"12.1":0.03365,"13.1":0.18506,"14.1":0.23554,"15.1":0.03365,"15.2-15.3":0.05047,"15.4":0.0673,"15.5":0.10094,"15.6":0.67857,"16.0":0.05608,"16.1":0.15142,"16.2":0.15702,"16.3":0.3533,"16.4":0.15702,"16.5":0.38695,"16.6":2.3105,"17.0":1.02626,"17.1":0.0673},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00198,"5.0-5.1":0.00198,"6.0-6.1":0.00593,"7.0-7.1":0.01384,"8.1-8.4":0.00198,"9.0-9.2":0.01384,"9.3":0.04746,"10.0-10.2":0.00198,"10.3":0.06922,"11.0-11.2":0.06329,"11.3-11.4":0.02175,"12.0-12.1":0.0178,"12.2-12.5":0.31446,"13.0-13.1":0.00989,"13.2":0.0534,"13.3":0.01978,"13.4-13.7":0.06329,"14.0-14.4":0.17404,"14.5-14.8":0.28083,"15.0-15.1":0.11075,"15.2-15.3":0.12657,"15.4":0.14042,"15.5":0.19975,"15.6-15.7":1.38242,"16.0":0.51025,"16.1":0.97699,"16.2":0.47663,"16.3":0.88403,"16.4":0.18986,"16.5":0.50629,"16.6-16.7":9.4831,"17.0":3.37792,"17.1":0.2037,"17.2":0.00593},P:{"4":0.04255,"20":0.03191,"21":0.08511,"22":2.57443,"23":0.57446,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","7.2-7.4":0.01064,"13.0":0.01064,"17.0":0.01064,"18.0":0.01064,"19.0":0.02128},I:{"0":0.06553,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"8":0.00608,"11":0.06683,_:"6 7 9 10 5.5"},K:{"0":0.14929,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.33811},Q:{_:"13.1"},O:{"0":0.01756},H:{"0":0},L:{"0":20.36844}};
      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 c933c974f3c268..abafd17a247563 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00273,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00273,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.03007,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00547,"100":0,"101":0,"102":0.0082,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00273,"110":0,"111":0.00273,"112":0.00273,"113":0.00273,"114":0.05468,"115":0.19411,"116":0.04374,"117":0.54407,"118":0.06835,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00547,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00273,"65":0,"66":0,"67":0,"68":0,"69":0.00547,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00547,"80":0,"81":0.0164,"83":0,"84":0,"85":0,"86":0,"87":0.00273,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00547,"94":0.02734,"95":0.00273,"96":0.00273,"97":0.00547,"98":0,"99":0.00273,"100":0.00273,"101":0,"102":0,"103":0.00547,"104":0.00273,"105":0.01367,"106":0.01094,"107":0.00273,"108":0.01914,"109":0.45384,"110":0.00547,"111":0.00547,"112":0.01914,"113":0.00547,"114":0.01914,"115":0.04374,"116":1.922,"117":0.38003,"118":0,"119":0.00547,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00273,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.03554,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00273,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00273,"60":0.07108,"62":0.00273,"63":0.01094,"64":0.00273,"65":0,"66":0.01367,"67":0.03554,"68":0.00273,"69":0.04921,"70":0.03554,"71":0.06015,"72":0.19685,"73":0.03007,"74":0,"75":0,"76":0,"77":0.0082,"78":0,"79":0.01094,"80":0,"81":0,"82":0,"83":0,"84":0.00273,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00273,"91":0,"92":0,"93":0,"94":0,"95":0.01367,"96":0,"97":0,"98":0,"99":0,"100":0.00273,"101":0.13123,"102":0.1449,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00273},B:{"12":0.00273,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00547,"79":0,"80":0,"81":0,"83":0,"84":0.00273,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00273,"91":0,"92":0.0082,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00273,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00547,"109":0.05195,"110":0,"111":0,"112":0,"113":0.00273,"114":0.04648,"115":0.06015,"116":0.5632,"117":0.39916},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.00547,"14.1":0.00273,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00273,"15.6":0.01094,"16.0":0,"16.1":0,"16.2":0,"16.3":0.0082,"16.4":0.01094,"16.5":0.01094,"16.6":0.04374,"17.0":0.00273,"17.1":0},G:{"8":0.00475,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00136,"6.0-6.1":0,"7.0-7.1":0.24153,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01832,"10.0-10.2":0,"10.3":0.01221,"11.0-11.2":0.00543,"11.3-11.4":0.00814,"12.0-12.1":0.48713,"12.2-12.5":0.51698,"13.0-13.1":0.00204,"13.2":0,"13.3":0.00407,"13.4-13.7":0.0095,"14.0-14.4":0.13705,"14.5-14.8":0.03596,"15.0-15.1":0.10652,"15.2-15.3":0.04681,"15.4":0.019,"15.5":0.04342,"15.6-15.7":0.65064,"16.0":0.23678,"16.1":0.31819,"16.2":0.12076,"16.3":0.19132,"16.4":0.26731,"16.5":0.53598,"16.6":1.86846,"17.0":0.82025,"17.1":0},P:{"4":0.02093,"20":0.07326,"21":0.07326,"22":0.57561,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.31397,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.01047,"15.0":0.01047,"16.0":0,"17.0":0.01047,"18.0":0.02093,"19.0":0.0314},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00152,"4.4":0,"4.4.3-4.4.4":0.12949},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0082,"5.5":0},S:{"2.5":0.00727,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.29328},R:{_:"0"},M:{"0":0.10899},Q:{"13.1":0.11626},O:{"0":0.46502},H:{"0":3.50828}};
      +module.exports={C:{"30":0.00246,"33":0.00246,"43":0.00246,"47":0.00491,"48":0.00246,"52":0.00491,"62":0.00246,"63":0.00491,"72":0.01228,"76":0.00246,"78":0.00246,"85":0.46418,"93":0.00246,"99":0.01474,"100":0.02456,"102":0.00491,"103":0.00246,"107":0.00246,"108":0.00246,"109":0.00246,"110":0.00246,"111":0.02456,"113":0.00491,"114":0.02947,"115":0.89398,"116":0.0614,"117":0.0614,"118":2.3111,"119":0.35121,"120":0.00491,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 34 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 56 57 58 59 60 61 64 65 66 67 68 69 70 71 73 74 75 77 79 80 81 82 83 84 86 87 88 89 90 91 92 94 95 96 97 98 101 104 105 106 112 121 122 3.5 3.6"},D:{"17":0.00246,"28":0.00246,"31":0.00246,"34":0.00246,"41":0.00491,"49":0.00246,"50":0.00246,"64":0.00246,"65":0.00737,"68":0.00246,"72":0.00246,"73":0.00246,"74":0.00491,"75":0.00491,"79":0.11543,"80":0.00246,"81":0.00246,"84":0.00246,"85":0.00246,"87":0.01228,"88":0.00246,"89":0.00246,"91":0.02702,"92":0.00246,"93":0.01228,"94":0.00246,"95":0.01474,"96":0.00246,"97":0.03438,"98":0.00246,"99":0.00246,"100":0.00491,"102":0.00737,"103":0.05158,"104":0.01965,"105":0.00737,"106":0.00491,"107":0.00246,"108":0.01474,"109":1.65043,"110":0.02947,"111":0.00491,"112":0.21367,"113":0.00982,"114":0.04175,"115":0.02702,"116":0.24069,"117":2.94966,"118":3.97872,"119":0.00982,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 29 30 32 33 35 36 37 38 39 40 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 63 66 67 69 70 71 76 77 78 83 86 90 101 120 121 122"},F:{"40":0.00246,"79":0.00491,"84":0.00246,"85":0.00246,"86":0.00246,"95":0.0614,"101":0.03193,"102":0.53295,"103":0.47155,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00491,"13":0.00737,"14":0.00246,"15":0.00246,"16":0.00246,"17":0.00246,"18":0.04666,"84":0.00491,"89":0.00246,"90":0.00246,"92":0.04912,"98":0.00246,"100":0.00246,"103":0.00246,"104":0.00246,"105":0.02702,"107":0.00246,"108":0.00737,"109":0.0393,"110":0.00246,"112":0.00246,"113":0.00246,"114":0.01965,"115":0.03684,"116":0.18666,"117":1.8027,"118":1.7806,"119":0.00246,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 99 101 102 106 111"},E:{"13":0.00491,"14":0.00246,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.4 17.2","5.1":0.00737,"12.1":0.00491,"13.1":0.10315,"14.1":0.00246,"15.1":0.00246,"15.2-15.3":0.00491,"15.5":0.00246,"15.6":0.02456,"16.0":0.00246,"16.1":0.00246,"16.2":0.00491,"16.3":0.02456,"16.4":0.00737,"16.5":0.02702,"16.6":0.05649,"17.0":0.09087,"17.1":0.01228},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00039,"5.0-5.1":0.00039,"6.0-6.1":0.00117,"7.0-7.1":0.00274,"8.1-8.4":0.00039,"9.0-9.2":0.00274,"9.3":0.00938,"10.0-10.2":0.00039,"10.3":0.01368,"11.0-11.2":0.0125,"11.3-11.4":0.0043,"12.0-12.1":0.00352,"12.2-12.5":0.06213,"13.0-13.1":0.00195,"13.2":0.01055,"13.3":0.00391,"13.4-13.7":0.0125,"14.0-14.4":0.03439,"14.5-14.8":0.05549,"15.0-15.1":0.02188,"15.2-15.3":0.02501,"15.4":0.02775,"15.5":0.03947,"15.6-15.7":0.27315,"16.0":0.10082,"16.1":0.19304,"16.2":0.09418,"16.3":0.17468,"16.4":0.03751,"16.5":0.10004,"16.6-16.7":1.87379,"17.0":0.66745,"17.1":0.04025,"17.2":0.00117},P:{"4":0.06068,"20":0.0708,"21":0.05057,"22":0.49558,"23":0.12137,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","7.2-7.4":0.05057,"13.0":0.01011,"17.0":0.01011,"18.0":0.01011,"19.0":0.04046},I:{"0":0.09007,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00027},A:{"11":0.02702,_:"6 7 8 9 10 5.5"},K:{"0":2.49656,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00754,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.10562},Q:{"13.1":0.09807},O:{"0":0.33948},H:{"0":1.2},L:{"0":71.01358}};
      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 71448df33a7437..16de0b6a190315 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.21246,"46":0,"47":0,"48":0.02854,"49":0,"50":0,"51":0,"52":0.03488,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00317,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01268,"67":0,"68":0.00317,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00634,"79":0,"80":0.00634,"81":0,"82":0,"83":0.00634,"84":0.00634,"85":0,"86":0,"87":0,"88":0.00317,"89":0,"90":0.00317,"91":0.00317,"92":0,"93":0,"94":0,"95":0,"96":0.00317,"97":0,"98":0.00317,"99":0.00317,"100":0,"101":0,"102":0.03805,"103":0.00317,"104":0.00317,"105":0,"106":0,"107":0.00317,"108":0.00634,"109":0.00317,"110":0.00317,"111":0.00317,"112":0.00634,"113":0.00634,"114":0.00951,"115":0.28222,"116":0.05708,"117":0.75153,"118":0.06025,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00317,"34":0,"35":0,"36":0,"37":0,"38":0.00317,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0222,"50":0,"51":0.00317,"52":0,"53":0.00317,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00317,"62":0,"63":0.00317,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00317,"72":0,"73":0,"74":0,"75":0.00951,"76":0.00317,"77":0.00951,"78":0.00951,"79":0.0222,"80":0.00634,"81":0.01268,"83":0.00317,"84":0.00317,"85":0.00634,"86":0.00634,"87":0.01268,"88":0.00317,"89":0.00317,"90":0.01268,"91":0.01268,"92":0.00317,"93":0.00634,"94":0.00317,"95":0.00634,"96":0.00317,"97":0.00317,"98":0.00317,"99":0.00951,"100":0.00634,"101":0,"102":0.00951,"103":0.01268,"104":0.00634,"105":0.00634,"106":0.0222,"107":0.01586,"108":0.01586,"109":0.94813,"110":0.00634,"111":0.00951,"112":0.01268,"113":0.01268,"114":0.04757,"115":0.10464,"116":3.97009,"117":1.01155,"118":0.00317,"119":0.00634,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00634,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00317,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00634,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00317,"70":0,"71":0,"72":0.00634,"73":0,"74":0,"75":0.00317,"76":0,"77":0.01268,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00317,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03488,"96":0,"97":0,"98":0,"99":0.00634,"100":0.03171,"101":0.15221,"102":0.16489,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00317,"79":0,"80":0,"81":0.00634,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00317,"90":0.00317,"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.00317,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.02537,"110":0.00317,"111":0.00317,"112":0,"113":0.00317,"114":0.00634,"115":0.01903,"116":0.44711,"117":0.32344},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00317,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00317,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00634,"14.1":0.01268,"15.1":0,"15.2-15.3":0,"15.4":0.00317,"15.5":0.00634,"15.6":0.0222,"16.0":0.00317,"16.1":0.00634,"16.2":0.00634,"16.3":0.01586,"16.4":0.00634,"16.5":0.01903,"16.6":0.09513,"17.0":0.00951,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00831,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01108,"10.0-10.2":0,"10.3":0.03601,"11.0-11.2":0.02077,"11.3-11.4":0.00277,"12.0-12.1":0.00692,"12.2-12.5":0.16758,"13.0-13.1":0.00277,"13.2":0.00138,"13.3":0.44872,"13.4-13.7":0.02631,"14.0-14.4":0.06925,"14.5-14.8":0.18835,"15.0-15.1":0.04293,"15.2-15.3":0.05263,"15.4":0.06786,"15.5":0.09971,"15.6-15.7":0.89605,"16.0":0.4778,"16.1":0.69246,"16.2":0.36008,"16.3":0.66892,"16.4":0.14819,"16.5":0.45979,"16.6":7.80543,"17.0":0.93759,"17.1":0},P:{"4":0.10292,"20":0.11321,"21":0.21613,"22":2.91268,"5.0-5.4":0.01029,"6.2-6.4":0.01029,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02058,"12.0":0,"13.0":0.02058,"14.0":0.02058,"15.0":0.01029,"16.0":0.03088,"17.0":0.03088,"18.0":0.03088,"19.0":0.08234},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04192,"4.2-4.3":0.06987,"4.4":0,"4.4.3-4.4.4":0.20261},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00634,"9":0,"10":0,"11":0.03805,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":70.68201},R:{_:"0"},M:{"0":0.20487},Q:{"13.1":0},O:{"0":0.02049},H:{"0":0.30387}};
      +module.exports={C:{"38":0.00319,"45":0.07328,"48":0.09558,"50":0.00319,"52":0.10195,"56":0.00319,"57":0.00319,"60":0.00319,"65":0.00319,"66":0.01912,"67":0.00319,"68":0.00637,"72":0.00637,"75":0.00319,"78":0.02549,"80":0.00956,"81":0.00319,"83":0.01593,"84":0.01274,"85":0.00319,"86":0.00319,"87":0.00319,"88":0.01274,"89":0.00319,"90":0.00637,"91":0.00637,"94":0.00319,"95":0.00319,"96":0.00956,"97":0.00319,"98":0.00637,"99":0.01274,"100":0.00637,"102":0.02867,"103":0.00956,"104":0.00637,"105":0.00319,"106":0.00637,"107":0.00637,"108":0.0223,"109":0.00637,"110":0.00637,"111":0.00956,"112":0.01593,"113":0.01912,"114":0.01274,"115":1.03545,"116":0.01912,"117":0.09877,"118":2.25569,"119":0.47471,"120":0.00319,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 49 51 53 54 55 58 59 61 62 63 64 69 70 71 73 74 76 77 79 82 92 93 101 121 122 3.5 3.6"},D:{"5":0.00319,"9":0.00319,"26":0.00319,"33":0.01274,"38":0.00637,"41":0.00637,"49":0.06691,"53":0.00319,"55":0.00319,"63":0.00637,"67":0.00319,"69":0.00319,"70":0.00319,"71":0.00637,"73":0.00319,"74":0.00319,"75":0.00319,"76":0.00319,"77":0.00319,"78":0.00319,"79":0.05098,"80":0.00319,"81":0.00956,"83":0.01274,"84":0.00319,"85":0.01593,"86":0.01274,"87":0.02549,"88":0.00956,"89":0.00637,"90":0.00956,"91":0.00637,"92":0.00637,"93":0.0223,"94":0.00637,"95":0.01274,"96":0.00319,"97":0.00956,"98":0.00956,"99":0.01912,"100":0.01274,"101":0.00319,"102":0.02549,"103":0.03186,"104":0.01274,"105":0.00956,"106":0.02549,"107":0.01912,"108":0.04142,"109":3.18281,"110":0.01912,"111":0.02549,"112":0.02867,"113":0.02549,"114":0.06053,"115":0.07965,"116":0.59897,"117":7.86942,"118":8.42697,"119":0.01274,"120":0.00319,_:"4 6 7 8 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 54 56 57 58 59 60 61 62 64 65 66 68 72 121 122"},F:{"28":0.0223,"36":0.00637,"40":0.00319,"46":0.01274,"55":0.00319,"64":0.00319,"78":0.00319,"79":0.00319,"81":0.00319,"83":0.00319,"85":0.00637,"89":0.00319,"91":0.00319,"93":0.00319,"94":0.00637,"95":0.11788,"96":0.00319,"97":0.00319,"99":0.00319,"100":0.00319,"101":0.00956,"102":0.85703,"103":0.29311,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 80 82 84 86 87 88 90 92 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00319,"16":0.00319,"18":0.00956,"92":0.00319,"106":0.00319,"107":0.00637,"108":0.00956,"109":0.09558,"110":0.00637,"111":0.00319,"112":0.00637,"113":0.00637,"114":0.01274,"115":0.01274,"116":0.04779,"117":1.23298,"118":1.36998,"119":0.00319,_:"12 13 14 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105"},E:{"8":0.00319,"14":0.01593,"15":0.00319,_:"0 4 5 6 7 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.00637,"13.1":0.01593,"14.1":0.0446,"15.1":0.00319,"15.2-15.3":0.00319,"15.4":0.00637,"15.5":0.01274,"15.6":0.06372,"16.0":0.00637,"16.1":0.0223,"16.2":0.01912,"16.3":0.03505,"16.4":0.01274,"16.5":0.03823,"16.6":0.2039,"17.0":0.14018,"17.1":0.00956},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0009,"5.0-5.1":0.0009,"6.0-6.1":0.0027,"7.0-7.1":0.00631,"8.1-8.4":0.0009,"9.0-9.2":0.00631,"9.3":0.02163,"10.0-10.2":0.0009,"10.3":0.03155,"11.0-11.2":0.02884,"11.3-11.4":0.00991,"12.0-12.1":0.00811,"12.2-12.5":0.14332,"13.0-13.1":0.00451,"13.2":0.02434,"13.3":0.00901,"13.4-13.7":0.02884,"14.0-14.4":0.07932,"14.5-14.8":0.12799,"15.0-15.1":0.05048,"15.2-15.3":0.05769,"15.4":0.064,"15.5":0.09104,"15.6-15.7":0.63005,"16.0":0.23255,"16.1":0.44527,"16.2":0.21723,"16.3":0.40291,"16.4":0.08653,"16.5":0.23075,"16.6-16.7":4.32202,"17.0":1.53952,"17.1":0.09284,"17.2":0.0027},P:{"4":0.07187,"20":0.09241,"21":0.16428,"22":2.52587,"23":0.49285,"5.0-5.4":0.01027,"6.2-6.4":0.01027,"7.2-7.4":0.01027,_:"8.2 9.2 10.1","11.1-11.2":0.02054,"12.0":0.01027,"13.0":0.02054,"14.0":0.02054,"15.0":0.01027,"16.0":0.0308,"17.0":0.0308,"18.0":0.0308,"19.0":0.07187},I:{"0":0.2169,"3":0,"4":0.00004,"2.1":0,"2.2":0.00007,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00015,"4.4":0,"4.4.3-4.4.4":0.00065},A:{"8":0.00333,"11":0.14641,_:"6 7 9 10 5.5"},K:{"0":0.29296,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.18395},Q:{_:"13.1"},O:{"0":0.02044},H:{"0":0},L:{"0":55.84006}};
      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 4e1f0cfdd4bd21..3e02eb80e3391e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01137,"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.00569,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.04833,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00569,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.01137,"114":0.00284,"115":0.0199,"116":0.01706,"117":0.20754,"118":0.02274,"119":0.00284,"120":0.00284,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00284,"57":0,"58":0.00853,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00284,"66":0,"67":0,"68":0.00569,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00284,"76":0.00284,"77":0,"78":0.00284,"79":0.02274,"80":0.04549,"81":0.00284,"83":0,"84":0,"85":0,"86":0.02559,"87":0.01137,"88":0.00284,"89":0.00284,"90":0.02274,"91":0.00284,"92":0,"93":0.00284,"94":0.00569,"95":0.00284,"96":0.00284,"97":0.00569,"98":0.00569,"99":0.00853,"100":0,"101":0,"102":0.00569,"103":0.03696,"104":0,"105":0.00569,"106":0.00569,"107":0.00569,"108":0.00853,"109":0.24166,"110":0.00569,"111":0.00853,"112":0.00853,"113":0.01706,"114":0.06539,"115":0.09951,"116":3.68169,"117":1.09171,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00853,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00569,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00569,"47":0,"48":0,"49":0,"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.00569,"70":0,"71":0,"72":0.00569,"73":0,"74":0.00284,"75":0,"76":0.00284,"77":0.04833,"78":0.00284,"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.00569,"94":0,"95":0.00284,"96":0,"97":0,"98":0,"99":0.01706,"100":0.0398,"101":0.04265,"102":0.02559,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00284,"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.00569,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00569,"101":0,"102":0,"103":0,"104":0.00284,"105":0,"106":0,"107":0,"108":0.00569,"109":0.03696,"110":0.00284,"111":0.00284,"112":0.00284,"113":0.00853,"114":0.01137,"115":0.07676,"116":0.46341,"117":0.41792},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00284,"14":0.01422,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00284,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00569,"14.1":0.0199,"15.1":0.00284,"15.2-15.3":0.00569,"15.4":0.00853,"15.5":0.01422,"15.6":0.05402,"16.0":0.00569,"16.1":0.0199,"16.2":0.01422,"16.3":0.0398,"16.4":0.01706,"16.5":0.0597,"16.6":0.26156,"17.0":0.0398,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00912,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05242,"10.0-10.2":0,"10.3":0.02279,"11.0-11.2":0.0114,"11.3-11.4":0.00228,"12.0-12.1":0.01823,"12.2-12.5":0.19602,"13.0-13.1":0.03875,"13.2":0.00456,"13.3":1.03479,"13.4-13.7":0.03875,"14.0-14.4":0.13676,"14.5-14.8":0.24388,"15.0-15.1":0.07977,"15.2-15.3":0.10257,"15.4":0.17322,"15.5":0.27579,"15.6-15.7":1.49292,"16.0":0.74988,"16.1":0.93222,"16.2":0.47181,"16.3":1.05986,"16.4":0.33277,"16.5":1.00971,"16.6":12.1667,"17.0":1.91914,"17.1":0.00456},P:{"4":0.16208,"20":0.06078,"21":0.18234,"22":3.09984,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07091,"8.2":0,"9.2":0.05065,"10.1":0,"11.1-11.2":0.1013,"12.0":0.01013,"13.0":0.01013,"14.0":0.02026,"15.0":0.01013,"16.0":0.04052,"17.0":0.11143,"18.0":0.04052,"19.0":0.08104},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.1498},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01706,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":57.64222},R:{_:"0"},M:{"0":0.5654},Q:{"13.1":0},O:{"0":3.08467},H:{"0":1.36193}};
      +module.exports={C:{"34":0.0031,"52":0.00619,"78":0.0031,"105":0.00929,"113":0.00619,"114":0.0031,"115":0.08047,"117":0.02476,"118":0.57258,"119":0.09285,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 112 116 120 121 122 3.5 3.6"},D:{"11":0.0031,"38":0.0031,"47":0.00619,"49":0.0031,"50":0.0031,"56":0.0031,"58":0.11142,"64":0.0031,"65":0.00619,"66":0.00619,"68":0.01548,"70":0.0031,"73":0.0031,"75":0.0031,"76":0.00929,"78":0.0031,"79":0.08357,"80":0.0031,"81":0.0031,"83":0.00929,"85":0.00619,"86":0.01238,"87":0.05571,"88":0.00929,"89":0.00619,"90":0.0031,"91":0.01548,"92":0.0031,"93":0.02167,"94":0.01548,"95":0.00619,"96":0.00929,"97":0.0031,"98":0.00929,"99":0.00929,"100":0.0031,"101":0.01857,"102":0.01548,"103":0.08976,"104":0.0031,"105":0.01857,"106":0.01548,"107":0.02476,"108":0.01238,"109":1.03373,"110":0.01548,"111":0.01548,"112":0.04333,"113":0.04643,"114":0.13928,"115":0.0619,"116":0.76447,"117":9.46761,"118":9.79258,"119":0.01238,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 55 57 59 60 61 62 63 67 69 71 72 74 77 84 120 121 122"},F:{"28":0.01857,"36":0.02167,"46":0.01857,"78":0.0031,"83":0.0031,"90":0.0031,"95":0.00619,"96":0.0031,"98":0.0031,"99":0.04643,"100":0.02476,"101":0.13309,"102":0.24141,"103":0.0619,_:"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 79 80 81 82 84 85 86 87 88 89 91 92 93 94 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.0031,"18":0.00929,"92":0.02786,"100":0.03714,"107":0.0031,"108":0.01548,"109":0.08976,"110":0.0031,"111":0.0031,"112":0.01238,"113":0.03095,"114":0.02167,"115":0.1888,"116":0.04643,"117":1.95914,"118":1.77963,"119":0.0031,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106"},E:{"13":0.00929,"14":0.05571,"15":0.0031,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00619,"12.1":0.0031,"13.1":0.03095,"14.1":0.04024,"15.1":0.00929,"15.2-15.3":0.01238,"15.4":0.01548,"15.5":0.03405,"15.6":0.16713,"16.0":0.00929,"16.1":0.05571,"16.2":0.03095,"16.3":0.10833,"16.4":0.03714,"16.5":0.14856,"16.6":0.54163,"17.0":0.40854,"17.1":0.02167},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00172,"5.0-5.1":0.00172,"6.0-6.1":0.00515,"7.0-7.1":0.01201,"8.1-8.4":0.00172,"9.0-9.2":0.01201,"9.3":0.04118,"10.0-10.2":0.00172,"10.3":0.06006,"11.0-11.2":0.05491,"11.3-11.4":0.01887,"12.0-12.1":0.01544,"12.2-12.5":0.27283,"13.0-13.1":0.00858,"13.2":0.04633,"13.3":0.01716,"13.4-13.7":0.05491,"14.0-14.4":0.151,"14.5-14.8":0.24366,"15.0-15.1":0.09609,"15.2-15.3":0.10982,"15.4":0.12183,"15.5":0.17331,"15.6-15.7":1.19941,"16.0":0.4427,"16.1":0.84765,"16.2":0.41353,"16.3":0.767,"16.4":0.16473,"16.5":0.43927,"16.6-16.7":8.2277,"17.0":2.93074,"17.1":0.17674,"17.2":0.00515},P:{"4":0.09283,"20":0.05157,"21":0.11346,"22":2.1557,"23":0.4332,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 15.0","7.2-7.4":0.04126,"11.1-11.2":0.10314,"12.0":0.01031,"13.0":0.01031,"14.0":0.02063,"16.0":0.02063,"17.0":0.18566,"18.0":0.02063,"19.0":0.04126},I:{"0":0.08244,"3":0,"4":0.00002,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{"11":0.03714,_:"6 7 8 9 10 5.5"},K:{"0":1.44696,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.47645},Q:{_:"13.1"},O:{"0":3.12797},H:{"0":0.01},L:{"0":44.59259}};
      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 23f4a641d5dc07..ac1d271e1bda20 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00237,"48":0,"49":0,"50":0,"51":0,"52":0.00237,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00237,"103":0.00237,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00474,"114":0.00474,"115":0.07584,"116":0.00948,"117":0.18012,"118":0.01422,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00237,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00237,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00711,"60":0,"61":0,"62":0,"63":0,"64":0.01185,"65":0,"66":0,"67":0.00237,"68":0,"69":0,"70":0.00711,"71":0,"72":0.00474,"73":0.00474,"74":0.00237,"75":0,"76":0,"77":0,"78":0,"79":0.00474,"80":0.00474,"81":0.00474,"83":0.00237,"84":0.00237,"85":0,"86":0,"87":0.00237,"88":0.00237,"89":0,"90":0.00237,"91":0.01185,"92":0.00237,"93":0.00474,"94":0,"95":0.00237,"96":0.00237,"97":0,"98":0,"99":0.00237,"100":0.00237,"101":0.00948,"102":0.00237,"103":0.00948,"104":0.01185,"105":0.00237,"106":0.00474,"107":0,"108":0.00948,"109":0.2607,"110":0.00474,"111":0.00237,"112":0.00474,"113":0.00711,"114":0.02607,"115":0.02844,"116":1.6353,"117":0.29862,"118":0.01896,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.00237,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00474,"24":0.00711,"25":0,"26":0.00711,"27":0.00237,"28":0.00237,"29":0,"30":0.00474,"31":0.00237,"32":0.00711,"33":0.00237,"34":0,"35":0,"36":0,"37":0.19434,"38":0.00237,"39":0,"40":0,"41":0,"42":0.00237,"43":0,"44":0,"45":0.00237,"46":0,"47":0,"48":0,"49":0,"50":0.00711,"51":0.00237,"52":0,"53":0.00474,"54":0,"55":0,"56":0.00237,"57":0.00237,"58":0.00237,"60":0.02844,"62":0,"63":0.06162,"64":0.00474,"65":0.00474,"66":0.02844,"67":0.04503,"68":0.00948,"69":0.26781,"70":0.04029,"71":0.17301,"72":0.22041,"73":0.06636,"74":0,"75":0,"76":0.00237,"77":0.01185,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00237,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00948,"96":0,"97":0,"98":0,"99":0.00237,"100":0,"101":0.06399,"102":0.04977,"9.5-9.6":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.00948,"13":0.00237,"14":0.00237,"15":0.00474,"16":0,"17":0.00237,"18":0.00711,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00237,"90":0,"91":0,"92":0.00948,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00237,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00237,"110":0.00237,"111":0.02133,"112":0,"113":0.00237,"114":0.01185,"115":0.01422,"116":0.21567,"117":0.16116},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.10665,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00237,"12.1":0,"13.1":0.00474,"14.1":0.00474,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00237,"15.6":0.00474,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0.00237,"16.6":0.00237,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0585,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03687,"10.0-10.2":0,"10.3":0.00886,"11.0-11.2":0.00319,"11.3-11.4":0,"12.0-12.1":0.00745,"12.2-12.5":0.56659,"13.0-13.1":0,"13.2":0.00142,"13.3":0.00248,"13.4-13.7":0.31202,"14.0-14.4":0.12835,"14.5-14.8":0.12055,"15.0-15.1":0.1085,"15.2-15.3":0.02624,"15.4":0.0468,"15.5":0.14289,"15.6-15.7":0.48859,"16.0":0.18827,"16.1":0.31202,"16.2":0.06914,"16.3":0.1514,"16.4":0.0312,"16.5":0.22834,"16.6":0.4464,"17.0":0.05496,"17.1":0},P:{"4":0.41263,"20":0.04126,"21":0.02063,"22":0.35074,"5.0-5.4":0.02063,"6.2-6.4":0.01032,"7.2-7.4":0.10316,"8.2":0.01032,"9.2":0.05158,"10.1":0,"11.1-11.2":0.01032,"12.0":0,"13.0":0.09284,"14.0":0.01032,"15.0":0.02063,"16.0":0.02063,"17.0":0.03095,"18.0":0.03095,"19.0":0.05158},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.00151,"4.4":0,"4.4.3-4.4.4":0.1279},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00948,"5.5":0},S:{"2.5":0.23653,_:"3.0-3.1"},J:{"7":0,"10":0.34335},N:{"10":0,"11":0},L:{"0":76.55346},R:{_:"0"},M:{"0":0.02289},Q:{"13.1":0},O:{"0":0.25942},H:{"0":10.01912}};
      +module.exports={C:{"47":0.00226,"50":0.00226,"52":0.00903,"56":0.00677,"72":0.00677,"75":0.00226,"91":0.00226,"93":0.00226,"101":0.02483,"102":0.00903,"107":0.00226,"110":0.02483,"111":0.00226,"113":0.00226,"114":0.00677,"115":0.14671,"116":0.00903,"117":0.06094,"118":0.9344,"119":0.18056,"120":0.00226,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 94 95 96 97 98 99 100 103 104 105 106 108 109 112 121 122 3.5 3.6"},D:{"38":0.00451,"43":0.00226,"48":0.0158,"52":0.00226,"59":0.00226,"63":0.00451,"64":0.08802,"65":0.00903,"66":0.00226,"67":0.01129,"68":0.00677,"70":0.00677,"72":0.02708,"73":0.01129,"74":0.00226,"75":0.00677,"76":0.00226,"77":0.00226,"79":0.08577,"80":0.00677,"83":0.00903,"84":0.00226,"85":0.00451,"87":0.00677,"88":0.00226,"89":0.00226,"90":0.00451,"91":0.0474,"92":0.02031,"93":0.0474,"94":0.04965,"95":0.00451,"96":0.00226,"97":0.01354,"99":0.01354,"101":0.00677,"103":0.02708,"104":0.00226,"105":0.01354,"106":0.01354,"107":0.00451,"108":0.01354,"109":1.07885,"110":0.00226,"111":0.00903,"112":0.03611,"113":0.03386,"114":0.03611,"115":0.04965,"116":0.36338,"117":3.76919,"118":3.92267,"119":0.14445,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 49 50 51 53 54 55 56 57 58 60 61 62 69 71 78 81 86 98 100 102 120 121 122"},F:{"37":0.00226,"42":0.00226,"48":0.00226,"68":0.00226,"79":0.00226,"89":0.00226,"95":0.04514,"97":0.00226,"99":0.00677,"101":0.00903,"102":0.20539,"103":0.16702,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0158,"13":0.00451,"14":0.00226,"16":0.00451,"17":0.01129,"18":0.03386,"84":0.00226,"89":0.00677,"90":0.00903,"92":0.03611,"100":0.01354,"104":0.00226,"105":0.00226,"108":0.00226,"109":0.00451,"110":0.08802,"111":0.02934,"112":0.00226,"113":0.00451,"114":0.07222,"115":0.01354,"116":0.01806,"117":0.71096,"118":0.89829,_:"15 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 106 107 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 11.1 15.1 15.2-15.3 15.4 16.0 16.2 16.4 17.2","5.1":0.37015,"10.1":0.02934,"12.1":0.00451,"13.1":0.09479,"14.1":0.02708,"15.5":0.00226,"15.6":0.01354,"16.1":0.00677,"16.3":0.00677,"16.5":0.00226,"16.6":0.06771,"17.0":0.0158,"17.1":0.00226},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00025,"5.0-5.1":0.00025,"6.0-6.1":0.00074,"7.0-7.1":0.00172,"8.1-8.4":0.00025,"9.0-9.2":0.00172,"9.3":0.00591,"10.0-10.2":0.00025,"10.3":0.00862,"11.0-11.2":0.00788,"11.3-11.4":0.00271,"12.0-12.1":0.00222,"12.2-12.5":0.03915,"13.0-13.1":0.00123,"13.2":0.00665,"13.3":0.00246,"13.4-13.7":0.00788,"14.0-14.4":0.02167,"14.5-14.8":0.03496,"15.0-15.1":0.01379,"15.2-15.3":0.01576,"15.4":0.01748,"15.5":0.02487,"15.6-15.7":0.17211,"16.0":0.06353,"16.1":0.12164,"16.2":0.05934,"16.3":0.11006,"16.4":0.02364,"16.5":0.06303,"16.6-16.7":1.18066,"17.0":0.42056,"17.1":0.02536,"17.2":0.00074},P:{"4":0.18482,"20":0.01027,"21":0.0308,"22":0.33884,"23":0.04107,_:"5.0-5.4 8.2 10.1 12.0 15.0","6.2-6.4":0.01027,"7.2-7.4":0.07188,"9.2":0.12321,"11.1-11.2":0.01027,"13.0":0.02054,"14.0":0.02054,"16.0":0.02054,"17.0":0.01027,"18.0":0.01027,"19.0":0.04107},I:{"0":0.11555,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00035},A:{"10":0.01354,"11":0.0158,_:"6 7 8 9 5.5"},K:{"0":5.47346,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.12389,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.02323},Q:{_:"13.1"},O:{"0":0.20906},H:{"0":5.63},L:{"0":69.96871}};
      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 c4300f69a7c2f9..14d5bbc94a9703 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BJ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BJ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"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,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00252,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00504,"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.00252,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00252,"111":0,"112":0.00252,"113":0.00252,"114":0.00504,"115":0.04286,"116":0.01765,"117":0.24202,"118":0.02017,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00252,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00252,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00252,"43":0,"44":0,"45":0,"46":0.00252,"47":0,"48":0,"49":0,"50":0.00252,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.02017,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01261,"69":0,"70":0.01513,"71":0,"72":0,"73":0,"74":0.02773,"75":0,"76":0,"77":0,"78":0.00504,"79":0.00756,"80":0.01765,"81":0.01008,"83":0,"84":0.00252,"85":0.00504,"86":0,"87":0.02521,"88":0.02521,"89":0,"90":0.00252,"91":0.00504,"92":0.00252,"93":0.00756,"94":0.00504,"95":0.00504,"96":0,"97":0.00252,"98":0.02521,"99":0.06555,"100":0.00504,"101":0,"102":0.00504,"103":0.01008,"104":0.00252,"105":0.01261,"106":0.00504,"107":0.00252,"108":0.01008,"109":0.42857,"110":0.00252,"111":0.00504,"112":0.01261,"113":0.01261,"114":0.03782,"115":0.05798,"116":1.77478,"117":0.44622,"118":0.00252,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00252,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00252,"33":0,"34":0,"35":0,"36":0,"37":0.00504,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00252,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00252,"57":0.00252,"58":0.00252,"60":0.03277,"62":0,"63":0.11849,"64":0.00756,"65":0,"66":0.01261,"67":0.02521,"68":0.00252,"69":0.07311,"70":0.02521,"71":0.06303,"72":0.16387,"73":0.05294,"74":0,"75":0,"76":0,"77":0.01008,"78":0.00252,"79":0.00504,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00756,"86":0.00252,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01261,"96":0,"97":0,"98":0,"99":0,"100":0.00504,"101":0.05798,"102":0.06807,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00252},B:{"12":0,"13":0,"14":0,"15":0.01008,"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.00252,"91":0,"92":0.00504,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00252,"108":0,"109":0.00504,"110":0.00252,"111":0,"112":0.00252,"113":0,"114":0.00504,"115":0.01261,"116":0.26723,"117":0.18151},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.00252,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00252,"14.1":0.00252,"15.1":0.00252,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00504,"16.0":0,"16.1":0.00252,"16.2":0.00504,"16.3":0.00504,"16.4":0.00252,"16.5":0.03277,"16.6":0.08319,"17.0":0.00252,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00433,"6.0-6.1":0.00692,"7.0-7.1":0.00952,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00519,"10.0-10.2":0,"10.3":0.00606,"11.0-11.2":0.00346,"11.3-11.4":0.00433,"12.0-12.1":0.00779,"12.2-12.5":0.64448,"13.0-13.1":0.00519,"13.2":0,"13.3":0.03893,"13.4-13.7":0.06228,"14.0-14.4":0.39188,"14.5-14.8":0.14101,"15.0-15.1":0.21194,"15.2-15.3":0.12543,"15.4":0.0744,"15.5":0.28115,"15.6-15.7":1.03203,"16.0":0.45849,"16.1":0.468,"16.2":0.14706,"16.3":0.42907,"16.4":0.09775,"16.5":0.95504,"16.6":2.63933,"17.0":0.30796,"17.1":0},P:{"4":0.20677,"20":0.03102,"21":0.03102,"22":0.28948,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01034,"8.2":0,"9.2":0.01034,"10.1":0,"11.1-11.2":0.01034,"12.0":0,"13.0":0,"14.0":0,"15.0":0.02068,"16.0":0.01034,"17.0":0.03102,"18.0":0.01034,"19.0":0.04135},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00381,"4.2-4.3":0.01088,"4.4":0,"4.4.3-4.4.4":0.19909},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00504,"5.5":0},S:{"2.5":0.09723,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":78.22363},R:{_:"0"},M:{"0":0.05983},Q:{"13.1":0.01496},O:{"0":0.3216},H:{"0":5.26799}};
      +module.exports={C:{"43":0.00225,"45":0.00225,"47":0.00225,"52":0.00225,"62":0.00225,"72":0.00225,"79":0.00225,"85":0.02022,"88":0.00225,"91":0.00225,"94":0.00225,"96":0.00225,"99":0.00225,"102":0.00449,"103":0.00225,"107":0.00225,"108":0.00225,"110":0.00225,"111":0.00225,"112":0.01798,"113":0.00225,"114":0.00225,"115":0.17302,"116":0.00449,"117":0.05393,"118":0.95498,"119":0.31233,"120":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 44 46 48 49 50 51 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 80 81 82 83 84 86 87 89 90 92 93 95 97 98 100 101 104 105 106 109 121 122 3.5 3.6"},D:{"11":0.00449,"33":0.01348,"42":0.00225,"44":0.00225,"45":0.00225,"46":0.02247,"47":0.00449,"50":0.00449,"51":0.00674,"54":0.00225,"58":0.00225,"61":0.0382,"62":0.00225,"63":0.00899,"65":0.00899,"66":0.00225,"68":0.01124,"69":0.00449,"70":0.03371,"71":0.00449,"72":0.00225,"74":0.03595,"76":0.00225,"77":0.00674,"78":0.00674,"79":0.00899,"80":0.05618,"81":0.05168,"83":0.00225,"84":0.00674,"85":0.00449,"86":0.00449,"87":0.04943,"88":0.05842,"89":0.00225,"90":0.00674,"91":0.02696,"92":0.01124,"93":0.02247,"94":0.06516,"95":0.00899,"97":0.01573,"98":0.01124,"99":0.1101,"100":0.02247,"101":0.00449,"102":0.01798,"103":0.06292,"104":0.00449,"105":0.07865,"106":0.02247,"107":0.01798,"108":0.0719,"109":1.60211,"110":0.00674,"111":0.00899,"112":0.02472,"113":0.02696,"114":0.09887,"115":0.06966,"116":0.34604,"117":3.78844,"118":4.57939,"119":0.00674,"120":0.00225,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 43 48 49 52 53 55 56 57 59 60 64 67 73 75 96 121 122"},F:{"37":0.00225,"57":0.00674,"73":0.00225,"79":0.27413,"82":0.05393,"85":0.01573,"86":0.00225,"87":0.00225,"91":0.01124,"95":0.03371,"99":0.00225,"101":0.00449,"102":0.22695,"103":0.22919,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 83 84 88 89 90 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00225,"13":0.00225,"17":0.00674,"18":0.02022,"84":0.00225,"85":0.00225,"89":0.00225,"90":0.00449,"92":0.01348,"98":0.00225,"99":0.02472,"100":0.00225,"107":0.00899,"109":0.01573,"110":0.02472,"112":0.00225,"113":0.00225,"114":0.04045,"115":0.02696,"116":0.02921,"117":0.69657,"118":0.83364,"119":0.01348,_:"14 15 16 79 80 81 83 86 87 88 91 93 94 95 96 97 101 102 103 104 105 106 108 111"},E:{"14":0.00225,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.2","5.1":0.01348,"13.1":0.00674,"14.1":0.00449,"15.1":0.00899,"15.2-15.3":0.00674,"15.4":0.00225,"15.5":0.01573,"15.6":0.02247,"16.0":0.00449,"16.1":0.02022,"16.2":0.01348,"16.3":0.03146,"16.4":0.01348,"16.5":0.0382,"16.6":0.27413,"17.0":0.10112,"17.1":0.00449},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00065,"5.0-5.1":0.00065,"6.0-6.1":0.00196,"7.0-7.1":0.00457,"8.1-8.4":0.00065,"9.0-9.2":0.00457,"9.3":0.01567,"10.0-10.2":0.00065,"10.3":0.02285,"11.0-11.2":0.02089,"11.3-11.4":0.00718,"12.0-12.1":0.00588,"12.2-12.5":0.10381,"13.0-13.1":0.00326,"13.2":0.01763,"13.3":0.00653,"13.4-13.7":0.02089,"14.0-14.4":0.05745,"14.5-14.8":0.09271,"15.0-15.1":0.03656,"15.2-15.3":0.04178,"15.4":0.04635,"15.5":0.06594,"15.6-15.7":0.45637,"16.0":0.16844,"16.1":0.32253,"16.2":0.15735,"16.3":0.29184,"16.4":0.06268,"16.5":0.16714,"16.6-16.7":3.13059,"17.0":1.11513,"17.1":0.06725,"17.2":0.00196},P:{"4":0.10662,"20":0.01066,"21":0.03199,"22":0.21324,"23":0.03199,"5.0-5.4":0.01066,_:"6.2-6.4 8.2 10.1 12.0 13.0 14.0","7.2-7.4":0.01066,"9.2":0.01066,"11.1-11.2":0.01066,"15.0":0.07463,"16.0":0.01066,"17.0":0.02132,"18.0":0.01066,"19.0":0.04265},I:{"0":0.02314,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"11":0.00674,_:"6 7 8 9 10 5.5"},K:{"0":2.34823,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.06979,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.03877},Q:{"13.1":0.03877},O:{"0":0.34118},H:{"0":2.94},L:{"0":70.31636}};
      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 103e43081de8eb..b3eee4bfa650b0 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.00485,"116":0.00243,"117":0.01456,"118":0.00243,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00243,"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.00485,"104":0,"105":0,"106":0,"107":0.00485,"108":0,"109":0.02183,"110":0,"111":0.00243,"112":0.00243,"113":0.00243,"114":0.0097,"115":0.05822,"116":0.45124,"117":0.1116,"118":0.00243,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00243,"101":0.01456,"102":0.00485,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01213,"110":0,"111":0,"112":0,"113":0,"114":0.00243,"115":0.02426,"116":0.12373,"117":0.09947},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00243,"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.0097,"14.1":0.03639,"15.1":0.01941,"15.2-15.3":0.02426,"15.4":0.02669,"15.5":0.08734,"15.6":0.45851,"16.0":0.01698,"16.1":0.10674,"16.2":0.1213,"16.3":0.29112,"16.4":0.09704,"16.5":0.30082,"16.6":2.97428,"17.0":0.14313,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00922,"10.0-10.2":0,"10.3":0.02766,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.03688,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.00922,"14.0-14.4":0.00922,"14.5-14.8":0,"15.0-15.1":0.10142,"15.2-15.3":0.12908,"15.4":0.22128,"15.5":0.66384,"15.6-15.7":4.86816,"16.0":3.28232,"16.1":5.03412,"16.2":2.38798,"16.3":4.0107,"16.4":0.6915,"16.5":2.0284,"16.6":63.17546,"17.0":4.49014,"17.1":0.01844},P:{"4":0.01094,"20":0,"21":0.01094,"22":0.47043,"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,"19.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.02426},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":2.26379},R:{_:"0"},M:{"0":0.0303},Q:{"13.1":0},O:{"0":0},H:{"0":0}};
      +module.exports={C:{"78":0.00522,"115":0.00522,"117":0.00261,"118":0.03133,"119":0.00522,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"67":0.00261,"76":0.01828,"79":0.00261,"103":0.00783,"109":0.05744,"111":0.00261,"113":0.00522,"114":0.00522,"115":0.02089,"116":0.08877,"117":0.43343,"118":0.43082,"119":0.00261,"120":0.00261,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 112 121 122"},F:{"102":0.01828,"103":0.00261,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"115":0.00261,"116":0.00261,"117":0.21671,"118":0.14622,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 119"},E:{"14":0.00261,"15":0.00261,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.01306,"14.1":0.047,"15.1":0.06528,"15.2-15.3":0.05222,"15.4":0.13577,"15.5":0.27416,"15.6":2.36818,"16.0":0.08355,"16.1":0.44387,"16.2":0.69192,"16.3":1.38383,"16.4":0.39687,"16.5":1.0679,"16.6":13.70253,"17.0":3.01832,"17.1":0.38643,"17.2":0.01044},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0073,"5.0-5.1":0.0073,"6.0-6.1":0.02189,"7.0-7.1":0.05109,"8.1-8.4":0.0073,"9.0-9.2":0.05109,"9.3":0.17515,"10.0-10.2":0.0073,"10.3":0.25543,"11.0-11.2":0.23354,"11.3-11.4":0.08028,"12.0-12.1":0.06568,"12.2-12.5":1.1604,"13.0-13.1":0.03649,"13.2":0.19705,"13.3":0.07298,"13.4-13.7":0.23354,"14.0-14.4":0.64223,"14.5-14.8":1.03633,"15.0-15.1":0.40869,"15.2-15.3":0.46708,"15.4":0.51817,"15.5":0.73711,"15.6-15.7":5.10138,"16.0":1.88291,"16.1":3.60527,"16.2":1.75885,"16.3":3.26226,"16.4":0.70062,"16.5":1.86832,"16.6-16.7":34.99446,"17.0":12.46518,"17.1":0.75171,"17.2":0.02189},P:{"22":0.10882,"23":0.02418,_:"4 20 21 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.02956},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":0.7124}};
      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 87117c10680a9b..34ad3b19354c14 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0.00444,"4":0.00444,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00444,"32":0,"33":0,"34":0.00444,"35":0.00444,"36":0.00444,"37":0.00444,"38":0.00444,"39":0.00444,"40":0.00889,"41":0.00444,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00444,"49":0,"50":0,"51":0,"52":0.00444,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01777,"79":0,"80":0.00444,"81":0,"82":0.00444,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00444,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00444,"113":0.00444,"114":0.00444,"115":0.20882,"116":0.04887,"117":0.75531,"118":0.05332,"119":0,"120":0,"3.5":0.00444,"3.6":0.00889},D:{"4":0,"5":0,"6":0,"7":0.00444,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00444,"20":0,"21":0.00444,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00444,"31":0.00889,"32":0,"33":0.00444,"34":0,"35":0.00444,"36":0.00444,"37":0.00444,"38":0.0311,"39":0.00444,"40":0.00444,"41":0.00889,"42":0.00444,"43":0.01333,"44":0.02222,"45":0.01333,"46":0.01333,"47":0.01777,"48":0,"49":0.23104,"50":0,"51":0.01333,"52":0,"53":0,"54":0,"55":0.02222,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.01333,"63":0,"64":0,"65":0.00889,"66":0,"67":0,"68":0.00444,"69":0,"70":0.01777,"71":0,"72":0,"73":0.00444,"74":0,"75":0.00444,"76":0,"77":0,"78":0,"79":0.09775,"80":0.00444,"81":0.0622,"83":0.00444,"84":0,"85":0.00889,"86":0,"87":0.00889,"88":0.01333,"89":0.01333,"90":0,"91":0.0311,"92":0.01333,"93":0,"94":0,"95":0.00444,"96":0.00444,"97":0.00444,"98":0.00889,"99":0.0311,"100":0.01777,"101":0,"102":0,"103":0.05776,"104":0.02222,"105":0,"106":0.01333,"107":0.00444,"108":0.00889,"109":0.97746,"110":0.00444,"111":0.00889,"112":0.02222,"113":0.04443,"114":0.09775,"115":0.17328,"116":8.2862,"117":1.92382,"118":0.01333,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00444,"29":0,"30":0.00444,"31":0.00444,"32":0,"33":0.00444,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00444,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00444,"62":0,"63":0.00444,"64":0,"65":0,"66":0,"67":0.00444,"68":0,"69":0.00444,"70":0.0311,"71":0.00889,"72":0.24881,"73":0.07553,"74":0.00444,"75":0,"76":0,"77":0.05332,"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.0311,"96":0,"97":0,"98":0,"99":0,"100":0.09775,"101":0.17328,"102":0.17328,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00444},B:{"12":0.00444,"13":0,"14":0.00889,"15":0,"16":0,"17":0,"18":0.00444,"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.00444,"105":0,"106":0,"107":0,"108":0.00444,"109":0.00889,"110":0,"111":0.00444,"112":0,"113":0.0622,"114":0.00444,"115":0.03554,"116":0.81307,"117":0.5376},E:{"4":0,"5":0.00444,"6":0,"7":0,"8":0,"9":0.0311,"10":0,"11":0,"12":0,"13":0.02666,"14":0.08886,"15":0.02666,_:"0","3.1":0,"3.2":0,"5.1":0.00444,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00444,"13.1":0.01777,"14.1":0.12885,"15.1":0.02222,"15.2-15.3":0.00889,"15.4":0.04887,"15.5":0.02222,"15.6":0.23992,"16.0":0.02222,"16.1":0.05332,"16.2":0.02666,"16.3":0.12885,"16.4":0.0311,"16.5":0.11552,"16.6":1.29291,"17.0":0.08886,"17.1":0},G:{"8":0.00712,"3.2":0.00237,"4.0-4.1":0,"4.2-4.3":0.01423,"5.0-5.1":0.00474,"6.0-6.1":0.01898,"7.0-7.1":0.09015,"8.1-8.4":0.09252,"9.0-9.2":0.00712,"9.3":0.18741,"10.0-10.2":0.08303,"10.3":0.65477,"11.0-11.2":0.14471,"11.3-11.4":0,"12.0-12.1":0.18267,"12.2-12.5":0.69035,"13.0-13.1":0.01423,"13.2":0.00237,"13.3":0.00474,"13.4-13.7":0.01898,"14.0-14.4":0.18741,"14.5-14.8":0.22063,"15.0-15.1":0.15183,"15.2-15.3":0.14708,"15.4":0.11862,"15.5":0.14708,"15.6-15.7":1.77214,"16.0":0.97266,"16.1":0.9181,"16.2":0.39618,"16.3":1.27395,"16.4":0.25384,"16.5":1.09365,"16.6":12.18196,"17.0":1.35461,"17.1":0},P:{"4":0.59281,"20":0.02117,"21":0.08469,"22":1.59846,"5.0-5.4":0.02117,"6.2-6.4":0.02117,"7.2-7.4":0.06352,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01059,"12.0":0.01059,"13.0":0.05293,"14.0":0,"15.0":0,"16.0":0.02117,"17.0":0.01059,"18.0":0.01059,"19.0":0.03176},I:{"0":0,"3":0.01508,"4":0.05782,"2.1":0.01006,"2.2":0.03519,"2.3":0.03771,"4.1":0.04022,"4.2-4.3":0.08547,"4.4":0,"4.4.3-4.4.4":0.22625},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00452,"7":0.01357,"8":0.11309,"9":0.02262,"10":0.02262,"11":0.06786,"5.5":0},S:{"2.5":0.01111,_:"3.0-3.1"},J:{"7":0,"10":0.01667},N:{"10":0.03668,"11":0.02445},L:{"0":47.77495},R:{_:"0"},M:{"0":0.23339},Q:{"13.1":0.00556},O:{"0":1.91717},H:{"0":1.72035}};
      +module.exports={C:{"3":0.00416,"4":0.00416,"5":0.00833,"28":0.00416,"32":0.00416,"34":0.00416,"37":0.00416,"38":0.00416,"39":0.00416,"40":0.00416,"48":0.00833,"52":0.00833,"78":0.02082,"82":0.00416,"84":0.00416,"89":0.00833,"90":0.00416,"105":0.00416,"106":0.00416,"107":0.00416,"114":0.00416,"115":0.43712,"116":0.04163,"117":0.08326,"118":1.38628,"119":0.2248,"120":0.00416,_:"2 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 33 35 36 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 85 86 87 88 91 92 93 94 95 96 97 98 99 100 101 102 103 104 108 109 110 111 112 113 121 122","3.5":0.00416,"3.6":0.00833},D:{"31":0.00416,"36":0.00416,"37":0.00416,"38":0.11656,"39":0.00416,"40":0.00833,"41":0.00833,"42":0.00833,"43":0.01249,"44":0.01665,"45":0.00833,"46":0.01665,"47":0.00833,"49":0.75767,"51":0.01665,"53":0.00416,"55":0.04996,"62":0.02498,"65":0.01249,"66":0.00833,"68":0.00416,"70":0.03747,"73":0.00833,"74":0.00416,"79":0.14571,"80":0.00416,"81":0.33304,"83":0.00833,"85":0.02914,"87":0.00833,"88":0.01249,"89":0.0333,"91":0.11656,"92":0.03747,"95":0.00833,"96":0.00416,"97":0.08326,"98":0.01249,"99":0.02498,"100":0.02914,"101":0.00416,"102":0.00416,"103":0.16236,"104":0.01249,"105":0.01665,"106":0.04996,"107":0.00416,"108":0.01249,"109":1.78176,"110":0.00833,"111":0.04163,"112":0.04163,"113":0.07493,"114":0.07077,"115":0.1124,"116":0.96582,"117":11.0153,"118":11.06942,"119":0.03747,_:"4 5 6 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 48 50 52 54 56 57 58 59 60 61 63 64 67 69 71 72 75 76 77 78 84 86 90 93 94 120 121 122"},F:{"28":0.04163,"31":0.00833,"32":0.00416,"85":0.00833,"95":0.04996,"101":0.00416,"102":1.24474,"103":0.14571,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00416},B:{"15":0.00416,"18":0.01249,"100":0.00416,"106":0.00416,"108":0.02498,"109":0.02082,"110":0.00416,"111":0.00416,"112":0.00416,"113":0.15403,"114":0.00833,"115":0.01249,"116":0.17485,"117":1.61524,"118":1.35714,"119":0.00416,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 107"},E:{"9":0.02082,"12":0.00416,"13":0.04579,"14":0.1124,"15":0.03747,_:"0 4 5 6 7 8 10 11 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00416,"12.1":0.00833,"13.1":0.03747,"14.1":0.1915,"15.1":0.04996,"15.2-15.3":0.02498,"15.4":0.09991,"15.5":0.04996,"15.6":0.4496,"16.0":0.05828,"16.1":0.12073,"16.2":0.05828,"16.3":0.16652,"16.4":0.1124,"16.5":0.24145,"16.6":2.45617,"17.0":0.72436,"17.1":0.07077,"17.2":0.00416},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00163,"5.0-5.1":0.00163,"6.0-6.1":0.00488,"7.0-7.1":0.01138,"8.1-8.4":0.00163,"9.0-9.2":0.01138,"9.3":0.03903,"10.0-10.2":0.00163,"10.3":0.05692,"11.0-11.2":0.05204,"11.3-11.4":0.01789,"12.0-12.1":0.01464,"12.2-12.5":0.25856,"13.0-13.1":0.00813,"13.2":0.04391,"13.3":0.01626,"13.4-13.7":0.05204,"14.0-14.4":0.1431,"14.5-14.8":0.23092,"15.0-15.1":0.09107,"15.2-15.3":0.10408,"15.4":0.11546,"15.5":0.16425,"15.6-15.7":1.13671,"16.0":0.41956,"16.1":0.80334,"16.2":0.39191,"16.3":0.72691,"16.4":0.15611,"16.5":0.4163,"16.6-16.7":7.79757,"17.0":2.77753,"17.1":0.1675,"17.2":0.00488},P:{"4":0.43462,"20":0.0326,"21":0.06519,"22":1.40164,"23":0.36942,"5.0-5.4":0.01087,"6.2-6.4":0.01087,"7.2-7.4":0.06519,_:"8.2 9.2 10.1 11.1-11.2 14.0 15.0 16.0","12.0":0.01087,"13.0":0.04346,"17.0":0.01087,"18.0":0.02173,"19.0":0.0326},I:{"0":0.12776,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00039},A:{"6":0.00432,"7":0.00863,"8":0.08634,"9":0.01295,"10":0.01727,"11":0.0993,_:"5.5"},K:{"0":2.39819,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00584,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.36773},Q:{"13.1":0.02919},O:{"0":1.38337},H:{"0":0.03},L:{"0":36.12868}};
      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 787c215393bba3..4430a6c9248532 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00473,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06615,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01418,"59":0,"60":0.00473,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00473,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00945,"79":0,"80":0,"81":0,"82":0,"83":0.00473,"84":0,"85":0,"86":0,"87":0,"88":0.00473,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00473,"100":0.00473,"101":0,"102":0.00473,"103":0,"104":0,"105":0.00473,"106":0.00473,"107":0,"108":0.00473,"109":0,"110":0.00473,"111":0.00473,"112":0.00473,"113":0.02363,"114":0.00945,"115":0.27405,"116":0.06615,"117":0.78908,"118":0.09923,"119":0,"120":0,"3.5":0,"3.6":0.00473},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.0189,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00945,"39":0.00473,"40":0,"41":0.00473,"42":0,"43":0.00473,"44":0.00473,"45":0.00473,"46":0.00473,"47":0.00473,"48":0,"49":0.0189,"50":0,"51":0.00473,"52":0,"53":0.00473,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00473,"61":0,"62":0.00473,"63":0,"64":0,"65":0,"66":0,"67":0.00473,"68":0.00945,"69":0.00473,"70":0.00945,"71":0,"72":0,"73":0,"74":0.00473,"75":0.00473,"76":0,"77":0,"78":0.00473,"79":0.08978,"80":0.00473,"81":0.0378,"83":0.02835,"84":0,"85":0.01418,"86":0.00473,"87":0.02363,"88":0.00945,"89":0.00473,"90":0.01418,"91":0.1134,"92":0.00473,"93":0.00473,"94":0.00473,"95":0.00473,"96":0.00473,"97":0.02363,"98":0.00473,"99":0.00945,"100":0.00473,"101":0.00945,"102":0.02363,"103":0.0378,"104":0.01418,"105":0.01418,"106":0.0189,"107":0.0189,"108":0.03308,"109":1.89945,"110":0.05198,"111":0.02835,"112":0.03308,"113":0.07088,"114":0.42053,"115":0.15593,"116":10.4706,"117":2.40975,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01418,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00473,"71":0.00473,"72":0.04253,"73":0.01418,"74":0.00473,"75":0,"76":0,"77":0.02363,"78":0,"79":0.00473,"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.0567,"96":0,"97":0,"98":0,"99":0.00473,"100":0.16538,"101":0.36855,"102":0.37328,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00473},B:{"12":0.00473,"13":0,"14":0.00473,"15":0,"16":0,"17":0,"18":0.00473,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02363,"89":0,"90":0,"91":0,"92":0.01418,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00473,"108":0,"109":0.02363,"110":0.00473,"111":0,"112":0,"113":0.00473,"114":0.00945,"115":0.02835,"116":0.66623,"117":0.54338},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00473,"10":0,"11":0,"12":0,"13":0,"14":0.00473,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00473,"6.1":0,"7.1":0,"9.1":0.00473,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01418,"14.1":0.00945,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00473,"15.6":0.0189,"16.0":0,"16.1":0.00473,"16.2":0.00473,"16.3":0.0189,"16.4":0.00473,"16.5":0.02363,"16.6":0.09923,"17.0":0.01418,"17.1":0},G:{"8":0.00149,"3.2":0.0005,"4.0-4.1":0,"4.2-4.3":0.00149,"5.0-5.1":0.00647,"6.0-6.1":0.00348,"7.0-7.1":0.02138,"8.1-8.4":0.02188,"9.0-9.2":0.00696,"9.3":0.0194,"10.0-10.2":0,"10.3":0.0184,"11.0-11.2":0.08454,"11.3-11.4":0.00298,"12.0-12.1":0.02039,"12.2-12.5":0.1671,"13.0-13.1":0.00298,"13.2":0.00298,"13.3":0.03083,"13.4-13.7":0.01343,"14.0-14.4":0.03083,"14.5-14.8":0.04973,"15.0-15.1":0.00995,"15.2-15.3":0.01442,"15.4":0.03083,"15.5":0.04526,"15.6-15.7":0.4446,"16.0":0.11041,"16.1":0.45107,"16.2":0.10543,"16.3":0.18799,"16.4":0.04575,"16.5":0.10792,"16.6":2.49854,"17.0":0.34116,"17.1":0},P:{"4":0.28432,"20":0.10154,"21":0.18278,"22":1.83794,"5.0-5.4":0.01015,"6.2-6.4":0.01015,"7.2-7.4":0.27417,"8.2":0,"9.2":0.02031,"10.1":0,"11.1-11.2":0.03046,"12.0":0.01015,"13.0":0.05077,"14.0":0.05077,"15.0":0.01015,"16.0":0.06093,"17.0":0.09139,"18.0":0.04062,"19.0":0.08124},I:{"0":0,"3":0,"4":0.01758,"2.1":0,"2.2":0.01055,"2.3":0.01407,"4.1":0.0211,"4.2-4.3":0.05626,"4.4":0,"4.4.3-4.4.4":0.16879},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00473,"8":0.0378,"9":0.00473,"10":0.00945,"11":0.0378,"5.5":0},S:{"2.5":0.00528,_:"3.0-3.1"},J:{"7":0,"10":0.01055},N:{"10":0.01583,"11":0},L:{"0":67.9195},R:{_:"0"},M:{"0":0.15298},Q:{"13.1":0},O:{"0":0.1899},H:{"0":0.45945}};
      +module.exports={C:{"50":0.00455,"51":0.03184,"52":0.1228,"54":0.00455,"58":0.02274,"60":0.0091,"72":0.00455,"76":0.0091,"78":0.02729,"81":0.00455,"82":0.00455,"84":0.00455,"86":0.00455,"87":0.00455,"88":0.0091,"89":0.00455,"91":0.00455,"93":0.02729,"94":0.00455,"99":0.00455,"100":0.0091,"102":0.0091,"103":0.00455,"104":0.00455,"105":0.00455,"106":0.00455,"107":0.00455,"108":0.00455,"109":0.01364,"110":0.00455,"111":0.01364,"112":0.00455,"113":0.09551,"114":0.01364,"115":0.60943,"116":0.02729,"117":0.07732,"118":1.81465,"119":0.27743,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 55 56 57 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 77 79 80 83 85 90 92 95 96 97 98 101 120 121 122 3.5 3.6"},D:{"38":0.01364,"41":0.00455,"43":0.00455,"44":0.00455,"45":0.00455,"46":0.00455,"47":0.01364,"49":0.0091,"51":0.00455,"53":0.0091,"55":0.00455,"57":0.00455,"60":0.0091,"62":0.00455,"63":0.00455,"65":0.00455,"67":0.0091,"68":0.02274,"69":0.00455,"70":0.01819,"72":0.00455,"73":0.00455,"74":0.01819,"75":0.00455,"76":0.00455,"77":0.00455,"78":0.00455,"79":0.15463,"80":0.00455,"81":0.06367,"83":0.0091,"84":0.00455,"85":0.0091,"86":0.0091,"87":0.04093,"88":0.01819,"89":0.0091,"90":0.0091,"91":0.19556,"92":0.0091,"93":0.00455,"94":0.0091,"95":0.0091,"96":0.01364,"97":0.02729,"98":0.0091,"99":0.01364,"100":0.01819,"101":0.02274,"102":0.04548,"103":0.07277,"104":0.01364,"105":0.03184,"106":0.01819,"107":0.03184,"108":0.07277,"109":3.62476,"110":0.08186,"111":0.03184,"112":0.08186,"113":0.06367,"114":0.71858,"115":0.10006,"116":1.65092,"117":15.14484,"118":10.74238,"119":0.01819,"120":0.00455,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 48 50 52 54 56 58 59 61 64 66 71 121 122"},F:{"12":0.00455,"28":0.02274,"36":0.00455,"46":0.00455,"79":0.00455,"85":0.0091,"94":0.01364,"95":0.13644,"99":0.00455,"101":0.00455,"102":1.75098,"103":0.35929,_:"9 11 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 86 87 88 89 90 91 92 93 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00455,"13":0.00455,"14":0.00455,"15":0.00455,"17":0.00455,"18":0.01364,"84":0.00455,"92":0.02274,"100":0.00455,"107":0.0091,"108":0.00455,"109":0.04093,"110":0.00455,"112":0.00455,"113":0.00455,"114":0.01364,"115":0.02729,"116":0.03184,"117":1.38714,"118":1.469,"119":0.00455,_:"16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 111"},E:{"8":0.00455,"9":0.00455,"14":0.01364,_:"0 4 5 6 7 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.0091,"12.1":0.00455,"13.1":0.01364,"14.1":0.02729,"15.1":0.00455,"15.2-15.3":0.00455,"15.4":0.00455,"15.5":0.00455,"15.6":0.05458,"16.0":0.00455,"16.1":0.0091,"16.2":0.01819,"16.3":0.02729,"16.4":0.01819,"16.5":0.03184,"16.6":0.13189,"17.0":0.1228,"17.1":0.00455},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00028,"5.0-5.1":0.00028,"6.0-6.1":0.00084,"7.0-7.1":0.00196,"8.1-8.4":0.00028,"9.0-9.2":0.00196,"9.3":0.00671,"10.0-10.2":0.00028,"10.3":0.00979,"11.0-11.2":0.00895,"11.3-11.4":0.00308,"12.0-12.1":0.00252,"12.2-12.5":0.04447,"13.0-13.1":0.0014,"13.2":0.00755,"13.3":0.0028,"13.4-13.7":0.00895,"14.0-14.4":0.02461,"14.5-14.8":0.03972,"15.0-15.1":0.01566,"15.2-15.3":0.0179,"15.4":0.01986,"15.5":0.02825,"15.6-15.7":0.1955,"16.0":0.07216,"16.1":0.13817,"16.2":0.0674,"16.3":0.12502,"16.4":0.02685,"16.5":0.0716,"16.6-16.7":1.3411,"17.0":0.47771,"17.1":0.02881,"17.2":0.00084},P:{"4":0.23932,"20":0.09365,"21":0.15608,"22":1.55035,"23":0.35377,"5.0-5.4":0.01041,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.28094,"9.2":0.02081,"11.1-11.2":0.02081,"12.0":0.01041,"13.0":0.06243,"14.0":0.02081,"15.0":0.01041,"16.0":0.04162,"17.0":0.08324,"18.0":0.03122,"19.0":0.08324},I:{"0":0.09221,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00028},A:{"7":0.00455,"8":0.02729,"9":0.00455,"10":0.00455,"11":0.05458,_:"6 5.5"},K:{"0":0.45797,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.11994},Q:{_:"13.1"},O:{"0":0.15811},H:{"0":0},L:{"0":50.05366}};
      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 6e84fd13d6032c..7a38b319a9a355 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0.07016,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.04677,"43":0,"44":0,"45":0.03274,"46":0,"47":0,"48":0,"49":0,"50":0.14031,"51":0,"52":0.14499,"53":0,"54":0.15434,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00468,"69":0,"70":0.00468,"71":0,"72":0,"73":0,"74":0,"75":0.00468,"76":0,"77":0,"78":0.00468,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00468,"88":0.00468,"89":0.00468,"90":0.00468,"91":0.00935,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02339,"103":0,"104":0.00468,"105":0.00468,"106":0.00468,"107":0.00468,"108":0.00468,"109":0.00468,"110":0.00468,"111":0.00468,"112":0.00468,"113":0.00935,"114":0.00468,"115":0.11225,"116":0.03742,"117":0.5285,"118":0.0608,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.06548,"48":0,"49":0.00468,"50":0,"51":0.00468,"52":0,"53":0,"54":0,"55":0.07483,"56":0,"57":0.15434,"58":0,"59":0,"60":0.44899,"61":0,"62":0,"63":0.00468,"64":0,"65":0,"66":0,"67":0,"68":0.00468,"69":0,"70":0.00468,"71":0.00468,"72":0.00468,"73":0,"74":0.00468,"75":0.00935,"76":0.00935,"77":0.01403,"78":0.00468,"79":0.05145,"80":0.01403,"81":0.02806,"83":0.00935,"84":0.00468,"85":0.01403,"86":0.01403,"87":0.03274,"88":0.00935,"89":0.00935,"90":0.02339,"91":0.45367,"92":0.01871,"93":0.00468,"94":0.00468,"95":0.00468,"96":0.00468,"97":0.00935,"98":0.00468,"99":0.00935,"100":0.01403,"101":0.00468,"102":0.02806,"103":0.03742,"104":0.00935,"105":0.01871,"106":0.02806,"107":0.05145,"108":0.04677,"109":1.15054,"110":0.02806,"111":0.03742,"112":0.04677,"113":0.05145,"114":0.09822,"115":0.16837,"116":8.18475,"117":2.9699,"118":0.01403,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00468,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00468,"66":0,"67":0,"68":0,"69":0,"70":0.00468,"71":0,"72":0.00935,"73":0,"74":0,"75":0,"76":0,"77":0.02339,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00468,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00468,"95":0.03742,"96":0,"97":0,"98":0,"99":0.00468,"100":0.30401,"101":0.58463,"102":0.92605,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.07016,"13":0.14499,"14":0.14499,"15":0.09822,"16":0,"17":0,"18":0.00468,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00468,"91":0,"92":0.00935,"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.00468,"107":0.00468,"108":0.00468,"109":0.03274,"110":0.00468,"111":0.00468,"112":0.00468,"113":0.00468,"114":0.02339,"115":0.02339,"116":0.86057,"117":0.91669},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00468,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01403,"6.1":0,"7.1":0,"9.1":0.00935,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00935,"14.1":0.01403,"15.1":0,"15.2-15.3":0,"15.4":0.00468,"15.5":0.00468,"15.6":0.02806,"16.0":0.00468,"16.1":0.00935,"16.2":0.00468,"16.3":0.01871,"16.4":0.00935,"16.5":0.02806,"16.6":0.12628,"17.0":0.01403,"17.1":0},G:{"8":0,"3.2":0.00257,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00128,"9.3":0.02181,"10.0-10.2":0,"10.3":0.0231,"11.0-11.2":0.05774,"11.3-11.4":0.02695,"12.0-12.1":0.04234,"12.2-12.5":0.10907,"13.0-13.1":0.00385,"13.2":0.00257,"13.3":0.39392,"13.4-13.7":0.02053,"14.0-14.4":0.04876,"14.5-14.8":0.13473,"15.0-15.1":0.02695,"15.2-15.3":0.03336,"15.4":0.04491,"15.5":0.07057,"15.6-15.7":1.15097,"16.0":0.36441,"16.1":0.61462,"16.2":0.26689,"16.3":0.5787,"16.4":0.07955,"16.5":0.27331,"16.6":7.32672,"17.0":0.88152,"17.1":0.00257},P:{"4":0.09252,"20":0.04112,"21":0.08224,"22":1.82992,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17477,"8.2":0,"9.2":0.01028,"10.1":0,"11.1-11.2":0.02056,"12.0":0,"13.0":0.01028,"14.0":0.01028,"15.0":0.01028,"16.0":0.02056,"17.0":0.0514,"18.0":0.01028,"19.0":0.03084},I:{"0":0,"3":0,"4":0.03235,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02773,"4.4":0,"4.4.3-4.4.4":0.07395},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00472,"9":0.15584,"10":0,"11":0.32585,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.97009},R:{_:"0"},M:{"0":0.12775},Q:{"13.1":0},O:{"0":0.07985},H:{"0":0.28725}};
      +module.exports={C:{"7":0.16111,"42":0.10252,"45":0.02441,"50":0.31245,"52":0.32709,"54":0.35639,"68":0.00488,"75":0.00488,"78":0.00976,"81":0.00488,"87":0.00488,"88":0.00488,"89":0.00488,"90":0.00488,"91":0.01953,"99":0.00488,"102":0.01465,"104":0.00488,"105":0.00976,"106":0.00488,"107":0.00488,"108":0.00488,"109":0.00976,"110":0.00976,"111":0.00488,"112":0.00488,"113":0.00976,"114":0.00976,"115":0.25386,"116":0.01465,"117":0.06835,"118":1.02034,"119":0.20016,_:"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 34 35 36 37 38 39 40 41 43 44 46 47 48 49 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 79 80 82 83 84 85 86 92 93 94 95 96 97 98 100 101 103 120 121 122 3.5 3.6"},D:{"38":0.00488,"47":0.15134,"48":0.00488,"49":0.00976,"51":0.00488,"55":0.17087,"57":0.35639,"58":0.00488,"60":1.01546,"63":0.00488,"65":0.00488,"66":0.00488,"67":0.00488,"68":0.00488,"69":0.00488,"70":0.00488,"71":0.00488,"72":0.00488,"74":0.00488,"75":0.01465,"76":0.00488,"77":0.01465,"78":0.00488,"79":0.06835,"80":0.00976,"81":0.03417,"83":0.00488,"84":0.00976,"85":0.02929,"86":0.01465,"87":0.03417,"88":0.00976,"89":0.00976,"90":0.01465,"91":0.9764,"92":0.02441,"93":0.01465,"94":0.00976,"95":0.00488,"96":0.00976,"97":0.00976,"98":0.00976,"99":0.00976,"100":0.00976,"101":0.00976,"102":0.01465,"103":0.06835,"104":0.01953,"105":0.03417,"106":0.06347,"107":0.08299,"108":0.09764,"109":2.49958,"110":0.04882,"111":0.06835,"112":0.07811,"113":0.03417,"114":0.12693,"115":0.13181,"116":0.78112,"117":12.25382,"118":12.92754,"119":0.04394,"120":0.00976,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 52 53 54 56 59 61 62 64 73 121 122"},F:{"36":0.00488,"85":0.00488,"93":0.00488,"94":0.00488,"95":0.07323,"100":0.00488,"101":0.00976,"102":4.15946,"103":0.32221,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.16111,"13":0.33198,"14":0.33198,"15":0.20016,"18":0.00488,"90":0.00488,"92":0.01953,"103":0.00488,"105":0.00488,"106":0.00488,"107":0.00976,"108":0.00976,"109":0.06347,"110":0.00976,"111":0.00976,"112":0.00976,"113":0.00976,"114":0.01465,"115":0.01465,"116":0.04394,"117":1.99674,"118":2.03579,"119":0.01465,_:"16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 104"},E:{"14":0.00976,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 17.2","5.1":0.02441,"9.1":0.00976,"13.1":0.01953,"14.1":0.02441,"15.1":0.00488,"15.2-15.3":0.00488,"15.4":0.00488,"15.5":0.00976,"15.6":0.06347,"16.0":0.00976,"16.1":0.01465,"16.2":0.01465,"16.3":0.03906,"16.4":0.01465,"16.5":0.04394,"16.6":0.18063,"17.0":0.16111,"17.1":0.00976},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00075,"5.0-5.1":0.00075,"6.0-6.1":0.00225,"7.0-7.1":0.00525,"8.1-8.4":0.00075,"9.0-9.2":0.00525,"9.3":0.01801,"10.0-10.2":0.00075,"10.3":0.02627,"11.0-11.2":0.02401,"11.3-11.4":0.00825,"12.0-12.1":0.00675,"12.2-12.5":0.11932,"13.0-13.1":0.00375,"13.2":0.02026,"13.3":0.0075,"13.4-13.7":0.02401,"14.0-14.4":0.06604,"14.5-14.8":0.10656,"15.0-15.1":0.04202,"15.2-15.3":0.04803,"15.4":0.05328,"15.5":0.07579,"15.6-15.7":0.52456,"16.0":0.19361,"16.1":0.37072,"16.2":0.18086,"16.3":0.33545,"16.4":0.07204,"16.5":0.19211,"16.6-16.7":3.59839,"17.0":1.28176,"17.1":0.0773,"17.2":0.00225},P:{"4":0.06215,"20":0.03107,"21":0.06215,"22":1.48122,"23":0.30039,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.15537,"11.1-11.2":0.01036,"13.0":0.01036,"16.0":0.01036,"17.0":0.04143,"18.0":0.01036,"19.0":0.03107},I:{"0":0.04584,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"8":0.00497,"9":0.33815,"11":0.72603,_:"6 7 10 5.5"},K:{"0":0.28666,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.12798},Q:{_:"13.1"},O:{"0":0.06143},H:{"0":0},L:{"0":41.82228}};
      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 9399ff500476c6..e1c2e20798d2ac 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00406,"41":0.00406,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01625,"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.00406,"68":0.00812,"69":0,"70":0,"71":0,"72":0,"73":0,"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,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04062,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01625,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00406,"113":0.00406,"114":0.04062,"115":0.05281,"116":0.02437,"117":0.41432,"118":0.04062,"119":0.00406,"120":0,"3.5":0,"3.6":0.00406},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00406,"40":0.00406,"41":0.00406,"42":0.00406,"43":0.00812,"44":0.00812,"45":0.00812,"46":0.00406,"47":0.00406,"48":0,"49":0.02843,"50":0,"51":0.00812,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00406,"71":0.00406,"72":0,"73":0,"74":0,"75":0.00406,"76":0.04468,"77":0,"78":0,"79":0.00406,"80":0,"81":0,"83":0.01219,"84":0,"85":0,"86":0,"87":0.00406,"88":0.00406,"89":0,"90":0.00812,"91":0.00812,"92":0,"93":0.03656,"94":0.01219,"95":0,"96":0,"97":0,"98":0.00406,"99":0,"100":0,"101":0.00406,"102":0.00406,"103":0.11374,"104":0,"105":0.00406,"106":0.00812,"107":0.00812,"108":0.00812,"109":0.45088,"110":0.00812,"111":0.00812,"112":0.02031,"113":0.00812,"114":0.11374,"115":0.24372,"116":5.5162,"117":1.14548,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00406,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00406,"73":0,"74":0,"75":0,"76":0,"77":0.00406,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00406,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00812,"96":0,"97":0,"98":0,"99":0,"100":0.00812,"101":0.04874,"102":0.03656,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00812,"13":0,"14":0.00406,"15":0.00406,"16":0,"17":0.00406,"18":0.00812,"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.00406,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00406,"108":0,"109":0.0325,"110":0,"111":0,"112":0.00406,"113":0.00812,"114":0.02843,"115":0.10967,"116":1.79134,"117":1.21048},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00406,"9":0.01625,"10":0,"11":0,"12":0,"13":0,"14":0.02031,"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,"11.1":0,"12.1":0.01219,"13.1":0.05687,"14.1":0.09343,"15.1":0.02031,"15.2-15.3":0.01625,"15.4":0.03656,"15.5":0.04874,"15.6":0.26809,"16.0":0.0325,"16.1":0.08936,"16.2":0.06905,"16.3":0.19904,"16.4":0.09749,"16.5":0.25591,"16.6":1.72229,"17.0":0.06499,"17.1":0.00406},G:{"8":0.01805,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01805,"8.1-8.4":0.0361,"9.0-9.2":0,"9.3":0.04964,"10.0-10.2":0,"10.3":0.08123,"11.0-11.2":0.07671,"11.3-11.4":0,"12.0-12.1":0.19855,"12.2-12.5":0.20758,"13.0-13.1":0.00451,"13.2":0,"13.3":0.00903,"13.4-13.7":0.01354,"14.0-14.4":0.09025,"14.5-14.8":0.27075,"15.0-15.1":0.05866,"15.2-15.3":0.27978,"15.4":0.23465,"15.5":0.37905,"15.6-15.7":2.72557,"16.0":1.13265,"16.1":3.0595,"16.2":1.26802,"16.3":2.48641,"16.4":0.32039,"16.5":1.30412,"16.6":28.27106,"17.0":1.94039,"17.1":0.00451},P:{"4":0.02056,"20":0.0925,"21":0.16444,"22":4.00834,"5.0-5.4":0,"6.2-6.4":0.01028,"7.2-7.4":0.185,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03083,"12.0":0.01028,"13.0":0.02056,"14.0":0.02056,"15.0":0,"16.0":0.02056,"17.0":0.02056,"18.0":0.04111,"19.0":0.04111},I:{"0":0,"3":0.00869,"4":0.05649,"2.1":0.01086,"2.2":0.03476,"2.3":0.0478,"4.1":0.04345,"4.2-4.3":0.0717,"4.4":0,"4.4.3-4.4.4":0.28245},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00406,"8":0.04468,"9":0.00812,"10":0.00812,"11":0.04062,"5.5":0},S:{"2.5":0.00594,_:"3.0-3.1"},J:{"7":0,"10":0.01188},N:{"10":0.01188,"11":0.01188},L:{"0":32.26173},R:{_:"0"},M:{"0":0.10095},Q:{"13.1":0},O:{"0":0.0475},H:{"0":0.06746}};
      +module.exports={C:{"40":0.00343,"48":0.03771,"52":0.00686,"75":0.00343,"78":0.00343,"95":0.01371,"102":0.00343,"111":0.00343,"114":0.04114,"115":0.12341,"116":0.00343,"117":0.02057,"118":0.58276,"119":0.10627,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 107 108 109 110 112 113 120 121 122 3.5","3.6":0.00343},D:{"41":0.00343,"42":0.00343,"43":0.00343,"44":0.00343,"45":0.00343,"46":0.00343,"47":0.00343,"49":0.04456,"51":0.00686,"71":0.00343,"75":0.00343,"76":0.14398,"77":0.00343,"83":0.00686,"84":0.00686,"87":0.01371,"88":0.00686,"90":0.03428,"91":0.02057,"92":0.00343,"93":0.06856,"94":0.01714,"95":0.00343,"96":0.00343,"97":0.00343,"98":0.01028,"100":0.00343,"101":0.00343,"102":0.00686,"103":0.20568,"105":0.00686,"106":0.024,"107":0.01028,"108":0.00343,"109":0.77816,"110":0.01714,"111":0.02742,"112":0.01371,"113":0.00686,"114":0.07199,"115":0.14398,"116":1.0284,"117":5.09058,"118":5.14886,"119":0.00686,"120":0.00343,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 78 79 80 81 85 86 89 99 104 121 122"},F:{"89":0.00343,"95":0.00686,"101":0.00343,"102":0.16112,"103":0.04114,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00686,"15":0.00343,"16":0.00343,"17":0.00686,"18":0.01371,"92":0.00686,"104":0.00343,"107":0.01028,"109":0.05485,"111":0.00343,"112":0.00343,"113":0.01028,"114":0.00686,"115":0.08227,"116":0.07542,"117":2.30362,"118":2.32076,"119":0.01028,_:"13 14 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106 108 110"},E:{"9":0.01028,"13":0.00343,"14":0.04114,"15":0.00343,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00343,"12.1":0.024,"13.1":0.10284,"14.1":0.15426,"15.1":0.04114,"15.2-15.3":0.05142,"15.4":0.18854,"15.5":0.22625,"15.6":1.20666,"16.0":0.05485,"16.1":0.24682,"16.2":0.29824,"16.3":0.72331,"16.4":0.21939,"16.5":0.64104,"16.6":7.26393,"17.0":1.57688,"17.1":0.20911,"17.2":0.01028},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00463,"5.0-5.1":0.00463,"6.0-6.1":0.01388,"7.0-7.1":0.0324,"8.1-8.4":0.00463,"9.0-9.2":0.0324,"9.3":0.11107,"10.0-10.2":0.00463,"10.3":0.16198,"11.0-11.2":0.1481,"11.3-11.4":0.05091,"12.0-12.1":0.04165,"12.2-12.5":0.73585,"13.0-13.1":0.02314,"13.2":0.12496,"13.3":0.04628,"13.4-13.7":0.1481,"14.0-14.4":0.40726,"14.5-14.8":0.65718,"15.0-15.1":0.25917,"15.2-15.3":0.29619,"15.4":0.32859,"15.5":0.46743,"15.6-15.7":3.23497,"16.0":1.19402,"16.1":2.28623,"16.2":1.11535,"16.3":2.06872,"16.4":0.44429,"16.5":1.18477,"16.6-16.7":22.19127,"17.0":7.90463,"17.1":0.47668,"17.2":0.01388},P:{"20":0.05164,"21":0.07229,"22":2.07581,"23":0.40277,_:"4 5.0-5.4 6.2-6.4 8.2 10.1 12.0 15.0","7.2-7.4":0.12393,"9.2":0.01033,"11.1-11.2":0.02065,"13.0":0.02065,"14.0":0.02065,"16.0":0.02065,"17.0":0.01033,"18.0":0.02065,"19.0":0.04131},I:{"0":0.05231,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},A:{"7":0.00343,"8":0.02057,"9":0.00343,"10":0.00343,"11":0.04114,_:"6 5.5"},K:{"0":0.03943,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.09858},Q:{_:"13.1"},O:{"0":0.00657},H:{"0":0},L:{"0":17.40465}};
      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 98f3363fb8fcf4..2d389bea3fda0f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0.00312,"3":0.00937,"4":0.00937,"5":0.00312,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00312,"12":0.00312,"13":0.00312,"14":0.00312,"15":0,"16":0,"17":0.00312,"18":0,"19":0.00312,"20":0.00312,"21":0.00312,"22":0.00312,"23":0.00312,"24":0.00312,"25":0,"26":0,"27":0.00312,"28":0.00312,"29":0.00312,"30":0,"31":0.00312,"32":0,"33":0.00312,"34":0.00312,"35":0.00625,"36":0.00312,"37":0.00625,"38":0.00312,"39":0.00937,"40":0.01562,"41":0.00625,"42":0.00312,"43":0.00312,"44":0,"45":0,"46":0,"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.00937,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00937,"115":0.04997,"116":0.01562,"117":0.31542,"118":0.01249,"119":0,"120":0,"3.5":0.00312,"3.6":0.01874},D:{"4":0.00312,"5":0.00312,"6":0.00312,"7":0.00312,"8":0,"9":0,"10":0.00312,"11":0.00312,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00312,"18":0.00312,"19":0.00312,"20":0.00312,"21":0.00937,"22":0,"23":0,"24":0,"25":0.00312,"26":0,"27":0.00312,"28":0.00312,"29":0.00312,"30":0.00312,"31":0.00937,"32":0.00312,"33":0.00625,"34":0.00312,"35":0.00312,"36":0.00625,"37":0.00937,"38":0.00625,"39":0.01562,"40":0.00937,"41":0.01562,"42":0.00937,"43":0.02498,"44":0.02811,"45":0.03748,"46":0.02186,"47":0.01874,"48":0,"49":0,"50":0,"51":0.02498,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00625,"67":0,"68":0,"69":0,"70":0.00937,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00312,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00937,"88":0.00312,"89":0,"90":0,"91":0,"92":0,"93":0.00312,"94":0.00312,"95":0,"96":0,"97":0,"98":0.02498,"99":0.01249,"100":0.00312,"101":0,"102":0,"103":0.02811,"104":0,"105":0.00312,"106":0.00312,"107":0.00312,"108":0.00312,"109":0.54028,"110":0.00312,"111":0.00312,"112":0.00937,"113":0.05934,"114":0.03435,"115":0.09057,"116":4.32848,"117":1.01498,"118":0.00625,"119":0,"120":0},F:{"9":0,"11":0.00312,"12":0.00312,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00312,"30":0.00625,"31":0.00937,"32":0.00625,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00312,"70":0.00312,"71":0.00312,"72":0.09057,"73":0.00937,"74":0,"75":0,"76":0,"77":0.03748,"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.00312,"101":0.01249,"102":0.01562,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00625},B:{"12":0.01874,"13":0,"14":0.01874,"15":0,"16":0,"17":0,"18":0.00312,"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.00312,"93":0,"94":0,"95":0,"96":0.00312,"97":0,"98":0.00312,"99":0,"100":0,"101":0.00625,"102":0.00312,"103":0.00625,"104":0,"105":0.00312,"106":0.00937,"107":0.02811,"108":0,"109":0.00312,"110":0.00625,"111":0.01874,"112":0.00937,"113":0.02498,"114":0.01874,"115":0.03123,"116":0.49343,"117":0.32479},E:{"4":0.00625,"5":0.00312,"6":0,"7":0.00312,"8":0.00625,"9":0.05309,"10":0,"11":0,"12":0,"13":0.00937,"14":0.02186,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00625,"6.1":0,"7.1":0.00312,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00312,"14.1":0.02811,"15.1":0.00312,"15.2-15.3":0.00312,"15.4":0.01249,"15.5":0.00625,"15.6":0.11555,"16.0":0,"16.1":0.02498,"16.2":0.00625,"16.3":0.00937,"16.4":0.00625,"16.5":0.01562,"16.6":0.11867,"17.0":0.00625,"17.1":0},G:{"8":0.00987,"3.2":0.00423,"4.0-4.1":0,"4.2-4.3":0.01269,"5.0-5.1":0.0275,"6.0-6.1":0.01693,"7.0-7.1":0.11636,"8.1-8.4":0.1749,"9.0-9.2":0.0134,"9.3":0.03385,"10.0-10.2":0.00141,"10.3":0.03667,"11.0-11.2":0.35967,"11.3-11.4":0.00141,"12.0-12.1":0.10719,"12.2-12.5":0.09027,"13.0-13.1":0,"13.2":0.00212,"13.3":0.00705,"13.4-13.7":0.00564,"14.0-14.4":0.15797,"14.5-14.8":0.07828,"15.0-15.1":0.0134,"15.2-15.3":0.05219,"15.4":0.01975,"15.5":0.04937,"15.6-15.7":0.69112,"16.0":0.34556,"16.1":0.17419,"16.2":0.19041,"16.3":0.22215,"16.4":0.26164,"16.5":0.66362,"16.6":2.77648,"17.0":0.30536,"17.1":0},P:{"4":0.46071,"20":0.10471,"21":0.11518,"22":0.69107,"5.0-5.4":0,"6.2-6.4":0.06282,"7.2-7.4":0.08377,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01047,"14.0":0,"15.0":0.01047,"16.0":0.04188,"17.0":0.01047,"18.0":0,"19.0":0.03141},I:{"0":0,"3":0.01139,"4":0.15945,"2.1":0.01898,"2.2":0.08352,"2.3":0.11389,"4.1":0.11769,"4.2-4.3":0.23159,"4.4":0,"4.4.3-4.4.4":0.44039},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00629,"7":0.02202,"8":0.21074,"9":0.04403,"10":0.03774,"11":0.10065,"5.5":0.00315},S:{"2.5":0.02063,_:"3.0-3.1"},J:{"7":0,"10":0.04814},N:{"10":0.08315,"11":0.04751},L:{"0":76.42468},R:{_:"0"},M:{"0":0.03439},Q:{"13.1":0},O:{"0":1.87054},H:{"0":0.65107}};
      +module.exports={C:{"2":0.00305,"3":0.00914,"4":0.00914,"5":0.00305,"9":0.00305,"10":0.00305,"11":0.00305,"12":0.00305,"13":0.00305,"14":0.00305,"15":0.00305,"17":0.0061,"18":0.00305,"19":0.00305,"20":0.00305,"21":0.00305,"22":0.00305,"23":0.0061,"24":0.00305,"26":0.0061,"29":0.00305,"30":0.00305,"31":0.0061,"33":0.00305,"34":0.0061,"35":0.0061,"36":0.0061,"37":0.00305,"38":0.0061,"39":0.00914,"40":0.01219,"41":0.0061,"42":0.00305,"43":0.00305,"48":0.00305,"55":0.00305,"60":0.00305,"72":0.00305,"78":0.00305,"90":0.00305,"112":0.00305,"114":0.07925,"115":0.18288,"116":0.00305,"117":0.03962,"118":0.84734,"119":0.11887,_:"6 7 8 16 25 27 28 32 44 45 46 47 49 50 51 52 53 54 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 120 121 122","3.5":0.00305,"3.6":0.01219},D:{"4":0.00305,"6":0.00305,"7":0.00305,"10":0.00305,"18":0.00305,"20":0.00305,"21":0.0061,"24":0.00305,"25":0.00305,"26":0.0061,"27":0.00305,"29":0.0061,"31":0.00914,"32":0.0061,"33":0.0061,"35":0.0061,"36":0.0061,"37":0.0061,"38":0.00914,"39":0.01524,"40":0.01219,"41":0.01829,"42":0.01524,"43":0.02438,"44":0.03962,"45":0.02438,"46":0.02743,"47":0.01829,"51":0.04572,"55":0.0061,"56":0.00305,"57":0.00305,"58":0.00305,"65":0.00305,"66":0.00914,"67":0.00305,"70":0.01524,"74":0.00305,"77":0.0061,"78":0.01219,"79":0.00914,"80":0.00305,"81":0.0061,"83":0.00305,"85":0.0061,"87":0.0701,"88":0.00914,"90":0.00305,"91":0.01829,"93":0.00305,"94":0.01524,"96":0.00305,"97":0.0061,"98":0.10363,"99":0.03048,"100":0.00305,"102":0.00305,"103":0.04572,"104":0.00305,"105":0.01219,"106":0.00305,"108":0.0061,"109":2.1397,"110":0.05182,"111":0.02438,"112":0.00305,"113":0.03962,"114":0.05486,"115":0.04267,"116":0.6096,"117":8.79653,"118":8.97026,"119":0.01524,"120":0.00305,_:"5 8 9 11 12 13 14 15 16 17 19 22 23 28 30 34 48 49 50 52 53 54 59 60 61 62 63 64 68 69 71 72 73 75 76 84 86 89 92 95 101 107 121 122"},F:{"11":0.00305,"12":0.00305,"23":0.00305,"24":0.00305,"25":0.00305,"30":0.00305,"31":0.01219,"32":0.00914,"56":0.00305,"83":0.00305,"95":0.0061,"102":0.11887,"103":0.04877,_:"9 15 16 17 18 19 20 21 22 26 27 28 29 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 10.0-10.1 10.5 10.6 11.6","9.5-9.6":0.00305,"11.1":0.00305,"11.5":0.00305,"12.1":0.00914},B:{"12":0.00914,"15":0.00305,"16":0.02438,"18":0.0061,"80":0.00305,"84":0.00305,"87":0.00305,"92":0.02134,"93":0.00305,"95":0.0061,"96":0.01524,"98":0.00914,"99":0.0061,"100":0.00305,"101":0.02134,"102":0.00914,"103":0.03962,"105":0.00305,"106":0.04267,"107":0.10973,"108":0.0061,"109":0.01219,"110":0.02438,"111":0.05486,"112":0.03048,"113":0.05791,"114":0.04877,"115":0.10668,"116":0.11887,"117":1.6002,"118":1.46609,"119":0.00914,_:"13 14 17 79 81 83 85 86 88 89 90 91 94 97 104"},E:{"5":0.00305,"6":0.00305,"7":0.0061,"8":0.00305,"9":0.09449,"11":0.00305,"13":0.0061,"14":0.00305,"15":0.01829,_:"0 4 10 12 3.1 3.2 10.1 11.1 12.1 16.0 17.2","5.1":0.0061,"6.1":0.00305,"7.1":0.00914,"9.1":0.00305,"13.1":0.01524,"14.1":0.0701,"15.1":0.0061,"15.2-15.3":0.01524,"15.4":0.03658,"15.5":0.0061,"15.6":0.32309,"16.1":0.01219,"16.2":0.03658,"16.3":0.09144,"16.4":0.00305,"16.5":0.01829,"16.6":0.29261,"17.0":0.27737,"17.1":0.05182},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0005,"5.0-5.1":0.0005,"6.0-6.1":0.0015,"7.0-7.1":0.00349,"8.1-8.4":0.0005,"9.0-9.2":0.00349,"9.3":0.01196,"10.0-10.2":0.0005,"10.3":0.01745,"11.0-11.2":0.01595,"11.3-11.4":0.00548,"12.0-12.1":0.00449,"12.2-12.5":0.07927,"13.0-13.1":0.00249,"13.2":0.01346,"13.3":0.00499,"13.4-13.7":0.01595,"14.0-14.4":0.04387,"14.5-14.8":0.07079,"15.0-15.1":0.02792,"15.2-15.3":0.03191,"15.4":0.0354,"15.5":0.05035,"15.6-15.7":0.34847,"16.0":0.12862,"16.1":0.24627,"16.2":0.12015,"16.3":0.22284,"16.4":0.04786,"16.5":0.12762,"16.6-16.7":2.39045,"17.0":0.85149,"17.1":0.05135,"17.2":0.0015},P:{"4":0.35692,"20":0.11218,"21":0.10198,"22":0.85661,"23":0.14277,"5.0-5.4":0.0204,"6.2-6.4":0.04079,"7.2-7.4":0.07138,_:"8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0","13.0":0.0102,"16.0":0.0204,"17.0":0.0102,"18.0":0.07138,"19.0":0.0204},I:{"0":0.38046,"3":0,"4":0.00008,"2.1":0,"2.2":0.00011,"2.3":0,"4.1":0.00008,"4.2-4.3":0.00027,"4.4":0,"4.4.3-4.4.4":0.00115},A:{"6":0.00923,"7":0.02461,"8":0.22146,"9":0.04921,"10":0.04614,"11":0.29836,"5.5":0.00308},K:{"0":0.63272,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02086,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.01391},Q:{_:"13.1"},O:{"0":1.81473},H:{"0":0},L:{"0":60.74926}};
      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 26c1620ceacd7e..30674f136d4c65 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BW.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BW.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00783,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00392,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00783,"50":0,"51":0,"52":0.01175,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00392,"61":0,"62":0,"63":0,"64":0,"65":0.00392,"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.00783,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00392,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00392,"92":0.00392,"93":0,"94":0.00392,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01958,"103":0.00392,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00392,"114":0.01958,"115":0.09788,"116":0.05873,"117":0.40716,"118":0.02741,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00392,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00392,"47":0,"48":0,"49":0.00783,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00392,"64":0,"65":0,"66":0.00392,"67":0,"68":0,"69":0.00783,"70":0.00783,"71":0,"72":0,"73":0,"74":0.00783,"75":0.00392,"76":0,"77":0,"78":0.00392,"79":0.00392,"80":0.00392,"81":0.04698,"83":0.00392,"84":0,"85":0,"86":0.00392,"87":0.00392,"88":0.01566,"89":0,"90":0.00392,"91":0,"92":0.00392,"93":0.00392,"94":0,"95":0.01175,"96":0.00392,"97":0.00392,"98":0.00392,"99":0.01175,"100":0.00392,"101":0,"102":0.00392,"103":0.01566,"104":0.03915,"105":0.00392,"106":0.01175,"107":0.00392,"108":0.01566,"109":0.81824,"110":0.00783,"111":0.01175,"112":0.01958,"113":0.03915,"114":0.13703,"115":0.24665,"116":6.53414,"117":1.32719,"118":0.00392,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00392,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00392,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00392,"69":0.02741,"70":0.00783,"71":0.01175,"72":0.25056,"73":0.03915,"74":0,"75":0,"76":0,"77":0.02741,"78":0.00392,"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.01566,"96":0,"97":0,"98":0,"99":0.00392,"100":0.01175,"101":0.16052,"102":0.11745,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00392,"13":0.00392,"14":0.00392,"15":0.00392,"16":0.00783,"17":0.00392,"18":0.01175,"79":0,"80":0.00392,"81":0,"83":0,"84":0.00392,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00392,"91":0,"92":0.04698,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00392,"101":0,"102":0,"103":0,"104":0.00392,"105":0,"106":0,"107":0.00783,"108":0,"109":0.04307,"110":0.00783,"111":0.00783,"112":0.00392,"113":0.01175,"114":0.03915,"115":0.09396,"116":1.12361,"117":0.71253},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00392,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00392,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01566,"14.1":0.00783,"15.1":0,"15.2-15.3":0,"15.4":0.01175,"15.5":0.00392,"15.6":0.04307,"16.0":0.00392,"16.1":0.01958,"16.2":0.00392,"16.3":0.01175,"16.4":0.01566,"16.5":0.02741,"16.6":0.14486,"17.0":0.00783,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00123,"6.0-6.1":0.00185,"7.0-7.1":0.04677,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05231,"10.0-10.2":0,"10.3":0.03262,"11.0-11.2":0.00062,"11.3-11.4":0,"12.0-12.1":0.00185,"12.2-12.5":0.25047,"13.0-13.1":0,"13.2":0.00492,"13.3":0.00492,"13.4-13.7":0.01846,"14.0-14.4":0.02954,"14.5-14.8":0.05169,"15.0-15.1":0.06277,"15.2-15.3":0.032,"15.4":0.10462,"15.5":0.04739,"15.6-15.7":0.9422,"16.0":0.11693,"16.1":0.23693,"16.2":0.12616,"16.3":0.26955,"16.4":0.056,"16.5":0.29171,"16.6":2.93368,"17.0":0.32125,"17.1":0},P:{"4":0.21679,"20":0.04129,"21":0.20646,"22":1.52783,"5.0-5.4":0,"6.2-6.4":0.01032,"7.2-7.4":0.24776,"8.2":0,"9.2":0.01032,"10.1":0,"11.1-11.2":0.02065,"12.0":0.01032,"13.0":0.01032,"14.0":0.03097,"15.0":0.08259,"16.0":0.04129,"17.0":0.07226,"18.0":0.05162,"19.0":0.07226},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09741},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01958,"5.5":0},S:{"2.5":0.1217,_:"3.0-3.1"},J:{"7":0,"10":0.00609},N:{"10":0,"11":0},L:{"0":73.13617},R:{_:"0"},M:{"0":0.12779},Q:{"13.1":0.01826},O:{"0":1.04054},H:{"0":1.22131}};
      +module.exports={C:{"34":0.02216,"43":0.00369,"48":0.00369,"49":0.02954,"52":0.03324,"60":0.00369,"68":0.00369,"72":0.00369,"78":0.00369,"98":0.00369,"102":0.01477,"103":0.00369,"104":0.00369,"107":0.00369,"110":0.00369,"112":0.00739,"113":0.00739,"114":0.04062,"115":0.21789,"116":0.02216,"117":0.06278,"118":0.8974,"119":0.16619,"120":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 35 36 37 38 39 40 41 42 44 45 46 47 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 105 106 108 109 111 121 122 3.5 3.6"},D:{"11":0.00369,"43":0.00369,"48":0.00369,"49":0.01108,"56":0.00369,"58":0.00369,"63":0.00739,"65":0.00369,"66":0.00739,"67":0.00369,"69":0.01108,"70":0.00369,"72":0.00369,"74":0.00369,"75":0.00369,"76":0.00369,"78":0.00739,"79":0.01108,"80":0.00369,"81":0.01847,"83":0.01477,"84":0.00369,"85":0.00369,"86":0.00739,"87":0.01108,"88":0.0517,"89":0.02216,"90":0.02585,"91":0.02216,"92":0.01108,"93":0.00739,"94":0.00739,"95":0.02216,"96":0.00739,"97":0.00739,"98":0.00369,"99":0.03324,"100":0.01108,"101":0.00369,"102":0.01477,"103":0.03324,"104":0.07755,"105":0.00739,"106":0.01108,"107":0.01477,"108":0.02216,"109":1.90928,"110":0.00739,"111":0.01847,"112":0.03693,"113":0.02585,"114":0.14772,"115":0.1071,"116":0.97495,"117":9.33221,"118":9.46885,"119":0.00739,"120":0.00739,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 50 51 52 53 54 55 57 59 60 61 62 64 68 71 73 77 121 122"},F:{"28":0.00739,"46":0.01477,"79":0.00369,"89":0.00369,"95":0.03693,"100":0.01477,"101":0.01847,"102":0.48748,"103":0.36561,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00739,"13":0.00739,"14":0.00739,"15":0.01108,"16":0.01108,"17":0.00369,"18":0.02954,"80":0.01108,"84":0.00369,"89":0.00369,"90":0.01477,"92":0.09971,"100":0.01108,"102":0.00369,"105":0.00369,"107":0.01108,"108":0.00739,"109":0.06647,"110":0.02585,"111":0.01108,"112":0.00369,"113":0.02585,"114":0.0554,"115":0.0517,"116":0.14772,"117":2.37091,"118":2.20472,"119":0.01108,_:"79 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 103 104 106"},E:{"14":0.05909,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 17.2","5.1":0.00369,"12.1":0.01108,"13.1":0.02585,"14.1":0.03324,"15.2-15.3":0.00369,"15.4":0.02954,"15.5":0.00369,"15.6":0.09602,"16.0":0.00369,"16.1":0.04062,"16.2":0.00739,"16.3":0.04062,"16.4":0.06278,"16.5":0.03324,"16.6":0.39515,"17.0":0.19942,"17.1":0.00739},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00038,"5.0-5.1":0.00038,"6.0-6.1":0.00115,"7.0-7.1":0.00268,"8.1-8.4":0.00038,"9.0-9.2":0.00268,"9.3":0.00919,"10.0-10.2":0.00038,"10.3":0.0134,"11.0-11.2":0.01225,"11.3-11.4":0.00421,"12.0-12.1":0.00345,"12.2-12.5":0.06087,"13.0-13.1":0.00191,"13.2":0.01034,"13.3":0.00383,"13.4-13.7":0.01225,"14.0-14.4":0.03369,"14.5-14.8":0.05436,"15.0-15.1":0.02144,"15.2-15.3":0.0245,"15.4":0.02718,"15.5":0.03867,"15.6-15.7":0.2676,"16.0":0.09877,"16.1":0.18912,"16.2":0.09226,"16.3":0.17113,"16.4":0.03675,"16.5":0.09801,"16.6-16.7":1.83569,"17.0":0.65388,"17.1":0.03943,"17.2":0.00115},P:{"4":0.16378,"20":0.07165,"21":0.21496,"22":1.40238,"23":0.18425,_:"5.0-5.4 8.2 9.2","6.2-6.4":0.01024,"7.2-7.4":0.19449,"10.1":0.01024,"11.1-11.2":0.02047,"12.0":0.01024,"13.0":0.01024,"14.0":0.05118,"15.0":0.02047,"16.0":0.04095,"17.0":0.02047,"18.0":0.03071,"19.0":0.12284},I:{"0":0.06275,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00019},A:{"10":0.00369,"11":0.04432,_:"6 7 8 9 5.5"},K:{"0":1.0968,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.11353,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.09461},Q:{"13.1":0.01892},O:{"0":0.70638},H:{"0":0.07},L:{"0":59.5021}};
      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 30b9d94d254183..dc8e997e394009 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BY.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BY.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.03719,"46":0,"47":0,"48":0.00465,"49":0.05114,"50":0.00465,"51":0.00465,"52":0.08833,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00465,"63":0,"64":0.00465,"65":0,"66":0,"67":0,"68":0.00465,"69":0,"70":0.01395,"71":0,"72":0,"73":0,"74":0.0093,"75":0,"76":0.0093,"77":0,"78":0.01395,"79":0,"80":0,"81":0.0093,"82":0,"83":0,"84":0.0093,"85":0,"86":0,"87":0.0093,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00465,"97":0.01395,"98":0,"99":0.00465,"100":0.00465,"101":0.02325,"102":0.0186,"103":0,"104":0.07438,"105":0.04184,"106":0.0093,"107":0.0093,"108":0.00465,"109":0.00465,"110":0.01395,"111":0,"112":0.01395,"113":0.0093,"114":0.0093,"115":0.42771,"116":0.05114,"117":0.56718,"118":0.05579,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.06044,"50":0,"51":0.06509,"52":0,"53":0.00465,"54":0,"55":0.0093,"56":0,"57":0,"58":0.0186,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00465,"65":0,"66":0,"67":0.01395,"68":0,"69":0,"70":0.00465,"71":0.02325,"72":0,"73":0.0093,"74":0.0093,"75":0.05114,"76":0.09763,"77":0.01395,"78":0.08833,"79":0.06044,"80":0.10228,"81":0.06044,"83":0.09763,"84":0.02325,"85":0.02325,"86":0.09298,"87":0.13947,"88":0.01395,"89":0.03254,"90":0.29754,"91":0.11623,"92":0.00465,"93":0.07438,"94":0.0093,"95":0.04649,"96":0.05114,"97":0.03719,"98":0.03719,"99":0.02325,"100":0.03719,"101":0.05114,"102":0.13017,"103":0.07438,"104":0.03719,"105":0.06974,"106":0.13947,"107":0.14877,"108":0.06509,"109":1.49698,"110":0.02325,"111":0.08833,"112":0.08368,"113":0.05579,"114":0.36727,"115":0.27894,"116":4.82566,"117":1.43189,"118":0.00465,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01395,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00465,"57":0,"58":0,"60":0.02789,"62":0.01395,"63":0.02325,"64":0,"65":0.00465,"66":0,"67":0.00465,"68":0.00465,"69":0.01395,"70":0.00465,"71":0,"72":0.02325,"73":0.05114,"74":0.01395,"75":0,"76":0,"77":0.07438,"78":0,"79":0.04649,"80":0.00465,"81":0,"82":0.01395,"83":0.0186,"84":0.00465,"85":0.04184,"86":0.03719,"87":0.04649,"88":0,"89":0.0093,"90":0,"91":0,"92":0,"93":0,"94":0.00465,"95":0.46955,"96":0.00465,"97":0.06509,"98":0,"99":0.01395,"100":0.08368,"101":0.81822,"102":0.80428,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.0093,"12.1":0.00465},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00465,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.05579,"91":0,"92":0.00465,"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.00465,"106":0.0093,"107":0,"108":0.00465,"109":0.02325,"110":0.00465,"111":0,"112":0,"113":0.0093,"114":0.01395,"115":0.05579,"116":0.40911,"117":0.27894},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00465,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0093,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00465,"13.1":0.0093,"14.1":0.02325,"15.1":0.00465,"15.2-15.3":0.00465,"15.4":0.0093,"15.5":0.02789,"15.6":0.13482,"16.0":0.0093,"16.1":0.04184,"16.2":0.02789,"16.3":0.09763,"16.4":0.03254,"16.5":0.09763,"16.6":0.71595,"17.0":0.08368,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.01708,"9.3":0.03757,"10.0-10.2":0,"10.3":0.02391,"11.0-11.2":0.02049,"11.3-11.4":0,"12.0-12.1":0.00683,"12.2-12.5":0.14346,"13.0-13.1":0,"13.2":0,"13.3":11.84195,"13.4-13.7":0.03757,"14.0-14.4":0.09905,"14.5-14.8":0.22543,"15.0-15.1":0.09905,"15.2-15.3":0.1093,"15.4":0.10588,"15.5":0.17761,"15.6-15.7":1.92299,"16.0":0.86074,"16.1":1.34917,"16.2":0.63531,"16.3":1.10666,"16.4":0.22543,"16.5":0.76851,"16.6":12.30306,"17.0":1.81028,"17.1":0},P:{"4":0.03211,"20":0.0214,"21":0.04281,"22":0.57791,"5.0-5.4":0,"6.2-6.4":0.19264,"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.0107,"14.0":0,"15.0":0,"16.0":0,"17.0":0.0214,"18.0":0,"19.0":0.0214},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.008,"4.4":0,"4.4.3-4.4.4":0.032},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00501,"9":0,"10":0,"11":0.06008,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":39.36212},R:{_:"0"},M:{"0":0.07491},Q:{"13.1":0},O:{"0":0.12842},H:{"0":0.79029}};
      +module.exports={C:{"39":0.01406,"50":0.00469,"52":0.29997,"53":0.00469,"56":0.00469,"60":0.00469,"64":0.01406,"66":0.00469,"68":0.00469,"78":0.00469,"88":0.00469,"91":0.00469,"96":0.01875,"98":0.00469,"99":0.00469,"100":0.00469,"102":0.01875,"103":0.00469,"104":0.00937,"105":0.06093,"107":0.00469,"108":0.00937,"109":0.02344,"110":0.01406,"111":0.01875,"112":0.02812,"113":0.03281,"114":0.02812,"115":0.99833,"116":0.00937,"117":0.05156,"118":1.35923,"119":0.30934,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 51 54 55 57 58 59 61 62 63 65 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 97 101 106 120 121 122 3.5 3.6"},D:{"26":0.02344,"49":0.06093,"51":0.00469,"53":0.00469,"55":0.00937,"58":0.0375,"59":0.00469,"62":0.00469,"64":0.04218,"67":0.00469,"69":0.00469,"70":0.00937,"72":0.00469,"73":0.00937,"75":0.00469,"76":0.00937,"77":0.01875,"78":0.00469,"79":0.04687,"80":0.00937,"81":0.00469,"83":0.02344,"84":0.00937,"85":0.01406,"86":0.01406,"87":0.04687,"88":0.01406,"89":0.00937,"90":0.01875,"91":0.00937,"92":0.00469,"93":0.11249,"94":0.01406,"95":0.00937,"96":0.00469,"97":0.01875,"98":0.00937,"99":0.02812,"100":0.01875,"101":0.02344,"102":0.07499,"103":0.04218,"104":0.01875,"105":0.15936,"106":0.08905,"107":0.07031,"108":0.1453,"109":3.45901,"110":0.07031,"111":0.08437,"112":0.05624,"113":0.03281,"114":0.15936,"115":0.06562,"116":0.65618,"117":8.92405,"118":8.38036,"119":0.00937,"120":0.00469,_:"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 52 54 56 57 60 61 63 65 66 68 71 74 121 122"},F:{"36":0.03281,"56":0.00937,"69":0.00469,"72":0.00469,"73":0.01406,"77":0.00469,"79":0.07031,"80":0.01875,"81":0.00937,"82":0.0375,"83":0.02344,"84":0.00937,"85":0.09374,"86":0.04687,"87":0.01406,"89":0.00937,"90":0.00937,"93":0.00469,"94":0.00937,"95":1.31705,"99":0.01406,"100":0.01406,"101":0.07499,"102":3.01843,"103":1.66389,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 70 71 74 75 76 78 88 91 92 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.01875},B:{"18":0.00937,"92":0.01406,"102":0.00469,"107":0.02812,"109":0.03281,"110":0.01406,"111":0.00469,"112":0.01406,"114":0.00469,"115":0.00469,"116":0.01875,"117":0.92334,"118":1.23268,"119":0.00937,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 108 113"},E:{"13":0.00937,"14":0.03281,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 10.1","5.1":0.04218,"9.1":0.00469,"11.1":0.00469,"12.1":0.01406,"13.1":0.02344,"14.1":0.0375,"15.1":0.01406,"15.2-15.3":0.00937,"15.4":0.07499,"15.5":0.07031,"15.6":0.32809,"16.0":0.02344,"16.1":0.08437,"16.2":0.07499,"16.3":0.25779,"16.4":0.08905,"16.5":0.15467,"16.6":1.32173,"17.0":1.48109,"17.1":0.12186,"17.2":0.00469},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00167,"5.0-5.1":0.00167,"6.0-6.1":0.00501,"7.0-7.1":0.01169,"8.1-8.4":0.00167,"9.0-9.2":0.01169,"9.3":0.04006,"10.0-10.2":0.00167,"10.3":0.05843,"11.0-11.2":0.05342,"11.3-11.4":0.01836,"12.0-12.1":0.01502,"12.2-12.5":0.26543,"13.0-13.1":0.00835,"13.2":0.04507,"13.3":0.01669,"13.4-13.7":0.05342,"14.0-14.4":0.1469,"14.5-14.8":0.23705,"15.0-15.1":0.09348,"15.2-15.3":0.10684,"15.4":0.11852,"15.5":0.1686,"15.6-15.7":1.16687,"16.0":0.43069,"16.1":0.82466,"16.2":0.40231,"16.3":0.7462,"16.4":0.16026,"16.5":0.42735,"16.6-16.7":8.00451,"17.0":2.85124,"17.1":0.17194,"17.2":0.00501},P:{"4":0.4575,"20":0.03119,"21":0.04159,"22":0.69665,"23":0.18716,_:"5.0-5.4 8.2 9.2 10.1 12.0 15.0 16.0","6.2-6.4":0.18716,"7.2-7.4":0.0104,"11.1-11.2":0.0104,"13.0":0.0104,"14.0":0.0208,"17.0":0.0208,"18.0":0.0104,"19.0":0.0104},I:{"0":0.01586,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"8":0.01453,"11":0.13077,_:"6 7 9 10 5.5"},K:{"0":1.08448,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.13283},Q:{_:"13.1"},O:{"0":0.13814},H:{"0":0.01},L:{"0":32.12339}};
      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 0e48dee60647d8..7a0cd522a0dd9f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BZ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BZ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0.00485,"3":0.02424,"4":0.00485,"5":0,"6":0.00485,"7":0,"8":0,"9":0,"10":0.00485,"11":0.00485,"12":0.00485,"13":0.00485,"14":0,"15":0.00485,"16":0.00485,"17":0.00485,"18":0,"19":0,"20":0,"21":0.00969,"22":0,"23":0.00485,"24":0.00969,"25":0,"26":0.00485,"27":0,"28":0,"29":0.00485,"30":0.00485,"31":0.00485,"32":0.00485,"33":0.00485,"34":0.00485,"35":0.00969,"36":0.00485,"37":0.00485,"38":0.00969,"39":0.00969,"40":0.02424,"41":0.00485,"42":0.00485,"43":0,"44":0,"45":0,"46":0,"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.00969,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01454,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00485,"109":0.02424,"110":0,"111":0,"112":0,"113":0,"114":0.00485,"115":0.07271,"116":0.05816,"117":0.32475,"118":0.07271,"119":0,"120":0,"3.5":0.00485,"3.6":0.02424},D:{"4":0.00485,"5":0,"6":0,"7":0.00485,"8":0,"9":0,"10":0.00485,"11":0.00485,"12":0.00485,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00485,"20":0,"21":0.00969,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00485,"28":0,"29":0.00485,"30":0.00485,"31":0.00969,"32":0.00485,"33":0.00485,"34":0.00485,"35":0.00485,"36":0.00485,"37":0.00969,"38":0.00485,"39":0.02424,"40":0.01939,"41":0.02424,"42":0.01939,"43":0.03878,"44":0.05816,"45":0.02908,"46":0.03878,"47":0.02908,"48":0,"49":0,"50":0,"51":0.03393,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.02908,"71":0,"72":0.01454,"73":0,"74":0,"75":0.03878,"76":0.02908,"77":0,"78":0,"79":0.00485,"80":0,"81":0,"83":0,"84":0.00485,"85":0,"86":0,"87":0,"88":0.00485,"89":0,"90":0,"91":0.03393,"92":0.00485,"93":0.0824,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00485,"100":0,"101":0,"102":0.00485,"103":0.10179,"104":0,"105":0.00485,"106":0,"107":0.02424,"108":2.51559,"109":0.47016,"110":0.00485,"111":0.00969,"112":0.01939,"113":0.02424,"114":0.09694,"115":0.18419,"116":8.23505,"117":2.05028,"118":0,"119":0.00485,"120":0},F:{"9":0,"11":0.00485,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00485,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00969,"31":0.01454,"32":0.00485,"33":0.00485,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00969,"73":0.00485,"74":0,"75":0,"76":0,"77":0.01454,"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.02908,"101":0.07755,"102":0.10179,"9.5-9.6":0.00485,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00969},B:{"12":0.01939,"13":0,"14":0.01939,"15":0,"16":0.00485,"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.00485,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.02908,"110":0,"111":0.00485,"112":0,"113":0.00969,"114":0.00969,"115":0.03393,"116":0.98394,"117":0.67858},E:{"4":0.01939,"5":0.00485,"6":0.00485,"7":0.00485,"8":0.00969,"9":0.0824,"10":0,"11":0,"12":0,"13":0,"14":0.05816,"15":0.00485,_:"0","3.1":0,"3.2":0,"5.1":0.00969,"6.1":0.00485,"7.1":0.00485,"9.1":0.06786,"10.1":0,"11.1":0,"12.1":0.00485,"13.1":0.01939,"14.1":0.01454,"15.1":0.02424,"15.2-15.3":0.01939,"15.4":0.04362,"15.5":0.03393,"15.6":0.47016,"16.0":0.03878,"16.1":0.06786,"16.2":0.02908,"16.3":0.1551,"16.4":0.07755,"16.5":0.28597,"16.6":1.19236,"17.0":0.10179,"17.1":0},G:{"8":0.01751,"3.2":0.00292,"4.0-4.1":0,"4.2-4.3":0.01167,"5.0-5.1":0.02334,"6.0-6.1":0.01459,"7.0-7.1":0.09921,"8.1-8.4":0.17216,"9.0-9.2":0.01459,"9.3":0.1634,"10.0-10.2":0,"10.3":0.09629,"11.0-11.2":0.43477,"11.3-11.4":0.11672,"12.0-12.1":0.11088,"12.2-12.5":0.20134,"13.0-13.1":0,"13.2":0,"13.3":0.00292,"13.4-13.7":0.00584,"14.0-14.4":0.13714,"14.5-14.8":0.11672,"15.0-15.1":0.06419,"15.2-15.3":0.49313,"15.4":0.33556,"15.5":0.35015,"15.6-15.7":2.03963,"16.0":0.69447,"16.1":0.7324,"16.2":0.57483,"16.3":2.27014,"16.4":0.18675,"16.5":0.82869,"16.6":16.53296,"17.0":1.91708,"17.1":0.00584},P:{"4":0.23139,"20":0.03155,"21":0.06311,"22":1.7775,"5.0-5.4":0.02104,"6.2-6.4":0.04207,"7.2-7.4":0.06311,"8.2":0,"9.2":0.01052,"10.1":0,"11.1-11.2":0.01052,"12.0":0,"13.0":0.01052,"14.0":0,"15.0":0,"16.0":0.02104,"17.0":0.01052,"18.0":0,"19.0":0.01052},I:{"0":0,"3":0.03521,"4":0.24966,"2.1":0.02881,"2.2":0.12163,"2.3":0.17604,"4.1":0.12163,"4.2-4.3":0.30087,"4.4":0,"4.4.3-4.4.4":0.71697},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01538,"7":0.03076,"8":0.28705,"9":0.04613,"10":0.07176,"11":0.95856,"5.5":0},S:{"2.5":0.03607,_:"3.0-3.1"},J:{"7":0,"10":0.06184},N:{"10":0.08854,"11":0.05059},L:{"0":42.42877},R:{_:"0"},M:{"0":0.20612},Q:{"13.1":0},O:{"0":0.1649},H:{"0":0.20978}};
      +module.exports={C:{"2":0.00434,"3":0.03039,"4":0.00434,"5":0.00434,"11":0.00434,"12":0.00434,"16":0.00434,"23":0.00434,"24":0.00434,"26":0.00434,"30":0.00434,"31":0.00868,"32":0.00434,"34":0.00434,"35":0.00434,"37":0.00434,"38":0.00868,"39":0.00868,"40":0.01302,"41":0.00868,"52":0.00434,"72":0.00434,"78":0.00434,"91":0.00434,"102":0.00434,"108":0.02605,"110":0.00868,"111":0.00434,"112":0.00434,"114":0.00434,"115":0.15628,"116":0.02171,"117":0.13891,"118":0.66417,"119":0.18666,_:"6 7 8 9 10 13 14 15 17 18 19 20 21 22 25 27 28 29 33 36 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 109 113 120 121 122","3.5":0.00434,"3.6":0.01302},D:{"6":0.00434,"11":0.00434,"17":0.00434,"21":0.01302,"22":0.00434,"27":0.00434,"29":0.00434,"31":0.01302,"33":0.00434,"34":0.00434,"36":0.00868,"37":0.00868,"38":0.00434,"39":0.01736,"40":0.00868,"41":0.00868,"42":0.01302,"43":0.02171,"44":0.03473,"45":0.01736,"46":0.02605,"47":0.01736,"51":0.03907,"55":0.00434,"63":0.00434,"66":0.00434,"70":0.01302,"71":0.00434,"75":0.05643,"76":0.06077,"77":0.00434,"79":0.00868,"81":0.00434,"83":0.01302,"84":0.00434,"85":0.00434,"86":0.00868,"87":0.00434,"91":0.09984,"92":0.00868,"93":0.11721,"99":0.00868,"103":0.16496,"105":0.00434,"107":0.00434,"108":5.90376,"109":0.92897,"110":0.00868,"111":0.03907,"112":0.03039,"113":0.01302,"114":0.06077,"115":0.03907,"116":0.75968,"117":10.01469,"118":8.49534,"119":0.00868,_:"4 5 7 8 9 10 12 13 14 15 16 18 19 20 23 24 25 26 28 30 32 35 48 49 50 52 53 54 56 57 58 59 60 61 62 64 65 67 68 69 72 73 74 78 80 88 89 90 94 95 96 97 98 100 101 102 104 106 120 121 122"},F:{"12":0.00434,"31":0.00868,"32":0.00434,"95":0.00434,"101":0.00434,"102":0.31255,"103":0.06946,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.5 11.6","11.1":0.00434,"12.1":0.00868},B:{"12":0.01302,"18":0.00868,"90":0.00434,"92":0.01302,"100":0.00434,"109":0.07814,"111":0.01736,"113":0.00868,"114":0.00434,"115":0.00434,"116":0.10853,"117":1.5671,"118":1.31966,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 119"},E:{"4":0.02605,"5":0.00434,"7":0.00434,"8":0.00868,"9":0.05643,"13":0.01302,"14":0.13457,"15":0.00434,_:"0 6 10 11 12 3.1 3.2 6.1 10.1 11.1","5.1":0.00434,"7.1":0.00434,"9.1":0.00434,"12.1":0.00434,"13.1":0.0955,"14.1":0.03907,"15.1":0.06946,"15.2-15.3":0.09116,"15.4":0.30387,"15.5":0.08682,"15.6":0.65115,"16.0":0.03039,"16.1":0.22573,"16.2":0.06077,"16.3":0.26914,"16.4":0.13023,"16.5":0.43844,"16.6":2.15748,"17.0":1.15471,"17.1":0.11287,"17.2":0.00434},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00248,"5.0-5.1":0.00248,"6.0-6.1":0.00745,"7.0-7.1":0.01738,"8.1-8.4":0.00248,"9.0-9.2":0.01738,"9.3":0.05958,"10.0-10.2":0.00248,"10.3":0.08689,"11.0-11.2":0.07944,"11.3-11.4":0.02731,"12.0-12.1":0.02234,"12.2-12.5":0.39473,"13.0-13.1":0.01241,"13.2":0.06703,"13.3":0.02483,"13.4-13.7":0.07944,"14.0-14.4":0.21847,"14.5-14.8":0.35253,"15.0-15.1":0.13903,"15.2-15.3":0.15889,"15.4":0.17626,"15.5":0.25074,"15.6-15.7":1.73534,"16.0":0.64051,"16.1":1.22641,"16.2":0.59831,"16.3":1.10972,"16.4":0.23833,"16.5":0.63555,"16.6-16.7":11.90408,"17.0":4.24029,"17.1":0.25571,"17.2":0.00745},P:{"4":0.10639,"20":0.02128,"21":0.10639,"22":1.35114,"23":0.32981,"5.0-5.4":0.02128,"6.2-6.4":0.02128,"7.2-7.4":0.06383,_:"8.2 9.2 10.1 12.0 14.0 15.0 17.0","11.1-11.2":0.02128,"13.0":0.01064,"16.0":0.03192,"18.0":0.01064,"19.0":0.03192},I:{"0":0.30966,"3":0,"4":0.00006,"2.1":0,"2.2":0.00009,"2.3":0,"4.1":0.00006,"4.2-4.3":0.00022,"4.4":0,"4.4.3-4.4.4":0.00093},A:{"6":0.00938,"7":0.01407,"8":0.19223,"9":0.03751,"10":0.03751,"11":1.86609,_:"5.5"},K:{"0":0.15845,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01132,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.29993},Q:{_:"13.1"},O:{"0":0.15279},H:{"0":0},L:{"0":30.7593}};
      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 5fa0d262f6ec75..5973af40e12f21 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00551,"39":0,"40":0,"41":0,"42":0,"43":0.01101,"44":0.03304,"45":0.01101,"46":0,"47":0,"48":0.01101,"49":0,"50":0,"51":0,"52":0.01652,"53":0,"54":0,"55":0,"56":0,"57":0.01101,"58":0,"59":0.00551,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00551,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00551,"78":0.02202,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01101,"88":0.00551,"89":0,"90":0,"91":0.00551,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00551,"101":0,"102":0.03854,"103":0.00551,"104":0.00551,"105":0.00551,"106":0.00551,"107":0.00551,"108":0.00551,"109":0.01652,"110":0.01101,"111":0.00551,"112":0.00551,"113":0.01652,"114":0.01652,"115":0.22024,"116":0.12113,"117":1.34346,"118":0.11563,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00551,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00551,"39":0,"40":0,"41":0,"42":0.00551,"43":0,"44":0,"45":0,"46":0,"47":0.01101,"48":0.0881,"49":0.04955,"50":0,"51":0,"52":0.00551,"53":0,"54":0,"55":0,"56":0,"57":0.00551,"58":0,"59":0,"60":0.04405,"61":0,"62":0,"63":0,"64":0,"65":0.00551,"66":0.02202,"67":0.00551,"68":0.00551,"69":0,"70":0,"71":0.00551,"72":0.00551,"73":0,"74":0.00551,"75":0.00551,"76":0.01101,"77":0.00551,"78":0.02753,"79":0.02202,"80":0.01101,"81":0.03304,"83":0.23125,"84":0.00551,"85":0.01101,"86":0.03854,"87":0.02753,"88":0.06607,"89":0.00551,"90":0.00551,"91":0.01101,"92":0.00551,"93":0.05506,"94":0.00551,"95":0.00551,"96":0.01101,"97":0.00551,"98":0.00551,"99":0.01101,"100":0.01652,"101":0.02202,"102":0.01652,"103":0.1872,"104":0.02202,"105":0.04405,"106":0.03304,"107":0.04405,"108":0.0881,"109":0.67724,"110":0.04405,"111":0.06607,"112":0.11563,"113":0.0936,"114":0.3634,"115":0.61667,"116":10.96245,"117":2.67592,"118":0.00551,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00551,"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.01652,"73":0.00551,"74":0,"75":0,"76":0,"77":0.01652,"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.03304,"96":0,"97":0,"98":0,"99":0.00551,"100":0.06057,"101":0.19271,"102":0.1872,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00551,"13":0.00551,"14":0,"15":0,"16":0,"17":0,"18":0.00551,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00551,"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,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00551,"106":0.00551,"107":0.00551,"108":0.01101,"109":0.06607,"110":0.01101,"111":0.01101,"112":0.00551,"113":0.01101,"114":0.03854,"115":0.12113,"116":2.19689,"117":1.58022},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00551,"9":0.01652,"10":0,"11":0,"12":0,"13":0.01101,"14":0.06057,"15":0.01101,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01101,"10.1":0,"11.1":0.00551,"12.1":0.02753,"13.1":0.13765,"14.1":0.17619,"15.1":0.02202,"15.2-15.3":0.02202,"15.4":0.04955,"15.5":0.06607,"15.6":0.47902,"16.0":0.04955,"16.1":0.0936,"16.2":0.09911,"16.3":0.23676,"16.4":0.0936,"16.5":0.29732,"16.6":2.60434,"17.0":0.09911,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01171,"8.1-8.4":0.01562,"9.0-9.2":0.01562,"9.3":0.15229,"10.0-10.2":0.00781,"10.3":0.16401,"11.0-11.2":0.06248,"11.3-11.4":0.04295,"12.0-12.1":0.03124,"12.2-12.5":0.71851,"13.0-13.1":0.00781,"13.2":0.01171,"13.3":0.04686,"13.4-13.7":0.08591,"14.0-14.4":0.20696,"14.5-14.8":0.52326,"15.0-15.1":0.15229,"15.2-15.3":0.17572,"15.4":0.17572,"15.5":0.34754,"15.6-15.7":2.4523,"16.0":0.83566,"16.1":2.19848,"16.2":0.99967,"16.3":1.87437,"16.4":0.2343,"16.5":0.83956,"16.6":24.44105,"17.0":1.75332,"17.1":0.00781},P:{"4":0.10621,"20":0.04248,"21":0.12745,"22":2.55959,"5.0-5.4":0.01062,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01062,"11.1-11.2":0.01062,"12.0":0,"13.0":0.01062,"14.0":0,"15.0":0,"16.0":0.02124,"17.0":0.02124,"18.0":0.01062,"19.0":0.02124},I:{"0":0,"3":0,"4":0.02461,"2.1":0,"2.2":0.03445,"2.3":0.01476,"4.1":0.01476,"4.2-4.3":0.03445,"4.4":0,"4.4.3-4.4.4":0.14765},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01239,"9":0.00619,"10":0,"11":0.08053,"5.5":0},S:{"2.5":0.00449,_:"3.0-3.1"},J:{"7":0,"10":0.00449},N:{"10":0,"11":0},L:{"0":26.17418},R:{_:"0"},M:{"0":0.44491},Q:{"13.1":0.00449},O:{"0":0.12134},H:{"0":0.19571}};
      +module.exports={C:{"38":0.01058,"43":0.01058,"44":0.05819,"45":0.01587,"47":0.00529,"48":0.02116,"52":0.03703,"56":0.00529,"57":0.01587,"59":0.00529,"68":0.00529,"77":0.00529,"78":0.04232,"87":0.02116,"88":0.00529,"89":0.00529,"91":0.00529,"94":0.00529,"100":0.00529,"102":0.02645,"103":0.00529,"104":0.00529,"105":0.01058,"106":0.00529,"107":0.01058,"108":0.01058,"109":0.03174,"110":0.01058,"111":0.00529,"112":0.01058,"113":0.02116,"114":0.01587,"115":0.36501,"116":0.03174,"117":0.13225,"118":1.98904,"119":0.38088,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 49 50 51 53 54 55 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 90 92 93 95 96 97 98 99 101 120 121 122 3.5 3.6"},D:{"29":0.00529,"38":0.00529,"39":0.00529,"40":0.00529,"41":0.00529,"42":0.01058,"43":0.00529,"44":0.00529,"45":0.00529,"46":0.00529,"47":0.01587,"48":0.13754,"49":0.07406,"50":0.00529,"51":0.00529,"52":0.00529,"53":0.00529,"54":0.00529,"55":0.00529,"56":0.00529,"57":0.01058,"58":0.00529,"59":0.00529,"60":0.06348,"65":0.00529,"66":0.03703,"67":0.00529,"68":0.00529,"69":0.00529,"70":0.00529,"72":0.00529,"74":0.00529,"75":0.00529,"76":0.01587,"77":0.00529,"78":0.02116,"79":0.47081,"80":0.03174,"81":0.05819,"83":0.64009,"84":0.01587,"85":0.02645,"86":0.08464,"87":0.0529,"88":0.11638,"89":0.01058,"90":0.01058,"91":0.01058,"92":0.01058,"93":0.06348,"94":0.01058,"95":0.00529,"96":0.01058,"97":0.01058,"98":0.01587,"99":0.01587,"100":0.03703,"101":0.04232,"102":0.03174,"103":0.30682,"104":0.04232,"105":0.0529,"106":0.06348,"107":0.07935,"108":0.17457,"109":1.16909,"110":0.07935,"111":0.08993,"112":0.14283,"113":0.16399,"114":0.32269,"115":0.33856,"116":2.32231,"117":12.17229,"118":11.76496,"119":0.02116,"120":0.00529,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 61 62 63 64 71 73 121 122"},F:{"52":0.00529,"89":0.00529,"93":0.00529,"94":0.00529,"95":0.0529,"99":0.00529,"100":0.00529,"101":0.01058,"102":0.71415,"103":0.13754,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01058,"13":0.00529,"15":0.00529,"17":0.00529,"18":0.00529,"85":0.00529,"92":0.00529,"103":0.00529,"105":0.00529,"106":0.01058,"107":0.01587,"108":0.02116,"109":0.11638,"110":0.01587,"111":0.01058,"112":0.01058,"113":0.01587,"114":0.02645,"115":0.03174,"116":0.13225,"117":3.29567,"118":3.29567,"119":0.01058,_:"14 16 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104"},E:{"8":0.00529,"9":0.02116,"13":0.01587,"14":0.10051,"15":0.01587,_:"0 4 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.00529,"11.1":0.01058,"12.1":0.04232,"13.1":0.21689,"14.1":0.29095,"15.1":0.03703,"15.2-15.3":0.03703,"15.4":0.07935,"15.5":0.12696,"15.6":0.87285,"16.0":0.08464,"16.1":0.1587,"16.2":0.17986,"16.3":0.42849,"16.4":0.1587,"16.5":0.41791,"16.6":3.86699,"17.0":1.16909,"17.1":0.08993},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00255,"5.0-5.1":0.00255,"6.0-6.1":0.00764,"7.0-7.1":0.01784,"8.1-8.4":0.00255,"9.0-9.2":0.01784,"9.3":0.06115,"10.0-10.2":0.00255,"10.3":0.08918,"11.0-11.2":0.08154,"11.3-11.4":0.02803,"12.0-12.1":0.02293,"12.2-12.5":0.40514,"13.0-13.1":0.01274,"13.2":0.0688,"13.3":0.02548,"13.4-13.7":0.08154,"14.0-14.4":0.22423,"14.5-14.8":0.36182,"15.0-15.1":0.14269,"15.2-15.3":0.16307,"15.4":0.18091,"15.5":0.25735,"15.6-15.7":1.78108,"16.0":0.65739,"16.1":1.25873,"16.2":0.61408,"16.3":1.13897,"16.4":0.24461,"16.5":0.6523,"16.6-16.7":12.21785,"17.0":4.35205,"17.1":0.26245,"17.2":0.00764},P:{"4":0.11137,"20":0.03341,"21":0.11137,"22":2.06032,"23":0.52343,"5.0-5.4":0.01114,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0","13.0":0.01114,"16.0":0.02227,"17.0":0.02227,"18.0":0.01114,"19.0":0.01114},I:{"0":0.03279,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.01278,"9":0.01278,"11":0.12784,_:"6 7 10 5.5"},K:{"0":0.21661,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.4709},Q:{"13.1":0.01413},O:{"0":0.11302},H:{"0":0},L:{"0":18.26872}};
      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 237dd71b2de215..6502dba44fb646 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CD.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CD.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.02148,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.0033,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.01322,"116":0.00496,"117":0.05782,"118":0.00661,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00165,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00496,"41":0,"42":0,"43":0.00165,"44":0,"45":0,"46":0,"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.00165,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00165,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00165,"80":0,"81":0.0033,"83":0,"84":0,"85":0,"86":0,"87":0.00165,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00496,"99":0.00165,"100":0,"101":0,"102":0.00165,"103":0.00165,"104":0,"105":0.00165,"106":0.00165,"107":0.00165,"108":0.00165,"109":0.05452,"110":0.00661,"111":0.0033,"112":0.00165,"113":0.0033,"114":0.00496,"115":0.01156,"116":0.27588,"117":0.07599,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00496,"25":0,"26":0.0033,"27":0.00165,"28":0.00661,"29":0,"30":0.01156,"31":0.00165,"32":0.00661,"33":0.00496,"34":0,"35":0,"36":0.00165,"37":0.02808,"38":0.00661,"39":0,"40":0,"41":0,"42":0.00661,"43":0,"44":0,"45":0.00165,"46":0.00165,"47":0.00496,"48":0,"49":0,"50":0.0033,"51":0.00661,"52":0,"53":0,"54":0.0033,"55":0.0033,"56":0,"57":0.00496,"58":0.01322,"60":0.0859,"62":0.00165,"63":0.14538,"64":0.00991,"65":0.00661,"66":0.08921,"67":0.06773,"68":0.03304,"69":0.19824,"70":0.08921,"71":0.3684,"72":0.31553,"73":0.05121,"74":0.00826,"75":0.00165,"76":0.00661,"77":0.01652,"78":0.00165,"79":0.0033,"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.00661,"96":0,"97":0,"98":0,"99":0.00165,"100":0,"101":0.03469,"102":0.02974,"9.5-9.6":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.00165,"13":0.00165,"14":0,"15":0.00165,"16":0,"17":0.00165,"18":0.0033,"79":0,"80":0,"81":0,"83":0,"84":0.00165,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0033,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00165,"110":0.00165,"111":0,"112":0,"113":0.00165,"114":0.0033,"115":0.00826,"116":0.08921,"117":0.05121},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.00165,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00165,"13.1":0,"14.1":0.00165,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00165,"16.0":0,"16.1":0,"16.2":0.00165,"16.3":0.00165,"16.4":0,"16.5":0.00165,"16.6":0.00826,"17.0":0,"17.1":0},G:{"8":0.00399,"3.2":0,"4.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,"9.3":0.00638,"10.0-10.2":0,"10.3":0.02154,"11.0-11.2":0.00239,"11.3-11.4":0,"12.0-12.1":0.01995,"12.2-12.5":0.70933,"13.0-13.1":0.00319,"13.2":0.00319,"13.3":0.02234,"13.4-13.7":0.12766,"14.0-14.4":0.27847,"14.5-14.8":0.48193,"15.0-15.1":0.15479,"15.2-15.3":0.24575,"15.4":0.24176,"15.5":0.36863,"15.6-15.7":1.1753,"16.0":0.32873,"16.1":0.4939,"16.2":0.27847,"16.3":0.43964,"16.4":0.43645,"16.5":0.59204,"16.6":1.17371,"17.0":0.33352,"17.1":0},P:{"4":0.10292,"20":0.07204,"21":0.07204,"22":0.23672,"5.0-5.4":0.02058,"6.2-6.4":0,"7.2-7.4":0.05146,"8.2":0,"9.2":0.04117,"10.1":0,"11.1-11.2":0.06175,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.02058,"17.0":0.01029,"18.0":0.03088,"19.0":0.03088},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00116,"4.2-4.3":0.00578,"4.4":0,"4.4.3-4.4.4":0.07628},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00826,"5.5":0},S:{"2.5":0.10018,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.71647},R:{_:"0"},M:{"0":0.03339},Q:{"13.1":0.0167},O:{"0":0.32557},H:{"0":16.88945}};
      +module.exports={C:{"31":0.00129,"37":0.00129,"43":0.00129,"47":0.00129,"57":0.03996,"60":0.00129,"72":0.00258,"78":0.00129,"102":0.00516,"112":0.00387,"114":0.00129,"115":0.09668,"116":0.00516,"117":0.03609,"118":0.31967,"119":0.05027,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 38 39 40 41 42 44 45 46 48 49 50 51 52 53 54 55 56 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 113 120 121 122 3.5 3.6"},D:{"11":0.00516,"26":0.00129,"29":0.00129,"33":0.00129,"38":0.00129,"43":0.00773,"49":0.00258,"50":0.00129,"52":0.00129,"55":0.00129,"57":0.00129,"58":0.00129,"63":0.00129,"64":0.00129,"68":0.00129,"69":0.00258,"70":0.00129,"73":0.00129,"74":0.00516,"76":0.00129,"77":0.00129,"78":0.00387,"79":0.00645,"80":0.00129,"81":0.00773,"83":0.00129,"84":0.00129,"86":0.00129,"87":0.00387,"88":0.00258,"89":0.00129,"90":0.00258,"91":0.00387,"92":0.00387,"93":0.00129,"95":0.00258,"97":0.00129,"98":0.01805,"99":0.00645,"100":0.00129,"101":0.00129,"102":0.00258,"103":0.00645,"104":0.00129,"105":0.00902,"106":0.00129,"107":0.00258,"108":0.01676,"109":0.30807,"110":0.05414,"111":0.02191,"112":0.00645,"113":0.00773,"114":0.03094,"115":0.03867,"116":0.09281,"117":0.80305,"118":1.0196,"119":0.00129,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 30 31 32 34 35 36 37 39 40 41 42 44 45 46 47 48 51 53 54 56 59 60 61 62 65 66 67 71 72 75 85 94 96 120 121 122"},F:{"42":0.00129,"46":0.00129,"72":0.00129,"75":0.0116,"76":0.00129,"77":0.00129,"78":0.00129,"79":0.02578,"83":0.00129,"85":0.00129,"89":0.00129,"90":0.00773,"95":0.02449,"99":0.00129,"101":0.00902,"102":0.13406,"103":0.1057,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 80 81 82 84 86 87 88 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02062,"13":0.00258,"14":0.00258,"15":0.00258,"16":0.00129,"17":0.00258,"18":0.02062,"84":0.00387,"85":0.00129,"89":0.00258,"90":0.00387,"92":0.0116,"96":0.00129,"100":0.00129,"108":0.00129,"109":0.00902,"110":0.00129,"111":0.00645,"112":0.00258,"113":0.00387,"114":0.01805,"115":0.00773,"116":0.02449,"117":0.36608,"118":0.36092,"119":0.00129,_:"79 80 81 83 86 87 88 91 93 94 95 97 98 99 101 102 103 104 105 106 107"},E:{"11":0.00129,"13":0.00129,"14":0.00387,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 6.1 7.1 9.1 10.1 15.1 15.2-15.3 17.2","5.1":0.00516,"11.1":0.00129,"12.1":0.00129,"13.1":0.00516,"14.1":0.02836,"15.4":0.00129,"15.5":0.00258,"15.6":0.01934,"16.0":0.00129,"16.1":0.00129,"16.2":0.00516,"16.3":0.01289,"16.4":0.00773,"16.5":0.00387,"16.6":0.05929,"17.0":0.03223,"17.1":0.00258},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00072,"5.0-5.1":0.00072,"6.0-6.1":0.00216,"7.0-7.1":0.00504,"8.1-8.4":0.00072,"9.0-9.2":0.00504,"9.3":0.01727,"10.0-10.2":0.00072,"10.3":0.02518,"11.0-11.2":0.02302,"11.3-11.4":0.00791,"12.0-12.1":0.00648,"12.2-12.5":0.11441,"13.0-13.1":0.0036,"13.2":0.01943,"13.3":0.0072,"13.4-13.7":0.02302,"14.0-14.4":0.06332,"14.5-14.8":0.10217,"15.0-15.1":0.04029,"15.2-15.3":0.04605,"15.4":0.05109,"15.5":0.07267,"15.6-15.7":0.50295,"16.0":0.18564,"16.1":0.35545,"16.2":0.17341,"16.3":0.32163,"16.4":0.06907,"16.5":0.1842,"16.6-16.7":3.45014,"17.0":1.22895,"17.1":0.07411,"17.2":0.00216},P:{"4":0.11776,"20":0.04907,"21":0.03925,"22":0.2159,"23":0.05888,"5.0-5.4":0.01963,"6.2-6.4":0.01963,"7.2-7.4":0.05888,_:"8.2 10.1 12.0 15.0 17.0","9.2":0.04907,"11.1-11.2":0.02944,"13.0":0.01963,"14.0":0.01963,"16.0":0.02944,"18.0":0.01963,"19.0":0.02944},I:{"0":0.04333,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"11":0.0232,_:"6 7 8 9 10 5.5"},K:{"0":9.94262,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.10453,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.03484},Q:{"13.1":0.00871},O:{"0":0.21778},H:{"0":7.34},L:{"0":69.50024}};
      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 1bc740ba0c6d51..14a34729267c54 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CF.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CF.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00182,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00182,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00728,"62":0,"63":0,"64":0,"65":0,"66":0.00182,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00364,"73":0,"74":0,"75":0,"76":0,"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.00182,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00182,"115":0.05278,"116":0.03094,"117":0.36946,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00546,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00364,"50":0,"51":0,"52":0.00182,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02366,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.01274,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01092,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00364,"101":0.00182,"102":0.00182,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.0273,"110":0.00182,"111":0,"112":0.00546,"113":0.00182,"114":0.0091,"115":0.04186,"116":0.6279,"117":0.06006,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00182,"52":0,"53":0,"54":0,"55":0.00546,"56":0,"57":0,"58":0.00182,"60":0.01456,"62":0,"63":0.0091,"64":0,"65":0,"66":0.00546,"67":0.00364,"68":0.00182,"69":0.00728,"70":0.00182,"71":0.02002,"72":0.0546,"73":0.00364,"74":0,"75":0,"76":0,"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.00546,"93":0,"94":0,"95":0.00364,"96":0,"97":0,"98":0,"99":0.00546,"100":0,"101":0.02366,"102":0.00546,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00728},B:{"12":0.00182,"13":0,"14":0.00364,"15":0,"16":0,"17":0.00364,"18":0.00364,"79":0,"80":0,"81":0,"83":0.01274,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00182,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.02548,"110":0,"111":0,"112":0.00364,"113":0,"114":0.00546,"115":0.00546,"116":0.10192,"117":0.01638},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00728,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00182,"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.00182,"16.0":0,"16.1":0.00182,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0.00182,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03922,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00357,"10.0-10.2":0.00963,"10.3":0.00357,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.47956,"13.0-13.1":0,"13.2":0.00357,"13.3":0.00606,"13.4-13.7":0.05491,"14.0-14.4":0.06988,"14.5-14.8":0.07594,"15.0-15.1":0.06133,"15.2-15.3":0.0271,"15.4":0.04279,"15.5":0.00998,"15.6-15.7":0.80972,"16.0":0.26385,"16.1":0.15474,"16.2":0.03173,"16.3":0.12158,"16.4":0.07238,"16.5":0.38543,"16.6":0.56299,"17.0":0.2724,"17.1":0},P:{"4":0.53298,"20":0.0205,"21":0.07175,"22":0.13325,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.041,"8.2":0,"9.2":0.01025,"10.1":0,"11.1-11.2":0.01025,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.0205,"17.0":0,"18.0":0,"19.0":0.01025},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00474,"4.2-4.3":0.00355,"4.4":0,"4.4.3-4.4.4":0.09085},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00182,"5.5":0},S:{"2.5":0.39264,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.07062},R:{_:"0"},M:{"0":0.05726},Q:{"13.1":0},O:{"0":0.09816},H:{"0":9.37834}};
      +module.exports={C:{"50":0.00279,"51":0.00279,"60":0.00279,"72":0.00698,"79":0.0014,"102":0.0014,"110":0.03769,"115":0.02932,"116":0.0014,"117":0.05584,"118":1.26896,"119":0.07957,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 111 112 113 114 120 121 122 3.5 3.6"},D:{"11":0.00558,"37":0.00279,"49":0.0014,"50":0.00698,"52":0.0014,"58":0.0014,"60":0.1033,"69":0.00279,"77":0.0014,"79":0.00419,"80":0.02652,"86":0.00279,"87":0.00698,"93":0.00279,"94":0.00698,"95":0.0014,"98":0.0014,"105":0.0014,"107":0.02932,"108":0.00419,"109":0.11866,"111":0.12006,"112":0.0014,"114":0.02932,"115":0.06282,"116":0.08795,"117":0.68404,"118":0.70777,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 51 53 54 55 56 57 59 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 78 81 83 84 85 88 89 90 91 92 96 97 99 100 101 102 103 104 106 110 113 119 120 121 122"},F:{"79":0.00977,"90":0.00698,"94":0.00279,"95":0.00698,"97":0.00279,"102":0.06561,"103":0.00977,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 92 93 96 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0349,"17":0.00698,"18":0.05305,"84":0.00977,"86":0.00279,"89":0.00279,"90":0.00279,"92":0.00279,"100":0.0014,"105":0.0014,"107":0.0014,"109":0.0684,"112":0.00838,"113":0.0014,"114":0.00558,"115":0.00558,"116":0.01536,"117":0.28618,"118":0.22476,_:"13 14 15 16 79 80 81 83 85 87 88 91 93 94 95 96 97 98 99 101 102 103 104 106 108 110 111 119"},E:{"11":0.1061,"14":0.04607,_:"0 4 5 6 7 8 9 10 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.1 17.2","5.1":0.00419,"14.1":0.0014,"15.6":0.0014,"16.6":0.0014,"17.0":0.00279},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00032,"5.0-5.1":0.00032,"6.0-6.1":0.00096,"7.0-7.1":0.00224,"8.1-8.4":0.00032,"9.0-9.2":0.00224,"9.3":0.00768,"10.0-10.2":0.00032,"10.3":0.0112,"11.0-11.2":0.01024,"11.3-11.4":0.00352,"12.0-12.1":0.00288,"12.2-12.5":0.05089,"13.0-13.1":0.0016,"13.2":0.00864,"13.3":0.0032,"13.4-13.7":0.01024,"14.0-14.4":0.02817,"14.5-14.8":0.04545,"15.0-15.1":0.01792,"15.2-15.3":0.02048,"15.4":0.02272,"15.5":0.03233,"15.6-15.7":0.22373,"16.0":0.08258,"16.1":0.15811,"16.2":0.07714,"16.3":0.14307,"16.4":0.03073,"16.5":0.08194,"16.6-16.7":1.53473,"17.0":0.54668,"17.1":0.03297,"17.2":0.00096},P:{"4":0.07836,"20":0.03918,"21":0.03918,"22":0.10775,"23":0.0098,"5.0-5.4":0.04898,"6.2-6.4":0.0098,"7.2-7.4":0.05877,"8.2":0.05877,"9.2":0.02939,_:"10.1 12.0 14.0 17.0","11.1-11.2":0.0098,"13.0":0.0098,"15.0":0.0098,"16.0":0.0098,"18.0":0.01959,"19.0":0.09795},I:{"0":0.29104,"3":0,"4":0.00006,"2.1":0,"2.2":0.00009,"2.3":0,"4.1":0.00006,"4.2-4.3":0.0002,"4.4":0,"4.4.3-4.4.4":0.00088},A:{"11":0.01815,_:"6 7 8 9 10 5.5"},K:{"0":2.0287,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.53345,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.0086},Q:{_:"13.1"},O:{"0":0.07744},H:{"0":8.95},L:{"0":79.54791}};
      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 c338ea177ff208..c8cf05d4eef554 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:{"114":0.0159,"115":0.31276,"116":0.04241,"117":1.16622,"118":0.12192,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 119 120 3.5 3.6"},D:{"11":0.03181,"68":0.0053,"69":0.0159,"73":0.05301,"76":0.0053,"79":0.0212,"81":0.0053,"83":0.0106,"84":0.0053,"86":0.02651,"87":0.04241,"89":0.0106,"91":0.02651,"92":0.0053,"93":0.04241,"95":0.02651,"98":0.0159,"101":0.0053,"102":0.0106,"103":0.02651,"104":0.04771,"106":0.0106,"108":0.0106,"109":1.49488,"110":0.0159,"112":0.04771,"113":0.0159,"114":0.12722,"115":0.18023,"116":17.85907,"117":6.38771,"118":0.0053,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 72 74 75 77 78 80 85 88 90 94 96 97 99 100 105 107 111 119 120"},F:{"28":0.0106,"42":0.0106,"79":0.0212,"85":0.0053,"90":0.0212,"95":0.11662,"101":0.5036,"102":0.49829,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 91 92 93 94 96 97 98 99 100 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0053,"14":0.0053,"18":0.0159,"90":0.0106,"92":0.0106,"109":0.06891,"111":0.0106,"112":0.0159,"114":0.03711,"115":0.14313,"116":7.18816,"117":4.38393,_:"13 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 113"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.3 16.4 16.5 17.0 17.1","13.1":0.19614,"15.6":0.04771,"16.2":0.0159,"16.6":0.04241},G:{"8":0.00162,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00081,"6.0-6.1":0,"7.0-7.1":0.01461,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01624,"10.0-10.2":0,"10.3":0.12827,"11.0-11.2":0.00162,"11.3-11.4":0,"12.0-12.1":0.03978,"12.2-12.5":1.75192,"13.0-13.1":0.00325,"13.2":0.00162,"13.3":0.01055,"13.4-13.7":0.02679,"14.0-14.4":0.0893,"14.5-14.8":0.21838,"15.0-15.1":0.19971,"15.2-15.3":0.0755,"15.4":0.04059,"15.5":0.17454,"15.6-15.7":2.84383,"16.0":0.06008,"16.1":0.09174,"16.2":0.07225,"16.3":0.29388,"16.4":0.08605,"16.5":0.39698,"16.6":1.08135,"17.0":0.30362,"17.1":0.00568},P:{"4":0.1781,"20":0.07204,"21":0.02544,"22":0.19083,"5.0-5.4":0.02058,"6.2-6.4":0,"7.2-7.4":0.12722,"8.2":0,"9.2":0.04117,"10.1":0,"11.1-11.2":0.06175,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.02058,"17.0":0.01029,"18.0":0.03088,"19.0":0.03088},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00048,"4.2-4.3":0.00208,"4.4":0,"4.4.3-4.4.4":0.01624},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{"2.5":0.16916,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.46325},R:{_:"0"},M:{"0":0.0235},Q:{"13.1":0},O:{"0":0.12687},H:{"0":0.52495}};
      +module.exports={C:{"115":0.37149,"117":0.0391,"118":0.76742,"119":0.16619,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"11":0.01466,"37":0.00489,"38":0.01466,"39":0.01466,"42":0.00489,"46":0.00489,"64":0.00489,"66":0.00489,"69":0.00978,"71":0.00978,"73":0.12709,"76":0.00489,"79":0.02444,"81":0.00489,"83":0.00978,"84":0.00489,"86":0.0391,"87":0.05866,"89":0.00978,"91":0.00978,"93":0.01955,"95":0.02933,"98":0.03422,"102":0.00978,"103":0.06354,"104":0.05377,"106":0.00489,"107":0.02444,"108":0.01466,"109":0.91406,"110":0.01466,"112":0.00978,"113":0.00489,"114":0.01466,"115":0.03422,"116":0.1613,"117":9.14056,"118":14.46359,"119":0.02444,"120":0.01955,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 67 68 70 72 74 75 77 78 80 85 88 90 92 94 96 97 99 100 101 105 111 121 122"},F:{"42":0.00489,"79":0.00978,"85":0.00489,"95":0.10754,"99":0.00489,"101":0.00489,"102":0.49369,"103":0.26884,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00489,"18":0.00978,"84":0.00489,"89":0.00489,"92":0.01955,"108":0.01466,"109":0.11731,"111":0.04399,"112":0.01466,"113":0.00489,"114":0.00489,"115":0.01955,"116":0.02933,"117":6.05623,"118":5.19594,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.4 17.1 17.2","13.1":0.06843,"15.6":0.01466,"16.2":0.00489,"16.3":0.00489,"16.5":0.00489,"16.6":0.01955,"17.0":0.00489},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00085,"5.0-5.1":0.00085,"6.0-6.1":0.00254,"7.0-7.1":0.00592,"8.1-8.4":0.00085,"9.0-9.2":0.00592,"9.3":0.02031,"10.0-10.2":0.00085,"10.3":0.02962,"11.0-11.2":0.02708,"11.3-11.4":0.00931,"12.0-12.1":0.00762,"12.2-12.5":0.13457,"13.0-13.1":0.00423,"13.2":0.02285,"13.3":0.00846,"13.4-13.7":0.02708,"14.0-14.4":0.07448,"14.5-14.8":0.12019,"15.0-15.1":0.0474,"15.2-15.3":0.05417,"15.4":0.06009,"15.5":0.08548,"15.6-15.7":0.59162,"16.0":0.21837,"16.1":0.41811,"16.2":0.20398,"16.3":0.37833,"16.4":0.08125,"16.5":0.21667,"16.6-16.7":4.0584,"17.0":1.44562,"17.1":0.08718,"17.2":0.00254},P:{"4":0.17718,"20":0.01042,"21":0.02084,"22":0.17718,"23":0.02084,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","6.2-6.4":0.02084,"7.2-7.4":0.0938,"19.0":0.01042},I:{"0":0.01525,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"11":0.00489,_:"6 7 8 9 10 5.5"},K:{"0":0.32421,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.138,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.02044},Q:{"13.1":0.02044},O:{"0":0.10222},H:{"0":0.33},L:{"0":49.98474}};
      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 504e64c76ac43a..788d90bef91d7b 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CH.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CH.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00613,"49":0,"50":0,"51":0,"52":0.03066,"53":0,"54":0,"55":0.00613,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00613,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00613,"76":0,"77":0,"78":0.04906,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00613,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00613,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01226,"99":0.00613,"100":0,"101":0,"102":0.19622,"103":0.00613,"104":0,"105":0.00613,"106":0.00613,"107":0.01226,"108":0.01226,"109":0.0184,"110":0.01226,"111":0.00613,"112":0.00613,"113":0.11038,"114":0.02453,"115":0.42924,"116":0.19009,"117":3.13958,"118":0.3066,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.00613,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00613,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0184,"50":0,"51":0.00613,"52":0.19622,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.04906,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00613,"77":0,"78":0.00613,"79":0.04292,"80":0.00613,"81":0.01226,"83":0,"84":0.01226,"85":0.0184,"86":0.01226,"87":0.03066,"88":0,"89":0.01226,"90":0.00613,"91":0.01226,"92":0.00613,"93":0.00613,"94":0,"95":0.00613,"96":0.00613,"97":0.00613,"98":0.00613,"99":0.01226,"100":0.01226,"101":0.02453,"102":0.0184,"103":0.09811,"104":0.02453,"105":0.01226,"106":0.01226,"107":0.0184,"108":0.03679,"109":0.71744,"110":0.03066,"111":0.02453,"112":0.05519,"113":0.06745,"114":0.3066,"115":0.85235,"116":12.28853,"117":2.67355,"118":0.00613,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00613,"73":0,"74":0,"75":0,"76":0,"77":0.02453,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00613,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0184,"96":0,"97":0,"98":0,"99":0.0184,"100":0.09198,"101":0.33726,"102":0.61933,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00613,"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.00613,"93":0,"94":0,"95":0.00613,"96":0,"97":0.00613,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00613,"106":0.00613,"107":0.01226,"108":0.01226,"109":0.12877,"110":0.04906,"111":0.00613,"112":0.03066,"113":0.02453,"114":0.11651,"115":0.37405,"116":4.66032,"117":2.69195},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00613,"10":0,"11":0,"12":0,"13":0.01226,"14":0.05519,"15":0.01226,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00613,"12.1":0.07358,"13.1":0.14717,"14.1":0.18396,"15.1":0.02453,"15.2-15.3":0.04292,"15.4":0.04292,"15.5":0.07358,"15.6":0.48443,"16.0":0.06745,"16.1":0.11651,"16.2":0.1349,"16.3":0.325,"16.4":0.1349,"16.5":0.41698,"16.6":2.37922,"17.0":0.12877,"17.1":0},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,"7.0-7.1":0.00682,"8.1-8.4":0.00682,"9.0-9.2":0.57314,"9.3":0.11599,"10.0-10.2":0.00341,"10.3":0.0887,"11.0-11.2":0.0307,"11.3-11.4":0.06482,"12.0-12.1":0.01706,"12.2-12.5":0.40939,"13.0-13.1":0.00341,"13.2":0,"13.3":0.08188,"13.4-13.7":0.05458,"14.0-14.4":0.16034,"14.5-14.8":0.28657,"15.0-15.1":0.10917,"15.2-15.3":0.19446,"15.4":0.15693,"15.5":0.33433,"15.6-15.7":1.84565,"16.0":1.1531,"16.1":1.78424,"16.2":0.91429,"16.3":1.6853,"16.4":0.47762,"16.5":1.16334,"16.6":19.74263,"17.0":2.26868,"17.1":0.00682},P:{"4":0.062,"20":0.062,"21":0.16534,"22":3.07945,"5.0-5.4":0.02067,"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.01033,"13.0":0.01033,"14.0":0,"15.0":0.01033,"16.0":0.01033,"17.0":0.01033,"18.0":0.01033,"19.0":0.031},I:{"0":0,"3":0,"4":0.01504,"2.1":0.00215,"2.2":0.0086,"2.3":0.01289,"4.1":0.01934,"4.2-4.3":0.01719,"4.4":0,"4.4.3-4.4.4":0.07092},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01226,"9":0,"10":0,"11":0.07358,"5.5":0},S:{"2.5":0.00387,_:"3.0-3.1"},J:{"7":0,"10":0.00387},N:{"10":0,"11":0},L:{"0":21.89036},R:{_:"0"},M:{"0":0.6885},Q:{"13.1":0},O:{"0":0.04255},H:{"0":0.22704}};
      +module.exports={C:{"48":0.0236,"52":0.04129,"55":0.0118,"71":0.0059,"72":0.0059,"75":0.0118,"78":0.08259,"81":0.0059,"83":0.0059,"84":0.0059,"89":0.0059,"91":0.0118,"92":0.0059,"98":0.0118,"99":0.0118,"100":0.0059,"102":0.10618,"105":0.0059,"106":0.0059,"107":0.0059,"108":0.03539,"109":0.0177,"110":0.0059,"111":0.0059,"112":0.0059,"113":0.07079,"114":0.0236,"115":0.74917,"116":0.04129,"117":0.18877,"118":4.1411,"119":0.87895,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 73 74 76 77 79 80 82 85 86 87 88 90 93 94 95 96 97 101 103 104 120 121 122 3.5 3.6"},D:{"38":0.0059,"49":0.0295,"51":0.0059,"52":0.33624,"65":0.0059,"66":0.07669,"71":0.0059,"72":0.0059,"75":0.0059,"76":0.0059,"78":0.0059,"79":0.07079,"80":0.0118,"81":0.0177,"83":0.0295,"84":0.0236,"85":0.0236,"86":0.0295,"87":0.05899,"88":0.0059,"89":0.0177,"90":0.0118,"91":0.0059,"92":0.0059,"93":0.0059,"94":0.0118,"95":0.0059,"96":0.0118,"97":0.0059,"98":0.0118,"99":0.0177,"100":0.04129,"101":0.05309,"102":0.03539,"103":0.20057,"104":0.04129,"105":0.0177,"106":0.0236,"107":0.0295,"108":0.06489,"109":0.95564,"110":0.0295,"111":0.04129,"112":0.07079,"113":0.06489,"114":0.27725,"115":0.51321,"116":1.41576,"117":10.22887,"118":13.93934,"119":0.0177,"120":0.0059,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 53 54 55 56 57 58 59 60 61 62 63 64 67 68 69 70 73 74 77 121 122"},F:{"46":0.0059,"84":0.0118,"89":0.0059,"95":0.0236,"96":0.0059,"99":0.0059,"100":0.0059,"101":0.0118,"102":1.61043,"103":0.32445,_:"9 11 12 15 16 17 18 19 20 21 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 85 86 87 88 90 91 92 93 94 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0059,"85":0.0059,"92":0.0177,"96":0.0177,"97":0.0059,"99":0.0059,"100":0.0059,"106":0.0059,"107":0.0059,"108":0.0236,"109":0.22416,"110":0.0236,"111":0.0177,"112":0.0295,"113":0.0295,"114":0.07079,"115":0.11798,"116":0.34214,"117":4.67791,"118":7.43274,"119":0.0177,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 98 101 102 103 104 105"},E:{"9":0.0059,"13":0.0177,"14":0.09438,"15":0.0236,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.0059,"11.1":0.0059,"12.1":0.10028,"13.1":0.21826,"14.1":0.27135,"15.1":0.05309,"15.2-15.3":0.08849,"15.4":0.08259,"15.5":0.10618,"15.6":0.81406,"16.0":0.10028,"16.1":0.19467,"16.2":0.16517,"16.3":0.40703,"16.4":0.19467,"16.5":0.48372,"16.6":2.58376,"17.0":1.34497,"17.1":0.09438,"17.2":0.0059},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00215,"5.0-5.1":0.00215,"6.0-6.1":0.00646,"7.0-7.1":0.01508,"8.1-8.4":0.00215,"9.0-9.2":0.01508,"9.3":0.05169,"10.0-10.2":0.00215,"10.3":0.07538,"11.0-11.2":0.06892,"11.3-11.4":0.02369,"12.0-12.1":0.01938,"12.2-12.5":0.34246,"13.0-13.1":0.01077,"13.2":0.05815,"13.3":0.02154,"13.4-13.7":0.06892,"14.0-14.4":0.18954,"14.5-14.8":0.30585,"15.0-15.1":0.12062,"15.2-15.3":0.13785,"15.4":0.15292,"15.5":0.21754,"15.6-15.7":1.50554,"16.0":0.55569,"16.1":1.064,"16.2":0.51908,"16.3":0.96277,"16.4":0.20677,"16.5":0.55138,"16.6-16.7":10.32769,"17.0":3.67877,"17.1":0.22185,"17.2":0.00646},P:{"4":0.06396,"20":0.0533,"21":0.11726,"22":2.61174,"23":0.60763,"5.0-5.4":0.02132,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 14.0","11.1-11.2":0.01066,"13.0":0.01066,"15.0":0.01066,"16.0":0.01066,"17.0":0.03198,"18.0":0.01066,"19.0":0.03198},I:{"0":0.0408,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"8":0.00618,"11":0.1236,_:"6 7 9 10 5.5"},K:{"0":0.25016,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0041,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.65206},Q:{_:"13.1"},O:{"0":0.04101},H:{"0":0},L:{"0":15.0635}};
      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 e3586d5efdc6e0..eb43d78d65aa89 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"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,"69":0,"70":0,"71":0,"72":0.00252,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00252,"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.00252,"101":0,"102":0.00504,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00504,"109":0.00252,"110":0.00252,"111":0.00252,"112":0.00252,"113":0.00252,"114":0.00252,"115":0.06053,"116":0.01765,"117":0.23455,"118":0.02018,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00757,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01009,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00252,"65":0,"66":0,"67":0.00252,"68":0,"69":0,"70":0.00252,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00504,"78":0,"79":0.01261,"80":0.00252,"81":0.01261,"83":0.00504,"84":0,"85":0.00252,"86":0,"87":0.05801,"88":0.00504,"89":0.01009,"90":0.00252,"91":0.00757,"92":0.00252,"93":0.00252,"94":0.00757,"95":0.00757,"96":0.00252,"97":0.00504,"98":0.00504,"99":0.00504,"100":0.00504,"101":0.00504,"102":0.01009,"103":0.01261,"104":0.01513,"105":0.00504,"106":0.01009,"107":0.01261,"108":0.01765,"109":0.60276,"110":0.00252,"111":0.00504,"112":0.00504,"113":0.01009,"114":0.03026,"115":0.07566,"116":1.9722,"117":0.54475,"118":0,"119":0.00252,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00252,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01765,"62":0,"63":0.00252,"64":0,"65":0.00252,"66":0.00504,"67":0.00252,"68":0.00252,"69":0.00504,"70":0.00504,"71":0.05548,"72":0.03531,"73":0.00504,"74":0.00757,"75":0,"76":0.00252,"77":0.00504,"78":0.00252,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00504,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01261,"96":0,"97":0,"98":0,"99":0,"100":0.00504,"101":0.06809,"102":0.06557,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00252,"16":0,"17":0,"18":0.00504,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00252,"86":0,"87":0.00252,"88":0,"89":0,"90":0.00252,"91":0,"92":0.01009,"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.00504,"106":0,"107":0.00252,"108":0,"109":0.00504,"110":0,"111":0,"112":0.00504,"113":0.00252,"114":0.00504,"115":0.01513,"116":0.33543,"117":0.23707},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00504,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0.00252,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00757,"14.1":0.01009,"15.1":0,"15.2-15.3":0,"15.4":0.00252,"15.5":0.00252,"15.6":0.01513,"16.0":0,"16.1":0.00252,"16.2":0.00252,"16.3":0.00504,"16.4":0.00252,"16.5":0.00757,"16.6":0.02018,"17.0":0.00504,"17.1":0},G:{"8":0.0086,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00215,"6.0-6.1":0.0086,"7.0-7.1":0.03654,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03439,"10.0-10.2":0,"10.3":0.09457,"11.0-11.2":0.06663,"11.3-11.4":0.01719,"12.0-12.1":0.25791,"12.2-12.5":2.95738,"13.0-13.1":0.03224,"13.2":0.00645,"13.3":0.04299,"13.4-13.7":0.18484,"14.0-14.4":0.89194,"14.5-14.8":0.88764,"15.0-15.1":0.56096,"15.2-15.3":0.55236,"15.4":0.16334,"15.5":0.25791,"15.6-15.7":3.3507,"16.0":0.79952,"16.1":0.85326,"16.2":0.52442,"16.3":0.92633,"16.4":0.5803,"16.5":1.31105,"16.6":4.51774,"17.0":1.38842,"17.1":0},P:{"4":0.06145,"20":0.04097,"21":0.15362,"22":0.74764,"5.0-5.4":0.01024,"6.2-6.4":0,"7.2-7.4":0.20483,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.02048,"12.0":0,"13.0":0,"14.0":0.02048,"15.0":0,"16.0":0.05121,"17.0":0.01024,"18.0":0.03072,"19.0":0.05121},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0013,"4.4":0,"4.4.3-4.4.4":0.05644},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00252,"5.5":0},S:{"2.5":0.01496,_:"3.0-3.1"},J:{"7":0,"10":0.05982},N:{"10":0,"11":0},L:{"0":69.48656},R:{_:"0"},M:{"0":0.10469},Q:{"13.1":0.00748},O:{"0":0.12713},H:{"0":1.3947}};
      +module.exports={C:{"43":0.00227,"52":0.00682,"56":0.00227,"59":0.00227,"60":0.00227,"67":0.00227,"68":0.00454,"70":0.00227,"72":0.00909,"76":0.00227,"78":0.00454,"79":0.00227,"88":0.00227,"89":0.00454,"97":0.00227,"99":0.00227,"100":0.00909,"102":0.00227,"106":0.00227,"108":0.00227,"111":0.00227,"113":0.00909,"114":0.00227,"115":0.18176,"116":0.00682,"117":0.02954,"118":0.73158,"119":0.13405,"120":0.00227,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 57 58 61 62 63 64 65 66 69 71 73 74 75 77 80 81 82 83 84 85 86 87 90 91 92 93 94 95 96 98 101 103 104 105 107 109 110 112 121 122 3.5 3.6"},D:{"11":0.00454,"38":0.00227,"41":0.00682,"43":0.00227,"46":0.00227,"47":0.00909,"49":0.01136,"50":0.00227,"55":0.00227,"56":0.00454,"58":0.00227,"63":0.00454,"64":0.00454,"65":0.00227,"66":0.00227,"67":0.00454,"68":0.00227,"69":0.00227,"70":0.01136,"71":0.00227,"72":0.00227,"73":0.00227,"74":0.00227,"75":0.01136,"76":0.00227,"77":0.00682,"78":0.00227,"79":0.04317,"80":0.03181,"81":0.00682,"83":0.0159,"84":0.00227,"85":0.00682,"86":0.00909,"87":0.18403,"88":0.02045,"89":0.01363,"90":0.01363,"91":0.01363,"92":0.00682,"93":0.01136,"94":0.0159,"95":0.0159,"96":0.00682,"97":0.00682,"98":0.03181,"99":0.01136,"100":0.12496,"101":0.00682,"102":0.05907,"103":0.06589,"104":0.04317,"105":0.03862,"106":0.02499,"107":0.0568,"108":0.04317,"109":2.44694,"110":0.0159,"111":0.02272,"112":0.01818,"113":0.0159,"114":0.06362,"115":0.08861,"116":0.33853,"117":4.46902,"118":4.91206,"119":0.01363,"120":0.00227,_:"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 48 51 52 53 54 57 59 60 61 62 121 122"},F:{"46":0.00227,"74":0.00454,"78":0.00227,"79":0.00454,"95":0.05453,"99":0.00454,"101":0.00227,"102":0.26355,"103":0.24083,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00227,"14":0.00454,"15":0.00227,"16":0.00227,"17":0.00227,"18":0.0159,"84":0.00227,"85":0.00227,"89":0.00227,"90":0.00454,"92":0.01818,"100":0.00227,"105":0.00227,"107":0.00227,"108":0.00227,"109":0.03181,"111":0.00227,"112":0.00454,"113":0.00454,"114":0.01136,"115":0.0159,"116":0.02045,"117":0.87472,"118":1.01786,"119":0.00454,_:"13 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 106 110"},E:{"14":0.00454,"15":0.00227,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 15.1 17.2","5.1":0.00227,"11.1":0.00227,"12.1":0.00227,"13.1":0.03181,"14.1":0.01818,"15.2-15.3":0.00227,"15.4":0.00227,"15.5":0.00454,"15.6":0.04771,"16.0":0.00227,"16.1":0.00454,"16.2":0.00227,"16.3":0.01818,"16.4":0.02045,"16.5":0.01363,"16.6":0.13632,"17.0":0.08179,"17.1":0.01136},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00171,"5.0-5.1":0.00171,"6.0-6.1":0.00514,"7.0-7.1":0.01198,"8.1-8.4":0.00171,"9.0-9.2":0.01198,"9.3":0.04108,"10.0-10.2":0.00171,"10.3":0.05991,"11.0-11.2":0.05478,"11.3-11.4":0.01883,"12.0-12.1":0.01541,"12.2-12.5":0.27217,"13.0-13.1":0.00856,"13.2":0.04622,"13.3":0.01712,"13.4-13.7":0.05478,"14.0-14.4":0.15063,"14.5-14.8":0.24307,"15.0-15.1":0.09586,"15.2-15.3":0.10955,"15.4":0.12153,"15.5":0.17289,"15.6-15.7":1.19651,"16.0":0.44163,"16.1":0.84561,"16.2":0.41253,"16.3":0.76515,"16.4":0.16433,"16.5":0.43821,"16.6-16.7":8.20785,"17.0":2.92367,"17.1":0.17631,"17.2":0.00514},P:{"4":0.05078,"20":0.03047,"21":0.1422,"22":0.61956,"23":0.06094,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 13.0","7.2-7.4":0.25392,"9.2":0.03047,"11.1-11.2":0.02031,"14.0":0.05078,"15.0":0.01016,"16.0":0.06094,"17.0":0.01016,"18.0":0.02031,"19.0":0.06094},I:{"0":0.06151,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00019},A:{"11":0.00682,_:"6 7 8 9 10 5.5"},K:{"0":0.8183,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.03091,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.10046},Q:{"13.1":0.02318},O:{"0":0.10819},H:{"0":0.48},L:{"0":61.73877}};
      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 948d4b8610ad49..aad92f92f1360d 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CK.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CK.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00742,"108":0,"109":0,"110":0,"111":0,"112":0.00742,"113":0.00371,"114":0.00742,"115":0.06304,"116":0.01483,"117":0.3226,"118":0.02225,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.08528,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00371,"50":0.00371,"51":0,"52":0,"53":0.05562,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"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.00742,"84":0,"85":0.00371,"86":0,"87":0.02596,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00371,"95":0,"96":0,"97":0,"98":0.00742,"99":0,"100":0,"101":0,"102":0.00371,"103":0.01483,"104":0,"105":0.01112,"106":0.0482,"107":0,"108":0,"109":0.22248,"110":0.00371,"111":0.08528,"112":0.01112,"113":0,"114":0.16315,"115":0.0927,"116":8.762,"117":1.46095,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01112,"73":0,"74":0,"75":0,"76":0,"77":0.00371,"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.00371,"102":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01112,"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.00371,"102":0,"103":0,"104":0.00371,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.02225,"111":0,"112":0,"113":0,"114":0.00371,"115":0.02225,"116":0.52283,"117":0.28181},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00371,"14":0.02596,"15":0.00742,_:"0","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.00742,"14.1":0.05933,"15.1":0,"15.2-15.3":0.00371,"15.4":0.02596,"15.5":0.01854,"15.6":0.09641,"16.0":0.00371,"16.1":0.0482,"16.2":0.0482,"16.3":0.03708,"16.4":0.00742,"16.5":0.10382,"16.6":0.36338,"17.0":0.00371,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.28932,"13.0-13.1":0.02019,"13.2":0,"13.3":0,"13.4-13.7":0.02019,"14.0-14.4":0.1884,"14.5-14.8":0.64929,"15.0-15.1":0.23213,"15.2-15.3":0.4037,"15.4":0.09756,"15.5":0.33978,"15.6-15.7":1.68883,"16.0":0.66275,"16.1":2.60053,"16.2":1.35914,"16.3":2.35494,"16.4":1.06982,"16.5":1.89405,"16.6":18.76218,"17.0":0.82423,"17.1":0},P:{"4":0,"20":0.1015,"21":0.56837,"22":3.82637,"5.0-5.4":0,"6.2-6.4":0.05075,"7.2-7.4":0.0406,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.17254,"12.0":0,"13.0":0.01015,"14.0":0.0406,"15.0":0,"16.0":0.0812,"17.0":0.0203,"18.0":0.21314,"19.0":0.30449},I:{"0":0,"3":0,"4":0,"2.1":0,"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.01854,"11":0.03708,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":44.9559},R:{_:"0"},M:{"0":0.37123},Q:{"13.1":0},O:{"0":0.06921},H:{"0":0.08935}};
      +module.exports={C:{"72":0.00667,"78":0.01333,"107":0.02666,"113":0.05333,"114":0.02333,"115":0.08999,"117":0.00667,"118":0.35996,"119":0.10999,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 112 116 120 121 122 3.5 3.6"},D:{"41":1.06323,"50":0.00667,"53":0.05333,"80":0.02,"83":0.01333,"87":0.04666,"94":0.01667,"98":0.00333,"103":0.01333,"104":0.00667,"106":0.12999,"109":0.50662,"111":0.00333,"112":0.41996,"114":0.10999,"115":0.09666,"116":0.52661,"117":13.30534,"118":12.17545,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 84 85 86 88 89 90 91 92 93 95 96 97 99 100 101 102 105 107 108 110 113 119 120 121 122"},F:{"99":0.00333,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"110":0.00667,"114":0.04333,"115":0.01667,"116":0.02,"117":0.82658,"118":0.74659,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 113 119"},E:{"11":0.00333,"13":0.01,"14":0.05666,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 17.2","12.1":0.01,"13.1":0.01,"14.1":0.07333,"15.1":0.00333,"15.4":0.00667,"15.5":0.03333,"15.6":0.09332,"16.0":0.15665,"16.1":0.04,"16.2":0.07333,"16.3":0.04,"16.4":0.09999,"16.5":0.05999,"16.6":0.9999,"17.0":0.20331,"17.1":0.00333},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00246,"5.0-5.1":0.00246,"6.0-6.1":0.00739,"7.0-7.1":0.01725,"8.1-8.4":0.00246,"9.0-9.2":0.01725,"9.3":0.05914,"10.0-10.2":0.00246,"10.3":0.08624,"11.0-11.2":0.07885,"11.3-11.4":0.02711,"12.0-12.1":0.02218,"12.2-12.5":0.3918,"13.0-13.1":0.01232,"13.2":0.06653,"13.3":0.02464,"13.4-13.7":0.07885,"14.0-14.4":0.21684,"14.5-14.8":0.34991,"15.0-15.1":0.13799,"15.2-15.3":0.1577,"15.4":0.17495,"15.5":0.24888,"15.6-15.7":1.72242,"16.0":0.63574,"16.1":1.21728,"16.2":0.59385,"16.3":1.10146,"16.4":0.23656,"16.5":0.63082,"16.6-16.7":11.81547,"17.0":4.20872,"17.1":0.2538,"17.2":0.00739},P:{"20":0.14366,"21":0.3489,"22":4.56647,"23":2.81171,_:"4 8.2 9.2 10.1 12.0 15.0 17.0","5.0-5.4":0.01026,"6.2-6.4":0.02052,"7.2-7.4":0.1334,"11.1-11.2":0.06157,"13.0":0.01026,"14.0":0.01026,"16.0":0.04105,"18.0":0.24628,"19.0":0.36942},I:{"0":0.00663,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"10":0.03333,"11":0.03,_:"6 7 8 9 5.5"},K:{"0":0.17334,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.36002},Q:{_:"13.1"},O:{"0":0.03334},H:{"0":0},L:{"0":32.97493}};
      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 4fba3899adbb27..f65e580bd423df 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00455,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00455,"69":0.00455,"70":0.00455,"71":0,"72":0,"73":0.00455,"74":0.00455,"75":0,"76":0.00455,"77":0,"78":0.00455,"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.0091,"103":0,"104":0.01364,"105":0,"106":0,"107":0,"108":0.00455,"109":0.00455,"110":0.00455,"111":0.00455,"112":0,"113":0.00455,"114":0.0091,"115":0.08641,"116":0.03184,"117":0.75952,"118":0.05003,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0091,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00455,"48":0.00455,"49":0.01819,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00455,"66":0,"67":0,"68":0.00455,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00455,"75":0.0091,"76":0.00455,"77":0,"78":0,"79":0.05912,"80":0,"81":0.00455,"83":0.0091,"84":0.0091,"85":0.00455,"86":0.01364,"87":0.01364,"88":0.01364,"89":0.00455,"90":0.00455,"91":0.02729,"92":0.0091,"93":0.00455,"94":0.00455,"95":0.00455,"96":0.0091,"97":0.00455,"98":0.00455,"99":0.01819,"100":0.00455,"101":0.00455,"102":0.0091,"103":0.04093,"104":0.00455,"105":0.01364,"106":0.02729,"107":0.01364,"108":0.03184,"109":0.83228,"110":0.01819,"111":0.03184,"112":0.02729,"113":0.04093,"114":0.11825,"115":0.2365,"116":9.5508,"117":2.7288,"118":0.00455,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00455,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00455,"73":0,"74":0,"75":0,"76":0,"77":0.01819,"78":0.00455,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00455,"85":0.00455,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00455,"95":0.01819,"96":0,"97":0,"98":0,"99":0.0091,"100":0.42751,"101":0.63672,"102":1.13245,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00455,"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.0091,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00455,"108":0.00455,"109":0.01364,"110":0.00455,"111":0.0091,"112":0.00455,"113":0.00455,"114":0.02274,"115":0.04548,"116":0.9187,"117":0.7868},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00455,"10":0,"11":0,"12":0,"13":0,"14":0.01364,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0091,"10.1":0,"11.1":0,"12.1":0.00455,"13.1":0.01819,"14.1":0.03638,"15.1":0.00455,"15.2-15.3":0.0091,"15.4":0.00455,"15.5":0.01364,"15.6":0.05912,"16.0":0.00455,"16.1":0.01819,"16.2":0.01364,"16.3":0.04548,"16.4":0.02274,"16.5":0.05912,"16.6":0.28198,"17.0":0.02729,"17.1":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.00303,"8.1-8.4":0.00607,"9.0-9.2":0,"9.3":0.04397,"10.0-10.2":0,"10.3":0.01516,"11.0-11.2":0.02123,"11.3-11.4":0.00303,"12.0-12.1":0.01061,"12.2-12.5":0.18651,"13.0-13.1":0.01213,"13.2":0,"13.3":0.02881,"13.4-13.7":0.03639,"14.0-14.4":0.09401,"14.5-14.8":0.22139,"15.0-15.1":0.03639,"15.2-15.3":0.08795,"15.4":0.07127,"15.5":0.15315,"15.6-15.7":1.06751,"16.0":0.36999,"16.1":0.71723,"16.2":0.31843,"16.3":0.75969,"16.4":0.13192,"16.5":0.46552,"16.6":8.94493,"17.0":1.22066,"17.1":0.00303},P:{"4":0.13272,"20":0.05105,"21":0.10209,"22":1.59263,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04084,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02042,"12.0":0,"13.0":0.01021,"14.0":0.01021,"15.0":0.01021,"16.0":0.03063,"17.0":0.02042,"18.0":0.02042,"19.0":0.04084},I:{"0":0,"3":0,"4":0.01011,"2.1":0,"2.2":0.00337,"2.3":0.00674,"4.1":0.00674,"4.2-4.3":0.03033,"4.4":0,"4.4.3-4.4.4":0.08089},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01462,"9":0.00487,"10":0.00487,"11":0.04386,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":61.06093},R:{_:"0"},M:{"0":0.19082},Q:{"13.1":0},O:{"0":0.02181},H:{"0":0.21163}};
      +module.exports={C:{"48":0.00471,"52":0.00941,"68":0.00941,"73":0.00471,"78":0.00941,"87":0.00471,"102":0.00471,"103":0.00471,"105":0.00471,"108":0.00471,"109":0.00471,"110":0.00471,"111":0.00471,"113":0.00471,"114":0.01882,"115":0.16,"116":0.01412,"117":0.04235,"118":1.07767,"119":0.24471,"120":0.00471,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 106 107 112 121 122 3.5 3.6"},D:{"38":0.01882,"47":0.00471,"48":0.00941,"49":0.03765,"51":0.00471,"58":0.00471,"63":0.00471,"65":0.00941,"68":0.00941,"70":0.00471,"72":0.00471,"74":0.01882,"76":0.00471,"77":0.00941,"79":0.09883,"80":0.00471,"81":0.00471,"83":0.00471,"85":0.00471,"86":0.00471,"87":0.03294,"88":0.00471,"89":0.00941,"90":0.00471,"91":0.03765,"92":0.00471,"93":0.00471,"94":0.00471,"95":0.00941,"96":0.01412,"97":0.00941,"98":0.00471,"99":0.01882,"100":0.00941,"101":0.00941,"102":0.01882,"103":0.09412,"104":0.00941,"105":0.01882,"106":0.01882,"107":0.03294,"108":0.04706,"109":1.68475,"110":0.02353,"111":0.05177,"112":0.03765,"113":0.06118,"114":0.18353,"115":0.14589,"116":1.19062,"117":14.16035,"118":14.07094,"119":0.01412,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 52 53 54 55 56 57 59 60 61 62 64 66 67 69 71 73 75 78 84 120 121 122"},F:{"28":0.00471,"85":0.00941,"95":0.03765,"99":0.00471,"100":0.00941,"101":0.01412,"102":5.4119,"103":0.40942,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01412,"100":0.00941,"104":0.00471,"107":0.00471,"108":0.00471,"109":0.03294,"110":0.00471,"111":0.03294,"112":0.00471,"113":0.00941,"114":0.01882,"115":0.02824,"116":0.06118,"117":2.07535,"118":1.98593,"119":0.00471,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 105 106"},E:{"9":0.00471,"14":0.01882,"15":0.00471,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.00471,"13.1":0.04235,"14.1":0.07059,"15.1":0.00941,"15.2-15.3":0.01412,"15.4":0.01412,"15.5":0.03294,"15.6":0.12706,"16.0":0.00941,"16.1":0.04706,"16.2":0.02824,"16.3":0.08471,"16.4":0.04235,"16.5":0.10353,"16.6":0.3953,"17.0":0.32942,"17.1":0.01882},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00097,"5.0-5.1":0.00097,"6.0-6.1":0.00292,"7.0-7.1":0.0068,"8.1-8.4":0.00097,"9.0-9.2":0.0068,"9.3":0.02333,"10.0-10.2":0.00097,"10.3":0.03402,"11.0-11.2":0.0311,"11.3-11.4":0.01069,"12.0-12.1":0.00875,"12.2-12.5":0.15454,"13.0-13.1":0.00486,"13.2":0.02624,"13.3":0.00972,"13.4-13.7":0.0311,"14.0-14.4":0.08553,"14.5-14.8":0.13802,"15.0-15.1":0.05443,"15.2-15.3":0.06221,"15.4":0.06901,"15.5":0.09817,"15.6-15.7":0.67941,"16.0":0.25077,"16.1":0.48016,"16.2":0.23425,"16.3":0.43447,"16.4":0.09331,"16.5":0.24883,"16.6-16.7":4.66064,"17.0":1.66014,"17.1":0.10011,"17.2":0.00292},P:{"4":0.0943,"20":0.05239,"21":0.07334,"22":1.38306,"23":0.25147,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.03143,"11.1-11.2":0.01048,"13.0":0.01048,"14.0":0.01048,"15.0":0.01048,"16.0":0.03143,"17.0":0.01048,"18.0":0.01048,"19.0":0.03143},I:{"0":0.0474,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"8":0.01548,"9":0.00516,"10":0.01032,"11":0.12904,_:"6 7 5.5"},K:{"0":0.21705,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.18529},Q:{_:"13.1"},O:{"0":0.02118},H:{"0":0},L:{"0":41.69324}};
      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 74402d0a7001e6..0d9e7b5421eba6 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00662,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00221,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00221,"79":0,"80":0,"81":0.00221,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00442,"89":0.00221,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00221,"96":0,"97":0,"98":0,"99":0.00221,"100":0,"101":0,"102":0.00883,"103":0.00442,"104":0.00221,"105":0,"106":0.0265,"107":0.00221,"108":0.00221,"109":0.00221,"110":0.00221,"111":0.00221,"112":0.00221,"113":0.00662,"114":0.00221,"115":0.10598,"116":0.02208,"117":0.18768,"118":0.0287,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00221,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00662,"57":0,"58":0.00221,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00221,"65":0,"66":0,"67":0,"68":0.00442,"69":0,"70":0.00221,"71":0.00221,"72":0.00221,"73":0,"74":0.00221,"75":0,"76":0.00221,"77":0,"78":0,"79":0.00221,"80":0,"81":0.00221,"83":0,"84":0,"85":0.00883,"86":0.00221,"87":0.00221,"88":0.00221,"89":0.00221,"90":0.00221,"91":0.00221,"92":0,"93":0,"94":0.00221,"95":0.00442,"96":0.00221,"97":0,"98":0,"99":0.00221,"100":0.00221,"101":0,"102":0.00221,"103":0.00883,"104":0,"105":0.00221,"106":0.00662,"107":0.00442,"108":0.00662,"109":0.21859,"110":0.00221,"111":0.00442,"112":0.00442,"113":0.01104,"114":0.02208,"115":0.04858,"116":0.89203,"117":0.21638,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00662,"38":0,"39":0,"40":0,"41":0,"42":0.00221,"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,"55":0,"56":0,"57":0,"58":0.00221,"60":0.01766,"62":0,"63":0.03312,"64":0.00442,"65":0.00662,"66":0.04195,"67":0.01104,"68":0.00662,"69":0.03533,"70":0.02208,"71":0.06182,"72":0.09936,"73":0.0265,"74":0,"75":0,"76":0,"77":0.00221,"78":0.00221,"79":0.00442,"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.00883,"96":0,"97":0,"98":0,"99":0,"100":0.00221,"101":0.05078,"102":0.06403,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00221},B:{"12":0.00221,"13":0.00221,"14":0.00442,"15":0,"16":0,"17":0.00221,"18":0.00442,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00221,"90":0.00221,"91":0,"92":0.00883,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00221,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00221,"108":0,"109":0.00221,"110":0,"111":0,"112":0.00221,"113":0.00221,"114":0.00662,"115":0.01546,"116":0.13469,"117":0.06845},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00221,"11":0,"12":0,"13":0.00221,"14":0.00221,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00221,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00221,"14.1":0.00221,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00442,"16.0":0,"16.1":0.00221,"16.2":0,"16.3":0.00221,"16.4":0,"16.5":0.00221,"16.6":0.00442,"17.0":0,"17.1":0},G:{"8":0.03371,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02107,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01686,"10.0-10.2":0.00421,"10.3":0.23318,"11.0-11.2":0.00421,"11.3-11.4":0.01124,"12.0-12.1":0.2093,"12.2-12.5":2.06916,"13.0-13.1":0.02529,"13.2":0.10114,"13.3":0.09693,"13.4-13.7":0.18823,"14.0-14.4":0.84986,"14.5-14.8":0.59139,"15.0-15.1":0.54925,"15.2-15.3":0.48744,"15.4":0.3273,"15.5":0.57875,"15.6-15.7":2.69286,"16.0":0.4453,"16.1":0.49025,"16.2":0.33854,"16.3":0.76839,"16.4":0.48463,"16.5":0.88919,"16.6":1.28814,"17.0":0.21492,"17.1":0},P:{"4":0.24378,"20":0.0711,"21":0.0711,"22":0.30472,"5.0-5.4":0.0711,"6.2-6.4":0.01016,"7.2-7.4":0.09142,"8.2":0,"9.2":0.09142,"10.1":0,"11.1-11.2":0.03047,"12.0":0,"13.0":0.01016,"14.0":0.02031,"15.0":0,"16.0":0.05079,"17.0":0.01016,"18.0":0.02031,"19.0":0.04063},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00081,"4.2-4.3":0.00377,"4.4":0,"4.4.3-4.4.4":0.04529},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0265,"5.5":0},S:{"2.5":0.17922,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.19139},R:{_:"0"},M:{"0":0.14026},Q:{"13.1":0},O:{"0":0.40518},H:{"0":3.76225}};
      +module.exports={C:{"4":0.00173,"32":0.00173,"34":0.00173,"43":0.00173,"46":0.00173,"47":0.00346,"48":0.00173,"49":0.00173,"50":0.00173,"51":0.00346,"52":0.09688,"56":0.00173,"58":0.00173,"60":0.00173,"61":0.00173,"68":0.00173,"72":0.00692,"78":0.00346,"81":0.01038,"82":0.00519,"84":0.00346,"86":0.00173,"88":0.00865,"99":0.00173,"100":0.00346,"101":0.00173,"102":0.02595,"103":0.01557,"105":0.00173,"106":0.00173,"107":0.00519,"108":0.00519,"109":0.00519,"110":0.00692,"111":0.00173,"112":0.00346,"113":0.01211,"114":0.00865,"115":0.38752,"116":0.00865,"117":0.04844,"118":0.69027,"119":0.13321,"120":0.00173,_:"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 33 35 36 37 38 39 40 41 42 44 45 53 54 55 57 59 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 83 85 87 89 90 91 92 93 94 95 96 97 98 104 121 122 3.5 3.6"},D:{"11":0.00173,"38":0.00346,"41":0.01038,"49":0.00346,"55":0.00173,"56":0.01903,"57":0.00346,"58":0.00519,"61":0.00173,"63":0.00173,"64":0.00346,"65":0.00346,"67":0.00346,"68":0.01384,"69":0.00173,"70":0.00173,"72":0.00346,"73":0.00173,"74":0.00692,"75":0.00519,"76":0.00346,"77":0.00173,"79":0.01038,"80":0.00692,"81":0.00346,"83":0.00173,"84":0.00173,"85":0.02768,"86":0.00346,"87":0.00692,"88":0.00692,"89":0.00346,"90":0.00346,"91":0.00346,"92":0.00519,"93":0.00346,"94":0.00865,"95":0.0173,"96":0.00519,"97":0.00173,"98":0.00173,"99":0.00173,"100":0.01038,"101":0.00519,"102":0.00865,"103":0.02422,"104":0.00173,"105":0.00865,"106":0.01903,"107":0.00519,"108":0.01211,"109":0.82002,"110":0.00692,"111":0.0173,"112":0.01038,"113":0.02249,"114":0.04844,"115":0.05709,"116":0.21625,"117":2.18499,"118":1.92203,"119":0.00173,"120":0.00173,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 53 54 59 60 62 66 71 78 121 122"},F:{"44":0.00173,"46":0.00173,"66":0.00173,"79":0.02076,"84":0.00692,"85":0.00173,"90":0.00173,"95":0.11072,"99":0.00346,"101":0.00519,"102":0.19722,"103":0.13667,_:"9 11 12 15 16 17 18 19 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 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 86 87 88 89 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00865,"13":0.00346,"14":0.00865,"15":0.00346,"16":0.00346,"17":0.00519,"18":0.02076,"83":0.00173,"84":0.00692,"85":0.00173,"86":0.00173,"89":0.00519,"90":0.00692,"92":0.02941,"100":0.00519,"105":0.00173,"107":0.00173,"108":0.00173,"109":0.01038,"110":0.00692,"111":0.00173,"112":0.00865,"113":0.00346,"114":0.0173,"115":0.01903,"116":0.02768,"117":0.44634,"118":0.29583,"119":0.00173,_:"79 80 81 87 88 91 93 94 95 96 97 98 99 101 102 103 104 106"},E:{"10":0.00346,"13":0.00346,"14":0.00865,_:"0 4 5 6 7 8 9 11 12 15 3.1 3.2 6.1 7.1 9.1 15.1 16.2 17.2","5.1":0.00865,"10.1":0.00173,"11.1":0.00173,"12.1":0.00173,"13.1":0.01211,"14.1":0.00692,"15.2-15.3":0.00173,"15.4":0.00173,"15.5":0.00692,"15.6":0.02768,"16.0":0.00173,"16.1":0.00173,"16.3":0.00173,"16.4":0.00692,"16.5":0.00346,"16.6":0.02076,"17.0":0.01557,"17.1":0.00173},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0011,"5.0-5.1":0.0011,"6.0-6.1":0.0033,"7.0-7.1":0.00771,"8.1-8.4":0.0011,"9.0-9.2":0.00771,"9.3":0.02643,"10.0-10.2":0.0011,"10.3":0.03855,"11.0-11.2":0.03525,"11.3-11.4":0.01212,"12.0-12.1":0.00991,"12.2-12.5":0.17513,"13.0-13.1":0.00551,"13.2":0.02974,"13.3":0.01101,"13.4-13.7":0.03525,"14.0-14.4":0.09693,"14.5-14.8":0.1564,"15.0-15.1":0.06168,"15.2-15.3":0.07049,"15.4":0.0782,"15.5":0.11124,"15.6-15.7":0.7699,"16.0":0.28417,"16.1":0.54411,"16.2":0.26544,"16.3":0.49234,"16.4":0.10574,"16.5":0.28197,"16.6-16.7":5.28136,"17.0":1.88124,"17.1":0.11345,"17.2":0.0033},P:{"4":0.16504,"20":0.06189,"21":0.10315,"22":0.28882,"23":0.02063,"5.0-5.4":0.05157,"6.2-6.4":0.01031,"7.2-7.4":0.08252,_:"8.2 10.1 12.0","9.2":0.06189,"11.1-11.2":0.02063,"13.0":0.02063,"14.0":0.02063,"15.0":0.01031,"16.0":0.03094,"17.0":0.01031,"18.0":0.01031,"19.0":0.03094},I:{"0":0.02468,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"8":0.00173,"10":0.00173,"11":0.05363,_:"6 7 9 5.5"},K:{"0":1.94201,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.18192,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.17365},Q:{"13.1":0.00827},O:{"0":0.27288},H:{"0":1.87},L:{"0":74.38847}};
      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 3e5ff5e4a2c8b4..7115744634d409 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00353,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.02115,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00705,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00353,"69":0,"70":0,"71":0,"72":0.07755,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00353,"79":0,"80":0,"81":0,"82":0,"83":0.01763,"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.00353,"103":0,"104":0,"105":0,"106":0.00353,"107":0,"108":0.00353,"109":0.00353,"110":0.00705,"111":0.00353,"112":0.00353,"113":0.00353,"114":0.00705,"115":0.05993,"116":0.0564,"117":0.15158,"118":0.01058,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00353,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00353,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00353,"42":0,"43":0,"44":0,"45":0.00353,"46":0,"47":0.00353,"48":0.02115,"49":0.02115,"50":0.05288,"51":0,"52":0,"53":0.01058,"54":0,"55":0.01763,"56":0.00353,"57":0.01058,"58":0.00705,"59":0.00353,"60":0.00353,"61":0.00353,"62":0.00705,"63":0.01058,"64":0,"65":0.00353,"66":0,"67":0.00353,"68":0.00353,"69":0.3102,"70":0.4935,"71":0.00353,"72":0.00705,"73":0.2397,"74":0.00353,"75":0.0423,"76":0.00353,"77":0.0282,"78":0.05288,"79":0.06345,"80":0.01763,"81":0.01058,"83":0.06698,"84":0.01763,"85":0.00353,"86":0.12338,"87":0.04935,"88":0.0141,"89":0.02115,"90":0.04583,"91":0.03525,"92":0.0846,"93":0.00353,"94":0.0564,"95":0.01058,"96":0.00705,"97":0.0564,"98":0.41595,"99":0.1692,"100":0.07403,"101":0.03173,"102":0.01763,"103":0.02115,"104":0.00705,"105":0.0141,"106":0.01058,"107":0.02468,"108":0.02115,"109":0.18683,"110":0.00705,"111":0.00705,"112":0.0423,"113":0.05993,"114":0.13748,"115":0.08108,"116":0.67328,"117":0.16568,"118":0.01763,"119":0.00353,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00353,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00353,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00353,"102":0.00353,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00353,"17":0.00353,"18":0.0282,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00353,"89":0.00353,"90":0,"91":0,"92":0.01763,"93":0,"94":0,"95":0,"96":0.00353,"97":0,"98":0,"99":0.00353,"100":0.00353,"101":0.00353,"102":0.00353,"103":0.00353,"104":0.00353,"105":0.00353,"106":0.00353,"107":0.01058,"108":0.02115,"109":0.04935,"110":0.02468,"111":0.02468,"112":0.03525,"113":0.11633,"114":0.10223,"115":0.14805,"116":1.42058,"117":0.84953},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00353,"14":0.02115,"15":0.00353,_:"0","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.02115,"14.1":0.02468,"15.1":0.00353,"15.2-15.3":0.00353,"15.4":0.0141,"15.5":0.01763,"15.6":0.0564,"16.0":0.00705,"16.1":0.02468,"16.2":0.02115,"16.3":0.03878,"16.4":0.0141,"16.5":0.03525,"16.6":0.20798,"17.0":0.0141,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.06187,"5.0-5.1":0.02912,"6.0-6.1":0.01638,"7.0-7.1":0.00728,"8.1-8.4":0.0091,"9.0-9.2":0.11464,"9.3":0.02366,"10.0-10.2":0.03276,"10.3":0.28024,"11.0-11.2":0.20199,"11.3-11.4":0.07279,"12.0-12.1":0.08553,"12.2-12.5":0.42764,"13.0-13.1":0.02912,"13.2":0.06005,"13.3":0.08371,"13.4-13.7":0.50043,"14.0-14.4":0.72971,"14.5-14.8":0.7006,"15.0-15.1":0.40398,"15.2-15.3":0.39488,"15.4":0.57503,"15.5":0.43492,"15.6-15.7":1.26289,"16.0":0.63145,"16.1":1.23378,"16.2":0.78066,"16.3":1.28837,"16.4":0.43128,"16.5":0.93716,"16.6":5.83951,"17.0":0.40034,"17.1":0},P:{"4":0,"20":0.01101,"21":0.02202,"22":0.20914,"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.07705,"15.0":0,"16.0":0,"17.0":0.01101,"18.0":0,"19.0":0},I:{"0":0,"3":0,"4":0.07649,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.53545,"4.4":0,"4.4.3-4.4.4":3.13621},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03529,"9":0.67057,"10":0,"11":2.18817,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.2423},R:{_:"0"},M:{"0":0.12303},Q:{"13.1":3.885},O:{"0":8.12613},H:{"0":0.03678}};
      +module.exports={C:{"4":0.00366,"21":0.00366,"34":0.00731,"43":0.06945,"48":0.00366,"52":0.01828,"56":0.00366,"63":0.00366,"72":0.02924,"78":0.00731,"83":0.01828,"89":0.00366,"91":0.00366,"100":0.00366,"102":0.00366,"104":0.00366,"105":0.00366,"106":0.00366,"107":0.00366,"108":0.01097,"109":0.01097,"110":0.02193,"111":0.01097,"112":0.00366,"113":0.00366,"114":0.00366,"115":0.15351,"116":0.15351,"117":0.02924,"118":0.43495,"119":0.0731,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 88 90 92 93 94 95 96 97 98 99 101 103 120 121 122 3.5 3.6"},D:{"11":0.00731,"26":0.00366,"27":0.00366,"31":0.00731,"36":0.00366,"40":0.00366,"41":0.01097,"42":0.00366,"43":0.00366,"45":0.01097,"47":0.01097,"48":0.0731,"49":0.06945,"50":0.17179,"51":0.00366,"53":0.02924,"54":0.00366,"55":0.04752,"56":0.00731,"57":0.0329,"58":0.00366,"59":0.00731,"60":0.00731,"61":0.01462,"62":0.01097,"63":0.02924,"64":0.00366,"65":0.01097,"66":0.00366,"67":0.01097,"68":0.00366,"69":0.89913,"70":1.18788,"71":0.01462,"72":0.01828,"73":0.83334,"74":0.01097,"75":0.08407,"76":0.05848,"77":0.12427,"78":0.13889,"79":0.20103,"80":0.05483,"81":0.04021,"83":0.21199,"84":0.05483,"85":0.01462,"86":0.41667,"87":0.18275,"88":0.02559,"89":0.05483,"90":0.13524,"91":0.09503,"92":0.57018,"93":0.01097,"94":0.19737,"95":0.08041,"96":0.02559,"97":0.14255,"98":1.3158,"99":0.33261,"100":0.18641,"101":0.106,"102":0.05117,"103":0.05483,"104":0.02193,"105":0.04752,"106":0.0329,"107":0.08041,"108":0.12062,"109":0.72004,"110":0.04021,"111":0.04021,"112":0.12427,"113":0.08772,"114":0.31799,"115":0.09869,"116":0.21565,"117":1.61917,"118":1.30118,"119":0.02924,"120":0.0329,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 28 29 30 32 33 34 35 37 38 39 44 46 52 121 122"},F:{"11":0.00366,"95":0.00366,"101":0.00366,"102":0.02193,"103":0.01097,_:"9 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00366,"15":0.00366,"16":0.00731,"17":0.00731,"18":0.05848,"84":0.00366,"87":0.00366,"88":0.00731,"89":0.00366,"90":0.00366,"92":0.05117,"94":0.00366,"95":0.00366,"96":0.00366,"97":0.00366,"98":0.00366,"99":0.00366,"100":0.01097,"101":0.00731,"102":0.00731,"103":0.00731,"104":0.00366,"105":0.00731,"106":0.01097,"107":0.02559,"108":0.06214,"109":0.1462,"110":0.0731,"111":0.07676,"112":0.06945,"113":0.26316,"114":0.19372,"115":0.13889,"116":0.41302,"117":3.00807,"118":2.59505,"119":0.02193,_:"12 13 79 80 81 83 85 86 91 93"},E:{"5":0.00366,"9":0.00366,"13":0.01097,"14":0.05117,"15":0.01097,_:"0 4 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.00731,"13.1":0.06214,"14.1":0.06945,"15.1":0.01828,"15.2-15.3":0.01462,"15.4":0.03655,"15.5":0.04386,"15.6":0.16082,"16.0":0.01828,"16.1":0.06214,"16.2":0.05483,"16.3":0.12793,"16.4":0.0329,"16.5":0.08407,"16.6":0.53729,"17.0":0.16082,"17.1":0.01097},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00117,"5.0-5.1":0.00117,"6.0-6.1":0.00351,"7.0-7.1":0.00819,"8.1-8.4":0.00117,"9.0-9.2":0.00819,"9.3":0.02808,"10.0-10.2":0.00117,"10.3":0.04094,"11.0-11.2":0.03743,"11.3-11.4":0.01287,"12.0-12.1":0.01053,"12.2-12.5":0.186,"13.0-13.1":0.00585,"13.2":0.03159,"13.3":0.0117,"13.4-13.7":0.03743,"14.0-14.4":0.10295,"14.5-14.8":0.16612,"15.0-15.1":0.06551,"15.2-15.3":0.07487,"15.4":0.08306,"15.5":0.11815,"15.6-15.7":0.81771,"16.0":0.30182,"16.1":0.5779,"16.2":0.28193,"16.3":0.52292,"16.4":0.1123,"16.5":0.29948,"16.6-16.7":5.60935,"17.0":1.99808,"17.1":0.12049,"17.2":0.00351},P:{"20":0.01158,"21":0.02317,"22":0.22011,_:"4 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","17.0":0.01158},I:{"0":2.79606,"3":0,"4":0.00056,"2.1":0,"2.2":0.00084,"2.3":0,"4.1":0.00056,"4.2-4.3":0.00197,"4.4":0,"4.4.3-4.4.4":0.00843},A:{"6":0.03658,"7":0.03658,"8":0.07316,"9":2.01194,"10":0.03658,"11":6.51137,_:"5.5"},K:{"0":0.03806,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.13322},Q:{"13.1":4.31392},O:{"0":7.77774},H:{"0":0},L:{"0":36.35277}};
      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 fade48e9aeb429..ba203a371044db 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00407,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00407,"79":0,"80":0,"81":0.00407,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00407,"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.00813,"103":0,"104":0.00407,"105":0,"106":0,"107":0,"108":0.00407,"109":0,"110":0,"111":0.00407,"112":0,"113":0.00407,"114":0.00407,"115":0.04878,"116":0.03252,"117":0.30488,"118":0.03252,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00407,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00813,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00407,"48":0,"49":0.00407,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00407,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00813,"69":0.00407,"70":0.00407,"71":0,"72":0.00407,"73":0,"74":0.00407,"75":0.00813,"76":0.00407,"77":0.00407,"78":0.00407,"79":0.07317,"80":0.00813,"81":0.00813,"83":0.00407,"84":0.00407,"85":0.00813,"86":0.00407,"87":0.02439,"88":0.01626,"89":0.0122,"90":0.00813,"91":0.01626,"92":0.00407,"93":0.00407,"94":0.00407,"95":0.00813,"96":0.00407,"97":0.0122,"98":0.00407,"99":0.01626,"100":0.00407,"101":0.00407,"102":0.00813,"103":0.03252,"104":0.00813,"105":0.02033,"106":0.01626,"107":0.01626,"108":0.02439,"109":0.80894,"110":0.0122,"111":0.02033,"112":0.03252,"113":0.04472,"114":0.10163,"115":0.18293,"116":8.43488,"117":2.34144,"118":0.00813,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00407,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00407,"73":0,"74":0,"75":0,"76":0,"77":0.00813,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02439,"96":0,"97":0,"98":0,"99":0.00813,"100":0.14228,"101":0.28862,"102":0.35772,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00813,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00407,"108":0,"109":0.0122,"110":0.00407,"111":0.00407,"112":0.00407,"113":0.00407,"114":0.0122,"115":0.02439,"116":0.67479,"117":0.5691},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00407,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00407,"6.1":0,"7.1":0,"9.1":0.0122,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0122,"14.1":0.01626,"15.1":0.00407,"15.2-15.3":0,"15.4":0.00813,"15.5":0.00407,"15.6":0.03659,"16.0":0.00407,"16.1":0.0122,"16.2":0.0122,"16.3":0.02846,"16.4":0.0122,"16.5":0.03659,"16.6":0.15447,"17.0":0.02033,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00286,"6.0-6.1":0,"7.0-7.1":0.00858,"8.1-8.4":0,"9.0-9.2":0.00286,"9.3":0.0429,"10.0-10.2":0,"10.3":0.03146,"11.0-11.2":0.01573,"11.3-11.4":0.00858,"12.0-12.1":0.00715,"12.2-12.5":0.1816,"13.0-13.1":0.00429,"13.2":0.02002,"13.3":0.11725,"13.4-13.7":0.02002,"14.0-14.4":0.06149,"14.5-14.8":0.16301,"15.0-15.1":0.03575,"15.2-15.3":0.09295,"15.4":0.04433,"15.5":0.07579,"15.6-15.7":0.93232,"16.0":0.38608,"16.1":0.67779,"16.2":0.32031,"16.3":0.65634,"16.4":0.10296,"16.5":0.36463,"16.6":8.33797,"17.0":1.39133,"17.1":0.00286},P:{"4":0.16469,"20":0.04117,"21":0.07205,"22":0.95724,"5.0-5.4":0.03088,"6.2-6.4":0,"7.2-7.4":0.08234,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01029,"12.0":0,"13.0":0.02059,"14.0":0.01029,"15.0":0,"16.0":0.02059,"17.0":0.03088,"18.0":0.01029,"19.0":0.02059},I:{"0":0,"3":0,"4":0.01943,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00648,"4.4":0,"4.4.3-4.4.4":0.09068},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00407,"9":0,"10":0,"11":0.0122,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.56127},R:{_:"0"},M:{"0":0.1187},Q:{"13.1":0},O:{"0":0.02968},H:{"0":0.118}};
      +module.exports={C:{"34":0.00373,"52":0.00745,"73":0.00373,"78":0.00745,"80":0.00373,"88":0.00745,"102":0.00373,"105":0.00373,"107":0.00373,"109":0.00373,"110":0.00373,"111":0.00373,"112":0.00373,"113":0.00745,"114":0.00373,"115":0.10803,"116":0.00745,"117":0.02235,"118":0.62208,"119":0.12665,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 106 108 120 121 122 3.5 3.6"},D:{"22":0.00373,"26":0.00373,"38":0.01863,"39":0.00373,"44":0.00373,"47":0.01118,"49":0.00745,"50":0.00373,"51":0.00373,"53":0.00373,"56":0.00373,"58":0.00373,"60":0.00373,"62":0.00373,"63":0.00373,"65":0.00373,"68":0.00745,"69":0.00373,"70":0.00373,"72":0.00373,"73":0.00373,"75":0.00373,"76":0.00373,"77":0.00373,"78":0.00373,"79":0.15645,"80":0.00745,"81":0.00745,"83":0.00745,"84":0.00373,"85":0.00745,"86":0.00745,"87":0.03353,"88":0.0298,"89":0.01863,"90":0.00745,"91":0.02608,"92":0.00745,"93":0.00745,"94":0.00745,"95":0.00745,"96":0.0149,"97":0.01863,"98":0.00373,"99":0.01863,"100":0.00745,"101":0.01118,"102":0.01118,"103":0.0745,"104":0.01118,"105":0.0298,"106":0.0298,"107":0.0298,"108":0.0447,"109":1.67253,"110":0.02608,"111":0.03725,"112":0.04843,"113":0.0447,"114":0.1043,"115":0.11175,"116":0.85303,"117":11.5028,"118":12.60168,"119":0.01863,"120":0.00745,_:"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 40 41 42 43 45 46 48 52 54 55 57 59 61 64 66 67 71 74 121 122"},F:{"28":0.00373,"85":0.00373,"91":0.00373,"95":0.0298,"100":0.00373,"101":0.00745,"102":1.86995,"103":0.21978,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00745,"92":0.0149,"100":0.00373,"103":0.00373,"106":0.00373,"107":0.00373,"108":0.00745,"109":0.03353,"110":0.00373,"111":0.00373,"112":0.00745,"113":0.00745,"114":0.01863,"115":0.01863,"116":0.0447,"117":1.63528,"118":1.61665,"119":0.01118,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 104 105"},E:{"14":0.01118,"15":0.00373,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.01118,"9.1":0.00745,"12.1":0.00373,"13.1":0.02235,"14.1":0.03725,"15.1":0.00745,"15.2-15.3":0.00745,"15.4":0.0149,"15.5":0.01118,"15.6":0.09313,"16.0":0.00745,"16.1":0.03353,"16.2":0.0298,"16.3":0.07078,"16.4":0.02235,"16.5":0.05588,"16.6":0.25703,"17.0":0.20115,"17.1":0.01118},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00131,"5.0-5.1":0.00131,"6.0-6.1":0.00394,"7.0-7.1":0.00919,"8.1-8.4":0.00131,"9.0-9.2":0.00919,"9.3":0.0315,"10.0-10.2":0.00131,"10.3":0.04593,"11.0-11.2":0.04199,"11.3-11.4":0.01444,"12.0-12.1":0.01181,"12.2-12.5":0.20866,"13.0-13.1":0.00656,"13.2":0.03543,"13.3":0.01312,"13.4-13.7":0.04199,"14.0-14.4":0.11548,"14.5-14.8":0.18635,"15.0-15.1":0.07349,"15.2-15.3":0.08399,"15.4":0.09317,"15.5":0.13254,"15.6-15.7":0.91731,"16.0":0.33858,"16.1":0.64828,"16.2":0.31627,"16.3":0.5866,"16.4":0.12598,"16.5":0.33595,"16.6-16.7":6.29253,"17.0":2.24143,"17.1":0.13517,"17.2":0.00394},P:{"4":0.13298,"20":0.03069,"21":0.04092,"22":0.74675,"23":0.16367,"5.0-5.4":0.03069,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.06138,"11.1-11.2":0.01023,"13.0":0.01023,"16.0":0.02046,"17.0":0.02046,"18.0":0.01023,"19.0":0.02046},I:{"0":0.03746,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.00373,"11":0.02608,_:"6 7 9 10 5.5"},K:{"0":0.1318,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.10669},Q:{_:"13.1"},O:{"0":0.0251},H:{"0":0},L:{"0":49.5929}};
      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 9141521760aefa..6f301f2283ea07 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00437,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00437,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00437,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01748,"74":0,"75":0,"76":0,"77":0,"78":0.0306,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00437,"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.02186,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00874,"111":0,"112":0,"113":0.01748,"114":0.01311,"115":0.15736,"116":0.04371,"117":0.80426,"118":0.07431,"119":0,"120":0,"3.5":0,"3.6":0.00437},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00437,"40":0.00437,"41":0.00437,"42":0.00437,"43":0.00874,"44":0.00874,"45":0.00437,"46":0.00874,"47":0.00437,"48":0,"49":0,"50":0,"51":0.00874,"52":0,"53":0,"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.00437,"68":0.01748,"69":0,"70":0.00437,"71":0,"72":0,"73":0.00437,"74":0,"75":0,"76":0,"77":0.00437,"78":0,"79":0.01311,"80":0.01311,"81":0.01748,"83":0.00437,"84":0,"85":0.00437,"86":0.02623,"87":0.00437,"88":0.00437,"89":0.00437,"90":0.00437,"91":0.00437,"92":0.00437,"93":0.00874,"94":0.00437,"95":0,"96":0.02186,"97":0.00437,"98":0.00874,"99":0.01311,"100":0.00437,"101":0.00437,"102":0.00874,"103":0.0306,"104":0.00437,"105":0.00874,"106":0.00874,"107":0.00437,"108":0.00874,"109":0.37591,"110":0.01311,"111":0.01311,"112":0.0306,"113":0.02623,"114":0.1049,"115":0.19232,"116":8.47974,"117":2.38657,"118":0.00437,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00874,"29":0,"30":0,"31":0.00437,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00437,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00437,"70":0,"71":0,"72":0.01748,"73":0.00874,"74":0,"75":0,"76":0,"77":0.02186,"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.01311,"96":0,"97":0.00437,"98":0,"99":0.00437,"100":0.1661,"101":0.29286,"102":0.50704,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00437,"13":0,"14":0.00874,"15":0,"16":0,"17":0.01748,"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,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00437,"106":0,"107":0,"108":0,"109":0.01311,"110":0,"111":0.00437,"112":0,"113":0.00437,"114":0.01311,"115":0.0306,"116":1.06215,"117":0.86109},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01311,"10":0,"11":0,"12":0,"13":0.00437,"14":0.00437,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00437,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02623,"14.1":0.02623,"15.1":0.00437,"15.2-15.3":0.00437,"15.4":0.00874,"15.5":0.02186,"15.6":0.10928,"16.0":0.01311,"16.1":0.02186,"16.2":0.01748,"16.3":0.08305,"16.4":0.0306,"16.5":0.10928,"16.6":0.69062,"17.0":0.06557,"17.1":0},G:{"8":0.00181,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00181,"5.0-5.1":0.01265,"6.0-6.1":0.01807,"7.0-7.1":0.04518,"8.1-8.4":0.0253,"9.0-9.2":0.00361,"9.3":0.05784,"10.0-10.2":0,"10.3":0.03615,"11.0-11.2":0.08675,"11.3-11.4":0.01807,"12.0-12.1":0.0253,"12.2-12.5":0.19881,"13.0-13.1":0,"13.2":0.00542,"13.3":0.00361,"13.4-13.7":0.01807,"14.0-14.4":0.06868,"14.5-14.8":0.15363,"15.0-15.1":0.02892,"15.2-15.3":0.05422,"15.4":0.03615,"15.5":0.07591,"15.6-15.7":0.99045,"16.0":0.28918,"16.1":0.63439,"16.2":0.28195,"16.3":0.64885,"16.4":0.13013,"16.5":0.441,"16.6":11.69198,"17.0":1.71521,"17.1":0.00361},P:{"4":0.09243,"20":0.09243,"21":0.1335,"22":2.82413,"5.0-5.4":0,"6.2-6.4":0.02054,"7.2-7.4":0.08216,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01027,"12.0":0.01027,"13.0":0.01027,"14.0":0.01027,"15.0":0.01027,"16.0":0.02054,"17.0":0.07189,"18.0":0.01027,"19.0":0.05135},I:{"0":0,"3":0.00341,"4":0.04771,"2.1":0.00682,"2.2":0.02726,"2.3":0.03408,"4.1":0.02726,"4.2-4.3":0.05794,"4.4":0,"4.4.3-4.4.4":0.20108},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00437,"7":0.00437,"8":0.04371,"9":0.00874,"10":0.00874,"11":0.0306,"5.5":0},S:{"2.5":0.00563,_:"3.0-3.1"},J:{"7":0,"10":0.01126},N:{"10":0.01876,"11":0.00938},L:{"0":57.73335},R:{_:"0"},M:{"0":0.28708},Q:{"13.1":0},O:{"0":0.06755},H:{"0":0.28778}};
      +module.exports={C:{"52":0.00436,"56":0.00436,"62":0.00436,"73":0.03925,"78":0.00436,"88":0.00436,"95":0.00436,"98":0.00436,"102":0.00436,"109":0.00872,"110":0.00436,"113":0.00436,"114":0.01744,"115":0.34452,"116":0.00872,"117":0.05669,"118":1.33447,"119":0.27038,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 99 100 101 103 104 105 106 107 108 111 112 120 121 122 3.5 3.6"},D:{"38":0.00436,"39":0.00436,"43":0.00436,"44":0.00436,"45":0.00436,"46":0.00436,"47":0.00436,"49":0.00436,"51":0.00872,"63":0.00436,"65":0.00436,"67":0.00436,"68":0.01744,"70":0.00436,"73":0.01744,"76":0.00436,"77":0.00436,"79":0.02617,"80":0.01744,"81":0.00872,"83":0.01308,"85":0.00436,"86":0.04797,"87":0.03489,"88":0.00436,"90":0.00436,"91":0.00872,"92":0.00436,"93":0.00436,"94":0.01744,"95":0.00436,"96":0.13083,"97":0.01308,"98":0.01744,"99":0.01744,"100":0.00436,"101":0.00436,"102":0.00872,"103":0.08286,"104":0.00872,"105":0.01308,"106":0.02181,"107":0.01308,"108":0.01308,"109":0.75009,"110":0.00872,"111":0.01744,"112":0.02617,"113":0.02617,"114":0.12647,"115":0.13519,"116":1.12514,"117":13.23127,"118":12.12794,"119":0.01308,"120":0.00436,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 48 50 52 53 54 55 56 57 58 59 60 61 62 64 66 69 71 72 74 75 78 84 89 121 122"},F:{"28":0.01308,"95":0.03925,"97":0.00436,"100":0.00436,"101":0.05669,"102":2.32005,"103":0.22241,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01744,"18":0.00436,"92":0.01308,"100":0.00436,"109":0.03053,"112":0.00436,"113":0.00436,"114":0.01744,"115":0.02181,"116":0.04797,"117":2.35494,"118":2.5948,"119":0.01308,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111"},E:{"9":0.01308,"13":0.00872,"14":0.00872,"15":0.00436,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00436,"12.1":0.00436,"13.1":0.04361,"14.1":0.06542,"15.1":0.01308,"15.2-15.3":0.00872,"15.4":0.02181,"15.5":0.03489,"15.6":0.27038,"16.0":0.03053,"16.1":0.06542,"16.2":0.03925,"16.3":0.21369,"16.4":0.08286,"16.5":0.14827,"16.6":1.16875,"17.0":0.65415,"17.1":0.08286},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00114,"5.0-5.1":0.00114,"6.0-6.1":0.00342,"7.0-7.1":0.00799,"8.1-8.4":0.00114,"9.0-9.2":0.00799,"9.3":0.02738,"10.0-10.2":0.00114,"10.3":0.03993,"11.0-11.2":0.0365,"11.3-11.4":0.01255,"12.0-12.1":0.01027,"12.2-12.5":0.18138,"13.0-13.1":0.0057,"13.2":0.0308,"13.3":0.01141,"13.4-13.7":0.0365,"14.0-14.4":0.10039,"14.5-14.8":0.16199,"15.0-15.1":0.06388,"15.2-15.3":0.07301,"15.4":0.08099,"15.5":0.11522,"15.6-15.7":0.7974,"16.0":0.29432,"16.1":0.56354,"16.2":0.27493,"16.3":0.50992,"16.4":0.10951,"16.5":0.29204,"16.6-16.7":5.46999,"17.0":1.94843,"17.1":0.1175,"17.2":0.00342},P:{"4":0.07194,"20":0.08221,"21":0.12332,"22":2.52803,"23":0.53438,_:"5.0-5.4 8.2 9.2","6.2-6.4":0.02055,"7.2-7.4":0.08221,"10.1":0.02055,"11.1-11.2":0.05138,"12.0":0.02055,"13.0":0.03083,"14.0":0.01028,"15.0":0.01028,"16.0":0.03083,"17.0":0.07194,"18.0":0.02055,"19.0":0.05138},I:{"0":0.08976,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00027},A:{"7":0.00436,"8":0.02181,"9":0.00436,"10":0.00872,"11":0.03489,_:"6 5.5"},K:{"0":0.26631,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00564,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.24812},Q:{_:"13.1"},O:{"0":0.05075},H:{"0":0.01},L:{"0":42.36747}};
      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 17f464299037cd..5b34e3ae452461 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00258,"34":0.00516,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00258,"43":0.00774,"44":0,"45":0.00258,"46":0,"47":0.00258,"48":0.00258,"49":0,"50":0.00516,"51":0,"52":0.05934,"53":0,"54":0.03096,"55":0.00258,"56":0.00258,"57":0.01032,"58":0,"59":0.00258,"60":0.00516,"61":0.00258,"62":0,"63":0.00258,"64":0.00516,"65":0.00258,"66":0.00516,"67":0.00258,"68":0.00516,"69":0,"70":0.00258,"71":0.00516,"72":0.02064,"73":0.00258,"74":0,"75":0,"76":0,"77":0.00258,"78":0.00516,"79":0.00258,"80":0.00258,"81":0.00258,"82":0.00516,"83":0.00258,"84":0.00774,"85":0.00516,"86":0.00258,"87":0.00258,"88":0.00774,"89":0.00516,"90":0.00516,"91":0.01032,"92":0.00516,"93":0.00774,"94":0.00516,"95":0.0129,"96":0.00516,"97":0.01806,"98":0.0129,"99":0.0258,"100":0.02322,"101":0.02322,"102":0.04128,"103":0.00774,"104":0.03096,"105":0.00516,"106":0.01806,"107":0.01032,"108":0.0129,"109":0.01806,"110":0.02322,"111":0.03096,"112":0.02064,"113":0.04386,"114":0.03354,"115":0.3999,"116":0.16512,"117":1.14552,"118":0.11094,"119":0.00258,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00258,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00258,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00258,"63":0.00258,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00258,"72":0.00258,"73":0.00258,"74":0.00258,"75":0.00516,"76":0,"77":0.00258,"78":0.00258,"79":0.00516,"80":0.03354,"81":0.00774,"83":0,"84":0.00258,"85":0,"86":0.00516,"87":0.00516,"88":0.02838,"89":0.01806,"90":0.0258,"91":0.01032,"92":0.00258,"93":0.00516,"94":0.00516,"95":0.01032,"96":0.00516,"97":0.00258,"98":0.00258,"99":0.00258,"100":0.00516,"101":0.00258,"102":0.00774,"103":0.01032,"104":0.00258,"105":0.00516,"106":0.0129,"107":0.00516,"108":0.0129,"109":0.17286,"110":0.01032,"111":0.0129,"112":0.0258,"113":0.01548,"114":0.11094,"115":0.05418,"116":0.97008,"117":0.25542,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00258,"46":0,"47":0,"48":0,"49":0,"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.00258,"67":0.00258,"68":0,"69":0.00516,"70":0.00774,"71":0.00516,"72":0.02322,"73":0.00258,"74":0,"75":0,"76":0.00258,"77":0.02322,"78":0,"79":0.01032,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00258,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01548,"96":0,"97":0.00774,"98":0,"99":0.0129,"100":0.01032,"101":0.08772,"102":0.07998,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00258,"13":0.00258,"14":0.00516,"15":0.03096,"16":0.00258,"17":0.00258,"18":0.01548,"79":0,"80":0,"81":0,"83":0,"84":0.00774,"85":0,"86":0,"87":0,"88":0,"89":0.00258,"90":0.00516,"91":0,"92":0.03096,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00258,"100":0.01032,"101":0,"102":0,"103":0.00258,"104":0,"105":0.00258,"106":0.00258,"107":0.00258,"108":0.00258,"109":0.00774,"110":0.00774,"111":0.00258,"112":0.00258,"113":0.00516,"114":0.03096,"115":0.04644,"116":0.26574,"117":0.15738},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00258,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00774,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00258,"14.1":0.00258,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00258,"15.6":0.00774,"16.0":0,"16.1":0.00258,"16.2":0,"16.3":0.00516,"16.4":0.00516,"16.5":0.00258,"16.6":0.07998,"17.0":0.00258,"17.1":0},G:{"8":0.00241,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00161,"6.0-6.1":0,"7.0-7.1":0.05796,"8.1-8.4":0.06601,"9.0-9.2":0.00161,"9.3":0.02576,"10.0-10.2":0,"10.3":0.01529,"11.0-11.2":0.01529,"11.3-11.4":0.00241,"12.0-12.1":0.00805,"12.2-12.5":0.3389,"13.0-13.1":0.02576,"13.2":0.01529,"13.3":0.34856,"13.4-13.7":0.13685,"14.0-14.4":0.25679,"14.5-14.8":0.40813,"15.0-15.1":0.19561,"15.2-15.3":0.35661,"15.4":0.13604,"15.5":0.21413,"15.6-15.7":1.47957,"16.0":0.24552,"16.1":0.34131,"16.2":0.25438,"16.3":0.33568,"16.4":0.22218,"16.5":0.50875,"16.6":1.64942,"17.0":0.3558,"17.1":0},P:{"4":0.24504,"20":0.13273,"21":0.31652,"22":0.75555,"5.0-5.4":0.03063,"6.2-6.4":0.01021,"7.2-7.4":0.29609,"8.2":0.01021,"9.2":0.03063,"10.1":0,"11.1-11.2":0.1021,"12.0":0,"13.0":0.05105,"14.0":0.04084,"15.0":0.02042,"16.0":0.11231,"17.0":0.09189,"18.0":0.06126,"19.0":0.16336},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00409,"4.2-4.3":0.01636,"4.4":0,"4.4.3-4.4.4":0.18405},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.9344},R:{_:"0"},M:{"0":0.56392},Q:{"13.1":0.02968},O:{"0":0.12614},H:{"0":0.81487}};
      +module.exports={C:{"34":0.20023,"38":0.00247,"40":0.00494,"41":0.00247,"42":0.00247,"43":0.01236,"45":0.00494,"46":0.00247,"47":0.00742,"48":0.00742,"49":0.00247,"50":0.00742,"51":0.00247,"52":0.11618,"53":0.00247,"54":0.06922,"56":0.01978,"57":0.04697,"58":0.00247,"59":0.00494,"60":0.02472,"61":0.00989,"63":0.00494,"64":0.0173,"65":0.02225,"66":0.0173,"67":0.00494,"68":0.01236,"69":0.00742,"70":0.00742,"71":0.0173,"72":0.07663,"73":0.00494,"74":0.00494,"75":0.00494,"76":0.00494,"77":0.00989,"78":0.00989,"79":0.00247,"80":0.00494,"81":0.00247,"82":0.03461,"83":0.00494,"84":0.03708,"85":0.01483,"86":0.00247,"87":0.00494,"88":0.03461,"89":0.03955,"90":0.00742,"91":0.05686,"92":0.01483,"93":0.01978,"94":0.01236,"95":0.02719,"96":0.02966,"97":0.03955,"98":0.02966,"99":0.09641,"100":0.05686,"101":0.09888,"102":0.07169,"103":0.02472,"104":0.04202,"105":0.00742,"106":0.04944,"107":0.03214,"108":0.03461,"109":0.04944,"110":0.07416,"111":0.05933,"112":0.06922,"113":0.11618,"114":0.10135,"115":1.27308,"116":0.13349,"117":0.4326,"118":3.97003,"119":0.67733,"120":0.01236,"121":0.00247,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 44 55 62 122 3.5 3.6"},D:{"33":0.00247,"38":0.00247,"42":0.00247,"43":0.00247,"49":0.00247,"52":0.00247,"54":0.00247,"55":0.00742,"56":0.00247,"58":0.00247,"60":0.00247,"61":0.00247,"62":0.00247,"63":0.00494,"64":0.00247,"67":0.00247,"68":0.00247,"69":0.00247,"70":0.00494,"71":0.00989,"72":0.00742,"73":0.01236,"74":0.00494,"75":0.00494,"76":0.00247,"77":0.00989,"78":0.00247,"79":0.0173,"80":0.00742,"81":0.01978,"83":0.00494,"84":0.00742,"85":0.00247,"86":0.0173,"87":0.01483,"88":0.13349,"89":0.08158,"90":0.07663,"91":0.02719,"92":0.00989,"93":0.00742,"94":0.02472,"95":0.0173,"96":0.00742,"97":0.00742,"98":0.00742,"99":0.01978,"100":0.0173,"101":0.01236,"102":0.03461,"103":0.01978,"104":0.01236,"105":0.01978,"106":0.05191,"107":0.02966,"108":0.07416,"109":0.61306,"110":0.08158,"111":0.06922,"112":0.06674,"113":0.03708,"114":0.18046,"115":0.08405,"116":0.41282,"117":2.3657,"118":2.21738,"119":0.0173,_:"4 5 6 7 8 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 44 45 46 47 48 50 51 53 57 59 65 66 120 121 122"},F:{"34":0.00247,"36":0.00247,"37":0.00247,"42":0.00247,"45":0.00247,"46":0.00247,"56":0.00247,"57":0.00247,"60":0.00247,"64":0.00494,"69":0.00989,"70":0.00494,"77":0.00247,"79":0.0791,"82":0.00494,"85":0.00247,"86":0.00494,"90":0.00494,"91":0.00247,"92":0.00247,"95":0.10135,"96":0.00989,"97":0.00742,"98":0.00494,"99":0.04697,"100":0.00989,"101":0.03214,"102":0.46721,"103":0.27192,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 38 39 40 41 43 44 47 48 49 50 51 52 53 54 55 58 62 63 65 66 67 68 71 72 73 74 75 76 78 80 81 83 84 87 88 89 93 94 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00742,"13":0.0173,"14":0.02225,"15":0.00742,"16":0.01236,"17":0.0173,"18":0.06674,"83":0.00247,"84":0.02719,"85":0.00742,"88":0.00247,"89":0.01483,"90":0.02225,"92":0.11866,"98":0.00247,"99":0.00247,"100":0.04697,"101":0.00247,"102":0.00247,"103":0.00742,"105":0.00247,"107":0.00247,"108":0.00494,"109":0.02225,"110":0.01236,"111":0.01483,"112":0.00989,"113":0.01236,"114":0.05686,"115":0.04944,"116":0.0791,"117":0.86273,"118":0.73171,"119":0.00742,_:"79 80 81 86 87 91 93 94 95 96 97 104 106"},E:{"13":0.00494,"14":0.00247,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.4 15.5 16.0 17.2","5.1":0.01236,"11.1":0.00494,"13.1":0.0173,"14.1":0.00494,"15.1":0.00247,"15.2-15.3":0.00247,"15.6":0.08158,"16.1":0.00247,"16.2":0.00247,"16.3":0.0173,"16.4":0.00494,"16.5":0.13596,"16.6":0.0791,"17.0":0.0618,"17.1":0.01483},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0.00062,"6.0-6.1":0.00187,"7.0-7.1":0.00437,"8.1-8.4":0.00062,"9.0-9.2":0.00437,"9.3":0.01499,"10.0-10.2":0.00062,"10.3":0.02187,"11.0-11.2":0.01999,"11.3-11.4":0.00687,"12.0-12.1":0.00562,"12.2-12.5":0.09933,"13.0-13.1":0.00312,"13.2":0.01687,"13.3":0.00625,"13.4-13.7":0.01999,"14.0-14.4":0.05498,"14.5-14.8":0.08871,"15.0-15.1":0.03499,"15.2-15.3":0.03998,"15.4":0.04436,"15.5":0.0631,"15.6-15.7":0.43669,"16.0":0.16118,"16.1":0.30862,"16.2":0.15056,"16.3":0.27926,"16.4":0.05998,"16.5":0.15993,"16.6-16.7":2.99563,"17.0":1.06706,"17.1":0.06435,"17.2":0.00187},P:{"4":0.26528,"20":0.09183,"21":0.37752,"22":0.88768,"23":0.08163,"5.0-5.4":0.02041,"6.2-6.4":0.02041,"7.2-7.4":0.28569,_:"8.2","9.2":0.04081,"10.1":0.0102,"11.1-11.2":0.05102,"12.0":0.02041,"13.0":0.04081,"14.0":0.04081,"15.0":0.05102,"16.0":0.10203,"17.0":0.15305,"18.0":0.04081,"19.0":0.17346},I:{"0":0.09735,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00029},A:{"8":0.00247,"9":0.00247,"11":0.03461,_:"6 7 10 5.5"},K:{"0":0.96873,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.57958},Q:{"13.1":0.03011},O:{"0":0.09032},H:{"0":0.07},L:{"0":69.20964}};
      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 a21e3862314334..03705c72fefbfd 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CV.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CV.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00382,"51":0,"52":0.00382,"53":0,"54":0.00382,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01526,"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.00382,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.05341,"116":0.03815,"117":0.25561,"118":0.01526,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00382,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01526,"41":0,"42":0.00382,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00382,"56":0,"57":0,"58":0,"59":0.00382,"60":0.00763,"61":0,"62":0,"63":0,"64":0,"65":0.00382,"66":0,"67":0,"68":0,"69":0,"70":0.00382,"71":0,"72":0,"73":0,"74":0,"75":0.01145,"76":0.00382,"77":0,"78":0,"79":0.01145,"80":0,"81":0.26705,"83":0.00382,"84":0.00382,"85":0,"86":0,"87":0.00763,"88":0.00763,"89":0,"90":0.00382,"91":0.02671,"92":0,"93":0.00763,"94":0,"95":0,"96":0.00382,"97":0.03434,"98":0,"99":0.02671,"100":0.00763,"101":0,"102":0.01526,"103":0.03052,"104":0.00382,"105":0.00763,"106":0.00763,"107":0,"108":0.00382,"109":0.51884,"110":0.04578,"111":0.01526,"112":0.02671,"113":0.01908,"114":0.1526,"115":0.12971,"116":5.67291,"117":1.52219,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00382,"69":0,"70":0,"71":0,"72":0.0496,"73":0.00382,"74":0,"75":0,"76":0,"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.00763,"96":0,"97":0,"98":0,"99":0,"100":0.01526,"101":0.13353,"102":0.17168,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00382,"13":0.00382,"14":0.00382,"15":0.03434,"16":0.00382,"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.00763,"93":0,"94":0,"95":0,"96":0.06486,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00382,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00763,"110":0.00382,"111":0,"112":0.33572,"113":0.00763,"114":0.03052,"115":0.01145,"116":1.59849,"117":1.526},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.00763,"14.1":0.04197,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00763,"15.6":0.08393,"16.0":0,"16.1":0,"16.2":0.00382,"16.3":0.00763,"16.4":0,"16.5":0.01908,"16.6":0.1259,"17.0":0.01145,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03647,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01989,"10.0-10.2":0,"10.3":0.26688,"11.0-11.2":0.06133,"11.3-11.4":0.16908,"12.0-12.1":0.14422,"12.2-12.5":0.82055,"13.0-13.1":0.0116,"13.2":0,"13.3":0.00497,"13.4-13.7":0.04476,"14.0-14.4":0.52714,"14.5-14.8":0.45089,"15.0-15.1":0.2155,"15.2-15.3":0.11604,"15.4":0.10112,"15.5":0.39618,"15.6-15.7":4.4757,"16.0":0.45917,"16.1":0.63157,"16.2":0.11438,"16.3":0.44094,"16.4":0.13261,"16.5":2.1185,"16.6":4.40774,"17.0":0.35474,"17.1":0},P:{"4":0.26663,"20":0.03077,"21":0.13332,"22":1.62031,"5.0-5.4":0.01026,"6.2-6.4":0,"7.2-7.4":0.19485,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04102,"12.0":0.01026,"13.0":0.01026,"14.0":0,"15.0":0.48199,"16.0":0.05128,"17.0":0.08204,"18.0":0.0923,"19.0":0.15383},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00437,"4.4":0,"4.4.3-4.4.4":0.54153},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00382,"10":0,"11":0.00763,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.91095},R:{_:"0"},M:{"0":0.11752},Q:{"13.1":0},O:{"0":0.05567},H:{"0":0.27521}};
      +module.exports={C:{"50":0.00382,"52":0.00382,"54":0.00382,"61":0.00763,"78":0.01526,"115":0.14501,"116":0.03816,"117":0.03053,"118":0.67925,"119":0.11448,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 120 121 122 3.5 3.6"},D:{"39":0.00382,"43":0.00382,"47":0.00382,"49":0.01908,"50":0.00382,"53":0.00382,"55":0.00382,"56":0.00763,"57":0.00382,"59":0.00382,"60":0.01145,"63":0.00763,"65":0.01145,"68":0.00382,"69":0.05342,"70":0.01145,"71":0.00763,"73":0.00763,"78":0.00382,"79":0.06106,"80":0.00763,"81":0.00382,"83":0.03434,"84":0.00382,"87":0.02671,"88":0.00763,"90":0.02671,"91":0.00382,"93":0.03053,"95":0.01145,"96":0.00382,"97":0.03434,"99":0.1183,"101":0.00382,"102":0.00763,"103":0.09922,"104":0.01526,"105":0.00763,"106":0.08014,"108":0.01145,"109":1.33178,"110":0.08014,"111":0.04961,"112":0.0229,"113":0.03816,"114":0.13738,"115":0.08395,"116":0.59148,"117":10.90613,"118":10.31846,"119":0.01145,"120":0.01526,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 44 45 46 48 51 52 54 58 61 62 64 66 67 72 74 75 76 77 85 86 89 92 94 98 100 107 121 122"},F:{"79":0.00382,"83":0.00382,"94":0.00382,"95":0.03053,"97":0.00382,"102":0.66017,"103":0.43502,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 85 86 87 88 89 90 91 92 93 96 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01526,"13":0.00382,"14":0.00763,"16":0.00763,"18":0.01526,"89":0.01526,"92":0.01145,"96":0.14501,"99":0.01526,"100":0.04579,"105":0.00382,"108":0.00382,"109":0.03434,"110":0.00382,"111":0.01145,"112":0.4999,"113":0.0229,"114":0.0229,"115":0.03816,"116":0.40831,"117":2.9345,"118":2.6941,"119":0.00382,_:"15 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 97 98 101 102 103 104 106 107"},E:{"14":0.00382,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 16.0 17.2","11.1":0.00763,"13.1":0.01145,"14.1":0.12593,"15.2-15.3":0.01526,"15.4":0.00382,"15.5":0.0229,"15.6":0.15646,"16.1":0.00382,"16.2":0.00382,"16.3":0.04579,"16.4":0.01145,"16.5":0.0229,"16.6":0.42358,"17.0":0.27094,"17.1":0.00763},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.001,"5.0-5.1":0.001,"6.0-6.1":0.003,"7.0-7.1":0.007,"8.1-8.4":0.001,"9.0-9.2":0.007,"9.3":0.02399,"10.0-10.2":0.001,"10.3":0.03498,"11.0-11.2":0.03198,"11.3-11.4":0.01099,"12.0-12.1":0.009,"12.2-12.5":0.15892,"13.0-13.1":0.005,"13.2":0.02699,"13.3":0.00999,"13.4-13.7":0.03198,"14.0-14.4":0.08796,"14.5-14.8":0.14193,"15.0-15.1":0.05597,"15.2-15.3":0.06397,"15.4":0.07096,"15.5":0.10095,"15.6-15.7":0.69865,"16.0":0.25787,"16.1":0.49375,"16.2":0.24088,"16.3":0.44677,"16.4":0.09595,"16.5":0.25587,"16.6-16.7":4.79258,"17.0":1.70714,"17.1":0.10295,"17.2":0.003},P:{"4":0.17736,"20":0.0939,"21":0.0626,"22":1.40843,"23":0.18779,_:"5.0-5.4 8.2 10.1 12.0 14.0","6.2-6.4":0.0313,"7.2-7.4":0.11476,"9.2":0.02087,"11.1-11.2":0.02087,"13.0":0.01043,"15.0":0.31298,"16.0":0.0626,"17.0":0.04173,"18.0":0.08346,"19.0":0.13563},I:{"0":0.07384,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"9":0.00382,"11":0.01908,_:"6 7 8 10 5.5"},K:{"0":0.21029,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02474,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.22266},Q:{_:"13.1"},O:{"0":0.06185},H:{"0":0},L:{"0":51.00179}};
      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 13f0300999528c..2cc04e7eb390d1 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CX.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CX.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":62.38293,"116":0,"117":0,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":8.32155,"117":0,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":8.32155,"117":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.7":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0,"17.0":0,"17.1":0},P:{"4":0,"20":0,"21":0,"22":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,"19.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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":12.67155},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0}};
      +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 3.5 3.6"},D:{"93":14.286,"117":14.286,"118":28.572,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 119 120 121 122"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2","16.6":14.286},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.7":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6-16.7":0,"17.0":0,"17.1":0,"17.2":0},P:{"23":14.285,_:"4 20 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{_:"0"},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":14.285}};
      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 09e31e3a584fcd..164e558fb99e0b 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00419,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00838,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00419,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00419,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01256,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00838,"110":0,"111":0,"112":0.00838,"113":0.00838,"114":0.00419,"115":0.09214,"116":0.18427,"117":1.05119,"118":0.08376,"119":0,"120":0,"3.5":0,"3.6":0.00419},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01256,"39":0.00419,"40":0,"41":0.00419,"42":0.00419,"43":0.00419,"44":0.00838,"45":0.00419,"46":0.00419,"47":0.00419,"48":0,"49":0.00419,"50":0,"51":0.00838,"52":0,"53":0,"54":0,"55":0,"56":0.00419,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00838,"69":0,"70":0.00419,"71":0,"72":0,"73":0,"74":0.00419,"75":0,"76":0,"77":0,"78":0,"79":0.03769,"80":0.00419,"81":0.00419,"83":0.00838,"84":0,"85":0.00419,"86":0,"87":0.01256,"88":0.02513,"89":0.00419,"90":0.00419,"91":0.02094,"92":0,"93":0.0712,"94":0,"95":0.01675,"96":0,"97":0,"98":0.00838,"99":0.00419,"100":0.00419,"101":0,"102":0.01256,"103":0.02932,"104":0,"105":0.00419,"106":0.02513,"107":0.00838,"108":0.01675,"109":1.18102,"110":0.00419,"111":0.01675,"112":0.01675,"113":0.03769,"114":0.0712,"115":0.29316,"116":8.11634,"117":1.80503,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00419,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00419,"47":0,"48":0,"49":0,"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.00419,"72":0.0335,"73":0.00838,"74":0,"75":0,"76":0,"77":0.02513,"78":0,"79":0,"80":0,"81":0,"82":0.00419,"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.00838,"96":0,"97":0,"98":0,"99":0.00419,"100":0.0712,"101":0.11726,"102":0.20102,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00419,"13":0.00419,"14":0.00838,"15":0,"16":0,"17":0,"18":0.00419,"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.00419,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00838,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01675,"108":0,"109":0.0335,"110":0.01256,"111":0,"112":0,"113":0.00419,"114":0.01256,"115":0.02094,"116":1.16426,"117":0.85435},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01256,"10":0,"11":0,"12":0,"13":0,"14":0.01675,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00419,"6.1":0,"7.1":0,"9.1":0.00419,"10.1":0,"11.1":0,"12.1":0.00419,"13.1":0.10051,"14.1":0.06282,"15.1":0.05026,"15.2-15.3":0.00838,"15.4":0.00838,"15.5":0.01675,"15.6":0.0712,"16.0":0.00838,"16.1":0.02094,"16.2":0.01256,"16.3":0.05863,"16.4":0.02513,"16.5":0.08376,"16.6":0.54863,"17.0":0.04188,"17.1":0},G:{"8":0.00391,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00782,"6.0-6.1":0.00391,"7.0-7.1":0.01759,"8.1-8.4":0.02736,"9.0-9.2":0.00977,"9.3":0.11726,"10.0-10.2":0,"10.3":0.06645,"11.0-11.2":0.07818,"11.3-11.4":0.00977,"12.0-12.1":0.03518,"12.2-12.5":0.19935,"13.0-13.1":0.00195,"13.2":0.00195,"13.3":0.03713,"13.4-13.7":0.04886,"14.0-14.4":0.08013,"14.5-14.8":0.23648,"15.0-15.1":0.09186,"15.2-15.3":0.20717,"15.4":0.06645,"15.5":0.11726,"15.6-15.7":1.14137,"16.0":0.44951,"16.1":0.8873,"16.2":0.42019,"16.3":0.92247,"16.4":0.16417,"16.5":0.67817,"16.6":11.83777,"17.0":1.38371,"17.1":0.00195},P:{"4":0.11239,"20":0.06131,"21":0.16348,"22":4.62862,"5.0-5.4":0,"6.2-6.4":0.01022,"7.2-7.4":0.01022,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01022,"12.0":0,"13.0":0.02044,"14.0":0.01022,"15.0":0.01022,"16.0":0.01022,"17.0":0.03065,"18.0":0.03065,"19.0":0.29631},I:{"0":0,"3":0.00721,"4":0.04685,"2.1":0.00721,"2.2":0.02522,"2.3":0.02883,"4.1":0.02883,"4.2-4.3":0.06126,"4.4":0,"4.4.3-4.4.4":0.15135},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00419,"8":0.04188,"9":0.00838,"10":0.00838,"11":0.07538,"5.5":0},S:{"2.5":0.00581,_:"3.0-3.1"},J:{"7":0,"10":0.01162},N:{"10":0.01453,"11":0.01453},L:{"0":52.16659},R:{_:"0"},M:{"0":1.28445},Q:{"13.1":0.00581},O:{"0":0.27316},H:{"0":0.41818}};
      +module.exports={C:{"24":0.00392,"52":0.01962,"72":0.00392,"78":0.00392,"88":0.01177,"92":0.00392,"94":0.00392,"102":0.00392,"108":0.00392,"109":0.00392,"111":0.01177,"112":0.00785,"113":0.00392,"114":0.00392,"115":0.18835,"116":0.0157,"117":0.03924,"118":1.18897,"119":0.23152,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 93 95 96 97 98 99 100 101 103 104 105 106 107 110 120 121 122 3.5 3.6"},D:{"38":0.02354,"42":0.00392,"43":0.00392,"44":0.00392,"45":0.00392,"46":0.00392,"47":0.00785,"49":0.01177,"51":0.00785,"53":0.01177,"56":0.00785,"58":0.00392,"68":0.01177,"69":0.00392,"70":0.00785,"71":0.00392,"72":0.00785,"73":0.00392,"74":0.00785,"75":0.00392,"76":0.00392,"77":0.01177,"78":0.00785,"79":0.08633,"80":0.01177,"81":0.00785,"83":0.01177,"84":0.00392,"85":0.00785,"86":0.0157,"87":0.12164,"88":0.02354,"89":0.0157,"90":0.01177,"91":0.04709,"93":0.16481,"94":0.00392,"95":0.03139,"96":0.01962,"98":0.01962,"99":0.00785,"100":0.00392,"101":0.00392,"102":0.0157,"103":0.06278,"104":0.00785,"105":0.00392,"106":0.01962,"107":0.01962,"108":0.04709,"109":2.42896,"110":0.01177,"111":0.01177,"112":0.03139,"113":0.07456,"114":0.10987,"115":0.07456,"116":1.10264,"117":11.772,"118":9.49608,"119":0.00785,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 48 50 52 54 55 57 59 60 61 62 63 64 65 66 67 92 97 120 121 122"},F:{"28":0.00785,"46":0.00392,"79":0.00392,"82":0.01177,"95":0.03139,"101":0.00392,"102":1.47542,"103":0.20405,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00392,"15":0.00392,"18":0.00785,"80":0.00392,"81":0.00392,"83":0.00392,"84":0.00392,"86":0.00392,"89":0.00392,"90":0.00392,"92":0.00392,"99":0.01177,"107":0.02354,"108":0.00392,"109":0.0981,"110":0.00785,"112":0.00392,"113":0.00392,"114":0.02354,"115":0.00392,"116":0.04316,"117":2.7625,"118":2.37402,_:"12 14 16 17 79 85 87 88 91 93 94 95 96 97 98 100 101 102 103 104 105 106 111 119"},E:{"9":0.01177,"13":0.00392,"14":0.07456,"15":0.00392,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.00392,"9.1":0.03924,"12.1":0.00785,"13.1":0.1805,"14.1":0.11772,"15.1":0.07848,"15.2-15.3":0.01177,"15.4":0.0157,"15.5":0.02747,"15.6":0.20405,"16.0":0.01962,"16.1":0.03532,"16.2":0.03139,"16.3":0.12164,"16.4":0.09025,"16.5":0.10987,"16.6":1.02809,"17.0":0.48658,"17.1":0.06278},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.00379,"7.0-7.1":0.00885,"8.1-8.4":0.00126,"9.0-9.2":0.00885,"9.3":0.03034,"10.0-10.2":0.00126,"10.3":0.04424,"11.0-11.2":0.04045,"11.3-11.4":0.0139,"12.0-12.1":0.01138,"12.2-12.5":0.20098,"13.0-13.1":0.00632,"13.2":0.03413,"13.3":0.01264,"13.4-13.7":0.04045,"14.0-14.4":0.11123,"14.5-14.8":0.17949,"15.0-15.1":0.07078,"15.2-15.3":0.0809,"15.4":0.08975,"15.5":0.12767,"15.6-15.7":0.88355,"16.0":0.32612,"16.1":0.62442,"16.2":0.30463,"16.3":0.56502,"16.4":0.12135,"16.5":0.32359,"16.6-16.7":6.06096,"17.0":2.15894,"17.1":0.13019,"17.2":0.00379},P:{"4":0.07235,"20":0.05168,"21":0.12404,"22":3.72106,"23":0.7132,"5.0-5.4":0.05168,"6.2-6.4":0.01034,_:"7.2-7.4 8.2 10.1 12.0 15.0","9.2":0.90959,"11.1-11.2":0.01034,"13.0":0.02067,"14.0":0.01034,"16.0":0.02067,"17.0":0.02067,"18.0":0.02067,"19.0":0.08269},I:{"0":0.09069,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00027},A:{"7":0.00392,"8":0.02747,"9":0.00392,"10":0.00392,"11":0.20797,_:"6 5.5"},K:{"0":0.35677,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00608,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.20054},Q:{_:"13.1"},O:{"0":0.22485},H:{"0":0.02},L:{"0":41.85796}};
      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 c45822d40c410b..edbddb31e0d789 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.03245,"49":0,"50":0,"51":0,"52":0.07573,"53":0,"54":0,"55":0,"56":0.01082,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00541,"69":0.00541,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02164,"79":0,"80":0.00541,"81":0.00541,"82":0,"83":0.00541,"84":0,"85":0,"86":0,"87":0,"88":0.00541,"89":0.00541,"90":0,"91":0.01623,"92":0,"93":0,"94":0,"95":0,"96":0.00541,"97":0,"98":0,"99":0.00541,"100":0,"101":0,"102":0.08654,"103":0.00541,"104":0.00541,"105":0.00541,"106":0.00541,"107":0.00541,"108":0.01082,"109":0.01082,"110":0.00541,"111":0.01082,"112":0.01082,"113":0.02705,"114":0.02164,"115":0.43813,"116":0.23259,"117":2.63418,"118":0.24881,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00541,"39":0,"40":0,"41":0.00541,"42":0,"43":0,"44":0,"45":0.00541,"46":0,"47":0,"48":0,"49":0.01082,"50":0,"51":0.01082,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00541,"69":0,"70":0.00541,"71":0.00541,"72":0,"73":0,"74":0.02705,"75":0,"76":0.01082,"77":0,"78":0.00541,"79":0.03786,"80":0.00541,"81":0.01082,"83":0.00541,"84":0.00541,"85":0.02164,"86":0.01082,"87":0.02705,"88":0.00541,"89":0.01623,"90":0.01623,"91":0.00541,"92":0,"93":0.07573,"94":0.00541,"95":0.01082,"96":0.01082,"97":0.01082,"98":0.00541,"99":0.01623,"100":0.00541,"101":0.00541,"102":0.16768,"103":0.03245,"104":0.01623,"105":0.02705,"106":0.04327,"107":0.02705,"108":0.0595,"109":0.86003,"110":0.02705,"111":0.02705,"112":0.75185,"113":0.02705,"114":0.1785,"115":0.28668,"116":10.59623,"117":3.14804,"118":0.00541,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00541,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00541,"47":0,"48":0,"49":0,"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.01082,"70":0,"71":0,"72":0.01623,"73":0.00541,"74":0,"75":0,"76":0,"77":0.04868,"78":0.00541,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02164,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00541,"93":0,"94":0,"95":0.12441,"96":0,"97":0,"98":0,"99":0.01623,"100":0.15686,"101":0.6599,"102":0.91412,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00541,"15":0,"16":0,"17":0.00541,"18":0.00541,"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.00541,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00541,"105":0.00541,"106":0,"107":0.01082,"108":0.00541,"109":0.06491,"110":0.00541,"111":0.03786,"112":0.02164,"113":0.01082,"114":0.07032,"115":0.09195,"116":2.15819,"117":1.8012},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00541,"10":0,"11":0,"12":0,"13":0,"14":0.02164,"15":0.00541,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00541,"10.1":0,"11.1":0,"12.1":0,"13.1":0.03245,"14.1":0.04327,"15.1":0.01082,"15.2-15.3":0.00541,"15.4":0.02164,"15.5":0.02164,"15.6":0.10277,"16.0":0.01623,"16.1":0.04327,"16.2":0.04868,"16.3":0.07573,"16.4":0.03245,"16.5":0.119,"16.6":0.62744,"17.0":0.05409,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00175,"6.0-6.1":0,"7.0-7.1":0.00349,"8.1-8.4":0.00699,"9.0-9.2":0,"9.3":0.04192,"10.0-10.2":0.00175,"10.3":0.05764,"11.0-11.2":0.03144,"11.3-11.4":0.00524,"12.0-12.1":0.01397,"12.2-12.5":0.18689,"13.0-13.1":0.00349,"13.2":0.00175,"13.3":0.3895,"13.4-13.7":0.01747,"14.0-14.4":0.05065,"14.5-14.8":0.12401,"15.0-15.1":0.03668,"15.2-15.3":0.08908,"15.4":0.06812,"15.5":0.09956,"15.6-15.7":1.23837,"16.0":0.43317,"16.1":0.92223,"16.2":0.45413,"16.3":0.81918,"16.4":0.12226,"16.5":0.44539,"16.6":9.92792,"17.0":1.65058,"17.1":0.00349},P:{"4":0.09297,"20":0.05165,"21":0.11363,"22":2.26222,"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.01033,"14.0":0.01033,"15.0":0,"16.0":0.01033,"17.0":0.01033,"18.0":0.01033,"19.0":0.03099},I:{"0":0,"3":0,"4":0.02015,"2.1":0,"2.2":0.01511,"2.3":0.01511,"4.1":0.03526,"4.2-4.3":0.04029,"4.4":0,"4.4.3-4.4.4":0.16622},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.05409,"9":0.00541,"10":0.04868,"11":0.07573,"5.5":0},S:{"2.5":0.00459,_:"3.0-3.1"},J:{"7":0,"10":0.00459},N:{"10":0,"11":0},L:{"0":47.47934},R:{_:"0"},M:{"0":0.3581},Q:{"13.1":0},O:{"0":0.16987},H:{"0":0.51288}};
      +module.exports={C:{"48":0.0834,"52":0.15568,"56":0.0278,"60":0.00556,"65":0.00556,"68":0.00556,"78":0.02224,"80":0.00556,"81":0.00556,"83":0.01112,"87":0.00556,"88":0.01112,"89":0.00556,"91":0.01112,"95":0.00556,"96":0.00556,"97":0.00556,"99":0.00556,"100":0.00556,"102":0.04448,"103":0.00556,"104":0.01668,"105":0.01668,"106":0.00556,"107":0.01112,"108":0.01668,"109":0.02224,"110":0.01112,"111":0.01112,"112":0.01112,"113":0.03892,"114":0.02224,"115":0.82844,"116":0.07784,"117":0.23352,"118":4.4758,"119":0.85068,"120":0.00556,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 66 67 69 70 71 72 73 74 75 76 77 79 82 84 85 86 90 92 93 94 98 101 121 122 3.5 3.6"},D:{"38":0.00556,"41":0.00556,"49":0.02224,"51":0.00556,"53":0.00556,"67":0.00556,"70":0.00556,"72":0.00556,"74":0.04448,"76":0.00556,"77":0.00556,"79":0.07784,"80":0.01112,"81":0.00556,"83":0.00556,"84":0.01112,"85":0.03892,"86":0.00556,"87":0.03336,"88":0.01112,"89":0.01668,"90":0.01668,"91":0.00556,"92":0.00556,"93":0.01668,"94":0.00556,"95":0.00556,"96":0.01112,"97":0.00556,"98":0.01112,"99":0.01668,"100":0.01112,"101":0.00556,"102":0.278,"103":0.07228,"104":0.01668,"105":0.03892,"106":0.01112,"107":0.03892,"108":0.05004,"109":1.51232,"110":0.03892,"111":0.0278,"112":1.07864,"113":0.03892,"114":0.26132,"115":0.14456,"116":1.00636,"117":13.7332,"118":13.48856,"119":0.01668,"120":0.00556,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 52 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 71 73 75 78 121 122"},F:{"36":0.01112,"46":0.01112,"69":0.00556,"75":0.00556,"85":0.03892,"89":0.00556,"93":0.00556,"95":0.21128,"96":0.00556,"99":0.00556,"101":0.02224,"102":2.69104,"103":0.85068,_:"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 70 71 72 73 74 76 77 78 79 80 81 82 83 84 86 87 88 90 91 92 94 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00556,"85":0.00556,"92":0.00556,"103":0.00556,"105":0.00556,"106":0.00556,"107":0.01112,"108":0.00556,"109":0.11676,"110":0.00556,"111":0.01112,"112":0.02224,"113":0.01112,"114":0.06672,"115":0.03336,"116":0.12232,"117":3.71408,"118":3.63068,"119":0.01112,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104"},E:{"8":0.00556,"9":0.00556,"13":0.00556,"14":0.03892,"15":0.00556,_:"0 4 5 6 7 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.00556,"9.1":0.01112,"12.1":0.00556,"13.1":0.07228,"14.1":0.0834,"15.1":0.01112,"15.2-15.3":0.01112,"15.4":0.04448,"15.5":0.04448,"15.6":0.20572,"16.0":0.0278,"16.1":0.07784,"16.2":0.1112,"16.3":0.13344,"16.4":0.06116,"16.5":0.17236,"16.6":0.82288,"17.0":0.61716,"17.1":0.0556},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0011,"5.0-5.1":0.0011,"6.0-6.1":0.00331,"7.0-7.1":0.00772,"8.1-8.4":0.0011,"9.0-9.2":0.00772,"9.3":0.02647,"10.0-10.2":0.0011,"10.3":0.0386,"11.0-11.2":0.03529,"11.3-11.4":0.01213,"12.0-12.1":0.00993,"12.2-12.5":0.17536,"13.0-13.1":0.00551,"13.2":0.02978,"13.3":0.01103,"13.4-13.7":0.03529,"14.0-14.4":0.09705,"14.5-14.8":0.15661,"15.0-15.1":0.06176,"15.2-15.3":0.07059,"15.4":0.07831,"15.5":0.11139,"15.6-15.7":0.77092,"16.0":0.28455,"16.1":0.54483,"16.2":0.2658,"16.3":0.49299,"16.4":0.10588,"16.5":0.28234,"16.6-16.7":5.28839,"17.0":1.88375,"17.1":0.1136,"17.2":0.00331},P:{"4":0.08334,"20":0.03125,"21":0.08334,"22":1.771,"23":0.3542,"5.0-5.4":0.01042,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0","13.0":0.01042,"14.0":0.01042,"16.0":0.01042,"17.0":0.01042,"18.0":0.01042,"19.0":0.02084},I:{"0":0.13252,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.0004},A:{"8":0.10008,"10":0.14456,"11":0.1112,_:"6 7 9 5.5"},K:{"0":0.57608,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.34632},Q:{_:"13.1"},O:{"0":0.17316},H:{"0":0.01},L:{"0":30.36268}};
      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 6b1000e6546d32..7645717b74eab1 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00568,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01705,"49":0.01137,"50":0.00568,"51":0,"52":0.06821,"53":0.0341,"54":0,"55":0,"56":0.00568,"57":0,"58":0,"59":0.00568,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00568,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00568,"78":0.02274,"79":0,"80":0.00568,"81":0.00568,"82":0,"83":0.00568,"84":0,"85":0,"86":0,"87":0,"88":0.00568,"89":0.00568,"90":0,"91":0.01137,"92":0,"93":0,"94":0,"95":0.00568,"96":0.00568,"97":0.00568,"98":0,"99":0.00568,"100":0,"101":0.00568,"102":0.51156,"103":0.00568,"104":0.00568,"105":0.00568,"106":0.00568,"107":0.00568,"108":0.01705,"109":0.01137,"110":0.01137,"111":0.01705,"112":0.01705,"113":0.0341,"114":0.02274,"115":0.43198,"116":0.20462,"117":3.54113,"118":0.36946,"119":0.00568,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01137,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00568,"42":0.00568,"43":0.02274,"44":0,"45":0,"46":0,"47":0,"48":0.00568,"49":0.00568,"50":0,"51":0,"52":0.00568,"53":0,"54":0,"55":0,"56":0.00568,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0341,"67":0,"68":0,"69":0.00568,"70":0.00568,"71":0,"72":0.01137,"73":0,"74":0.00568,"75":0.01137,"76":0.00568,"77":0.00568,"78":0.00568,"79":0.02842,"80":0.02842,"81":0.02842,"83":0.01137,"84":0.00568,"85":0.01705,"86":0.01137,"87":0.01705,"88":0.01137,"89":0.01705,"90":0.01705,"91":0.06821,"92":0.00568,"93":0.09094,"94":0.02842,"95":0.00568,"96":0.01705,"97":0.00568,"98":0.00568,"99":0.02842,"100":0.00568,"101":0.00568,"102":0.01137,"103":0.04547,"104":0.01137,"105":0.03979,"106":0.22736,"107":0.05116,"108":0.09663,"109":0.61387,"110":0.05684,"111":0.05684,"112":0.08526,"113":0.07389,"114":0.35809,"115":0.41493,"116":9.7708,"117":3.06368,"118":0.01705,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.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,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00568,"70":0.00568,"71":0.00568,"72":0.02274,"73":0.00568,"74":0,"75":0,"76":0,"77":0.05684,"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.04547,"96":0,"97":0,"98":0,"99":0.01137,"100":0.1762,"101":0.50019,"102":1.37553,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00568,"18":0.00568,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00568,"93":0,"94":0.00568,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00568,"104":0,"105":0.00568,"106":0.00568,"107":0.01137,"108":0.02274,"109":0.08526,"110":0.01705,"111":0.03979,"112":0.01705,"113":0.01705,"114":0.06821,"115":0.15347,"116":2.54075,"117":2.23381},E:{"4":0,"5":0,"6":0,"7":0.00568,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00568,"14":0.02274,"15":0.00568,_:"0","3.1":0,"3.2":0,"5.1":0.00568,"6.1":0,"7.1":0,"9.1":0.01137,"10.1":0,"11.1":0.00568,"12.1":0.00568,"13.1":0.05116,"14.1":0.07389,"15.1":0.01705,"15.2-15.3":0.01137,"15.4":0.02274,"15.5":0.0341,"15.6":0.22736,"16.0":0.05116,"16.1":0.07389,"16.2":0.07389,"16.3":0.16484,"16.4":0.05684,"16.5":0.19894,"16.6":1.39826,"17.0":0.13642,"17.1":0},G:{"8":0.00249,"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.00997,"8.1-8.4":0,"9.0-9.2":0.02243,"9.3":0.05235,"10.0-10.2":0,"10.3":0.08226,"11.0-11.2":0.03241,"11.3-11.4":0.07229,"12.0-12.1":0.00997,"12.2-12.5":0.26174,"13.0-13.1":0.00499,"13.2":0.00499,"13.3":0.20939,"13.4-13.7":0.03739,"14.0-14.4":0.11716,"14.5-14.8":0.24429,"15.0-15.1":0.09722,"15.2-15.3":0.08475,"15.4":0.09472,"15.5":0.2742,"15.6-15.7":1.28376,"16.0":0.82011,"16.1":1.17657,"16.2":0.56835,"16.3":1.14666,"16.4":0.26922,"16.5":0.68052,"16.6":14.60498,"17.0":2.22851,"17.1":0.00249},P:{"4":0.06249,"20":0.08332,"21":0.18746,"22":3.30146,"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.01041,"12.0":0,"13.0":0.02083,"14.0":0.01041,"15.0":0.01041,"16.0":0.03124,"17.0":0.03124,"18.0":0.02083,"19.0":0.05207},I:{"0":0,"3":0,"4":0.00971,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03885,"4.2-4.3":0.03885,"4.4":0,"4.4.3-4.4.4":0.12627},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00602,"9":0,"10":0,"11":0.09629,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":34.98484},R:{_:"0"},M:{"0":0.82004},Q:{"13.1":0.00432},O:{"0":0.14674},H:{"0":0.58023}};
      +module.exports={C:{"4":0.00543,"11":0.00543,"40":0.00543,"48":0.0434,"49":0.00543,"50":0.00543,"52":0.08138,"55":0.00543,"56":0.02713,"59":0.01085,"68":0.00543,"71":0.00543,"72":0.00543,"77":0.00543,"78":0.03798,"82":0.00543,"83":0.00543,"84":0.00543,"87":0.00543,"88":0.00543,"91":0.0217,"92":0.00543,"95":0.00543,"96":0.00543,"97":0.00543,"98":0.00543,"99":0.00543,"100":0.00543,"101":0.00543,"102":0.72695,"103":0.00543,"104":0.01085,"105":0.01085,"106":0.01628,"107":0.01628,"108":0.01628,"109":0.01628,"110":0.01628,"111":0.0217,"112":0.0217,"113":0.04883,"114":0.0217,"115":0.88428,"116":0.04883,"117":0.2387,"118":5.7505,"119":1.1935,"120":0.00543,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 51 53 54 57 58 60 61 62 63 64 65 66 67 69 70 73 74 75 76 79 80 81 85 86 89 90 93 94 121 122 3.5 3.6"},D:{"11":0.00543,"34":0.00543,"35":0.01628,"41":0.00543,"42":0.00543,"43":0.03255,"49":0.01628,"51":0.00543,"52":0.01085,"55":0.00543,"56":0.00543,"60":0.01085,"63":0.00543,"66":0.05968,"68":0.00543,"69":0.00543,"70":0.00543,"71":0.00543,"72":0.01628,"73":0.00543,"74":0.00543,"75":0.01628,"76":0.01085,"77":0.00543,"78":0.00543,"79":0.04883,"80":0.0434,"81":0.03255,"83":0.01628,"84":0.01628,"85":0.02713,"86":0.0217,"87":0.07053,"88":0.02713,"89":0.0217,"90":0.01628,"91":0.05425,"92":0.01085,"93":0.13563,"94":0.03255,"95":0.01085,"96":0.0217,"97":0.00543,"98":0.01085,"99":0.02713,"100":0.01085,"101":0.01085,"102":0.01628,"103":0.07053,"104":0.01628,"105":0.0434,"106":0.40145,"107":0.0868,"108":0.1519,"109":0.92768,"110":0.05968,"111":0.07595,"112":0.11935,"113":0.13563,"114":0.37975,"115":0.20073,"116":1.1067,"117":11.0453,"118":9.31473,"119":0.01628,"120":0.00543,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40 44 45 46 47 48 50 53 54 57 58 59 61 62 64 65 67 121 122"},F:{"32":0.00543,"36":0.00543,"46":0.03255,"79":0.00543,"85":0.00543,"91":0.00543,"92":0.00543,"93":0.00543,"94":0.00543,"95":0.08138,"99":0.00543,"100":0.01628,"101":0.0217,"102":4.17183,"103":0.64558,_:"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 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00543},B:{"17":0.00543,"18":0.00543,"85":0.00543,"90":0.00543,"92":0.01085,"96":0.00543,"97":0.00543,"98":0.00543,"99":0.00543,"100":0.00543,"101":0.00543,"103":0.01085,"104":0.00543,"105":0.00543,"106":0.01085,"107":0.0217,"108":0.03255,"109":0.13563,"110":0.0217,"111":0.0651,"112":0.02713,"113":0.0217,"114":0.05425,"115":0.08138,"116":0.18445,"117":4.03078,"118":3.61848,"119":0.00543,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 91 93 94 95 102"},E:{"7":0.00543,"13":0.00543,"14":0.04883,"15":0.01085,_:"0 4 5 6 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 17.2","5.1":0.01085,"9.1":0.01628,"11.1":0.01628,"12.1":0.01628,"13.1":0.08138,"14.1":0.14105,"15.1":0.03255,"15.2-15.3":0.0217,"15.4":0.0434,"15.5":0.07053,"15.6":0.38518,"16.0":0.09223,"16.1":0.14648,"16.2":0.13563,"16.3":0.2821,"16.4":0.1085,"16.5":0.27125,"16.6":1.8228,"17.0":1.09043,"17.1":0.07053},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00167,"5.0-5.1":0.00167,"6.0-6.1":0.005,"7.0-7.1":0.01166,"8.1-8.4":0.00167,"9.0-9.2":0.01166,"9.3":0.03996,"10.0-10.2":0.00167,"10.3":0.05828,"11.0-11.2":0.05329,"11.3-11.4":0.01832,"12.0-12.1":0.01499,"12.2-12.5":0.26477,"13.0-13.1":0.00833,"13.2":0.04496,"13.3":0.01665,"13.4-13.7":0.05329,"14.0-14.4":0.14654,"14.5-14.8":0.23646,"15.0-15.1":0.09325,"15.2-15.3":0.10657,"15.4":0.11823,"15.5":0.16819,"15.6-15.7":1.16398,"16.0":0.42962,"16.1":0.82261,"16.2":0.40131,"16.3":0.74435,"16.4":0.15986,"16.5":0.42629,"16.6-16.7":7.98466,"17.0":2.84417,"17.1":0.17152,"17.2":0.005},P:{"4":0.08423,"20":0.07371,"21":0.14741,"22":3.04298,"23":0.67388,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.01053,"12.0":0.01053,"13.0":0.03159,"14.0":0.03159,"15.0":0.01053,"16.0":0.02106,"17.0":0.03159,"18.0":0.02106,"19.0":0.04212},I:{"0":0.05008,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.00563,"9":0.00563,"11":0.14065,_:"6 7 10 5.5"},K:{"0":0.63606,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00458,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.88774},Q:{"13.1":0.00458},O:{"0":0.1327},H:{"0":0},L:{"0":23.48439}};
      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 c61a7ea8fbd3f0..408c4aa6e96f93 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DJ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DJ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00269,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00269,"103":0,"104":0,"105":0,"106":0.00269,"107":0,"108":0,"109":0.00539,"110":0.00539,"111":0.01077,"112":0.00269,"113":0.00539,"114":0.00269,"115":0.29084,"116":0.01347,"117":0.35278,"118":0.0404,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00269,"46":0.00269,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01885,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00539,"66":0,"67":0.35548,"68":0,"69":0,"70":0.00269,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00539,"80":0,"81":0.00808,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00808,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01077,"99":0.01885,"100":0,"101":0.00539,"102":0,"103":0.00539,"104":0,"105":0.00269,"106":0.00539,"107":0,"108":0.00808,"109":0.5386,"110":0.01077,"111":0.00539,"112":0.00539,"113":0.01077,"114":0.12388,"115":0.0781,"116":2.62298,"117":0.78636,"118":0.00808,"119":0.00269,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00269,"70":0,"71":0.01616,"72":0.11311,"73":0.02154,"74":0,"75":0,"76":0,"77":0.01347,"78":0.00269,"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.36356,"100":0,"101":0.00808,"102":0.00808,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00269,"10.6":0.01885,"11.1":0.00269,"11.5":0,"11.6":0,"12.1":0.00269},B:{"12":0,"13":0,"14":0.00539,"15":0,"16":0,"17":0,"18":0.00269,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00539,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01885,"110":0.00269,"111":0,"112":0.00269,"113":0.02424,"114":0.01077,"115":0.0754,"116":0.56822,"117":0.40395},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00269,"15":0.00269,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00269,"14.1":0.00269,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00269,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0.01077,"16.6":0.06194,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00089,"8.1-8.4":0,"9.0-9.2":0.00894,"9.3":0.00805,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.00984,"12.0-12.1":0.05813,"12.2-12.5":0.10106,"13.0-13.1":0.0939,"13.2":0.04024,"13.3":0.04919,"13.4-13.7":0.02146,"14.0-14.4":0.30138,"14.5-14.8":0.73244,"15.0-15.1":0.06081,"15.2-15.3":0.06976,"15.4":0.02415,"15.5":0.03935,"15.6-15.7":0.47577,"16.0":0.08854,"16.1":0.27634,"16.2":0.47041,"16.3":0.31301,"16.4":0.10732,"16.5":0.68772,"16.6":4.16747,"17.0":0.68236,"17.1":0.00179},P:{"4":1.13567,"20":0.36181,"21":0.69346,"22":1.80903,"5.0-5.4":0.0201,"6.2-6.4":0.01005,"7.2-7.4":0.33166,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.13065,"12.0":0.03015,"13.0":1.00502,"14.0":0.03015,"15.0":0.01005,"16.0":0.0603,"17.0":0.01005,"18.0":0.201,"19.0":0.201},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.02937},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":73.02851},R:{_:"0"},M:{"0":0.16075},Q:{"13.1":0},O:{"0":1.28603},H:{"0":1.08609}};
      +module.exports={C:{"29":0.0026,"33":0.013,"89":0.0026,"91":0.0052,"102":0.0052,"109":0.03119,"111":0.01819,"113":0.10396,"115":1.15656,"117":0.0104,"118":0.98242,"119":0.47822,"120":0.0078,_:"2 3 4 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 112 114 116 121 122 3.5 3.6"},D:{"22":0.0026,"46":0.0026,"49":0.0104,"58":0.03379,"59":0.0052,"68":0.0078,"69":0.05198,"74":0.0026,"78":0.0026,"84":0.0026,"87":0.0052,"88":0.013,"89":0.0052,"91":0.0078,"93":0.0104,"95":0.0026,"96":0.0026,"97":0.0026,"99":0.0026,"101":0.0026,"103":0.02339,"104":0.0052,"105":0.0026,"106":0.0078,"107":0.0026,"108":0.0052,"109":2.65098,"110":0.03639,"111":0.0104,"112":0.03639,"113":0.05198,"114":0.11436,"115":0.02859,"116":0.68354,"117":5.77238,"118":6.01409,"119":0.02339,"120":0.04158,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 60 61 62 63 64 65 66 67 70 71 72 73 75 76 77 79 80 81 83 85 86 90 92 94 98 100 102 121 122"},F:{"40":0.0026,"95":0.0104,"99":0.47042,"102":0.06757,"103":0.06238,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0078,"14":0.0026,"15":0.0026,"16":0.01819,"17":0.0026,"18":0.02339,"89":0.0104,"90":0.0026,"92":0.03379,"101":0.0026,"107":0.0026,"108":0.0026,"109":0.05458,"110":0.0104,"111":0.0052,"112":0.013,"113":0.07797,"114":0.01819,"115":0.14035,"116":0.04418,"117":2.43266,"118":1.98564,_:"13 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 100 102 103 104 105 106 119"},E:{"14":0.0026,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.4 15.5 17.1 17.2","13.1":0.0078,"14.1":0.013,"15.2-15.3":0.0104,"15.6":0.02859,"16.0":0.01559,"16.1":0.0104,"16.2":0.0052,"16.3":0.01559,"16.4":0.0052,"16.5":0.0104,"16.6":0.12215,"17.0":0.03899},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00068,"5.0-5.1":0.00068,"6.0-6.1":0.00203,"7.0-7.1":0.00473,"8.1-8.4":0.00068,"9.0-9.2":0.00473,"9.3":0.01621,"10.0-10.2":0.00068,"10.3":0.02365,"11.0-11.2":0.02162,"11.3-11.4":0.00743,"12.0-12.1":0.00608,"12.2-12.5":0.10742,"13.0-13.1":0.00338,"13.2":0.01824,"13.3":0.00676,"13.4-13.7":0.02162,"14.0-14.4":0.05945,"14.5-14.8":0.09594,"15.0-15.1":0.03783,"15.2-15.3":0.04324,"15.4":0.04797,"15.5":0.06824,"15.6-15.7":0.47226,"16.0":0.17431,"16.1":0.33376,"16.2":0.16282,"16.3":0.302,"16.4":0.06486,"16.5":0.17296,"16.6-16.7":3.2396,"17.0":1.15396,"17.1":0.06959,"17.2":0.00203},P:{"4":0.4544,"20":0.4342,"21":0.39381,"22":1.36319,"23":0.15147,"5.0-5.4":0.03029,"6.2-6.4":0.0101,"7.2-7.4":0.36352,_:"8.2 10.1 15.0 17.0","9.2":0.0101,"11.1-11.2":0.12117,"12.0":0.0202,"13.0":0.30293,"14.0":0.0101,"16.0":0.06059,"18.0":0.09088,"19.0":0.17166},I:{"0":0.08835,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00027},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.8606,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.259},Q:{"13.1":0.0148},O:{"0":1.6132},H:{"0":0.02},L:{"0":61.7806}};
      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 1b0f79d74d5b4a..a759af8e1705f7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02192,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01462,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00731,"88":0.00731,"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.05116,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00731,"113":0.00731,"114":0.00731,"115":0.11693,"116":0.07308,"117":1.16928,"118":0.10962,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00731,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00731,"45":0,"46":0,"47":0,"48":0,"49":0.00731,"50":0,"51":0,"52":0.02923,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00731,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00731,"77":0,"78":0.00731,"79":0.01462,"80":0,"81":0,"83":0,"84":0,"85":0.00731,"86":0.02923,"87":0.02923,"88":0.02192,"89":0.01462,"90":0.00731,"91":0.00731,"92":0.00731,"93":0.05116,"94":0.00731,"95":0.00731,"96":0.00731,"97":0.00731,"98":0.00731,"99":0.00731,"100":0.00731,"101":0.00731,"102":0.00731,"103":0.2704,"104":0.01462,"105":0.02192,"106":0.00731,"107":0.04385,"108":0.03654,"109":0.85504,"110":0.07308,"111":0.08039,"112":0.16078,"113":0.14616,"114":0.89888,"115":1.50545,"116":26.10418,"117":7.62224,"118":0.00731,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00731,"47":0,"48":0,"49":0,"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.01462,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02192,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00731,"96":0,"97":0,"98":0,"99":0.00731,"100":0.13154,"101":0.28501,"102":0.62849,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01462,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00731,"104":0,"105":0.00731,"106":0.00731,"107":0.00731,"108":0.00731,"109":0.06577,"110":0.00731,"111":0.00731,"112":0.01462,"113":0.02192,"114":0.04385,"115":0.23386,"116":3.26668,"117":2.71858},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00731,"14":0.0877,"15":0.02192,_:"0","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.00731,"13.1":0.08039,"14.1":0.28501,"15.1":0.05846,"15.2-15.3":0.05116,"15.4":0.07308,"15.5":0.10231,"15.6":0.49694,"16.0":0.0877,"16.1":0.16808,"16.2":0.13885,"16.3":0.41656,"16.4":0.24116,"16.5":0.4531,"16.6":2.03893,"17.0":0.11693,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.06629,"9.3":0.0904,"10.0-10.2":0,"10.3":0.06027,"11.0-11.2":0.02411,"11.3-11.4":0.00904,"12.0-12.1":0.00904,"12.2-12.5":0.28024,"13.0-13.1":0,"13.2":0,"13.3":0.06931,"13.4-13.7":0.02411,"14.0-14.4":0.09341,"14.5-14.8":0.20792,"15.0-15.1":0.07232,"15.2-15.3":0.12355,"15.4":0.09944,"15.5":0.23806,"15.6-15.7":1.47052,"16.0":0.79854,"16.1":1.56996,"16.2":0.6539,"16.3":1.76282,"16.4":0.16272,"16.5":0.74731,"16.6":18.95103,"17.0":2.01594,"17.1":0},P:{"4":0.0311,"20":0.0311,"21":0.04147,"22":1.05739,"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.01037,"18.0":0,"19.0":0.01037},I:{"0":0,"3":0,"4":0.00915,"2.1":0,"2.2":0.00457,"2.3":0.00457,"4.1":0.00762,"4.2-4.3":0.02135,"4.4":0,"4.4.3-4.4.4":0.08234},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.06577,"9":0.00731,"10":0.00731,"11":0.11693,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":14.74076},R:{_:"0"},M:{"0":0.21805},Q:{"13.1":0},O:{"0":0.01346},H:{"0":0.11214}};
      +module.exports={C:{"52":0.02812,"78":0.02109,"87":0.00703,"91":0.00703,"96":0.00703,"102":0.02109,"110":0.00703,"115":0.14761,"116":0.01406,"117":0.05623,"118":1.22305,"119":0.24602,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 97 98 99 100 101 103 104 105 106 107 108 109 111 112 113 114 120 121 122 3.5 3.6"},D:{"44":0.00703,"48":0.00703,"49":0.01406,"52":0.02109,"66":0.00703,"76":0.00703,"78":0.00703,"79":0.02109,"85":0.01406,"86":0.00703,"87":0.04217,"88":0.02109,"89":0.02109,"90":0.00703,"91":0.00703,"92":0.01406,"93":0.06326,"94":0.00703,"95":0.01406,"96":0.00703,"97":0.01406,"98":0.00703,"99":0.01406,"100":0.01406,"101":0.00703,"102":0.01406,"103":0.29522,"104":0.02812,"105":0.02812,"106":0.01406,"107":0.0492,"108":0.0492,"109":0.7029,"110":0.07732,"111":0.07029,"112":0.1687,"113":0.16167,"114":0.56935,"115":0.66776,"116":4.46342,"117":23.85643,"118":19.76555,"119":0.01406,"120":0.00703,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 77 80 81 83 84 121 122"},F:{"46":0.00703,"95":0.02109,"99":0.00703,"100":0.00703,"101":0.00703,"102":1.52529,"103":0.14761,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00703,"97":0.03515,"107":0.02109,"108":0.01406,"109":0.05623,"110":0.00703,"111":0.00703,"112":0.01406,"113":0.01406,"114":0.02109,"115":0.0492,"116":0.17573,"117":3.57776,"118":3.0787,"119":0.00703,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 101 102 103 104 105 106"},E:{"5":0.00703,"13":0.00703,"14":0.13355,"15":0.02812,_:"0 4 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.01406,"13.1":0.11949,"14.1":0.52718,"15.1":0.07732,"15.2-15.3":0.07732,"15.4":0.11949,"15.5":0.16167,"15.6":0.71696,"16.0":0.11246,"16.1":0.25304,"16.2":0.21087,"16.3":0.61152,"16.4":0.37254,"16.5":0.58341,"16.6":2.25631,"17.0":1.06841,"17.1":0.05623},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0019,"5.0-5.1":0.0019,"6.0-6.1":0.00569,"7.0-7.1":0.01327,"8.1-8.4":0.0019,"9.0-9.2":0.01327,"9.3":0.0455,"10.0-10.2":0.0019,"10.3":0.06635,"11.0-11.2":0.06067,"11.3-11.4":0.02085,"12.0-12.1":0.01706,"12.2-12.5":0.30144,"13.0-13.1":0.00948,"13.2":0.05119,"13.3":0.01896,"13.4-13.7":0.06067,"14.0-14.4":0.16683,"14.5-14.8":0.26921,"15.0-15.1":0.10617,"15.2-15.3":0.12133,"15.4":0.1346,"15.5":0.19148,"15.6-15.7":1.32519,"16.0":0.48913,"16.1":0.93654,"16.2":0.4569,"16.3":0.84744,"16.4":0.182,"16.5":0.48533,"16.6-16.7":9.09055,"17.0":3.23809,"17.1":0.19527,"17.2":0.00569},P:{"4":0.0106,"20":0.02119,"21":0.03179,"22":0.93243,"23":0.21192,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","19.0":0.0106},I:{"0":0.06801,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"8":0.09841,"9":0.00703,"11":0.12652,_:"6 7 10 5.5"},K:{"0":0.0951,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.21993},Q:{_:"13.1"},O:{"0":0.01189},H:{"0":0},L:{"0":9.20277}};
      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 3876fbcf77cebe..8d88e138ef0ce7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.0086,"116":0.0602,"117":0.2107,"118":0.0086,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0086,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0043,"70":0,"71":0,"72":0,"73":0,"74":0.0043,"75":0.0043,"76":0.5762,"77":0.0731,"78":0,"79":0.0129,"80":0,"81":0.0043,"83":0,"84":0,"85":0,"86":0,"87":0.0043,"88":0.0043,"89":0.0129,"90":0.0043,"91":0.0086,"92":0,"93":0.043,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0258,"101":0,"102":0.0043,"103":0.0473,"104":0.0043,"105":0.1204,"106":0.0086,"107":0.0043,"108":0.0129,"109":0.4687,"110":0.0043,"111":0.0043,"112":0.0215,"113":0.0344,"114":0.2322,"115":0.3053,"116":6.7639,"117":1.6512,"118":0.0043,"119":0.0129,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0215,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.2967,"73":0,"74":0,"75":0,"76":0,"77":0.0086,"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.0215,"101":0.1376,"102":0.0731,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.0086,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.1161,"110":0,"111":0,"112":0,"113":0,"114":0.0129,"115":0.043,"116":1.6555,"117":1.0965},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0043,"14":0.1075,"15":0,_:"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,"12.1":0,"13.1":0.0086,"14.1":0.0301,"15.1":0,"15.2-15.3":0,"15.4":0.0086,"15.5":0.0215,"15.6":0.1075,"16.0":0,"16.1":0.0602,"16.2":0.0602,"16.3":0.0258,"16.4":0.0172,"16.5":0.0344,"16.6":0.4042,"17.0":0.0946,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.11702,"10.0-10.2":0,"10.3":0.03203,"11.0-11.2":0.00739,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.12442,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.1121,"14.0-14.4":0.08377,"14.5-14.8":0.05913,"15.0-15.1":0.01232,"15.2-15.3":0.00985,"15.4":0.01478,"15.5":0.12688,"15.6-15.7":1.25278,"16.0":0.16876,"16.1":1.7332,"16.2":0.1121,"16.3":0.32028,"16.4":0.04681,"16.5":0.18108,"16.6":6.89214,"17.0":0.78838,"17.1":0},P:{"4":0.06369,"20":0.13799,"21":0.11676,"22":3.89556,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.60503,"8.2":0,"9.2":0,"10.1":0.02123,"11.1-11.2":0.01061,"12.0":0,"13.0":0.04246,"14.0":0,"15.0":0,"16.0":0.02123,"17.0":0.0743,"18.0":0.03184,"19.0":0.06369},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.7481},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0.0057},L:{"0":62.5342},R:{_:"0"},M:{"0":0.0627},Q:{"13.1":0},O:{"0":0.1026},H:{"0":0.86882}};
      +module.exports={C:{"115":0.02397,"117":0.01918,"118":0.70472,"119":0.06232,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"53":0.00959,"56":0.00959,"65":0.00959,"69":0.00959,"72":0.00479,"74":0.00959,"75":0.01918,"76":0.81498,"77":0.06232,"79":0.01438,"81":0.00959,"84":0.00479,"87":0.01438,"88":0.01438,"91":0.02876,"93":0.07191,"94":0.00959,"95":0.00959,"100":0.00959,"102":0.00479,"103":0.23491,"104":0.00959,"105":0.13903,"107":0.03356,"109":1.10262,"110":0.02397,"113":0.00959,"114":0.03835,"115":0.08629,"116":0.94442,"117":13.20268,"118":10.15369,"119":0.02876,"120":0.03835,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 57 58 59 60 61 62 63 64 66 67 68 70 71 73 78 80 83 85 86 89 90 92 96 97 98 99 101 106 108 111 112 121 122"},F:{"77":0.01438,"101":0.00479,"102":0.43625,"103":0.03835,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01918,"109":0.04794,"114":0.06232,"115":0.00959,"116":0.0767,"117":3.36059,"118":3.3558,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 119"},E:{"14":0.43146,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.4 17.2","5.1":0.00959,"14.1":0.11506,"15.2-15.3":0.00479,"15.5":0.02397,"15.6":0.17738,"16.0":0.01918,"16.1":0.11985,"16.2":0.12944,"16.3":0.01438,"16.4":0.04794,"16.5":0.04794,"16.6":0.67595,"17.0":1.46696,"17.1":0.00479},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00074,"5.0-5.1":0.00074,"6.0-6.1":0.00223,"7.0-7.1":0.00521,"8.1-8.4":0.00074,"9.0-9.2":0.00521,"9.3":0.01788,"10.0-10.2":0.00074,"10.3":0.02607,"11.0-11.2":0.02384,"11.3-11.4":0.00819,"12.0-12.1":0.0067,"12.2-12.5":0.11845,"13.0-13.1":0.00372,"13.2":0.02011,"13.3":0.00745,"13.4-13.7":0.02384,"14.0-14.4":0.06556,"14.5-14.8":0.10579,"15.0-15.1":0.04172,"15.2-15.3":0.04768,"15.4":0.05289,"15.5":0.07524,"15.6-15.7":0.52074,"16.0":0.1922,"16.1":0.36802,"16.2":0.17954,"16.3":0.33301,"16.4":0.07152,"16.5":0.19071,"16.6-16.7":3.57217,"17.0":1.27242,"17.1":0.07673,"17.2":0.00223},P:{"4":0.03311,"20":0.14347,"21":0.05518,"22":2.03063,"23":0.58491,_:"5.0-5.4 6.2-6.4 8.2 11.1-11.2 14.0 18.0","7.2-7.4":0.11036,"9.2":0.01104,"10.1":0.02207,"12.0":0.01104,"13.0":0.03311,"15.0":0.06622,"16.0":0.02207,"17.0":0.04414,"19.0":0.05518},I:{"0":0.06733,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"11":2.09498,_:"6 7 8 9 10 5.5"},K:{"0":0.47895,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.27071},Q:{_:"13.1"},O:{"0":0.11974},H:{"0":0},L:{"0":47.20877}};
      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 34a23b6df43f67..455e2ec167c466 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00432,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00432,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.04756,"74":0,"75":0,"76":0,"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.00432,"103":0,"104":0.09945,"105":0.00432,"106":0.01297,"107":0,"108":0,"109":0.00865,"110":0,"111":0,"112":0.00432,"113":0.00865,"114":0.01297,"115":0.04324,"116":0.03027,"117":0.3243,"118":0.02594,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00432,"34":0,"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.00432,"48":0,"49":0.02162,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00432,"64":0.00432,"65":0.00432,"66":0.00432,"67":0,"68":0.00432,"69":0.00865,"70":0.00432,"71":0,"72":0.00865,"73":0.00432,"74":0.00865,"75":0.00432,"76":0.00432,"77":0.00432,"78":0.00432,"79":0.02162,"80":0.00865,"81":0.02594,"83":0.00865,"84":0,"85":0.00865,"86":0.00865,"87":0.03892,"88":0.01297,"89":0.00865,"90":0.02594,"91":0.03027,"92":0.00865,"93":0.03027,"94":0.00432,"95":0.00432,"96":0.01297,"97":0.0173,"98":0.00432,"99":0.00865,"100":0.00432,"101":0.00432,"102":0.00865,"103":0.05189,"104":0.00432,"105":0.03027,"106":0.04324,"107":0.07351,"108":0.04324,"109":0.9729,"110":0.03892,"111":0.06918,"112":0.05621,"113":0.03892,"114":0.14269,"115":0.25512,"116":8.04264,"117":2.12741,"118":0.00432,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00432,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00432,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"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.00432,"70":0,"71":0,"72":0.0173,"73":0,"74":0,"75":0,"76":0,"77":0.0173,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00432,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00432,"94":0.00865,"95":0.0173,"96":0.0173,"97":0,"98":0,"99":0.00865,"100":0.13837,"101":0.24214,"102":0.30268,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.0173,"79":0,"80":0,"81":0,"83":0,"84":0.00432,"85":0.00432,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0173,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00432,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00865,"108":0,"109":0.03027,"110":0.00432,"111":0.00865,"112":0.00432,"113":0.00865,"114":0.02162,"115":0.03027,"116":0.96858,"117":0.71778},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00432,"14":0.0173,"15":0.00432,_:"0","3.1":0,"3.2":0,"5.1":0.00432,"6.1":0,"7.1":0,"9.1":0.03459,"10.1":0,"11.1":0,"12.1":0.00432,"13.1":0.02162,"14.1":0.03892,"15.1":0.00865,"15.2-15.3":0.00432,"15.4":0.00865,"15.5":0.02162,"15.6":0.07783,"16.0":0.00865,"16.1":0.03027,"16.2":0.02594,"16.3":0.05621,"16.4":0.03892,"16.5":0.11675,"16.6":0.4324,"17.0":0.02162,"17.1":0},G:{"8":0,"3.2":0.02965,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04582,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1105,"10.0-10.2":0,"10.3":0.03234,"11.0-11.2":0.01078,"11.3-11.4":0.00809,"12.0-12.1":0.03504,"12.2-12.5":0.35037,"13.0-13.1":0.01078,"13.2":0.00539,"13.3":0.0539,"13.4-13.7":0.06199,"14.0-14.4":0.28568,"14.5-14.8":0.39618,"15.0-15.1":0.11859,"15.2-15.3":0.18057,"15.4":0.1671,"15.5":0.32611,"15.6-15.7":3.39855,"16.0":0.81393,"16.1":1.43381,"16.2":0.70343,"16.3":1.41764,"16.4":0.24526,"16.5":0.76811,"16.6":13.98771,"17.0":1.50119,"17.1":0.00809},P:{"4":0.08462,"20":0.06347,"21":0.10578,"22":1.25878,"5.0-5.4":0.01058,"6.2-6.4":0,"7.2-7.4":0.0952,"8.2":0,"9.2":0.01058,"10.1":0,"11.1-11.2":0.05289,"12.0":0,"13.0":0.01058,"14.0":0.01058,"15.0":0.01058,"16.0":0.05289,"17.0":0.03173,"18.0":0.02116,"19.0":0.04231},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02482,"4.4":0,"4.4.3-4.4.4":0.41569},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00528,"9":0,"10":0,"11":0.04228,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":52.41843},R:{_:"0"},M:{"0":0.33488},Q:{"13.1":0},O:{"0":0.06244},H:{"0":0.2042}};
      +module.exports={C:{"48":0.00448,"52":0.00896,"61":0.02241,"73":0.10754,"78":0.00448,"81":0.00448,"102":0.00448,"104":0.00448,"105":0.01792,"106":0.00448,"108":0.00448,"109":0.01344,"110":0.04481,"113":0.00448,"114":0.01344,"115":0.10754,"116":0.00448,"117":0.06273,"118":0.77969,"119":0.10754,"120":0.00448,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 107 111 112 121 122 3.5 3.6"},D:{"38":0.00896,"47":0.00896,"48":0.00448,"49":0.05825,"52":0.00448,"56":0.00448,"60":0.00448,"63":0.00448,"65":0.00448,"66":0.00448,"68":0.00448,"69":0.2599,"70":0.00448,"72":0.01344,"73":0.00448,"74":0.00896,"75":0.00896,"76":0.00896,"77":0.06273,"78":0.00448,"79":0.03585,"80":0.01792,"81":0.00896,"83":0.01792,"84":0.00896,"85":0.00896,"86":0.02689,"87":0.08514,"88":0.01792,"89":0.00448,"90":0.00896,"91":0.0717,"92":0.00448,"93":0.6139,"94":0.00896,"95":0.01344,"96":0.00896,"97":0.06722,"98":0.00448,"99":0.00448,"100":0.00448,"101":0.00448,"102":0.01792,"103":0.38537,"104":0.01344,"105":0.08962,"106":0.04481,"107":0.17476,"108":0.10306,"109":2.13744,"110":0.07618,"111":0.08066,"112":0.08962,"113":0.04481,"114":0.23749,"115":0.10754,"116":1.13369,"117":12.027,"118":12.70364,"119":0.01344,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 53 54 55 57 58 59 61 62 64 67 71 120 121 122"},F:{"28":0.00448,"69":0.00448,"78":0.00448,"90":0.01344,"93":0.00448,"95":0.02241,"100":0.00448,"101":0.01792,"102":1.44736,"103":0.21509,_:"9 11 12 15 16 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 79 80 81 82 83 84 85 86 87 88 89 91 92 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00448,"17":0.00448,"18":0.04481,"80":0.00448,"85":0.00448,"89":0.00448,"92":0.04033,"100":0.00448,"103":0.00448,"106":0.01344,"107":0.01344,"108":0.04929,"109":0.10306,"110":0.02241,"111":0.00896,"112":0.01792,"113":0.01344,"114":0.02241,"115":0.03137,"116":0.0717,"117":2.19121,"118":2.24498,"119":0.01344,_:"12 13 14 16 79 81 83 84 86 87 88 90 91 93 94 95 96 97 98 99 101 102 104 105"},E:{"12":0.00448,"14":0.05377,"15":0.01792,_:"0 4 5 6 7 8 9 10 11 13 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.00448,"11.1":0.00448,"12.1":0.00448,"13.1":0.05825,"14.1":0.22405,"15.1":0.00896,"15.2-15.3":0.01344,"15.4":0.0941,"15.5":0.03137,"15.6":0.16132,"16.0":0.02241,"16.1":0.08514,"16.2":0.06722,"16.3":0.0941,"16.4":0.08962,"16.5":0.17028,"16.6":0.89172,"17.0":0.26886,"17.1":0.02689},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00161,"5.0-5.1":0.00161,"6.0-6.1":0.00482,"7.0-7.1":0.01124,"8.1-8.4":0.00161,"9.0-9.2":0.01124,"9.3":0.03854,"10.0-10.2":0.00161,"10.3":0.05621,"11.0-11.2":0.05139,"11.3-11.4":0.01767,"12.0-12.1":0.01445,"12.2-12.5":0.25536,"13.0-13.1":0.00803,"13.2":0.04336,"13.3":0.01606,"13.4-13.7":0.05139,"14.0-14.4":0.14133,"14.5-14.8":0.22806,"15.0-15.1":0.08994,"15.2-15.3":0.10279,"15.4":0.11403,"15.5":0.16221,"15.6-15.7":1.12261,"16.0":0.41436,"16.1":0.79338,"16.2":0.38705,"16.3":0.71789,"16.4":0.15418,"16.5":0.41114,"16.6-16.7":7.70091,"17.0":2.7431,"17.1":0.16542,"17.2":0.00482},P:{"4":0.08475,"20":0.04237,"21":0.07415,"22":0.90045,"23":0.1589,"5.0-5.4":0.01059,_:"6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.07415,"9.2":0.01059,"11.1-11.2":0.04237,"13.0":0.01059,"14.0":0.01059,"15.0":0.01059,"16.0":0.04237,"17.0":0.02119,"18.0":0.03178,"19.0":0.05297},I:{"0":0.04942,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.00982,"9":0.00491,"10":0.00491,"11":0.08343,_:"6 7 5.5"},K:{"0":0.25939,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.33666},Q:{_:"13.1"},O:{"0":0.06623},H:{"0":0},L:{"0":39.57428}};
      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 f2463d0587c944..96dc32828a1f35 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00316,"39":0,"40":0,"41":0,"42":0,"43":0.00316,"44":0,"45":0,"46":0,"47":0.00316,"48":0,"49":0,"50":0,"51":0,"52":0.02844,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00316,"68":0,"69":0,"70":0,"71":0,"72":0.00316,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00316,"82":0,"83":0,"84":0,"85":0.00316,"86":0,"87":0,"88":0.00316,"89":0,"90":0,"91":0.00632,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00316,"100":0,"101":0,"102":0.01896,"103":0.00316,"104":0.00316,"105":0.00316,"106":0.00316,"107":0.00316,"108":0.00316,"109":0.00316,"110":0.0158,"111":0.00316,"112":0.00316,"113":0.00948,"114":0.00632,"115":0.31916,"116":0.02212,"117":0.3002,"118":0.02844,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00316,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00316,"34":0,"35":0,"36":0,"37":0,"38":0.00316,"39":0,"40":0.00316,"41":0,"42":0,"43":0.01264,"44":0,"45":0.00316,"46":0,"47":0.00316,"48":0,"49":0.02528,"50":0.00316,"51":0.00632,"52":0,"53":0,"54":0,"55":0.00316,"56":0.00632,"57":0,"58":0.00632,"59":0,"60":0.00316,"61":0.00316,"62":0,"63":0.00632,"64":0.00316,"65":0.00316,"66":0,"67":0,"68":0.00948,"69":0.00316,"70":0.00632,"71":0.00316,"72":0.00948,"73":0,"74":0.00948,"75":0.00316,"76":0.00316,"77":0.00316,"78":0.00316,"79":0.02528,"80":0.00316,"81":0.02528,"83":0.01264,"84":0.00632,"85":0.02528,"86":0.00632,"87":0.04424,"88":0.01264,"89":0.00632,"90":0.01264,"91":0.00632,"92":0.00948,"93":0.00948,"94":0.00316,"95":0.0158,"96":0.00948,"97":0.00948,"98":0.02212,"99":0.01264,"100":0.00948,"101":0.01264,"102":0.04108,"103":0.02212,"104":0.00948,"105":0.02528,"106":0.02212,"107":0.07268,"108":0.05372,"109":2.50588,"110":0.01896,"111":0.02212,"112":0.02844,"113":0.01896,"114":0.06636,"115":0.079,"116":2.49008,"117":0.75524,"118":0.00316,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00316,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00316,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00316,"70":0.00632,"71":0.00316,"72":0.0316,"73":0.01264,"74":0,"75":0,"76":0,"77":0.0158,"78":0.00316,"79":0.01264,"80":0,"81":0,"82":0,"83":0,"84":0.00632,"85":0.00948,"86":0.00948,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.07584,"96":0,"97":0,"98":0,"99":0.00316,"100":0.0316,"101":0.1264,"102":0.14852,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00316,"13":0.00316,"14":0,"15":0.00316,"16":0,"17":0,"18":0.00632,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00316,"87":0,"88":0,"89":0,"90":0.02844,"91":0,"92":0.00948,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00316,"108":0.00316,"109":0.0316,"110":0.00316,"111":0.00632,"112":0.00316,"113":0.00316,"114":0.0158,"115":0.0158,"116":0.4582,"117":0.24648},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00316,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00316,"6.1":0,"7.1":0,"9.1":0.00316,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00316,"14.1":0.00316,"15.1":0,"15.2-15.3":0,"15.4":0.00316,"15.5":0.00316,"15.6":0.0158,"16.0":0,"16.1":0.00632,"16.2":0.00316,"16.3":0.00948,"16.4":0.00632,"16.5":0.0158,"16.6":0.06952,"17.0":0.00948,"17.1":0},G:{"8":0,"3.2":0.0024,"4.0-4.1":0,"4.2-4.3":0.0008,"5.0-5.1":0.0064,"6.0-6.1":0.0048,"7.0-7.1":0.06957,"8.1-8.4":0.0072,"9.0-9.2":0.004,"9.3":0.07436,"10.0-10.2":0.0032,"10.3":0.03598,"11.0-11.2":0.01919,"11.3-11.4":0.0064,"12.0-12.1":0.008,"12.2-12.5":0.15992,"13.0-13.1":0.0048,"13.2":0.004,"13.3":1.30577,"13.4-13.7":0.02079,"14.0-14.4":0.07117,"14.5-14.8":0.09356,"15.0-15.1":0.04478,"15.2-15.3":0.04958,"15.4":0.06957,"15.5":0.13673,"15.6-15.7":0.89157,"16.0":0.23669,"16.1":0.35343,"16.2":0.2127,"16.3":0.37422,"16.4":0.14953,"16.5":0.36542,"16.6":2.61235,"17.0":0.51655,"17.1":0},P:{"4":0.11425,"20":0.06232,"21":0.16619,"22":0.89325,"5.0-5.4":0,"6.2-6.4":0.01039,"7.2-7.4":0.09348,"8.2":0,"9.2":0.08309,"10.1":0,"11.1-11.2":0.01039,"12.0":0.01039,"13.0":0.04155,"14.0":0.02077,"15.0":0.01039,"16.0":0.03116,"17.0":0.04155,"18.0":0.03116,"19.0":0.06232},I:{"0":0,"3":0,"4":0.00609,"2.1":0,"2.2":0,"2.3":0.01827,"4.1":0.00913,"4.2-4.3":0.02131,"4.4":0,"4.4.3-4.4.4":0.25268},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01317,"9":0.00329,"10":0.00988,"11":0.05267,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":78.51548},R:{_:"0"},M:{"0":0.12312},Q:{"13.1":0.00684},O:{"0":0.47196},H:{"0":0.57633}};
      +module.exports={C:{"15":0.00632,"25":0.00316,"29":0.00316,"30":0.00316,"31":0.00316,"33":0.00316,"36":0.00316,"37":0.00316,"38":0.00632,"39":0.00316,"40":0.00316,"41":0.00316,"43":0.00632,"44":0.00632,"45":0.00316,"47":0.01581,"48":0.01581,"49":0.00316,"52":0.1296,"56":0.00316,"67":0.00316,"68":0.00948,"72":0.00948,"75":0.00632,"78":0.00316,"80":0.00316,"82":0.00316,"83":0.00316,"86":0.00316,"88":0.00632,"89":0.00632,"90":0.00316,"91":0.00316,"94":0.00316,"95":0.00316,"96":0.00316,"97":0.00316,"99":0.00948,"100":0.00316,"102":0.00632,"103":0.00632,"104":0.00316,"105":0.01581,"106":0.00948,"107":0.00316,"108":0.00632,"109":0.00632,"110":0.01264,"111":0.01264,"112":0.00948,"113":0.01897,"114":0.01581,"115":1.26124,"116":0.01581,"117":0.03793,"118":0.79341,"119":0.15805,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 26 27 28 32 34 35 42 46 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 69 70 71 73 74 76 77 79 81 84 85 87 92 93 98 101 120 121 122 3.5 3.6"},D:{"11":0.00316,"26":0.00316,"31":0.00632,"32":0.00632,"33":0.01897,"35":0.00316,"37":0.00316,"38":0.00632,"39":0.00316,"40":0.00948,"42":0.00316,"43":0.0569,"44":0.00316,"45":0.00316,"46":0.00316,"47":0.00316,"48":0.00316,"49":0.07903,"50":0.00632,"51":0.00632,"52":0.00316,"53":0.00316,"55":0.00316,"56":0.01581,"57":0.00632,"58":0.01897,"59":0.00316,"60":0.00948,"61":0.00316,"62":0.00632,"63":0.01897,"64":0.00632,"65":0.01264,"66":0.00316,"67":0.00316,"68":0.01897,"69":0.01897,"70":0.00948,"71":0.00948,"72":0.01897,"73":0.00316,"74":0.04109,"75":0.00632,"76":0.01264,"77":0.00948,"78":0.01264,"79":0.0569,"80":0.01264,"81":0.03793,"83":0.02845,"84":0.01264,"85":0.03161,"86":0.01264,"87":0.04109,"88":0.01264,"89":0.01581,"90":0.01264,"91":0.01897,"92":0.00948,"93":0.00632,"94":0.00948,"95":0.03793,"96":0.02213,"97":0.02213,"98":0.06322,"99":0.01897,"100":0.01581,"101":0.00948,"102":0.0569,"103":0.06006,"104":0.02213,"105":0.05374,"106":0.06954,"107":0.12328,"108":0.14857,"109":8.98672,"110":0.0569,"111":0.0569,"112":0.06322,"113":0.04109,"114":0.09483,"115":0.06954,"116":0.41093,"117":5.28835,"118":5.33577,"119":0.01264,"120":0.00632,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 34 36 41 54 121 122"},F:{"25":0.00316,"28":0.00948,"36":0.00316,"42":0.00316,"67":0.00316,"79":0.04425,"82":0.00316,"83":0.00316,"84":0.01581,"85":0.03793,"86":0.00948,"87":0.00316,"91":0.00948,"93":0.00316,"94":0.00316,"95":0.26236,"97":0.00316,"98":0.00316,"99":0.00316,"100":0.00316,"101":0.00632,"102":0.75232,"103":0.24024,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 31 32 33 34 35 37 38 39 40 41 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 88 89 90 92 96 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00316},B:{"12":0.00632,"13":0.00316,"14":0.00316,"15":0.00316,"16":0.00316,"17":0.00316,"18":0.01897,"84":0.00316,"85":0.00316,"89":0.00316,"92":0.02845,"94":0.00316,"100":0.00316,"106":0.00316,"107":0.00632,"108":0.00948,"109":0.09799,"110":0.01581,"111":0.01264,"112":0.00948,"113":0.00632,"114":0.02213,"115":0.01264,"116":0.04109,"117":0.96411,"118":0.85979,"119":0.00632,_:"79 80 81 83 86 87 88 90 91 93 95 96 97 98 99 101 102 103 104 105"},E:{"9":0.00316,"14":0.00948,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00632,"12.1":0.00316,"13.1":0.00948,"14.1":0.00948,"15.1":0.00632,"15.2-15.3":0.00316,"15.4":0.00948,"15.5":0.02213,"15.6":0.08851,"16.0":0.00948,"16.1":0.02845,"16.2":0.01264,"16.3":0.03793,"16.4":0.01264,"16.5":0.08535,"16.6":0.23708,"17.0":0.30346,"17.1":0.01264},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0009,"5.0-5.1":0.0009,"6.0-6.1":0.0027,"7.0-7.1":0.00629,"8.1-8.4":0.0009,"9.0-9.2":0.00629,"9.3":0.02157,"10.0-10.2":0.0009,"10.3":0.03145,"11.0-11.2":0.02876,"11.3-11.4":0.00989,"12.0-12.1":0.00809,"12.2-12.5":0.14288,"13.0-13.1":0.00449,"13.2":0.02426,"13.3":0.00899,"13.4-13.7":0.02876,"14.0-14.4":0.07908,"14.5-14.8":0.12761,"15.0-15.1":0.05032,"15.2-15.3":0.05751,"15.4":0.0638,"15.5":0.09076,"15.6-15.7":0.62815,"16.0":0.23185,"16.1":0.44393,"16.2":0.21657,"16.3":0.40169,"16.4":0.08627,"16.5":0.23005,"16.6-16.7":4.309,"17.0":1.53488,"17.1":0.09256,"17.2":0.0027},P:{"4":0.09469,"20":0.06313,"21":0.11574,"22":0.84172,"23":0.10522,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01052,"7.2-7.4":0.10522,"9.2":0.02104,"11.1-11.2":0.02104,"12.0":0.01052,"13.0":0.02104,"14.0":0.02104,"15.0":0.01052,"16.0":0.04209,"17.0":0.04209,"18.0":0.03156,"19.0":0.08417},I:{"0":0.08165,"3":0,"4":0.00002,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{"8":0.03015,"9":0.0067,"10":0.00335,"11":0.18423,_:"6 7 5.5"},K:{"0":0.51396,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.1231},Q:{_:"13.1"},O:{"0":0.38298},H:{"0":0.04},L:{"0":58.42467}};
      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 453404529913d8..e97b73de75ef12 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EC.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EC.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00541,"50":0,"51":0,"52":0.00541,"53":0,"54":0,"55":0,"56":0,"57":0.00541,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00541,"67":0,"68":0.00541,"69":0,"70":0,"71":0,"72":0,"73":0.01082,"74":0,"75":0.00541,"76":0,"77":0,"78":0.00541,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01082,"89":0.01082,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00541,"97":0,"98":0,"99":0.00541,"100":0.00541,"101":0,"102":0.01623,"103":0.00541,"104":0.01082,"105":0.00541,"106":0.00541,"107":0.00541,"108":0.00541,"109":0.01082,"110":0.01082,"111":0.01082,"112":0.01082,"113":0.02164,"114":0.02164,"115":0.25963,"116":0.08114,"117":1.30357,"118":0.12982,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01623,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01623,"48":0,"49":0.01082,"50":0,"51":0,"52":0,"53":0.00541,"54":0,"55":0.00541,"56":0,"57":0,"58":0,"59":0,"60":0.00541,"61":0,"62":0,"63":0.00541,"64":0,"65":0.00541,"66":0,"67":0,"68":0.02164,"69":0.01082,"70":0.00541,"71":0.00541,"72":0.01082,"73":0.00541,"74":0.01082,"75":0.01082,"76":0.00541,"77":0,"78":0.01623,"79":0.10818,"80":0,"81":0.01082,"83":0.00541,"84":0.00541,"85":0.03786,"86":0.00541,"87":0.03245,"88":0.01082,"89":0,"90":0.00541,"91":0.14604,"92":0.00541,"93":0.01082,"94":0.00541,"95":0.00541,"96":0.01082,"97":0.01082,"98":0.00541,"99":0.01082,"100":0.01082,"101":0.00541,"102":0.00541,"103":0.08114,"104":0.01623,"105":0.02164,"106":0.02164,"107":0.01623,"108":0.03245,"109":1.25489,"110":0.01082,"111":0.04327,"112":0.05409,"113":0.07573,"114":0.27045,"115":0.27045,"116":14.33385,"117":3.79712,"118":0.00541,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01082,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00541,"70":0,"71":0,"72":0.00541,"73":0,"74":0,"75":0,"76":0,"77":0.01623,"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.03245,"96":0,"97":0,"98":0,"99":0.01623,"100":0.22177,"101":0.47599,"102":0.51926,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00541,"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.00541,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00541,"108":0,"109":0.02164,"110":0.00541,"111":0.00541,"112":0.00541,"113":0.00541,"114":0.02705,"115":0.04327,"116":1.07639,"117":0.89789},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00541,"10":0,"11":0,"12":0,"13":0,"14":0.01082,"15":0.00541,_:"0","3.1":0,"3.2":0,"5.1":0.02164,"6.1":0,"7.1":0,"9.1":0.02705,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02164,"14.1":0.03786,"15.1":0.00541,"15.2-15.3":0.01082,"15.4":0.01082,"15.5":0.01623,"15.6":0.07032,"16.0":0.00541,"16.1":0.03245,"16.2":0.03245,"16.3":0.0595,"16.4":0.03245,"16.5":0.08654,"16.6":0.40027,"17.0":0.03786,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01373,"6.0-6.1":0.00749,"7.0-7.1":0.00624,"8.1-8.4":0.00499,"9.0-9.2":0.00125,"9.3":0.01373,"10.0-10.2":0,"10.3":0.05118,"11.0-11.2":0.01872,"11.3-11.4":0.00999,"12.0-12.1":0.00749,"12.2-12.5":0.17476,"13.0-13.1":0.0025,"13.2":0,"13.3":0.06366,"13.4-13.7":0.01872,"14.0-14.4":0.03495,"14.5-14.8":0.09487,"15.0-15.1":0.07365,"15.2-15.3":0.02497,"15.4":0.03745,"15.5":0.12607,"15.6-15.7":0.98862,"16.0":0.3233,"16.1":0.5355,"16.2":0.29459,"16.3":0.60291,"16.4":0.07989,"16.5":0.27337,"16.6":7.28359,"17.0":1.15339,"17.1":0},P:{"4":0.17326,"20":0.09173,"21":0.10192,"22":1.25362,"5.0-5.4":0.01019,"6.2-6.4":0,"7.2-7.4":0.10192,"8.2":0,"9.2":0.01019,"10.1":0,"11.1-11.2":0.01019,"12.0":0.01019,"13.0":0.02038,"14.0":0.01019,"15.0":0.01019,"16.0":0.10192,"17.0":0.07134,"18.0":0.01019,"19.0":0.04077},I:{"0":0,"3":0,"4":0.01167,"2.1":0,"2.2":0.00389,"2.3":0.00778,"4.1":0.01167,"4.2-4.3":0.01944,"4.4":0,"4.4.3-4.4.4":0.19833},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01202,"9":0.00601,"10":0,"11":0.03606,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":56.13883},R:{_:"0"},M:{"0":0.13773},Q:{"13.1":0},O:{"0":0.04132},H:{"0":0.13909}};
      +module.exports={C:{"52":0.01095,"57":0.01095,"66":0.00548,"72":0.00548,"73":0.0219,"75":0.00548,"78":0.01643,"80":0.00548,"88":0.0219,"89":0.01643,"91":0.00548,"92":0.00548,"96":0.00548,"99":0.00548,"100":0.00548,"101":0.00548,"102":0.00548,"104":0.00548,"105":0.00548,"106":0.00548,"107":0.00548,"108":0.01643,"109":0.01643,"110":0.01095,"111":0.07666,"112":0.01095,"113":0.0219,"114":0.02738,"115":0.4326,"116":0.03286,"117":0.14238,"118":2.24516,"119":0.39975,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 67 68 69 70 71 74 76 77 79 81 82 83 84 85 86 87 90 93 94 95 97 98 103 120 121 122 3.5 3.6"},D:{"38":0.02738,"47":0.02738,"49":0.01643,"53":0.00548,"55":0.01095,"65":0.00548,"68":0.01643,"71":0.00548,"73":0.00548,"74":0.01643,"75":0.00548,"76":0.01095,"78":0.01095,"79":0.15333,"80":0.00548,"81":0.01095,"83":0.00548,"84":0.00548,"85":0.01643,"86":0.00548,"87":0.04928,"88":0.01095,"89":0.00548,"90":0.00548,"91":0.2519,"92":0.00548,"93":0.01643,"94":0.00548,"95":0.01643,"96":0.01643,"97":0.0219,"98":0.01095,"99":0.01095,"100":0.01095,"101":0.00548,"102":0.01643,"103":0.14785,"104":0.02738,"105":0.02738,"106":0.04381,"107":0.03286,"108":0.04928,"109":2.31087,"110":0.01643,"111":0.06024,"112":0.07119,"113":0.07119,"114":0.2957,"115":0.12595,"116":1.33067,"117":16.55395,"118":17.85176,"119":0.01643,"120":0.00548,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 56 57 58 59 60 61 62 63 64 66 67 69 70 72 77 121 122"},F:{"28":0.01095,"46":0.00548,"69":0.00548,"77":0.00548,"95":0.06024,"99":0.00548,"100":0.00548,"101":0.01095,"102":2.0754,"103":0.35594,_:"9 11 12 15 16 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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00548,"92":0.01095,"103":0.00548,"104":0.00548,"106":0.00548,"107":0.00548,"108":0.00548,"109":0.06024,"110":0.01095,"111":0.00548,"112":0.00548,"113":0.01095,"114":0.02738,"115":0.03833,"116":0.04928,"117":2.10278,"118":2.24516,"119":0.00548,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 105"},E:{"9":0.00548,"14":0.01643,"15":0.00548,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.01643,"12.1":0.00548,"13.1":0.04381,"14.1":0.06571,"15.1":0.01095,"15.2-15.3":0.02738,"15.4":0.01643,"15.5":0.0219,"15.6":0.115,"16.0":0.01095,"16.1":0.05476,"16.2":0.05476,"16.3":0.26285,"16.4":0.04928,"16.5":0.13142,"16.6":0.46546,"17.0":0.35594,"17.1":0.01643},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00068,"5.0-5.1":0.00068,"6.0-6.1":0.00205,"7.0-7.1":0.00478,"8.1-8.4":0.00068,"9.0-9.2":0.00478,"9.3":0.01639,"10.0-10.2":0.00068,"10.3":0.02391,"11.0-11.2":0.02186,"11.3-11.4":0.00751,"12.0-12.1":0.00615,"12.2-12.5":0.10862,"13.0-13.1":0.00342,"13.2":0.01844,"13.3":0.00683,"13.4-13.7":0.02186,"14.0-14.4":0.06011,"14.5-14.8":0.097,"15.0-15.1":0.03825,"15.2-15.3":0.04372,"15.4":0.0485,"15.5":0.069,"15.6-15.7":0.4775,"16.0":0.17625,"16.1":0.33746,"16.2":0.16463,"16.3":0.30536,"16.4":0.06558,"16.5":0.17488,"16.6-16.7":3.27558,"17.0":1.16678,"17.1":0.07036,"17.2":0.00205},P:{"4":0.13544,"20":0.06251,"21":0.08335,"22":1.06265,"23":0.19794,"5.0-5.4":0.01042,_:"6.2-6.4 8.2 9.2 10.1 15.0","7.2-7.4":0.08335,"11.1-11.2":0.01042,"12.0":0.01042,"13.0":0.01042,"14.0":0.01042,"16.0":0.03125,"17.0":0.07293,"18.0":0.01042,"19.0":0.03125},I:{"0":0.04501,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"8":0.00608,"9":0.01217,"11":0.03651,_:"6 7 10 5.5"},K:{"0":0.14477,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.14477},Q:{_:"13.1"},O:{"0":0.03619},H:{"0":0},L:{"0":37.96049}};
      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 f2eb6ea593b56f..5c056640cbad78 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00702,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00702,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.16843,"49":0,"50":0,"51":0,"52":0.01404,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00702,"69":0.00702,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00702,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.02807,"88":0,"89":0,"90":0,"91":0,"92":0.03509,"93":0,"94":0,"95":0,"96":0,"97":0.02105,"98":0,"99":0.01404,"100":0,"101":0.00702,"102":0.05614,"103":0.02105,"104":0.00702,"105":0.00702,"106":0,"107":0.00702,"108":0.00702,"109":0.00702,"110":0,"111":0.00702,"112":0.00702,"113":0.00702,"114":0.03509,"115":3.22126,"116":0.16843,"117":1.71941,"118":0.14036,"119":0,"120":0,"3.5":0,"3.6":0.00702},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.02105,"40":0,"41":0.00702,"42":0.00702,"43":0.00702,"44":0.00702,"45":0.00702,"46":0.00702,"47":0.00702,"48":0,"49":0,"50":0,"51":0.01404,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00702,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00702,"71":0,"72":0,"73":0,"74":0,"75":0.02105,"76":0,"77":0,"78":0.01404,"79":0.00702,"80":0.00702,"81":0.00702,"83":0.12632,"84":0,"85":0.00702,"86":0,"87":0.01404,"88":0.01404,"89":0.00702,"90":0.04913,"91":0.00702,"92":0.03509,"93":0.5053,"94":0.00702,"95":0.01404,"96":0.01404,"97":0,"98":0,"99":0.00702,"100":0.00702,"101":0.00702,"102":0.02807,"103":0.04211,"104":0.03509,"105":0.02105,"106":0.13334,"107":0.03509,"108":0.0772,"109":1.13692,"110":0.06316,"111":0.0772,"112":0.11931,"113":0.12632,"114":0.44213,"115":0.82812,"116":22.50673,"117":4.7582,"118":0.01404,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.02105,"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.00702,"95":0.0772,"96":0,"97":0,"98":0,"99":0.00702,"100":0.1544,"101":2.12645,"102":1.61414,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00702,"13":0,"14":0.01404,"15":0,"16":0,"17":0,"18":0.01404,"79":0,"80":0,"81":0,"83":0.00702,"84":0,"85":0,"86":0.00702,"87":0,"88":0,"89":0,"90":0.18247,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00702,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.02105,"106":0,"107":0.01404,"108":0.02105,"109":0.03509,"110":0.01404,"111":0.00702,"112":0.00702,"113":0.00702,"114":0.03509,"115":0.09825,"116":2.35805,"117":1.66327},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01404,"10":0,"11":0,"12":0,"13":0,"14":0.06316,"15":0.00702,_:"0","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.02807,"13.1":0.05614,"14.1":0.08422,"15.1":0.02105,"15.2-15.3":0.01404,"15.4":0.03509,"15.5":0.13334,"15.6":0.1965,"16.0":0.02105,"16.1":0.08422,"16.2":0.0772,"16.3":0.11229,"16.4":0.07018,"16.5":0.23861,"16.6":0.84216,"17.0":0.05614,"17.1":0},G:{"8":0.002,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00399,"6.0-6.1":0.002,"7.0-7.1":0.01598,"8.1-8.4":0.03195,"9.0-9.2":0.00599,"9.3":0.01398,"10.0-10.2":0.002,"10.3":0.11583,"11.0-11.2":0.0679,"11.3-11.4":0.00599,"12.0-12.1":0.01797,"12.2-12.5":0.17973,"13.0-13.1":0,"13.2":0.00399,"13.3":2.57813,"13.4-13.7":0.02596,"14.0-14.4":0.05991,"14.5-14.8":0.16575,"15.0-15.1":0.04194,"15.2-15.3":0.17973,"15.4":0.08587,"15.5":0.12182,"15.6-15.7":0.93659,"16.0":0.56315,"16.1":1.08836,"16.2":0.46131,"16.3":0.88467,"16.4":0.21967,"16.5":0.60908,"16.6":9.89713,"17.0":1.37593,"17.1":0.00599},P:{"4":0.04149,"20":0.04149,"21":0.16594,"22":1.5246,"5.0-5.4":0,"6.2-6.4":0.01037,"7.2-7.4":0.01037,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.02074,"14.0":0.01037,"15.0":0.01037,"16.0":0,"17.0":0.01037,"18.0":0.01037,"19.0":0.03111},I:{"0":0,"3":0.00424,"4":0.03251,"2.1":0.0099,"2.2":0.01838,"2.3":0.02262,"4.1":0.02403,"4.2-4.3":0.03958,"4.4":0,"4.4.3-4.4.4":0.11733},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00725,"8":0.05802,"9":0.00725,"10":0.00725,"11":0.13053,"5.5":0},S:{"2.5":0.00596,_:"3.0-3.1"},J:{"7":0,"10":0.00895},N:{"10":0.00895,"11":0.00895},L:{"0":26.80841},R:{_:"0"},M:{"0":0.19085},Q:{"13.1":0},O:{"0":0.03578},H:{"0":0.22021}};
      +module.exports={C:{"48":0.34447,"52":0.02812,"69":0.02109,"78":0.00703,"81":0.01406,"87":0.04921,"91":0.00703,"92":0.02109,"102":0.02109,"103":0.00703,"104":0.00703,"105":0.00703,"107":0.00703,"108":0.00703,"109":0.04921,"111":0.00703,"112":0.00703,"113":0.00703,"114":0.02812,"115":5.54667,"116":0.02109,"117":0.09842,"118":1.99652,"119":0.38665,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 88 89 90 93 94 95 96 97 98 99 100 101 106 110 120 121 122 3.5 3.6"},D:{"43":0.00703,"44":0.00703,"45":0.00703,"46":0.00703,"49":0.00703,"51":0.00703,"59":0.02109,"60":0.02109,"78":0.02109,"79":0.01406,"80":0.00703,"81":0.00703,"85":0.01406,"86":0.02109,"87":0.02109,"88":0.00703,"89":0.00703,"90":0.02109,"91":0.01406,"92":0.00703,"93":0.15466,"94":0.00703,"95":0.01406,"96":0.00703,"97":0.04921,"99":0.00703,"100":0.01406,"101":0.00703,"102":0.03515,"103":0.04218,"105":0.02812,"106":0.1406,"107":0.10545,"108":0.25308,"109":1.69423,"110":0.08436,"111":0.20387,"112":0.08436,"113":0.08436,"114":0.25308,"115":0.29526,"116":2.15821,"117":18.52405,"118":19.64182,"119":0.02109,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 47 48 50 52 53 54 55 56 57 58 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 83 84 98 104 120 121 122"},F:{"85":0.00703,"94":0.00703,"95":0.12654,"99":0.00703,"100":0.00703,"101":0.03515,"102":4.23206,"103":2.01761,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00703,"16":0.00703,"17":0.00703,"18":0.02109,"86":0.00703,"92":0.02109,"98":0.00703,"104":0.01406,"106":0.04218,"107":0.04921,"108":0.09139,"109":0.04218,"110":0.01406,"111":0.00703,"112":0.01406,"113":0.00703,"114":0.01406,"115":0.04921,"116":0.11248,"117":3.14241,"118":2.98072,"119":0.01406,_:"12 13 15 79 80 81 83 84 85 87 88 89 90 91 93 94 95 96 97 99 100 101 102 103 105"},E:{"9":0.01406,"11":0.00703,"12":0.00703,"14":0.03515,"15":0.00703,_:"0 4 5 6 7 8 10 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.2","9.1":0.00703,"12.1":0.01406,"13.1":0.0703,"14.1":0.11951,"15.1":0.02109,"15.2-15.3":0.02109,"15.4":0.05624,"15.5":0.1406,"15.6":0.39368,"16.0":0.02812,"16.1":0.11951,"16.2":0.09842,"16.3":0.14763,"16.4":0.09842,"16.5":0.21793,"16.6":0.75924,"17.0":0.59755,"17.1":0.03515},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00103,"5.0-5.1":0.00103,"6.0-6.1":0.00309,"7.0-7.1":0.00721,"8.1-8.4":0.00103,"9.0-9.2":0.00721,"9.3":0.02473,"10.0-10.2":0.00103,"10.3":0.03606,"11.0-11.2":0.03297,"11.3-11.4":0.01133,"12.0-12.1":0.00927,"12.2-12.5":0.16382,"13.0-13.1":0.00515,"13.2":0.02782,"13.3":0.0103,"13.4-13.7":0.03297,"14.0-14.4":0.09067,"14.5-14.8":0.1463,"15.0-15.1":0.0577,"15.2-15.3":0.06594,"15.4":0.07315,"15.5":0.10406,"15.6-15.7":0.72017,"16.0":0.26582,"16.1":0.50896,"16.2":0.2483,"16.3":0.46054,"16.4":0.09891,"16.5":0.26376,"16.6-16.7":4.94025,"17.0":1.75974,"17.1":0.10612,"17.2":0.00309},P:{"4":0.03137,"20":0.03137,"21":0.11503,"22":1.45351,"23":0.29279,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0","6.2-6.4":0.01046,"14.0":0.01046,"16.0":0.01046,"17.0":0.01046,"18.0":0.01046,"19.0":0.03137},I:{"0":0.0916,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00028},A:{"7":0.00703,"8":0.02812,"9":0.00703,"10":0.00703,"11":0.11248,_:"6 5.5"},K:{"0":0.27621,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00297,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.19305},Q:{"13.1":0.00297},O:{"0":0.04158},H:{"0":0},L:{"0":16.94173}};
      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 556b473e0afdce..a360a6236ab9a9 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01432,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00286,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00286,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00286,"89":0,"90":0,"91":0.00286,"92":0,"93":0,"94":0,"95":0.00286,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00573,"103":0,"104":0,"105":0.00286,"106":0.00286,"107":0,"108":0.00286,"109":0.00286,"110":0.00573,"111":0.00286,"112":0.00286,"113":0.00286,"114":0.00286,"115":0.20041,"116":0.0229,"117":0.31779,"118":0.03436,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00286,"39":0.00286,"40":0.00286,"41":0,"42":0,"43":0.02863,"44":0,"45":0,"46":0.00286,"47":0.00286,"48":0.00286,"49":0.00859,"50":0,"51":0,"52":0,"53":0.00286,"54":0,"55":0,"56":0.00286,"57":0,"58":0.00859,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00286,"69":0.00286,"70":0.00286,"71":0.00286,"72":0.00573,"73":0,"74":0.00286,"75":0.00573,"76":0.00286,"77":0.00573,"78":0.00286,"79":0.06012,"80":0.00859,"81":0.01432,"83":0.00286,"84":0.00286,"85":0.01145,"86":0.0229,"87":0.01718,"88":0.00573,"89":0.00286,"90":0.0229,"91":0.01145,"92":0.00573,"93":0.00286,"94":0.00573,"95":0.00573,"96":0.00573,"97":0.00286,"98":0.01432,"99":0.01145,"100":0.00573,"101":0.00286,"102":0.01432,"103":0.01432,"104":0.00859,"105":0.00859,"106":0.00859,"107":0.03149,"108":0.02577,"109":1.16238,"110":0.01145,"111":0.01145,"112":0.01718,"113":0.01718,"114":0.06585,"115":0.06871,"116":3.1722,"117":1.00491,"118":0.00286,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00286,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00573,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00573,"73":0.00573,"74":0.00286,"75":0,"76":0,"77":0.01718,"78":0.00286,"79":0.00859,"80":0,"81":0,"82":0.00859,"83":0.00286,"84":0.00286,"85":0,"86":0,"87":0,"88":0.00286,"89":0,"90":0.00286,"91":0,"92":0.00286,"93":0.00286,"94":0.00573,"95":0.00573,"96":0.00286,"97":0,"98":0.00573,"99":0.00859,"100":0.01145,"101":0.00859,"102":0.00573,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00573,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00286,"91":0,"92":0.00573,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00286,"108":0.00286,"109":0.0229,"110":0.00286,"111":0,"112":0.00286,"113":0.00286,"114":0.01145,"115":0.01718,"116":0.36933,"117":0.32066},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00286,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.04867,"6.1":0,"7.1":0,"9.1":0.00286,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00573,"14.1":0.00573,"15.1":0,"15.2-15.3":0,"15.4":0.00286,"15.5":0.00286,"15.6":0.01432,"16.0":0.00286,"16.1":0.00573,"16.2":0.00286,"16.3":0.01145,"16.4":0.00573,"16.5":0.01145,"16.6":0.05153,"17.0":0.00859,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02047,"8.1-8.4":0,"9.0-9.2":0.00361,"9.3":0.02047,"10.0-10.2":0,"10.3":0.02168,"11.0-11.2":0.00963,"11.3-11.4":0.00482,"12.0-12.1":0.00843,"12.2-12.5":0.29986,"13.0-13.1":0.00361,"13.2":0.00241,"13.3":0.63224,"13.4-13.7":0.03492,"14.0-14.4":0.11561,"14.5-14.8":0.20352,"15.0-15.1":0.0578,"15.2-15.3":0.06744,"15.4":0.06985,"15.5":0.12043,"15.6-15.7":1.27772,"16.0":0.43955,"16.1":0.50579,"16.2":0.23483,"16.3":0.55035,"16.4":0.15655,"16.5":0.47568,"16.6":5.5697,"17.0":0.96943,"17.1":0.0012},P:{"4":0.18635,"20":0.06212,"21":0.15529,"22":1.83246,"5.0-5.4":0,"6.2-6.4":0.01035,"7.2-7.4":0.06212,"8.2":0,"9.2":0.01035,"10.1":0,"11.1-11.2":0.02071,"12.0":0.01035,"13.0":0.03106,"14.0":0.02071,"15.0":0.01035,"16.0":0.05176,"17.0":0.05176,"18.0":0.04141,"19.0":0.06212},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00399,"4.2-4.3":0.01596,"4.4":0,"4.4.3-4.4.4":0.17162},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00301,"9":0.00301,"10":0.00301,"11":0.0511,"5.5":0},S:{"2.5":0.00714,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":74.73868},R:{_:"0"},M:{"0":0.21411},Q:{"13.1":0},O:{"0":0.64233},H:{"0":0.49325}};
      +module.exports={C:{"43":0.00316,"47":0.00316,"48":0.00316,"50":0.00316,"51":0.00316,"52":0.07257,"56":0.00316,"57":0.00316,"60":0.00316,"65":0.00316,"66":0.00316,"68":0.00316,"72":0.00316,"75":0.00316,"78":0.00947,"80":0.00316,"88":0.00316,"95":0.00316,"99":0.00631,"102":0.00631,"103":0.00316,"104":0.00316,"105":0.01262,"106":0.00316,"107":0.00631,"108":0.00631,"109":0.00631,"110":0.00947,"111":0.00631,"112":0.00631,"113":0.00631,"114":0.00947,"115":0.77298,"116":0.01578,"117":0.0631,"118":1.05693,"119":0.22085,"120":0.00316,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 49 53 54 55 58 59 61 62 63 64 67 69 70 71 73 74 76 77 79 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 100 101 121 122 3.5 3.6"},D:{"26":0.00316,"33":0.00631,"34":0.00316,"37":0.00316,"38":0.00631,"40":0.00631,"41":0.00316,"43":0.09465,"47":0.00631,"48":0.00631,"49":0.0284,"51":0.00316,"53":0.00947,"56":0.00316,"58":0.06941,"61":0.00316,"62":0.00316,"63":0.00631,"64":0.05048,"65":0.00316,"66":0.00316,"68":0.00631,"69":0.00947,"70":0.00631,"71":0.00631,"72":0.00631,"73":0.00316,"74":0.00947,"75":0.00631,"76":0.01578,"77":0.00631,"78":0.00631,"79":0.32497,"80":0.01893,"81":0.01578,"83":0.00947,"84":0.01262,"85":0.02209,"86":0.09465,"87":0.03471,"88":0.01262,"89":0.00631,"90":0.00947,"91":0.02209,"92":0.00631,"93":0.00947,"94":0.01262,"95":0.00631,"96":0.00947,"97":0.00947,"98":0.04417,"99":0.02524,"100":0.00947,"101":0.00631,"102":0.04733,"103":0.05048,"104":0.01262,"105":0.03471,"106":0.04102,"107":0.05679,"108":0.09465,"109":4.28765,"110":0.03786,"111":0.04733,"112":0.04417,"113":0.03471,"114":0.10096,"115":0.07257,"116":0.52373,"117":8.14937,"118":8.74566,"119":0.02209,"120":0.01262,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 35 36 39 42 44 45 46 50 52 54 55 57 59 60 67 121 122"},F:{"28":0.00316,"40":0.00316,"46":0.00316,"56":0.00316,"63":0.00316,"64":0.00947,"66":0.00316,"68":0.00316,"70":0.00631,"71":0.00316,"72":0.00631,"73":0.02524,"74":0.00316,"75":0.00316,"79":0.03155,"80":0.00316,"81":0.00316,"82":0.01893,"83":0.01578,"84":0.00631,"85":0.00316,"86":0.00316,"88":0.00631,"89":0.00631,"90":0.00947,"91":0.00631,"92":0.00947,"93":0.00631,"94":0.01893,"95":0.01893,"96":0.00631,"97":0.00947,"98":0.01262,"99":0.0284,"100":0.02209,"101":0.03155,"102":0.07572,"103":0.00631,_:"9 11 12 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 57 58 60 62 65 67 69 76 77 78 87 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00316,"13":0.00316,"14":0.00316,"16":0.00316,"17":0.00316,"18":0.01578,"84":0.00631,"85":0.00316,"89":0.00316,"90":0.00316,"92":0.03155,"100":0.00316,"103":0.00316,"104":0.00316,"106":0.00316,"107":0.01262,"108":0.00631,"109":0.09465,"110":0.00631,"111":0.00316,"112":0.00316,"113":0.00947,"114":0.01262,"115":0.02209,"116":0.05364,"117":1.36927,"118":1.43237,"119":0.00947,_:"15 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 105"},E:{"13":0.00316,"14":0.01578,"15":0.00316,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.17353,"9.1":0.00316,"12.1":0.00316,"13.1":0.01262,"14.1":0.02209,"15.1":0.00631,"15.2-15.3":0.00316,"15.4":0.00631,"15.5":0.00947,"15.6":0.07257,"16.0":0.01893,"16.1":0.01893,"16.2":0.01578,"16.3":0.04102,"16.4":0.02209,"16.5":0.03786,"16.6":0.1546,"17.0":0.1262,"17.1":0.00947},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00079,"5.0-5.1":0.00079,"6.0-6.1":0.00237,"7.0-7.1":0.00553,"8.1-8.4":0.00079,"9.0-9.2":0.00553,"9.3":0.01896,"10.0-10.2":0.00079,"10.3":0.02765,"11.0-11.2":0.02528,"11.3-11.4":0.00869,"12.0-12.1":0.00711,"12.2-12.5":0.1256,"13.0-13.1":0.00395,"13.2":0.02133,"13.3":0.0079,"13.4-13.7":0.02528,"14.0-14.4":0.06951,"14.5-14.8":0.11217,"15.0-15.1":0.04424,"15.2-15.3":0.05055,"15.4":0.05608,"15.5":0.07978,"15.6-15.7":0.55215,"16.0":0.2038,"16.1":0.39022,"16.2":0.19037,"16.3":0.35309,"16.4":0.07583,"16.5":0.20222,"16.6-16.7":3.78763,"17.0":1.34917,"17.1":0.08136,"17.2":0.00237},P:{"4":0.16612,"20":0.05191,"21":0.09344,"22":1.51585,"23":0.28033,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.02077,"7.2-7.4":0.0623,"9.2":0.01038,"11.1-11.2":0.02077,"12.0":0.01038,"13.0":0.03115,"14.0":0.02077,"15.0":0.01038,"16.0":0.04153,"17.0":0.05191,"18.0":0.03115,"19.0":0.05191},I:{"0":0.08853,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00027},A:{"7":0.0065,"8":0.01299,"9":0.0065,"10":0.0065,"11":0.18837,_:"6 5.5"},K:{"0":0.49284,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00685,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.2122},Q:{_:"13.1"},O:{"0":0.57498},H:{"0":0},L:{"0":57.32107}};
      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 c9042755c11491..6edaac94b587fb 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ER.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ER.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00349,"38":0.00698,"39":0,"40":0,"41":0,"42":0,"43":0.00349,"44":0.01048,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00349,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00349,"60":0,"61":0,"62":0.00349,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00349,"100":0,"101":0,"102":0,"103":0.00698,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00349,"112":0,"113":0,"114":0.03143,"115":0.14666,"116":0.12222,"117":0.47491,"118":0.02794,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00349,"29":0,"30":0,"31":0,"32":0,"33":0.00349,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00349,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00349,"50":0,"51":0,"52":0,"53":0.01397,"54":0.00698,"55":0.01397,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00349,"70":0,"71":0,"72":0.00349,"73":0,"74":0.02794,"75":0.17809,"76":0,"77":0.17111,"78":0.00698,"79":0.02095,"80":0.00349,"81":0.00349,"83":0.00349,"84":0.00349,"85":0,"86":0.03143,"87":0.0419,"88":0,"89":0.00349,"90":0.02444,"91":0.01048,"92":0.25492,"93":0.01397,"94":0,"95":0.00698,"96":0.00698,"97":0.00349,"98":0.0419,"99":0,"100":0.02444,"101":0.00698,"102":0.00349,"103":0.00349,"104":0,"105":0,"106":0.11174,"107":0,"108":0.00349,"109":3.34184,"110":0,"111":0.01397,"112":0.02794,"113":0.00349,"114":0.0454,"115":0.0454,"116":3.63168,"117":0.83808,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.01746,"30":0,"31":0,"32":0,"33":0,"34":0.00349,"35":0,"36":0.00349,"37":0,"38":0.00349,"39":0,"40":0.00349,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00349,"58":0,"60":0,"62":0,"63":0.03841,"64":0,"65":0,"66":0,"67":0,"68":0.38761,"69":0.01397,"70":0.00349,"71":0.48888,"72":0.0419,"73":0.02444,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00349,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00349,"86":0.00349,"87":0,"88":0.00349,"89":0,"90":0.00698,"91":0,"92":0,"93":0.00349,"94":0,"95":0.00349,"96":0,"97":0,"98":0,"99":0,"100":0.01048,"101":0.09428,"102":0.25841,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00698},B:{"12":0,"13":0,"14":0,"15":0.00349,"16":0,"17":0,"18":0.01048,"79":0,"80":0,"81":0,"83":0,"84":0.00349,"85":0,"86":0,"87":0,"88":0,"89":0.02095,"90":0.02444,"91":0,"92":0.01397,"93":0,"94":0,"95":0,"96":0.02095,"97":0,"98":0,"99":0,"100":0.11524,"101":0,"102":0,"103":0.00349,"104":0,"105":0,"106":0,"107":0,"108":0.00349,"109":0.02095,"110":0,"111":0.01746,"112":0.00349,"113":0.0419,"114":0.01746,"115":0.00349,"116":0.3038,"117":0.25492},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.02095,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0,"17.0":0.00349,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01273,"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.06363,"12.0-12.1":0,"12.2-12.5":0.31814,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.13362,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.7":0.0509,"16.0":0,"16.1":0.02545,"16.2":0.12089,"16.3":0.01909,"16.4":0.0509,"16.5":0.01273,"16.6":0.45811,"17.0":0.00636,"17.1":0},P:{"4":0.44132,"20":0.02006,"21":0.14042,"22":0.56168,"5.0-5.4":0.14042,"6.2-6.4":0.06018,"7.2-7.4":0.06018,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01003,"12.0":0,"13.0":0.05015,"14.0":0,"15.0":0,"16.0":0.2006,"17.0":0,"18.0":0.01003,"19.0":0.01003},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00008,"4.2-4.3":0.01711,"4.4":0,"4.4.3-4.4.4":0.06567},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07682,"5.5":0},S:{"2.5":0.05206,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":70.65652},R:{_:"0"},M:{"0":0.01302},Q:{"13.1":0},O:{"0":3.28003},H:{"0":5.77935}};
      +module.exports={C:{"38":0.00339,"40":0.00339,"44":0.04402,"47":0.01016,"61":0.04402,"104":0.00339,"113":0.01016,"114":0.02709,"115":0.27427,"116":0.02032,"117":0.1456,"118":2.58013,"119":0.32506,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 112 120 121 122 3.5 3.6"},D:{"43":0.1456,"46":0.00339,"53":0.06433,"61":0.08465,"63":0.03386,"69":0.03047,"70":0.00339,"72":0.00339,"73":0.01016,"74":0.04402,"77":0.02032,"79":1.30022,"80":0.07111,"83":0.01693,"85":0.0474,"86":0.01693,"87":0.01693,"88":0.03047,"89":0.01693,"92":0.09481,"93":0.03047,"97":0.20655,"98":0.32167,"100":0.01016,"101":0.02709,"102":0.02709,"103":0.06095,"104":0.02709,"105":0.05418,"106":0.00339,"108":0.31828,"109":1.53724,"110":0.01016,"111":0.01693,"112":0.11851,"113":0.01016,"114":0.21332,"115":0.04402,"116":0.27427,"117":5.83069,"118":9.65687,"119":0.02032,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 47 48 49 50 51 52 54 55 56 57 58 59 60 62 64 65 66 67 68 71 75 76 78 81 84 90 91 94 95 96 99 107 120 121 122"},F:{"42":0.00339,"57":0.30474,"62":0.00339,"63":0.03386,"64":0.03386,"71":0.00339,"72":0.00339,"73":0.00339,"79":0.01354,"82":0.01016,"86":0.08465,"88":0.00339,"90":0.01016,"95":0.08126,"100":0.01016,"102":0.27427,"103":0.32844,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 65 66 67 68 69 70 74 75 76 77 78 80 81 83 84 85 87 89 91 92 93 94 96 97 98 99 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01016,"13":0.02032,"14":0.01354,"15":0.00339,"17":0.03386,"18":0.10835,"83":0.01016,"84":0.02709,"89":0.04402,"90":0.03725,"92":0.03386,"100":0.01354,"106":0.01016,"108":0.02709,"109":0.01016,"111":0.01693,"112":0.01354,"114":0.07111,"115":0.03386,"116":0.12867,"117":0.66366,"118":1.88939,_:"16 79 80 81 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 107 110 113 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2","16.6":1.96049},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00004,"5.0-5.1":0.00004,"6.0-6.1":0.00013,"7.0-7.1":0.00031,"8.1-8.4":0.00004,"9.0-9.2":0.00031,"9.3":0.00105,"10.0-10.2":0.00004,"10.3":0.00153,"11.0-11.2":0.0014,"11.3-11.4":0.00048,"12.0-12.1":0.00039,"12.2-12.5":0.00694,"13.0-13.1":0.00022,"13.2":0.00118,"13.3":0.00044,"13.4-13.7":0.0014,"14.0-14.4":0.00384,"14.5-14.8":0.0062,"15.0-15.1":0.00244,"15.2-15.3":0.00279,"15.4":0.0031,"15.5":0.00441,"15.6-15.7":0.03051,"16.0":0.01126,"16.1":0.02156,"16.2":0.01052,"16.3":0.01951,"16.4":0.00419,"16.5":0.01117,"16.6-16.7":0.20928,"17.0":0.07455,"17.1":0.0045,"17.2":0.00013},P:{"4":0.25309,"20":0.13161,"21":0.01012,"22":0.11136,"23":0.01012,"5.0-5.4":0.03037,"6.2-6.4":0.02025,"7.2-7.4":0.10124,_:"8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 18.0","16.0":0.02025,"17.0":0.05062,"19.0":0.08099},I:{"0":0.5395,"3":0,"4":0.00011,"2.1":0,"2.2":0.00016,"2.3":0,"4.1":0.00011,"4.2-4.3":0.00038,"4.4":0,"4.4.3-4.4.4":0.00163},A:{"11":0.00339,_:"6 7 8 9 10 5.5"},K:{"0":1.95767,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01323,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.06613},Q:{_:"13.1"},O:{"0":6.16993},H:{"0":4.08},L:{"0":54.26402}};
      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 d19a842a304313..d16f2d26ee7729 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ES.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ES.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00381,"49":0,"50":0,"51":0,"52":0.01143,"53":0,"54":0,"55":0,"56":0.00381,"57":0,"58":0,"59":0.00381,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00381,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01143,"79":0,"80":0,"81":0.00381,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00381,"89":0.00381,"90":0,"91":0.00381,"92":0,"93":0,"94":0,"95":0.00381,"96":0,"97":0,"98":0,"99":0,"100":0.00381,"101":0,"102":0.02286,"103":0.00381,"104":0.00381,"105":0.00381,"106":0,"107":0.00381,"108":0.00381,"109":0.01524,"110":0.00381,"111":0.00381,"112":0.00381,"113":0.01143,"114":0.00762,"115":0.11049,"116":0.04572,"117":0.71247,"118":0.06858,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01905,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00381,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01524,"67":0.00381,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00381,"74":0,"75":0.00381,"76":0.00381,"77":0.00381,"78":0.00381,"79":0.02667,"80":0.00381,"81":0.00381,"83":0.00381,"84":0.00762,"85":0.00381,"86":0.00381,"87":0.01524,"88":0.00762,"89":0.00381,"90":0.00762,"91":0.00762,"92":0.00381,"93":0.01143,"94":0.00381,"95":0.00381,"96":0.00381,"97":0.00381,"98":0.00381,"99":0.01524,"100":0.00381,"101":0.00381,"102":0.00762,"103":0.0381,"104":0.00381,"105":0.01524,"106":0.01524,"107":0.02667,"108":0.01905,"109":0.52578,"110":0.01524,"111":0.01905,"112":0.0381,"113":0.03429,"114":0.13716,"115":0.16764,"116":6.08457,"117":2.12217,"118":0.00381,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00381,"73":0.00381,"74":0,"75":0,"76":0,"77":0.01524,"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.01143,"96":0,"97":0,"98":0,"99":0.00381,"100":0.08001,"101":0.16383,"102":0.38862,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00381,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00381,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00381,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00381,"108":0.00381,"109":0.02286,"110":0.00381,"111":0.00381,"112":0.00381,"113":0.00381,"114":0.01905,"115":0.03048,"116":0.64008,"117":0.63627},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00381,"14":0.02286,"15":0.00381,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00381,"10.1":0,"11.1":0.00381,"12.1":0.00762,"13.1":0.03429,"14.1":0.05334,"15.1":0.00762,"15.2-15.3":0.00762,"15.4":0.01524,"15.5":0.02286,"15.6":0.1143,"16.0":0.01143,"16.1":0.03048,"16.2":0.03048,"16.3":0.0762,"16.4":0.03048,"16.5":0.08763,"16.6":0.46482,"17.0":0.03429,"17.1":0},G:{"8":0.00374,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00187,"9.3":0.04866,"10.0-10.2":0,"10.3":0.05989,"11.0-11.2":0.00936,"11.3-11.4":0.03556,"12.0-12.1":0.00749,"12.2-12.5":0.26202,"13.0-13.1":0.00561,"13.2":0.00374,"13.3":0.05989,"13.4-13.7":0.03556,"14.0-14.4":0.11604,"14.5-14.8":0.23021,"15.0-15.1":0.07299,"15.2-15.3":0.08984,"15.4":0.09732,"15.5":0.17593,"15.6-15.7":1.09488,"16.0":0.56896,"16.1":1.15103,"16.2":0.49784,"16.3":0.99194,"16.4":0.21149,"16.5":0.69249,"16.6":10.75977,"17.0":1.18846,"17.1":0.00187},P:{"4":0.07273,"20":0.07273,"21":0.15584,"22":2.43116,"5.0-5.4":0.01039,"6.2-6.4":0,"7.2-7.4":0.01039,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01039,"12.0":0.01039,"13.0":0.02078,"14.0":0.02078,"15.0":0.01039,"16.0":0.02078,"17.0":0.02078,"18.0":0.02078,"19.0":0.05195},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01201,"4.2-4.3":0.01801,"4.4":0,"4.4.3-4.4.4":0.10808},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00381,"9":0,"10":0,"11":0.03429,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.42631},R:{_:"0"},M:{"0":0.32807},Q:{"13.1":0},O:{"0":0.03095},H:{"0":0.23441}};
      +module.exports={C:{"48":0.00783,"52":0.03131,"56":0.00391,"59":0.00783,"60":0.00391,"67":0.00391,"68":0.00391,"78":0.02348,"79":0.00391,"81":0.00783,"85":0.00391,"86":0.00391,"88":0.01174,"89":0.00391,"91":0.00391,"95":0.00391,"97":0.00391,"99":0.00391,"100":0.01174,"101":0.00391,"102":0.02348,"103":0.00391,"104":0.00391,"105":0.00391,"106":0.00391,"107":0.00783,"108":0.00783,"109":0.05088,"110":0.00783,"111":0.00783,"112":0.00391,"113":0.01957,"114":0.01174,"115":0.28964,"116":0.01957,"117":0.08219,"118":1.44818,"119":0.29355,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 64 65 66 69 70 71 72 73 74 75 76 77 80 82 83 84 87 90 92 93 94 96 98 120 121 122 3.5 3.6"},D:{"38":0.00391,"46":0.00783,"49":0.04305,"63":0.00391,"64":0.00391,"65":0.00391,"66":0.03131,"67":0.00391,"68":0.00391,"70":0.00391,"72":0.00391,"73":0.00783,"74":0.00391,"75":0.01174,"76":0.00391,"77":0.00391,"78":0.00391,"79":0.0548,"80":0.00783,"81":0.00783,"83":0.00783,"84":0.01566,"85":0.00783,"86":0.00783,"87":0.03914,"88":0.01174,"89":0.00783,"90":0.00783,"91":0.01566,"92":0.00391,"93":0.03523,"94":0.00783,"95":0.01174,"96":0.00783,"97":0.01174,"98":0.00783,"99":0.02348,"100":0.01566,"101":0.01174,"102":0.01566,"103":0.11742,"104":0.01174,"105":0.03523,"106":0.0274,"107":0.07045,"108":0.05088,"109":1.27988,"110":0.03914,"111":0.04305,"112":0.07045,"113":0.04697,"114":0.1683,"115":0.10568,"116":0.9785,"117":11.36626,"118":11.62067,"119":0.01566,"120":0.00391,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 69 71 121 122"},F:{"28":0.00391,"46":0.00391,"85":0.00391,"89":0.00391,"94":0.00391,"95":0.02348,"100":0.00391,"101":0.00783,"102":1.79653,"103":0.25832,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 92 93 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00391,"18":0.00391,"84":0.00783,"90":0.00391,"92":0.00783,"97":0.00391,"106":0.00391,"107":0.01174,"108":0.00783,"109":0.0548,"110":0.00783,"111":0.00391,"112":0.01174,"113":0.01957,"114":0.02348,"115":0.01957,"116":0.05871,"117":1.56951,"118":1.71433,"119":0.00783,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 89 91 93 94 95 96 98 99 100 101 102 103 104 105"},E:{"13":0.00783,"14":0.05088,"15":0.01174,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.00391,"11.1":0.00783,"12.1":0.01566,"13.1":0.09002,"14.1":0.12525,"15.1":0.02348,"15.2-15.3":0.01957,"15.4":0.03523,"15.5":0.0548,"15.6":0.27789,"16.0":0.03131,"16.1":0.08219,"16.2":0.08219,"16.3":0.18004,"16.4":0.07437,"16.5":0.18787,"16.6":0.91588,"17.0":0.46968,"17.1":0.0274},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00128,"5.0-5.1":0.00128,"6.0-6.1":0.00385,"7.0-7.1":0.00898,"8.1-8.4":0.00128,"9.0-9.2":0.00898,"9.3":0.0308,"10.0-10.2":0.00128,"10.3":0.04492,"11.0-11.2":0.04107,"11.3-11.4":0.01412,"12.0-12.1":0.01155,"12.2-12.5":0.20408,"13.0-13.1":0.00642,"13.2":0.03466,"13.3":0.01284,"13.4-13.7":0.04107,"14.0-14.4":0.11295,"14.5-14.8":0.18226,"15.0-15.1":0.07188,"15.2-15.3":0.08215,"15.4":0.09113,"15.5":0.12964,"15.6-15.7":0.89719,"16.0":0.33115,"16.1":0.63407,"16.2":0.30933,"16.3":0.57374,"16.4":0.12322,"16.5":0.32859,"16.6-16.7":6.15456,"17.0":2.19228,"17.1":0.1322,"17.2":0.00385},P:{"4":0.0727,"20":0.06232,"21":0.11424,"22":1.98371,"23":0.44659,"5.0-5.4":0.01039,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.01039,"12.0":0.01039,"13.0":0.02077,"14.0":0.01039,"15.0":0.01039,"16.0":0.02077,"17.0":0.02077,"18.0":0.02077,"19.0":0.05193},I:{"0":0.04844,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.0041,"11":0.08201,_:"6 7 9 10 5.5"},K:{"0":0.24344,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.29821},Q:{_:"13.1"},O:{"0":0.02434},H:{"0":0},L:{"0":45.71118}};
      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 be0ad74a4f2fed..7c0f0910d05abd 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ET.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ET.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00631,"48":0,"49":0,"50":0,"51":0,"52":0.00316,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00316,"73":0,"74":0,"75":0,"76":0,"77":0.06628,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01262,"85":0,"86":0,"87":0,"88":0.00316,"89":0.00316,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00631,"96":0,"97":0.00316,"98":0,"99":0,"100":0,"101":0,"102":0.01262,"103":0.00316,"104":0,"105":0,"106":0,"107":0.00316,"108":0.00947,"109":0,"110":0,"111":0.00316,"112":0.00316,"113":0.00316,"114":0.00316,"115":0.20198,"116":0.07574,"117":0.53336,"118":0.1073,"119":0.00316,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00316,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00316,"34":0.00316,"35":0,"36":0,"37":0,"38":0.00631,"39":0,"40":0.00947,"41":0,"42":0,"43":0.00631,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00316,"51":0,"52":0,"53":0.00316,"54":0,"55":0.00316,"56":0.00316,"57":0,"58":0.00631,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00316,"65":0.00316,"66":0,"67":0,"68":0.00316,"69":0.00316,"70":0.00947,"71":0.00316,"72":0.00316,"73":0.00316,"74":0.00316,"75":0.00316,"76":0.00947,"77":0.00316,"78":0.00316,"79":0.14833,"80":0.00947,"81":0.02209,"83":0.00631,"84":0.00631,"85":0.00316,"86":0.01578,"87":0.01262,"88":0.01578,"89":0,"90":0.00316,"91":0.00631,"92":0.00316,"93":0.02209,"94":0.00316,"95":0.00947,"96":0.00631,"97":0,"98":0.06312,"99":0.00316,"100":0,"101":0,"102":0.01578,"103":0.04734,"104":0.00631,"105":0.00631,"106":0.01894,"107":0.0284,"108":0.01578,"109":0.93102,"110":0.00631,"111":0.00947,"112":0.03787,"113":0.01578,"114":0.05681,"115":0.07574,"116":3.00451,"117":0.8395,"118":0.00631,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00316,"25":0,"26":0,"27":0,"28":0.00947,"29":0,"30":0.00316,"31":0,"32":0.00316,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00631,"43":0,"44":0,"45":0,"46":0.02209,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00316,"54":0.00316,"55":0,"56":0,"57":0,"58":0,"60":0.01578,"62":0,"63":0.00631,"64":0.00316,"65":0,"66":0.00316,"67":0.00631,"68":0.00947,"69":0.02209,"70":0.01262,"71":0.04418,"72":0.17989,"73":0.04734,"74":0,"75":0,"76":0,"77":0.01262,"78":0.00316,"79":0.00947,"80":0,"81":0,"82":0,"83":0.00316,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03472,"96":0,"97":0,"98":0,"99":0.00631,"100":0.00947,"101":0.16727,"102":0.1862,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00631},B:{"12":0.00631,"13":0,"14":0.00316,"15":0,"16":0.00316,"17":0,"18":0.04734,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00316,"91":0,"92":0.00947,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.04103,"110":0.00316,"111":0.00316,"112":0.00631,"113":0.00631,"114":0.02209,"115":0.01894,"116":0.46393,"117":0.37872},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01262,"14":0.00631,"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.00316,"15.1":0,"15.2-15.3":0,"15.4":0.00316,"15.5":0,"15.6":0.01262,"16.0":0,"16.1":0.00316,"16.2":0,"16.3":0,"16.4":0.00316,"16.5":0.01578,"16.6":0.01894,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00344,"6.0-6.1":0.00516,"7.0-7.1":0.20924,"8.1-8.4":0.0179,"9.0-9.2":0.0031,"9.3":0.14729,"10.0-10.2":0.00206,"10.3":0.06986,"11.0-11.2":0.00551,"11.3-11.4":0.02375,"12.0-12.1":0.02478,"12.2-12.5":0.44566,"13.0-13.1":0.00826,"13.2":0.00241,"13.3":0.01962,"13.4-13.7":0.06883,"14.0-14.4":0.18996,"14.5-14.8":0.13181,"15.0-15.1":0.0468,"15.2-15.3":0.08707,"15.4":0.06917,"15.5":0.0678,"15.6-15.7":0.53204,"16.0":0.06986,"16.1":0.11632,"16.2":0.0413,"16.3":0.12595,"16.4":0.04715,"16.5":0.1848,"16.6":0.54821,"17.0":0.1084,"17.1":0.00069},P:{"4":0.46278,"20":0.09256,"21":0.11313,"22":0.59648,"5.0-5.4":0.01028,"6.2-6.4":0.03085,"7.2-7.4":0.26739,"8.2":0.01028,"9.2":0.02057,"10.1":0,"11.1-11.2":0.01028,"12.0":0.01028,"13.0":0.03085,"14.0":0.01028,"15.0":0.01028,"16.0":0.05142,"17.0":0.10284,"18.0":0.03085,"19.0":0.08227},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00258,"4.2-4.3":0.06241,"4.4":0,"4.4.3-4.4.4":0.35334},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00631,"5.5":0},S:{"2.5":0.08897,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":79.38028},R:{_:"0"},M:{"0":0.08897},Q:{"13.1":0.00684},O:{"0":0.5133},H:{"0":2.88336}};
      +module.exports={C:{"34":0.00291,"38":0.00291,"41":0.00291,"43":0.00291,"47":0.01165,"48":0.00291,"52":0.01456,"56":0.00291,"60":0.00291,"63":0.00582,"64":0.00291,"67":0.00874,"68":0.00291,"70":0.00291,"72":0.01165,"76":0.00291,"77":0.2417,"82":0.00291,"84":0.01165,"88":0.00874,"89":0.01165,"91":0.00291,"95":0.04368,"96":0.00291,"97":0.01747,"98":0.00291,"99":0.00291,"102":0.00874,"103":0.01165,"104":0.00291,"105":0.00582,"108":0.03203,"109":0.00291,"110":0.00874,"111":0.02038,"112":0.02621,"113":0.00582,"114":0.01165,"115":0.72509,"116":0.02038,"117":0.0495,"118":1.41232,"119":0.47174,"120":0.02621,_:"2 3 4 5 6 7 8 9 10 11 12 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 49 50 51 53 54 55 57 58 59 61 62 65 66 69 71 73 74 75 78 79 80 81 83 85 86 87 90 92 93 94 100 101 106 107 121 122 3.5 3.6"},D:{"11":0.00874,"33":0.02038,"34":0.01165,"36":0.00291,"37":0.00291,"38":0.01165,"40":0.00291,"41":0.00291,"43":0.01456,"49":0.00582,"50":0.01165,"53":0.00582,"55":0.00582,"56":0.01456,"58":0.00291,"63":0.00582,"64":0.00582,"65":0.00874,"66":0.00582,"67":0.00291,"68":0.01456,"69":0.00582,"70":0.02038,"71":0.00874,"72":0.01165,"73":0.00582,"74":0.00582,"75":0.00582,"76":0.01165,"77":0.00582,"78":0.00582,"79":0.3145,"80":0.02038,"81":0.02621,"83":0.0233,"84":0.01456,"85":0.00874,"86":0.02038,"87":0.01747,"88":0.05242,"89":0.00291,"90":0.01456,"91":0.01165,"92":0.00874,"93":0.10774,"94":0.01747,"95":0.01747,"96":0.00874,"97":0.00582,"98":0.19802,"99":0.00874,"100":0.00291,"101":0.00291,"102":0.03494,"103":0.16307,"104":0.01456,"105":0.01747,"106":0.02912,"107":0.02912,"108":0.05242,"109":2.8159,"110":0.01747,"111":0.03494,"112":0.03494,"113":0.02038,"114":0.08154,"115":0.05242,"116":0.41642,"117":5.39885,"118":6.86358,"119":0.0233,"120":0.00874,_:"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 39 42 44 45 46 47 48 51 52 54 57 59 60 61 62 121 122"},F:{"36":0.00291,"46":0.02038,"79":0.0233,"81":0.00291,"82":0.00582,"83":0.00291,"84":0.00291,"85":0.00582,"86":0.00291,"89":0.00291,"90":0.00291,"95":0.11066,"98":0.00582,"99":0.00291,"100":0.00291,"101":0.00874,"102":0.48339,"103":0.42515,_:"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 87 88 91 92 93 94 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01165,"13":0.00291,"14":0.00874,"15":0.00291,"16":0.00582,"17":0.00582,"18":0.11648,"84":0.00291,"89":0.00291,"90":0.00582,"92":0.02038,"100":0.00291,"104":0.00291,"106":0.00291,"107":0.00291,"108":0.00291,"109":0.13978,"110":0.00291,"111":0.00291,"112":0.01456,"113":0.01456,"114":0.04077,"115":0.03494,"116":0.0495,"117":1.19392,"118":1.3599,"119":0.00291,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 105"},E:{"7":0.00291,"13":0.00291,"14":0.00291,_:"0 4 5 6 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 16.0 17.1 17.2","12.1":0.00291,"13.1":0.00291,"14.1":0.01165,"15.5":0.00582,"15.6":0.02621,"16.1":0.00291,"16.2":0.00291,"16.3":0.00291,"16.4":0.00291,"16.5":0.02621,"16.6":0.0233,"17.0":0.01747},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00022,"5.0-5.1":0.00022,"6.0-6.1":0.00067,"7.0-7.1":0.00157,"8.1-8.4":0.00022,"9.0-9.2":0.00157,"9.3":0.00538,"10.0-10.2":0.00022,"10.3":0.00784,"11.0-11.2":0.00717,"11.3-11.4":0.00246,"12.0-12.1":0.00202,"12.2-12.5":0.03561,"13.0-13.1":0.00112,"13.2":0.00605,"13.3":0.00224,"13.4-13.7":0.00717,"14.0-14.4":0.01971,"14.5-14.8":0.03181,"15.0-15.1":0.01254,"15.2-15.3":0.01433,"15.4":0.0159,"15.5":0.02262,"15.6-15.7":0.15656,"16.0":0.05779,"16.1":0.11065,"16.2":0.05398,"16.3":0.10012,"16.4":0.0215,"16.5":0.05734,"16.6-16.7":1.07399,"17.0":0.38256,"17.1":0.02307,"17.2":0.00067},P:{"4":0.36827,"20":0.06313,"21":0.10522,"22":0.45244,"23":0.07365,"5.0-5.4":0.01052,"6.2-6.4":0.01052,"7.2-7.4":0.23148,_:"8.2 10.1 12.0","9.2":0.02104,"11.1-11.2":0.01052,"13.0":0.04209,"14.0":0.01052,"15.0":0.01052,"16.0":0.03157,"17.0":0.10522,"18.0":0.07365,"19.0":0.07365},I:{"0":0.18335,"3":0,"4":0.00004,"2.1":0,"2.2":0.00006,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00013,"4.4":0,"4.4.3-4.4.4":0.00055},A:{"11":0.02621,_:"6 7 8 9 10 5.5"},K:{"0":2.00883,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.11341,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.07797},Q:{"13.1":0.01418},O:{"0":0.38275},H:{"0":1.28},L:{"0":66.42664}};
      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 179e1f735a4d3e..9f80262dd8b631 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0062,"47":0,"48":0,"49":0,"50":1.07915,"51":0,"52":0.22947,"53":1.40785,"54":0,"55":0.0062,"56":0.27909,"57":0,"58":0,"59":0.02481,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0062,"69":0,"70":0,"71":0,"72":0.0062,"73":0,"74":0,"75":0.0062,"76":0,"77":0,"78":0.01861,"79":0,"80":0,"81":0,"82":0,"83":0.0062,"84":0.0124,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0062,"92":0,"93":0,"94":0.0062,"95":0.0124,"96":0,"97":0,"98":0.0124,"99":0,"100":0.0062,"101":0,"102":0.09923,"103":0.0062,"104":0.0124,"105":0.0124,"106":0.0062,"107":0.0062,"108":0.0062,"109":0.0062,"110":0.0062,"111":0.0062,"112":0.0062,"113":0.03101,"114":0.01861,"115":0.86208,"116":0.16745,"117":1.873,"118":0.16745,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0062,"39":0,"40":0,"41":0.0062,"42":0.0124,"43":0,"44":0.0062,"45":0,"46":0,"47":0.0062,"48":0,"49":0.0062,"50":0,"51":0.0062,"52":0,"53":0,"54":0,"55":0.0062,"56":0.0062,"57":0.0062,"58":0,"59":0,"60":0.0124,"61":0.01861,"62":0,"63":0.0062,"64":0,"65":0,"66":0.13024,"67":0,"68":0,"69":0.0062,"70":0,"71":0.0062,"72":0,"73":0,"74":0,"75":0.0062,"76":0.0124,"77":0.01861,"78":0.0062,"79":0.02481,"80":0.0062,"81":0.03101,"83":0.03101,"84":0.0062,"85":0.02481,"86":0.14265,"87":0.01861,"88":0.0124,"89":0.01861,"90":0.0062,"91":0.77525,"92":0.0062,"93":0.03101,"94":0.0124,"95":0.0124,"96":0.02481,"97":0,"98":0.0062,"99":0.02481,"100":0.14885,"101":0.27909,"102":0.14885,"103":0.20467,"104":0.14265,"105":0.08063,"106":0.07442,"107":0.11784,"108":0.26669,"109":0.53957,"110":0.08683,"111":0.09923,"112":0.21707,"113":0.17986,"114":0.94891,"115":1.34583,"116":14.06614,"117":3.54134,"118":0.0062,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0062,"70":0.0124,"71":0.0062,"72":0.03101,"73":0.0062,"74":0.0062,"75":0,"76":0.0062,"77":0.04962,"78":0.0062,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0124,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.0062,"94":0,"95":0.0124,"96":0,"97":0,"98":0,"99":0.0062,"100":0.13024,"101":0.37212,"102":0.53957,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0062},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0124,"18":0.0062,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0062,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0062,"102":0,"103":0,"104":0,"105":0,"106":0.0062,"107":0.0124,"108":0.01861,"109":0.03101,"110":0.0124,"111":0.0124,"112":0.0062,"113":0.01861,"114":0.03721,"115":0.20467,"116":1.99704,"117":1.41406},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0062,"14":0.01861,"15":0.0062,_:"0","3.1":0,"3.2":0,"5.1":0.0062,"6.1":0,"7.1":0,"9.1":0.0062,"10.1":0,"11.1":0.01861,"12.1":0.0062,"13.1":0.03101,"14.1":0.05582,"15.1":0.0062,"15.2-15.3":0.0062,"15.4":0.02481,"15.5":0.01861,"15.6":0.16745,"16.0":0.02481,"16.1":0.03101,"16.2":0.04341,"16.3":0.10543,"16.4":0.05582,"16.5":0.18606,"16.6":0.85588,"17.0":0.06202,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00374,"8.1-8.4":0.00374,"9.0-9.2":0.00749,"9.3":0.01871,"10.0-10.2":0,"10.3":0.03369,"11.0-11.2":0.01871,"11.3-11.4":0.14784,"12.0-12.1":0.01684,"12.2-12.5":0.20024,"13.0-13.1":0.00374,"13.2":0.00374,"13.3":0.10293,"13.4-13.7":0.02059,"14.0-14.4":0.08983,"14.5-14.8":0.20399,"15.0-15.1":0.11416,"15.2-15.3":0.12352,"15.4":0.12539,"15.5":0.25077,"15.6-15.7":1.06859,"16.0":0.6419,"16.1":1.08731,"16.2":0.57453,"16.3":1.02555,"16.4":0.41733,"16.5":1.06111,"16.6":9.91676,"17.0":1.20708,"17.1":0},P:{"4":0.03079,"20":0.10263,"21":0.20527,"22":1.56004,"5.0-5.4":0.01026,"6.2-6.4":0,"7.2-7.4":0.01026,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01026,"12.0":0.01026,"13.0":0.01026,"14.0":0.04105,"15.0":0.01026,"16.0":0.05132,"17.0":0.04105,"18.0":0.04105,"19.0":0.07184},I:{"0":0,"3":0,"4":0.00884,"2.1":0,"2.2":0.00295,"2.3":0.0059,"4.1":0.0059,"4.2-4.3":0.01474,"4.4":0,"4.4.3-4.4.4":0.05307},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02481,"9":0.0062,"10":0.0062,"11":0.06202,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":37.35773},R:{_:"0"},M:{"0":0.62287},Q:{"13.1":0.0038},O:{"0":0.25826},H:{"0":0.54655}};
      +module.exports={C:{"31":0.00584,"50":0.92256,"52":0.6131,"53":1.62908,"55":0.01752,"56":0.81746,"59":0.03503,"60":0.00584,"68":0.00584,"72":0.01168,"75":0.01168,"78":0.01752,"83":0.01168,"91":0.00584,"95":0.00584,"101":0.00584,"102":0.03503,"103":0.00584,"104":0.01752,"105":0.01752,"106":0.00584,"107":0.00584,"108":0.01752,"109":0.01168,"110":0.02336,"111":0.00584,"112":0.00584,"113":0.01752,"114":0.00584,"115":0.51383,"116":0.0292,"117":0.26276,"118":2.58084,"119":0.50799,"120":0.00584,"121":0.00584,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 54 57 58 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 81 82 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 122 3.5 3.6"},D:{"38":0.01168,"42":0.01752,"46":0.00584,"47":0.00584,"48":0.00584,"49":0.00584,"51":0.00584,"52":0.01752,"55":0.00584,"56":0.00584,"57":0.00584,"59":0.00584,"60":0.01168,"61":0.0292,"62":0.00584,"65":0.00584,"66":0.17517,"70":0.00584,"71":0.01752,"75":0.02336,"76":0.01752,"77":0.03503,"78":0.00584,"79":0.04087,"80":0.01168,"81":0.05255,"83":0.05255,"84":0.00584,"85":0.05255,"86":0.28027,"87":0.05255,"88":0.00584,"89":0.0292,"90":0.00584,"91":0.49632,"92":0.01752,"93":0.05839,"94":0.01752,"95":0.01168,"96":0.03503,"98":0.01168,"99":0.22188,"100":0.29195,"101":0.56054,"102":0.28611,"103":0.36202,"104":0.28611,"105":0.09926,"106":0.07007,"107":0.51967,"108":0.22772,"109":0.94008,"110":0.09342,"111":0.32115,"112":0.18685,"113":0.2394,"114":0.78243,"115":0.30947,"116":2.19546,"117":15.12885,"118":12.78157,"119":0.01752,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 50 53 54 58 63 64 67 68 69 72 73 74 97 120 121 122"},F:{"42":0.00584,"43":0.00584,"46":0.00584,"47":0.00584,"48":0.00584,"68":0.00584,"93":0.00584,"94":0.01168,"95":0.02336,"97":0.00584,"99":0.00584,"101":0.01752,"102":1.86264,"103":0.29195,_:"9 11 12 15 16 17 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 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 85 86 87 88 89 90 91 92 96 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00584},B:{"17":0.01752,"18":0.00584,"92":0.00584,"98":0.00584,"103":0.00584,"105":0.00584,"106":0.02336,"107":0.03503,"108":0.03503,"109":0.05255,"110":0.00584,"111":0.00584,"112":0.00584,"113":0.02336,"114":0.08759,"115":0.03503,"116":0.12262,"117":2.85527,"118":2.25385,"119":0.01168,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 104"},E:{"9":0.00584,"13":0.00584,"14":0.0292,"15":0.00584,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 17.2","5.1":0.01168,"9.1":0.00584,"11.1":0.0292,"12.1":0.00584,"13.1":0.04671,"14.1":0.09926,"15.1":0.00584,"15.2-15.3":0.01168,"15.4":0.0292,"15.5":0.02336,"15.6":0.25108,"16.0":0.04087,"16.1":0.06423,"16.2":0.06423,"16.3":0.16933,"16.4":0.09926,"16.5":0.18101,"16.6":0.98679,"17.0":0.61893,"17.1":0.04087},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0013,"5.0-5.1":0.0013,"6.0-6.1":0.00391,"7.0-7.1":0.00913,"8.1-8.4":0.0013,"9.0-9.2":0.00913,"9.3":0.03129,"10.0-10.2":0.0013,"10.3":0.04563,"11.0-11.2":0.04172,"11.3-11.4":0.01434,"12.0-12.1":0.01173,"12.2-12.5":0.20728,"13.0-13.1":0.00652,"13.2":0.0352,"13.3":0.01304,"13.4-13.7":0.04172,"14.0-14.4":0.11472,"14.5-14.8":0.18512,"15.0-15.1":0.073,"15.2-15.3":0.08343,"15.4":0.09256,"15.5":0.13167,"15.6-15.7":0.91125,"16.0":0.33634,"16.1":0.644,"16.2":0.31418,"16.3":0.58273,"16.4":0.12515,"16.5":0.33373,"16.6-16.7":6.25096,"17.0":2.22662,"17.1":0.13428,"17.2":0.00391},P:{"4":0.02081,"20":0.07282,"21":0.15604,"22":1.45635,"23":0.23926,"5.0-5.4":0.0104,_:"6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.0104,"9.2":0.0104,"11.1-11.2":0.02081,"13.0":0.02081,"14.0":0.02081,"15.0":0.0104,"16.0":0.04161,"17.0":0.03121,"18.0":0.03121,"19.0":0.05201},I:{"0":0.03726,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.02704,"9":0.01352,"10":0.00676,"11":0.08113,_:"6 7 5.5"},K:{"0":0.53677,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.6616},Q:{"13.1":0.00416},O:{"0":0.20805},H:{"0":0},L:{"0":25.40454}};
      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 02add7fe08e290..6616b64f0c3c5c 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00274,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01371,"53":0,"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,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02741,"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.00274,"101":0,"102":0.00548,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00274,"110":0,"111":0.00274,"112":0,"113":0.00274,"114":0.00548,"115":0.06853,"116":0.04386,"117":0.46323,"118":0.02467,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00274,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00548,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00274,"66":0,"67":0,"68":0,"69":0.00548,"70":0,"71":0,"72":0,"73":0,"74":0.00274,"75":0,"76":0.00274,"77":0.00274,"78":0.00274,"79":0.00548,"80":0,"81":0.01919,"83":0.00548,"84":0,"85":0,"86":0.00274,"87":0.00822,"88":0.03289,"89":0.00274,"90":0,"91":0.00274,"92":0.01096,"93":0.00822,"94":0.00274,"95":0.00274,"96":0,"97":0,"98":0.00548,"99":0.00822,"100":0,"101":0.00274,"102":0,"103":0.01371,"104":0.00274,"105":0.00548,"106":0.00274,"107":0.00822,"108":0.01645,"109":0.30699,"110":0.00274,"111":0.00822,"112":0.01371,"113":0.01371,"114":0.05482,"115":0.10416,"116":3.01236,"117":0.65236,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00548,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00822,"71":0.00274,"72":0.05756,"73":0.02467,"74":0,"75":0,"76":0.05208,"77":0.00274,"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.00274,"96":0,"97":0,"98":0,"99":0,"100":0.00274,"101":0.0603,"102":0.02741,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00274,"14":0,"15":0.00274,"16":0,"17":0.00274,"18":0.00274,"79":0,"80":0,"81":0,"83":0,"84":0.00274,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00274,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00274,"101":0,"102":0,"103":0,"104":0,"105":0.01645,"106":0,"107":0,"108":0,"109":0.00274,"110":0.00274,"111":0.00274,"112":0.00274,"113":0.00274,"114":0.01096,"115":0.04934,"116":0.56739,"117":0.43034},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00548,"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.00822,"14.1":0.01096,"15.1":0.00274,"15.2-15.3":0,"15.4":0.00274,"15.5":0.00548,"15.6":0.03837,"16.0":0.00274,"16.1":0.00822,"16.2":0.00822,"16.3":0.01371,"16.4":0.00548,"16.5":0.02741,"16.6":0.2138,"17.0":0.00822,"17.1":0},G:{"8":0.00201,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00302,"7.0-7.1":0.01308,"8.1-8.4":0,"9.0-9.2":0.00201,"9.3":0.05232,"10.0-10.2":0,"10.3":0.04729,"11.0-11.2":0.00201,"11.3-11.4":0.00805,"12.0-12.1":0.00101,"12.2-12.5":0.31492,"13.0-13.1":0.00604,"13.2":0.05836,"13.3":0.12375,"13.4-13.7":0.00805,"14.0-14.4":0.06842,"14.5-14.8":0.11168,"15.0-15.1":0.03622,"15.2-15.3":0.0654,"15.4":0.12074,"15.5":0.1147,"15.6-15.7":0.90854,"16.0":0.25153,"16.1":0.53627,"16.2":0.19921,"16.3":0.44371,"16.4":0.16501,"16.5":0.57551,"16.6":5.17254,"17.0":0.57953,"17.1":0},P:{"4":0.18482,"20":0.34911,"21":0.63661,"22":6.06829,"5.0-5.4":0,"6.2-6.4":0.04107,"7.2-7.4":0.45178,"8.2":0,"9.2":0.01027,"10.1":0,"11.1-11.2":0.05134,"12.0":0.0308,"13.0":0.07187,"14.0":0.06161,"15.0":0.04107,"16.0":0.13348,"17.0":0.05134,"18.0":0.2875,"19.0":0.58527},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0966},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01096,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.65255},R:{_:"0"},M:{"0":0.24681},Q:{"13.1":0.32666},O:{"0":0.76945},H:{"0":0.90028}};
      +module.exports={C:{"34":0.00246,"40":0.00246,"52":0.02215,"56":0.01231,"63":0.00246,"66":0.00246,"75":0.00246,"78":0.00984,"87":0.00246,"100":0.00492,"102":0.00984,"105":0.00492,"110":0.00246,"113":0.00492,"114":0.00492,"115":0.09844,"116":0.00246,"117":0.04184,"118":1.21081,"119":0.24118,"120":0.00246,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 64 65 67 68 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 101 103 104 106 107 108 109 111 112 121 122 3.5 3.6"},D:{"11":0.00246,"36":0.00246,"49":0.00984,"56":0.00492,"63":0.01477,"65":0.00738,"67":0.00246,"68":0.00246,"69":0.00246,"71":0.00246,"73":0.00738,"74":0.00492,"76":0.00246,"77":0.00246,"78":0.00984,"79":0.00984,"80":0.00246,"81":0.12059,"83":0.00984,"86":0.00738,"87":0.01231,"88":0.07137,"89":0.01477,"90":0.00984,"91":0.01477,"92":0.04922,"93":0.01477,"94":0.0566,"95":0.00246,"97":0.00246,"98":0.00492,"99":0.00984,"101":0.00984,"102":0.00246,"103":0.02707,"104":0.02461,"105":0.00738,"106":0.00492,"107":0.00492,"108":0.01477,"109":0.85643,"111":0.00738,"112":0.01231,"113":0.01969,"114":0.05168,"115":0.0566,"116":0.56357,"117":5.36006,"118":6.03437,"119":0.01477,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 66 70 72 75 84 85 96 100 110 120 121 122"},F:{"28":0.01477,"95":0.00492,"101":0.04922,"102":0.23626,"103":0.08367,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00246,"13":0.00246,"14":0.00246,"15":0.00246,"17":0.01231,"18":0.02461,"84":0.00492,"90":0.00492,"92":0.01477,"96":0.00246,"99":0.00492,"100":0.00246,"103":0.00492,"105":0.01969,"107":0.00246,"108":0.00246,"109":0.02953,"110":0.00246,"111":0.00492,"112":0.00738,"113":0.00492,"114":0.01477,"115":0.03938,"116":0.06399,"117":1.30925,"118":1.50121,"119":0.00246,_:"16 79 80 81 83 85 86 87 88 89 91 93 94 95 97 98 101 102 104 106"},E:{"12":0.00246,"13":0.00984,"14":0.01477,_:"0 4 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 17.2","12.1":0.00492,"13.1":0.02707,"14.1":0.02215,"15.1":0.00738,"15.4":0.02707,"15.5":0.00738,"15.6":0.22641,"16.0":0.00984,"16.1":0.02461,"16.2":0.02461,"16.3":0.06891,"16.4":0.02707,"16.5":0.17473,"16.6":0.54142,"17.0":0.30024,"17.1":0.01231},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00066,"5.0-5.1":0.00066,"6.0-6.1":0.00197,"7.0-7.1":0.0046,"8.1-8.4":0.00066,"9.0-9.2":0.0046,"9.3":0.01576,"10.0-10.2":0.00066,"10.3":0.02298,"11.0-11.2":0.02101,"11.3-11.4":0.00722,"12.0-12.1":0.00591,"12.2-12.5":0.10441,"13.0-13.1":0.00328,"13.2":0.01773,"13.3":0.00657,"13.4-13.7":0.02101,"14.0-14.4":0.05778,"14.5-14.8":0.09324,"15.0-15.1":0.03677,"15.2-15.3":0.04203,"15.4":0.04662,"15.5":0.06632,"15.6-15.7":0.459,"16.0":0.16941,"16.1":0.32438,"16.2":0.15825,"16.3":0.29352,"16.4":0.06304,"16.5":0.1681,"16.6-16.7":3.14862,"17.0":1.12155,"17.1":0.06763,"17.2":0.00197},P:{"4":0.22904,"20":0.3748,"21":0.58302,"22":4.85153,"23":0.97863,"5.0-5.4":0.01041,"6.2-6.4":0.01041,"7.2-7.4":0.45808,_:"8.2 10.1","9.2":0.02082,"11.1-11.2":0.06247,"12.0":0.01041,"13.0":0.05206,"14.0":0.03123,"15.0":0.07288,"16.0":0.14575,"17.0":0.06247,"18.0":0.23945,"19.0":0.77041},I:{"0":0.03,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"10":0.0041,"11":0.02051,_:"6 7 8 9 5.5"},K:{"0":0.73882,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.10555},Q:{"13.1":0.09801},O:{"0":0.39203},H:{"0":0},L:{"0":62.60634}};
      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 8b23749a9986c9..417238fee2ac37 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FK.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FK.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.0138,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":1.09456,"109":0,"110":0,"111":0.03679,"112":0,"113":0.08738,"114":0.0138,"115":0.21615,"116":0.30353,"117":2.55245,"118":0.16556,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.31733,"80":0,"81":0.03679,"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.06439,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.25295,"110":0,"111":0,"112":0.03679,"113":0,"114":0,"115":1.23253,"116":3.84936,"117":1.94538,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.07818,"102":0.08738,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.08738,"79":0.0138,"80":0,"81":0,"83":0,"84":0.03679,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.05059,"110":0.15177,"111":0,"112":0.38172,"113":0,"114":0.82782,"115":0.07818,"116":2.41448,"117":0.80023},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.07818,"15.2-15.3":0,"15.4":0,"15.5":0.0138,"15.6":0.43231,"16.0":0.0138,"16.1":0,"16.2":0.0138,"16.3":0.11498,"16.4":0.18856,"16.5":0.78643,"16.6":1.70163,"17.0":0.0138,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.09733,"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.13036,"15.0-15.1":0,"15.2-15.3":0.25898,"15.4":0,"15.5":0,"15.6-15.7":0.96986,"16.0":0.38759,"16.1":2.10309,"16.2":0.16164,"16.3":1.26186,"16.4":0.06431,"16.5":0.77693,"16.6":10.42161,"17.0":0.61529,"17.1":0},P:{"4":0,"20":0,"21":1.33268,"22":8.6932,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.11277,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":4.64389,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.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.10118,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":39.29373},R:{_:"0"},M:{"0":0.93437},Q:{"13.1":0},O:{"0":0},H:{"0":0}};
      +module.exports={C:{"87":0.0254,"90":0.0254,"108":3.48882,"114":0.0254,"115":0.66897,"116":0.17783,"117":0.23287,"118":4.72091,"119":0.20323,"120":0.05081,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 121 122 3.5 3.6"},D:{"49":0.0254,"62":0.0254,"79":0.89761,"94":0.12702,"103":0.12702,"109":0.51231,"113":0.0254,"115":0.46151,"116":0.28368,"117":9.62388,"118":3.8233,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 104 105 106 107 108 110 111 112 114 119 120 121 122"},F:{"102":1.40992,"103":0.46151,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"91":0.0254,"109":0.28368,"111":0.0254,"114":0.99922,"116":0.61393,"117":4.6447,"118":2.20591,"119":0.0254,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 112 113 115"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5 16.0 16.2 17.2","13.1":0.46151,"14.1":0.0254,"15.4":0.10162,"15.6":2.00268,"16.1":0.05081,"16.3":0.12702,"16.4":0.25827,"16.5":0.30908,"16.6":0.74518,"17.0":0.92301,"17.1":0.17783},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00123,"5.0-5.1":0.00123,"6.0-6.1":0.0037,"7.0-7.1":0.00864,"8.1-8.4":0.00123,"9.0-9.2":0.00864,"9.3":0.02963,"10.0-10.2":0.00123,"10.3":0.04321,"11.0-11.2":0.0395,"11.3-11.4":0.01358,"12.0-12.1":0.01111,"12.2-12.5":0.19629,"13.0-13.1":0.00617,"13.2":0.03333,"13.3":0.01235,"13.4-13.7":0.0395,"14.0-14.4":0.10864,"14.5-14.8":0.1753,"15.0-15.1":0.06913,"15.2-15.3":0.07901,"15.4":0.08765,"15.5":0.12468,"15.6-15.7":0.86292,"16.0":0.3185,"16.1":0.60984,"16.2":0.29751,"16.3":0.55182,"16.4":0.11851,"16.5":0.31603,"16.6-16.7":5.91943,"17.0":2.10853,"17.1":0.12715,"17.2":0.0037},P:{"21":0.5018,"22":4.03624,"23":0.44726,_:"4 20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 16.0 17.0 18.0","14.0":9.65426,"15.0":0.03273,"19.0":0.16363},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.10955,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.47858},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":30.61072}};
      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 9bf5af5e4b9781..f900e4bb0f6888 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"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.09532,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00502,"110":0,"111":0.02509,"112":0,"113":0,"114":0.0301,"115":0.04014,"116":0.31607,"117":0.99838,"118":0.04014,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01505,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.02007,"60":0,"61":0,"62":0.04515,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01003,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00502,"75":0,"76":0,"77":0.02509,"78":0,"79":0.10034,"80":0.01003,"81":0.00502,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00502,"89":0,"90":0,"91":0,"92":0,"93":0.25085,"94":0.00502,"95":0,"96":0,"97":0,"98":0,"99":0.00502,"100":0,"101":0,"102":0,"103":0.07526,"104":0,"105":0.02007,"106":0,"107":0.02007,"108":0.03512,"109":0.37126,"110":0.01003,"111":0.00502,"112":0.02007,"113":0,"114":0.03512,"115":0.16054,"116":8.40849,"117":2.73427,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01003,"73":0,"74":0,"75":0,"76":0,"77":0.02007,"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.00502,"101":0.0602,"102":0.09532,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00502,"108":0.00502,"109":0.05017,"110":0,"111":0,"112":0.02007,"113":0,"114":0.05519,"115":0.0602,"116":4.12397,"117":3.76777},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00502,"15":0.01505,_:"0","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.01003,"14.1":0.01003,"15.1":0.02509,"15.2-15.3":0,"15.4":0,"15.5":0.02007,"15.6":0.09532,"16.0":0,"16.1":0.05519,"16.2":0.03512,"16.3":0.18061,"16.4":0.14549,"16.5":0.04515,"16.6":0.23078,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.01223,"11.3-11.4":0,"12.0-12.1":0.01223,"12.2-12.5":0.09985,"13.0-13.1":0,"13.2":0,"13.3":0.05094,"13.4-13.7":0,"14.0-14.4":0.1406,"14.5-14.8":0.40347,"15.0-15.1":0.0754,"15.2-15.3":0.06317,"15.4":0.0754,"15.5":0.27713,"15.6-15.7":1.86045,"16.0":0.32604,"16.1":1.35713,"16.2":0.62762,"16.3":1.00664,"16.4":0.56649,"16.5":0.72951,"16.6":11.95541,"17.0":0.71728,"17.1":0},P:{"4":0,"20":0,"21":0.19602,"22":0.96979,"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.01032,"12.0":0,"13.0":0.14444,"14.0":0,"15.0":0,"16.0":0.07222,"17.0":0.01032,"18.0":0.01032,"19.0":0.01032},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.59617},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02509,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":49.31744},R:{_:"0"},M:{"0":0.51325},Q:{"13.1":0},O:{"0":2.43669},H:{"0":0.08963}};
      +module.exports={C:{"99":0.09439,"103":0.00787,"108":0.0354,"112":0.00787,"115":0.11012,"116":0.0354,"117":0.05113,"118":3.5397,"119":0.4405,"120":0.00787,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 100 101 102 104 105 106 107 109 110 111 113 114 121 122 3.5 3.6"},D:{"49":0.0236,"61":0.01573,"79":0.05113,"85":0.08653,"87":0.19665,"89":0.04326,"93":1.1681,"94":0.0354,"98":0.0236,"103":0.24385,"106":0.01573,"107":0.07473,"108":0.00787,"109":1.63613,"113":0.059,"114":0.0236,"116":1.25463,"117":9.93476,"118":6.57204,"119":0.00787,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 88 90 91 92 95 96 97 99 100 101 102 104 105 110 111 112 115 120 121 122"},F:{"101":0.00787,"102":0.56635,"103":0.01573,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00787,"18":0.00787,"95":0.01573,"97":0.00787,"99":0.00787,"107":0.0354,"108":0.21238,"109":0.06686,"114":0.059,"115":0.09439,"116":0.10226,"117":3.72062,"118":4.23584,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 98 100 101 102 103 104 105 106 110 111 112 113 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.4 16.1 17.1 17.2","12.1":0.00787,"13.1":0.0354,"14.1":0.04326,"15.1":0.00787,"15.5":0.00787,"15.6":0.15339,"16.0":0.13372,"16.2":0.13372,"16.3":0.05113,"16.4":0.0236,"16.5":0.0354,"16.6":0.45623,"17.0":0.22025},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00093,"5.0-5.1":0.00093,"6.0-6.1":0.0028,"7.0-7.1":0.00654,"8.1-8.4":0.00093,"9.0-9.2":0.00654,"9.3":0.02242,"10.0-10.2":0.00093,"10.3":0.0327,"11.0-11.2":0.0299,"11.3-11.4":0.01028,"12.0-12.1":0.00841,"12.2-12.5":0.14856,"13.0-13.1":0.00467,"13.2":0.02523,"13.3":0.00934,"13.4-13.7":0.0299,"14.0-14.4":0.08222,"14.5-14.8":0.13267,"15.0-15.1":0.05232,"15.2-15.3":0.0598,"15.4":0.06634,"15.5":0.09437,"15.6-15.7":0.65309,"16.0":0.24105,"16.1":0.46155,"16.2":0.22517,"16.3":0.41764,"16.4":0.08969,"16.5":0.23919,"16.6-16.7":4.48005,"17.0":1.59582,"17.1":0.09623,"17.2":0.0028},P:{"21":0.0311,"22":0.64275,"23":0.29027,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 15.0 17.0","7.2-7.4":0.01037,"12.0":0.01037,"13.0":0.01037,"14.0":0.01037,"16.0":0.0311,"18.0":0.02073,"19.0":0.01037},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.30942,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.25481},Q:{_:"13.1"},O:{"0":0.82511},H:{"0":0},L:{"0":51.61145}};
      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 cde3172e761e2f..4c1330b99a1555 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"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.09191,"103":0,"104":0,"105":0,"106":0.05656,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.03182,"116":0.00354,"117":0.31462,"118":0.03535,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00707,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03889,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00354,"80":0,"81":0,"83":0,"84":0,"85":0.00354,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01768,"93":0,"94":0,"95":0,"96":0,"97":0.00354,"98":0,"99":0,"100":0,"101":0.00354,"102":0,"103":0.39592,"104":0,"105":0,"106":0,"107":0.00707,"108":0.02475,"109":0.11312,"110":0.05303,"111":0.01768,"112":0.01768,"113":0.01061,"114":0.02828,"115":0.20503,"116":2.49925,"117":0.63984,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.04242,"101":0.03889,"102":0.10959,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01768,"110":0,"111":0,"112":0,"113":0,"114":0.00707,"115":0.01414,"116":0.39592,"117":0.30048},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04242,"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.03535,"14.1":0.02828,"15.1":0.01061,"15.2-15.3":0.02121,"15.4":0.07424,"15.5":0.11312,"15.6":0.71407,"16.0":0.01414,"16.1":0.21917,"16.2":0.26159,"16.3":0.50551,"16.4":0.09545,"16.5":0.30401,"16.6":3.98748,"17.0":0.15908,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04907,"10.0-10.2":0,"10.3":0.02453,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.13084,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.04089,"14.5-14.8":0.30257,"15.0-15.1":0.18808,"15.2-15.3":0.13902,"15.4":0.31892,"15.5":0.5806,"15.6-15.7":7.00814,"16.0":2.4369,"16.1":5.62614,"16.2":2.6904,"16.3":4.77567,"16.4":0.38434,"16.5":2.38784,"16.6":50.2427,"17.0":3.59811,"17.1":0.01636},P:{"4":0,"20":0.05155,"21":0.02062,"22":0.6804,"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,"19.0":0.01031},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01707},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":5.62616},R:{_:"0"},M:{"0":0.02586},Q:{"13.1":0},O:{"0":0},H:{"0":0.02448}};
      +module.exports={C:{"115":0.29198,"116":0.00739,"117":0.01848,"118":0.90182,"119":0.16632,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 120 121 122 3.5 3.6"},D:{"38":0.0037,"49":0.00739,"68":0.0887,"76":0.0037,"79":0.01478,"85":0.02218,"87":0.00739,"89":0.0037,"92":0.01478,"97":0.23654,"100":0.0037,"103":0.23285,"106":0.57288,"107":0.62462,"108":0.04805,"109":0.57288,"110":0.22176,"111":0.29938,"112":0.15893,"113":0.01478,"114":0.04435,"115":0.10718,"116":0.87595,"117":4.36128,"118":3.58512,"119":0.0037,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 77 78 80 81 83 84 86 88 90 91 93 94 95 96 98 99 101 102 104 105 120 121 122"},F:{"99":0.01109,"102":0.67267,"103":0.19219,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"90":0.00739,"100":0.0037,"109":0.01109,"110":0.0037,"114":0.01848,"115":0.0037,"116":0.04435,"117":1.17902,"118":1.08662,"119":0.0037,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 112 113"},E:{"14":0.19589,"15":0.0037,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01478,"13.1":0.12566,"14.1":0.1885,"15.1":0.02957,"15.2-15.3":0.04805,"15.4":0.12936,"15.5":0.35112,"15.6":1.97736,"16.0":0.04805,"16.1":0.62462,"16.2":0.60984,"16.3":1.32317,"16.4":0.37699,"16.5":0.97944,"16.6":9.39523,"17.0":2.50958,"17.1":0.21806,"17.2":0.0037},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00559,"5.0-5.1":0.00559,"6.0-6.1":0.01676,"7.0-7.1":0.0391,"8.1-8.4":0.00559,"9.0-9.2":0.0391,"9.3":0.13407,"10.0-10.2":0.00559,"10.3":0.19552,"11.0-11.2":0.17876,"11.3-11.4":0.06145,"12.0-12.1":0.05028,"12.2-12.5":0.88823,"13.0-13.1":0.02793,"13.2":0.15083,"13.3":0.05586,"13.4-13.7":0.17876,"14.0-14.4":0.4916,"14.5-14.8":0.79326,"15.0-15.1":0.31284,"15.2-15.3":0.35753,"15.4":0.39663,"15.5":0.56422,"15.6-15.7":3.90486,"16.0":1.44128,"16.1":2.75966,"16.2":1.34631,"16.3":2.4971,"16.4":0.53629,"16.5":1.43011,"16.6-16.7":26.78654,"17.0":9.54148,"17.1":0.57539,"17.2":0.01676},P:{"20":0.04224,"21":0.02112,"22":0.61246,"23":0.11616,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0","18.0":0.01056,"19.0":0.01056},I:{"0":0.02508,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"8":0.0037,"9":0.0037,"11":0.12936,_:"6 7 10 5.5"},K:{"0":0.13236,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.05042},Q:{"13.1":0.0063},O:{"0":0.01261},H:{"0":0},L:{"0":6.15698}};
      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 1367d9df171290..21eb4c5b60b09c 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0.00469,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00469,"11":0,"12":0.0375,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00469,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01406,"49":0,"50":0,"51":0,"52":0.02344,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01875,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00469,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00938,"76":0,"77":0,"78":0.04688,"79":0,"80":0,"81":0,"82":0.00469,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00469,"89":0,"90":0,"91":0.01875,"92":0,"93":0.00938,"94":0.00938,"95":0,"96":0,"97":0,"98":0,"99":0.00469,"100":0.00469,"101":0,"102":0.1172,"103":0.4313,"104":0.00938,"105":0.00938,"106":0.01406,"107":0.00938,"108":0.01406,"109":0.02344,"110":0.01406,"111":0.01406,"112":0.01406,"113":0.0375,"114":0.03282,"115":0.33285,"116":0.12658,"117":1.96427,"118":0.18752,"119":0.00469,"120":0,"3.5":0,"3.6":0.00469},D:{"4":0.00469,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02813,"50":0,"51":0,"52":0.00469,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00469,"59":0,"60":0.12658,"61":0,"62":0.00469,"63":0,"64":0,"65":0.00469,"66":0.07032,"67":0,"68":0.00469,"69":0,"70":0.00469,"71":0.00938,"72":0.00469,"73":0,"74":0.00469,"75":0,"76":0.00469,"77":0.00469,"78":0.00469,"79":0.02344,"80":0.01406,"81":0.03282,"83":0.00469,"84":0.00469,"85":0.02813,"86":0.01875,"87":0.09845,"88":0.00938,"89":0.00938,"90":0.01406,"91":0.00938,"92":0.00938,"93":0.00938,"94":0.16408,"95":0.01875,"96":0.02813,"97":0.00938,"98":0.00938,"99":0.02344,"100":0.01406,"101":0.02344,"102":0.02813,"103":0.07032,"104":0.02813,"105":0.0375,"106":0.07032,"107":0.08438,"108":0.1172,"109":0.78758,"110":0.07032,"111":0.15002,"112":0.09376,"113":0.04688,"114":0.16877,"115":0.25315,"116":6.7601,"117":2.04397,"118":0.00469,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00938,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00469,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00469,"47":0,"48":0,"49":0,"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.00469,"70":0.00469,"71":0.00938,"72":0.05157,"73":0.01406,"74":0,"75":0,"76":0,"77":0.03282,"78":0.00469,"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.00469,"92":0.00469,"93":0.00469,"94":0.00469,"95":0.02813,"96":0.00469,"97":0,"98":0,"99":0.00938,"100":0.07032,"101":0.22034,"102":0.3516,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00469,"15":0,"16":0,"17":0.00938,"18":0.00469,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00469,"86":0,"87":0,"88":0,"89":0,"90":0.00469,"91":0,"92":0.00469,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00469,"100":0,"101":0,"102":0,"103":0.00469,"104":0,"105":0.00469,"106":0.00938,"107":0.01875,"108":0.01875,"109":0.07501,"110":0.00938,"111":0.01406,"112":0.00938,"113":0.00938,"114":0.06563,"115":0.06094,"116":1.34077,"117":1.11106},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00469,"14":0.03282,"15":0.00938,_:"0","3.1":0,"3.2":0,"5.1":0.00469,"6.1":0,"7.1":0,"9.1":0.00938,"10.1":0,"11.1":0.01875,"12.1":0.02344,"13.1":0.0797,"14.1":0.12189,"15.1":0.01875,"15.2-15.3":0.01406,"15.4":0.02344,"15.5":0.04219,"15.6":0.22502,"16.0":0.03282,"16.1":0.05626,"16.2":0.04688,"16.3":0.12658,"16.4":0.06094,"16.5":0.17346,"16.6":0.8204,"17.0":0.04219,"17.1":0},G:{"8":0.00512,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00512,"7.0-7.1":0.01537,"8.1-8.4":0.00256,"9.0-9.2":0.01025,"9.3":0.082,"10.0-10.2":0.00512,"10.3":0.09737,"11.0-11.2":0.08968,"11.3-11.4":0.03844,"12.0-12.1":0.02819,"12.2-12.5":0.44842,"13.0-13.1":0.02819,"13.2":0.01025,"13.3":0.26649,"13.4-13.7":0.10506,"14.0-14.4":0.22549,"14.5-14.8":0.38179,"15.0-15.1":0.16143,"15.2-15.3":0.13324,"15.4":0.14349,"15.5":0.23574,"15.6-15.7":1.7706,"16.0":0.9532,"16.1":1.46568,"16.2":0.69953,"16.3":1.39649,"16.4":0.2793,"16.5":0.9122,"16.6":13.57801,"17.0":1.69885,"17.1":0.00512},P:{"4":0.07228,"20":0.10325,"21":0.18585,"22":2.6226,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01033,"8.2":0.01033,"9.2":0.02065,"10.1":0,"11.1-11.2":0.03098,"12.0":0.01033,"13.0":0.02065,"14.0":0.02065,"15.0":0.01033,"16.0":0.0413,"17.0":0.03098,"18.0":0.0413,"19.0":0.07228},I:{"0":0,"3":0,"4":0.03074,"2.1":0,"2.2":0.04612,"2.3":0,"4.1":0.04612,"4.2-4.3":0.06149,"4.4":0,"4.4.3-4.4.4":0.46115},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00493,"9":0.0148,"10":0.00493,"11":0.06909,"5.5":0},S:{"2.5":0.00531,_:"3.0-3.1"},J:{"7":0,"10":0.00531},N:{"10":0.01594,"11":0},L:{"0":44.75522},R:{_:"0"},M:{"0":0.63744},Q:{"13.1":0.00531},O:{"0":0.61619},H:{"0":0.5884}};
      +module.exports={C:{"4":0.00465,"12":0.06969,"38":0.00465,"45":0.00465,"48":0.03252,"52":0.03717,"55":0.00465,"59":0.03252,"60":0.00465,"68":0.00465,"72":0.00465,"75":0.00929,"78":0.08363,"81":0.00465,"82":0.00465,"83":0.00465,"84":0.00465,"85":0.00465,"86":0.00465,"87":0.00465,"88":0.00929,"89":0.00465,"90":0.00465,"91":0.02788,"92":0.00465,"93":0.01394,"94":0.01858,"95":0.00465,"96":0.00465,"97":0.00465,"98":0.00465,"99":0.00465,"100":0.00465,"101":0.00465,"102":0.10221,"103":1.70508,"104":0.01394,"105":0.00929,"106":0.01394,"107":0.01858,"108":0.01858,"109":0.01858,"110":0.01858,"111":0.01394,"112":0.01394,"113":0.04181,"114":0.01858,"115":0.70155,"116":0.03252,"117":0.15796,"118":3.26149,"119":0.65044,"120":0.00465,_:"2 3 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 49 50 51 53 54 56 57 58 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 121 122 3.5","3.6":0.00465},D:{"4":0.00465,"38":0.00465,"48":0.00465,"49":0.04646,"51":0.00465,"52":0.00465,"56":0.00465,"58":0.00465,"60":0.18119,"62":0.00465,"63":0.00465,"65":0.00465,"66":0.12544,"67":0.00465,"68":0.00465,"69":0.00465,"70":0.00929,"71":0.01858,"72":0.00929,"73":0.00465,"74":0.00929,"75":0.00465,"76":0.01394,"77":0.00929,"78":0.01394,"79":0.04646,"80":0.02323,"81":0.06969,"83":0.04646,"84":0.04181,"85":0.0604,"86":0.07434,"87":0.1208,"88":0.05111,"89":0.04181,"90":0.08827,"91":0.06969,"92":0.04646,"93":0.04181,"94":0.31128,"95":0.04646,"96":0.06969,"97":0.03717,"98":0.04646,"99":0.05111,"100":0.04646,"101":0.06504,"102":0.06504,"103":0.14867,"104":0.05575,"105":0.06504,"106":0.09757,"107":0.1208,"108":0.16261,"109":1.42632,"110":0.08827,"111":0.25553,"112":0.1208,"113":0.06969,"114":0.24624,"115":0.39026,"116":1.79336,"117":9.00859,"118":9.04112,"119":0.01394,"120":0.00465,_:"5 6 7 8 9 10 11 12 13 14 15 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 53 54 55 57 59 61 64 121 122"},F:{"28":0.00465,"36":0.00465,"46":0.00929,"73":0.00465,"74":0.00465,"75":0.00465,"76":0.00465,"77":0.00465,"78":0.00465,"79":0.00465,"80":0.00465,"82":0.00465,"83":0.00465,"84":0.00465,"85":0.00465,"89":0.00465,"90":0.00465,"91":0.00465,"92":0.00465,"93":0.00465,"94":0.00465,"95":0.05111,"96":0.00465,"99":0.00465,"100":0.01394,"101":0.02788,"102":1.30088,"103":0.24624,_:"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 81 86 87 88 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00465,"16":0.00465,"17":0.01858,"18":0.00465,"84":0.01394,"85":0.00929,"86":0.00929,"87":0.00929,"88":0.01394,"89":0.00929,"90":0.01394,"91":0.01394,"92":0.01858,"93":0.00929,"94":0.00929,"95":0.01394,"96":0.02323,"97":0.01394,"98":0.01394,"99":0.01394,"100":0.00929,"103":0.00929,"105":0.01394,"106":0.01858,"107":0.03717,"108":0.04181,"109":0.13938,"110":0.02788,"111":0.02323,"112":0.02323,"113":0.03252,"114":0.07898,"115":0.06969,"116":0.16726,"117":2.49955,"118":2.44844,"119":0.00465,_:"12 13 15 79 80 81 83 101 102 104"},E:{"13":0.04181,"14":0.11615,"15":0.03252,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 17.2","5.1":0.00929,"9.1":0.02788,"10.1":0.00465,"11.1":0.03252,"12.1":0.07434,"13.1":0.17655,"14.1":0.26947,"15.1":0.04646,"15.2-15.3":0.04181,"15.4":0.06504,"15.5":0.08827,"15.6":0.48783,"16.0":0.07434,"16.1":0.13473,"16.2":0.1115,"16.3":0.27876,"16.4":0.13009,"16.5":0.32057,"16.6":1.3938,"17.0":0.62721,"17.1":0.03717},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00176,"5.0-5.1":0.00176,"6.0-6.1":0.00529,"7.0-7.1":0.01235,"8.1-8.4":0.00176,"9.0-9.2":0.01235,"9.3":0.04233,"10.0-10.2":0.00176,"10.3":0.06173,"11.0-11.2":0.05644,"11.3-11.4":0.0194,"12.0-12.1":0.01587,"12.2-12.5":0.28041,"13.0-13.1":0.00882,"13.2":0.04762,"13.3":0.01764,"13.4-13.7":0.05644,"14.0-14.4":0.1552,"14.5-14.8":0.25043,"15.0-15.1":0.09876,"15.2-15.3":0.11287,"15.4":0.12522,"15.5":0.17812,"15.6-15.7":1.23276,"16.0":0.45501,"16.1":0.87122,"16.2":0.42503,"16.3":0.78833,"16.4":0.16931,"16.5":0.45148,"16.6-16.7":8.4565,"17.0":3.01224,"17.1":0.18165,"17.2":0.00529},P:{"4":0.05324,"20":0.06389,"21":0.12779,"22":2.03395,"23":0.38336,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.01065,"9.2":0.01065,"11.1-11.2":0.0213,"13.0":0.0213,"14.0":0.0213,"15.0":0.01065,"16.0":0.03195,"17.0":0.0213,"18.0":0.03195,"19.0":0.05324},I:{"0":0.06925,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"8":0.0048,"9":0.02881,"11":0.11042,_:"6 7 10 5.5"},K:{"0":0.54146,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00535,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.65854},Q:{"13.1":0.00535},O:{"0":0.55146},H:{"0":0.01},L:{"0":31.88297}};
      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 861ccb53423431..9cdf5f320f9d70 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00298,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00596,"49":0,"50":0,"51":0,"52":0.00298,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00298,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00298,"103":0,"104":0,"105":0,"106":0,"107":0.00298,"108":0,"109":0,"110":0,"111":0,"112":0.00596,"113":0,"114":0,"115":0.03873,"116":0.00894,"117":0.25024,"118":0.04171,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00596,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00298,"67":0,"68":0,"69":0.00894,"70":0,"71":0,"72":0,"73":0.00298,"74":0,"75":0.00298,"76":0,"77":0.00298,"78":0,"79":0.02085,"80":0.00894,"81":0.03277,"83":0.01787,"84":0.00596,"85":0,"86":0,"87":0.00596,"88":0.00596,"89":0.02383,"90":0,"91":0,"92":0,"93":0,"94":0.05064,"95":0.02383,"96":0,"97":0,"98":0.0149,"99":0,"100":0,"101":0.00596,"102":0.01787,"103":0.01192,"104":0,"105":0,"106":0.0149,"107":0,"108":0,"109":0.87285,"110":0.00894,"111":0.00298,"112":0.03575,"113":0.01192,"114":0.09235,"115":0.11022,"116":2.47257,"117":0.72986,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00894,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00298,"58":0.01192,"60":0.00596,"62":0,"63":0.00596,"64":0,"65":0,"66":0.00596,"67":0.00298,"68":0.00298,"69":0.04171,"70":0.0149,"71":0.06852,"72":0.24428,"73":0.08937,"74":0,"75":0,"76":0,"77":0.00596,"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.06256,"96":0,"97":0,"98":0,"99":0,"100":0.00298,"101":0.07448,"102":0.09235,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0.00298,"11.5":0,"11.6":0,"12.1":0.00298},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00298,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00894,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00298,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00298,"109":0.02681,"110":0,"111":0.02979,"112":0,"113":0.00894,"114":0.01192,"115":0.02085,"116":0.74177,"117":0.48856},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.00596,"14.1":0.00298,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.02085,"15.6":0.02085,"16.0":0,"16.1":0,"16.2":0.00298,"16.3":0.00298,"16.4":0.00298,"16.5":0.01192,"16.6":0.02383,"17.0":0,"17.1":0},G:{"8":0.00992,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00662,"6.0-6.1":0.00331,"7.0-7.1":0.49282,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07607,"10.0-10.2":0,"10.3":0.1108,"11.0-11.2":0.08269,"11.3-11.4":0.36383,"12.0-12.1":0.18191,"12.2-12.5":3.96573,"13.0-13.1":0,"13.2":0,"13.3":0.00331,"13.4-13.7":0.02481,"14.0-14.4":0.10915,"14.5-14.8":0.18853,"15.0-15.1":0.48951,"15.2-15.3":0.10419,"15.4":0.02646,"15.5":0.26129,"15.6-15.7":3.78547,"16.0":0.12238,"16.1":0.55897,"16.2":0.18191,"16.3":0.62016,"16.4":0.15545,"16.5":0.49282,"16.6":3.28438,"17.0":0.70947,"17.1":0.00496},P:{"4":0.41678,"20":0.20331,"21":0.16265,"22":1.69762,"5.0-5.4":0.01017,"6.2-6.4":0.02033,"7.2-7.4":0.41678,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.08132,"12.0":0,"13.0":0.01017,"14.0":0.01017,"15.0":0.02033,"16.0":0.09149,"17.0":0.02033,"18.0":0.08132,"19.0":0.06099},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00259,"4.4":0,"4.4.3-4.4.4":0.09699},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00894,"5.5":0},S:{"2.5":0.02808,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.55528},R:{_:"0"},M:{"0":0.04213},Q:{"13.1":0},O:{"0":0.17553},H:{"0":2.09381}};
      +module.exports={C:{"34":0.0029,"37":0.00579,"40":0.0029,"52":0.00869,"64":0.0029,"78":0.06369,"88":0.00579,"91":0.00579,"107":0.02316,"112":0.01448,"113":0.0029,"114":0.0029,"115":0.15344,"116":0.0029,"117":0.01158,"118":0.70638,"119":0.15923,_:"2 3 4 5 6 7 8 9 10 11 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 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 120 121 122 3.5 3.6"},D:{"40":0.0029,"43":0.0029,"50":0.0029,"53":0.00579,"55":0.00579,"56":0.0029,"58":0.0608,"66":0.0029,"67":0.00579,"68":0.0029,"69":0.01158,"70":0.08106,"73":0.01448,"74":0.00579,"75":0.03185,"76":0.0029,"79":0.07238,"80":0.0029,"81":0.00579,"83":0.06659,"84":0.02027,"87":0.00869,"88":0.01448,"89":0.07238,"92":0.01158,"93":0.00869,"94":0.00869,"95":0.01737,"96":0.0029,"97":0.0029,"98":0.04632,"99":0.0029,"101":0.05211,"102":0.07238,"103":0.02027,"105":0.00579,"106":0.04632,"107":0.00869,"108":0.00869,"109":2.70104,"110":0.02895,"111":0.0029,"112":0.17949,"113":0.00869,"114":0.05501,"115":0.06659,"116":1.33749,"117":5.45708,"118":6.82931,"119":0.0029,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 49 51 52 54 57 59 60 61 62 63 64 65 71 72 77 78 85 86 90 91 100 104 120 121 122"},F:{"28":0.02316,"46":0.02316,"85":0.00579,"89":0.00869,"95":0.20555,"101":0.0029,"102":0.31266,"103":0.2345,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00869,"92":0.01158,"109":0.04053,"113":0.00579,"114":0.01737,"115":0.0608,"116":0.07817,"117":1.63857,"118":1.7399,"119":0.0029,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112"},E:{"14":0.0029,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 16.0 17.2","5.1":0.0029,"13.1":0.02316,"14.1":0.0029,"15.1":0.02027,"15.4":0.0029,"15.5":0.11001,"15.6":0.05501,"16.1":0.01158,"16.2":0.00579,"16.3":0.00869,"16.4":0.0029,"16.5":0.00579,"16.6":0.0608,"17.0":0.03764,"17.1":0.0029},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00122,"5.0-5.1":0.00122,"6.0-6.1":0.00366,"7.0-7.1":0.00854,"8.1-8.4":0.00122,"9.0-9.2":0.00854,"9.3":0.02928,"10.0-10.2":0.00122,"10.3":0.0427,"11.0-11.2":0.03904,"11.3-11.4":0.01342,"12.0-12.1":0.01098,"12.2-12.5":0.19397,"13.0-13.1":0.0061,"13.2":0.03294,"13.3":0.0122,"13.4-13.7":0.03904,"14.0-14.4":0.10735,"14.5-14.8":0.17323,"15.0-15.1":0.06832,"15.2-15.3":0.07808,"15.4":0.08661,"15.5":0.12321,"15.6-15.7":0.85273,"16.0":0.31474,"16.1":0.60264,"16.2":0.294,"16.3":0.54531,"16.4":0.11711,"16.5":0.3123,"16.6-16.7":5.84956,"17.0":2.08364,"17.1":0.12565,"17.2":0.00366},P:{"4":0.2167,"20":0.17543,"21":0.09287,"22":1.08351,"23":0.28894,_:"5.0-5.4 8.2 9.2 10.1 14.0","6.2-6.4":0.01032,"7.2-7.4":0.44372,"11.1-11.2":0.12383,"12.0":0.01032,"13.0":0.01032,"15.0":0.01032,"16.0":0.07223,"17.0":0.02064,"18.0":0.01032,"19.0":0.03096},I:{"0":0.01414,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.03474,_:"6 7 8 9 10 5.5"},K:{"0":1.61783,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01421,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.03553},Q:{_:"13.1"},O:{"0":0.22736},H:{"0":0.13},L:{"0":58.74952}};
      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 14e0534fb32632..32159af7715247 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0052,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0052,"49":0,"50":0,"51":0,"52":0.01039,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01039,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01039,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0052,"90":0.0052,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01559,"103":0,"104":0.0052,"105":0,"106":0.0052,"107":0,"108":0.0052,"109":0.0052,"110":0,"111":0.0052,"112":0.0052,"113":0.01559,"114":0.0052,"115":0.08835,"116":0.07276,"117":0.72238,"118":0.06236,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01039,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.02599,"57":0,"58":0,"59":0,"60":0.02079,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.04677,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.0052,"75":0.0052,"76":0.01039,"77":0.0052,"78":0.0052,"79":0.02079,"80":0.0052,"81":0.01559,"83":0.01559,"84":0.0052,"85":0.0052,"86":0.01039,"87":0.01559,"88":0.01039,"89":0.0052,"90":0.0052,"91":0.02079,"92":0.01039,"93":0.05197,"94":0.0052,"95":0.0052,"96":0.04677,"97":0.0052,"98":0.01039,"99":0.01039,"100":0.01039,"101":0.01559,"102":0.01039,"103":0.1767,"104":0.01559,"105":0.02599,"106":0.02599,"107":0.02599,"108":0.02599,"109":0.53009,"110":0.02079,"111":0.03118,"112":0.06756,"113":0.06236,"114":0.32741,"115":0.62884,"116":10.42518,"117":2.60889,"118":0.0052,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0052,"47":0,"48":0,"49":0,"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.01559,"73":0.0052,"74":0,"75":0,"76":0,"77":0.01559,"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.01039,"96":0,"97":0,"98":0,"99":0.0052,"100":0.07276,"101":0.15071,"102":0.30143,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0052,"18":0,"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.0052,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.0052,"108":0.0052,"109":0.04677,"110":0.0052,"111":0.0052,"112":0.01039,"113":0.01559,"114":0.05197,"115":0.21308,"116":2.79079,"117":2.15156},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0052,"14":0.04158,"15":0.0052,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0052,"10.1":0,"11.1":0.01039,"12.1":0.01039,"13.1":0.06236,"14.1":0.11953,"15.1":0.01559,"15.2-15.3":0.01559,"15.4":0.02599,"15.5":0.04158,"15.6":0.32741,"16.0":0.03118,"16.1":0.06236,"16.2":0.07796,"16.3":0.1767,"16.4":0.06236,"16.5":0.30143,"16.6":1.7306,"17.0":0.07276,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01102,"8.1-8.4":0.00735,"9.0-9.2":0,"9.3":0.202,"10.0-10.2":0,"10.3":0.17997,"11.0-11.2":0.04407,"11.3-11.4":0.06978,"12.0-12.1":0.01836,"12.2-12.5":0.85943,"13.0-13.1":0.00735,"13.2":0.00367,"13.3":0.0404,"13.4-13.7":0.05142,"14.0-14.4":0.13589,"14.5-14.8":0.40768,"15.0-15.1":0.09182,"15.2-15.3":0.1212,"15.4":0.13957,"15.5":0.22771,"15.6-15.7":2.83539,"16.0":0.96594,"16.1":2.01268,"16.2":0.89249,"16.3":1.70784,"16.4":0.19466,"16.5":0.7419,"16.6":22.52149,"17.0":1.75559,"17.1":0.00735},P:{"4":0.04211,"20":0.06316,"21":0.1579,"22":3.09474,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01053,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01053,"12.0":0,"13.0":0.01053,"14.0":0.02105,"15.0":0.01053,"16.0":0.02105,"17.0":0.02105,"18.0":0.02105,"19.0":0.03158},I:{"0":0,"3":0,"4":0.06266,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01566,"4.2-4.3":0.05482,"4.4":0,"4.4.3-4.4.4":0.30545},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0052,"9":0.0052,"10":0,"11":0.03638,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":30.90713},R:{_:"0"},M:{"0":0.29779},Q:{"13.1":0},O:{"0":0.12008},H:{"0":0.20008}};
      +module.exports={C:{"11":0.00461,"48":0.01382,"52":0.01842,"59":0.02303,"60":0.00461,"65":0.00921,"66":0.00461,"78":0.01382,"83":0.00461,"87":0.00461,"88":0.00461,"89":0.00461,"102":0.00921,"104":0.00461,"105":0.00461,"108":0.00461,"109":0.00461,"110":0.00461,"111":0.00461,"112":0.00461,"113":0.01382,"114":0.00921,"115":0.17042,"116":0.01382,"117":0.09212,"118":1.2298,"119":0.20727,"120":0.00461,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 61 62 63 64 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 90 91 92 93 94 95 96 97 98 99 100 101 103 106 107 121 122 3.5 3.6"},D:{"38":0.00461,"41":0.00461,"42":0.00461,"43":0.00461,"44":0.00461,"45":0.00461,"49":0.02303,"51":0.00461,"52":0.00461,"56":0.02303,"58":0.00921,"59":0.00461,"60":0.03685,"65":0.00461,"66":0.08751,"67":0.00461,"70":0.00461,"71":0.00461,"72":0.00921,"73":0.02303,"74":0.00921,"75":0.00461,"76":0.01842,"77":0.00921,"78":0.00461,"79":0.03224,"80":0.01382,"81":0.01842,"83":0.03685,"84":0.00921,"85":0.01382,"86":0.01842,"87":0.02764,"88":0.02303,"89":0.01382,"90":0.00921,"91":0.02764,"92":0.01842,"93":0.10133,"94":0.00921,"95":0.00461,"96":0.0783,"97":0.00461,"98":0.01382,"99":0.01382,"100":0.01382,"101":0.02303,"102":0.01842,"103":0.27636,"104":0.01842,"105":0.03685,"106":0.01842,"107":0.05527,"108":0.03685,"109":0.80605,"110":0.03224,"111":0.04606,"112":0.08291,"113":0.0737,"114":0.33624,"115":0.23951,"116":2.00361,"117":11.79136,"118":9.68181,"119":0.02764,"120":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 35 36 37 39 40 46 47 48 50 53 54 55 57 61 62 63 64 68 69 121 122"},F:{"46":0.00461,"95":0.01842,"98":0.00461,"99":0.00921,"100":0.00921,"101":0.00921,"102":1.0732,"103":0.13818,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00921,"18":0.00461,"85":0.00461,"90":0.00461,"92":0.00921,"99":0.00461,"105":0.00461,"106":0.00461,"107":0.00461,"108":0.00921,"109":0.0783,"110":0.00921,"111":0.00921,"112":0.01842,"113":0.02764,"114":0.04145,"115":0.04145,"116":0.18885,"117":4.67048,"118":4.0671,"119":0.01382,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 91 93 94 95 96 97 98 100 101 102 103 104"},E:{"12":0.00461,"13":0.00921,"14":0.0783,"15":0.01382,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 10.1 17.2","5.1":0.00461,"9.1":0.00921,"11.1":0.02303,"12.1":0.02303,"13.1":0.11054,"14.1":0.22569,"15.1":0.03224,"15.2-15.3":0.02764,"15.4":0.05067,"15.5":0.08291,"15.6":0.62642,"16.0":0.05988,"16.1":0.12436,"16.2":0.14739,"16.3":0.33163,"16.4":0.12436,"16.5":0.32703,"16.6":2.90639,"17.0":0.75078,"17.1":0.05527},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00262,"5.0-5.1":0.00262,"6.0-6.1":0.00787,"7.0-7.1":0.01836,"8.1-8.4":0.00262,"9.0-9.2":0.01836,"9.3":0.06295,"10.0-10.2":0.00262,"10.3":0.09181,"11.0-11.2":0.08394,"11.3-11.4":0.02885,"12.0-12.1":0.02361,"12.2-12.5":0.41707,"13.0-13.1":0.01312,"13.2":0.07082,"13.3":0.02623,"13.4-13.7":0.08394,"14.0-14.4":0.23083,"14.5-14.8":0.37248,"15.0-15.1":0.14689,"15.2-15.3":0.16788,"15.4":0.18624,"15.5":0.26493,"15.6-15.7":1.83355,"16.0":0.67676,"16.1":1.29581,"16.2":0.63217,"16.3":1.17253,"16.4":0.25182,"16.5":0.67151,"16.6-16.7":12.57778,"17.0":4.48026,"17.1":0.27018,"17.2":0.00787},P:{"4":0.03301,"20":0.05502,"21":0.13205,"22":2.83913,"23":0.66026,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.011,"13.0":0.011,"14.0":0.02201,"16.0":0.011,"17.0":0.02201,"18.0":0.011,"19.0":0.03301},I:{"0":0.04293,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"8":0.00485,"9":0.0097,"11":0.07757,_:"6 7 10 5.5"},K:{"0":0.23273,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.34522},Q:{_:"13.1"},O:{"0":0.11867},H:{"0":0.01},L:{"0":23.43789}};
      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 22c43aab42c85d..cbb1b288b56fcc 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01078,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01617,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.02695,"103":0,"104":0,"105":0.00539,"106":0,"107":0,"108":0.00539,"109":0,"110":0,"111":0,"112":0.00539,"113":0,"114":0,"115":0.03772,"116":0.09161,"117":0.68979,"118":0.04311,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00539,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00539,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01617,"77":0.02156,"78":0,"79":0.00539,"80":0,"81":0,"83":0.00539,"84":0,"85":0,"86":0,"87":0.02695,"88":0.02695,"89":0,"90":0,"91":0,"92":0.00539,"93":0.01617,"94":0,"95":0,"96":0,"97":0,"98":0.00539,"99":0,"100":0,"101":0,"102":0.00539,"103":0.33412,"104":0.01078,"105":0.00539,"106":0.13473,"107":0.19939,"108":0.22095,"109":0.99158,"110":0.21556,"111":0.42034,"112":0.22634,"113":0.00539,"114":0.68979,"115":0.25867,"116":10.18521,"117":4.22498,"118":0.01617,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01078,"71":0,"72":0.03772,"73":0.00539,"74":0,"75":0,"76":0,"77":0.02695,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00539,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00539,"96":0,"97":0.22095,"98":0,"99":0.02695,"100":0.04311,"101":0.17245,"102":0.10239,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00539,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01617,"110":0,"111":0.21017,"112":0.194,"113":0.00539,"114":0.02156,"115":0.12395,"116":1.54664,"117":1.57898},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,_:"0","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.00539,"13.1":0.02156,"14.1":0.07006,"15.1":0,"15.2-15.3":0.00539,"15.4":0.00539,"15.5":0.03772,"15.6":0.38801,"16.0":0.01078,"16.1":0.04311,"16.2":0.04311,"16.3":0.15089,"16.4":0.04311,"16.5":0.69518,"16.6":1.78376,"17.0":0.04311,"17.1":0},G:{"8":0.00203,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0324,"6.0-6.1":0,"7.0-7.1":0.01418,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03848,"10.0-10.2":0,"10.3":0.05468,"11.0-11.2":0.01823,"11.3-11.4":0.02633,"12.0-12.1":0.01013,"12.2-12.5":0.46779,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.00608,"14.0-14.4":0.03038,"14.5-14.8":0.09315,"15.0-15.1":0.33616,"15.2-15.3":0.01823,"15.4":0.02228,"15.5":1.07935,"15.6-15.7":1.0834,"16.0":0.30983,"16.1":0.87077,"16.2":0.27136,"16.3":0.39488,"16.4":0.0729,"16.5":0.52246,"16.6":12.91776,"17.0":1.2454,"17.1":0},P:{"4":0.0103,"20":0.03091,"21":0.05151,"22":2.51374,"5.0-5.4":0.0103,"6.2-6.4":0,"7.2-7.4":0.19574,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0206,"12.0":0,"13.0":0.0103,"14.0":0,"15.0":0,"16.0":0.05151,"17.0":0.0103,"18.0":0,"19.0":0.03091},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.62734},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01078,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00461},N:{"10":0,"11":0},L:{"0":46.51484},R:{_:"0"},M:{"0":0.11528},Q:{"13.1":0},O:{"0":0.05072},H:{"0":0.54567}};
      +module.exports={C:{"52":0.02232,"60":0.02232,"101":0.00558,"102":0.00558,"115":0.07253,"116":0.00558,"117":0.05021,"118":1.0098,"119":0.11716,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 103 104 105 106 107 108 109 110 111 112 113 114 120 121 122 3.5 3.6"},D:{"31":0.00558,"63":0.00558,"65":0.01116,"66":0.01116,"73":0.02232,"75":0.00558,"76":0.02232,"77":0.01116,"79":0.10042,"83":0.0279,"87":0.00558,"91":0.00558,"93":0.01116,"95":0.00558,"96":0.00558,"103":0.49653,"104":0.00558,"105":0.01116,"108":0.0279,"109":1.39475,"110":0.01116,"111":0.01116,"112":0.22316,"113":0.01116,"114":0.19527,"115":0.12274,"116":1.47286,"117":16.20142,"118":10.48294,"119":0.00558,"120":0.00558,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 67 68 69 70 71 72 74 78 80 81 84 85 86 88 89 90 92 94 97 98 99 100 101 102 106 107 121 122"},F:{"83":0.00558,"101":0.00558,"102":0.35148,"103":0.09484,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0279,"88":0.00558,"108":0.01116,"109":0.01674,"111":0.03347,"114":0.01116,"115":0.12832,"116":0.25663,"117":11.93348,"118":2.15907,"119":0.00558,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 112 113"},E:{"14":0.04463,"15":0.00558,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.03347,"12.1":0.06137,"13.1":0.10042,"14.1":0.40169,"15.1":0.00558,"15.2-15.3":0.00558,"15.4":0.24548,"15.5":0.03905,"15.6":1.27201,"16.0":0.00558,"16.1":0.06137,"16.2":0.07253,"16.3":0.15621,"16.4":0.16179,"16.5":0.31242,"16.6":1.69044,"17.0":0.85359,"17.1":0.03905},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00096,"5.0-5.1":0.00096,"6.0-6.1":0.00289,"7.0-7.1":0.00674,"8.1-8.4":0.00096,"9.0-9.2":0.00674,"9.3":0.02313,"10.0-10.2":0.00096,"10.3":0.03372,"11.0-11.2":0.03083,"11.3-11.4":0.0106,"12.0-12.1":0.00867,"12.2-12.5":0.15321,"13.0-13.1":0.00482,"13.2":0.02602,"13.3":0.00964,"13.4-13.7":0.03083,"14.0-14.4":0.08479,"14.5-14.8":0.13683,"15.0-15.1":0.05396,"15.2-15.3":0.06167,"15.4":0.06841,"15.5":0.09732,"15.6-15.7":0.67353,"16.0":0.2486,"16.1":0.476,"16.2":0.23222,"16.3":0.43071,"16.4":0.0925,"16.5":0.24667,"16.6-16.7":4.62027,"17.0":1.64576,"17.1":0.09925,"17.2":0.00289},P:{"4":0.0325,"20":0.02167,"21":0.07583,"22":1.98237,"23":0.38997,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 17.0","7.2-7.4":0.04333,"11.1-11.2":0.01083,"16.0":0.05416,"18.0":0.01083,"19.0":0.02167},I:{"0":0.01319,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.00558,_:"6 7 8 9 10 5.5"},K:{"0":0.22542,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.07514},Q:{_:"13.1"},O:{"0":0.10608},H:{"0":0},L:{"0":34.25454}};
      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 b15ac163f4c6a8..af4169957710fc 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0134,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00447,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00893,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00447,"89":0,"90":0,"91":0.00447,"92":0.00447,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00893,"100":0,"101":0,"102":0.00893,"103":0,"104":0,"105":0.00447,"106":0,"107":0,"108":0,"109":0.00447,"110":0,"111":0,"112":0,"113":0.03573,"114":0,"115":0.11165,"116":0.05359,"117":0.30815,"118":0.0268,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00447,"39":0,"40":0,"41":0.00447,"42":0,"43":0.00447,"44":0.00447,"45":0.00447,"46":0.00447,"47":0.0134,"48":0,"49":0.0134,"50":0,"51":0.00447,"52":0,"53":0,"54":0,"55":0,"56":0.00447,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00447,"64":0,"65":0,"66":0.00447,"67":0,"68":0.0134,"69":0.00447,"70":0.00447,"71":0,"72":0,"73":0.0134,"74":0.00447,"75":0,"76":0.06252,"77":0.0134,"78":0.0134,"79":0.08039,"80":0.09825,"81":0.10272,"83":0.04913,"84":0.00447,"85":0.01786,"86":0.00447,"87":0.06699,"88":0.08485,"89":0.00447,"90":0.16078,"91":0.00447,"92":0.00447,"93":0,"94":0.00447,"95":0.06252,"96":0.00447,"97":0.00447,"98":0.14738,"99":0.0268,"100":0.05359,"101":0.00447,"102":0.01786,"103":0.04466,"104":0.00447,"105":0.0134,"106":0.03126,"107":0.02233,"108":0.01786,"109":2.21067,"110":0.00893,"111":0.03126,"112":0.06699,"113":0.03126,"114":0.15184,"115":0.2099,"116":7.68152,"117":2.40717,"118":0.00447,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00893,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00447,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0268,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00447,"64":0,"65":0,"66":0.00447,"67":0,"68":0.00447,"69":0,"70":0,"71":0,"72":0.02233,"73":0.00447,"74":0.00447,"75":0,"76":0.00447,"77":0.0134,"78":0.00447,"79":0.00893,"80":0,"81":0.00447,"82":0,"83":0,"84":0.00447,"85":0.0134,"86":0.00447,"87":0.01786,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00447,"95":0.32602,"96":0,"97":0,"98":0,"99":0.00893,"100":0.07592,"101":0.50019,"102":0.50019,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00447,"13":0.01786,"14":0.0134,"15":0.00893,"16":0.00893,"17":0,"18":0.01786,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00447,"89":0,"90":0,"91":0,"92":0.00893,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00893,"101":0.00447,"102":0,"103":0,"104":0,"105":0,"106":0.00447,"107":0.00447,"108":0,"109":0.01786,"110":0.0134,"111":0.00447,"112":0.00447,"113":0.00893,"114":0.04913,"115":0.04019,"116":0.66543,"117":0.50019},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00447,"10":0,"11":0,"12":0,"13":0,"14":0.00893,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00447,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01786,"14.1":0.0268,"15.1":0.00893,"15.2-15.3":0.00447,"15.4":0.00893,"15.5":0.0134,"15.6":0.05359,"16.0":0.00447,"16.1":0.03573,"16.2":0.0134,"16.3":0.07146,"16.4":0.01786,"16.5":0.05806,"16.6":0.26796,"17.0":0.02233,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.05251,"6.0-6.1":0.00194,"7.0-7.1":0.12642,"8.1-8.4":0.00972,"9.0-9.2":0.00194,"9.3":0.04862,"10.0-10.2":0,"10.3":0.08752,"11.0-11.2":0.05251,"11.3-11.4":0.00583,"12.0-12.1":0.02528,"12.2-12.5":0.5932,"13.0-13.1":0.00778,"13.2":0.00778,"13.3":2.43893,"13.4-13.7":0.04084,"14.0-14.4":0.14587,"14.5-14.8":0.33064,"15.0-15.1":0.11281,"15.2-15.3":0.0953,"15.4":0.09336,"15.5":0.17504,"15.6-15.7":1.69014,"16.0":0.66322,"16.1":0.8791,"16.2":0.45122,"16.3":0.93551,"16.4":0.22367,"16.5":0.57959,"16.6":7.68827,"17.0":1.66485,"17.1":0.00389},P:{"4":0.65757,"20":0.06263,"21":0.10438,"22":1.32557,"5.0-5.4":0.03131,"6.2-6.4":0.02088,"7.2-7.4":0.07306,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02088,"12.0":0,"13.0":0.03131,"14.0":0,"15.0":0.01044,"16.0":0.02088,"17.0":0.03131,"18.0":0.02088,"19.0":0.05219},I:{"0":0,"3":0,"4":0.05018,"2.1":0,"2.2":0.02007,"2.3":0.04014,"4.1":0.04014,"4.2-4.3":0.13046,"4.4":0,"4.4.3-4.4.4":0.66232},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00502,"8":0.0201,"9":0.00502,"10":0.0201,"11":0.03015,"5.5":0},S:{"2.5":0.04427,_:"3.0-3.1"},J:{"7":0,"10":0.00553},N:{"10":0.01107,"11":0},L:{"0":55.79191},R:{_:"0"},M:{"0":0.11621},Q:{"13.1":0},O:{"0":0.04981},H:{"0":0.36675}};
      +module.exports={C:{"34":0.00429,"52":0.00429,"57":0.00429,"68":0.01287,"78":0.01287,"88":0.01716,"91":0.01287,"96":0.00429,"99":0.03862,"104":0.00429,"113":0.07724,"115":0.22742,"116":0.63078,"117":0.02575,"118":0.59645,"119":0.09869,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 97 98 100 101 102 103 105 106 107 108 109 110 111 112 114 120 121 122 3.5 3.6"},D:{"11":0.00429,"36":0.00429,"38":0.00858,"43":0.00429,"44":0.00429,"45":0.00429,"46":0.00429,"47":0.02146,"49":0.02146,"51":0.00429,"53":0.00429,"56":0.01287,"61":0.00429,"62":0.00858,"63":0.00858,"64":0.00429,"65":0.00429,"66":0.00429,"68":0.03433,"69":0.00429,"70":0.01287,"71":0.00429,"73":0.03433,"74":0.00429,"75":0.00429,"76":0.00429,"78":0.01716,"79":0.24459,"80":0.00429,"81":0.00429,"83":0.11586,"84":0.00858,"85":0.01287,"86":0.01287,"87":0.18022,"88":0.05578,"89":0.00858,"90":0.06866,"91":0.00429,"92":0.00858,"93":0.01287,"94":0.02575,"95":0.01716,"96":0.02146,"97":0.01287,"98":0.05149,"99":0.01287,"100":0.03433,"101":0.01287,"102":0.03004,"103":0.13302,"104":0.02146,"105":0.01287,"106":0.03433,"107":0.0472,"108":0.09869,"109":5.04193,"110":0.02575,"111":0.03862,"112":0.05149,"113":0.03004,"114":0.14589,"115":0.0944,"116":0.82387,"117":11.09653,"118":11.5385,"119":0.01287,"120":0.00858,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 40 41 42 48 50 52 54 55 57 58 59 60 67 72 77 121 122"},F:{"28":0.02575,"36":0.00429,"40":0.00429,"46":0.06866,"63":0.01287,"66":0.00429,"67":0.00429,"77":0.00429,"79":0.02146,"82":0.00429,"83":0.00429,"84":0.00429,"85":0.03433,"86":0.01287,"87":0.01716,"89":0.00429,"92":0.01716,"94":0.01716,"95":0.5707,"98":0.00429,"99":0.00429,"101":0.01287,"102":2.03393,"103":0.7638,_:"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 64 65 68 69 70 71 72 73 74 75 76 78 80 81 88 90 91 93 96 97 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00429,"13":0.03004,"14":0.02146,"15":0.00429,"16":0.01716,"18":0.03004,"84":0.00858,"92":0.01716,"93":0.00429,"100":0.00858,"102":0.00429,"107":0.01287,"108":0.02575,"109":0.03004,"110":0.00858,"111":0.00429,"112":0.03004,"113":0.01716,"114":0.03004,"115":0.03004,"116":0.17164,"117":1.622,"118":1.5276,"119":0.00429,_:"17 79 80 81 83 85 86 87 88 89 90 91 94 95 96 97 98 99 101 103 104 105 106"},E:{"9":0.00858,"14":0.01716,"15":0.00429,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00429,"12.1":0.00429,"13.1":0.03004,"14.1":0.06866,"15.1":0.00429,"15.2-15.3":0.00858,"15.4":0.03004,"15.5":0.02146,"15.6":0.13302,"16.0":0.01287,"16.1":0.0944,"16.2":0.02575,"16.3":0.09011,"16.4":0.0472,"16.5":0.08153,"16.6":0.35186,"17.0":0.39048,"17.1":0.02575},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00123,"5.0-5.1":0.00123,"6.0-6.1":0.00368,"7.0-7.1":0.00859,"8.1-8.4":0.00123,"9.0-9.2":0.00859,"9.3":0.02947,"10.0-10.2":0.00123,"10.3":0.04297,"11.0-11.2":0.03929,"11.3-11.4":0.01351,"12.0-12.1":0.01105,"12.2-12.5":0.19522,"13.0-13.1":0.00614,"13.2":0.03315,"13.3":0.01228,"13.4-13.7":0.03929,"14.0-14.4":0.10805,"14.5-14.8":0.17435,"15.0-15.1":0.06876,"15.2-15.3":0.07858,"15.4":0.08717,"15.5":0.12401,"15.6-15.7":0.85823,"16.0":0.31677,"16.1":0.60653,"16.2":0.2959,"16.3":0.54882,"16.4":0.11787,"16.5":0.31431,"16.6-16.7":5.88726,"17.0":2.09707,"17.1":0.12646,"17.2":0.00368},P:{"4":0.60715,"20":0.05326,"21":0.07456,"22":1.28886,"23":0.22369,"5.0-5.4":0.03196,"6.2-6.4":0.0213,"7.2-7.4":0.07456,_:"8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.01065,"13.0":0.03196,"16.0":0.0213,"17.0":0.03196,"18.0":0.0213,"19.0":0.05326},I:{"0":0.13629,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.00041},A:{"8":0.02503,"9":0.00501,"10":0.00501,"11":0.05507,_:"6 7 5.5"},K:{"0":0.29111,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.10274},Q:{_:"13.1"},O:{"0":0.03996},H:{"0":0},L:{"0":42.14125}};
      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 9e4b420dd066c3..6c362aa2476380 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00394,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00788,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00788,"88":0.00788,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01182,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.05123,"103":0.00394,"104":0,"105":0,"106":0.00788,"107":0,"108":0.00394,"109":0.00394,"110":0.00394,"111":0.00394,"112":0.01182,"113":0.01182,"114":0.01182,"115":0.20493,"116":0.14976,"117":1.38329,"118":0.18129,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00394,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00394,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00394,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00394,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01971,"77":0,"78":0,"79":0.00394,"80":0,"81":0.00394,"83":0.00788,"84":0,"85":0,"86":0.00394,"87":0,"88":0,"89":0.00788,"90":0.00394,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00394,"98":0,"99":0.03153,"100":0,"101":0,"102":0,"103":0.02365,"104":0,"105":0.00788,"106":0.00394,"107":0,"108":0.02759,"109":0.34681,"110":0.00394,"111":0.01576,"112":0.03547,"113":0.02759,"114":0.07882,"115":0.09458,"116":4.92231,"117":1.26506,"118":0.00394,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00394,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.03153,"47":0,"48":0,"49":0,"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.01971,"73":0,"74":0,"75":0,"76":0,"77":0.00394,"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.00788,"93":0,"94":0,"95":0.00394,"96":0,"97":0,"98":0,"99":0,"100":0.16946,"101":0.08276,"102":0.21676,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.01576,"16":0,"17":0,"18":0.02759,"79":0,"80":0.01971,"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.00788,"100":0,"101":0,"102":0.00394,"103":0,"104":0,"105":0.00394,"106":0,"107":0,"108":0,"109":0.01182,"110":0.00394,"111":0,"112":0.00394,"113":0.00788,"114":0.06306,"115":0.04335,"116":1.59611,"117":1.59611},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01971,"14":0.04335,"15":0.00788,_:"0","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.00394,"13.1":0.04335,"14.1":0.14188,"15.1":0.01971,"15.2-15.3":0.00788,"15.4":0.00788,"15.5":0.04335,"15.6":0.09853,"16.0":0.01971,"16.1":0.06306,"16.2":0.03547,"16.3":0.11035,"16.4":0.05123,"16.5":0.16158,"16.6":0.61874,"17.0":0.02759,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0183,"10.0-10.2":0,"10.3":0.02092,"11.0-11.2":0.00523,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.12811,"13.0-13.1":0,"13.2":0,"13.3":0.0183,"13.4-13.7":0.06536,"14.0-14.4":0.47322,"14.5-14.8":0.95429,"15.0-15.1":0.05229,"15.2-15.3":0.07582,"15.4":0.17517,"15.5":0.1438,"15.6-15.7":1.67066,"16.0":1.47196,"16.1":1.01704,"16.2":1.05625,"16.3":1.21051,"16.4":0.17779,"16.5":1.16868,"16.6":13.95352,"17.0":2.03407,"17.1":0},P:{"4":0.04088,"20":0.12265,"21":0.21464,"22":3.31157,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.10221,"8.2":0,"9.2":0.01022,"10.1":0,"11.1-11.2":0.02044,"12.0":0,"13.0":0.02044,"14.0":0.02044,"15.0":0.01022,"16.0":0.03066,"17.0":0.03066,"18.0":0.04088,"19.0":0.21464},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.06547},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00394,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":52.67643},R:{_:"0"},M:{"0":0.53925},Q:{"13.1":0},O:{"0":0.01212},H:{"0":0.08604}};
      +module.exports={C:{"47":0.00434,"50":0.00434,"52":0.00434,"54":0.00434,"68":0.00434,"78":0.08686,"88":0.00434,"89":0.00434,"91":0.00869,"94":0.00434,"96":0.02172,"100":0.00434,"102":0.10858,"103":0.00434,"108":0.01303,"109":0.00869,"112":0.05212,"113":0.00434,"114":0.03474,"115":0.51682,"116":0.01737,"117":0.16503,"118":4.19534,"119":0.5559,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 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 90 92 93 95 97 98 99 101 104 105 106 107 110 111 120 121 122 3.5 3.6"},D:{"11":0.03909,"41":0.01737,"47":0.00434,"49":0.00434,"60":0.00869,"61":0.00434,"65":0.01303,"69":0.00434,"72":0.00434,"74":0.01303,"76":0.05646,"77":0.00434,"79":0.02606,"83":0.00434,"86":0.00434,"87":0.00434,"88":0.00434,"89":0.00434,"95":0.00434,"99":0.14766,"100":0.00434,"101":0.00434,"102":0.00434,"103":0.11292,"105":0.0304,"106":0.00434,"108":0.00869,"109":0.84689,"110":0.00434,"111":0.0608,"112":0.02606,"113":0.03909,"114":0.07817,"115":0.15635,"116":0.76003,"117":8.38633,"118":7.71751,"119":0.00434,"120":0.00434,_:"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 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 62 63 64 66 67 68 70 71 73 75 78 80 81 84 85 90 91 92 93 94 96 97 98 104 107 121 122"},F:{"28":0.01737,"36":0.01303,"46":0.16503,"102":0.9598,"103":0.33007,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.16503,"17":0.00434,"18":0.03474,"92":0.02606,"99":0.0608,"102":0.01737,"103":0.01303,"105":0.01737,"107":0.00434,"109":0.02172,"111":0.00434,"112":0.01737,"113":0.0304,"114":0.07383,"115":0.07817,"116":0.05646,"117":4.27351,"118":3.93042,"119":0.00869,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 100 101 104 106 108 110"},E:{"13":0.01737,"14":0.23452,"15":0.05646,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.00434,"12.1":0.01303,"13.1":0.11726,"14.1":0.42127,"15.1":0.01737,"15.2-15.3":0.03474,"15.4":0.05646,"15.5":0.04343,"15.6":0.66448,"16.0":0.13029,"16.1":0.19978,"16.2":0.11292,"16.3":0.51247,"16.4":0.36481,"16.5":0.78174,"16.6":1.96738,"17.0":1.19867,"17.1":0.0304},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00153,"5.0-5.1":0.00153,"6.0-6.1":0.00458,"7.0-7.1":0.01069,"8.1-8.4":0.00153,"9.0-9.2":0.01069,"9.3":0.03666,"10.0-10.2":0.00153,"10.3":0.05346,"11.0-11.2":0.04888,"11.3-11.4":0.0168,"12.0-12.1":0.01375,"12.2-12.5":0.24286,"13.0-13.1":0.00764,"13.2":0.04124,"13.3":0.01527,"13.4-13.7":0.04888,"14.0-14.4":0.13441,"14.5-14.8":0.21689,"15.0-15.1":0.08553,"15.2-15.3":0.09775,"15.4":0.10844,"15.5":0.15427,"15.6-15.7":1.06765,"16.0":0.39407,"16.1":0.75453,"16.2":0.3681,"16.3":0.68274,"16.4":0.14663,"16.5":0.39101,"16.6-16.7":7.32384,"17.0":2.60878,"17.1":0.15732,"17.2":0.00458},P:{"4":0.03111,"20":0.04147,"21":0.11405,"22":2.4055,"23":0.3629,"5.0-5.4":0.01037,_:"6.2-6.4 8.2 9.2 10.1 15.0","7.2-7.4":0.07258,"11.1-11.2":0.1659,"12.0":0.01037,"13.0":0.01037,"14.0":0.01037,"16.0":0.01037,"17.0":0.01037,"18.0":0.03111,"19.0":0.43548},I:{"0":0.04503,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"11":0.00869,_:"6 7 8 9 10 5.5"},K:{"0":0.14708,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.70713},Q:{"13.1":0.01697},O:{"0":0.03394},H:{"0":0},L:{"0":37.88267}};
      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 71beffd0fa0cfe..24dc4980196e1a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00489,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.04887,"103":0.00977,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.01466,"115":0.01955,"116":0.0391,"117":0.81124,"118":0.04398,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.12218,"77":0.02932,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00489,"87":0.00489,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.04887,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00977,"100":0,"101":0,"102":0,"103":0.02932,"104":0,"105":0,"106":0.02444,"107":0.00489,"108":0,"109":1.03604,"110":0,"111":0.00489,"112":0.02932,"113":0.00977,"114":0.30299,"115":0.37141,"116":6.94931,"117":2.47282,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00977,"73":0,"74":0,"75":0,"76":0,"77":0.00489,"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.02444,"96":0,"97":0,"98":0,"99":0,"100":0.0391,"101":0.04398,"102":0.10751,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01466,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01466,"110":0,"111":0,"112":0,"113":0,"114":0.02444,"115":0.10263,"116":1.65669,"117":1.60294},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00489,"14":0.05864,"15":0.00489,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01466,"12.1":0,"13.1":0.1515,"14.1":0.16616,"15.1":0.00489,"15.2-15.3":0.00977,"15.4":0.08797,"15.5":0.07819,"15.6":0.55223,"16.0":0.55712,"16.1":0.04398,"16.2":0.15638,"16.3":0.16127,"16.4":0.04887,"16.5":0.27367,"16.6":3.81186,"17.0":0.10751,"17.1":0},G:{"8":0.02539,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01523,"7.0-7.1":0.01523,"8.1-8.4":0,"9.0-9.2":0.03046,"9.3":0.18278,"10.0-10.2":0,"10.3":0.45694,"11.0-11.2":0.01523,"11.3-11.4":0.02539,"12.0-12.1":0,"12.2-12.5":1.09158,"13.0-13.1":0,"13.2":0,"13.3":0.03554,"13.4-13.7":0.00508,"14.0-14.4":0.03046,"14.5-14.8":0.3097,"15.0-15.1":0.03046,"15.2-15.3":0.13708,"15.4":0.15739,"15.5":0.22847,"15.6-15.7":3.56414,"16.0":0.8885,"16.1":2.49794,"16.2":1.12204,"16.3":2.58933,"16.4":0.47725,"16.5":0.80726,"16.6":32.78297,"17.0":2.61472,"17.1":0},P:{"4":0.02129,"20":0.01065,"21":0.19165,"22":4.30147,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01065,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.06388,"14.0":0.01065,"15.0":0,"16.0":0,"17.0":0.01065,"18.0":0.02129,"19.0":0.01065},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.32277},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04398,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":18.82108},R:{_:"0"},M:{"0":0.74139},Q:{"13.1":0},O:{"0":0.02045},H:{"0":0.02904}};
      +module.exports={C:{"34":0.00486,"78":0.06315,"84":0.00486,"87":0.00486,"102":0.01457,"103":0.00486,"112":0.00972,"113":0.00972,"115":0.0583,"116":0.01943,"117":0.06315,"118":1.3651,"119":0.36921,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 109 110 111 114 120 121 122 3.5 3.6"},D:{"47":0.00486,"49":0.00972,"76":0.2429,"77":0.04372,"79":0.00486,"83":0.02915,"84":0.00486,"85":0.00486,"87":0.00972,"89":0.00486,"90":0.00486,"93":0.07287,"99":0.01943,"103":0.11659,"108":0.06315,"109":1.33595,"112":0.05344,"113":0.05344,"114":0.22833,"115":0.05344,"116":2.74963,"117":12.95143,"118":8.4092,"119":0.00486,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 80 81 86 88 91 92 94 95 96 97 98 100 101 102 104 105 106 107 110 111 120 121 122"},F:{"95":0.00486,"99":0.13602,"102":0.58782,"103":0.0583,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.00486,"115":0.02429,"116":0.07287,"117":3.95927,"118":2.59417,"119":0.00486,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114"},E:{"13":0.00486,"14":0.14088,"15":0.06315,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.03401,"12.1":0.0583,"13.1":0.22347,"14.1":0.29634,"15.1":0.02429,"15.2-15.3":0.03401,"15.4":0.07773,"15.5":0.10202,"15.6":0.94731,"16.0":0.77242,"16.1":0.07773,"16.2":0.16517,"16.3":0.3012,"16.4":0.06315,"16.5":0.29148,"16.6":7.35987,"17.0":0.95217,"17.1":0.03886},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00345,"5.0-5.1":0.00345,"6.0-6.1":0.01035,"7.0-7.1":0.02414,"8.1-8.4":0.00345,"9.0-9.2":0.02414,"9.3":0.08277,"10.0-10.2":0.00345,"10.3":0.12071,"11.0-11.2":0.11036,"11.3-11.4":0.03794,"12.0-12.1":0.03104,"12.2-12.5":0.54835,"13.0-13.1":0.01724,"13.2":0.09312,"13.3":0.03449,"13.4-13.7":0.11036,"14.0-14.4":0.30349,"14.5-14.8":0.48972,"15.0-15.1":0.19313,"15.2-15.3":0.22072,"15.4":0.24486,"15.5":0.34832,"15.6-15.7":2.41067,"16.0":0.88977,"16.1":1.70368,"16.2":0.83115,"16.3":1.54159,"16.4":0.33108,"16.5":0.88288,"16.6-16.7":16.53671,"17.0":5.89045,"17.1":0.35522,"17.2":0.01035},P:{"4":0.02227,"20":0.0334,"21":0.1002,"22":2.93919,"23":0.6012,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 18.0 19.0","13.0":0.01113},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{"11":0.08744,_:"6 7 8 9 10 5.5"},K:{"0":0.05142,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.68903},Q:{_:"13.1"},O:{"0":0.00514},H:{"0":0},L:{"0":12.48373}};
      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 27e960c227ea28..d47e22e4066470 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"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.00245,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00245,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00245,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00245,"98":0,"99":0,"100":0,"101":0,"102":0.00245,"103":0,"104":0.00245,"105":0,"106":0.00245,"107":0,"108":0,"109":0,"110":0.00245,"111":0.00245,"112":0.00245,"113":0.00735,"114":0.0049,"115":0.05633,"116":0.03674,"117":0.2547,"118":0.03184,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00245,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00245,"44":0,"45":0,"46":0,"47":0,"48":0.00245,"49":0.0049,"50":0.00245,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00245,"64":0.00245,"65":0.00245,"66":0,"67":0,"68":0.00245,"69":0.00245,"70":0.0049,"71":0,"72":0.00245,"73":0.0049,"74":0.0049,"75":0.0049,"76":0.0049,"77":0.0049,"78":0,"79":0.0098,"80":0.00245,"81":0.0098,"83":0.00245,"84":0.00245,"85":0.0049,"86":0.0049,"87":0.0049,"88":0.0049,"89":0.00245,"90":0.00245,"91":0.0049,"92":0.0049,"93":0.0098,"94":0.00245,"95":0.00735,"96":0.00245,"97":0.00245,"98":0.0049,"99":0.0049,"100":0.00245,"101":0.00245,"102":0.0098,"103":0.02204,"104":0.0049,"105":0.00735,"106":0.01225,"107":0.00735,"108":0.01225,"109":0.4947,"110":0.00245,"111":0.00735,"112":0.0098,"113":0.01469,"114":0.04898,"115":0.06857,"116":1.80246,"117":0.43347,"118":0.0049,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.0049,"25":0,"26":0.00245,"27":0.00735,"28":0.0049,"29":0,"30":0.00245,"31":0.00245,"32":0.00245,"33":0.00245,"34":0,"35":0,"36":0,"37":0.00245,"38":0.00245,"39":0,"40":0,"41":0,"42":0.0049,"43":0,"44":0,"45":0,"46":0.00245,"47":0,"48":0,"49":0,"50":0.00245,"51":0.00245,"52":0,"53":0,"54":0.00735,"55":0.00245,"56":0.00245,"57":0.00245,"58":0.01225,"60":0.07837,"62":0.0049,"63":0.08082,"64":0.01959,"65":0.01225,"66":0.05878,"67":0.07347,"68":0.03918,"69":0.29878,"70":0.17633,"71":0.43592,"72":0.81552,"73":0.12245,"74":0.0049,"75":0.00245,"76":0.0049,"77":0.03918,"78":0.00245,"79":0.00735,"80":0,"81":0,"82":0,"83":0.00245,"84":0,"85":0.00245,"86":0.00245,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02204,"96":0,"97":0,"98":0,"99":0.0098,"100":0.0098,"101":0.11755,"102":0.10776,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0049},B:{"12":0.00245,"13":0.00245,"14":0.00245,"15":0.0049,"16":0.00245,"17":0.00245,"18":0.01225,"79":0,"80":0,"81":0,"83":0,"84":0.0049,"85":0,"86":0,"87":0,"88":0,"89":0.00735,"90":0.0049,"91":0,"92":0.01959,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00245,"101":0,"102":0,"103":0,"104":0,"105":0.00245,"106":0,"107":0,"108":0.00245,"109":0.01225,"110":0.00245,"111":0.00245,"112":0.0049,"113":0.00245,"114":0.01714,"115":0.02939,"116":0.28653,"117":0.16408},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00245,"12":0,"13":0.00245,"14":0.00245,"15":0.00245,_:"0","3.1":0,"3.2":0,"5.1":0.00245,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00245,"12.1":0.00245,"13.1":0.01225,"14.1":0.00735,"15.1":0.00245,"15.2-15.3":0,"15.4":0.00245,"15.5":0.00245,"15.6":0.01714,"16.0":0.00245,"16.1":0.0098,"16.2":0.00245,"16.3":0.01469,"16.4":0.00245,"16.5":0.01469,"16.6":0.03184,"17.0":0.0049,"17.1":0},G:{"8":0.01716,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00156,"6.0-6.1":0,"7.0-7.1":0.01404,"8.1-8.4":0.00312,"9.0-9.2":0,"9.3":0.06552,"10.0-10.2":0,"10.3":0.12167,"11.0-11.2":0.08736,"11.3-11.4":0.03744,"12.0-12.1":0.10139,"12.2-12.5":1.12782,"13.0-13.1":0.03588,"13.2":0.0234,"13.3":0.04368,"13.4-13.7":0.08268,"14.0-14.4":0.57405,"14.5-14.8":0.48981,"15.0-15.1":1.1559,"15.2-15.3":0.3385,"15.4":0.26051,"15.5":0.37126,"15.6-15.7":3.04808,"16.0":0.52569,"16.1":0.58809,"16.2":0.3619,"16.3":0.69572,"16.4":0.51477,"16.5":1.10286,"16.6":2.78133,"17.0":0.93595,"17.1":0},P:{"4":0.16481,"20":0.07211,"21":0.18541,"22":0.75196,"5.0-5.4":0.0206,"6.2-6.4":0,"7.2-7.4":0.11331,"8.2":0,"9.2":0.08241,"10.1":0,"11.1-11.2":0.0515,"12.0":0.0206,"13.0":0.0206,"14.0":0.0206,"15.0":0.0206,"16.0":0.0618,"17.0":0.0309,"18.0":0.0309,"19.0":0.13391},I:{"0":0,"3":0,"4":0.0008,"2.1":0,"2.2":0,"2.3":0.00321,"4.1":0.00321,"4.2-4.3":0.01847,"4.4":0,"4.4.3-4.4.4":0.12124},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0049,"9":0,"10":0.00245,"11":0.0049,"5.5":0},S:{"2.5":0.0151,_:"3.0-3.1"},J:{"7":0,"10":0.0151},N:{"10":0,"11":0},L:{"0":59.74773},R:{_:"0"},M:{"0":0.25673},Q:{"13.1":0.0151},O:{"0":1.01939},H:{"0":11.95279}};
      +module.exports={C:{"30":0.00225,"34":0.00225,"38":0.00225,"43":0.00225,"45":0.00225,"46":0.00225,"47":0.00225,"48":0.00225,"49":0.00225,"50":0.00225,"52":0.00225,"60":0.00225,"66":0.00225,"68":0.00225,"72":0.00675,"76":0.00225,"78":0.009,"85":0.00225,"86":0.00225,"87":0.00225,"90":0.00225,"100":0.00225,"101":0.00225,"102":0.0045,"103":0.00225,"104":0.00675,"106":0.00225,"107":0.0045,"108":0.0045,"109":0.00225,"110":0.00675,"111":0.0045,"112":0.0045,"113":0.009,"114":0.01349,"115":0.2249,"116":0.02024,"117":0.08546,"118":0.86137,"119":0.17317,"120":0.009,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 39 40 41 42 44 51 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 77 79 80 81 82 83 84 88 89 91 92 93 94 95 96 97 98 99 105 121 122 3.5 3.6"},D:{"11":0.0045,"30":0.0045,"33":0.00225,"37":0.00225,"38":0.00225,"39":0.00225,"41":0.00225,"43":0.00225,"44":0.00225,"45":0.00225,"46":0.00225,"47":0.00225,"49":0.02024,"50":0.01125,"51":0.00225,"53":0.00225,"55":0.00225,"56":0.00225,"57":0.00225,"58":0.00225,"63":0.01125,"64":0.01125,"65":0.0045,"67":0.0045,"68":0.01125,"69":0.009,"70":0.01125,"71":0.0045,"72":0.00675,"73":0.01349,"74":0.01574,"75":0.01574,"76":0.01574,"77":0.02024,"78":0.00225,"79":0.03823,"80":0.01574,"81":0.02699,"83":0.01349,"84":0.009,"85":0.01125,"86":0.01125,"87":0.02024,"88":0.01125,"89":0.009,"90":0.01574,"91":0.01349,"92":0.009,"93":0.03149,"94":0.009,"95":0.02249,"96":0.00675,"97":0.0045,"98":0.009,"99":0.01799,"100":0.00675,"101":0.00675,"102":0.02699,"103":0.1237,"104":0.02249,"105":0.03598,"106":0.02474,"107":0.02924,"108":0.04498,"109":1.9184,"110":0.01349,"111":0.02024,"112":0.02924,"113":0.04273,"114":0.09896,"115":0.08996,"116":0.53076,"117":4.42603,"118":4.44178,"119":0.02249,"120":0.009,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 34 35 36 40 42 48 52 54 59 60 61 62 66 121 122"},F:{"28":0.0045,"31":0.00225,"34":0.00675,"36":0.009,"42":0.00675,"46":0.00225,"50":0.00225,"62":0.009,"76":0.00225,"77":0.0045,"78":0.00225,"79":0.02474,"83":0.00225,"85":0.0045,"86":0.0045,"90":0.00225,"95":0.09446,"96":0.00225,"99":0.02024,"100":0.00675,"101":0.03149,"102":0.59149,"103":0.37333,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 35 37 38 39 40 41 43 44 45 47 48 49 51 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 74 75 80 81 82 84 87 88 89 91 92 93 94 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01125,"13":0.0045,"14":0.00675,"15":0.0045,"16":0.00675,"17":0.0045,"18":0.05623,"84":0.01574,"85":0.00225,"88":0.00225,"89":0.01799,"90":0.02699,"92":0.07422,"100":0.01349,"101":0.00225,"103":0.00225,"104":0.00225,"105":0.00225,"107":0.00675,"108":0.00675,"109":0.03374,"110":0.00675,"111":0.009,"112":0.009,"113":0.00675,"114":0.03823,"115":0.03374,"116":0.07647,"117":0.95807,"118":0.7894,"119":0.009,_:"79 80 81 83 86 87 91 93 94 95 96 97 98 99 102 106"},E:{"9":0.00225,"11":0.00675,"12":0.00225,"13":0.00675,"14":0.01574,"15":0.00225,_:"0 4 5 6 7 8 10 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.009,"11.1":0.009,"12.1":0.0045,"13.1":0.05398,"14.1":0.02699,"15.1":0.0045,"15.2-15.3":0.00225,"15.4":0.00675,"15.5":0.00675,"15.6":0.08096,"16.0":0.0045,"16.1":0.01125,"16.2":0.03374,"16.3":0.02249,"16.4":0.01349,"16.5":0.04048,"16.6":0.08096,"17.0":0.10121,"17.1":0.009},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00122,"5.0-5.1":0.00122,"6.0-6.1":0.00366,"7.0-7.1":0.00853,"8.1-8.4":0.00122,"9.0-9.2":0.00853,"9.3":0.02926,"10.0-10.2":0.00122,"10.3":0.04267,"11.0-11.2":0.03902,"11.3-11.4":0.01341,"12.0-12.1":0.01097,"12.2-12.5":0.19386,"13.0-13.1":0.0061,"13.2":0.03292,"13.3":0.01219,"13.4-13.7":0.03902,"14.0-14.4":0.10729,"14.5-14.8":0.17313,"15.0-15.1":0.06828,"15.2-15.3":0.07803,"15.4":0.08657,"15.5":0.12314,"15.6-15.7":0.85224,"16.0":0.31456,"16.1":0.6023,"16.2":0.29383,"16.3":0.545,"16.4":0.11705,"16.5":0.31212,"16.6-16.7":5.84622,"17.0":2.08245,"17.1":0.12558,"17.2":0.00366},P:{"4":0.1847,"20":0.05131,"21":0.1334,"22":0.6875,"23":0.09235,"5.0-5.4":0.02052,"6.2-6.4":0.01026,"7.2-7.4":0.11287,_:"8.2 10.1","9.2":0.09235,"11.1-11.2":0.06157,"12.0":0.02052,"13.0":0.02052,"14.0":0.02052,"15.0":0.01026,"16.0":0.06157,"17.0":0.03078,"18.0":0.04105,"19.0":0.15392},I:{"0":0.09254,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00028},A:{"8":0.00727,"9":0.00242,"10":0.00484,"11":0.01695,_:"6 7 5.5"},K:{"0":11.59112,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0155,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.25578},Q:{"13.1":0.02325},O:{"0":0.90687},H:{"0":0.95},L:{"0":53.46878}};
      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 4663acc469389f..eb5951644b10ba 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01639,"53":0.00546,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00546,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00546,"103":0,"104":0,"105":0.03825,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.01093,"116":0.03825,"117":0.75403,"118":0.12021,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.02186,"66":0,"67":0,"68":0,"69":0,"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.01639,"88":0,"89":0.03278,"90":0,"91":0.04371,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.17485,"104":0.00546,"105":0.02186,"106":0.05464,"107":0.25134,"108":0.25681,"109":0.69939,"110":0.02186,"111":0.14206,"112":0.08742,"113":0.26774,"114":0.49176,"115":0.20217,"116":11.8077,"117":4.4477,"118":0.00546,"119":0.00546,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00546,"73":0,"74":0,"75":0,"76":0,"77":0.00546,"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.00546,"96":0,"97":0,"98":0,"99":0,"100":0.01639,"101":0.08742,"102":0.39341,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01639,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.06557,"111":0,"112":0,"113":0,"114":0.02186,"115":0.0601,"116":2.10364,"117":2.5954},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03278,"14":0.02186,"15":0.00546,_:"0","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.00546,"13.1":0.08196,"14.1":0.16938,"15.1":0.00546,"15.2-15.3":0.03278,"15.4":0.03278,"15.5":0.10382,"15.6":0.22402,"16.0":0.01093,"16.1":0.07103,"16.2":0.1366,"16.3":0.30598,"16.4":0.10928,"16.5":0.21856,"16.6":1.75941,"17.0":0.05464,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01487,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05575,"10.0-10.2":0,"10.3":0.10406,"11.0-11.2":0.01115,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.498,"13.0-13.1":0.05946,"13.2":0,"13.3":0.01115,"13.4-13.7":0.04088,"14.0-14.4":0.13379,"14.5-14.8":0.39022,"15.0-15.1":0.14122,"15.2-15.3":0.36049,"15.4":0.24528,"15.5":0.2044,"15.6-15.7":2.87277,"16.0":1.0666,"16.1":2.04401,"16.2":0.84362,"16.3":2.57546,"16.4":0.56489,"16.5":1.19296,"16.6":21.59966,"17.0":1.38621,"17.1":0},P:{"4":0.05099,"20":0.06119,"21":0.0204,"22":2.529,"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.0102,"14.0":0,"15.0":0,"16.0":0.0102,"17.0":0.0102,"18.0":0.0102,"19.0":0.05099},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.2832},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00907},N:{"10":0,"11":0},L:{"0":29.59783},R:{_:"0"},M:{"0":0.08165},Q:{"13.1":0.00454},O:{"0":0.01814},H:{"0":0.06442}};
      +module.exports={C:{"52":0.01063,"78":0.00532,"96":0.00532,"99":0.00532,"107":0.00532,"108":0.00532,"111":0.32959,"113":0.00532,"115":0.0319,"117":0.05848,"118":1.02599,"119":0.22327,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 100 101 102 103 104 105 106 109 110 112 114 116 120 121 122 3.5 3.6"},D:{"42":0.00532,"49":0.00532,"65":0.02658,"86":0.01063,"87":0.01595,"91":0.01063,"93":0.00532,"96":0.00532,"98":0.00532,"103":0.19669,"106":1.27584,"107":0.01595,"108":1.81276,"109":3.91789,"110":0.1329,"111":0.53692,"112":1.43,"113":0.50502,"114":0.07974,"115":0.05848,"116":1.64796,"117":14.66684,"118":10.80211,"119":0.01595,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 88 89 90 92 94 95 97 99 100 101 102 104 105 120 121 122"},F:{"95":0.00532,"102":1.28116,"103":0.03721,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"108":0.00532,"109":0.02126,"114":0.00532,"115":0.11164,"116":0.101,"117":3.26402,"118":3.31187,"119":0.00532,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113"},E:{"13":0.02126,"14":0.10632,"15":0.00532,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.00532,"13.1":0.08506,"14.1":0.38275,"15.1":0.01063,"15.2-15.3":0.03721,"15.4":0.04253,"15.5":0.04253,"15.6":0.30833,"16.0":0.04784,"16.1":0.12758,"16.2":0.20201,"16.3":0.12227,"16.4":0.07974,"16.5":0.41465,"16.6":2.20614,"17.0":0.43591,"17.1":0.03721},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00201,"5.0-5.1":0.00201,"6.0-6.1":0.00604,"7.0-7.1":0.01409,"8.1-8.4":0.00201,"9.0-9.2":0.01409,"9.3":0.04831,"10.0-10.2":0.00201,"10.3":0.07045,"11.0-11.2":0.06441,"11.3-11.4":0.02214,"12.0-12.1":0.01811,"12.2-12.5":0.32002,"13.0-13.1":0.01006,"13.2":0.05434,"13.3":0.02013,"13.4-13.7":0.06441,"14.0-14.4":0.17712,"14.5-14.8":0.28581,"15.0-15.1":0.11271,"15.2-15.3":0.12881,"15.4":0.1429,"15.5":0.20328,"15.6-15.7":1.40689,"16.0":0.51928,"16.1":0.99428,"16.2":0.48506,"16.3":0.89968,"16.4":0.19322,"16.5":0.51525,"16.6-16.7":9.65097,"17.0":3.43772,"17.1":0.20731,"17.2":0.00604},P:{"4":0.10437,"20":0.02087,"21":0.01044,"22":2.84931,"23":0.3653,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0","14.0":0.05219,"18.0":0.02087,"19.0":0.05219},I:{"0":0.00466,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{"8":0.01063,"11":0.56881,_:"6 7 9 10 5.5"},K:{"0":0.09836,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.1452},Q:{"13.1":0.00468},O:{"0":0.03747},H:{"0":0},L:{"0":23.30216}};
      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 d1e8a12c0a4ff1..b0e90eafd47cf2 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0.03722,"3":0.05849,"4":0.02659,"5":0.03722,"6":0.02127,"7":0.01063,"8":0.00532,"9":0,"10":0.0319,"11":0.02127,"12":0.01063,"13":0.01595,"14":0.01063,"15":0.01595,"16":0.01063,"17":0.02127,"18":0.00532,"19":0.00532,"20":0.01595,"21":0.01595,"22":0.00532,"23":0.0319,"24":0.02127,"25":0.01063,"26":0.02127,"27":0.01063,"28":0.02127,"29":0.0319,"30":0.02127,"31":0.0319,"32":0.01063,"33":0.02127,"34":0.02127,"35":0.0319,"36":0.01063,"37":0.03722,"38":0.05317,"39":0.05849,"40":0.10634,"41":0.04785,"42":0.01063,"43":0.00532,"44":0.00532,"45":0,"46":0.00532,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00532,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02659,"79":0,"80":0,"81":0.00532,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00532,"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.00532,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.01595,"114":0,"115":0.02659,"116":0.09571,"117":0.86135,"118":0.06912,"119":0,"120":0,"3.5":0.0319,"3.6":0.12229},D:{"4":0.01595,"5":0,"6":0.01063,"7":0.01063,"8":0.01063,"9":0.00532,"10":0.01063,"11":0.02659,"12":0.02127,"13":0.01063,"14":0.00532,"15":0.00532,"16":0.00532,"17":0.01595,"18":0.02127,"19":0.01063,"20":0.01595,"21":0.07444,"22":0.01595,"23":0.01063,"24":0.01595,"25":0.00532,"26":0.01063,"27":0.01063,"28":0.0319,"29":0.01595,"30":0.02127,"31":0.03722,"32":0.01063,"33":0.04254,"34":0.02659,"35":0.02127,"36":0.0319,"37":0.04254,"38":0.05849,"39":0.07976,"40":0.04785,"41":0.14356,"42":0.10634,"43":0.17546,"44":0.34029,"45":0.20205,"46":0.1861,"47":0.14888,"48":0,"49":0,"50":0,"51":0.20205,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.05317,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0.00532,"84":0,"85":0,"86":0,"87":0.00532,"88":0.01063,"89":0,"90":0,"91":0.00532,"92":0.01063,"93":0,"94":0,"95":0.00532,"96":0.01063,"97":0,"98":0.00532,"99":0.00532,"100":0.00532,"101":0,"102":0,"103":0.04785,"104":0,"105":0,"106":0.01595,"107":0.01063,"108":0,"109":0.48385,"110":0.00532,"111":0.00532,"112":0.00532,"113":0.02127,"114":0.1861,"115":0.20736,"116":6.27406,"117":2.49367,"118":0.00532,"119":0.00532,"120":0},F:{"9":0,"11":0.02127,"12":0.01595,"15":0.00532,"16":0,"17":0,"18":0.00532,"19":0,"20":0.00532,"21":0,"22":0,"23":0,"24":0.01063,"25":0.01063,"26":0.00532,"27":0.02127,"28":0.01595,"29":0.01595,"30":0.05317,"31":0.07976,"32":0.05317,"33":0.01063,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00532,"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.00532,"96":0,"97":0,"98":0.00532,"99":0,"100":0.04785,"101":0.19673,"102":0.09571,"9.5-9.6":0.00532,"10.0-10.1":0.01063,"10.5":0,"10.6":0.00532,"11.1":0.00532,"11.5":0.01063,"11.6":0.00532,"12.1":0.0638},B:{"12":0.11166,"13":0.01595,"14":0.12229,"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.00532,"93":0.01063,"94":0,"95":0,"96":0,"97":0,"98":0.00532,"99":0,"100":0.00532,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00532,"107":0.01595,"108":0.00532,"109":0.01063,"110":0,"111":0.00532,"112":0,"113":0,"114":0.04785,"115":0.04785,"116":1.2814,"117":0.98896},E:{"4":0.02659,"5":0.02127,"6":0,"7":0.02127,"8":0.07444,"9":0.47321,"10":0,"11":0,"12":0,"13":0.01063,"14":0.04785,"15":0.00532,_:"0","3.1":0,"3.2":0,"5.1":0.0319,"6.1":0.00532,"7.1":0.0319,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.04785,"14.1":0.04254,"15.1":0,"15.2-15.3":0.01063,"15.4":0.01595,"15.5":0.09039,"15.6":0.1861,"16.0":0.00532,"16.1":0.04785,"16.2":0.05317,"16.3":0.12761,"16.4":0.01595,"16.5":0.60082,"16.6":1.5632,"17.0":0.02659,"17.1":0},G:{"8":0.06293,"3.2":0.03389,"4.0-4.1":0,"4.2-4.3":0.06293,"5.0-5.1":0.12345,"6.0-6.1":0.14039,"7.0-7.1":0.44054,"8.1-8.4":0.79152,"9.0-9.2":0.08472,"9.3":0.21301,"10.0-10.2":0,"10.3":0.22995,"11.0-11.2":2.10589,"11.3-11.4":0,"12.0-12.1":0.53494,"12.2-12.5":0.07504,"13.0-13.1":0,"13.2":0.0121,"13.3":0.00726,"13.4-13.7":0,"14.0-14.4":0.01936,"14.5-14.8":0.09682,"15.0-15.1":0.03873,"15.2-15.3":0.04599,"15.4":0.01936,"15.5":0.02663,"15.6-15.7":0.42844,"16.0":1.46686,"16.1":0.57125,"16.2":0.28321,"16.3":0.59062,"16.4":0.04115,"16.5":1.19092,"16.6":12.07133,"17.0":1.87109,"17.1":0},P:{"4":0.39682,"20":0.02145,"21":0.03217,"22":3.26034,"5.0-5.4":0,"6.2-6.4":0.24667,"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.02145,"17.0":0.01072,"18.0":0.15015,"19.0":0},I:{"0":0,"3":0.0962,"4":0.92268,"2.1":0.11151,"2.2":0.36951,"2.3":0.52475,"4.1":0.60346,"4.2-4.3":1.10415,"4.4":0,"4.4.3-4.4.4":2.58656},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.11831,"7":0.1667,"8":1.50571,"9":0.29039,"10":0.26888,"11":0.84965,"5.5":0.01076},S:{"2.5":0.192,_:"3.0-3.1"},J:{"7":0,"10":0.22478},N:{"10":0.49701,"11":0.28037},L:{"0":32.73076},R:{_:"0"},M:{"0":0.38869},Q:{"13.1":0.00937},O:{"0":0.57601},H:{"0":0.30148}};
      +module.exports={C:{"2":0.01432,"3":0.07158,"4":0.02863,"5":0.01909,"6":0.00954,"7":0.01909,"8":0.00477,"9":0.01909,"10":0.00477,"12":0.00477,"13":0.01432,"14":0.00954,"15":0.01909,"16":0.00954,"17":0.00954,"18":0.00477,"19":0.00954,"20":0.01432,"21":0.00954,"22":0.00477,"23":0.00477,"24":0.01432,"25":0.01909,"26":0.00477,"28":0.01432,"29":0.00954,"30":0.00477,"31":0.00954,"32":0.01432,"33":0.01909,"34":0.02386,"35":0.0334,"36":0.0334,"37":0.0334,"38":0.05249,"39":0.06204,"40":0.09544,"41":0.02386,"42":0.01909,"43":0.01909,"46":0.00477,"48":0.01432,"52":0.08112,"78":0.06204,"98":0.00477,"102":0.00477,"108":0.07158,"110":0.00477,"113":0.00954,"115":0.02863,"116":0.15748,"117":0.05249,"118":1.61771,"119":0.22428,_:"11 27 44 45 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 91 92 93 94 95 96 97 99 100 101 103 104 105 106 107 109 111 112 114 120 121 122","3.5":0.0334,"3.6":0.05249},D:{"4":0.00954,"6":0.01432,"7":0.00477,"8":0.00954,"9":0.00477,"10":0.00954,"11":0.00954,"12":0.00477,"13":0.00477,"14":0.01432,"15":0.00477,"16":0.01432,"17":0.00477,"18":0.00477,"19":0.00954,"20":0.00477,"21":0.04295,"22":0.00954,"23":0.00477,"24":0.00954,"25":0.00954,"27":0.01432,"28":0.00954,"29":0.00954,"30":0.00477,"31":0.02863,"32":0.01432,"33":0.01432,"34":0.01432,"35":0.02386,"36":0.02386,"37":0.05249,"38":0.06204,"39":0.07635,"40":0.08112,"41":0.06204,"42":0.07635,"43":0.12407,"44":0.25292,"45":0.14316,"46":0.12884,"47":0.10498,"51":0.25292,"70":0.08112,"73":0.00477,"78":0.00477,"79":0.00954,"80":0.01432,"81":0.00954,"83":0.01432,"87":0.00477,"89":0.00954,"90":0.00954,"94":0.0334,"95":0.00954,"99":0.01432,"102":0.00477,"103":0.02386,"107":0.42471,"109":0.88759,"110":0.00477,"111":0.01432,"112":0.31495,"113":0.02386,"114":0.10021,"115":0.09067,"116":6.77147,"117":7.27253,"118":8.8282,"119":0.00477,_:"5 26 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 74 75 76 77 84 85 86 88 91 92 93 96 97 98 100 101 104 105 106 108 120 121 122"},F:{"11":0.00477,"12":0.00477,"19":0.00477,"20":0.00954,"23":0.00477,"24":0.00477,"26":0.01432,"28":0.00477,"29":0.00954,"30":0.01432,"31":0.05726,"32":0.01432,"33":0.00477,"36":0.01909,"91":0.00477,"95":0.00954,"101":0.02386,"102":0.52492,"103":0.0334,_:"9 15 16 17 18 21 22 25 27 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 10.0-10.1 10.5 10.6 11.6","9.5-9.6":0.00954,"11.1":0.00954,"11.5":0.00954,"12.1":0.04295},B:{"12":0.03818,"15":0.00477,"17":0.00477,"18":0.00477,"97":0.00477,"100":0.00477,"105":0.00477,"107":0.00477,"108":0.00477,"109":0.03818,"110":0.00954,"111":0.01909,"113":0.00954,"114":0.01909,"115":0.01432,"116":0.05249,"117":2.67709,"118":2.16649,"119":0.00954,_:"13 14 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 99 101 102 103 104 106 112"},E:{"4":0.01432,"5":0.00954,"6":0.00477,"7":0.01909,"8":0.03818,"9":0.46766,"13":0.24337,"14":0.11453,"15":0.00477,_:"0 10 11 12 9.1 10.1 11.1 17.2","3.1":0.00477,"3.2":0.00477,"5.1":0.02386,"6.1":0.00954,"7.1":0.00477,"12.1":0.01432,"13.1":0.04772,"14.1":0.14793,"15.1":0.07158,"15.2-15.3":0.09544,"15.4":0.01432,"15.5":0.01909,"15.6":0.31495,"16.0":0.00954,"16.1":0.07635,"16.2":0.07158,"16.3":0.19565,"16.4":0.06681,"16.5":0.25292,"16.6":2.87274,"17.0":0.73489,"17.1":0.05249},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00186,"5.0-5.1":0.00186,"6.0-6.1":0.00558,"7.0-7.1":0.01301,"8.1-8.4":0.00186,"9.0-9.2":0.01301,"9.3":0.04462,"10.0-10.2":0.00186,"10.3":0.06507,"11.0-11.2":0.05949,"11.3-11.4":0.02045,"12.0-12.1":0.01673,"12.2-12.5":0.29559,"13.0-13.1":0.0093,"13.2":0.0502,"13.3":0.01859,"13.4-13.7":0.05949,"14.0-14.4":0.1636,"14.5-14.8":0.26399,"15.0-15.1":0.10411,"15.2-15.3":0.11898,"15.4":0.13199,"15.5":0.18777,"15.6-15.7":1.29949,"16.0":0.47964,"16.1":0.91838,"16.2":0.44804,"16.3":0.83101,"16.4":0.17847,"16.5":0.47592,"16.6-16.7":8.91427,"17.0":3.1753,"17.1":0.19148,"17.2":0.00558},P:{"4":0.2502,"20":0.01088,"21":0.04351,"22":2.83921,"23":0.88114,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0","6.2-6.4":0.18493,"17.0":0.01088,"18.0":0.3481,"19.0":0.01088},I:{"0":2.325,"3":0,"4":0.00047,"2.1":0,"2.2":0.0007,"2.3":0,"4.1":0.00047,"4.2-4.3":0.00164,"4.4":0,"4.4.3-4.4.4":0.00701},A:{"6":0.08145,"7":0.11978,"8":1.08279,"9":0.23955,"10":0.20123,"11":0.59889,"5.5":0.00479},K:{"0":0.32028,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.18821,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.61168},Q:{"13.1":0.00523},O:{"0":0.39733},H:{"0":0.03},L:{"0":24.8498}};
      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 02b49802355d61..ddca672d9a446f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00164,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00164,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00164,"115":0.04765,"116":0.00657,"117":0.09365,"118":0.01479,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0.00164,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00164,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00164,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00329,"41":0.00164,"42":0,"43":0,"44":0,"45":0.00329,"46":0.00164,"47":0.00164,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00164,"57":0.00164,"58":0,"59":0.00164,"60":0.00164,"61":0,"62":0.00164,"63":0.00164,"64":0.00329,"65":0.00657,"66":0.00164,"67":0.00164,"68":0.0115,"69":0.00329,"70":0.01314,"71":0,"72":0,"73":0,"74":0.00164,"75":0.00164,"76":0.00164,"77":0,"78":0.00164,"79":0.00493,"80":0.00493,"81":0.0115,"83":0.00164,"84":0.00164,"85":0.00493,"86":0,"87":0.00164,"88":0,"89":0.00329,"90":0,"91":0,"92":0,"93":0.01479,"94":0,"95":0.00329,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00986,"104":0,"105":0,"106":0.01314,"107":0.00164,"108":0.00164,"109":0.1643,"110":0.00164,"111":0.00164,"112":0,"113":0.0115,"114":0.01479,"115":0.01643,"116":0.59477,"117":0.14787,"118":0.00164,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00164,"60":0.00164,"62":0,"63":0.00164,"64":0.00164,"65":0,"66":0,"67":0.00329,"68":0,"69":0.00986,"70":0.00822,"71":0.01479,"72":0.046,"73":0.01643,"74":0,"75":0,"76":0,"77":0.00164,"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.00164,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01479,"102":0.0115,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00822,"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.00329,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00164,"110":0,"111":0,"112":0,"113":0,"114":0.00329,"115":0.00986,"116":0.1298,"117":0.09694},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00164,"15":0.00164,_:"0","3.1":0,"3.2":0,"5.1":0.00164,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00164,"14.1":0.02136,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.02136,"16.0":0.00164,"16.1":0.0115,"16.2":0,"16.3":0.00822,"16.4":0.00164,"16.5":0.00164,"16.6":0.01807,"17.0":0.00822,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02456,"6.0-6.1":0.11833,"7.0-7.1":0.11833,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10493,"10.0-10.2":0,"10.3":0.36391,"11.0-11.2":0.02233,"11.3-11.4":0.0134,"12.0-12.1":0.84392,"12.2-12.5":3.19484,"13.0-13.1":0.21656,"13.2":0.01116,"13.3":0.10493,"13.4-13.7":0.27907,"14.0-14.4":0.99574,"14.5-14.8":1.13862,"15.0-15.1":0.25675,"15.2-15.3":0.17414,"15.4":0.43312,"15.5":1.04485,"15.6-15.7":5.42073,"16.0":0.23665,"16.1":0.48894,"16.2":0.58047,"16.3":0.71443,"16.4":0.35945,"16.5":0.86401,"16.6":3.56991,"17.0":0.45545,"17.1":0},P:{"4":0.37772,"20":0.06125,"21":0.15313,"22":0.56147,"5.0-5.4":0.02042,"6.2-6.4":0,"7.2-7.4":0.19396,"8.2":0,"9.2":0.02042,"10.1":0,"11.1-11.2":0.02042,"12.0":0,"13.0":0.02042,"14.0":0.04083,"15.0":0,"16.0":0.03063,"17.0":0.04083,"18.0":0.01021,"19.0":0.15313},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00119,"4.2-4.3":0.01228,"4.4":0,"4.4.3-4.4.4":0.1624},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},S:{"2.5":0.00836,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":72.5624},R:{_:"0"},M:{"0":0.04179},Q:{"13.1":0},O:{"0":0.33428},H:{"0":0.76745}};
      +module.exports={C:{"34":0.00123,"40":0.00369,"41":0.00123,"43":0.00246,"45":0.00123,"47":0.00985,"49":0.00123,"50":0.00123,"62":0.00123,"72":0.00246,"75":0.00123,"77":0.00123,"94":0.00123,"102":0.00246,"110":0.00123,"114":0.00123,"115":0.29298,"116":0.00492,"117":0.00739,"118":0.43824,"119":0.09356,_:"2 3 4 5 6 7 8 9 10 11 12 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 42 44 46 48 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 73 74 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 103 104 105 106 107 108 109 111 112 113 120 121 122 3.5 3.6"},D:{"11":0.00739,"31":0.00369,"32":0.00123,"34":0.00246,"36":0.04185,"38":0.00123,"39":0.00123,"40":0.00246,"41":0.00246,"43":0.00123,"45":0.00123,"46":0.00246,"47":0.00369,"48":0.00246,"49":0.00739,"50":0.00123,"51":0.00369,"52":0.00123,"53":0.00246,"54":0.00985,"55":0.00246,"56":0.00492,"57":0.00492,"58":0.00492,"59":0.016,"60":0.00369,"61":0.00246,"62":0.00246,"63":0.00246,"64":0.00739,"65":0.05663,"66":0.00246,"67":0.00246,"68":0.00123,"69":0.04924,"70":0.00616,"71":0.00246,"72":0.00369,"73":0.00123,"74":0.00492,"75":0.00369,"76":0.02708,"77":0.00616,"78":0.00616,"79":0.02831,"80":0.01354,"81":0.00492,"83":0.00739,"84":0.00985,"85":0.04924,"86":0.00492,"87":0.00492,"88":0.00246,"89":0.01108,"90":0.00616,"92":0.00246,"93":0.06401,"95":0.00492,"99":0.00246,"103":0.04432,"104":0.00123,"105":0.02093,"106":0.03693,"107":0.01354,"108":0.00246,"109":1.09928,"110":0.00985,"111":0.00369,"112":0.00123,"113":0.01108,"114":0.01723,"115":0.05663,"116":0.1428,"117":1.54737,"118":1.64339,"119":0.02954,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 35 37 42 44 91 94 96 97 98 100 101 102 120 121 122"},F:{"54":0.00123,"77":0.00123,"79":0.00123,"81":0.00123,"93":0.016,"95":0.01477,"100":0.00369,"102":0.11202,"103":0.04062,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 78 80 82 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00123,"13":0.00123,"15":0.00369,"16":0.00123,"17":0.00739,"18":0.07263,"84":0.00123,"85":0.00123,"88":0.00123,"90":0.00123,"92":0.00616,"104":0.00123,"109":0.00492,"110":0.00369,"111":0.00246,"112":0.00862,"113":0.00246,"114":0.00985,"115":0.016,"116":0.03816,"117":0.38407,"118":0.48378,"119":0.00246,_:"14 79 80 81 83 86 87 89 91 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108"},E:{"14":0.00123,"15":0.00492,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.4 15.5 16.0 17.2","5.1":0.00369,"12.1":0.00123,"13.1":0.00616,"14.1":0.00369,"15.1":0.00123,"15.6":0.04801,"16.1":0.14526,"16.2":0.00123,"16.3":0.03939,"16.4":0.00862,"16.5":0.00862,"16.6":0.13787,"17.0":0.06524,"17.1":0.00246},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0022,"5.0-5.1":0.0022,"6.0-6.1":0.00661,"7.0-7.1":0.01542,"8.1-8.4":0.0022,"9.0-9.2":0.01542,"9.3":0.05287,"10.0-10.2":0.0022,"10.3":0.0771,"11.0-11.2":0.07049,"11.3-11.4":0.02423,"12.0-12.1":0.01982,"12.2-12.5":0.35024,"13.0-13.1":0.01101,"13.2":0.05947,"13.3":0.02203,"13.4-13.7":0.07049,"14.0-14.4":0.19384,"14.5-14.8":0.31279,"15.0-15.1":0.12336,"15.2-15.3":0.14098,"15.4":0.1564,"15.5":0.22248,"15.6-15.7":1.53974,"16.0":0.56832,"16.1":1.08817,"16.2":0.53087,"16.3":0.98464,"16.4":0.21147,"16.5":0.56391,"16.6-16.7":10.5623,"17.0":3.76234,"17.1":0.22689,"17.2":0.00661},P:{"4":0.38508,"20":0.12489,"21":0.14571,"22":0.88465,"23":0.06245,"5.0-5.4":0.05204,"6.2-6.4":0.01041,"7.2-7.4":0.11448,_:"8.2 10.1 13.0 15.0 18.0","9.2":0.01041,"11.1-11.2":0.02082,"12.0":0.01041,"14.0":0.03122,"16.0":0.07285,"17.0":0.01041,"19.0":0.12489},I:{"0":0.0349,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"11":0.00739,_:"6 7 8 9 10 5.5"},K:{"0":0.64398,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00877,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.07015},Q:{_:"13.1"},O:{"0":0.15784},H:{"0":0.04},L:{"0":66.98487}};
      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 7ddd27d69fad29..445a05f1db0ba5 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00119,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.00119,"116":0.00357,"117":0.02616,"118":0.00238,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00119,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00119,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00119,"51":0,"52":0,"53":0,"54":0,"55":0.00119,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00119,"65":0,"66":0,"67":0,"68":0.00119,"69":0,"70":0,"71":0,"72":0.00119,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00832,"83":0,"84":0,"85":0,"86":0,"87":0.00357,"88":0,"89":0,"90":0.00119,"91":0,"92":0,"93":0.00238,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00119,"100":0,"101":0,"102":0,"103":0.00713,"104":0,"105":0.00238,"106":0,"107":0,"108":0,"109":0.03091,"110":0.00119,"111":0.00119,"112":0,"113":0,"114":0.00238,"115":0.00951,"116":0.14149,"117":0.05113,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00119,"60":0.00238,"62":0,"63":0.00476,"64":0,"65":0.00119,"66":0.00119,"67":0.00595,"68":0,"69":0.0107,"70":0.00238,"71":0.02021,"72":0.01784,"73":0.00238,"74":0,"75":0,"76":0,"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.00595,"102":0.00713,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00119,"13":0,"14":0.00238,"15":0.00119,"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,"92":0.00119,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00238,"111":0,"112":0,"113":0.00119,"114":0,"115":0.00476,"116":0.04518,"117":0.02259},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.00119,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0.00238,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00164,"7.0-7.1":0.01641,"8.1-8.4":0,"9.0-9.2":0.02461,"9.3":0.03937,"10.0-10.2":0.01148,"10.3":0.09351,"11.0-11.2":0.03937,"11.3-11.4":0.01477,"12.0-12.1":0.27561,"12.2-12.5":1.44041,"13.0-13.1":0.13945,"13.2":0.01312,"13.3":0.04265,"13.4-13.7":0.47248,"14.0-14.4":1.54377,"14.5-14.8":0.63162,"15.0-15.1":0.57912,"15.2-15.3":0.5742,"15.4":0.17718,"15.5":0.79239,"15.6-15.7":3.17776,"16.0":0.54631,"16.1":0.6513,"16.2":0.39537,"16.3":0.77598,"16.4":0.64474,"16.5":1.18777,"16.6":1.85383,"17.0":0.1739,"17.1":0.00328},P:{"4":0.20435,"20":0.1737,"21":0.19413,"22":0.90936,"5.0-5.4":0.03065,"6.2-6.4":0.05109,"7.2-7.4":0.27587,"8.2":0.01022,"9.2":0.10218,"10.1":0.01022,"11.1-11.2":0.06131,"12.0":0,"13.0":0.03065,"14.0":0.11239,"15.0":0.04087,"16.0":0.57218,"17.0":0.03065,"18.0":0.10218,"19.0":0.48023},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00245,"4.4":0,"4.4.3-4.4.4":0.02419},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00238,"5.5":0},S:{"2.5":0.16741,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.65604},R:{_:"0"},M:{"0":0.03524},Q:{"13.1":0.01762},O:{"0":0.07049},H:{"0":1.96864}};
      +module.exports={C:{"35":0.00098,"37":0.00098,"43":0.00098,"45":0.00098,"66":0.00098,"70":0.00098,"83":0.00098,"107":0.00489,"114":0.00196,"115":0.01174,"117":0.00489,"118":0.17897,"119":0.0313,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 38 39 40 41 42 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 112 113 116 120 121 122 3.5 3.6"},D:{"11":0.00098,"19":0.00098,"33":0.00196,"37":0.00098,"41":0.00098,"43":0.00293,"54":0.00098,"56":0.00489,"59":0.00098,"62":0.00098,"64":0.00196,"69":0.00098,"70":0.00098,"71":0.00098,"72":0.00587,"73":0.00098,"74":0.00098,"78":0.00196,"79":0.00391,"81":0.00489,"83":0.00098,"86":0.00098,"87":0.0176,"88":0.00196,"90":0.00098,"91":0.00489,"92":0.00098,"93":0.01174,"94":0.00391,"99":0.00978,"100":0.00196,"102":0.00196,"103":0.0577,"105":0.11051,"106":0.01369,"107":0.00098,"108":0.00098,"109":0.09584,"110":0.00587,"111":0.00196,"112":0.00489,"113":0.00196,"114":0.00587,"115":0.01565,"116":0.05183,"117":0.52225,"118":0.6846,_:"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 34 35 36 38 39 40 42 44 45 46 47 48 49 50 51 52 53 55 57 58 60 61 63 65 66 67 68 75 76 77 80 84 85 89 95 96 97 98 101 104 119 120 121 122"},F:{"37":0.00098,"40":0.00098,"45":0.00098,"58":0.00098,"64":0.00098,"79":0.00391,"95":0.00391,"99":0.00098,"100":0.00098,"101":0.00196,"102":0.0401,"103":0.03423,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01076,"13":0.00098,"14":0.00098,"15":0.00489,"17":0.00293,"18":0.0088,"84":0.00196,"89":0.00196,"90":0.00196,"92":0.0088,"95":0.00098,"104":0.00196,"107":0.00098,"109":0.00098,"112":0.00685,"113":0.00098,"114":0.00293,"115":0.0176,"116":0.01565,"117":0.20342,"118":0.28069,"119":0.00098,_:"16 79 80 81 83 85 86 87 88 91 93 94 96 97 98 99 100 101 102 103 105 106 108 110 111"},E:{"12":0.00098,_:"0 4 5 6 7 8 9 10 11 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.5 16.0 16.1 16.2 17.2","11.1":0.00098,"13.1":0.00098,"14.1":0.00489,"15.4":0.00098,"15.6":0.00293,"16.3":0.00293,"16.4":0.00293,"16.5":0.00196,"16.6":0.01369,"17.0":0.00782,"17.1":0.00098},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00142,"5.0-5.1":0.00142,"6.0-6.1":0.00427,"7.0-7.1":0.00996,"8.1-8.4":0.00142,"9.0-9.2":0.00996,"9.3":0.03416,"10.0-10.2":0.00142,"10.3":0.04982,"11.0-11.2":0.04555,"11.3-11.4":0.01566,"12.0-12.1":0.01281,"12.2-12.5":0.22634,"13.0-13.1":0.00712,"13.2":0.03843,"13.3":0.01424,"13.4-13.7":0.04555,"14.0-14.4":0.12527,"14.5-14.8":0.20214,"15.0-15.1":0.07972,"15.2-15.3":0.0911,"15.4":0.10107,"15.5":0.14377,"15.6-15.7":0.99504,"16.0":0.36727,"16.1":0.70322,"16.2":0.34307,"16.3":0.63631,"16.4":0.13666,"16.5":0.36442,"16.6-16.7":6.82575,"17.0":2.43136,"17.1":0.14662,"17.2":0.00427},P:{"4":0.19512,"20":0.1027,"21":0.16431,"22":0.82157,"23":0.04108,"5.0-5.4":0.02054,"6.2-6.4":0.04108,"7.2-7.4":0.37997,_:"8.2 12.0","9.2":0.07189,"10.1":0.01027,"11.1-11.2":0.04108,"13.0":0.05135,"14.0":0.03081,"15.0":0.06162,"16.0":0.32863,"17.0":0.01027,"18.0":0.09243,"19.0":0.50321},I:{"0":0.0359,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"11":0.02152,_:"6 7 8 9 10 5.5"},K:{"0":0.77644,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.25259,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.02706},Q:{"13.1":0.02706},O:{"0":0.04511},H:{"0":1.56},L:{"0":77.2053}};
      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 6f8344269eab37..9eb0c4d5e6d7d4 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GP.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GP.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00442,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.05746,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01326,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00442,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0884,"103":0.00442,"104":0,"105":0,"106":0,"107":0,"108":0.00442,"109":0.00442,"110":0.00884,"111":0.00442,"112":0.00884,"113":0.00442,"114":0.02652,"115":0.27846,"116":0.13702,"117":1.26854,"118":0.07956,"119":0,"120":0.00442,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00442,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.03536,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00884,"80":0.07956,"81":0.00442,"83":0.00442,"84":0.00442,"85":0,"86":0,"87":0.01768,"88":0.00442,"89":0,"90":0,"91":0.00442,"92":0,"93":0,"94":0,"95":0,"96":0.00442,"97":0.00442,"98":0.00442,"99":0.00442,"100":0,"101":0,"102":0.01768,"103":0.07072,"104":0,"105":0.00884,"106":0.00884,"107":0.11934,"108":0.00442,"109":0.56134,"110":0.00442,"111":0.00884,"112":0.03536,"113":0.00884,"114":0.08398,"115":0.21658,"116":6.62558,"117":2.01552,"118":0.00442,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00884,"47":0,"48":0,"49":0,"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.00442,"73":0,"74":0,"75":0,"76":0.01768,"77":0.00884,"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.03094,"96":0,"97":0,"98":0,"99":0,"100":0.06188,"101":0.31824,"102":0.49062,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00442,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.04862,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00442,"105":0,"106":0,"107":0,"108":0.00442,"109":0.06188,"110":0.00442,"111":0.03536,"112":0.00442,"113":0.00884,"114":0.03536,"115":0.12818,"116":1.6575,"117":1.2376},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00442,"14":0.08398,"15":0.00442,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01326,"13.1":0.14144,"14.1":0.15912,"15.1":0.00442,"15.2-15.3":0.00884,"15.4":0.04862,"15.5":0.01326,"15.6":0.1989,"16.0":0.01768,"16.1":0.0442,"16.2":0.05746,"16.3":0.05304,"16.4":0.07956,"16.5":0.1989,"16.6":0.91052,"17.0":0.06188,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06554,"10.0-10.2":0,"10.3":0.02269,"11.0-11.2":0,"11.3-11.4":0.02521,"12.0-12.1":0.00504,"12.2-12.5":0.11848,"13.0-13.1":0,"13.2":0,"13.3":0.7411,"13.4-13.7":0.02521,"14.0-14.4":0.21679,"14.5-14.8":0.18654,"15.0-15.1":0.07058,"15.2-15.3":0.05294,"15.4":0.11091,"15.5":0.45374,"15.6-15.7":1.3234,"16.0":0.79908,"16.1":1.24021,"16.2":0.5218,"16.3":1.36373,"16.4":0.39576,"16.5":1.30323,"16.6":13.52134,"17.0":2.06702,"17.1":0},P:{"4":0.06229,"20":0.26994,"21":0.24918,"22":5.29505,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06229,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01038,"12.0":0,"13.0":0,"14.0":0.06229,"15.0":0.05191,"16.0":0.08306,"17.0":0.01038,"18.0":0.02076,"19.0":0.15574},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.1742},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0442,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":46.47966},R:{_:"0"},M:{"0":0.2511},Q:{"13.1":0},O:{"0":0.00558},H:{"0":0.12679}};
      +module.exports={C:{"52":0.00433,"78":0.06926,"91":0.01732,"94":0.01299,"96":0.00433,"98":0.00433,"100":0.00433,"101":0.00433,"102":0.00866,"103":0.01299,"105":0.39394,"106":0.00866,"109":0.00866,"110":0.00433,"111":0.00433,"114":0.03896,"115":0.78788,"116":0.03896,"117":0.12121,"118":2.17316,"119":0.45455,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 97 99 104 107 108 112 113 120 121 122 3.5 3.6"},D:{"38":0.01732,"49":0.01299,"56":0.00433,"61":0.00433,"63":0.00433,"72":0.00433,"75":0.00866,"79":0.01732,"80":0.00433,"83":0.00866,"84":0.00866,"85":0.01299,"86":0.00866,"87":0.03463,"88":0.00433,"90":0.00433,"91":0.02165,"92":0.00433,"94":0.00433,"95":0.00433,"96":0.00866,"97":0.03896,"98":0.00433,"99":0.00866,"100":0.00866,"101":0.00433,"102":0.0303,"103":0.04329,"104":0.00433,"105":0.04762,"106":0.33766,"107":0.2684,"108":0.00866,"109":1.30303,"110":0.34199,"111":0.02165,"112":0.19913,"113":0.04329,"114":0.1342,"115":0.05195,"116":0.95671,"117":9.42423,"118":10.01731,"119":0.02597,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 62 64 65 66 67 68 69 70 71 73 74 76 77 78 81 89 93 120 121 122"},F:{"36":0.00433,"46":0.04762,"77":0.00433,"78":0.00433,"95":0.00866,"101":0.00433,"102":1.50649,"103":0.38095,_:"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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00433,"18":0.00433,"90":0.00433,"92":0.00433,"96":0.00433,"97":0.14719,"98":0.00433,"100":0.00433,"105":0.00433,"107":0.01299,"108":0.00433,"109":0.07792,"110":0.00433,"111":0.01732,"112":0.00433,"113":0.00866,"114":0.05195,"115":0.18615,"116":0.16017,"117":3.20779,"118":3.32034,"119":0.00433,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 99 101 102 103 104 106"},E:{"13":0.01732,"14":0.09957,"15":0.03463,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.01732,"13.1":0.38095,"14.1":0.329,"15.1":0.01299,"15.2-15.3":0.02597,"15.4":0.17749,"15.5":0.06061,"15.6":0.5974,"16.0":0.05195,"16.1":0.15584,"16.2":0.07359,"16.3":0.1342,"16.4":0.11688,"16.5":0.329,"16.6":0.8658,"17.0":1.55844,"17.1":0.04329},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00171,"5.0-5.1":0.00171,"6.0-6.1":0.00512,"7.0-7.1":0.01195,"8.1-8.4":0.00171,"9.0-9.2":0.01195,"9.3":0.04098,"10.0-10.2":0.00171,"10.3":0.05976,"11.0-11.2":0.05464,"11.3-11.4":0.01878,"12.0-12.1":0.01537,"12.2-12.5":0.2715,"13.0-13.1":0.00854,"13.2":0.0461,"13.3":0.01708,"13.4-13.7":0.05464,"14.0-14.4":0.15026,"14.5-14.8":0.24247,"15.0-15.1":0.09562,"15.2-15.3":0.10928,"15.4":0.12124,"15.5":0.17246,"15.6-15.7":1.19357,"16.0":0.44054,"16.1":0.84352,"16.2":0.41152,"16.3":0.76327,"16.4":0.16392,"16.5":0.43713,"16.6-16.7":8.18765,"17.0":2.91648,"17.1":0.17588,"17.2":0.00512},P:{"4":0.04196,"20":0.23076,"21":0.11538,"22":3.70269,"23":0.90207,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.0944,"11.1-11.2":0.03147,"13.0":0.01049,"14.0":0.20978,"15.0":0.04196,"16.0":0.05245,"17.0":0.01049,"18.0":0.06294,"19.0":0.07342},I:{"0":0.08463,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00026},A:{"8":0.00433,"9":0.00433,"11":0.05628,_:"6 7 10 5.5"},K:{"0":0.14745,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.29489},Q:{_:"13.1"},O:{"0":0.00567},H:{"0":0},L:{"0":34.27427}};
      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 c946b75ba61a3b..7ccc1fc27e8fe8 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.02657,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00664,"57":0.00664,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01993,"73":0,"74":0,"75":0,"76":0,"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.01329,"98":0.00664,"99":0.01329,"100":0.0465,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00664,"113":0,"114":0.01993,"115":0.39194,"116":0.07972,"117":0.59787,"118":0.01329,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00664,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00664,"63":0,"64":0.00664,"65":0,"66":0,"67":0,"68":0.00664,"69":0,"70":0.00664,"71":0,"72":0.05979,"73":0,"74":0,"75":0.01329,"76":0,"77":0,"78":0.00664,"79":0.00664,"80":0,"81":0.01329,"83":0.00664,"84":0,"85":0,"86":0,"87":0.06643,"88":0.00664,"89":0,"90":0.01993,"91":0,"92":0.01329,"93":0,"94":0,"95":0.00664,"96":0,"97":0.00664,"98":0,"99":0.01329,"100":0.10629,"101":0,"102":0,"103":0.03986,"104":0,"105":0.01329,"106":0,"107":0.00664,"108":0,"109":3.01592,"110":0,"111":0,"112":0.00664,"113":0.03986,"114":0.03322,"115":0.33879,"116":12.55527,"117":1.99954,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00664,"62":0,"63":0.00664,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00664,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00664,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.01329,"94":0,"95":0,"96":0,"97":0,"98":0.00664,"99":0,"100":0,"101":0.01329,"102":0.01329,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01329,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01329,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01329,"90":0,"91":0,"92":0.03986,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.03322,"105":0,"106":0,"107":0,"108":0,"109":0.07307,"110":0,"111":0.00664,"112":0.00664,"113":0.8038,"114":0.45172,"115":0.82373,"116":8.96141,"117":10.30994},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.00664,"13.1":0.00664,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01993,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0.00664,"16.6":0.01993,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.06015,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04327,"10.0-10.2":0,"10.3":0.01372,"11.0-11.2":0.00844,"11.3-11.4":0.00317,"12.0-12.1":0.20156,"12.2-12.5":2.70362,"13.0-13.1":0.00106,"13.2":0.00633,"13.3":0.01477,"13.4-13.7":0.09603,"14.0-14.4":1.91849,"14.5-14.8":0.29231,"15.0-15.1":0.19206,"15.2-15.3":0.12136,"15.4":0.33241,"15.5":0.08759,"15.6-15.7":1.76864,"16.0":0.14246,"16.1":0.31342,"16.2":0.11925,"16.3":0.3303,"16.4":0.2005,"16.5":0.5308,"16.6":0.94553,"17.0":0.07704,"17.1":0},P:{"4":0.19483,"20":0.01025,"21":0.03076,"22":0.84084,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01025,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03076,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0.01025},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02298,"4.4":0,"4.4.3-4.4.4":0.76474},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00664,"5.5":0},S:{"2.5":0.49348,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":43.92618},R:{_:"0"},M:{"0":0.07385},Q:{"13.1":0.00336},O:{"0":0.14435},H:{"0":0.12395}};
      +module.exports={C:{"56":0.01298,"62":0.00649,"64":0.00649,"68":0.00649,"72":0.00649,"93":0.03246,"95":0.00649,"97":0.00649,"100":0.05194,"102":0.00649,"112":0.01298,"114":0.03895,"115":0.22073,"117":0.03246,"118":0.35706,"119":0.0844,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 63 65 66 67 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 96 98 99 101 103 104 105 106 107 108 109 110 111 113 116 120 121 122 3.5 3.6"},D:{"52":0.00649,"60":0.01298,"64":0.00649,"65":0.00649,"68":0.00649,"69":0.00649,"72":0.01948,"79":0.04544,"80":0.01948,"81":0.00649,"86":0.04544,"87":0.00649,"88":0.00649,"89":0.00649,"90":0.00649,"92":0.01298,"102":0.00649,"103":0.02597,"105":0.00649,"106":0.00649,"107":0.00649,"108":0.00649,"109":3.34987,"111":0.01298,"113":0.03895,"114":0.04544,"115":0.26617,"116":0.7271,"117":7.13471,"118":6.62184,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 66 67 70 71 73 74 75 76 77 78 83 84 85 91 93 94 95 96 97 98 99 100 101 104 110 112 119 120 121 122"},F:{"80":0.00649,"102":0.07141,"103":0.01298,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00649,"16":0.00649,"18":0.13633,"89":0.05194,"92":0.02597,"104":0.05194,"109":0.21424,"110":0.04544,"112":0.00649,"113":1.75284,"114":0.75956,"115":3.38882,"116":1.07767,"117":15.821,"118":20.14468,_:"13 14 15 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 111 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.4 15.5 16.0 16.1 16.3 16.4 16.5 17.1 17.2","5.1":0.00649,"13.1":0.01298,"14.1":0.01298,"15.2-15.3":0.00649,"15.6":0.01298,"16.2":0.00649,"16.6":0.01948,"17.0":0.01298},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00073,"5.0-5.1":0.00073,"6.0-6.1":0.00218,"7.0-7.1":0.00509,"8.1-8.4":0.00073,"9.0-9.2":0.00509,"9.3":0.01746,"10.0-10.2":0.00073,"10.3":0.02546,"11.0-11.2":0.02328,"11.3-11.4":0.008,"12.0-12.1":0.00655,"12.2-12.5":0.11568,"13.0-13.1":0.00364,"13.2":0.01964,"13.3":0.00728,"13.4-13.7":0.02328,"14.0-14.4":0.06403,"14.5-14.8":0.10331,"15.0-15.1":0.04074,"15.2-15.3":0.04656,"15.4":0.05166,"15.5":0.07348,"15.6-15.7":0.50856,"16.0":0.18771,"16.1":0.35941,"16.2":0.17534,"16.3":0.32522,"16.4":0.06985,"16.5":0.18626,"16.6-16.7":3.48865,"17.0":1.24267,"17.1":0.07494,"17.2":0.00218},P:{"4":0.15511,"20":0.01034,"21":0.04136,"22":0.8583,"23":0.04136,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 13.0 14.0 15.0 16.0","7.2-7.4":0.01034,"9.2":0.03102,"11.1-11.2":0.01034,"17.0":0.01034,"18.0":0.01034,"19.0":0.01034},I:{"0":0.01047,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"11":0.05194,_:"6 7 8 9 10 5.5"},K:{"0":0.17189,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.41044,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.01052},Q:{"13.1":0.00702},O:{"0":0.0877},H:{"0":0},L:{"0":27.60942}};
      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 442e08878b1c18..5dc0d4e118db41 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00456,"49":0,"50":0,"51":0,"52":0.15504,"53":0,"54":0,"55":0,"56":0.00456,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00456,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00912,"79":0,"80":0,"81":0,"82":0,"83":0.00912,"84":0,"85":0,"86":0.00456,"87":0,"88":0.00456,"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.01824,"103":0,"104":0,"105":0.0684,"106":0.00456,"107":0.00456,"108":0.00456,"109":0.00456,"110":0,"111":0.00912,"112":0.0228,"113":0.0228,"114":0.00456,"115":0.76608,"116":0.05016,"117":1.2768,"118":0.11856,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.05928,"35":0,"36":0,"37":0,"38":0.08208,"39":0.05472,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.06384,"48":0,"49":0.05472,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01824,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00456,"71":0,"72":0,"73":0.06384,"74":0,"75":0,"76":0.00456,"77":0,"78":0,"79":0.07296,"80":0.00456,"81":0.01824,"83":0,"84":0,"85":0.00456,"86":0.00456,"87":0.00456,"88":0.00456,"89":0.01824,"90":0.00456,"91":0.00912,"92":0.00456,"93":0.00912,"94":0.00456,"95":0.00912,"96":0.00456,"97":0.00456,"98":0.00456,"99":0.01368,"100":0.00456,"101":0.00912,"102":0.05928,"103":0.01824,"104":0.00456,"105":0.01368,"106":0.03192,"107":0.00456,"108":0.01368,"109":2.80896,"110":0.00456,"111":0.00912,"112":0.01824,"113":0.01368,"114":0.07752,"115":0.08664,"116":7.51944,"117":2.14776,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.03648,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.20064,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.20064,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.16416,"47":0,"48":0,"49":0,"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.00456,"70":0,"71":0,"72":0.00912,"73":0.00456,"74":0,"75":0,"76":0,"77":0.0228,"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.03648,"96":0,"97":0,"98":0,"99":0.00456,"100":0.03648,"101":0.15048,"102":0.19608,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.07296,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00456,"109":0.0228,"110":0,"111":0.00456,"112":0.00456,"113":0,"114":0.00912,"115":0.0456,"116":0.71592,"117":0.48336},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00912,"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.00456,"13.1":0.01368,"14.1":0.02736,"15.1":0.00456,"15.2-15.3":0.00456,"15.4":0.00456,"15.5":0.00912,"15.6":0.05016,"16.0":0.00456,"16.1":0.01368,"16.2":0.01368,"16.3":0.03192,"16.4":0.00912,"16.5":0.04104,"16.6":0.31464,"17.0":0.01824,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00112,"6.0-6.1":0.00112,"7.0-7.1":0.17872,"8.1-8.4":0.00112,"9.0-9.2":0,"9.3":0.04271,"10.0-10.2":0,"10.3":0.04159,"11.0-11.2":0.01012,"11.3-11.4":0.00337,"12.0-12.1":0.00562,"12.2-12.5":0.23155,"13.0-13.1":0.00112,"13.2":0.00225,"13.3":0.05283,"13.4-13.7":0.0236,"14.0-14.4":0.04946,"14.5-14.8":0.12814,"15.0-15.1":0.03035,"15.2-15.3":0.04271,"15.4":0.04046,"15.5":0.08318,"15.6-15.7":0.99701,"16.0":0.23604,"16.1":0.48333,"16.2":0.24391,"16.3":0.48558,"16.4":0.07981,"16.5":0.35856,"16.6":6.44515,"17.0":0.78344,"17.1":0.00225},P:{"4":0.17523,"20":0.05154,"21":0.1443,"22":1.83471,"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.01031,"12.0":0,"13.0":0.01031,"14.0":0.02061,"15.0":0,"16.0":0.02061,"17.0":0.01031,"18.0":0.02061,"19.0":0.04123},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.26866,"4.2-4.3":0.17911,"4.4":0,"4.4.3-4.4.4":0.80599},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00456,"9":0,"10":0,"11":0.01824,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.4436},R:{_:"0"},M:{"0":0.25568},Q:{"13.1":0},O:{"0":0.0544},H:{"0":0.25751}};
      +module.exports={C:{"45":0.01038,"47":0.00346,"48":0.00692,"52":0.23521,"56":0.01384,"68":0.03113,"70":0.00346,"78":0.0173,"83":0.01038,"86":0.00692,"87":0.00346,"88":0.00346,"91":0.00346,"99":0.00346,"102":0.01038,"103":0.00346,"105":0.09685,"106":0.00346,"107":0.00692,"108":0.00692,"109":0.00346,"110":0.00346,"111":0.01038,"112":0.03459,"113":0.02075,"114":0.00346,"115":1.18298,"116":0.01038,"117":0.06918,"118":1.75371,"119":0.35628,"120":0.00346,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 71 72 73 74 75 76 77 79 80 81 82 84 85 89 90 92 93 94 95 96 97 98 100 101 104 121 122 3.5 3.6"},D:{"34":0.09339,"38":0.12798,"39":0.06572,"47":0.09685,"49":0.10723,"57":0.00346,"58":0.02075,"64":0.00692,"65":0.00346,"66":0.03805,"70":0.00346,"73":0.10377,"75":0.00346,"76":0.00346,"78":0.00346,"79":0.13836,"80":0.00346,"81":0.01038,"83":0.00346,"84":0.00346,"85":0.00692,"86":0.01038,"87":0.01038,"88":0.03113,"89":0.12452,"90":0.00346,"91":0.02075,"92":0.00346,"93":0.02075,"94":0.00346,"95":0.01038,"96":0.00346,"97":0.00346,"98":0.00346,"99":0.01384,"100":0.00692,"101":0.01038,"102":0.07264,"103":0.03113,"104":0.00692,"105":0.02421,"106":0.02767,"107":0.01038,"108":0.0173,"109":4.46903,"110":0.01038,"111":0.01038,"112":0.02075,"113":0.0173,"114":0.05534,"115":0.03459,"116":0.47734,"117":7.82772,"118":8.39153,"119":0.01038,"120":0.00346,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 59 60 61 62 63 67 68 69 71 72 74 77 121 122"},F:{"25":0.01384,"28":0.00346,"31":0.32515,"40":0.30439,"46":0.22138,"77":0.00346,"85":0.00346,"90":0.00346,"95":0.04843,"101":0.00346,"102":0.59841,"103":0.18679,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 86 87 88 89 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.14182,"17":0.00346,"108":0.00346,"109":0.03459,"112":0.00346,"113":0.00346,"114":0.00692,"115":0.00346,"116":0.07264,"117":0.93393,"118":0.90626,"119":0.00346,_:"12 13 14 16 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111"},E:{"8":0.00346,"13":0.00346,"14":0.01384,"15":0.00346,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.2","9.1":0.00346,"12.1":0.00692,"13.1":0.02421,"14.1":0.03459,"15.1":0.00346,"15.2-15.3":0.01384,"15.4":0.01038,"15.5":0.01384,"15.6":0.08648,"16.0":0.00692,"16.1":0.0173,"16.2":0.02421,"16.3":0.04843,"16.4":0.02075,"16.5":0.03805,"16.6":0.35282,"17.0":0.15566,"17.1":0.01038},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00058,"5.0-5.1":0.00058,"6.0-6.1":0.00174,"7.0-7.1":0.00405,"8.1-8.4":0.00058,"9.0-9.2":0.00405,"9.3":0.01389,"10.0-10.2":0.00058,"10.3":0.02026,"11.0-11.2":0.01852,"11.3-11.4":0.00637,"12.0-12.1":0.00521,"12.2-12.5":0.09204,"13.0-13.1":0.00289,"13.2":0.01563,"13.3":0.00579,"13.4-13.7":0.01852,"14.0-14.4":0.05094,"14.5-14.8":0.0822,"15.0-15.1":0.03242,"15.2-15.3":0.03705,"15.4":0.0411,"15.5":0.05847,"15.6-15.7":0.40464,"16.0":0.14935,"16.1":0.28597,"16.2":0.13951,"16.3":0.25876,"16.4":0.05557,"16.5":0.14819,"16.6-16.7":2.77572,"17.0":0.98872,"17.1":0.05962,"17.2":0.00174},P:{"4":0.10502,"20":0.05251,"21":0.14703,"22":1.57531,"23":0.40958,"5.0-5.4":0.0105,"6.2-6.4":0.021,"7.2-7.4":0.021,"8.2":0.021,"9.2":0.09452,_:"10.1","11.1-11.2":0.021,"12.0":0.0105,"13.0":0.0105,"14.0":0.021,"15.0":0.0105,"16.0":0.021,"17.0":0.021,"18.0":0.021,"19.0":0.04201},I:{"0":0.63775,"3":0,"4":0.00013,"2.1":0,"2.2":0.00019,"2.3":0,"4.1":0.00013,"4.2-4.3":0.00045,"4.4":0,"4.4.3-4.4.4":0.00192},A:{"8":0.00346,"11":0.02767,_:"6 7 9 10 5.5"},K:{"0":0.19931,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.22894},Q:{_:"13.1"},O:{"0":0.03271},H:{"0":0.01},L:{"0":57.73479}};
      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 601c09bf50db89..9c288747a4c33d 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.04327,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00361,"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.00721,"103":0,"104":0.00361,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00721,"114":0.00361,"115":0.05048,"116":0.02885,"117":0.42551,"118":0.03245,"119":0.00361,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00361,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00361,"76":0.00361,"77":0,"78":0.00361,"79":0.02164,"80":0,"81":0.00361,"83":0,"84":0,"85":0.01082,"86":0.01082,"87":0.00721,"88":0.00361,"89":0.00361,"90":0,"91":0.02885,"92":0,"93":0.00361,"94":0,"95":0,"96":0.00361,"97":0.00721,"98":0,"99":0.01082,"100":0.01082,"101":0.00361,"102":0,"103":0.02885,"104":0.00361,"105":0.00721,"106":0.00721,"107":0.00361,"108":0.01082,"109":0.55893,"110":0.00721,"111":0.02524,"112":0.01082,"113":0.02164,"114":0.06491,"115":0.10457,"116":5.94629,"117":1.52173,"118":0.00361,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00361,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00361,"72":0.01442,"73":0.00361,"74":0,"75":0,"76":0,"77":0.01442,"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.01082,"96":0,"97":0,"98":0,"99":0.00721,"100":0.14424,"101":0.25603,"102":0.27406,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00361,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00721,"99":0,"100":0.00361,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00361,"108":0.00361,"109":0.01442,"110":0.00361,"111":0.00361,"112":0.01082,"113":0.00721,"114":0.01082,"115":0.02524,"116":0.69596,"117":0.46878},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00721,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00361,"6.1":0,"7.1":0,"9.1":0.00721,"10.1":0,"11.1":0,"12.1":0.00361,"13.1":0.00721,"14.1":0.01442,"15.1":0.00361,"15.2-15.3":0.00361,"15.4":0.00361,"15.5":0.00721,"15.6":0.0577,"16.0":0.00721,"16.1":0.01803,"16.2":0.01803,"16.3":0.02885,"16.4":0.01442,"16.5":0.0577,"16.6":0.28127,"17.0":0.04327,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01785,"7.0-7.1":0.00162,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00974,"10.0-10.2":0.01785,"10.3":0.01136,"11.0-11.2":0.00162,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.13468,"13.0-13.1":0,"13.2":0,"13.3":0.00487,"13.4-13.7":0.02434,"14.0-14.4":0.05842,"14.5-14.8":0.11846,"15.0-15.1":0.02759,"15.2-15.3":0.0357,"15.4":0.05193,"15.5":0.0503,"15.6-15.7":0.73994,"16.0":0.37484,"16.1":0.64258,"16.2":0.31642,"16.3":0.6442,"16.4":0.13468,"16.5":0.43163,"16.6":10.10114,"17.0":2.02996,"17.1":0.00162},P:{"4":0.06122,"20":0.11224,"21":0.15306,"22":2.66324,"5.0-5.4":0.0102,"6.2-6.4":0,"7.2-7.4":0.10204,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04082,"12.0":0,"13.0":0.03061,"14.0":0.05102,"15.0":0.0102,"16.0":0.05102,"17.0":0.03061,"18.0":0.04082,"19.0":0.09184},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.18245},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00361,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.26258},R:{_:"0"},M:{"0":0.29412},Q:{"13.1":0},O:{"0":0.06394},H:{"0":0.32083}};
      +module.exports={C:{"52":0.00353,"73":0.19046,"78":0.00353,"88":0.00353,"101":0.00353,"102":0.01058,"112":0.00353,"113":0.01058,"114":0.00705,"115":0.14813,"116":0.00705,"117":0.0388,"118":0.94171,"119":0.20104,"120":0.00353,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 103 104 105 106 107 108 109 110 111 121 122 3.5 3.6"},D:{"14":0.00353,"38":0.00353,"49":0.00353,"67":0.01411,"69":0.00353,"73":0.00353,"74":0.00353,"75":0.01058,"76":0.01058,"78":0.00353,"79":0.05643,"80":0.00353,"81":0.00353,"83":0.00353,"84":0.00705,"86":0.00353,"87":0.02116,"88":0.01058,"91":0.08465,"92":0.00353,"93":0.01058,"94":0.00353,"95":0.00353,"96":0.00353,"97":0.01411,"99":0.01411,"100":0.01058,"101":0.00353,"102":0.00353,"103":0.07759,"104":0.00353,"105":0.02822,"106":0.01411,"107":0.01411,"108":0.01411,"109":1.56246,"110":0.01058,"111":0.04232,"112":0.03527,"113":0.03174,"114":0.11992,"115":0.08818,"116":0.65955,"117":9.88265,"118":10.30237,"119":0.01058,_:"4 5 6 7 8 9 10 11 12 13 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 70 71 72 77 85 89 90 98 120 121 122"},F:{"28":0.00353,"73":0.00353,"94":0.00353,"95":0.02469,"99":0.00353,"100":0.00353,"101":0.00705,"102":1.82346,"103":0.261,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00353,"90":0.00353,"92":0.01411,"98":0.00705,"100":0.00705,"106":0.00353,"107":0.00353,"109":0.0388,"110":0.00353,"111":0.01764,"112":0.02469,"113":0.0388,"114":0.01411,"115":0.02116,"116":0.04585,"117":1.55541,"118":1.57304,"119":0.01411,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 99 101 102 103 104 105 108"},E:{"14":0.01058,"15":0.00353,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.01058,"11.1":0.00353,"12.1":0.00353,"13.1":0.01764,"14.1":0.07407,"15.1":0.00353,"15.2-15.3":0.01058,"15.4":0.01058,"15.5":0.01764,"15.6":0.15872,"16.0":0.01058,"16.1":0.04232,"16.2":0.04585,"16.3":0.06701,"16.4":0.04585,"16.5":0.1305,"16.6":0.44793,"17.0":0.57137,"17.1":0.03527},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00107,"5.0-5.1":0.00107,"6.0-6.1":0.00321,"7.0-7.1":0.00749,"8.1-8.4":0.00107,"9.0-9.2":0.00749,"9.3":0.0257,"10.0-10.2":0.00107,"10.3":0.03747,"11.0-11.2":0.03426,"11.3-11.4":0.01178,"12.0-12.1":0.00964,"12.2-12.5":0.17023,"13.0-13.1":0.00535,"13.2":0.02891,"13.3":0.01071,"13.4-13.7":0.03426,"14.0-14.4":0.09422,"14.5-14.8":0.15203,"15.0-15.1":0.05996,"15.2-15.3":0.06852,"15.4":0.07602,"15.5":0.10813,"15.6-15.7":0.74837,"16.0":0.27622,"16.1":0.52889,"16.2":0.25802,"16.3":0.47857,"16.4":0.10278,"16.5":0.27408,"16.6-16.7":5.13369,"17.0":1.82864,"17.1":0.11028,"17.2":0.00321},P:{"4":0.06178,"20":0.07208,"21":0.11327,"22":2.17268,"23":0.52515,"5.0-5.4":0.0103,_:"6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.09267,"11.1-11.2":0.03089,"13.0":0.02059,"14.0":0.03089,"15.0":0.0103,"16.0":0.05149,"17.0":0.04119,"18.0":0.03089,"19.0":0.08238},I:{"0":0.09016,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00027},A:{"11":0.01764,_:"6 7 8 9 10 5.5"},K:{"0":0.34485,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.47253},Q:{_:"13.1"},O:{"0":0.06473},H:{"0":0.05},L:{"0":52.41221}};
      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 24f2ddf924963a..2fc626896becdd 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00437,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0131,"79":0,"80":0,"81":0.0131,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.0131,"88":0,"89":0,"90":0,"91":0.00437,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0131,"104":0,"105":0,"106":0,"107":0.00437,"108":0,"109":0.00437,"110":0,"111":0,"112":0,"113":0.00437,"114":0,"115":0.82517,"116":0.05239,"117":0.57195,"118":0.06112,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00437,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00873,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00437,"76":0.00437,"77":0,"78":0,"79":0.01746,"80":0,"81":0,"83":0,"84":0,"85":0.00437,"86":0,"87":0.00873,"88":0,"89":0,"90":0.00437,"91":0,"92":0.0131,"93":0.00437,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.14844,"100":0.00873,"101":0,"102":0,"103":0.15718,"104":0,"105":0.00873,"106":0.00437,"107":0,"108":0.00437,"109":0.39731,"110":0,"111":0.03056,"112":0.09169,"113":0.04366,"114":0.09605,"115":0.37984,"116":7.40037,"117":1.5412,"118":0.02183,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00437,"73":0.00437,"74":0,"75":0,"76":0,"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.0262,"101":0.05676,"102":0.12225,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.05239,"110":0,"111":0,"112":0.00437,"113":0.00437,"114":0.07859,"115":0.47589,"116":1.45824,"117":1.08713},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04366,"15":0.02183,_:"0","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.01746,"13.1":0.04366,"14.1":0.10042,"15.1":0.00873,"15.2-15.3":0.0131,"15.4":0.0131,"15.5":0.03493,"15.6":0.4104,"16.0":0.01746,"16.1":0.05239,"16.2":0.06112,"16.3":0.2183,"16.4":0.14408,"16.5":0.32308,"16.6":1.53247,"17.0":0.03929,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08611,"10.0-10.2":0.0041,"10.3":0.0205,"11.0-11.2":0,"11.3-11.4":0.11891,"12.0-12.1":0.17222,"12.2-12.5":0.31163,"13.0-13.1":0,"13.2":0.0492,"13.3":0.041,"13.4-13.7":0.0328,"14.0-14.4":0.22962,"14.5-14.8":0.29113,"15.0-15.1":0.20502,"15.2-15.3":0.23782,"15.4":0.18042,"15.5":0.20502,"15.6-15.7":2.01328,"16.0":1.22191,"16.1":2.32491,"16.2":1.19731,"16.3":2.51353,"16.4":1.27112,"16.5":2.03789,"16.6":24.0692,"17.0":1.75496,"17.1":0},P:{"4":0.12451,"20":0.11413,"21":0.21789,"22":3.40316,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01038,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0.13488,"16.0":0.01038,"17.0":0.01038,"18.0":0.06225,"19.0":0.10375},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13422},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":30.94472},R:{_:"0"},M:{"0":1.94373},Q:{"13.1":0},O:{"0":0.0338},H:{"0":0.06934}};
      +module.exports={C:{"69":0.00436,"78":0.02182,"83":0.01309,"87":0.048,"107":0.00873,"109":0.00436,"113":0.02618,"115":0.25311,"116":0.00436,"117":0.02618,"118":0.9208,"119":0.18765,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111 112 114 120 121 122 3.5 3.6"},D:{"49":0.00873,"51":0.00436,"65":0.42767,"75":0.00436,"76":0.00436,"79":0.02182,"84":0.00436,"85":0.00873,"86":0.00873,"87":0.01746,"91":0.00873,"92":0.02618,"93":0.00873,"98":0.00873,"99":0.42767,"100":0.00873,"102":0.00436,"103":0.37967,"105":0.01746,"106":0.00436,"108":0.00873,"109":0.78552,"110":0.00436,"111":0.02618,"112":0.048,"113":0.10474,"114":0.09164,"115":0.13092,"116":1.66268,"117":11.1282,"118":10.59143,"119":0.06546,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 77 78 80 81 83 88 89 90 94 95 96 97 101 104 107 120 121 122"},F:{"102":0.72006,"103":0.09164,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01309,"101":0.00436,"103":0.00436,"107":0.00436,"109":0.06982,"112":0.00436,"113":0.00436,"114":0.1091,"115":0.08292,"116":0.26184,"117":2.59658,"118":2.17764,"119":0.00436,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 104 105 106 108 110 111"},E:{"13":0.01309,"14":0.09164,"15":0.02182,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.048,"13.1":0.12656,"14.1":0.19638,"15.1":0.03928,"15.2-15.3":0.048,"15.4":0.03928,"15.5":0.06982,"15.6":0.68078,"16.0":0.02618,"16.1":0.11346,"16.2":0.19638,"16.3":0.67642,"16.4":0.20947,"16.5":0.4975,"16.6":3.59157,"17.0":0.7157,"17.1":0.048},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00275,"5.0-5.1":0.00275,"6.0-6.1":0.00824,"7.0-7.1":0.01922,"8.1-8.4":0.00275,"9.0-9.2":0.01922,"9.3":0.0659,"10.0-10.2":0.00275,"10.3":0.09611,"11.0-11.2":0.08787,"11.3-11.4":0.0302,"12.0-12.1":0.02471,"12.2-12.5":0.43659,"13.0-13.1":0.01373,"13.2":0.07414,"13.3":0.02746,"13.4-13.7":0.08787,"14.0-14.4":0.24164,"14.5-14.8":0.38991,"15.0-15.1":0.15377,"15.2-15.3":0.17573,"15.4":0.19496,"15.5":0.27733,"15.6-15.7":1.91936,"16.0":0.70843,"16.1":1.35645,"16.2":0.66175,"16.3":1.2274,"16.4":0.2636,"16.5":0.70294,"16.6-16.7":13.16639,"17.0":4.68993,"17.1":0.28282,"17.2":0.00824},P:{"4":0.10708,"20":0.14992,"21":0.11779,"22":2.71993,"23":0.49259,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0","7.2-7.4":0.04283,"11.1-11.2":0.01071,"16.0":0.05354,"17.0":0.01071,"18.0":0.03213,"19.0":0.11779},I:{"0":0.01682,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"11":0.01309,_:"6 7 8 9 10 5.5"},K:{"0":0.06763,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":2.1755},Q:{_:"13.1"},O:{"0":0.00564},H:{"0":0},L:{"0":22.52667}};
      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 e49f1b1d344c22..55fd8eb7a5c9e5 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GW.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GW.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01303,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00434,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00434,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00869,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.02172,"116":0,"117":0.0391,"118":0.00434,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00869,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00869,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00434,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.01303,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.03041,"71":0,"72":0,"73":0,"74":0,"75":0.01303,"76":0,"77":0,"78":0,"79":0.00434,"80":0,"81":0.00869,"83":0.00434,"84":0,"85":0,"86":0,"87":0,"88":0.00434,"89":0,"90":0.18679,"91":0,"92":0,"93":0,"94":0,"95":0.00434,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.03041,"103":0.00434,"104":0,"105":0.00434,"106":0,"107":0.05213,"108":0.00434,"109":5.07814,"110":0,"111":0.2867,"112":0.00869,"113":0.00434,"114":0.02172,"115":0.03475,"116":6.05988,"117":1.55081,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00434,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00434,"47":0,"48":0,"49":0,"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.00869,"69":0.00869,"70":0,"71":0,"72":0.04778,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00434,"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.03475,"102":0.02172,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01303,"13":0.00434,"14":0,"15":0.02606,"16":0,"17":0,"18":0.01738,"79":0,"80":0,"81":0,"83":0,"84":0.00869,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.02172,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.0391,"110":0,"111":0,"112":0,"113":0.00869,"114":0.0391,"115":0.29539,"116":0.92093,"117":0.83405},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03041,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0.02172,"16.3":0,"16.4":0,"16.5":0,"16.6":0.00434,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00149,"6.0-6.1":0,"7.0-7.1":0.01116,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.18231,"10.0-10.2":0.16594,"10.3":0.04242,"11.0-11.2":0.0506,"11.3-11.4":0.00223,"12.0-12.1":0.12278,"12.2-12.5":0.52164,"13.0-13.1":0.17785,"13.2":0,"13.3":0.13394,"13.4-13.7":0.05804,"14.0-14.4":0.16966,"14.5-14.8":0.67865,"15.0-15.1":0.52982,"15.2-15.3":0.07665,"15.4":0.02158,"15.5":0.19571,"15.6-15.7":2.48541,"16.0":0.09971,"16.1":0.06102,"16.2":0.19348,"16.3":0.37058,"16.4":0.11385,"16.5":0.19422,"16.6":0.70172,"17.0":0.06995,"17.1":0},P:{"4":0.19344,"20":0.0509,"21":0.08145,"22":0.2138,"5.0-5.4":0.01018,"6.2-6.4":0,"7.2-7.4":0.08145,"8.2":0,"9.2":0,"10.1":0.06108,"11.1-11.2":0.04072,"12.0":0,"13.0":0.02036,"14.0":0,"15.0":0.07127,"16.0":0.0509,"17.0":0.04072,"18.0":0.01018,"19.0":0.04072},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00037,"4.2-4.3":0.00097,"4.4":0,"4.4.3-4.4.4":0.03471},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},S:{"2.5":0.8484,_:"3.0-3.1"},J:{"7":0,"10":0.00566},N:{"10":0,"11":0},L:{"0":73.32783},R:{_:"0"},M:{"0":0.04525},Q:{"13.1":0},O:{"0":0.06222},H:{"0":0.31057}};
      +module.exports={C:{"34":0.00436,"56":0.00871,"78":0.00436,"115":0.02178,"116":0.01307,"118":0.1786,"119":0.02178,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 117 120 121 122 3.5 3.6"},D:{"11":0.03049,"49":0.03485,"60":0.00436,"64":0.00436,"70":0.00436,"75":0.01742,"79":0.67518,"81":0.00871,"85":0.01307,"86":0.00871,"88":0.00436,"90":0.0392,"93":0.00871,"99":0.00436,"103":0.02614,"105":0.00871,"106":0.00436,"107":0.00871,"108":0.00436,"109":11.28204,"110":0.19166,"111":0.54014,"113":0.00436,"114":0.01742,"115":0.01742,"116":0.08276,"117":7.60122,"118":9.90554,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 63 65 66 67 68 69 71 72 73 74 76 77 78 80 83 84 87 89 91 92 94 95 96 97 98 100 101 102 104 112 119 120 121 122"},F:{"102":0.13504,"103":0.06098,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00871,"18":0.05663,"90":0.00436,"92":0.04792,"109":0.06098,"113":0.00436,"114":0.02178,"115":0.73616,"116":0.0392,"117":2.05603,"118":1.65964,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.1 16.3 16.5 17.1 17.2","15.6":0.00436,"16.0":0.00436,"16.2":0.04356,"16.4":0.00436,"16.6":0.02614,"17.0":0.00436},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0005,"5.0-5.1":0.0005,"6.0-6.1":0.00149,"7.0-7.1":0.00348,"8.1-8.4":0.0005,"9.0-9.2":0.00348,"9.3":0.01195,"10.0-10.2":0.0005,"10.3":0.01742,"11.0-11.2":0.01593,"11.3-11.4":0.00548,"12.0-12.1":0.00448,"12.2-12.5":0.07915,"13.0-13.1":0.00249,"13.2":0.01344,"13.3":0.00498,"13.4-13.7":0.01593,"14.0-14.4":0.04381,"14.5-14.8":0.07069,"15.0-15.1":0.02788,"15.2-15.3":0.03186,"15.4":0.03534,"15.5":0.05028,"15.6-15.7":0.34796,"16.0":0.12843,"16.1":0.24591,"16.2":0.11997,"16.3":0.22252,"16.4":0.04779,"16.5":0.12744,"16.6-16.7":2.38695,"17.0":0.85024,"17.1":0.05127,"17.2":0.00149},P:{"4":0.22159,"20":0.0211,"21":0.12662,"22":0.17938,"23":0.01055,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 18.0","7.2-7.4":0.12662,"11.1-11.2":0.01055,"13.0":0.10552,"15.0":0.06331,"16.0":0.03166,"17.0":0.0211,"19.0":0.05276},I:{"0":0.00562,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.00436,_:"6 7 8 9 10 5.5"},K:{"0":0.15318,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.85789,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.02258},Q:{_:"13.1"},O:{"0":0.01693},H:{"0":0.05},L:{"0":57.07561}};
      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 e4dede817958d3..1d5c4fc1becf4f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00342,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00342,"108":0,"109":0,"110":0.00342,"111":0,"112":0,"113":0,"114":0.00342,"115":0.0649,"116":0.01366,"117":0.21179,"118":0.02733,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00342,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01025,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01708,"70":0.00342,"71":0,"72":0,"73":0.01366,"74":0.01025,"75":0,"76":0.00683,"77":0.00683,"78":0,"79":0.02733,"80":0,"81":0.00342,"83":0.00342,"84":0,"85":0,"86":0.00342,"87":0.02733,"88":0.05124,"89":0.00342,"90":0,"91":0.00342,"92":0.01025,"93":0.03416,"94":0,"95":0,"96":0.00342,"97":0,"98":0,"99":0,"100":0,"101":0.00683,"102":0,"103":0.06149,"104":0,"105":0.01366,"106":0.00683,"107":0.00342,"108":0.00683,"109":0.23912,"110":0.00342,"111":0.00683,"112":0.01708,"113":0.03416,"114":0.14347,"115":0.1503,"116":4.92246,"117":0.84034,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00342,"72":0.01366,"73":0.01025,"74":0,"75":0,"76":0,"77":0.0205,"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.00342,"95":0.00683,"96":0,"97":0,"98":0,"99":0.00342,"100":0.02733,"101":0.21862,"102":0.20496,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00342,"16":0,"17":0.00342,"18":0.00342,"79":0,"80":0,"81":0,"83":0,"84":0.03074,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00342,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01708,"110":0,"111":0.00342,"112":0.00342,"113":0.00342,"114":0.02733,"115":0.04441,"116":1.0248,"117":0.63196},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0854,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00342,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01366,"14.1":0.01366,"15.1":0.00683,"15.2-15.3":0,"15.4":0.01025,"15.5":0.01025,"15.6":0.03416,"16.0":0.01025,"16.1":0.01366,"16.2":0.00683,"16.3":0.01708,"16.4":0.00683,"16.5":0.03758,"16.6":0.23912,"17.0":0.05807,"17.1":0},G:{"8":0,"3.2":0.00275,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03298,"6.0-6.1":0,"7.0-7.1":0.0742,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07008,"10.0-10.2":0,"10.3":0.0371,"11.0-11.2":0.01512,"11.3-11.4":0,"12.0-12.1":0.01099,"12.2-12.5":0.28444,"13.0-13.1":0.00275,"13.2":0,"13.3":0,"13.4-13.7":0.00962,"14.0-14.4":0.05222,"14.5-14.8":0.08245,"15.0-15.1":0.03298,"15.2-15.3":0.03435,"15.4":0.02473,"15.5":0.09619,"15.6-15.7":1.52387,"16.0":0.29131,"16.1":0.43009,"16.2":0.24871,"16.3":0.45208,"16.4":0.06321,"16.5":0.54002,"16.6":8.17587,"17.0":0.92339,"17.1":0},P:{"4":0.25211,"20":0.15757,"21":0.30463,"22":4.59043,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.22059,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.08404,"12.0":0,"13.0":0.03151,"14.0":0.03151,"15.0":0.0105,"16.0":0.06303,"17.0":0.04202,"18.0":0.06303,"19.0":0.14706},I:{"0":0,"3":0,"4":0.07128,"2.1":0,"2.2":0,"2.3":0,"4.1":0.1782,"4.2-4.3":0.07128,"4.4":0,"4.4.3-4.4.4":0.7128},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02391,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.27956},R:{_:"0"},M:{"0":0.07242},Q:{"13.1":0},O:{"0":0.35554},H:{"0":0.36777}};
      +module.exports={C:{"89":0.00319,"107":0.00638,"108":0.00319,"110":0.00638,"113":0.00319,"114":0.00319,"115":0.27762,"116":0.00957,"117":0.02234,"118":0.61905,"119":0.13083,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 111 112 120 121 122 3.5 3.6"},D:{"11":0.01915,"49":0.01276,"55":0.00319,"65":0.00638,"69":0.02234,"73":0.01915,"74":0.00319,"75":0.01276,"76":0.0351,"77":0.05425,"79":0.05425,"81":0.00319,"83":0.01596,"86":0.00638,"87":0.09254,"88":0.00638,"90":0.00319,"91":0.00638,"92":0.00957,"93":0.12445,"94":0.00957,"96":0.00638,"97":0.00319,"98":0.00319,"99":0.01596,"100":0.00638,"101":0.00319,"103":0.10211,"104":0.00319,"105":0.06063,"106":0.03191,"107":0.00957,"108":0.00638,"109":0.73712,"110":0.01596,"111":0.01915,"112":0.02872,"113":0.02553,"114":0.08616,"115":0.09254,"116":1.14238,"117":8.1913,"118":7.802,"119":0.00957,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 66 67 68 70 71 72 78 80 84 85 89 95 102 120 121 122"},F:{"28":0.00319,"36":0.00638,"46":0.00319,"95":0.01596,"102":1.21258,"103":0.1787,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00319,"15":0.17551,"16":0.00957,"17":0.00319,"18":0.01276,"84":0.00319,"90":0.00319,"92":0.02872,"101":0.00319,"103":0.00319,"105":0.00319,"107":0.00319,"109":0.06701,"112":0.00957,"113":0.00957,"114":0.01596,"115":0.04787,"116":0.16912,"117":2.40921,"118":2.4475,"119":0.00319,_:"12 13 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 100 102 104 106 108 110 111"},E:{"14":0.11807,"15":0.00638,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.01596,"11.1":0.00319,"12.1":0.00319,"13.1":0.02872,"14.1":0.06063,"15.1":0.00319,"15.2-15.3":0.00319,"15.4":0.20742,"15.5":0.02234,"15.6":0.13083,"16.0":0.00638,"16.1":0.01596,"16.2":0.02234,"16.3":0.06382,"16.4":0.03829,"16.5":0.11807,"16.6":0.37016,"17.0":0.26166,"17.1":0.02872},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00092,"5.0-5.1":0.00092,"6.0-6.1":0.00275,"7.0-7.1":0.00641,"8.1-8.4":0.00092,"9.0-9.2":0.00641,"9.3":0.02197,"10.0-10.2":0.00092,"10.3":0.03203,"11.0-11.2":0.02929,"11.3-11.4":0.01007,"12.0-12.1":0.00824,"12.2-12.5":0.14553,"13.0-13.1":0.00458,"13.2":0.02471,"13.3":0.00915,"13.4-13.7":0.02929,"14.0-14.4":0.08054,"14.5-14.8":0.12997,"15.0-15.1":0.05125,"15.2-15.3":0.05858,"15.4":0.06498,"15.5":0.09244,"15.6-15.7":0.63977,"16.0":0.23614,"16.1":0.45214,"16.2":0.22058,"16.3":0.40912,"16.4":0.08787,"16.5":0.23431,"16.6-16.7":4.38869,"17.0":1.56327,"17.1":0.09427,"17.2":0.00275},P:{"4":0.18144,"20":0.07471,"21":0.18144,"22":4.06646,"23":0.65106,_:"5.0-5.4 6.2-6.4 8.2 10.1 14.0","7.2-7.4":0.26683,"9.2":0.02135,"11.1-11.2":0.07471,"12.0":0.01067,"13.0":0.03202,"15.0":0.01067,"16.0":0.08539,"17.0":0.02135,"18.0":0.03202,"19.0":0.1601},I:{"0":0.06098,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00018},A:{"10":0.01117,"11":0.01117,_:"6 7 8 9 5.5"},K:{"0":0.99107,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.05448},Q:{"13.1":0.05448},O:{"0":0.32688},H:{"0":0.01},L:{"0":54.84925}};
      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 52c1b875692c02..446ad360bdb2b5 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HK.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HK.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01385,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00462,"53":0,"54":0,"55":0,"56":0,"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,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00923,"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.00923,"103":0,"104":0,"105":0,"106":0.00923,"107":0.00462,"108":0,"109":0.00462,"110":0.00462,"111":0.00923,"112":0.00462,"113":0.00462,"114":0.00923,"115":0.07846,"116":0.03231,"117":0.40151,"118":0.03231,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00462,"27":0,"28":0,"29":0,"30":0.00462,"31":0,"32":0,"33":0,"34":0.02769,"35":0,"36":0,"37":0,"38":0.07384,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00462,"49":0.01385,"50":0,"51":0,"52":0,"53":0.02308,"54":0,"55":0.00923,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.02308,"62":0,"63":0,"64":0,"65":0.00462,"66":0,"67":0.00462,"68":0,"69":0.00923,"70":0.00462,"71":0.00462,"72":0.00462,"73":0.00462,"74":0.01846,"75":0.00923,"76":0.00462,"77":0.00462,"78":0.01385,"79":0.36459,"80":0.00923,"81":0.01385,"83":0.04154,"84":0.00462,"85":0.00462,"86":0.02308,"87":0.11076,"88":0.00462,"89":0.06461,"90":0.00923,"91":0.02769,"92":0.01385,"93":0,"94":0.03692,"95":0.00923,"96":0.00923,"97":0.01385,"98":0.01385,"99":0.08769,"100":0.01385,"101":0.01385,"102":0.01846,"103":0.06923,"104":0.00923,"105":0.01846,"106":0.02308,"107":0.02308,"108":0.03692,"109":0.85378,"110":0.01846,"111":0.02769,"112":0.07846,"113":0.11076,"114":0.26306,"115":0.35997,"116":7.18556,"117":1.69832,"118":0.02308,"119":0.00462,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00462,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01385,"37":0,"38":0,"39":0,"40":0.00462,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.05538,"47":0,"48":0,"49":0,"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.00462,"73":0,"74":0,"75":0,"76":0,"77":0.00923,"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.02308,"96":0,"97":0,"98":0,"99":0.00462,"100":0.00462,"101":0.03692,"102":0.03231,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00462,"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.00462,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00462,"108":0.00462,"109":0.08769,"110":0.00923,"111":0.00462,"112":0.00923,"113":0.02308,"114":0.03231,"115":0.06461,"116":1.22298,"117":0.76148},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00462,"13":0.01846,"14":0.07384,"15":0.01846,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00462,"10.1":0,"11.1":0,"12.1":0.01385,"13.1":0.06,"14.1":0.15691,"15.1":0.01846,"15.2-15.3":0.02308,"15.4":0.07846,"15.5":0.0923,"15.6":0.40151,"16.0":0.03231,"16.1":0.07384,"16.2":0.07846,"16.3":0.25844,"16.4":0.06923,"16.5":0.22152,"16.6":1.96599,"17.0":0.05077,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02234,"6.0-6.1":0.01117,"7.0-7.1":0.01862,"8.1-8.4":0.08191,"9.0-9.2":0.00745,"9.3":0.15266,"10.0-10.2":0.00372,"10.3":0.13032,"11.0-11.2":0.01489,"11.3-11.4":0.02234,"12.0-12.1":0.03351,"12.2-12.5":0.6553,"13.0-13.1":0.01117,"13.2":0.01117,"13.3":0.04096,"13.4-13.7":0.08191,"14.0-14.4":0.3351,"14.5-14.8":0.54733,"15.0-15.1":0.26435,"15.2-15.3":0.27925,"15.4":0.44307,"15.5":0.40956,"15.6-15.7":2.32707,"16.0":1.1021,"16.1":1.99942,"16.2":0.98668,"16.3":2.06271,"16.4":0.36116,"16.5":1.12444,"16.6":22.3808,"17.0":1.03508,"17.1":0.00372},P:{"4":1.04633,"20":0.09609,"21":0.26692,"22":4.8473,"5.0-5.4":0.14948,"6.2-6.4":0.02135,"7.2-7.4":0,"8.2":0,"9.2":0.01068,"10.1":0,"11.1-11.2":0.01068,"12.0":0.01068,"13.0":0.04271,"14.0":0.02135,"15.0":0.01068,"16.0":0.04271,"17.0":0.07474,"18.0":0.05338,"19.0":0.07474},I:{"0":0,"3":0,"4":0.0189,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00378,"4.4":0,"4.4.3-4.4.4":0.06425},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.08175,"10":0,"11":0.20438,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.00539,"11":0},L:{"0":32.73159},R:{_:"0"},M:{"0":0.19925},Q:{"13.1":0.07001},O:{"0":0.28002},H:{"0":0.09687}};
      +module.exports={C:{"34":0.0337,"48":0.00421,"52":0.01264,"56":0.00421,"72":0.00421,"78":0.00842,"84":0.00421,"88":0.00421,"101":0.00421,"102":0.01264,"104":0.00421,"106":0.00421,"107":0.00421,"108":0.00421,"109":0.00421,"111":0.00842,"112":0.00421,"113":0.00421,"114":0.00421,"115":0.15584,"116":0.01264,"117":0.0337,"118":0.7034,"119":0.14321,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 103 105 110 120 121 122 3.5 3.6"},D:{"25":0.00421,"26":0.00842,"30":0.01264,"34":0.05476,"38":0.14321,"45":0.00421,"48":0.00421,"49":0.0337,"51":0.00421,"53":0.0337,"55":0.01685,"57":0.00421,"58":0.00421,"61":0.03791,"62":0.00421,"63":0.00421,"65":0.00421,"66":0.00421,"67":0.01264,"68":0.00421,"69":0.01264,"70":0.00421,"71":0.00421,"72":0.00842,"73":0.00421,"74":0.0337,"75":0.01685,"76":0.00842,"77":0.00421,"78":0.02948,"79":0.75816,"80":0.01685,"81":0.02106,"83":0.06739,"84":0.00842,"85":0.00842,"86":0.05054,"87":0.23587,"88":0.00421,"89":0.139,"90":0.01264,"91":0.02527,"92":0.02106,"93":0.00421,"94":0.10109,"95":0.02527,"96":0.02106,"97":0.02948,"98":0.02948,"99":0.08003,"100":0.02527,"101":0.0337,"102":0.0337,"103":0.13057,"104":0.02106,"105":0.0337,"106":0.02948,"107":0.04633,"108":0.06739,"109":1.61741,"110":0.02527,"111":0.04633,"112":0.08424,"113":0.13057,"114":0.26536,"115":0.2106,"116":1.09091,"117":9.90662,"118":9.30431,"119":0.02948,"120":0.0337,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 46 47 50 52 54 56 59 60 64 121 122"},F:{"28":0.01264,"36":0.0337,"40":0.00421,"46":0.1053,"95":0.04633,"101":0.00421,"102":0.12215,"103":0.04633,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00421,"17":0.00421,"18":0.0337,"92":0.00842,"107":0.00842,"108":0.00421,"109":0.17269,"110":0.01264,"111":0.01685,"112":0.01264,"113":0.04212,"114":0.0337,"115":0.04212,"116":0.12636,"117":2.03018,"118":2.03018,"119":0.01264,_:"13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"8":0.00421,"12":0.00842,"13":0.03791,"14":0.15163,"15":0.0337,_:"0 4 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.00421,"11.1":0.00421,"12.1":0.02948,"13.1":0.11794,"14.1":0.30326,"15.1":0.03791,"15.2-15.3":0.03791,"15.4":0.15584,"15.5":0.18954,"15.6":0.80449,"16.0":0.06739,"16.1":0.139,"16.2":0.15584,"16.3":0.48859,"16.4":0.13057,"16.5":0.37908,"16.6":3.74868,"17.0":0.64444,"17.1":0.03791},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00245,"5.0-5.1":0.00245,"6.0-6.1":0.00735,"7.0-7.1":0.01715,"8.1-8.4":0.00245,"9.0-9.2":0.01715,"9.3":0.05882,"10.0-10.2":0.00245,"10.3":0.08577,"11.0-11.2":0.07842,"11.3-11.4":0.02696,"12.0-12.1":0.02206,"12.2-12.5":0.38965,"13.0-13.1":0.01225,"13.2":0.06617,"13.3":0.02451,"13.4-13.7":0.07842,"14.0-14.4":0.21566,"14.5-14.8":0.34799,"15.0-15.1":0.13724,"15.2-15.3":0.15684,"15.4":0.174,"15.5":0.24751,"15.6-15.7":1.713,"16.0":0.63226,"16.1":1.21062,"16.2":0.5906,"16.3":1.09544,"16.4":0.23526,"16.5":0.62736,"16.6-16.7":11.75081,"17.0":4.18569,"17.1":0.25242,"17.2":0.00735},P:{"4":1.01545,"20":0.07898,"21":0.21437,"22":4.16336,"23":0.97032,"5.0-5.4":0.14668,"6.2-6.4":0.01128,_:"7.2-7.4 8.2 10.1","9.2":0.01128,"11.1-11.2":0.01128,"12.0":0.01128,"13.0":0.03385,"14.0":0.01128,"15.0":0.01128,"16.0":0.03385,"17.0":0.0677,"18.0":0.05641,"19.0":0.05641},I:{"0":0.02879,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"9":0.20218,"11":0.40435,_:"6 7 8 10 5.5"},K:{"0":0.10418,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.22573},Q:{"13.1":0.08103},O:{"0":0.29519},H:{"0":0},L:{"0":27.19782}};
      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 ee2bf26bd77375..d94973b3220416 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00427,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02563,"74":0,"75":0,"76":0,"77":0,"78":0.00427,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00854,"103":0,"104":0,"105":0.00427,"106":0.00854,"107":0,"108":0.00427,"109":0,"110":0.00427,"111":0,"112":0.00427,"113":0.00854,"114":0.00427,"115":0.06834,"116":0.0299,"117":0.36731,"118":0.05979,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00427,"35":0,"36":0,"37":0,"38":0.00427,"39":0,"40":0,"41":0.00427,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00427,"50":0,"51":0,"52":0,"53":0.00854,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00427,"66":0,"67":0,"68":0.00427,"69":0.00427,"70":0,"71":0,"72":0,"73":0.00427,"74":0,"75":0.00854,"76":0.01281,"77":0,"78":0.00427,"79":0.12813,"80":0,"81":0.00854,"83":0,"84":0,"85":0.00854,"86":0.00854,"87":0.02563,"88":0.01281,"89":0,"90":0.00427,"91":0.02563,"92":0.00427,"93":0.03844,"94":0.00427,"95":0,"96":0.00427,"97":0.00854,"98":0,"99":0.02563,"100":0,"101":0.00427,"102":0.02563,"103":0.06407,"104":0.01281,"105":0.00854,"106":0.02136,"107":0.00427,"108":0.96952,"109":0.63638,"110":0.00427,"111":0.01708,"112":0.21782,"113":0.0299,"114":0.09823,"115":0.19647,"116":7.7177,"117":2.21665,"118":0.00427,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.00427,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00427,"70":0,"71":0.00854,"72":0.01281,"73":0,"74":0,"75":0,"76":0,"77":0.01281,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00427,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02136,"96":0,"97":0,"98":0,"99":0.00427,"100":0.11105,"101":0.3246,"102":0.36304,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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,"87":0.00427,"88":0,"89":0,"90":0,"91":0,"92":0.00854,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00427,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00427,"108":0.00427,"109":0.01281,"110":0.00854,"111":0.00427,"112":0.00427,"113":0.00854,"114":0.0299,"115":0.04271,"116":0.91399,"117":0.80722},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00427,"14":0.00427,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00427,"6.1":0,"7.1":0,"9.1":0.00427,"10.1":0,"11.1":0,"12.1":0.00427,"13.1":0.00854,"14.1":0.01281,"15.1":0.00427,"15.2-15.3":0.00427,"15.4":0.00427,"15.5":0.00427,"15.6":0.04698,"16.0":0.00854,"16.1":0.02563,"16.2":0.01708,"16.3":0.04698,"16.4":0.01281,"16.5":0.05125,"16.6":0.2648,"17.0":0.0299,"17.1":0},G:{"8":0.00336,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00336,"6.0-6.1":0.04531,"7.0-7.1":0.02182,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07217,"10.0-10.2":0,"10.3":0.4414,"11.0-11.2":0.00671,"11.3-11.4":0.00336,"12.0-12.1":0.00671,"12.2-12.5":0.17958,"13.0-13.1":0.00336,"13.2":0.00336,"13.3":0.02182,"13.4-13.7":0.04028,"14.0-14.4":0.36419,"14.5-14.8":0.14433,"15.0-15.1":0.07217,"15.2-15.3":0.04364,"15.4":0.07217,"15.5":0.28699,"15.6-15.7":1.61118,"16.0":0.54881,"16.1":0.7116,"16.2":0.32224,"16.3":0.74181,"16.4":0.10406,"16.5":0.58237,"16.6":8.67854,"17.0":1.32083,"17.1":0},P:{"4":0.22913,"20":0.0729,"21":0.23954,"22":2.41624,"5.0-5.4":0.02083,"6.2-6.4":0,"7.2-7.4":0.13539,"8.2":0,"9.2":0.02083,"10.1":0,"11.1-11.2":0.05207,"12.0":0.01041,"13.0":0.04166,"14.0":0.01041,"15.0":0.01041,"16.0":0.05207,"17.0":0.04166,"18.0":0.03124,"19.0":0.10415},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0675,"4.4":0,"4.4.3-4.4.4":0.25876},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01281,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.70294},R:{_:"0"},M:{"0":0.10885},Q:{"13.1":0},O:{"0":0.10885},H:{"0":0.31458}};
      +module.exports={C:{"52":0.00869,"54":0.00435,"73":0.07388,"78":0.00869,"94":0.00435,"102":0.00869,"105":0.00435,"106":0.00435,"108":0.00869,"111":0.00435,"112":0.00435,"113":0.00869,"114":0.00435,"115":0.13038,"116":0.04346,"117":0.07823,"118":0.79097,"119":0.19122,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 103 104 107 109 110 120 121 122 3.5 3.6"},D:{"33":0.00869,"38":0.00869,"41":0.00869,"43":0.00869,"47":0.00435,"49":0.01304,"53":0.01738,"55":0.00435,"56":0.00435,"65":0.00435,"68":0.01304,"69":0.00869,"70":0.00435,"73":0.02173,"74":0.00869,"75":0.00869,"76":0.02173,"77":0.00435,"79":0.34768,"81":0.01738,"83":0.00435,"84":0.00435,"85":0.01304,"86":0.02173,"87":0.04781,"88":0.04346,"89":0.00435,"90":0.00435,"91":0.17819,"92":0.00435,"93":0.09996,"94":0.00869,"95":0.00435,"96":0.02173,"97":0.02173,"98":0.00869,"99":0.03042,"100":0.00435,"101":0.00435,"102":0.02608,"103":0.14342,"104":0.00869,"105":0.05215,"106":0.02608,"107":0.06084,"108":2.9379,"109":1.42549,"110":0.03477,"111":0.02173,"112":0.20426,"113":0.04346,"114":0.1608,"115":0.10865,"116":1.03869,"117":11.09968,"118":11.54298,"119":0.01304,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 42 44 45 46 48 50 51 52 54 57 58 59 60 61 62 63 64 66 67 71 72 78 80 120 121 122"},F:{"28":0.00435,"46":0.00435,"79":0.00435,"86":0.01304,"90":0.00435,"93":0.00435,"95":0.03911,"99":0.00435,"100":0.00435,"101":0.01738,"102":1.80359,"103":0.27814,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 87 88 89 91 92 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00435,"18":0.00869,"87":0.00435,"92":0.01738,"100":0.00435,"105":0.00435,"107":0.00435,"108":0.00435,"109":0.04346,"110":0.00869,"111":0.00435,"112":0.00869,"113":0.01304,"114":0.02173,"115":0.04346,"116":0.07388,"117":2.47287,"118":2.59022,"119":0.00435,_:"12 14 15 16 17 79 80 81 83 84 85 86 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 106"},E:{"13":0.00435,"14":0.01304,"15":0.00435,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 12.1 15.1 17.2","5.1":0.00435,"9.1":0.00435,"13.1":0.03042,"14.1":0.02173,"15.2-15.3":0.00435,"15.4":0.00869,"15.5":0.01304,"15.6":0.113,"16.0":0.01738,"16.1":0.03911,"16.2":0.03042,"16.3":0.12169,"16.4":0.03477,"16.5":0.113,"16.6":0.57802,"17.0":0.36506,"17.1":0.02173},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00115,"5.0-5.1":0.00115,"6.0-6.1":0.00344,"7.0-7.1":0.00802,"8.1-8.4":0.00115,"9.0-9.2":0.00802,"9.3":0.0275,"10.0-10.2":0.00115,"10.3":0.0401,"11.0-11.2":0.03666,"11.3-11.4":0.0126,"12.0-12.1":0.01031,"12.2-12.5":0.18217,"13.0-13.1":0.00573,"13.2":0.03093,"13.3":0.01146,"13.4-13.7":0.03666,"14.0-14.4":0.10082,"14.5-14.8":0.16269,"15.0-15.1":0.06416,"15.2-15.3":0.07332,"15.4":0.08134,"15.5":0.11572,"15.6-15.7":0.80085,"16.0":0.29559,"16.1":0.56598,"16.2":0.27611,"16.3":0.51213,"16.4":0.10999,"16.5":0.2933,"16.6-16.7":5.49365,"17.0":1.95686,"17.1":0.11801,"17.2":0.00344},P:{"4":0.26635,"20":0.06146,"21":0.1639,"22":1.83368,"23":0.37903,"5.0-5.4":0.04098,_:"6.2-6.4 10.1","7.2-7.4":0.12293,"8.2":0.01024,"9.2":0.01024,"11.1-11.2":0.05122,"12.0":0.01024,"13.0":0.03073,"14.0":0.01024,"15.0":0.01024,"16.0":0.04098,"17.0":0.04098,"18.0":0.04098,"19.0":0.08195},I:{"0":0.04501,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"11":0.01304,_:"6 7 8 9 10 5.5"},K:{"0":0.28275,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.15834},Q:{_:"13.1"},O:{"0":0.05655},H:{"0":0},L:{"0":43.94811}};
      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 9e5aa0bfb36fb0..711c2dbab9940c 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.03433,"49":0,"50":0,"51":0,"52":0.01716,"53":0,"54":0,"55":0.00429,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00429,"69":0,"70":0,"71":0,"72":0.00429,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01287,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00429,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00429,"100":0,"101":0,"102":0.03433,"103":0.00429,"104":0,"105":0.00429,"106":0.00429,"107":0.02575,"108":0.00858,"109":0.00429,"110":0.00429,"111":0.03433,"112":0.00858,"113":0.01716,"114":0.00858,"115":0.25746,"116":0.07724,"117":1.29159,"118":0.12873,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00858,"42":0,"43":0.00429,"44":0.00429,"45":0,"46":0.00429,"47":0.00429,"48":0,"49":0.01716,"50":0,"51":0.00429,"52":0,"53":0.00429,"54":0,"55":0,"56":0.00429,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00429,"67":0,"68":0,"69":0,"70":0.00429,"71":0,"72":0,"73":0,"74":0,"75":0.00429,"76":0.00429,"77":0.00858,"78":0,"79":0.06437,"80":0.00429,"81":0.02575,"83":0,"84":0.00429,"85":0.00429,"86":0.00429,"87":0.02146,"88":0.00429,"89":0.00429,"90":0.00429,"91":0.00429,"92":0.00429,"93":0.00429,"94":0.00429,"95":0.00858,"96":0.00429,"97":0.00429,"98":0.00429,"99":0.01287,"100":0.00858,"101":0.00429,"102":0.00429,"103":0.02146,"104":0.00429,"105":0.01287,"106":0.03862,"107":0.01287,"108":0.01287,"109":0.86249,"110":0.00858,"111":0.02146,"112":0.04291,"113":0.02575,"114":0.09011,"115":0.17164,"116":8.30738,"117":2.65184,"118":0.00429,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00429,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00858,"47":0,"48":0,"49":0,"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.00429,"70":0.00429,"71":0,"72":0.01716,"73":0.00429,"74":0,"75":0,"76":0,"77":0.03433,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00429,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00429,"93":0,"94":0.00429,"95":0.03433,"96":0,"97":0,"98":0,"99":0.00429,"100":0.09011,"101":0.32183,"102":0.3819,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00429,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00429,"108":0.00429,"109":0.03433,"110":0.00429,"111":0,"112":0.00429,"113":0.00858,"114":0.01287,"115":0.03433,"116":0.75093,"117":0.59216},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00429,"10":0,"11":0,"12":0,"13":0.00429,"14":0.01287,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01716,"14.1":0.03004,"15.1":0.02146,"15.2-15.3":0.00429,"15.4":0.00858,"15.5":0.01287,"15.6":0.07724,"16.0":0.02575,"16.1":0.02146,"16.2":0.08153,"16.3":0.0472,"16.4":0.01287,"16.5":0.05578,"16.6":0.39477,"17.0":0.01716,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00802,"8.1-8.4":0.01283,"9.0-9.2":0,"9.3":0.08177,"10.0-10.2":0,"10.3":0.02886,"11.0-11.2":0.02726,"11.3-11.4":0.00481,"12.0-12.1":0.02726,"12.2-12.5":0.1972,"13.0-13.1":0,"13.2":0.0016,"13.3":0.00641,"13.4-13.7":0.03046,"14.0-14.4":0.06253,"14.5-14.8":0.19399,"15.0-15.1":0.06734,"15.2-15.3":0.05611,"15.4":0.05932,"15.5":0.13147,"15.6-15.7":0.88339,"16.0":0.42646,"16.1":0.91385,"16.2":0.48097,"16.3":0.89461,"16.4":0.18277,"16.5":0.6397,"16.6":9.40945,"17.0":1.06776,"17.1":0.00321},P:{"4":0.1846,"20":0.0923,"21":0.22563,"22":3.84591,"5.0-5.4":0.02051,"6.2-6.4":0.01026,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01026,"11.1-11.2":0.01026,"12.0":0,"13.0":0.01026,"14.0":0.02051,"15.0":0.01026,"16.0":0.03077,"17.0":0.03077,"18.0":0.03077,"19.0":0.05128},I:{"0":0,"3":0,"4":0.013,"2.1":0,"2.2":0.0065,"2.3":0.00975,"4.1":0.02275,"4.2-4.3":0.02275,"4.4":0,"4.4.3-4.4.4":0.091},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01287,"9":0.00429,"10":0.00429,"11":0.03862,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00571},N:{"10":0,"11":0},L:{"0":57.5626},R:{_:"0"},M:{"0":0.50239},Q:{"13.1":0},O:{"0":0.07993},H:{"0":0.5513}};
      +module.exports={C:{"48":0.16225,"52":0.03155,"53":0.00451,"57":0.00451,"68":0.00451,"72":0.00901,"78":0.02254,"83":0.00451,"88":0.00901,"89":0.00451,"91":0.00451,"94":0.00451,"98":0.00451,"99":0.00451,"101":0.00451,"102":0.02254,"103":0.00451,"104":0.00451,"105":0.00901,"106":0.00901,"107":0.05408,"108":0.02704,"109":0.00901,"110":0.00451,"111":0.02254,"112":0.01803,"113":0.02704,"114":0.00901,"115":0.58591,"116":0.02704,"117":0.09915,"118":2.74026,"119":0.49577,"120":0.00451,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 56 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 90 92 93 95 96 97 100 121 122 3.5 3.6"},D:{"41":0.01803,"43":0.00451,"44":0.00451,"47":0.00451,"49":0.05859,"51":0.00451,"53":0.01352,"56":0.00451,"59":0.00451,"65":0.00451,"66":0.00451,"69":0.00451,"70":0.00451,"73":0.00451,"75":0.01352,"76":0.00901,"77":0.02704,"78":0.00451,"79":0.21634,"80":0.00451,"81":0.0631,"83":0.00451,"84":0.01352,"85":0.01352,"86":0.00901,"87":0.04507,"88":0.00901,"89":0.01352,"90":0.00901,"91":0.00901,"92":0.00451,"93":0.00901,"94":0.00901,"95":0.01352,"96":0.00901,"97":0.02254,"98":0.00901,"99":0.02254,"100":0.01352,"101":0.01803,"102":0.00901,"103":0.04056,"104":0.00451,"105":0.01803,"106":0.05408,"107":0.01803,"108":0.03606,"109":1.95604,"110":0.03606,"111":0.04056,"112":0.04507,"113":0.03155,"114":0.10366,"115":0.07662,"116":0.89689,"117":13.2641,"118":14.26466,"119":0.00901,"120":0.00451,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 45 46 48 50 52 54 55 57 58 60 61 62 63 64 67 68 71 72 74 121 122"},F:{"28":0.00901,"36":0.00451,"46":0.02704,"85":0.00451,"86":0.00451,"93":0.00901,"94":0.00451,"95":0.07211,"100":0.00451,"101":0.01352,"102":1.71266,"103":0.47324,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 88 89 90 91 92 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00451,"18":0.00451,"86":0.00451,"92":0.00451,"105":0.00451,"108":0.00451,"109":0.06761,"110":0.01352,"112":0.00451,"113":0.01352,"114":0.02254,"115":0.01803,"116":0.04958,"117":1.59097,"118":1.68111,"119":0.00451,_:"12 13 14 15 16 79 80 81 83 84 85 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 107 111"},E:{"9":0.00451,"14":0.01803,"15":0.00451,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.10366,"12.1":0.00451,"13.1":0.05408,"14.1":0.07211,"15.1":0.01352,"15.2-15.3":0.00901,"15.4":0.01803,"15.5":0.04056,"15.6":0.1938,"16.0":0.07662,"16.1":0.04056,"16.2":0.02704,"16.3":0.08113,"16.4":0.02704,"16.5":0.07211,"16.6":0.59492,"17.0":0.23436,"17.1":0.01352},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00099,"5.0-5.1":0.00099,"6.0-6.1":0.00296,"7.0-7.1":0.00692,"8.1-8.4":0.00099,"9.0-9.2":0.00692,"9.3":0.02372,"10.0-10.2":0.00099,"10.3":0.03459,"11.0-11.2":0.03162,"11.3-11.4":0.01087,"12.0-12.1":0.00889,"12.2-12.5":0.15712,"13.0-13.1":0.00494,"13.2":0.02668,"13.3":0.00988,"13.4-13.7":0.03162,"14.0-14.4":0.08696,"14.5-14.8":0.14032,"15.0-15.1":0.05534,"15.2-15.3":0.06324,"15.4":0.07016,"15.5":0.09981,"15.6-15.7":0.69075,"16.0":0.25495,"16.1":0.48817,"16.2":0.23815,"16.3":0.44172,"16.4":0.09487,"16.5":0.25298,"16.6-16.7":4.73837,"17.0":1.68783,"17.1":0.10178,"17.2":0.00296},P:{"4":0.22659,"20":0.0824,"21":0.13389,"22":3.08981,"23":0.57677,"5.0-5.4":0.0309,_:"6.2-6.4 8.2 9.2 12.0","7.2-7.4":0.0103,"10.1":0.0103,"11.1-11.2":0.0206,"13.0":0.0309,"14.0":0.0206,"15.0":0.0103,"16.0":0.0309,"17.0":0.0206,"18.0":0.0309,"19.0":0.0412},I:{"0":0.06558,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"8":0.00901,"9":0.00451,"10":0.00451,"11":0.06761,_:"6 7 5.5"},K:{"0":0.52184,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.39},Q:{_:"13.1"},O:{"0":0.09887},H:{"0":0},L:{"0":40.38283}};
      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 894db5bebca84e..152605c6ce2dff 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00123,"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.00123,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.0049,"114":0,"115":0.00245,"116":0.00858,"117":0.02083,"118":0.00245,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00123,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00123,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00123,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00368,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00123,"57":0,"58":0.00123,"59":0,"60":0.00123,"61":0,"62":0,"63":0,"64":0.0049,"65":0,"66":0,"67":0,"68":0,"69":0.00123,"70":0.00245,"71":0,"72":0,"73":0,"74":0.00245,"75":0.0049,"76":0.00368,"77":0,"78":0.00123,"79":0.00123,"80":0.00123,"81":0.00613,"83":0.00123,"84":0.00123,"85":0,"86":0.00123,"87":0.00368,"88":0.00368,"89":0,"90":0.00368,"91":0.00245,"92":0.00245,"93":0.02205,"94":0.00245,"95":0.00123,"96":0,"97":0.00123,"98":0,"99":0,"100":0.00123,"101":0.00245,"102":0.00123,"103":0.00613,"104":0,"105":0.0049,"106":0.00858,"107":0.00123,"108":0.00245,"109":0.05268,"110":0.00123,"111":0.00123,"112":0.00613,"113":0.0049,"114":0.0147,"115":0.0245,"116":0.26828,"117":0.06615,"118":0.00368,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00123,"68":0,"69":0.00123,"70":0.00123,"71":0.00368,"72":0.0098,"73":0.00245,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00123,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00245,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0147,"102":0.0196,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00245,"13":0,"14":0.00123,"15":0.00123,"16":0,"17":0,"18":0.00123,"79":0,"80":0,"81":0,"83":0,"84":0.00123,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00123,"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.01348,"107":0,"108":0,"109":0.00735,"110":0,"111":0,"112":0,"113":0.00123,"114":0.00123,"115":0.0049,"116":0.08453,"117":0.0588},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00123,"12":0,"13":0.00123,"14":0.00123,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00123,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00123,"14.1":0.00368,"15.1":0.00123,"15.2-15.3":0,"15.4":0,"15.5":0.00245,"15.6":0.0049,"16.0":0.00368,"16.1":0,"16.2":0,"16.3":0.00368,"16.4":0.00123,"16.5":0.00245,"16.6":0.00858,"17.0":0.00123,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00438,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12703,"10.0-10.2":0,"10.3":0.06461,"11.0-11.2":0.00219,"11.3-11.4":0.00986,"12.0-12.1":0.27159,"12.2-12.5":1.58682,"13.0-13.1":0.0898,"13.2":0.01533,"13.3":0.09308,"13.4-13.7":0.5158,"14.0-14.4":0.93413,"14.5-14.8":0.81586,"15.0-15.1":0.42052,"15.2-15.3":0.36686,"15.4":0.16865,"15.5":0.32087,"15.6-15.7":1.93287,"16.0":0.46323,"16.1":0.29349,"16.2":0.25626,"16.3":0.50594,"16.4":0.15222,"16.5":0.38329,"16.6":0.93742,"17.0":0.18836,"17.1":0.00219},P:{"4":0.3623,"20":0.16562,"21":0.21738,"22":0.62109,"5.0-5.4":0.05176,"6.2-6.4":0.03105,"7.2-7.4":0.19668,"8.2":0.0207,"9.2":0.26914,"10.1":0,"11.1-11.2":0.31055,"12.0":0.01035,"13.0":0.16562,"14.0":0.08281,"15.0":0.01035,"16.0":0.22773,"17.0":0.06211,"18.0":0.12422,"19.0":0.12422},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00177,"4.2-4.3":0.01312,"4.4":0,"4.4.3-4.4.4":0.09963},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00123,"5.5":0},S:{"2.5":0.00878,_:"3.0-3.1"},J:{"7":0,"10":0.02633},N:{"10":0,"11":0},L:{"0":83.73843},R:{_:"0"},M:{"0":0.1404},Q:{"13.1":0},O:{"0":0.22815},H:{"0":0.29077}};
      +module.exports={C:{"77":0.00775,"78":0.00646,"87":0.00129,"115":0.04131,"117":0.00516,"118":0.18978,"119":0.04389,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"11":0.00516,"36":0.00129,"38":0.00129,"40":0.00129,"42":0.00129,"43":0.00258,"49":0.00646,"50":0.00129,"56":0.00258,"58":0.00129,"61":0.00129,"63":0.00129,"64":0.00646,"65":0.00258,"66":0.00129,"68":0.00516,"69":0.01291,"70":0.00775,"71":0.00129,"72":0.00129,"74":0.00775,"75":0.0142,"76":0.02969,"77":0.00258,"78":0.00129,"79":0.00646,"80":0.00516,"81":0.04906,"83":0.00258,"84":0.01033,"86":0.00646,"87":0.0142,"88":0.01937,"90":0.0142,"91":0.0142,"92":0.03098,"93":0.12523,"94":0.00904,"95":0.01549,"96":0.00129,"97":0.00129,"98":0.00258,"99":0.00516,"100":0.00129,"101":0.00516,"102":0.01033,"103":0.16783,"104":0.00258,"105":0.01033,"106":0.01162,"107":0.00387,"108":0.02066,"109":0.28015,"110":0.01807,"111":0.00904,"112":0.01937,"113":0.01291,"114":0.06197,"115":0.04389,"116":0.10974,"117":1.2768,"118":2.06689,"119":0.00387,"120":0.00516,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 41 44 45 46 47 48 51 52 53 54 55 57 59 60 62 67 73 85 89 121 122"},F:{"95":0.00516,"97":0.00129,"102":0.19494,"103":0.10199,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00646,"13":0.00387,"14":0.00516,"15":0.00129,"16":0.00516,"17":0.00129,"18":0.01033,"80":0.00387,"84":0.00387,"85":0.00258,"88":0.00129,"89":0.00129,"90":0.00258,"92":0.0142,"100":0.00129,"101":0.00129,"103":0.00258,"107":0.00129,"108":0.00129,"109":0.05164,"110":0.00129,"111":0.00775,"112":0.01549,"113":0.00516,"114":0.01291,"115":0.00904,"116":0.03615,"117":0.45185,"118":0.99794,"119":0.00516,_:"79 81 83 86 87 91 93 94 95 96 97 98 99 102 104 105 106"},E:{"11":0.00129,"13":0.00646,"14":0.00646,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 6.1 9.1 10.1 17.2","5.1":0.00516,"7.1":0.00129,"11.1":0.00387,"12.1":0.00646,"13.1":0.02195,"14.1":0.03873,"15.1":0.00129,"15.2-15.3":0.00258,"15.4":0.00516,"15.5":0.00904,"15.6":0.02195,"16.0":0.00904,"16.1":0.00258,"16.2":0.00129,"16.3":0.00258,"16.4":0.00516,"16.5":0.01807,"16.6":0.06842,"17.0":0.25304,"17.1":0.00129},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00101,"5.0-5.1":0.00101,"6.0-6.1":0.00302,"7.0-7.1":0.00705,"8.1-8.4":0.00101,"9.0-9.2":0.00705,"9.3":0.02416,"10.0-10.2":0.00101,"10.3":0.03524,"11.0-11.2":0.03222,"11.3-11.4":0.01107,"12.0-12.1":0.00906,"12.2-12.5":0.16007,"13.0-13.1":0.00503,"13.2":0.02718,"13.3":0.01007,"13.4-13.7":0.03222,"14.0-14.4":0.08859,"14.5-14.8":0.14296,"15.0-15.1":0.05638,"15.2-15.3":0.06443,"15.4":0.07148,"15.5":0.10168,"15.6-15.7":0.70373,"16.0":0.25974,"16.1":0.49734,"16.2":0.24263,"16.3":0.45002,"16.4":0.09665,"16.5":0.25773,"16.6-16.7":4.82742,"17.0":1.71955,"17.1":0.1037,"17.2":0.00302},P:{"4":0.37277,"20":0.08284,"21":0.14497,"22":0.50738,"23":0.04142,"5.0-5.4":0.04142,"6.2-6.4":0.01035,"7.2-7.4":0.13461,"8.2":0.02071,"9.2":0.2071,_:"10.1","11.1-11.2":0.321,"12.0":0.01035,"13.0":0.12426,"14.0":0.10355,"15.0":0.01035,"16.0":0.24852,"17.0":0.03106,"18.0":0.13461,"19.0":0.08284},I:{"0":0.02599,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"11":0.01162,_:"6 7 8 9 10 5.5"},K:{"0":0.29611,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.1916},Q:{_:"13.1"},O:{"0":0.06967},H:{"0":0},L:{"0":79.09454}};
      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 ad343a7f3151aa..5b25bc03600a14 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02591,"53":0,"54":0,"55":0,"56":0,"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,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0037,"79":0,"80":0,"81":0,"82":0,"83":0.0037,"84":0,"85":0,"86":0,"87":0,"88":0.0037,"89":0.0037,"90":0,"91":0.0037,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0037,"99":0.0037,"100":0,"101":0,"102":0.02962,"103":0.0074,"104":0.0037,"105":0.0037,"106":0,"107":0,"108":0.0037,"109":0.0037,"110":0.0037,"111":0.0037,"112":0.0037,"113":0.0074,"114":0.02221,"115":0.98473,"116":0.07034,"117":1.15132,"118":0.10366,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01111,"35":0,"36":0,"37":0,"38":0.01481,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0037,"48":0,"49":0.01111,"50":0,"51":0,"52":0,"53":0.0074,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.0037,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.0037,"77":0,"78":0.0037,"79":0.13697,"80":0.01851,"81":0.0037,"83":0.0074,"84":0,"85":0.0037,"86":0,"87":0.02591,"88":0.0037,"89":0.0074,"90":0.0037,"91":0.0037,"92":0.0037,"93":0,"94":0.0037,"95":0.0074,"96":0.0037,"97":0.0037,"98":0,"99":0.01481,"100":0.0037,"101":0.0037,"102":0.0037,"103":0.01851,"104":0.01111,"105":0.0074,"106":0.01481,"107":0.0074,"108":0.01111,"109":0.75891,"110":0.0074,"111":0.0074,"112":0.01851,"113":0.01111,"114":0.05183,"115":0.11106,"116":5.38271,"117":1.4771,"118":0.0037,"119":0.0037,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0037,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0037,"47":0,"48":0,"49":0,"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.01111,"73":0.0037,"74":0,"75":0,"76":0,"77":0.02221,"78":0,"79":0.0037,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0037,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04813,"96":0,"97":0,"98":0,"99":0.0037,"100":0.04442,"101":0.28876,"102":0.29986,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.02962,"110":0.0037,"111":0,"112":0.05923,"113":0.0037,"114":0.01111,"115":0.02591,"116":0.61453,"117":0.42203},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0074,"15":0.0037,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0037,"10.1":0,"11.1":0,"12.1":0.0037,"13.1":0.01111,"14.1":0.01481,"15.1":0.0037,"15.2-15.3":0.0037,"15.4":0.0074,"15.5":0.0074,"15.6":0.04442,"16.0":0.0037,"16.1":0.01481,"16.2":0.01111,"16.3":0.02962,"16.4":0.01111,"16.5":0.04442,"16.6":0.22952,"17.0":0.02591,"17.1":0},G:{"8":0.00303,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00152,"6.0-6.1":0,"7.0-7.1":0.00455,"8.1-8.4":0,"9.0-9.2":0.0091,"9.3":0.02124,"10.0-10.2":0,"10.3":0.02428,"11.0-11.2":0.00607,"11.3-11.4":0.00455,"12.0-12.1":0.00455,"12.2-12.5":0.16691,"13.0-13.1":0.00303,"13.2":0,"13.3":0.08649,"13.4-13.7":0.02124,"14.0-14.4":0.05918,"14.5-14.8":0.16691,"15.0-15.1":0.04249,"15.2-15.3":0.05159,"15.4":0.14415,"15.5":0.09408,"15.6-15.7":1.0819,"16.0":0.51288,"16.1":0.66765,"16.2":0.30651,"16.3":0.58268,"16.4":0.1138,"16.5":0.42184,"16.6":8.77205,"17.0":1.57961,"17.1":0.00303},P:{"4":0.4336,"20":0.08259,"21":0.1755,"22":2.77708,"5.0-5.4":0.02065,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01032,"12.0":0,"13.0":0.01032,"14.0":0.01032,"15.0":0,"16.0":0.02065,"17.0":0.01032,"18.0":0.02065,"19.0":0.06194},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.05382,"2.3":0,"4.1":0.04613,"4.2-4.3":0.03075,"4.4":0,"4.4.3-4.4.4":0.12301},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0037,"9":0,"10":0,"11":0.01111,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.48935},R:{_:"0"},M:{"0":0.3086},Q:{"13.1":0},O:{"0":0.02519},H:{"0":0.41142}};
      +module.exports={C:{"43":0.00371,"48":0.00371,"52":0.0519,"61":0.00371,"65":0.00371,"66":0.00371,"68":0.00741,"72":0.00371,"76":0.01483,"77":0.00371,"78":0.01112,"83":0.00371,"84":0.00371,"88":0.00741,"89":0.01112,"91":0.01112,"94":0.00371,"95":0.00371,"97":0.00371,"98":0.00371,"99":0.00371,"101":0.00371,"102":0.01854,"103":0.01112,"104":0.00371,"105":0.01112,"106":0.00371,"107":0.00371,"108":0.00371,"109":0.00741,"110":0.00371,"111":0.00741,"112":0.00741,"113":0.01483,"114":0.01112,"115":1.68298,"116":0.20759,"117":0.11121,"118":2.68387,"119":0.55976,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 62 63 64 67 69 70 71 73 74 75 79 80 81 82 85 86 87 90 92 93 96 100 120 121 122 3.5 3.6"},D:{"26":0.00371,"34":0.02224,"38":0.03707,"47":0.00371,"49":0.02224,"53":0.01483,"58":0.00371,"68":0.00371,"74":0.00741,"76":0.00371,"78":0.00371,"79":0.41148,"80":0.05561,"81":0.00371,"83":0.01483,"84":0.00371,"85":0.00371,"86":0.00371,"87":0.07414,"88":0.00741,"89":0.00741,"90":0.00371,"91":0.00741,"92":0.00371,"93":0.00371,"94":0.00741,"95":0.01112,"96":0.00741,"97":0.00371,"98":0.00371,"99":0.01483,"100":0.01112,"101":0.00371,"102":0.01483,"103":0.04819,"104":0.01854,"105":0.01112,"106":0.01112,"107":0.01483,"108":0.02595,"109":1.97583,"110":0.01112,"111":0.02966,"112":0.03707,"113":0.01483,"114":0.05561,"115":0.06302,"116":0.75623,"117":9.23784,"118":9.46026,"119":0.01483,"120":0.00741,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 59 60 61 62 63 64 65 66 67 69 70 71 72 73 75 77 121 122"},F:{"28":0.00371,"36":0.00741,"40":0.00371,"46":0.01112,"79":0.00371,"85":0.00741,"86":0.00371,"94":0.00371,"95":0.12975,"99":0.00371,"101":0.05561,"102":1.4309,"103":0.42631,_:"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 87 88 89 90 91 92 93 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00371,"18":0.00371,"84":0.00371,"86":0.00371,"92":0.00371,"97":0.00371,"98":0.00371,"106":0.00371,"108":0.00371,"109":0.08155,"110":0.01112,"112":0.35958,"113":0.05561,"114":0.00741,"115":0.00741,"116":0.13716,"117":1.44202,"118":1.39013,"119":0.00741,_:"12 13 14 15 16 79 80 81 83 85 87 88 89 90 91 93 94 95 96 99 100 101 102 103 104 105 107 111"},E:{"13":0.00371,"14":0.01854,"15":0.00741,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.00741,"12.1":0.00741,"13.1":0.02595,"14.1":0.04448,"15.1":0.00741,"15.2-15.3":0.00741,"15.4":0.01483,"15.5":0.01854,"15.6":0.12604,"16.0":0.01483,"16.1":0.04078,"16.2":0.02966,"16.3":0.08526,"16.4":0.02966,"16.5":0.08526,"16.6":0.44113,"17.0":0.34846,"17.1":0.02595},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00106,"5.0-5.1":0.00106,"6.0-6.1":0.00317,"7.0-7.1":0.00739,"8.1-8.4":0.00106,"9.0-9.2":0.00739,"9.3":0.02534,"10.0-10.2":0.00106,"10.3":0.03696,"11.0-11.2":0.03379,"11.3-11.4":0.01162,"12.0-12.1":0.0095,"12.2-12.5":0.1679,"13.0-13.1":0.00528,"13.2":0.02851,"13.3":0.01056,"13.4-13.7":0.03379,"14.0-14.4":0.09292,"14.5-14.8":0.14995,"15.0-15.1":0.05913,"15.2-15.3":0.06758,"15.4":0.07497,"15.5":0.10665,"15.6-15.7":0.73812,"16.0":0.27244,"16.1":0.52165,"16.2":0.25449,"16.3":0.47202,"16.4":0.10137,"16.5":0.27033,"16.6-16.7":5.06335,"17.0":1.80359,"17.1":0.10876,"17.2":0.00317},P:{"4":0.51904,"20":0.06228,"21":0.12457,"22":2.28377,"23":0.49828,"5.0-5.4":0.02076,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0","13.0":0.01038,"14.0":0.01038,"16.0":0.02076,"17.0":0.01038,"18.0":0.02076,"19.0":0.06228},I:{"0":0.144,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.00043},A:{"8":0.00417,"11":0.02919,_:"6 7 9 10 5.5"},K:{"0":0.44051,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.30206},Q:{_:"13.1"},O:{"0":0.01888},H:{"0":0},L:{"0":49.1909}};
      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 200d1e3660c825..d25862809c3ac8 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02533,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00362,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00362,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00362,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00362,"100":0,"101":0,"102":0.00362,"103":0,"104":0,"105":0.00362,"106":0.00362,"107":0.00362,"108":0.00362,"109":0.00362,"110":0.00362,"111":0.00362,"112":0.00362,"113":0.01448,"114":0.00724,"115":0.12305,"116":0.05067,"117":0.72742,"118":0.06876,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00362,"69":0.00362,"70":0.00362,"71":0.00362,"72":0.00362,"73":0,"74":0.00362,"75":0.00362,"76":0,"77":0,"78":0.00362,"79":0.01086,"80":0.00724,"81":0.00724,"83":0.00362,"84":0.00362,"85":0.00362,"86":0.00362,"87":0.00724,"88":0.00724,"89":0.00724,"90":0.00724,"91":0.00362,"92":0.00362,"93":0.00362,"94":0.00362,"95":0.00362,"96":0.00362,"97":0.00362,"98":0.00362,"99":0.01448,"100":0.01086,"101":0.00362,"102":0.00724,"103":0.0181,"104":0.00724,"105":0.01086,"106":0.01086,"107":0.01448,"108":0.0181,"109":0.69847,"110":0.01086,"111":0.02895,"112":0.02533,"113":0.02533,"114":0.10133,"115":0.1339,"116":6.76391,"117":1.61769,"118":0.00362,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01086,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01086,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00724,"70":0.01086,"71":0.01448,"72":0.13028,"73":0.03257,"74":0,"75":0,"76":0,"77":0.01448,"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.01086,"96":0,"97":0,"98":0,"99":0,"100":0.01448,"101":0.06876,"102":0.06876,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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,"91":0,"92":0.00362,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00362,"109":0.01448,"110":0,"111":0,"112":0.00362,"113":0.00362,"114":0.01086,"115":0.0181,"116":0.61161,"117":0.50304},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00724,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01086,"6.1":0,"7.1":0,"9.1":0.01086,"10.1":0,"11.1":0,"12.1":0.00362,"13.1":0.01448,"14.1":0.02533,"15.1":0.00724,"15.2-15.3":0.00362,"15.4":0.00724,"15.5":0.00724,"15.6":0.03619,"16.0":0.00724,"16.1":0.0181,"16.2":0.01086,"16.3":0.02533,"16.4":0.01448,"16.5":0.03619,"16.6":0.10495,"17.0":0.00724,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00093,"5.0-5.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.0093,"10.0-10.2":0.00093,"10.3":0.00744,"11.0-11.2":0.00372,"11.3-11.4":0.00093,"12.0-12.1":0.00744,"12.2-12.5":0.14418,"13.0-13.1":0.00465,"13.2":0.00465,"13.3":0.0679,"13.4-13.7":0.02697,"14.0-14.4":0.1172,"14.5-14.8":0.1851,"15.0-15.1":0.0893,"15.2-15.3":0.10511,"15.4":0.16185,"15.5":0.21022,"15.6-15.7":1.06597,"16.0":0.5488,"16.1":0.62414,"16.2":0.36276,"16.3":0.69018,"16.4":0.22789,"16.5":0.54322,"16.6":3.67322,"17.0":0.3423,"17.1":0},P:{"4":0.09196,"20":0.0613,"21":0.13283,"22":1.06261,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05109,"8.2":0,"9.2":0.01022,"10.1":0,"11.1-11.2":0.02043,"12.0":0.01022,"13.0":0.02043,"14.0":0.02043,"15.0":0.01022,"16.0":0.03065,"17.0":0.04087,"18.0":0.04087,"19.0":0.0613},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04362},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02533,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.88824},R:{_:"0"},M:{"0":0.08933},Q:{"13.1":0},O:{"0":1.59525},H:{"0":0.92429}};
      +module.exports={C:{"36":0.07948,"45":0.00397,"52":0.00795,"56":0.00397,"68":0.00397,"72":0.00397,"78":0.00397,"86":0.00397,"88":0.00397,"91":0.00397,"99":0.00397,"100":0.00397,"101":0.00397,"102":0.00397,"103":0.00397,"104":0.00397,"105":0.00397,"106":0.00397,"107":0.00795,"108":0.01192,"109":0.00795,"110":0.03179,"111":0.00795,"112":0.00397,"113":0.03179,"114":0.0159,"115":0.32984,"116":0.01987,"117":0.07948,"118":1.94329,"119":0.35766,"120":0.00795,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 87 89 90 92 93 94 95 96 97 98 121 122 3.5 3.6"},D:{"25":0.00397,"49":0.00795,"57":0.02782,"63":0.00795,"67":0.01192,"69":0.00397,"70":0.00795,"71":0.00795,"72":0.00397,"73":0.00795,"74":0.05166,"75":0.00397,"76":0.01192,"77":0.00397,"78":0.00397,"79":0.03974,"80":0.13512,"81":0.01192,"83":0.00795,"84":0.00795,"85":0.01192,"86":0.01987,"87":0.03974,"88":0.00397,"89":0.07948,"90":0.02384,"91":0.00795,"92":0.03179,"93":0.00397,"94":0.00795,"95":0.00795,"96":0.03974,"97":0.00795,"98":0.00795,"99":0.01987,"100":0.02782,"101":0.00795,"102":0.0159,"103":0.04769,"104":0.01192,"105":0.02384,"106":0.02782,"107":0.03179,"108":0.04371,"109":2.15788,"110":0.03179,"111":0.05166,"112":0.05564,"113":0.03577,"114":0.13114,"115":0.12717,"116":0.71929,"117":11.56434,"118":13.87721,"119":0.0159,"120":0.00397,_:"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 58 59 60 61 62 64 65 66 68 121 122"},F:{"28":0.00795,"37":0.00397,"95":0.02782,"101":0.00397,"102":0.27818,"103":0.16293,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.05961,"13":0.00397,"14":0.00397,"15":0.00397,"16":0.00397,"17":0.00397,"18":0.0159,"92":0.00795,"100":0.00397,"106":0.00397,"107":0.00397,"108":0.00397,"109":0.02384,"110":0.00397,"111":0.00397,"112":0.00397,"113":0.00397,"114":0.0159,"115":0.01192,"116":0.03577,"117":1.62537,"118":1.85586,"119":0.00795,_:"79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"13":0.00397,"14":0.02384,"15":0.01192,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.02384,"9.1":0.00397,"12.1":0.00795,"13.1":0.03577,"14.1":0.06756,"15.1":0.01987,"15.2-15.3":0.01192,"15.4":0.0159,"15.5":0.03577,"15.6":0.1073,"16.0":0.02782,"16.1":0.05564,"16.2":0.03974,"16.3":0.0914,"16.4":0.03577,"16.5":0.07948,"16.6":0.37753,"17.0":0.19473,"17.1":0.0159},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00061,"5.0-5.1":0.00061,"6.0-6.1":0.00183,"7.0-7.1":0.00427,"8.1-8.4":0.00061,"9.0-9.2":0.00427,"9.3":0.01464,"10.0-10.2":0.00061,"10.3":0.02134,"11.0-11.2":0.01951,"11.3-11.4":0.00671,"12.0-12.1":0.00549,"12.2-12.5":0.09696,"13.0-13.1":0.00305,"13.2":0.01647,"13.3":0.0061,"13.4-13.7":0.01951,"14.0-14.4":0.05367,"14.5-14.8":0.0866,"15.0-15.1":0.03415,"15.2-15.3":0.03903,"15.4":0.0433,"15.5":0.06159,"15.6-15.7":0.42627,"16.0":0.15734,"16.1":0.30126,"16.2":0.14697,"16.3":0.27259,"16.4":0.05854,"16.5":0.15612,"16.6-16.7":2.92414,"17.0":1.04159,"17.1":0.06281,"17.2":0.00183},P:{"4":0.08161,"20":0.051,"21":0.09181,"22":0.91808,"23":0.13261,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.051,"9.2":0.0102,"11.1-11.2":0.0204,"12.0":0.0102,"13.0":0.0102,"14.0":0.0204,"15.0":0.0102,"16.0":0.0306,"17.0":0.0408,"18.0":0.0306,"19.0":0.051},I:{"0":0.02398,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"8":0.00422,"11":0.06334,_:"6 7 9 10 5.5"},K:{"0":0.82159,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.08436},Q:{_:"13.1"},O:{"0":1.5065},H:{"0":0.01},L:{"0":51.10517}};
      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 bd4c61fbcbd341..008582f12a7ece 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00351,"53":0.07024,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00702,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00351,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00702,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01405,"103":0.00351,"104":0,"105":0,"106":0.00351,"107":0.02458,"108":0.01756,"109":0,"110":0.00351,"111":0.00351,"112":0.00351,"113":0.01054,"114":0.00351,"115":0.04214,"116":0.04214,"117":0.53734,"118":0.04566,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00351,"39":0.00702,"40":0.00351,"41":0.00702,"42":0.00351,"43":0.00351,"44":0.00702,"45":0.00702,"46":0.00351,"47":0.00351,"48":0.00351,"49":0.01405,"50":0.00351,"51":0.00702,"52":0.00351,"53":0.00702,"54":0.00351,"55":0.00351,"56":0.00351,"57":0.00351,"58":0.00351,"59":0.00351,"60":0.00351,"61":0,"62":0,"63":0.00702,"64":0,"65":0.00351,"66":0,"67":0,"68":0,"69":0,"70":0.00351,"71":0,"72":0,"73":0,"74":0.22126,"75":0.0281,"76":0.00351,"77":0,"78":0,"79":0.01756,"80":0.00351,"81":0.09834,"83":0.00351,"84":0.00351,"85":0.00351,"86":0,"87":0.01405,"88":0.00351,"89":0.01405,"90":0.00351,"91":0.00702,"92":0.00351,"93":0.01054,"94":0.00351,"95":0,"96":0.00702,"97":0.00351,"98":0,"99":0.00351,"100":0.00351,"101":0.00351,"102":0.00702,"103":0.04214,"104":0.00702,"105":0.05268,"106":0.01054,"107":0.01054,"108":0.01405,"109":0.2037,"110":0.01054,"111":0.01405,"112":0.0281,"113":0.0281,"114":0.18614,"115":0.18614,"116":4.57614,"117":1.48558,"118":0.00351,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00351,"47":0,"48":0,"49":0,"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.01054,"73":0.00351,"74":0,"75":0,"76":0,"77":0.00702,"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.00702,"96":0,"97":0,"98":0,"99":0.00351,"100":0.03512,"101":0.08078,"102":0.13346,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00351,"109":0.01054,"110":0.00351,"111":0.00351,"112":0.00702,"113":0.00351,"114":0.02458,"115":0.03863,"116":0.80074,"117":0.6743},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00351,"14":0.04917,"15":0.00351,_:"0","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.00351,"13.1":0.03161,"14.1":0.07024,"15.1":0.01054,"15.2-15.3":0.01054,"15.4":0.02458,"15.5":0.02458,"15.6":0.17911,"16.0":0.01756,"16.1":0.03863,"16.2":0.06322,"16.3":0.16858,"16.4":0.03863,"16.5":0.10536,"16.6":0.75508,"17.0":0.03161,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.06376,"8.1-8.4":0.01875,"9.0-9.2":0,"9.3":0.12001,"10.0-10.2":0,"10.3":0.09376,"11.0-11.2":0.21377,"11.3-11.4":0.01875,"12.0-12.1":0.01125,"12.2-12.5":0.80256,"13.0-13.1":0,"13.2":0.015,"13.3":0.01875,"13.4-13.7":0.05625,"14.0-14.4":0.18001,"14.5-14.8":0.50254,"15.0-15.1":0.11251,"15.2-15.3":0.19127,"15.4":0.16126,"15.5":0.34503,"15.6-15.7":2.67772,"16.0":1.31636,"16.1":2.74522,"16.2":1.14759,"16.3":2.23893,"16.4":0.26252,"16.5":1.01633,"16.6":21.25296,"17.0":1.49637,"17.1":0},P:{"4":0.03119,"20":0.09357,"21":0.19753,"22":3.73232,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02079,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0104,"12.0":0,"13.0":0.02079,"14.0":0.02079,"15.0":0.0104,"16.0":0.04159,"17.0":0.03119,"18.0":0.03119,"19.0":0.07278},I:{"0":0,"3":0,"4":0.03475,"2.1":0,"2.2":0,"2.3":0.05792,"4.1":0.01158,"4.2-4.3":0.03475,"4.4":0,"4.4.3-4.4.4":0.2085},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00351,"9":0.06322,"10":0,"11":0.02107,"5.5":0},S:{"2.5":0.00649,_:"3.0-3.1"},J:{"7":0,"10":0.00649},N:{"10":0,"11":0},L:{"0":43.34356},R:{_:"0"},M:{"0":0.51255},Q:{"13.1":0},O:{"0":0.03244},H:{"0":0.2457}};
      +module.exports={C:{"48":0.00335,"52":0.0067,"53":0.00335,"67":0.00335,"78":0.02009,"81":0.00335,"85":0.00335,"87":0.0134,"88":0.00335,"91":0.00335,"102":0.0067,"104":0.00335,"106":0.00335,"107":0.02344,"108":0.00335,"109":0.0067,"110":0.00335,"111":0.00335,"112":0.00335,"113":0.0134,"114":0.00335,"115":0.12726,"116":0.0067,"117":0.06028,"118":1.14871,"119":0.20764,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 86 89 90 92 93 94 95 96 97 98 99 100 101 103 105 120 121 122 3.5 3.6"},D:{"17":0.00335,"36":0.00335,"38":0.00335,"39":0.01675,"40":0.01675,"41":0.01675,"42":0.01675,"43":0.01675,"44":0.01675,"45":0.01675,"46":0.01675,"47":0.01675,"48":0.01675,"49":0.03014,"50":0.01675,"51":0.01675,"52":0.01675,"53":0.02344,"54":0.01675,"55":0.01675,"56":0.01675,"57":0.02679,"58":0.03349,"59":0.01675,"60":0.01675,"63":0.01005,"65":0.0067,"66":0.00335,"67":0.00335,"70":0.00335,"74":0.07033,"75":0.01005,"76":0.01005,"78":0.00335,"79":0.04689,"80":0.0067,"81":0.21434,"83":0.01005,"84":0.0067,"85":0.0134,"86":0.0067,"87":0.03349,"88":0.02344,"89":0.02344,"90":0.00335,"91":0.01675,"92":0.01005,"93":0.03684,"94":0.00335,"95":0.00335,"96":0.0067,"97":0.0067,"98":0.0067,"99":0.0067,"100":0.0067,"101":0.00335,"102":0.0067,"103":0.12056,"104":0.01005,"105":0.01675,"106":0.02344,"107":0.02009,"108":0.01675,"109":0.51575,"110":0.04689,"111":0.02009,"112":0.03349,"113":0.04354,"114":0.28132,"115":0.16075,"116":1.1688,"117":9.32027,"118":8.07444,"119":0.07033,"120":0.0067,_:"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 37 61 62 64 68 69 71 72 73 77 121 122"},F:{"28":0.00335,"46":0.01005,"89":0.00335,"95":0.01675,"101":0.01005,"102":0.68989,"103":0.11052,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00335,"92":0.00335,"106":0.00335,"107":0.00335,"108":0.01005,"109":0.02679,"110":0.00335,"111":0.0067,"112":0.02009,"113":0.0067,"114":0.0134,"115":0.02009,"116":0.12056,"117":2.07303,"118":1.8453,"119":0.00335,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105"},E:{"8":0.00335,"9":0.00335,"13":0.0134,"14":0.11387,"15":0.0134,_:"0 4 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.00335,"11.1":0.00335,"12.1":0.01675,"13.1":0.09712,"14.1":0.18754,"15.1":0.03014,"15.2-15.3":0.03014,"15.4":0.06698,"15.5":0.08707,"15.6":0.4923,"16.0":0.04689,"16.1":0.10717,"16.2":0.1641,"16.3":0.42867,"16.4":0.09712,"16.5":0.26122,"16.6":1.852,"17.0":0.45881,"17.1":0.02344},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00273,"5.0-5.1":0.00273,"6.0-6.1":0.0082,"7.0-7.1":0.01913,"8.1-8.4":0.00273,"9.0-9.2":0.01913,"9.3":0.06557,"10.0-10.2":0.00273,"10.3":0.09563,"11.0-11.2":0.08743,"11.3-11.4":0.03005,"12.0-12.1":0.02459,"12.2-12.5":0.43442,"13.0-13.1":0.01366,"13.2":0.07377,"13.3":0.02732,"13.4-13.7":0.08743,"14.0-14.4":0.24044,"14.5-14.8":0.38798,"15.0-15.1":0.153,"15.2-15.3":0.17486,"15.4":0.19399,"15.5":0.27596,"15.6-15.7":1.90983,"16.0":0.70492,"16.1":1.34972,"16.2":0.65847,"16.3":1.22131,"16.4":0.26229,"16.5":0.69945,"16.6-16.7":13.10105,"17.0":4.66665,"17.1":0.28142,"17.2":0.0082},P:{"4":0.03146,"20":0.08389,"21":0.13633,"22":3.06216,"23":0.67116,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.02097,"11.1-11.2":0.02097,"13.0":0.02097,"14.0":0.02097,"15.0":0.01049,"16.0":0.03146,"17.0":0.02097,"18.0":0.03146,"19.0":0.07341},I:{"0":0.12572,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00038},A:{"8":0.0034,"9":0.16308,"11":0.06795,_:"6 7 10 5.5"},K:{"0":0.21274,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.51878},Q:{_:"13.1"},O:{"0":0.03326},H:{"0":0.04},L:{"0":34.40339}};
      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 ef28b2cf30da26..5652d348b3dbe3 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.0036,"25":0.0036,"26":0.01079,"27":0.0036,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0036,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00719,"53":0,"54":0,"55":0,"56":0.00719,"57":0,"58":0,"59":0.00719,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0036,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0036,"79":0.0863,"80":0.00719,"81":0,"82":0,"83":0.0036,"84":0.0036,"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.00719,"103":0,"104":0,"105":0.0036,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.0036,"113":0.01079,"114":0.0036,"115":0.06113,"116":0.02877,"117":0.37039,"118":0.02877,"119":0,"120":0,"3.5":0,"3.6":0.0036},D:{"4":0.0036,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01798,"32":0.0036,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0036,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0036,"50":0,"51":0,"52":0.01798,"53":0,"54":0,"55":0,"56":0,"57":0.00719,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0036,"66":0.03236,"67":0,"68":0.00719,"69":0.0036,"70":0.0036,"71":0.0036,"72":0.0036,"73":0.00719,"74":0.00719,"75":0.0036,"76":0.0036,"77":0.00719,"78":0.00719,"79":0.03596,"80":0.04675,"81":0.01079,"83":0.00719,"84":0.00719,"85":0.00719,"86":0.00719,"87":0.01438,"88":0.0036,"89":0.01798,"90":0.01438,"91":0.0036,"92":0.0036,"93":0,"94":0.0036,"95":0.0036,"96":0.0036,"97":0.01079,"98":0.0036,"99":0.0036,"100":0.0036,"101":0.01438,"102":0.01079,"103":0.02158,"104":0.00719,"105":0.01438,"106":0.01798,"107":0.01438,"108":0.02517,"109":0.48546,"110":0.0036,"111":0.01438,"112":0.02158,"113":0.01798,"114":0.09709,"115":0.19418,"116":6.36492,"117":1.76564,"118":0.0036,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0036,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0036,"47":0,"48":0,"49":0,"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.01079,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0036,"73":0,"74":0.01438,"75":0,"76":0,"77":0.01798,"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.01079,"96":0,"97":0,"98":0,"99":0.0036,"100":0.02158,"101":0.10069,"102":0.14744,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00719,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.0036,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01798,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.0036,"109":0.01798,"110":0.0036,"111":0,"112":0.05034,"113":0.0036,"114":0.03596,"115":0.03236,"116":0.55738,"117":0.39916},E:{"4":0,"5":0,"6":0,"7":0.0036,"8":0.05754,"9":0,"10":0,"11":0,"12":0,"13":0.0036,"14":0.00719,"15":0.0036,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.0036,"7.1":0,"9.1":0.01438,"10.1":0,"11.1":0.00719,"12.1":0,"13.1":0.00719,"14.1":0.02877,"15.1":0.0036,"15.2-15.3":0.0036,"15.4":0.0036,"15.5":0.01079,"15.6":0.04315,"16.0":0.00719,"16.1":0.01079,"16.2":0.01079,"16.3":0.03236,"16.4":0.01079,"16.5":0.02517,"16.6":0.25891,"17.0":0.02158,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00235,"6.0-6.1":0,"7.0-7.1":0.01176,"8.1-8.4":0.00706,"9.0-9.2":0,"9.3":0.05175,"10.0-10.2":0.0047,"10.3":0.06586,"11.0-11.2":0.02117,"11.3-11.4":0.01647,"12.0-12.1":0.03058,"12.2-12.5":0.25404,"13.0-13.1":0.00941,"13.2":0.00941,"13.3":0.80212,"13.4-13.7":0.04469,"14.0-14.4":0.17877,"14.5-14.8":0.45634,"15.0-15.1":0.06586,"15.2-15.3":0.09644,"15.4":0.11761,"15.5":0.22346,"15.6-15.7":1.55013,"16.0":0.71508,"16.1":1.15025,"16.2":0.5716,"16.3":1.07498,"16.4":0.15054,"16.5":0.58571,"16.6":13.5748,"17.0":1.40194,"17.1":0.00235},P:{"4":0.07153,"20":0.14306,"21":0.29634,"22":5.12967,"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,"11.1-11.2":0.05109,"12.0":0.01022,"13.0":0.05109,"14.0":0.03066,"15.0":0.01022,"16.0":0.04087,"17.0":0.04087,"18.0":0.07153,"19.0":0.10218},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04421,"4.4":0,"4.4.3-4.4.4":0.05894},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0036,"9":0.0036,"10":0.0036,"11":0.07552,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.95709},R:{_:"0"},M:{"0":0.18572},Q:{"13.1":0},O:{"0":0.03202},H:{"0":0.27283}};
      +module.exports={C:{"24":0.00289,"25":0.00579,"26":0.02025,"27":0.00289,"28":0.00289,"31":0.00289,"36":0.00289,"52":0.00868,"56":0.01157,"59":0.01447,"66":0.00289,"68":0.00289,"72":0.00289,"78":0.00289,"80":0.01157,"89":0.00289,"98":0.00289,"102":0.00289,"104":0.00289,"105":0.00579,"106":0.00289,"108":0.00289,"109":0.00289,"110":0.00579,"111":0.00579,"112":0.00289,"113":0.01447,"114":0.00289,"115":0.15333,"116":0.00579,"117":0.03761,"118":0.68564,"119":0.13597,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 29 30 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 99 100 101 103 107 120 121 122 3.5 3.6"},D:{"31":0.02604,"32":0.00579,"35":0.00289,"38":0.02025,"40":0.00289,"41":0.00289,"49":0.00579,"51":0.00289,"52":0.02604,"55":0.00289,"57":0.00289,"65":0.00579,"66":0.06075,"68":0.01157,"69":0.00868,"70":0.00579,"71":0.00579,"72":0.00868,"73":0.00579,"74":0.01736,"75":0.00868,"76":0.00868,"77":0.00579,"78":0.00868,"79":0.05207,"80":0.02314,"81":0.02314,"83":0.01736,"84":0.00868,"85":0.01157,"86":0.01736,"87":0.02314,"88":0.01447,"89":0.01157,"90":0.01447,"91":0.00868,"92":0.00289,"93":0.00579,"94":0.00579,"95":0.00868,"96":0.00579,"97":0.00579,"98":0.01157,"99":0.00579,"100":0.00579,"101":0.00289,"102":0.01736,"103":0.03472,"104":0.01157,"105":0.02025,"106":0.02604,"107":0.02604,"108":0.04918,"109":1.11381,"110":0.01447,"111":0.02604,"112":0.0434,"113":0.02893,"114":0.1649,"115":0.07522,"116":0.78979,"117":8.48228,"118":9.9201,"119":0.01447,"120":0.00289,_:"4 5 6 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 42 43 44 45 46 47 48 50 53 54 56 58 59 60 61 62 63 64 67 121 122"},F:{"28":0.00289,"46":0.00289,"54":0.00289,"55":0.00289,"78":0.00289,"85":0.00289,"94":0.00579,"95":0.03472,"99":0.00868,"101":0.00579,"102":0.61332,"103":0.17069,_:"9 11 12 15 16 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 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 88 89 90 91 92 93 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00289},B:{"17":0.00579,"18":0.00579,"80":0.00289,"81":0.00289,"83":0.00289,"84":0.00289,"85":0.00289,"86":0.00289,"88":0.00289,"89":0.00289,"90":0.00289,"92":0.00289,"98":0.00289,"102":0.00289,"104":0.00289,"106":0.00289,"107":0.00289,"108":0.00289,"109":0.03182,"110":0.00868,"111":0.00289,"112":0.00289,"113":0.00868,"114":0.01447,"115":0.01736,"116":0.06365,"117":1.12827,"118":1.20638,"119":0.00289,_:"12 13 14 15 16 79 87 91 93 94 95 96 97 99 100 101 103 105"},E:{"6":0.00289,"7":0.00289,"8":0.10993,"9":0.00289,"13":0.00579,"14":0.0405,"15":0.00289,_:"0 4 5 10 11 12 3.1 3.2 7.1 10.1 17.2","5.1":0.00289,"6.1":0.00579,"9.1":0.0434,"11.1":0.01157,"12.1":0.00289,"13.1":0.01736,"14.1":0.07233,"15.1":0.00579,"15.2-15.3":0.01157,"15.4":0.00579,"15.5":0.02893,"15.6":0.10993,"16.0":0.00868,"16.1":0.02604,"16.2":0.02314,"16.3":0.07233,"16.4":0.02025,"16.5":0.03472,"16.6":0.56124,"17.0":0.17937,"17.1":0.01157},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00147,"5.0-5.1":0.00147,"6.0-6.1":0.00441,"7.0-7.1":0.01029,"8.1-8.4":0.00147,"9.0-9.2":0.01029,"9.3":0.03527,"10.0-10.2":0.00147,"10.3":0.05144,"11.0-11.2":0.04703,"11.3-11.4":0.01617,"12.0-12.1":0.01323,"12.2-12.5":0.23369,"13.0-13.1":0.00735,"13.2":0.03968,"13.3":0.0147,"13.4-13.7":0.04703,"14.0-14.4":0.12934,"14.5-14.8":0.2087,"15.0-15.1":0.0823,"15.2-15.3":0.09406,"15.4":0.10435,"15.5":0.14844,"15.6-15.7":1.02734,"16.0":0.37919,"16.1":0.72605,"16.2":0.3542,"16.3":0.65697,"16.4":0.14109,"16.5":0.37625,"16.6-16.7":7.04734,"17.0":2.51029,"17.1":0.15138,"17.2":0.00441},P:{"4":0.03076,"20":0.15381,"21":0.22559,"22":5.56806,"23":1.28178,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2","9.2":0.02051,"10.1":0.02051,"11.1-11.2":0.06153,"12.0":0.01025,"13.0":0.06153,"14.0":0.06153,"15.0":0.02051,"16.0":0.05127,"17.0":0.05127,"18.0":0.06153,"19.0":0.12305},I:{"0":0.02121,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"8":0.00289,"9":0.00289,"10":0.00579,"11":0.06654,_:"6 7 5.5"},K:{"0":0.42063,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.14925},Q:{_:"13.1"},O:{"0":0.06396},H:{"0":0.02},L:{"0":48.59738}};
      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 fd033ca4a8becc..36c93109d6abce 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0.00503,"3":0.00503,"4":0.00503,"5":0.00503,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00503,"13":0,"14":0.00503,"15":0.00503,"16":0,"17":0.00503,"18":0,"19":0,"20":0,"21":0.00503,"22":0,"23":0,"24":0.00503,"25":0.00503,"26":0.00503,"27":0.00503,"28":0.00503,"29":0.00503,"30":0.00503,"31":0,"32":0.00503,"33":0,"34":0.00503,"35":0.00503,"36":0.00503,"37":0.00503,"38":0.00503,"39":0.01508,"40":0.01508,"41":0.00503,"42":0.00503,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03015,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01508,"69":0,"70":0,"71":0,"72":0.00503,"73":0,"74":0,"75":0,"76":0,"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.01508,"103":0.0201,"104":0.0804,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.13065,"116":0.0402,"117":0.77385,"118":0.05528,"119":0,"120":0,"3.5":0.00503,"3.6":0.01508},D:{"4":0.00503,"5":0,"6":0.00503,"7":0.00503,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00503,"15":0,"16":0,"17":0,"18":0,"19":0.00503,"20":0.00503,"21":0.00503,"22":0,"23":0,"24":0,"25":0,"26":0.00503,"27":0,"28":0.00503,"29":0,"30":0.00503,"31":0.01005,"32":0,"33":0.00503,"34":0,"35":0.00503,"36":0.00503,"37":0.01005,"38":0.00503,"39":0.01508,"40":0.00503,"41":0.01005,"42":0.01508,"43":0.0201,"44":0.03518,"45":0.03015,"46":0.02513,"47":0.01508,"48":0,"49":0,"50":0,"51":0.02513,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00503,"66":0,"67":0.05025,"68":0,"69":0,"70":0.01005,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00503,"77":0.00503,"78":0,"79":0.01005,"80":0.03015,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00503,"88":0,"89":0,"90":0.00503,"91":0,"92":0.00503,"93":0.0201,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01508,"100":0,"101":0,"102":0.00503,"103":0.06533,"104":0.02513,"105":0.3819,"106":0,"107":0,"108":0.02513,"109":0.3819,"110":0.00503,"111":0.0201,"112":0.02513,"113":0.02513,"114":0.201,"115":0.43215,"116":5.83403,"117":1.81905,"118":0,"119":0,"120":0},F:{"9":0,"11":0.00503,"12":0.00503,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00503,"28":0,"29":0.00503,"30":0.00503,"31":0.01508,"32":0.00503,"33":0.00503,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.01005,"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.00503,"96":0,"97":0,"98":0,"99":0,"100":0.05025,"101":0.25125,"102":0.33165,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01005},B:{"12":0.00503,"13":0,"14":0.02513,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.01508,"105":0,"106":0,"107":0.01508,"108":0.00503,"109":0.01508,"110":0,"111":0,"112":0.00503,"113":0.00503,"114":0.0201,"115":0.13065,"116":2.5326,"117":2.2512},E:{"4":0,"5":0.00503,"6":0,"7":0.00503,"8":0.01005,"9":0.04523,"10":0,"11":0,"12":0,"13":0,"14":0.11558,"15":0.00503,_:"0","3.1":0,"3.2":0,"5.1":0.00503,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.21608,"13.1":0.07035,"14.1":0.11558,"15.1":0.0402,"15.2-15.3":0.03518,"15.4":0.01508,"15.5":0.05025,"15.6":2.18588,"16.0":0.0201,"16.1":0.03518,"16.2":0.06533,"16.3":0.29145,"16.4":0.13568,"16.5":0.2814,"16.6":2.59793,"17.0":0.06533,"17.1":0},G:{"8":0.0174,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01305,"5.0-5.1":0.0174,"6.0-6.1":0.0087,"7.0-7.1":0.06524,"8.1-8.4":0.11743,"9.0-9.2":0.0087,"9.3":0.33489,"10.0-10.2":0,"10.3":0.06524,"11.0-11.2":0.36533,"11.3-11.4":0.0087,"12.0-12.1":0.09568,"12.2-12.5":0.93942,"13.0-13.1":0,"13.2":0,"13.3":0.0087,"13.4-13.7":0,"14.0-14.4":0.07828,"14.5-14.8":0.53495,"15.0-15.1":0.30009,"15.2-15.3":0.13047,"15.4":0.30879,"15.5":0.83504,"15.6-15.7":2.3094,"16.0":1.0264,"16.1":2.28766,"16.2":0.94377,"16.3":1.86144,"16.4":0.44796,"16.5":0.97856,"16.6":26.76471,"17.0":2.15283,"17.1":0.00435},P:{"4":0.04277,"20":0.09624,"21":0.19248,"22":2.24561,"5.0-5.4":0.01069,"6.2-6.4":0.04277,"7.2-7.4":0.02139,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.08555,"14.0":0,"15.0":0,"16.0":0.01069,"17.0":0.01069,"18.0":0,"19.0":0.03208},I:{"0":0,"3":0.02226,"4":0.27374,"2.1":0.01335,"2.2":0.08012,"2.3":0.13576,"4.1":0.10237,"4.2-4.3":0.26038,"4.4":0,"4.4.3-4.4.4":0.53412},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01025,"7":0.02049,"8":0.19466,"9":0.04098,"10":0.04098,"11":0.21003,"5.5":0},S:{"2.5":0.0199,_:"3.0-3.1"},J:{"7":0,"10":0.02985},N:{"10":0.0796,"11":0.0398},L:{"0":25.85533},R:{_:"0"},M:{"0":0.55223},Q:{"13.1":0},O:{"0":0.08458},H:{"0":0.10362}};
      +module.exports={C:{"2":0.00458,"3":0.00458,"4":0.00916,"8":0.00458,"10":0.00458,"12":0.00458,"16":0.00458,"21":0.00458,"23":0.00458,"25":0.00458,"26":0.00458,"31":0.00458,"33":0.00458,"34":0.00458,"35":0.00458,"37":0.00458,"38":0.00458,"39":0.00458,"40":0.00916,"41":0.00458,"42":0.00458,"48":0.00458,"52":0.04578,"70":0.00458,"78":0.00458,"96":0.02289,"102":0.00916,"103":0.02289,"104":0.20143,"109":0.00458,"113":0.00458,"115":0.27468,"116":0.00458,"117":0.0824,"118":1.07583,"119":0.2701,"120":0.00458,_:"5 6 7 9 11 13 14 15 17 18 19 20 22 24 27 28 29 30 32 36 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 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 105 106 107 108 110 111 112 114 121 122","3.5":0.00458,"3.6":0.00916},D:{"4":0.00458,"15":0.00458,"19":0.00458,"21":0.00458,"27":0.00458,"28":0.00458,"31":0.00916,"32":0.00458,"33":0.00458,"36":0.00458,"37":0.00458,"38":0.00916,"39":0.00916,"40":0.01373,"41":0.00916,"42":0.00916,"43":0.02289,"44":0.02289,"45":0.03205,"46":0.03205,"47":0.01373,"51":0.03205,"65":0.06409,"67":0.07783,"70":0.01373,"76":0.01373,"77":0.00458,"79":0.00458,"85":0.00458,"86":0.00458,"87":0.01373,"88":0.00458,"89":0.00458,"91":0.00458,"93":0.00458,"94":0.01831,"99":0.05951,"102":0.00916,"103":0.27926,"104":0.05494,"105":0.71875,"107":0.00458,"108":0.01831,"109":0.52189,"111":0.02289,"112":0.02289,"113":0.09156,"114":0.61803,"115":0.13276,"116":1.47412,"117":7.54912,"118":8.72567,_:"5 6 7 8 9 10 11 12 13 14 16 17 18 20 22 23 24 25 26 29 30 34 35 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 71 72 73 74 75 78 80 81 83 84 90 92 95 96 97 98 100 101 106 110 119 120 121 122"},F:{"30":0.00458,"31":0.01373,"32":0.00458,"95":0.00458,"101":0.00458,"102":0.70959,"103":0.21974,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00916},B:{"12":0.00458,"92":0.00458,"104":0.00458,"107":0.02289,"108":0.00458,"109":0.05036,"114":0.00458,"115":0.01373,"116":0.08698,"117":4.4956,"118":4.06984,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106 110 111 112 113 119"},E:{"5":0.00458,"8":0.00458,"9":0.06409,"13":0.00458,"14":0.37082,"15":0.00458,_:"0 4 6 7 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00458,"12.1":0.36166,"13.1":0.22432,"14.1":0.19685,"15.1":0.10987,"15.2-15.3":0.03662,"15.4":0.02747,"15.5":0.0824,"15.6":3.36483,"16.0":0.01831,"16.1":0.09614,"16.2":0.10072,"16.3":0.34335,"16.4":0.0412,"16.5":0.34793,"16.6":4.63294,"17.0":1.16281,"17.1":0.05036},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00312,"5.0-5.1":0.00312,"6.0-6.1":0.00935,"7.0-7.1":0.02182,"8.1-8.4":0.00312,"9.0-9.2":0.02182,"9.3":0.07481,"10.0-10.2":0.00312,"10.3":0.1091,"11.0-11.2":0.09975,"11.3-11.4":0.03429,"12.0-12.1":0.02805,"12.2-12.5":0.49562,"13.0-13.1":0.01559,"13.2":0.08416,"13.3":0.03117,"13.4-13.7":0.09975,"14.0-14.4":0.27431,"14.5-14.8":0.44263,"15.0-15.1":0.17456,"15.2-15.3":0.19949,"15.4":0.22131,"15.5":0.31483,"15.6-15.7":2.17886,"16.0":0.80421,"16.1":1.53985,"16.2":0.75122,"16.3":1.39335,"16.4":0.29924,"16.5":0.79798,"16.6-16.7":14.94653,"17.0":5.32402,"17.1":0.32106,"17.2":0.00935},P:{"4":0.04395,"20":0.04395,"21":0.10988,"22":2.12074,"23":0.48349,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0","6.2-6.4":0.03296,"7.2-7.4":0.01099,"13.0":0.02198,"17.0":0.01099,"19.0":0.01099},I:{"0":0.29669,"3":0,"4":0.00006,"2.1":0,"2.2":0.00009,"2.3":0,"4.1":0.00006,"4.2-4.3":0.00021,"4.4":0,"4.4.3-4.4.4":0.00089},A:{"6":0.00458,"7":0.01373,"8":0.15107,"9":0.02747,"10":0.03662,"11":0.17854,_:"5.5"},K:{"0":0.14639,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01084,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.5422},Q:{_:"13.1"},O:{"0":0.05422},H:{"0":0},L:{"0":19.43273}};
      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 261029b06a9619..e3068411cb4b37 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00225,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00225,"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.00225,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00225,"112":0.00225,"113":0.00449,"114":0.00225,"115":0.06516,"116":0.01124,"117":0.13257,"118":0.01573,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00225,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00225,"67":0,"68":0.00225,"69":0.00225,"70":0.00225,"71":0.00225,"72":0.00225,"73":0.00225,"74":0.00449,"75":0.00225,"76":0.00225,"77":0.00225,"78":0.00225,"79":0.00449,"80":0.00449,"81":0.00449,"83":0.00449,"84":0.00225,"85":0.00225,"86":0.00449,"87":0.00674,"88":0.00449,"89":0.00225,"90":0.00449,"91":0.00449,"92":0.00225,"93":0.00225,"94":0.00449,"95":0.00225,"96":0.00225,"97":0.00449,"98":0.00225,"99":0.00225,"100":0.00225,"101":0.00449,"102":0.00225,"103":0.00899,"104":0.00674,"105":0.00674,"106":0.00899,"107":0.00674,"108":0.01348,"109":0.58871,"110":0.00674,"111":0.03146,"112":0.02022,"113":0.02696,"114":0.09213,"115":0.10336,"116":2.12342,"117":0.57973,"118":0.00449,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00225,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00225,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00225,"64":0.00225,"65":0,"66":0,"67":0.00225,"68":0.00225,"69":0.01124,"70":0.01573,"71":0.03146,"72":0.23818,"73":0.05168,"74":0.00225,"75":0,"76":0.00225,"77":0.04494,"78":0.00449,"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.00449,"96":0,"97":0,"98":0,"99":0,"100":0.00225,"101":0.01798,"102":0.01798,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00225,"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.00225,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00449,"110":0,"111":0,"112":0,"113":0,"114":0.00449,"115":0.00674,"116":0.13707,"117":0.08988},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.01124,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00225,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00449,"16.0":0,"16.1":0.00225,"16.2":0.00225,"16.3":0.00225,"16.4":0.00225,"16.5":0.00674,"16.6":0.02696,"17.0":0.00449,"17.1":0},G:{"8":0.00059,"3.2":0.00029,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00913,"8.1-8.4":0,"9.0-9.2":0.00059,"9.3":0.0053,"10.0-10.2":0.00059,"10.3":0.00383,"11.0-11.2":0.00501,"11.3-11.4":0.00589,"12.0-12.1":0.00353,"12.2-12.5":0.04418,"13.0-13.1":0.00206,"13.2":0.00236,"13.3":0.00707,"13.4-13.7":0.00648,"14.0-14.4":0.02415,"14.5-14.8":0.03063,"15.0-15.1":0.02474,"15.2-15.3":0.01591,"15.4":0.01178,"15.5":0.02121,"15.6-15.7":0.21237,"16.0":0.05714,"16.1":0.08542,"16.2":0.06598,"16.3":0.12931,"16.4":0.06568,"16.5":0.18851,"16.6":1.51104,"17.0":0.37349,"17.1":0.00088},P:{"4":0.06112,"20":0.04075,"21":0.0815,"22":0.51954,"5.0-5.4":0,"6.2-6.4":0.01019,"7.2-7.4":0.04075,"8.2":0,"9.2":0.01019,"10.1":0,"11.1-11.2":0.01019,"12.0":0,"13.0":0.01019,"14.0":0.01019,"15.0":0.01019,"16.0":0.01019,"17.0":0.01019,"18.0":0.01019,"19.0":0.04075},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04899},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00449,"5.5":0},S:{"2.5":0.44192,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":84.16933},R:{_:"0"},M:{"0":0.14731},Q:{"13.1":0},O:{"0":2.20185},H:{"0":3.0241}};
      +module.exports={C:{"42":0.00411,"48":0.00205,"52":0.01438,"56":0.00205,"59":0.00205,"66":0.00205,"72":0.00205,"78":0.00205,"83":0.00205,"88":0.00822,"91":0.00616,"102":0.00411,"103":0.00205,"104":0.00205,"105":0.00205,"106":0.00205,"107":0.00205,"108":0.00205,"109":0.00205,"110":0.00411,"111":0.00411,"112":0.00411,"113":0.01232,"114":0.00205,"115":0.25059,"116":0.00822,"117":0.02465,"118":0.42723,"119":0.09448,"120":0.00205,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 121 122 3.5 3.6"},D:{"49":0.00822,"55":0.00205,"56":0.00205,"63":0.00205,"64":0.00205,"66":0.01027,"68":0.00411,"69":0.00205,"70":0.00616,"71":0.01027,"72":0.00205,"73":0.00205,"74":0.01027,"75":0.00205,"76":0.00205,"77":0.00205,"78":0.00411,"79":0.01027,"80":0.01232,"81":0.00822,"83":0.01232,"84":0.00205,"85":0.00616,"86":0.00822,"87":0.02259,"88":0.00822,"89":0.00822,"90":0.00822,"91":0.01027,"92":0.00616,"93":0.00411,"94":0.01643,"95":0.00822,"96":0.00822,"97":0.01438,"98":0.00616,"99":0.01232,"100":0.00616,"101":0.01643,"102":0.01027,"103":0.03697,"104":0.0267,"105":0.0267,"106":0.03492,"107":0.03081,"108":0.0534,"109":2.39291,"110":0.0267,"111":0.13351,"112":0.06573,"113":0.08011,"114":0.22183,"115":0.19513,"116":0.55663,"117":6.162,"118":5.2644,"119":0.01643,"120":0.00411,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 59 60 61 62 65 67 121 122"},F:{"28":0.00205,"77":0.00205,"78":0.00205,"79":0.00205,"85":0.00205,"89":0.00205,"95":0.02054,"101":0.00205,"102":0.10681,"103":0.0493,_:"9 11 12 15 16 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 80 81 82 83 84 86 87 88 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00205,"16":0.00205,"17":0.00205,"18":0.00616,"84":0.00205,"92":0.00616,"100":0.00205,"106":0.00205,"107":0.00205,"108":0.00411,"109":0.01438,"110":0.00205,"111":0.00205,"112":0.00205,"113":0.00205,"114":0.00822,"115":0.01027,"116":0.01849,"117":0.49912,"118":0.46831,"119":0.00411,_:"13 14 15 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"13":0.00205,"14":0.00205,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 10.1 12.1 17.2","5.1":0.00205,"9.1":0.00411,"11.1":0.00205,"13.1":0.00411,"14.1":0.00822,"15.1":0.00205,"15.2-15.3":0.00205,"15.4":0.00205,"15.5":0.00411,"15.6":0.01849,"16.0":0.00411,"16.1":0.00822,"16.2":0.00411,"16.3":0.01232,"16.4":0.00616,"16.5":0.02465,"16.6":0.06984,"17.0":0.06778,"17.1":0.00616},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00022,"5.0-5.1":0.00022,"6.0-6.1":0.00065,"7.0-7.1":0.00152,"8.1-8.4":0.00022,"9.0-9.2":0.00152,"9.3":0.00521,"10.0-10.2":0.00022,"10.3":0.00759,"11.0-11.2":0.00694,"11.3-11.4":0.00239,"12.0-12.1":0.00195,"12.2-12.5":0.0345,"13.0-13.1":0.00108,"13.2":0.00586,"13.3":0.00217,"13.4-13.7":0.00694,"14.0-14.4":0.01909,"14.5-14.8":0.03081,"15.0-15.1":0.01215,"15.2-15.3":0.01388,"15.4":0.0154,"15.5":0.02191,"15.6-15.7":0.15165,"16.0":0.05597,"16.1":0.10717,"16.2":0.05229,"16.3":0.09698,"16.4":0.02083,"16.5":0.05554,"16.6-16.7":1.04029,"17.0":0.37056,"17.1":0.02235,"17.2":0.00065},P:{"4":0.05221,"20":0.03133,"21":0.06265,"22":0.5221,"23":0.07309,_:"5.0-5.4 8.2 10.1 12.0 14.0 15.0","6.2-6.4":0.01044,"7.2-7.4":0.04177,"9.2":0.01044,"11.1-11.2":0.01044,"13.0":0.01044,"16.0":0.01044,"17.0":0.01044,"18.0":0.01044,"19.0":0.04177},I:{"0":0.03163,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"7":0.00411,"9":0.00205,"11":0.0267,_:"6 8 10 5.5"},K:{"0":3.27569,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.50066,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.15099},Q:{_:"13.1"},O:{"0":2.09801},H:{"0":0.07},L:{"0":72.50633}};
      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 61d0c587bb1c8c..17bae3f11e445a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00272,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00543,"69":0.00815,"70":0.00272,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00272,"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.00272,"103":0,"104":0,"105":0,"106":0,"107":0.00272,"108":0.00272,"109":0,"110":0,"111":0,"112":0,"113":0.00272,"114":0,"115":0.05432,"116":0.00815,"117":0.1195,"118":0.01901,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00543,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00815,"39":0,"40":0,"41":0,"42":0,"43":0.02173,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00272,"57":0,"58":0.00543,"59":0,"60":0.00272,"61":0,"62":0,"63":0.00272,"64":0.00272,"65":0.00272,"66":0.00272,"67":0,"68":0.00815,"69":0.00272,"70":0.00543,"71":0,"72":0.00815,"73":0.00815,"74":0.00272,"75":0.00543,"76":0,"77":0,"78":0.00543,"79":0.02444,"80":0.00272,"81":0.01086,"83":0.01086,"84":0.00543,"85":0.00272,"86":0.01358,"87":0.00815,"88":0.00815,"89":0.01358,"90":0.00272,"91":0.00272,"92":0.00272,"93":0,"94":0.00272,"95":0.01901,"96":0.00543,"97":0.00543,"98":0.01358,"99":0.01086,"100":0.00272,"101":0.00272,"102":0.00815,"103":0.0842,"104":0.00272,"105":0.00543,"106":0.01086,"107":0.00815,"108":0.01086,"109":0.61382,"110":0.00543,"111":0.00815,"112":0.00815,"113":0.00815,"114":0.04074,"115":0.04889,"116":1.93651,"117":0.56221,"118":0.00543,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.00272,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00272,"70":0,"71":0,"72":0.03259,"73":0.01086,"74":0.00272,"75":0,"76":0,"77":0.01358,"78":0,"79":0.00272,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00272,"92":0,"93":0.00272,"94":0,"95":0.02988,"96":0,"97":0,"98":0,"99":0.00272,"100":0.0163,"101":0.05975,"102":0.07605,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00272,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00543,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01901,"110":0,"111":0.00272,"112":0.00272,"113":0.00272,"114":0.01901,"115":0.01358,"116":0.30419,"117":0.18197},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00815,"15":0.00272,_:"0","3.1":0,"3.2":0,"5.1":0.06247,"6.1":0,"7.1":0,"9.1":0.00815,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00272,"14.1":0.02173,"15.1":0.00272,"15.2-15.3":0,"15.4":0.01901,"15.5":0.02444,"15.6":0.11679,"16.0":0.00272,"16.1":0.0516,"16.2":0.0516,"16.3":0.08691,"16.4":0.01901,"16.5":0.09234,"16.6":0.83924,"17.0":0.04617,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01216,"6.0-6.1":0,"7.0-7.1":0.22704,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0446,"10.0-10.2":0.00203,"10.3":0.04865,"11.0-11.2":0.01824,"11.3-11.4":0.01014,"12.0-12.1":0.01419,"12.2-12.5":0.36488,"13.0-13.1":0.00405,"13.2":0,"13.3":0.03041,"13.4-13.7":0.04662,"14.0-14.4":0.17231,"14.5-14.8":0.29191,"15.0-15.1":0.0669,"15.2-15.3":0.08717,"15.4":0.11757,"15.5":0.18041,"15.6-15.7":2.48527,"16.0":0.6649,"16.1":0.72369,"16.2":0.34664,"16.3":0.82302,"16.4":0.25542,"16.5":0.88383,"16.6":10.40325,"17.0":1.64806,"17.1":0},P:{"4":0.11396,"20":0.09324,"21":0.2072,"22":2.58999,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09324,"8.2":0,"9.2":0.02072,"10.1":0,"11.1-11.2":0.04144,"12.0":0.01036,"13.0":0.0518,"14.0":0.03108,"15.0":0.02072,"16.0":0.0518,"17.0":0.07252,"18.0":0.04144,"19.0":0.07252},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01244,"4.4":0,"4.4.3-4.4.4":0.21151},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01358,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.0496},R:{_:"0"},M:{"0":0.13111},Q:{"13.1":0},O:{"0":0.42976},H:{"0":0.55168}};
      +module.exports={C:{"34":0.00508,"35":0.00254,"47":0.00508,"52":0.01016,"66":0.00254,"67":0.00254,"68":0.00254,"69":0.01016,"72":0.00254,"97":0.00254,"99":0.00254,"108":0.00508,"110":0.00254,"112":0.00254,"113":0.01523,"114":0.00254,"115":0.19043,"116":0.00762,"117":0.01777,"118":0.43925,"119":0.09648,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 100 101 102 103 104 105 106 107 109 111 120 121 122 3.5 3.6"},D:{"11":0.02285,"33":0.00254,"34":0.00508,"38":0.03301,"40":0.00254,"41":0.00254,"43":0.07871,"47":0.00508,"49":0.00254,"50":0.00254,"52":0.00254,"53":0.00254,"55":0.00508,"56":0.0127,"57":0.00254,"58":0.01777,"59":0.00254,"60":0.00508,"62":0.00254,"63":0.01016,"64":0.00508,"65":0.0127,"66":0.0127,"67":0.00254,"68":0.02793,"69":0.01016,"70":0.01016,"71":0.00508,"72":0.00508,"73":0.03301,"74":0.00508,"75":0.0127,"76":0.00254,"77":0.00254,"78":0.00762,"79":0.11426,"80":0.01016,"81":0.02031,"83":0.05078,"84":0.00762,"85":0.00762,"86":0.02285,"87":0.03047,"88":0.02031,"89":0.01016,"90":0.0127,"91":0.00508,"92":0.00762,"93":0.00508,"94":0.00762,"95":0.03809,"96":0.00762,"97":0.01523,"98":0.06601,"99":0.02793,"100":0.0127,"101":0.00762,"102":0.04316,"103":0.21328,"104":0.00508,"105":0.02539,"106":0.03047,"107":0.02793,"108":0.03555,"109":2.26733,"110":0.02539,"111":0.02285,"112":0.02285,"113":0.0127,"114":0.10156,"115":0.04824,"116":0.37831,"117":5.01706,"118":4.99167,"119":0.0127,"120":0.00254,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 42 44 45 46 48 51 54 61 121 122"},F:{"28":0.00254,"46":0.00254,"79":0.00762,"82":0.00254,"83":0.00254,"85":0.00254,"93":0.00762,"95":0.11172,"98":0.00508,"99":0.01016,"100":0.00254,"101":0.00254,"102":0.56874,"103":0.12949,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 84 86 87 88 89 90 91 92 94 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00254,"16":0.00254,"18":0.01016,"84":0.00508,"89":0.00254,"90":0.00254,"92":0.02793,"98":0.03047,"100":0.00254,"104":0.00254,"107":0.00762,"108":0.00254,"109":0.0914,"110":0.00254,"111":0.00762,"112":0.00508,"113":0.00762,"114":0.01016,"115":0.01016,"116":0.02539,"117":0.95466,"118":0.8201,"119":0.00254,_:"13 14 15 17 79 80 81 83 85 86 87 88 91 93 94 95 96 97 99 101 102 103 105 106"},E:{"13":0.00254,"14":0.02031,"15":0.00254,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 12.1 17.2","5.1":0.23359,"11.1":0.00254,"13.1":0.00762,"14.1":0.06855,"15.1":0.01777,"15.2-15.3":0.00762,"15.4":0.0457,"15.5":0.0457,"15.6":0.37577,"16.0":0.02031,"16.1":0.07109,"16.2":0.14472,"16.3":0.36054,"16.4":0.08125,"16.5":0.16757,"16.6":1.97026,"17.0":0.52811,"17.1":0.02793},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00155,"5.0-5.1":0.00155,"6.0-6.1":0.00464,"7.0-7.1":0.01082,"8.1-8.4":0.00155,"9.0-9.2":0.01082,"9.3":0.0371,"10.0-10.2":0.00155,"10.3":0.0541,"11.0-11.2":0.04946,"11.3-11.4":0.017,"12.0-12.1":0.01391,"12.2-12.5":0.24577,"13.0-13.1":0.00773,"13.2":0.04173,"13.3":0.01546,"13.4-13.7":0.04946,"14.0-14.4":0.13602,"14.5-14.8":0.21949,"15.0-15.1":0.08656,"15.2-15.3":0.09893,"15.4":0.10975,"15.5":0.15612,"15.6-15.7":1.08045,"16.0":0.39879,"16.1":0.76358,"16.2":0.37252,"16.3":0.69093,"16.4":0.14839,"16.5":0.3957,"16.6-16.7":7.41169,"17.0":2.64008,"17.1":0.15921,"17.2":0.00464},P:{"4":0.16452,"20":0.07198,"21":0.15424,"22":2.03598,"23":0.50385,"5.0-5.4":0.01028,_:"6.2-6.4 10.1","7.2-7.4":0.08226,"8.2":0.01028,"9.2":0.02057,"11.1-11.2":0.05141,"12.0":0.01028,"13.0":0.0617,"14.0":0.03085,"15.0":0.02057,"16.0":0.04113,"17.0":0.0617,"18.0":0.03085,"19.0":0.0617},I:{"0":0.08164,"3":0,"4":0.00002,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{"7":0.0027,"8":0.0027,"9":0.0027,"11":0.07568,_:"6 10 5.5"},K:{"0":0.54458,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.13428},Q:{_:"13.1"},O:{"0":0.47744},H:{"0":0},L:{"0":57.14421}};
      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 3cc0c718ccb58b..692ecd0d7ac2fd 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00691,"53":0,"54":0,"55":0,"56":0.0023,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00691,"69":0,"70":0,"71":0,"72":0.0023,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.0023,"83":0,"84":0,"85":0.0023,"86":0,"87":0,"88":0.0023,"89":0.0023,"90":0.0023,"91":0.0023,"92":0.0023,"93":0.0023,"94":0.0046,"95":0.0023,"96":0.0023,"97":0.0023,"98":0.0023,"99":0.0023,"100":0.0023,"101":0.0023,"102":0.01611,"103":0.0023,"104":0.0046,"105":0.00691,"106":0.00691,"107":0.0046,"108":0.00921,"109":0.00691,"110":0.00691,"111":0.01151,"112":0.00921,"113":0.02762,"114":0.01611,"115":0.32228,"116":0.06906,"117":0.43738,"118":0.03223,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0023,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0023,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0023,"70":0.0023,"71":0.0023,"72":0,"73":0.0023,"74":0,"75":0,"76":0,"77":0.0023,"78":0.0023,"79":0.0046,"80":0.0023,"81":0.0046,"83":0.0023,"84":0.0023,"85":0.0023,"86":0.0046,"87":0.0046,"88":0.0023,"89":0.0046,"90":0.0023,"91":0.0046,"92":0.0023,"93":0,"94":0.0023,"95":0.0046,"96":0.0046,"97":0.0023,"98":0.0023,"99":0.0046,"100":0.0046,"101":0.0046,"102":0.00921,"103":0.01151,"104":0.00691,"105":0.00921,"106":0.01381,"107":0.01381,"108":0.01842,"109":0.85174,"110":0.00691,"111":0.01151,"112":0.01611,"113":0.01381,"114":0.03913,"115":0.04834,"116":1.86922,"117":0.39134,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0023,"73":0.0023,"74":0.0023,"75":0,"76":0.0023,"77":0.00921,"78":0,"79":0.0023,"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.01381,"96":0,"97":0,"98":0,"99":0.0023,"100":0.0046,"101":0.02993,"102":0.02993,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0023,"13":0.0023,"14":0,"15":0,"16":0,"17":0,"18":0.0046,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0023,"90":0.0023,"91":0,"92":0.01381,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0023,"101":0,"102":0,"103":0,"104":0,"105":0.0023,"106":0,"107":0.0023,"108":0.0023,"109":0.01842,"110":0.0023,"111":0.0023,"112":0.0023,"113":0.0023,"114":0.00691,"115":0.01151,"116":0.1128,"117":0.06215},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.0023,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.0046,"16.0":0,"16.1":0,"16.2":0,"16.3":0.0023,"16.4":0.0023,"16.5":0.0023,"16.6":0.00921,"17.0":0.0023,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0022,"8.1-8.4":0.00073,"9.0-9.2":0.00073,"9.3":0.00294,"10.0-10.2":0,"10.3":0.01027,"11.0-11.2":0.00294,"11.3-11.4":0.00367,"12.0-12.1":0.01394,"12.2-12.5":0.35666,"13.0-13.1":0.00734,"13.2":0.00514,"13.3":0.05651,"13.4-13.7":0.04477,"14.0-14.4":0.13283,"14.5-14.8":0.13356,"15.0-15.1":0.10935,"15.2-15.3":0.11742,"15.4":0.11081,"15.5":0.15264,"15.6-15.7":1.21454,"16.0":0.29501,"16.1":0.33905,"16.2":0.24438,"16.3":0.39775,"16.4":0.39849,"16.5":0.7823,"16.6":2.02693,"17.0":0.33611,"17.1":0},P:{"4":0.16122,"20":0.60458,"21":0.80611,"22":2.97254,"5.0-5.4":0.03023,"6.2-6.4":0.03023,"7.2-7.4":0.26199,"8.2":0.03023,"9.2":0.11084,"10.1":0.03023,"11.1-11.2":0.16122,"12.0":0.06046,"13.0":0.2116,"14.0":0.19145,"15.0":0.10076,"16.0":0.32245,"17.0":0.39298,"18.0":0.3426,"19.0":0.47359},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00415,"4.4":0,"4.4.3-4.4.4":0.01815},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.37523,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.68266},R:{_:"0"},M:{"0":1.02383},Q:{"13.1":0},O:{"0":0.06158},H:{"0":0.43728}};
      +module.exports={C:{"33":0.00291,"38":0.00291,"39":0.00291,"40":0.00291,"41":0.00291,"43":0.00291,"47":0.00581,"48":0.00291,"49":0.00291,"50":0.00872,"52":0.04651,"56":0.00581,"60":0.00291,"65":0.00291,"68":0.00291,"71":0.00291,"72":0.01163,"75":0.00291,"77":0.00291,"78":0.00291,"79":0.00291,"80":0.00291,"81":0.00291,"82":0.00581,"84":0.00291,"86":0.00291,"87":0.00291,"88":0.00291,"89":0.00291,"90":0.00291,"91":0.00291,"92":0.00291,"93":0.00291,"94":0.00581,"95":0.00291,"96":0.00291,"97":0.00291,"98":0.00291,"99":0.00581,"100":0.00581,"101":0.00581,"102":0.01454,"103":0.00581,"104":0.00581,"105":0.00872,"106":0.01163,"107":0.00872,"108":0.01163,"109":0.01454,"110":0.00872,"111":0.01163,"112":0.01744,"113":0.02326,"114":0.02616,"115":1.6599,"116":0.03779,"117":0.11919,"118":1.96513,"119":0.38663,"120":0.00291,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 42 44 45 46 51 53 54 55 57 58 59 61 62 63 64 66 67 69 70 73 74 76 83 85 121 122 3.5 3.6"},D:{"33":0.00291,"34":0.00291,"38":0.00581,"45":0.00291,"46":0.00291,"48":0.00291,"49":0.00872,"52":0.00291,"58":0.00291,"59":0.00291,"60":0.00291,"62":0.00581,"63":0.00581,"64":0.00291,"65":0.00291,"66":0.00291,"67":0.00291,"68":0.00581,"69":0.00581,"70":0.00581,"71":0.02035,"72":0.00872,"73":0.00581,"74":0.00581,"75":0.00581,"76":0.00581,"77":0.00581,"78":0.01744,"79":0.02326,"80":0.02035,"81":0.01163,"83":0.01744,"84":0.01163,"85":0.01454,"86":0.02907,"87":0.02326,"88":0.01454,"89":0.01454,"90":0.01163,"91":0.02035,"92":0.01454,"93":0.00581,"94":0.01163,"95":0.01163,"96":0.02326,"97":0.01454,"98":0.01744,"99":0.02035,"100":0.02616,"101":0.01454,"102":0.04651,"103":0.05233,"104":0.03198,"105":0.04942,"106":0.06977,"107":0.0814,"108":0.11337,"109":4.71225,"110":0.0407,"111":0.06395,"112":0.06686,"113":0.05523,"114":0.13372,"115":0.11628,"116":0.49419,"117":5.99714,"118":6.34307,"119":0.00581,"120":0.00291,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 41 42 43 44 47 50 51 53 54 55 56 57 61 121 122"},F:{"46":0.00291,"64":0.00291,"79":0.01454,"83":0.00291,"84":0.00291,"85":0.00291,"91":0.00291,"93":0.00291,"94":0.00291,"95":0.07558,"99":0.00291,"100":0.00291,"101":0.01163,"102":0.21221,"103":0.10465,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 86 87 88 89 90 92 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00872,"13":0.00872,"14":0.00872,"15":0.00581,"16":0.00581,"17":0.00872,"18":0.0407,"81":0.00291,"84":0.00581,"89":0.01163,"90":0.01163,"92":0.10465,"96":0.00291,"100":0.02326,"103":0.00291,"105":0.00291,"106":0.00291,"107":0.00872,"108":0.01163,"109":0.125,"110":0.01163,"111":0.00581,"112":0.00581,"113":0.00581,"114":0.01744,"115":0.03198,"116":0.04651,"117":0.50582,"118":0.44477,"119":0.00291,_:"79 80 83 85 86 87 88 91 93 94 95 97 98 99 101 102 104"},E:{"14":0.00291,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.2","5.1":0.00581,"13.1":0.00581,"14.1":0.00581,"15.1":0.00291,"15.4":0.00291,"15.5":0.00291,"15.6":0.01744,"16.0":0.00291,"16.1":0.00581,"16.2":0.00291,"16.3":0.00872,"16.4":0.00581,"16.5":0.00872,"16.6":0.02326,"17.0":0.0407,"17.1":0.00291},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00051,"5.0-5.1":0.00051,"6.0-6.1":0.00152,"7.0-7.1":0.00354,"8.1-8.4":0.00051,"9.0-9.2":0.00354,"9.3":0.01212,"10.0-10.2":0.00051,"10.3":0.01768,"11.0-11.2":0.01616,"11.3-11.4":0.00556,"12.0-12.1":0.00455,"12.2-12.5":0.0803,"13.0-13.1":0.00253,"13.2":0.01364,"13.3":0.00505,"13.4-13.7":0.01616,"14.0-14.4":0.04444,"14.5-14.8":0.07171,"15.0-15.1":0.02828,"15.2-15.3":0.03232,"15.4":0.03586,"15.5":0.05101,"15.6-15.7":0.35301,"16.0":0.1303,"16.1":0.24948,"16.2":0.12171,"16.3":0.22574,"16.4":0.04848,"16.5":0.12929,"16.6-16.7":2.42158,"17.0":0.86258,"17.1":0.05202,"17.2":0.00152},P:{"4":0.23192,"20":0.47391,"21":0.59491,"22":2.93424,"23":0.21175,"5.0-5.4":0.03025,"6.2-6.4":0.03025,"7.2-7.4":0.27225,"8.2":0.03025,"9.2":0.10083,"10.1":0.03025,"11.1-11.2":0.14117,"12.0":0.05042,"13.0":0.19158,"14.0":0.1815,"15.0":0.10083,"16.0":0.28233,"17.0":0.38316,"18.0":0.29242,"19.0":0.44366},I:{"0":0.01411,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"8":0.00291,"9":0.00291,"11":2.44769,_:"6 7 10 5.5"},K:{"0":0.43232,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.87953},Q:{_:"13.1"},O:{"0":0.07093},H:{"0":0.05},L:{"0":58.26226}};
      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 eab0f6c381dbba..b40795085fb693 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.02328,"49":0,"50":0,"51":0,"52":0.04074,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00582,"78":0.02328,"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.00582,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.10476,"103":0.00582,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00582,"110":0,"111":0,"112":0.01746,"113":0.02328,"114":0.01164,"115":0.15132,"116":0.15132,"117":1.2804,"118":0.15714,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00582,"50":0,"51":0,"52":0,"53":0.00582,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00582,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00582,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00582,"80":0,"81":0.00582,"83":0,"84":0,"85":0.01746,"86":0.00582,"87":0.0291,"88":0.00582,"89":0.00582,"90":0.01164,"91":0.00582,"92":0.01164,"93":0.00582,"94":0,"95":0.00582,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00582,"103":0.15132,"104":0.00582,"105":0.01746,"106":0.01164,"107":0.02328,"108":0.04656,"109":0.20952,"110":0.0582,"111":0.05238,"112":0.06984,"113":0.09312,"114":0.27354,"115":0.71004,"116":14.13096,"117":4.0449,"118":0.01164,"119":0.01164,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00582,"47":0,"48":0,"49":0,"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.02328,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00582,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04074,"96":0,"97":0,"98":0,"99":0.00582,"100":0.18042,"101":0.38994,"102":0.77988,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00582,"108":0.01746,"109":0.01746,"110":0,"111":0.00582,"112":0.00582,"113":0.01746,"114":0.03492,"115":0.1164,"116":1.68198,"117":1.37934},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00582,"14":0.05238,"15":0.04074,_:"0","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.0291,"13.1":0.10476,"14.1":0.31428,"15.1":0.04074,"15.2-15.3":0.02328,"15.4":0.09894,"15.5":0.13968,"15.6":0.63438,"16.0":0.09894,"16.1":0.10476,"16.2":0.18624,"16.3":0.34338,"16.4":0.18624,"16.5":0.58782,"16.6":2.63064,"17.0":0.18042,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00655,"10.0-10.2":0,"10.3":0.06225,"11.0-11.2":0.02293,"11.3-11.4":0,"12.0-12.1":0.01638,"12.2-12.5":0.17037,"13.0-13.1":0,"13.2":0,"13.3":0.00328,"13.4-13.7":0.04259,"14.0-14.4":0.0557,"14.5-14.8":0.25882,"15.0-15.1":0.05242,"15.2-15.3":0.09829,"15.4":0.08846,"15.5":0.17037,"15.6-15.7":1.186,"16.0":1.43828,"16.1":1.99196,"16.2":0.89442,"16.3":1.6414,"16.4":0.17364,"16.5":0.72078,"16.6":21.51189,"17.0":1.81832,"17.1":0},P:{"4":0.0102,"20":0.0204,"21":0.19376,"22":3.47747,"5.0-5.4":0.0102,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.0102,"11.1-11.2":0,"12.0":0,"13.0":0.0204,"14.0":0.0102,"15.0":0,"16.0":0.0102,"17.0":0.0102,"18.0":0.0102,"19.0":0.0204},I:{"0":0,"3":0,"4":0.0152,"2.1":0,"2.2":0,"2.3":0.0152,"4.1":0.0152,"4.2-4.3":0.0076,"4.4":0,"4.4.3-4.4.4":0.06081},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02328,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":27.19972},R:{_:"0"},M:{"0":0.3762},Q:{"13.1":0.00418},O:{"0":0.02508},H:{"0":0.14246}};
      +module.exports={C:{"48":0.05171,"52":0.01724,"77":0.00575,"78":0.04597,"91":0.00575,"102":0.05171,"109":0.00575,"112":0.00575,"113":0.01149,"114":0.00575,"115":0.24133,"116":0.01724,"117":0.0747,"118":2.37884,"119":0.44244,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 120 121 122 3.5 3.6"},D:{"49":0.00575,"53":0.00575,"63":0.00575,"65":0.00575,"73":0.00575,"79":0.01149,"81":0.00575,"85":0.03448,"87":0.04597,"89":0.00575,"90":0.00575,"91":0.01149,"92":0.01724,"95":0.00575,"96":0.00575,"97":0.00575,"100":0.00575,"102":0.01149,"103":0.20111,"104":0.01724,"105":0.01724,"106":0.00575,"107":0.01724,"108":0.05171,"109":0.35051,"110":0.04022,"111":0.03448,"112":0.08619,"113":0.13216,"114":0.31028,"115":0.35625,"116":3.74065,"117":16.0141,"118":14.003,"119":0.03448,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 67 68 69 70 71 72 74 75 76 77 78 80 83 84 86 88 93 94 98 99 101 120 121 122"},F:{"46":0.00575,"85":0.00575,"95":0.02873,"98":0.00575,"100":0.00575,"101":0.00575,"102":2.30415,"103":0.32178,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00575,"96":0.00575,"105":0.00575,"107":0.00575,"108":0.01149,"109":0.02298,"112":0.00575,"113":0.00575,"114":0.00575,"115":0.11492,"116":0.12067,"117":2.53973,"118":2.54548,"119":0.01149,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 102 103 104 106 110 111"},E:{"9":0.00575,"13":0.01149,"14":0.10343,"15":0.10343,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.03448,"13.1":0.1379,"14.1":0.44819,"15.1":0.06321,"15.2-15.3":0.04022,"15.4":0.10343,"15.5":0.23559,"15.6":1.2239,"16.0":0.18962,"16.1":0.18387,"16.2":0.23559,"16.3":0.45393,"16.4":0.23559,"16.5":0.77571,"16.6":3.00516,"17.0":1.26987,"17.1":0.06321},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00197,"5.0-5.1":0.00197,"6.0-6.1":0.00591,"7.0-7.1":0.0138,"8.1-8.4":0.00197,"9.0-9.2":0.0138,"9.3":0.0473,"10.0-10.2":0.00197,"10.3":0.06898,"11.0-11.2":0.06307,"11.3-11.4":0.02168,"12.0-12.1":0.01774,"12.2-12.5":0.31337,"13.0-13.1":0.00985,"13.2":0.05321,"13.3":0.01971,"13.4-13.7":0.06307,"14.0-14.4":0.17344,"14.5-14.8":0.27986,"15.0-15.1":0.11037,"15.2-15.3":0.12614,"15.4":0.13993,"15.5":0.19906,"15.6-15.7":1.37764,"16.0":0.50849,"16.1":0.97361,"16.2":0.47498,"16.3":0.88098,"16.4":0.1892,"16.5":0.50454,"16.6-16.7":9.45036,"17.0":3.36626,"17.1":0.203,"17.2":0.00591},P:{"4":0.01045,"20":0.01045,"21":0.11499,"22":2.96875,"23":0.63765,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 11.1-11.2 12.0 14.0 15.0 16.0 18.0","10.1":0.01045,"13.0":0.02091,"17.0":0.01045,"19.0":0.01045},I:{"0":0.0127,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"9":0.04022,"10":0.00575,"11":0.01149,_:"6 7 8 5.5"},K:{"0":0.19994,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.31054},Q:{_:"13.1"},O:{"0":0.01276},H:{"0":0},L:{"0":18.8721}};
      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 ab4a3fef3dd789..c3b9af6e4028eb 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00444,"48":0.00444,"49":0,"50":0,"51":0,"52":0.02663,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01332,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00444,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0222,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00444,"88":0.00444,"89":0,"90":0,"91":0.00444,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.03107,"103":0,"104":0.00444,"105":0.00444,"106":0.00444,"107":0.00444,"108":0.01776,"109":0.00444,"110":0.00444,"111":0.00888,"112":0.00444,"113":0.01332,"114":0.00888,"115":0.23527,"116":0.0799,"117":1.26068,"118":0.13317,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"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.03107,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.04883,"64":0,"65":0.00444,"66":0.04883,"67":0,"68":0.00444,"69":0.00444,"70":0,"71":0,"72":0,"73":0.00444,"74":0.00444,"75":0.00444,"76":0.00444,"77":0.00444,"78":0.00444,"79":0.04439,"80":0.00444,"81":0.01332,"83":0.00444,"84":0,"85":0.01776,"86":0.01776,"87":0.0222,"88":0.00888,"89":0.00888,"90":0.00444,"91":0.00888,"92":0.07546,"93":0.03551,"94":0.00444,"95":0.00888,"96":0.00444,"97":0.00444,"98":0.00444,"99":0.01332,"100":0.00888,"101":0.00888,"102":0.01332,"103":0.04883,"104":0.00444,"105":0.03995,"106":0.05327,"107":0.03551,"108":0.03551,"109":0.93663,"110":0.02663,"111":0.03107,"112":0.04439,"113":0.03995,"114":0.14649,"115":0.16868,"116":7.72386,"117":2.73442,"118":0.00444,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00444,"47":0,"48":0,"49":0,"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.01776,"73":0.00444,"74":0,"75":0,"76":0.07102,"77":0.01776,"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.00444,"95":0.01332,"96":0,"97":0,"98":0,"99":0.00444,"100":0.03995,"101":0.15537,"102":0.2841,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00444,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00888,"86":0,"87":0,"88":0,"89":0,"90":0.07102,"91":0,"92":0.00444,"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.00444,"107":0.00444,"108":0.00444,"109":0.04439,"110":0.00444,"111":0.00444,"112":0.00444,"113":0.00444,"114":0.03107,"115":0.05771,"116":0.88336,"117":0.85229},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00444,"9":0,"10":0,"11":0,"12":0.00444,"13":0.00444,"14":0.03551,"15":0.00888,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00888,"10.1":0,"11.1":0.00888,"12.1":0.01332,"13.1":0.05771,"14.1":0.15093,"15.1":0.01332,"15.2-15.3":0.00888,"15.4":0.01776,"15.5":0.02663,"15.6":0.15093,"16.0":0.01776,"16.1":0.05771,"16.2":0.03995,"16.3":0.09766,"16.4":0.04439,"16.5":0.1598,"16.6":0.67917,"17.0":0.06215,"17.1":0},G:{"8":0.00238,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0095,"6.0-6.1":0.00238,"7.0-7.1":0.00713,"8.1-8.4":0,"9.0-9.2":0.00713,"9.3":0.05464,"10.0-10.2":0.00238,"10.3":0.05464,"11.0-11.2":0.02613,"11.3-11.4":0.08077,"12.0-12.1":0.019,"12.2-12.5":0.30881,"13.0-13.1":0.01425,"13.2":0.01188,"13.3":0.08552,"13.4-13.7":0.06651,"14.0-14.4":0.19241,"14.5-14.8":0.36345,"15.0-15.1":0.12115,"15.2-15.3":0.13065,"15.4":0.1164,"15.5":0.19479,"15.6-15.7":1.31838,"16.0":0.73402,"16.1":1.18298,"16.2":0.52973,"16.3":1.07609,"16.4":0.28743,"16.5":0.89318,"16.6":13.343,"17.0":2.22106,"17.1":0.00238},P:{"4":0.1022,"20":0.08176,"21":0.2044,"22":2.80022,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02044,"12.0":0.01022,"13.0":0.03066,"14.0":0.02044,"15.0":0.02044,"16.0":0.03066,"17.0":0.03066,"18.0":0.03066,"19.0":0.06132},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01191,"4.2-4.3":0.01191,"4.4":0,"4.4.3-4.4.4":0.12502},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00444,"9":0.00444,"10":0,"11":0.13761,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":50.80456},R:{_:"0"},M:{"0":0.33922},Q:{"13.1":0.00556},O:{"0":0.1279},H:{"0":0.2843}};
      +module.exports={C:{"47":0.00481,"48":0.00481,"52":0.05771,"54":0.00481,"55":0.00481,"56":0.00481,"59":0.01924,"66":0.00481,"68":0.00481,"72":0.00481,"78":0.04328,"82":0.00481,"84":0.00481,"87":0.00962,"88":0.00481,"91":0.00481,"96":0.00481,"99":0.00481,"100":0.00481,"102":0.02405,"104":0.00481,"105":0.00481,"106":0.00481,"107":0.00481,"108":0.01924,"109":0.00962,"110":0.00481,"111":0.00962,"112":0.00481,"113":0.01924,"114":0.01443,"115":0.81753,"116":0.08656,"117":0.09618,"118":2.95754,"119":0.64441,"120":0.00481,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 57 58 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 83 85 86 89 90 92 93 94 95 97 98 101 103 121 122 3.5 3.6"},D:{"38":0.00481,"49":0.04809,"59":0.00481,"60":0.04328,"63":0.08656,"65":0.00481,"66":0.08656,"68":0.00481,"74":0.00481,"75":0.00481,"77":0.00481,"79":0.06252,"80":0.00481,"81":0.01443,"83":0.00481,"84":0.00481,"85":0.02405,"86":0.01443,"87":0.04328,"88":0.00962,"89":0.00962,"90":0.00962,"91":0.01443,"92":0.1587,"93":0.06733,"94":0.00481,"95":0.02405,"96":0.00962,"97":0.00962,"98":0.00481,"99":0.01924,"100":0.00962,"101":0.00962,"102":0.01443,"103":0.10099,"104":0.02405,"105":0.03366,"106":0.07694,"107":0.04809,"108":0.0529,"109":2.53434,"110":0.02885,"111":0.06252,"112":0.06733,"113":0.03847,"114":0.15389,"115":0.08656,"116":0.98104,"117":12.7727,"118":14.52318,"119":0.01924,"120":0.00481,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 61 62 64 67 69 70 71 72 73 76 78 121 122"},F:{"28":0.00481,"46":0.00962,"76":0.04809,"85":0.00481,"93":0.00481,"95":0.02885,"101":0.00962,"102":0.92333,"103":0.25488,_:"9 11 12 15 16 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 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00962,"18":0.00481,"85":0.00962,"90":0.09618,"92":0.00481,"106":0.00481,"107":0.00962,"108":0.00481,"109":0.07214,"110":0.00962,"111":0.00481,"112":0.00962,"113":0.00962,"114":0.02405,"115":0.07214,"116":0.04328,"117":1.76971,"118":2.01978,"119":0.00962,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105"},E:{"8":0.00481,"13":0.00962,"14":0.07214,"15":0.01443,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 17.2","9.1":0.00481,"10.1":0.00481,"11.1":0.01924,"12.1":0.02405,"13.1":0.12023,"14.1":0.34625,"15.1":0.02885,"15.2-15.3":0.01924,"15.4":0.03847,"15.5":0.05771,"15.6":0.30778,"16.0":0.04328,"16.1":0.11542,"16.2":0.08175,"16.3":0.19236,"16.4":0.10099,"16.5":0.25007,"16.6":0.94737,"17.0":0.78387,"17.1":0.04809},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00155,"5.0-5.1":0.00155,"6.0-6.1":0.00464,"7.0-7.1":0.01082,"8.1-8.4":0.00155,"9.0-9.2":0.01082,"9.3":0.0371,"10.0-10.2":0.00155,"10.3":0.05411,"11.0-11.2":0.04947,"11.3-11.4":0.017,"12.0-12.1":0.01391,"12.2-12.5":0.24579,"13.0-13.1":0.00773,"13.2":0.04174,"13.3":0.01546,"13.4-13.7":0.04947,"14.0-14.4":0.13604,"14.5-14.8":0.21951,"15.0-15.1":0.08657,"15.2-15.3":0.09894,"15.4":0.10976,"15.5":0.15613,"15.6-15.7":1.08057,"16.0":0.39884,"16.1":0.76366,"16.2":0.37256,"16.3":0.69101,"16.4":0.1484,"16.5":0.39575,"16.6-16.7":7.41249,"17.0":2.64036,"17.1":0.15923,"17.2":0.00464},P:{"4":0.08306,"20":0.06229,"21":0.13497,"22":2.29442,"23":0.46719,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.02076,"12.0":0.01038,"13.0":0.01038,"14.0":0.02076,"15.0":0.02076,"16.0":0.02076,"17.0":0.03115,"18.0":0.02076,"19.0":0.05191},I:{"0":0.04648,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"8":0.00491,"9":0.00491,"11":0.2162,_:"6 7 10 5.5"},K:{"0":0.27551,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.39971},Q:{"13.1":0.00519},O:{"0":0.09344},H:{"0":0.01},L:{"0":33.02348}};
      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 49d388d3a599a1..cfc91ed5a36c65 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00473,"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.04255,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01418,"110":0.00473,"111":0,"112":0,"113":0,"114":0,"115":0.0331,"116":0.01891,"117":0.76121,"118":0.07565,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00946,"80":0.04255,"81":0,"83":0,"84":0,"85":0.00473,"86":0,"87":0.01891,"88":0,"89":0,"90":0.00946,"91":0.00473,"92":0,"93":0,"94":0.00473,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00473,"102":0,"103":0.04728,"104":0,"105":0,"106":0,"107":0.00473,"108":0.00473,"109":0.22222,"110":0,"111":0.00473,"112":0.00946,"113":0.01891,"114":0.17494,"115":0.34514,"116":6.71849,"117":1.98576,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00473,"74":0,"75":0,"76":0,"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.00946,"100":0.09929,"101":0.11347,"102":0.16548,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00473,"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.00473,"101":0,"102":0,"103":0.00473,"104":0,"105":0,"106":0,"107":0,"108":0.00473,"109":0.03782,"110":0,"111":0,"112":0,"113":0,"114":0.01891,"115":0.04728,"116":2.14651,"117":1.79664},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.05674,"15":0.00946,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00473,"11.1":0,"12.1":0.02364,"13.1":0.05674,"14.1":0.14184,"15.1":0.02364,"15.2-15.3":0.04728,"15.4":0.01418,"15.5":0.09456,"15.6":0.31205,"16.0":0.01891,"16.1":0.66192,"16.2":0.12293,"16.3":0.30732,"16.4":0.09456,"16.5":0.25058,"16.6":2.94554,"17.0":0.19385,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.37863,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.04266,"9.3":0.33597,"10.0-10.2":0,"10.3":0.4213,"11.0-11.2":0.01067,"11.3-11.4":0.05866,"12.0-12.1":0,"12.2-12.5":1.09324,"13.0-13.1":0,"13.2":0,"13.3":0.04266,"13.4-13.7":0.08533,"14.0-14.4":0.64528,"14.5-14.8":0.49596,"15.0-15.1":0.06399,"15.2-15.3":0.07466,"15.4":0.32531,"15.5":0.35197,"15.6-15.7":3.19439,"16.0":1.96783,"16.1":2.58111,"16.2":1.11457,"16.3":3.1464,"16.4":0.19198,"16.5":0.68261,"16.6":33.01586,"17.0":1.97317,"17.1":0.02666},P:{"4":0.20435,"20":0.07529,"21":0.08604,"22":3.51703,"5.0-5.4":0.06453,"6.2-6.4":0,"7.2-7.4":0.01076,"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.03227,"17.0":0.01076,"18.0":0.01076,"19.0":0.01076},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.21494},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.3546,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":20.09294},R:{_:"0"},M:{"0":0.28469},Q:{"13.1":0},O:{"0":0.01054},H:{"0":0.02496}};
      +module.exports={C:{"48":0.00429,"53":0.00429,"78":0.00429,"102":0.00429,"109":0.00429,"113":0.00429,"115":0.15888,"117":0.06441,"118":1.66607,"119":0.30917,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 114 116 120 121 122 3.5 3.6"},D:{"49":0.00859,"80":0.06441,"84":0.00429,"85":0.00859,"87":0.00429,"88":0.00429,"90":0.03435,"92":0.00429,"93":0.00429,"94":0.01718,"98":0.00429,"101":0.00429,"103":0.06012,"104":0.00429,"106":0.00429,"107":0.00859,"109":0.36499,"112":0.00859,"113":0.07729,"114":0.08159,"115":0.15029,"116":2.147,"117":9.61427,"118":8.41624,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 83 86 89 91 95 96 97 99 100 102 105 108 110 111 119 120 121 122"},F:{"102":0.74286,"103":0.03006,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"80":0.00429,"88":0.00429,"105":0.00429,"108":0.00859,"109":0.02576,"110":0.00429,"112":0.00429,"114":0.01288,"115":0.00429,"116":0.03435,"117":3.70572,"118":3.5769,_:"12 13 14 15 16 17 18 79 81 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 111 113 119"},E:{"12":0.08159,"13":0.00429,"14":0.08588,"15":0.02576,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00429,"12.1":0.03865,"13.1":0.12023,"14.1":0.23188,"15.1":0.03006,"15.2-15.3":0.13741,"15.4":0.06012,"15.5":0.17176,"15.6":0.89315,"16.0":0.13741,"16.1":0.62692,"16.2":0.17176,"16.3":0.5754,"16.4":0.15458,"16.5":0.36499,"16.6":5.56932,"17.0":1.32255,"17.1":0.09017,"17.2":0.00429},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00373,"5.0-5.1":0.00373,"6.0-6.1":0.0112,"7.0-7.1":0.02614,"8.1-8.4":0.00373,"9.0-9.2":0.02614,"9.3":0.08963,"10.0-10.2":0.00373,"10.3":0.13071,"11.0-11.2":0.11951,"11.3-11.4":0.04108,"12.0-12.1":0.03361,"12.2-12.5":0.5938,"13.0-13.1":0.01867,"13.2":0.10083,"13.3":0.03735,"13.4-13.7":0.11951,"14.0-14.4":0.32864,"14.5-14.8":0.53031,"15.0-15.1":0.20914,"15.2-15.3":0.23901,"15.4":0.26515,"15.5":0.37719,"15.6-15.7":2.61047,"16.0":0.96352,"16.1":1.84488,"16.2":0.90003,"16.3":1.66936,"16.4":0.35852,"16.5":0.95605,"16.6-16.7":17.9073,"17.0":6.37866,"17.1":0.38466,"17.2":0.0112},P:{"4":0.19169,"20":0.0451,"21":0.14659,"22":3.07839,"23":0.64274,"5.0-5.4":0.05638,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","16.0":0.10149},I:{"0":0.01703,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"11":0.01288,_:"6 7 8 9 10 5.5"},K:{"0":0.07418,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.65619},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":14.73223}};
      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 ac6f2f2e7b3543..7abd23ba68fbf7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01426,"74":0,"75":0,"76":0,"77":0,"78":0.0214,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00713,"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.00357,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00357,"115":0.05349,"116":0.04992,"117":0.33164,"118":0.02853,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00357,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"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.00357,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00357,"64":0,"65":0.00357,"66":0,"67":0,"68":0,"69":0.00357,"70":0.0107,"71":0,"72":0,"73":0.0107,"74":0,"75":0.00713,"76":0.01426,"77":0.00357,"78":0,"79":0.02853,"80":0,"81":0.0107,"83":0.05349,"84":0,"85":0.00357,"86":0.00357,"87":0.0107,"88":0.00357,"89":0,"90":0,"91":0.00713,"92":0.00713,"93":0.07489,"94":0.00357,"95":0.01426,"96":0.00357,"97":0,"98":0,"99":0.00357,"100":0.00357,"101":0,"102":0.00357,"103":0.14264,"104":0.00357,"105":0.0107,"106":0.00713,"107":0.00713,"108":0.00713,"109":0.24605,"110":0.00357,"111":0.0107,"112":0.03923,"113":0.02853,"114":0.11055,"115":0.22466,"116":5.25272,"117":1.27306,"118":0.00713,"119":0.00357,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00357,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.01426,"73":0.00357,"74":0,"75":0,"76":0,"77":0.01783,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00713,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00357,"96":0,"97":0,"98":0,"99":0.00357,"100":0.03209,"101":0.14264,"102":0.11411,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00357,"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.00713,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00357,"104":0,"105":0,"106":0,"107":0.01426,"108":0,"109":0.00357,"110":0.00357,"111":0,"112":0.00357,"113":0.00357,"114":0.0214,"115":0.04992,"116":0.99848,"117":0.66684},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00357,"14":0.00357,"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.00713,"13.1":0.02853,"14.1":0.04279,"15.1":0.00357,"15.2-15.3":0.00713,"15.4":0.00713,"15.5":0.01783,"15.6":0.09628,"16.0":0.00357,"16.1":0.03209,"16.2":0.02853,"16.3":0.03923,"16.4":0.0214,"16.5":0.04636,"16.6":0.43862,"17.0":0.02496,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00751,"6.0-6.1":0,"7.0-7.1":0.08515,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08766,"10.0-10.2":0,"10.3":0.1152,"11.0-11.2":0.03506,"11.3-11.4":0.01252,"12.0-12.1":0,"12.2-12.5":0.29552,"13.0-13.1":0.00751,"13.2":0.01753,"13.3":0.02004,"13.4-13.7":0.07012,"14.0-14.4":0.14275,"14.5-14.8":0.26798,"15.0-15.1":0.0576,"15.2-15.3":0.09517,"15.4":0.0551,"15.5":0.09767,"15.6-15.7":2.79246,"16.0":0.64364,"16.1":1.09945,"16.2":0.66368,"16.3":1.02933,"16.4":0.20286,"16.5":0.96922,"16.6":13.37375,"17.0":2.37171,"17.1":0.00751},P:{"4":0.14835,"20":0.12716,"21":0.22252,"22":3.25306,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.40266,"8.2":0,"9.2":0.0106,"10.1":0,"11.1-11.2":0.04239,"12.0":0,"13.0":0.02119,"14.0":0.02119,"15.0":0.0106,"16.0":0.07417,"17.0":0.02119,"18.0":0.03179,"19.0":0.08477},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.06207,"4.4":0,"4.4.3-4.4.4":0.68276},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03209,"5.5":0},S:{"2.5":0.00643,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.94611},R:{_:"0"},M:{"0":0.19302},Q:{"13.1":0},O:{"0":0.3603},H:{"0":0.23147}};
      +module.exports={C:{"48":0.0038,"50":0.0038,"52":0.0076,"56":0.01519,"73":0.04178,"78":0.03418,"86":0.0038,"87":0.0038,"103":0.01139,"111":0.01899,"112":0.0076,"115":0.08735,"116":0.0076,"117":0.02659,"118":0.68364,"119":0.1975,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 113 114 120 121 122 3.5 3.6"},D:{"29":0.0076,"47":0.0038,"49":0.01139,"53":0.0038,"56":0.0038,"60":0.0038,"61":0.0038,"63":0.01519,"65":0.0038,"68":0.0038,"69":0.01519,"70":0.02279,"73":0.02279,"74":0.0038,"75":0.0076,"76":0.06836,"77":0.0038,"79":0.16331,"80":0.0038,"81":0.0076,"83":0.20509,"84":0.0076,"86":0.02659,"87":0.04558,"88":0.01139,"89":0.0038,"90":0.0038,"91":0.01519,"92":0.01139,"93":0.26586,"94":0.0076,"95":0.0076,"96":0.0038,"97":0.0038,"98":0.0038,"99":0.0038,"100":0.0076,"101":0.0038,"102":0.05317,"103":0.32283,"104":0.03418,"105":0.04558,"106":0.0076,"107":0.02659,"108":0.02659,"109":0.67604,"110":0.02659,"111":0.01899,"112":0.06457,"113":0.04937,"114":0.15192,"115":0.10255,"116":1.58756,"117":10.38373,"118":9.38486,"119":0.02279,"120":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 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 62 64 66 67 71 72 78 85 121 122"},F:{"28":0.0076,"85":0.0076,"91":0.03418,"95":0.01139,"100":0.0038,"101":0.01139,"102":0.60768,"103":0.16331,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0038,"15":0.0038,"16":0.0038,"17":0.0038,"18":0.0076,"92":0.01139,"106":0.0038,"107":0.01519,"108":0.0038,"109":0.02279,"110":0.0038,"111":0.0038,"112":0.0038,"113":0.0038,"114":0.0076,"115":0.03038,"116":0.07216,"117":2.61302,"118":2.62442,_:"13 14 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 119"},E:{"10":0.0038,"13":0.0076,"14":0.01139,"15":0.0038,_:"0 4 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.0038,"11.1":0.0038,"12.1":0.01899,"13.1":0.06457,"14.1":0.11394,"15.1":0.01519,"15.2-15.3":0.04558,"15.4":0.02279,"15.5":0.05317,"15.6":0.15952,"16.0":0.01139,"16.1":0.07976,"16.2":0.06457,"16.3":0.08735,"16.4":0.53552,"16.5":0.11394,"16.6":0.99128,"17.0":1.24195,"17.1":0.05317},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0015,"5.0-5.1":0.0015,"6.0-6.1":0.00449,"7.0-7.1":0.01047,"8.1-8.4":0.0015,"9.0-9.2":0.01047,"9.3":0.03589,"10.0-10.2":0.0015,"10.3":0.05234,"11.0-11.2":0.04785,"11.3-11.4":0.01645,"12.0-12.1":0.01346,"12.2-12.5":0.23775,"13.0-13.1":0.00748,"13.2":0.04037,"13.3":0.01495,"13.4-13.7":0.04785,"14.0-14.4":0.13159,"14.5-14.8":0.21233,"15.0-15.1":0.08374,"15.2-15.3":0.0957,"15.4":0.10617,"15.5":0.15103,"15.6-15.7":1.04522,"16.0":0.38579,"16.1":0.73868,"16.2":0.36037,"16.3":0.6684,"16.4":0.14355,"16.5":0.3828,"16.6-16.7":7.16997,"17.0":2.55398,"17.1":0.15402,"17.2":0.00449},P:{"4":0.12713,"20":0.11653,"21":0.15891,"22":2.54251,"23":0.52969,"5.0-5.4":0.01059,"6.2-6.4":0.01059,"7.2-7.4":0.24366,_:"8.2 10.1","9.2":0.02119,"11.1-11.2":0.04238,"12.0":0.01059,"13.0":0.03178,"14.0":0.04238,"15.0":0.02119,"16.0":0.06356,"17.0":0.03178,"18.0":0.03178,"19.0":0.13772},I:{"0":0.06787,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"10":0.00633,"11":0.01266,_:"6 7 8 9 5.5"},K:{"0":0.3039,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0124,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.17986},Q:{_:"13.1"},O:{"0":0.34731},H:{"0":0},L:{"0":44.41576}};
      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 c5985347c752c6..f6b55fd5788b20 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00494,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00247,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00987,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00247,"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.00247,"103":0.00247,"104":0,"105":0,"106":0,"107":0,"108":0.00494,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00247,"115":0.03208,"116":0.0074,"117":0.11846,"118":0.01234,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00494,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00247,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00247,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00247,"56":0,"57":0,"58":0.0074,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00247,"74":0,"75":0,"76":0,"77":0,"78":0.00494,"79":0.00494,"80":0.00247,"81":0.00987,"83":0.00494,"84":0.00247,"85":0.00494,"86":0.01728,"87":0.00494,"88":0.00494,"89":0.00247,"90":0.03208,"91":0,"92":0,"93":0.00247,"94":0.00247,"95":0.00247,"96":0.00247,"97":0,"98":0.0074,"99":0.01974,"100":0.00247,"101":0.00247,"102":0.00494,"103":0.00494,"104":0.00247,"105":0.00987,"106":0.02221,"107":0.00494,"108":0.01234,"109":0.41462,"110":0.00247,"111":0.00494,"112":0.01728,"113":0.0074,"114":0.03208,"115":0.2394,"116":2.43838,"117":0.6861,"118":0.01234,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00247,"73":0,"74":0.00247,"75":0,"76":0,"77":0.01234,"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.00987,"96":0,"97":0.01481,"98":0,"99":0.01974,"100":0.01974,"101":0.02962,"102":0.03208,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00247,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00247,"108":0,"109":0.00494,"110":0,"111":0,"112":0,"113":0.00247,"114":0.00494,"115":0.01234,"116":0.29369,"117":0.19991},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00247,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01234,"6.1":0,"7.1":0,"9.1":0.00247,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0074,"14.1":0.00987,"15.1":0.00247,"15.2-15.3":0.00247,"15.4":0.00247,"15.5":0.00494,"15.6":0.01481,"16.0":0,"16.1":0.00987,"16.2":0.00494,"16.3":0.01728,"16.4":0.00494,"16.5":0.01728,"16.6":0.10859,"17.0":0.0074,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00388,"6.0-6.1":0,"7.0-7.1":0.04461,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03685,"10.0-10.2":0,"10.3":0.0194,"11.0-11.2":0.00388,"11.3-11.4":0,"12.0-12.1":0.00776,"12.2-12.5":0.2638,"13.0-13.1":0.00388,"13.2":0.00194,"13.3":0.48105,"13.4-13.7":0.04073,"14.0-14.4":0.23471,"14.5-14.8":0.27932,"15.0-15.1":0.05237,"15.2-15.3":0.08729,"15.4":0.10668,"15.5":0.16682,"15.6-15.7":1.77872,"16.0":0.64787,"16.1":0.73903,"16.2":0.42868,"16.3":0.92525,"16.4":0.25992,"16.5":0.72546,"16.6":10.59863,"17.0":1.22396,"17.1":0},P:{"4":0.05129,"20":0.08206,"21":0.24617,"22":3.09766,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08206,"8.2":0,"9.2":0.01026,"10.1":0.01026,"11.1-11.2":0.05129,"12.0":0,"13.0":0.04103,"14.0":0.06154,"15.0":0.08206,"16.0":0.0718,"17.0":0.04103,"18.0":0.05129,"19.0":0.10257},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01286,"4.4":0,"4.4.3-4.4.4":0.14144},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00987,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":69.53555},R:{_:"0"},M:{"0":0.15064},Q:{"13.1":0},O:{"0":0.20336},H:{"0":0.20679}};
      +module.exports={C:{"34":0.00505,"52":0.0101,"78":0.00253,"88":0.00253,"94":0.00505,"102":0.00758,"103":0.00253,"105":0.00253,"114":0.00253,"115":0.14398,"116":0.0101,"117":0.02526,"118":0.39153,"119":0.08083,"120":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 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 95 96 97 98 99 100 101 104 106 107 108 109 110 111 112 113 121 122 3.5 3.6"},D:{"11":0.01768,"34":0.00253,"38":0.00253,"47":0.00253,"49":0.01516,"50":0.00253,"55":0.00505,"56":0.00253,"58":0.02526,"63":0.00505,"65":0.00253,"66":0.00505,"68":0.00253,"69":0.00505,"70":0.00253,"71":0.00253,"72":0.00253,"73":0.00505,"74":0.00253,"76":0.00253,"77":0.00253,"78":0.00758,"79":0.01516,"80":0.00253,"81":0.00505,"83":0.01263,"84":0.00253,"85":0.0101,"86":0.00505,"87":0.01263,"88":0.01263,"89":0.00758,"90":0.00505,"91":0.00253,"92":0.00758,"93":0.00758,"94":0.0101,"95":0.00505,"96":0.01516,"97":0.00505,"98":0.02779,"99":0.05052,"100":0.00505,"101":0.00505,"102":0.01263,"103":0.02273,"104":0.00758,"105":0.01516,"106":0.01516,"107":0.0581,"108":0.05557,"109":1.70758,"110":0.02273,"111":0.03536,"112":0.08841,"113":0.01768,"114":0.08083,"115":0.12125,"116":0.51025,"117":7.07533,"118":7.61842,"119":0.06062,"120":0.00505,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 57 59 60 61 62 64 67 75 121 122"},F:{"28":0.00505,"79":0.00505,"82":0.00505,"83":0.00505,"84":0.00253,"85":0.00253,"86":0.00253,"89":0.00253,"94":0.0101,"95":0.02779,"98":0.00253,"99":0.02526,"100":0.01768,"101":0.01516,"102":0.29302,"103":0.0682,_:"9 11 12 15 16 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 87 88 90 91 92 93 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00253,"15":0.00253,"18":0.00758,"90":0.00253,"92":0.02021,"100":0.0101,"105":0.00253,"106":0.00253,"108":0.02779,"109":0.02779,"110":0.00253,"111":0.00253,"112":0.00505,"113":0.00253,"114":0.00758,"115":0.01768,"116":0.03789,"117":1.10134,"118":1.16701,"119":0.00505,_:"13 14 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 107"},E:{"14":0.00758,"15":0.00505,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.06062,"11.1":0.00253,"12.1":0.00253,"13.1":0.02021,"14.1":0.03536,"15.1":0.01263,"15.2-15.3":0.00758,"15.4":0.00505,"15.5":0.02273,"15.6":0.07325,"16.0":0.00505,"16.1":0.02526,"16.2":0.03031,"16.3":0.05052,"16.4":0.03536,"16.5":0.07073,"16.6":0.33091,"17.0":0.19703,"17.1":0.01263},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00142,"5.0-5.1":0.00142,"6.0-6.1":0.00426,"7.0-7.1":0.00993,"8.1-8.4":0.00142,"9.0-9.2":0.00993,"9.3":0.03405,"10.0-10.2":0.00142,"10.3":0.04965,"11.0-11.2":0.04539,"11.3-11.4":0.0156,"12.0-12.1":0.01277,"12.2-12.5":0.22555,"13.0-13.1":0.00709,"13.2":0.0383,"13.3":0.01419,"13.4-13.7":0.04539,"14.0-14.4":0.12483,"14.5-14.8":0.20144,"15.0-15.1":0.07944,"15.2-15.3":0.09079,"15.4":0.10072,"15.5":0.14328,"15.6-15.7":0.99158,"16.0":0.36599,"16.1":0.70077,"16.2":0.34187,"16.3":0.6341,"16.4":0.13618,"16.5":0.36315,"16.6-16.7":6.80202,"17.0":2.42291,"17.1":0.14611,"17.2":0.00426},P:{"4":0.08147,"20":0.07128,"21":0.21385,"22":2.59675,"23":0.43788,_:"5.0-5.4 6.2-6.4 8.2","7.2-7.4":0.09165,"9.2":0.01018,"10.1":0.01018,"11.1-11.2":0.0611,"12.0":0.01018,"13.0":0.04073,"14.0":0.0611,"15.0":0.11202,"16.0":0.08147,"17.0":0.04073,"18.0":0.04073,"19.0":0.11202},I:{"0":0.07436,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"8":0.00253,"11":0.04042,_:"6 7 9 10 5.5"},K:{"0":0.25159,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.19432},Q:{_:"13.1"},O:{"0":0.20927},H:{"0":0.01},L:{"0":58.13235}};
      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 1c8f003e1dbdaf..c041524a213b38 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JP.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JP.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01222,"49":0,"50":0,"51":0,"52":0.03056,"53":0,"54":0.165,"55":0,"56":0.00611,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00611,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03056,"79":0,"80":0,"81":0,"82":0,"83":0.00611,"84":0,"85":0,"86":0,"87":0,"88":0.00611,"89":0,"90":0,"91":0.00611,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00611,"102":0.06111,"103":0,"104":0,"105":0,"106":0.00611,"107":0.00611,"108":0.00611,"109":0.00611,"110":0.00611,"111":0.00611,"112":0.00611,"113":0.01222,"114":0.01222,"115":0.18944,"116":0.10389,"117":1.55219,"118":0.13444,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00611,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00611,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03667,"50":0,"51":0,"52":0.00611,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00611,"66":0,"67":0.00611,"68":0.00611,"69":0.00611,"70":0.00611,"71":0,"72":0,"73":0,"74":0.00611,"75":0.00611,"76":0,"77":0,"78":0.00611,"79":0.01222,"80":0.01833,"81":0.08555,"83":0.01833,"84":0.00611,"85":0.01222,"86":0.01833,"87":0.01222,"88":0.00611,"89":0.01222,"90":0.01222,"91":0.01222,"92":0.01222,"93":0.00611,"94":0.01222,"95":0.01833,"96":0.00611,"97":0.02444,"98":0.01833,"99":0.03056,"100":0.01222,"101":0.01222,"102":0.01833,"103":0.06111,"104":0.01833,"105":0.02444,"106":0.03056,"107":0.02444,"108":0.04278,"109":0.62943,"110":0.03056,"111":0.04278,"112":0.06111,"113":0.08555,"114":0.32388,"115":0.50721,"116":12.8881,"117":3.28772,"118":0.01833,"119":0.00611,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00611,"73":0,"74":0,"75":0,"76":0,"77":0.01222,"78":0,"79":0,"80":0.00611,"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.01222,"96":0,"97":0,"98":0,"99":0,"100":0.01222,"101":0.12833,"102":0.09167,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00611,"18":0.00611,"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.00611,"93":0,"94":0,"95":0,"96":0,"97":0.00611,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00611,"104":0,"105":0.00611,"106":0.00611,"107":0.01222,"108":0.01222,"109":0.21389,"110":0.01222,"111":0.01222,"112":0.01222,"113":0.02444,"114":0.055,"115":0.15278,"116":4.35714,"117":3.13494},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01222,"14":0.03667,"15":0.00611,_:"0","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.01222,"13.1":0.04889,"14.1":0.11,"15.1":0.01222,"15.2-15.3":0.01222,"15.4":0.03056,"15.5":0.04278,"15.6":0.20777,"16.0":0.02444,"16.1":0.04889,"16.2":0.055,"16.3":0.14666,"16.4":0.04889,"16.5":0.15278,"16.6":1.14887,"17.0":0.04889,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.05396,"8.1-8.4":0.02076,"9.0-9.2":0.02076,"9.3":0.07887,"10.0-10.2":0.0083,"10.3":0.09963,"11.0-11.2":0.04151,"11.3-11.4":0.0166,"12.0-12.1":0.02906,"12.2-12.5":0.35285,"13.0-13.1":0.03736,"13.2":0.12038,"13.3":0.02906,"13.4-13.7":0.09132,"14.0-14.4":0.33209,"14.5-14.8":0.69739,"15.0-15.1":0.20756,"15.2-15.3":0.25322,"15.4":0.32794,"15.5":0.45247,"15.6-15.7":2.7771,"16.0":0.81777,"16.1":2.21255,"16.2":1.13326,"16.3":2.17934,"16.4":0.43172,"16.5":1.26194,"16.6":25.53772,"17.0":1.38232,"17.1":0},P:{"4":0,"20":0.02111,"21":0.03167,"22":0.7178,"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.01056,"13.0":0.01056,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01056,"18.0":0,"19.0":0.01056},I:{"0":0,"3":0,"4":0.0171,"2.1":0,"2.2":0.07409,"2.3":0.0114,"4.1":0.02849,"4.2-4.3":0.06839,"4.4":0,"4.4.3-4.4.4":0.15387},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.01778,"10":0,"11":0.27555,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.01556,"11":0},L:{"0":23.84185},R:{_:"0"},M:{"0":0.26834},Q:{"13.1":0.02333},O:{"0":0.19834},H:{"0":0.10309}};
      +module.exports={C:{"48":0.01778,"52":0.03557,"54":0.4031,"56":0.01186,"78":0.02964,"83":0.00593,"88":0.00593,"91":0.00593,"97":0.00593,"101":0.00593,"102":0.03557,"104":0.00593,"105":0.00593,"106":0.00593,"107":0.00593,"108":0.00593,"109":0.01186,"110":0.00593,"111":0.00593,"112":0.00593,"113":0.01778,"114":0.01186,"115":0.31418,"116":0.01778,"117":0.12449,"118":2.22893,"119":0.43867,"120":0.00593,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 98 99 100 103 121 122 3.5 3.6"},D:{"48":0.00593,"49":0.05335,"52":0.01186,"53":0.01186,"54":0.00593,"57":0.00593,"61":0.00593,"65":0.00593,"67":0.00593,"68":0.00593,"69":0.00593,"74":0.00593,"75":0.00593,"76":0.00593,"77":0.05335,"78":0.00593,"79":0.01186,"80":0.05928,"81":0.11856,"83":0.03557,"84":0.00593,"85":0.01186,"86":0.02371,"87":0.01778,"88":0.00593,"89":0.01778,"90":0.01778,"91":0.01778,"92":0.01778,"93":0.00593,"94":0.02371,"95":0.02964,"96":0.01186,"97":0.05335,"98":0.03557,"99":0.03557,"100":0.01778,"101":0.02371,"102":0.03557,"103":0.09485,"104":0.02371,"105":0.0415,"106":0.05928,"107":0.0415,"108":0.07706,"109":0.98405,"110":0.05335,"111":0.07114,"112":0.07706,"113":0.05928,"114":0.27862,"115":0.18377,"116":1.49386,"117":13.43878,"118":12.88154,"119":0.02964,"120":0.01778,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 55 56 58 59 60 62 63 64 66 70 71 72 73 121 122"},F:{"46":0.00593,"80":0.00593,"95":0.01778,"101":0.00593,"102":0.2549,"103":0.16006,_:"9 11 12 15 16 17 18 19 20 21 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00593},B:{"17":0.00593,"18":0.00593,"84":0.00593,"88":0.00593,"91":0.00593,"92":0.00593,"96":0.00593,"97":0.00593,"98":0.00593,"100":0.00593,"101":0.00593,"102":0.00593,"103":0.00593,"105":0.00593,"106":0.00593,"107":0.01186,"108":0.02371,"109":0.32604,"110":0.01778,"111":0.01778,"112":0.01778,"113":0.02964,"114":0.04742,"115":0.06521,"116":0.21341,"117":5.95764,"118":5.96357,"119":0.01186,_:"12 13 14 15 16 79 80 81 83 85 86 87 89 90 93 94 95 99 104"},E:{"13":0.01186,"14":0.05928,"15":0.01186,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 17.2","10.1":0.00593,"11.1":0.00593,"12.1":0.01778,"13.1":0.08892,"14.1":0.18377,"15.1":0.01778,"15.2-15.3":0.02371,"15.4":0.04742,"15.5":0.05928,"15.6":0.35568,"16.0":0.03557,"16.1":0.08299,"16.2":0.07706,"16.3":0.20748,"16.4":0.07114,"16.5":0.21341,"16.6":1.51164,"17.0":0.50981,"17.1":0.0415},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00253,"5.0-5.1":0.00253,"6.0-6.1":0.0076,"7.0-7.1":0.01774,"8.1-8.4":0.00253,"9.0-9.2":0.01774,"9.3":0.06084,"10.0-10.2":0.00253,"10.3":0.08872,"11.0-11.2":0.08111,"11.3-11.4":0.02788,"12.0-12.1":0.02281,"12.2-12.5":0.40304,"13.0-13.1":0.01267,"13.2":0.06844,"13.3":0.02535,"13.4-13.7":0.08111,"14.0-14.4":0.22306,"14.5-14.8":0.35994,"15.0-15.1":0.14195,"15.2-15.3":0.16223,"15.4":0.17997,"15.5":0.25602,"15.6-15.7":1.77184,"16.0":0.65398,"16.1":1.2522,"16.2":0.61089,"16.3":1.13306,"16.4":0.24334,"16.5":0.64891,"16.6-16.7":12.15446,"17.0":4.32947,"17.1":0.26109,"17.2":0.0076},P:{"20":0.01095,"21":0.02189,"22":0.77718,"23":0.16419,_:"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 14.0 15.0 18.0","13.0":0.01095,"16.0":0.01095,"17.0":0.01095,"19.0":0.01095},I:{"0":0.12964,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00039},A:{"6":0.00808,"8":0.00808,"9":0.03233,"10":0.00808,"11":0.56585,_:"7 5.5"},K:{"0":0.11402,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.26468},Q:{"13.1":0.0285},O:{"0":0.18324},H:{"0":0},L:{"0":19.84253}};
      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 39005e16ff3087..80ef0259aee0ff 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"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,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00248,"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.00496,"103":0,"104":0,"105":0,"106":0,"107":0.00248,"108":0.00248,"109":0,"110":0.00248,"111":0.00248,"112":0,"113":0.00496,"114":0.00248,"115":0.07198,"116":0.02234,"117":0.25068,"118":0.02978,"119":0.00248,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00248,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00248,"50":0,"51":0,"52":0,"53":0.00248,"54":0.00248,"55":0,"56":0.00248,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00248,"67":0,"68":0,"69":0,"70":0.00248,"71":0,"72":0.00248,"73":0.00496,"74":0.00248,"75":0,"76":0,"77":0,"78":0,"79":0.00745,"80":0.00248,"81":0.00248,"83":0.00993,"84":0,"85":0,"86":0,"87":0.00745,"88":0.00496,"89":0,"90":0,"91":0.00496,"92":0.00248,"93":0.00248,"94":0.00248,"95":0.00496,"96":0.00745,"97":0.00248,"98":0.00248,"99":0.00496,"100":0.00248,"101":0.00248,"102":0.00248,"103":0.01489,"104":0.00248,"105":0.00496,"106":0.01241,"107":0.00993,"108":0.13899,"109":0.33755,"110":0.00248,"111":0.00993,"112":0.00745,"113":0.00993,"114":0.04716,"115":0.0695,"116":2.41499,"117":0.60809,"118":0.00248,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.01241,"25":0,"26":0.00248,"27":0.00745,"28":0.00496,"29":0,"30":0.00248,"31":0,"32":0.00248,"33":0.00745,"34":0,"35":0,"36":0,"37":0.00496,"38":0.00248,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00496,"47":0.00248,"48":0,"49":0,"50":0.00248,"51":0.00248,"52":0,"53":0,"54":0.00496,"55":0.00248,"56":0,"57":0.00248,"58":0.00993,"60":0.04716,"62":0,"63":0.08687,"64":0.02482,"65":0.01737,"66":0.04964,"67":0.07446,"68":0.03971,"69":0.38223,"70":0.38719,"71":0.47903,"72":2.72524,"73":0.34252,"74":0.00993,"75":0.00248,"76":0.01241,"77":0.11665,"78":0.00496,"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.00745,"96":0,"97":0,"98":0.00248,"99":0.00248,"100":0.01241,"101":0.04716,"102":0.0546,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01737},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00496,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00496,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00248,"108":0,"109":0.00248,"110":0,"111":0,"112":0.00248,"113":0.00248,"114":0.00496,"115":0.01241,"116":0.19111,"117":0.13899},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.00248,"6.1":0,"7.1":0,"9.1":0.00496,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00496,"14.1":0.00496,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00248,"15.6":0.00993,"16.0":0,"16.1":0.00248,"16.2":0.00248,"16.3":0.00496,"16.4":0.00248,"16.5":0.00745,"16.6":0.03723,"17.0":0.00248,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00149,"6.0-6.1":0.00174,"7.0-7.1":0.02211,"8.1-8.4":0,"9.0-9.2":0.00124,"9.3":0.01541,"10.0-10.2":0,"10.3":0.01864,"11.0-11.2":0.00323,"11.3-11.4":0.00919,"12.0-12.1":0.00373,"12.2-12.5":0.11678,"13.0-13.1":0.00075,"13.2":0,"13.3":0.00422,"13.4-13.7":0.00944,"14.0-14.4":0.02659,"14.5-14.8":0.03578,"15.0-15.1":0.02286,"15.2-15.3":0.0169,"15.4":0.03777,"15.5":0.02957,"15.6-15.7":0.33743,"16.0":0.0497,"16.1":0.11182,"16.2":0.0564,"16.3":0.12051,"16.4":0.03653,"16.5":0.09492,"16.6":1.13058,"17.0":0.13716,"17.1":0},P:{"4":0.09154,"20":0.03051,"21":0.0712,"22":0.58994,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09154,"8.2":0,"9.2":0.01017,"10.1":0.01017,"11.1-11.2":0.02034,"12.0":0,"13.0":0.01017,"14.0":0.01017,"15.0":0,"16.0":0.02034,"17.0":0.01017,"18.0":0.02034,"19.0":0.05086},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00599,"4.4":0,"4.4.3-4.4.4":0.07883},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01489,"5.5":0},S:{"2.5":0.00752,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":50.52555},R:{_:"0"},M:{"0":0.15788},Q:{"13.1":0.00752},O:{"0":0.2105},H:{"0":30.3635}};
      +module.exports={C:{"21":0.00227,"34":0.00227,"47":0.00682,"50":0.00227,"52":0.03181,"66":0.00227,"68":0.00227,"71":0.00227,"72":0.00227,"78":0.00454,"87":0.00227,"88":0.00227,"91":0.00227,"99":0.00227,"102":0.01136,"103":0.00227,"107":0.00227,"108":0.00227,"109":0.00227,"110":0.00454,"111":0.00227,"112":0.00227,"113":0.01136,"114":0.00227,"115":0.25674,"116":0.00909,"117":0.06134,"118":0.76566,"119":0.1863,"120":0.00682,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 92 93 94 95 96 97 98 100 101 104 105 106 121 122 3.5 3.6"},D:{"9":0.00227,"11":0.00227,"38":0.00682,"41":0.00227,"43":0.00227,"48":0.00227,"49":0.00454,"50":0.00454,"51":0.00682,"53":0.00227,"54":0.00682,"55":0.00227,"56":0.01136,"58":0.00454,"60":0.00227,"62":0.00227,"63":0.00227,"64":0.00227,"65":0.00454,"66":0.00682,"67":0.00227,"68":0.00227,"69":0.00454,"70":0.00454,"72":0.01136,"73":0.01818,"74":0.00682,"75":0.00227,"76":0.00454,"77":0.00454,"78":0.00227,"79":0.03635,"80":0.00454,"81":0.00682,"83":0.03408,"84":0.00227,"85":0.00454,"86":0.00454,"87":0.02499,"88":0.0159,"89":0.00682,"90":0.00227,"91":0.00682,"92":0.01136,"93":0.01136,"94":0.00454,"95":0.02272,"96":0.01818,"97":0.00682,"98":0.00454,"99":0.00682,"100":0.00682,"101":0.00454,"102":0.01136,"103":0.05453,"104":0.00682,"105":0.01136,"106":0.02954,"107":0.03181,"108":0.80883,"109":1.22234,"110":0.01136,"111":0.04771,"112":0.02499,"113":0.02954,"114":0.13405,"115":0.09997,"116":0.46122,"117":5.45053,"118":5.8095,"119":0.02499,"120":0.00909,_:"4 5 6 7 8 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 47 52 57 59 61 71 121 122"},F:{"28":0.00682,"46":0.00227,"49":0.00227,"72":0.00227,"73":0.00227,"74":0.00227,"77":0.02045,"78":0.00909,"79":0.00227,"85":0.00227,"90":0.00227,"91":0.00227,"93":0.00227,"95":0.02726,"100":0.00227,"101":0.00909,"102":0.24992,"103":0.22266,_:"9 11 12 15 16 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 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 75 76 80 81 82 83 84 86 87 88 89 92 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00682,"13":0.00454,"15":0.00227,"16":0.00454,"17":0.00227,"18":0.0159,"84":0.00227,"89":0.00227,"90":0.00454,"92":0.02045,"100":0.00227,"104":0.00227,"106":0.00227,"107":0.00227,"108":0.00454,"109":0.0159,"110":0.00682,"111":0.00227,"112":0.00454,"113":0.00454,"114":0.00909,"115":0.01363,"116":0.02954,"117":0.64979,"118":0.69523,"119":0.00227,_:"14 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 105"},E:{"12":0.00227,"13":0.00227,"14":0.00227,_:"0 4 5 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1 9.1 10.1 16.0 17.2","5.1":0.01136,"11.1":0.00227,"12.1":0.00227,"13.1":0.0159,"14.1":0.01818,"15.1":0.00227,"15.2-15.3":0.00227,"15.4":0.00227,"15.5":0.00454,"15.6":0.0409,"16.1":0.00909,"16.2":0.00454,"16.3":0.01818,"16.4":0.01363,"16.5":0.02045,"16.6":0.07952,"17.0":0.07952,"17.1":0.00909},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00018,"5.0-5.1":0.00018,"6.0-6.1":0.00053,"7.0-7.1":0.00123,"8.1-8.4":0.00018,"9.0-9.2":0.00123,"9.3":0.00421,"10.0-10.2":0.00018,"10.3":0.00614,"11.0-11.2":0.00561,"11.3-11.4":0.00193,"12.0-12.1":0.00158,"12.2-12.5":0.02789,"13.0-13.1":0.00088,"13.2":0.00474,"13.3":0.00175,"13.4-13.7":0.00561,"14.0-14.4":0.01544,"14.5-14.8":0.02491,"15.0-15.1":0.00982,"15.2-15.3":0.01123,"15.4":0.01245,"15.5":0.01772,"15.6-15.7":0.12261,"16.0":0.04525,"16.1":0.08665,"16.2":0.04227,"16.3":0.07841,"16.4":0.01684,"16.5":0.0449,"16.6-16.7":0.84106,"17.0":0.29959,"17.1":0.01807,"17.2":0.00053},P:{"4":0.1105,"20":0.02009,"21":0.05023,"22":0.52235,"23":0.07032,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.10045,"11.1-11.2":0.02009,"13.0":0.01005,"14.0":0.01005,"16.0":0.02009,"17.0":0.02009,"18.0":0.01005,"19.0":0.04018},I:{"0":0.04613,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"10":0.00265,"11":0.04506,_:"6 7 8 9 5.5"},K:{"0":23.51431,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00773,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.17772},Q:{_:"13.1"},O:{"0":0.19318},H:{"0":8.8},L:{"0":45.45911}};
      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 94adf889918037..25ec098a238ffd 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00661,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.03966,"68":0.05949,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.10576,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00331,"98":0,"99":0,"100":0,"101":0,"102":0.01983,"103":0,"104":0,"105":0,"106":0,"107":0.00661,"108":0.195,"109":0,"110":0,"111":0,"112":0,"113":0.00331,"114":0.00331,"115":0.04627,"116":0.00992,"117":0.08593,"118":0.00661,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01322,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00331,"64":0,"65":0,"66":0,"67":0,"68":0.00331,"69":0,"70":0.00331,"71":0.01983,"72":0,"73":0,"74":0.00331,"75":0.10246,"76":0,"77":0.13551,"78":0,"79":0.23796,"80":0.14542,"81":0.00661,"83":0.00661,"84":0.01983,"85":0.00331,"86":0.01983,"87":0.31728,"88":0.15203,"89":0.00331,"90":0.09585,"91":0.25118,"92":0.01983,"93":0.06941,"94":0.00992,"95":0.18839,"96":0.00331,"97":0.00331,"98":0.05288,"99":0.1983,"100":0.00331,"101":0.00331,"102":0.18178,"103":0.00661,"104":0.00331,"105":0.00992,"106":0.50897,"107":0.00661,"108":0.01322,"109":0.80642,"110":0.00661,"111":0.00992,"112":0.25118,"113":0.01653,"114":0.18508,"115":0.0628,"116":1.96648,"117":0.47592,"118":0.00331,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00331,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.00992,"63":0,"64":0,"65":0.0661,"66":0,"67":0,"68":0,"69":0.00331,"70":0,"71":0,"72":0.07932,"73":0,"74":0,"75":0.00331,"76":0,"77":0.00661,"78":0.00992,"79":0.00331,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.03966,"86":0.00992,"87":0,"88":0,"89":0,"90":0.00331,"91":0,"92":0,"93":0,"94":0,"95":0.07602,"96":0,"97":0,"98":0,"99":0.00331,"100":0.01983,"101":0.11237,"102":0.09915,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00661,"15":0.00331,"16":0,"17":0,"18":0.00331,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.08924,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00661,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.10907,"106":0,"107":0,"108":0,"109":0.00331,"110":0,"111":0.00331,"112":0.00661,"113":0.0661,"114":0.01322,"115":0.00331,"116":0.26771,"117":0.08924},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00331,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.07932,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00331,"14.1":0.00992,"15.1":0.00331,"15.2-15.3":0.00331,"15.4":0.00331,"15.5":0.00661,"15.6":0.01653,"16.0":0.00661,"16.1":0.01653,"16.2":0.00331,"16.3":0.00992,"16.4":0.00661,"16.5":0.01983,"16.6":0.07271,"17.0":0.00661,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00614,"10.0-10.2":0,"10.3":0.00614,"11.0-11.2":0.00307,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.15971,"13.0-13.1":0,"13.2":0.00307,"13.3":15.31396,"13.4-13.7":0.01229,"14.0-14.4":0.15357,"14.5-14.8":0.24571,"15.0-15.1":0.1075,"15.2-15.3":0.14436,"15.4":0.129,"15.5":0.32557,"15.6-15.7":1.32684,"16.0":1.14563,"16.1":1.21934,"16.2":0.67878,"16.3":1.24084,"16.4":1.07499,"16.5":1.21627,"16.6":5.29201,"17.0":0.81699,"17.1":0},P:{"4":0.09993,"20":0.10992,"21":0.15988,"22":0.94929,"5.0-5.4":0.00999,"6.2-6.4":0.01999,"7.2-7.4":0.19985,"8.2":0,"9.2":0.02998,"10.1":0,"11.1-11.2":0.02998,"12.0":0.01999,"13.0":0.02998,"14.0":0.01999,"15.0":0.01999,"16.0":0.09993,"17.0":0.02998,"18.0":0.03997,"19.0":0.1399},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01057,"4.4":0,"4.4.3-4.4.4":0.00604},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.16856,"10":0,"11":0.00992,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":53.99212},R:{_:"0"},M:{"0":0.04687},Q:{"13.1":0.0067},O:{"0":0.44857},H:{"0":0.29157}};
      +module.exports={C:{"38":0.00237,"40":0.00237,"52":0.0071,"78":0.00237,"88":0.00237,"91":0.0071,"94":0.02129,"102":0.00473,"104":0.00473,"112":0.00237,"113":0.00946,"114":0.00237,"115":0.34766,"116":0.00946,"117":0.04021,"118":0.2838,"119":0.06149,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 95 96 97 98 99 100 101 103 105 106 107 108 109 110 111 120 121 122 3.5 3.6"},D:{"39":0.00237,"40":0.00237,"41":0.00237,"42":0.00237,"43":0.00237,"44":0.00473,"45":0.00237,"49":0.03784,"53":0.00473,"57":0.00946,"60":0.0071,"63":0.00946,"64":0.00237,"65":0.00237,"66":0.00237,"68":0.00237,"69":0.00473,"70":0.00237,"71":0.00473,"74":0.00237,"75":0.00237,"77":0.00237,"78":0.00237,"79":0.00946,"80":0.00237,"81":0.02365,"83":0.00946,"84":0.02129,"85":0.01419,"87":0.00946,"88":0.00473,"89":0.01183,"90":0.00473,"91":0.00237,"92":0.00237,"93":0.00237,"94":0.02365,"95":0.00237,"96":0.0071,"97":0.01183,"98":0.00473,"99":0.01419,"100":0.01419,"101":0.02129,"102":0.02838,"103":0.03075,"104":0.01656,"105":0.00473,"106":0.02838,"107":0.03311,"108":0.03548,"109":2.46433,"110":0.02129,"111":0.02365,"112":0.03784,"113":0.03548,"114":0.15136,"115":0.12062,"116":0.47537,"117":5.27868,"118":6.4399,"119":0.00237,"120":0.0071,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 46 47 48 50 51 52 54 55 56 58 59 61 62 67 72 73 76 86 121 122"},F:{"28":0.00473,"42":0.00237,"79":0.03784,"82":0.00237,"85":0.08751,"86":0.04257,"87":0.00237,"95":0.2365,"98":0.00237,"99":0.00473,"100":0.00237,"101":0.01183,"102":0.79228,"103":0.32874,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 88 89 90 91 92 93 94 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00237},B:{"14":0.00473,"18":0.00473,"92":0.00473,"97":0.00237,"101":0.00473,"105":0.00237,"106":0.00473,"107":0.00473,"109":0.00237,"110":0.0071,"112":0.00473,"113":0.00237,"114":0.02602,"115":0.00237,"116":0.21049,"117":0.47773,"118":0.4257,"119":0.00237,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 102 103 104 108 111"},E:{"13":0.00237,"14":0.01419,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.31928,"12.1":0.00237,"13.1":0.00473,"14.1":0.03311,"15.1":0.00237,"15.2-15.3":0.00473,"15.4":0.0071,"15.5":0.00946,"15.6":0.09697,"16.0":0.04967,"16.1":0.03311,"16.2":0.00946,"16.3":0.04257,"16.4":0.0544,"16.5":0.0473,"16.6":0.17265,"17.0":0.17738,"17.1":0.01419},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00131,"5.0-5.1":0.00131,"6.0-6.1":0.00393,"7.0-7.1":0.00918,"8.1-8.4":0.00131,"9.0-9.2":0.00918,"9.3":0.03146,"10.0-10.2":0.00131,"10.3":0.04588,"11.0-11.2":0.04195,"11.3-11.4":0.01442,"12.0-12.1":0.0118,"12.2-12.5":0.20844,"13.0-13.1":0.00655,"13.2":0.0354,"13.3":0.01311,"13.4-13.7":0.04195,"14.0-14.4":0.11536,"14.5-14.8":0.18615,"15.0-15.1":0.07341,"15.2-15.3":0.0839,"15.4":0.09308,"15.5":0.1324,"15.6-15.7":0.91634,"16.0":0.33822,"16.1":0.6476,"16.2":0.31593,"16.3":0.58599,"16.4":0.12585,"16.5":0.3356,"16.6-16.7":6.28591,"17.0":2.23907,"17.1":0.13503,"17.2":0.00393},P:{"4":0.11232,"20":0.13274,"21":0.194,"22":1.19465,"23":0.15316,"5.0-5.4":0.01021,"6.2-6.4":0.04084,"7.2-7.4":0.17358,_:"8.2 10.1","9.2":0.03063,"11.1-11.2":0.04084,"12.0":0.01021,"13.0":0.02042,"14.0":0.04084,"15.0":0.03063,"16.0":0.07147,"17.0":0.03063,"18.0":0.06126,"19.0":0.194},I:{"0":0.0076,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.02602,_:"6 7 8 9 10 5.5"},K:{"0":0.45047,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.04581},Q:{_:"13.1"},O:{"0":0.45047},H:{"0":0},L:{"0":59.85521}};
      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 64b671d41953ff..8b0fab70d185e7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0.00381,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.01142,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00381,"51":0.00381,"52":0.01142,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00381,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01522,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00381,"100":0,"101":0,"102":0.00381,"103":0,"104":0.00381,"105":0.00761,"106":0,"107":0.00381,"108":0.03044,"109":0.00381,"110":0.05708,"111":0.00761,"112":0.03805,"113":0.00381,"114":0.00381,"115":0.05327,"116":0.03044,"117":0.42616,"118":0.04566,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00761,"39":0,"40":0,"41":0.01142,"42":0,"43":0.00381,"44":0.00381,"45":0.00381,"46":0,"47":0.00381,"48":0.00381,"49":0.00381,"50":0,"51":0.00381,"52":0,"53":0,"54":0,"55":0,"56":0.02283,"57":0.00381,"58":0,"59":0,"60":0.00381,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00381,"69":0.00381,"70":0.01142,"71":0.01142,"72":0.00381,"73":0,"74":0,"75":0,"76":0.00381,"77":0,"78":0.00381,"79":0.02283,"80":0.00381,"81":0,"83":0.00381,"84":0.00381,"85":0,"86":0.00761,"87":0.01522,"88":0.00381,"89":0,"90":0.00381,"91":0.00761,"92":0.00381,"93":0,"94":0.01142,"95":0.00381,"96":0.00381,"97":0.01142,"98":0.01142,"99":0.04186,"100":0.00381,"101":0.00761,"102":0.01142,"103":0.0723,"104":0.01142,"105":0.02664,"106":0.04947,"107":0.09893,"108":0.11796,"109":0.33104,"110":0.06849,"111":0.06849,"112":0.14459,"113":0.04566,"114":0.11415,"115":0.23591,"116":6.33913,"117":1.49537,"118":0.01903,"119":0.00761,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00381,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00381,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00381,"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.00381,"72":0.01522,"73":0.00381,"74":0,"75":0,"76":0.00381,"77":0.01522,"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.01142,"92":0.00761,"93":0,"94":0.00761,"95":0.00381,"96":0.03044,"97":0.00381,"98":0,"99":0,"100":0.01522,"101":0.14459,"102":0.14079,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00381,"13":0,"14":0.00381,"15":0,"16":0,"17":0,"18":0.00381,"79":0,"80":0,"81":0,"83":0,"84":0.00381,"85":0,"86":0,"87":0,"88":0,"89":0.01903,"90":0,"91":0,"92":0.01142,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00381,"104":0,"105":0,"106":0.01142,"107":0.02664,"108":0.00761,"109":0.00761,"110":0.01142,"111":0.01142,"112":0.00761,"113":0.00381,"114":0.01142,"115":0.01522,"116":0.36148,"117":0.27777},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00381,"10":0.00381,"11":0,"12":0,"13":0.00381,"14":0.01142,"15":0.00381,_:"0","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.00381,"13.1":0.01142,"14.1":0.01903,"15.1":0.00761,"15.2-15.3":0.00761,"15.4":0.00761,"15.5":0.01522,"15.6":0.10654,"16.0":0.01522,"16.1":0.02664,"16.2":0.02283,"16.3":0.06469,"16.4":0.01522,"16.5":0.04947,"16.6":0.32343,"17.0":0.02283,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01316,"8.1-8.4":0.00658,"9.0-9.2":0.00329,"9.3":0.0724,"10.0-10.2":0.02962,"10.3":0.05595,"11.0-11.2":0.0362,"11.3-11.4":0.0362,"12.0-12.1":0.03291,"12.2-12.5":1.27696,"13.0-13.1":0.01316,"13.2":0.01975,"13.3":0.12835,"13.4-13.7":0.13165,"14.0-14.4":0.63519,"14.5-14.8":1.09924,"15.0-15.1":0.45089,"15.2-15.3":0.32911,"15.4":0.35544,"15.5":0.59899,"15.6-15.7":3.85721,"16.0":1.60607,"16.1":1.88253,"16.2":0.83924,"16.3":2.25772,"16.4":0.57266,"16.5":1.60607,"16.6":13.49365,"17.0":1.16177,"17.1":0},P:{"4":0.07185,"20":0.05132,"21":0.08211,"22":1.34457,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01026,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01026,"13.0":0.01026,"14.0":0,"15.0":0,"16.0":0.03079,"17.0":0.01026,"18.0":0.02053,"19.0":0.07185},I:{"0":0,"3":0,"4":0.01583,"2.1":0,"2.2":0.00791,"2.3":0.01187,"4.1":0.01583,"4.2-4.3":0.03166,"4.4":0,"4.4.3-4.4.4":0.0831},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01962,"9":0.00392,"10":0.00392,"11":1.34613,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.75766},R:{_:"0"},M:{"0":0.19824},Q:{"13.1":0.03098},O:{"0":0.78677},H:{"0":0.41055}};
      +module.exports={C:{"3":0.00332,"4":0.00997,"40":0.00332,"44":0.00332,"50":0.00665,"51":0.01329,"52":0.01994,"57":0.00332,"72":0.00332,"78":0.01329,"88":0.00332,"99":0.00332,"102":0.00332,"104":0.00665,"105":0.03655,"106":0.04985,"107":0.00665,"108":0.03655,"109":0.00665,"110":0.01329,"111":0.00665,"112":0.07975,"113":0.00332,"114":0.00665,"115":0.10634,"116":0.00997,"117":0.04652,"118":1.00355,"119":0.17612,"120":0.01329,_:"2 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 45 46 47 48 49 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 89 90 91 92 93 94 95 96 97 98 100 101 103 121 122 3.5","3.6":0.00332},D:{"38":0.01329,"40":0.00332,"41":0.01662,"43":0.00332,"44":0.00332,"45":0.00332,"46":0.00332,"47":0.00997,"48":0.02326,"49":0.00665,"51":0.00332,"53":0.00332,"56":0.06646,"57":0.00665,"58":0.00665,"61":0.00997,"63":0.00332,"69":0.00332,"70":0.00332,"71":0.03323,"72":0.00665,"74":0.00332,"75":0.00332,"78":0.00332,"79":0.03323,"80":0.00332,"81":0.00332,"83":0.01329,"84":0.00665,"85":0.00332,"86":0.02658,"87":0.02991,"88":0.01329,"89":0.00332,"90":0.00332,"91":0.00997,"92":0.00332,"93":0.00332,"94":0.02326,"95":0.02658,"96":0.00997,"97":0.00997,"98":0.02326,"99":0.02991,"100":0.03988,"101":0.00997,"102":0.02326,"103":0.16283,"104":0.06978,"105":0.17612,"106":0.16283,"107":0.30239,"108":0.35888,"109":0.8673,"110":0.13292,"111":0.11963,"112":0.1595,"113":0.03988,"114":0.11963,"115":0.10301,"116":0.94041,"117":8.51353,"118":9.69319,"119":0.02326,"120":0.03323,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 42 50 52 54 55 59 60 62 64 65 66 67 68 73 76 77 121 122"},F:{"28":0.00332,"44":0.00665,"91":0.01662,"92":0.00332,"93":0.04985,"95":0.01662,"101":0.00332,"102":0.57488,"103":0.23926,_:"9 11 12 15 16 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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00332,"14":0.00665,"16":0.00332,"18":0.00665,"84":0.00665,"89":0.00332,"92":0.03988,"100":0.00332,"103":0.00997,"106":0.0432,"107":0.05317,"108":0.01662,"109":0.01329,"110":0.0432,"111":0.02658,"112":0.01329,"113":0.00665,"114":0.01329,"115":0.02326,"116":0.01994,"117":0.83075,"118":0.84404,"119":0.00665,_:"13 15 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 104 105"},E:{"4":0.00665,"7":0.00332,"9":0.00997,"10":0.00997,"13":0.01662,"14":0.02326,"15":0.00997,_:"0 5 6 8 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.00665,"13.1":0.02658,"14.1":0.05649,"15.1":0.02658,"15.2-15.3":0.01329,"15.4":0.02326,"15.5":0.02991,"15.6":0.23261,"16.0":0.06314,"16.1":0.07643,"16.2":0.03323,"16.3":0.12627,"16.4":0.02991,"16.5":0.08308,"16.6":0.66128,"17.0":0.32565,"17.1":0.01662},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00219,"5.0-5.1":0.00219,"6.0-6.1":0.00658,"7.0-7.1":0.01536,"8.1-8.4":0.00219,"9.0-9.2":0.01536,"9.3":0.05267,"10.0-10.2":0.00219,"10.3":0.0768,"11.0-11.2":0.07022,"11.3-11.4":0.02414,"12.0-12.1":0.01975,"12.2-12.5":0.34891,"13.0-13.1":0.01097,"13.2":0.05925,"13.3":0.02194,"13.4-13.7":0.07022,"14.0-14.4":0.19311,"14.5-14.8":0.3116,"15.0-15.1":0.12289,"15.2-15.3":0.14044,"15.4":0.1558,"15.5":0.22163,"15.6-15.7":1.53388,"16.0":0.56615,"16.1":1.08403,"16.2":0.52885,"16.3":0.98089,"16.4":0.21066,"16.5":0.56176,"16.6-16.7":10.5221,"17.0":3.74802,"17.1":0.22602,"17.2":0.00658},P:{"4":0.07172,"20":0.05123,"21":0.07172,"22":1.045,"23":0.26637,"5.0-5.4":0.01025,_:"6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0","7.2-7.4":0.01025,"13.0":0.01025,"16.0":0.01025,"17.0":0.02049,"18.0":0.02049,"19.0":0.06147},I:{"0":0.08637,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00026},A:{"7":0.00351,"8":0.0667,"9":0.01755,"10":0.02106,"11":2.0046,_:"6 5.5"},K:{"0":0.64777,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.16027},Q:{"13.1":0.05342},O:{"0":0.79468},H:{"0":0},L:{"0":42.68168}};
      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 59663ec072609f..144661f4e84396 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.0098,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.0049,"106":0,"107":0,"108":0,"109":0,"110":0.00735,"111":0.0049,"112":0,"113":0.00245,"114":0,"115":0.02449,"116":0.00245,"117":0.06857,"118":0.00245,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01225,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0049,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00245,"64":0.0049,"65":0,"66":0,"67":0,"68":0,"69":0.00245,"70":0,"71":0,"72":0,"73":0,"74":0.0049,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00245,"86":0,"87":0.0049,"88":0.03918,"89":0,"90":0,"91":0,"92":0.02939,"93":0,"94":0,"95":0,"96":0.0098,"97":0,"98":0,"99":0.00735,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.02204,"106":0.00735,"107":0.00735,"108":0.00245,"109":0.08327,"110":0,"111":0,"112":0.04408,"113":0.0049,"114":0.09551,"115":0.09061,"116":1.51103,"117":0.28164,"118":0.00245,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00245,"64":0,"65":0.0098,"66":0,"67":0.00245,"68":0.01714,"69":0.01959,"70":0.0049,"71":0,"72":0.06612,"73":0.00735,"74":0.03429,"75":0,"76":0.00245,"77":0.05878,"78":0.00245,"79":0.00245,"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.0049,"97":0,"98":0,"99":0,"100":0.00735,"101":0.01714,"102":0.01469,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00245,"13":0.00245,"14":0.0049,"15":0,"16":0.00735,"17":0,"18":0.00245,"79":0,"80":0.0098,"81":0,"83":0,"84":0.00735,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01469,"91":0,"92":0.0098,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0049,"100":0.00245,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.0049,"109":0.03918,"110":0.0098,"111":0.00245,"112":0.0049,"113":0.06612,"114":0.03674,"115":0.06367,"116":0.40653,"117":0.28898},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.00245,"13.1":0,"14.1":0.00245,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00245,"15.6":0.0049,"16.0":0,"16.1":0.00245,"16.2":0,"16.3":0.00245,"16.4":0,"16.5":0,"16.6":0.00245,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.03708,"9.3":0.02475,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.01234,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.00409,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.03708,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0.00825,"15.2-15.3":0.00825,"15.4":0.03708,"15.5":0.01234,"15.6-15.7":0.00825,"16.0":0.02059,"16.1":0.033,"16.2":0.03708,"16.3":0.08658,"16.4":0.05774,"16.5":0.09891,"16.6":0.18965,"17.0":0.00409,"17.1":0},P:{"4":0.05181,"20":0.17617,"21":0.33161,"22":0.71504,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.48706,"8.2":0,"9.2":0.03109,"10.1":0.03109,"11.1-11.2":0.01036,"12.0":0,"13.0":0.01036,"14.0":0.03109,"15.0":0,"16.0":0.17617,"17.0":0.03109,"18.0":0.19689,"19.0":0.19689},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.2149},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},S:{"2.5":0.00755,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":86.01977},R:{_:"0"},M:{"0":0.10571},Q:{"13.1":0},O:{"0":1.83489},H:{"0":2.6808}};
      +module.exports={C:{"54":0.07452,"56":0.00426,"76":0.00426,"105":0.02981,"115":0.0149,"117":0.01065,"118":0.35767,"119":0.00426,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"38":0.00426,"43":0.01065,"64":0.00426,"77":0.01065,"78":0.01065,"80":0.03619,"81":0.01065,"88":0.09581,"90":0.02555,"93":0.01065,"94":0.01065,"95":0.33212,"99":0.02981,"101":0.01065,"103":0.04045,"106":0.00426,"107":0.01916,"109":0.08516,"110":0.02555,"112":0.07452,"113":0.05961,"114":0.17671,"115":0.02981,"116":0.34703,"117":3.73214,"118":1.92887,"120":0.01916,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 79 83 84 85 86 87 89 91 92 96 97 98 100 102 104 105 108 111 119 121 122"},F:{"72":0.00426,"78":0.02981,"101":0.00426,"102":0.31722,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00426,"13":0.0149,"16":0.05535,"18":0.04471,"80":0.00426,"84":0.1469,"89":0.01065,"92":0.7558,"97":0.03619,"99":0.00426,"102":0.0149,"105":0.12561,"107":0.04045,"109":0.02555,"110":0.00426,"111":0.066,"112":0.01065,"113":0.03619,"114":0.0511,"115":0.09581,"116":0.12987,"117":1.83307,"118":0.5429,_:"14 15 17 79 81 83 85 86 87 88 90 91 93 94 95 96 98 100 101 103 104 106 108 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.6 16.0 16.1 16.2 16.3 16.4 17.1 17.2","13.1":0.00426,"14.1":0.02555,"15.5":0.00426,"16.5":0.00426,"16.6":0.12987,"17.0":0.01916},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00013,"5.0-5.1":0.00013,"6.0-6.1":0.0004,"7.0-7.1":0.00094,"8.1-8.4":0.00013,"9.0-9.2":0.00094,"9.3":0.00321,"10.0-10.2":0.00013,"10.3":0.00468,"11.0-11.2":0.00428,"11.3-11.4":0.00147,"12.0-12.1":0.0012,"12.2-12.5":0.02128,"13.0-13.1":0.00067,"13.2":0.00361,"13.3":0.00134,"13.4-13.7":0.00428,"14.0-14.4":0.01178,"14.5-14.8":0.019,"15.0-15.1":0.00749,"15.2-15.3":0.00856,"15.4":0.0095,"15.5":0.01351,"15.6-15.7":0.09353,"16.0":0.03452,"16.1":0.0661,"16.2":0.03225,"16.3":0.05981,"16.4":0.01285,"16.5":0.03425,"16.6-16.7":0.6416,"17.0":0.22854,"17.1":0.01378,"17.2":0.0004},P:{"4":0.03073,"20":0.08196,"21":0.3688,"22":1.00395,_:"23 5.0-5.4 6.2-6.4 8.2","7.2-7.4":0.54295,"9.2":0.15367,"10.1":0.10244,"11.1-11.2":0.04098,"12.0":0.02049,"13.0":0.04098,"14.0":0.11269,"15.0":0.07171,"16.0":0.2766,"17.0":0.02049,"18.0":0.12293,"19.0":0.33807},I:{"0":0.07048,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"11":0.04471,_:"6 7 8 9 10 5.5"},K:{"0":2.69356,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{_:"0"},Q:{_:"13.1"},O:{"0":1.52697},H:{"0":0.14},L:{"0":78.12757}};
      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 fd02cc9b3502cf..edea3d72a6950d 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00361,"67":0,"68":0.00181,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00181,"82":0,"83":0,"84":0.00181,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00181,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00723,"114":0.00542,"115":0.24033,"116":0.02349,"117":0.14456,"118":0.00904,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00181,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00904,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00181,"68":0,"69":0,"70":0.00723,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00181,"80":0.00361,"81":0.01084,"83":0.00181,"84":0.00181,"85":0.00361,"86":0,"87":0,"88":0,"89":0.01265,"90":0.00181,"91":0,"92":0.00723,"93":0,"94":0,"95":0.00181,"96":0,"97":0,"98":0.00181,"99":0.00181,"100":0,"101":0,"102":0,"103":0.00723,"104":0,"105":0,"106":0.00181,"107":0,"108":0.00361,"109":0.25479,"110":0.00181,"111":0,"112":0.03795,"113":0.00723,"114":0.00181,"115":0.03253,"116":0.9035,"117":0.20238,"118":0.00181,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00181,"29":0,"30":0,"31":0,"32":0,"33":0.00181,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00181,"66":0,"67":0,"68":0.00181,"69":0.0777,"70":0.00723,"71":0.00542,"72":0.0777,"73":0.00723,"74":0,"75":0,"76":0,"77":0.00542,"78":0,"79":0.00181,"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.00181,"96":0.00361,"97":0,"98":0,"99":0,"100":0.00723,"101":0.02349,"102":0.02711,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00181,"13":0.00181,"14":0,"15":0,"16":0.00181,"17":0,"18":0.00723,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00181,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00181,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00181,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00181,"110":0.04879,"111":0.00181,"112":0,"113":0.00181,"114":0.00181,"115":0.00904,"116":0.16082,"117":0.16444},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.00542,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00361,"14.1":0,"15.1":0,"15.2-15.3":0.00542,"15.4":0,"15.5":0,"15.6":0.00542,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0.03072,"16.6":0.01084,"17.0":0.00181,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02964,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.05709,"12.2-12.5":0.17237,"13.0-13.1":0.00769,"13.2":0.0022,"13.3":0,"13.4-13.7":0.01537,"14.0-14.4":1.78184,"14.5-14.8":3.00816,"15.0-15.1":0.18993,"15.2-15.3":0.06038,"15.4":0.08014,"15.5":0.01976,"15.6-15.7":1.34928,"16.0":0.18993,"16.1":0.22067,"16.2":0.44244,"16.3":0.97601,"16.4":0.46769,"16.5":1.12312,"16.6":0.59065,"17.0":0.1548,"17.1":0},P:{"4":0.51648,"20":0.04051,"21":0.55698,"22":2.80517,"5.0-5.4":0.01013,"6.2-6.4":0.04051,"7.2-7.4":0.1114,"8.2":0,"9.2":0.01013,"10.1":0,"11.1-11.2":0.39495,"12.0":0,"13.0":0,"14.0":0.02025,"15.0":0,"16.0":0.03038,"17.0":0.07089,"18.0":0.02025,"19.0":0.09114},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02442,"4.4":0,"4.4.3-4.4.4":0.10786},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01807,"5.5":0},S:{"2.5":0.06554,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":78.27341},R:{_:"0"},M:{"0":0.13928},Q:{"13.1":0},O:{"0":0.47519},H:{"0":1.2876}};
      +module.exports={C:{"36":0.00166,"49":0.00166,"56":0.00499,"66":0.00166,"103":0.00166,"115":1.54326,"117":0.04324,"118":0.59203,"119":0.04823,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"37":0.00499,"39":0.00166,"41":0.00499,"51":0.00166,"54":0.00166,"58":0.01164,"78":0.00166,"79":0.00166,"81":0.01663,"83":0.01497,"87":0.00665,"89":0.05654,"90":0.00499,"92":0.00499,"97":0.00166,"98":0.08149,"100":0.00166,"103":0.00665,"105":0.00166,"106":0.02328,"107":0.00665,"109":1.87254,"112":0.04989,"113":0.02328,"114":0.02661,"115":0.05488,"116":0.23116,"117":3.00172,"118":2.44627,"119":0.00166,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 40 42 43 44 45 46 47 48 49 50 52 53 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 84 85 86 88 91 93 94 95 96 99 101 102 104 108 110 111 120 121 122"},F:{"49":0.01663,"79":0.01497,"90":0.00166,"95":0.01497,"102":0.52717,"103":0.12805,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00499,"14":0.02661,"15":0.01164,"18":0.03326,"84":0.00166,"85":0.01164,"89":0.00499,"90":0.0316,"92":0.00665,"93":0.02661,"100":0.00166,"103":0.00166,"107":0.02827,"110":0.01164,"113":0.00499,"114":0.03326,"115":0.02328,"116":0.01497,"117":0.89303,"118":0.51054,_:"12 16 17 79 80 81 83 86 87 88 91 94 95 96 97 98 99 101 102 104 105 106 108 109 111 112 119"},E:{"12":0.00998,_:"0 4 5 6 7 8 9 10 11 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 14.1 15.1 15.4 16.0 16.1 16.2 16.5 17.1 17.2","5.1":0.00998,"11.1":0.00499,"12.1":0.00665,"13.1":0.01164,"15.2-15.3":0.00166,"15.5":0.00665,"15.6":0.0316,"16.3":0.00499,"16.4":0.00166,"16.6":0.02162,"17.0":0.0449},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0009,"5.0-5.1":0.0009,"6.0-6.1":0.00269,"7.0-7.1":0.00628,"8.1-8.4":0.0009,"9.0-9.2":0.00628,"9.3":0.02155,"10.0-10.2":0.0009,"10.3":0.03142,"11.0-11.2":0.02873,"11.3-11.4":0.00988,"12.0-12.1":0.00808,"12.2-12.5":0.14275,"13.0-13.1":0.00449,"13.2":0.02424,"13.3":0.00898,"13.4-13.7":0.02873,"14.0-14.4":0.07901,"14.5-14.8":0.12749,"15.0-15.1":0.05028,"15.2-15.3":0.05746,"15.4":0.06374,"15.5":0.09068,"15.6-15.7":0.62755,"16.0":0.23163,"16.1":0.44351,"16.2":0.21637,"16.3":0.40131,"16.4":0.08619,"16.5":0.22983,"16.6-16.7":4.30489,"17.0":1.53342,"17.1":0.09247,"17.2":0.00269},P:{"4":0.36799,"20":0.03067,"21":0.35777,"22":1.74798,"23":0.01022,"5.0-5.4":0.02044,_:"6.2-6.4 8.2 10.1 12.0 13.0 14.0 15.0","7.2-7.4":0.08178,"9.2":0.07155,"11.1-11.2":0.23511,"16.0":0.02044,"17.0":0.57244,"18.0":0.08178,"19.0":0.06133},I:{"0":0.03317,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.00166,"11":0.04324,_:"6 7 9 10 5.5"},K:{"0":2.04899,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01667,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.05002},Q:{_:"13.1"},O:{"0":0.16672},H:{"0":0.01},L:{"0":71.70615}};
      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 c4ff6d2695df0c..b9d5ecf5576a7e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.04164,"113":0,"114":0,"115":0.22382,"116":0.02082,"117":0.48407,"118":0.01562,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.02082,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.04685,"69":0.02603,"70":0.01562,"71":0.04164,"72":0.04164,"73":0.00521,"74":0.04164,"75":0.07808,"76":0.04685,"77":0.03644,"78":0.03644,"79":0.34353,"80":0.05205,"81":0.04685,"83":0.06767,"84":0.03123,"85":0.04685,"86":0.1041,"87":0.04685,"88":0.06767,"89":0.05205,"90":0.04685,"91":0.02082,"92":0,"93":0.01041,"94":0.00521,"95":0,"96":0,"97":0,"98":0,"99":0.00521,"100":0.00521,"101":0,"102":0,"103":0.03644,"104":0,"105":0.02082,"106":0,"107":0,"108":0.02082,"109":0.44243,"110":0.01041,"111":0,"112":0.04685,"113":0.02603,"114":0.13013,"115":0.3123,"116":8.4269,"117":2.12885,"118":0.00521,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00521,"50":0,"51":0,"52":0,"53":0,"54":0.00521,"55":0.00521,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00521,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0989,"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.00521,"101":0.09369,"102":0.24464,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00521,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0.00521,"81":0.00521,"83":0.01041,"84":0.01041,"85":0.01041,"86":0.00521,"87":0,"88":0,"89":0.00521,"90":0.00521,"91":0,"92":0.04685,"93":0,"94":0,"95":0,"96":0,"97":0.00521,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00521,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.06246,"110":0.01562,"111":0.00521,"112":0,"113":0,"114":1.95708,"115":0.19259,"116":4.13277,"117":1.12949},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01041,"15":0.01562,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.21861,"10.1":0,"11.1":0,"12.1":0.00521,"13.1":0,"14.1":0.03644,"15.1":0.00521,"15.2-15.3":0.03644,"15.4":0.00521,"15.5":0.01041,"15.6":0.53612,"16.0":0,"16.1":0.16136,"16.2":0.01041,"16.3":0.06246,"16.4":0.02082,"16.5":0.7235,"16.6":0.86403,"17.0":0.01041,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02018,"10.0-10.2":0.01413,"10.3":0.28857,"11.0-11.2":0.00404,"11.3-11.4":0.00404,"12.0-12.1":0.00807,"12.2-12.5":0.45404,"13.0-13.1":0,"13.2":0,"13.3":0.01211,"13.4-13.7":0.02623,"14.0-14.4":0.06458,"14.5-14.8":0.08677,"15.0-15.1":0.05852,"15.2-15.3":0.01413,"15.4":0.02825,"15.5":0.11099,"15.6-15.7":0.94037,"16.0":0.32691,"16.1":0.72042,"16.2":0.14328,"16.3":1.02715,"16.4":0.3027,"16.5":0.73858,"16.6":13.09864,"17.0":1.27334,"17.1":0},P:{"4":0.27223,"20":0.05235,"21":0.08376,"22":2.03124,"5.0-5.4":0,"6.2-6.4":0.01047,"7.2-7.4":0.13611,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01047,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.01047,"17.0":0,"18.0":0,"19.0":0.07329},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.33643,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.43255},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06767,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.54735},R:{_:"0"},M:{"0":0.11508},Q:{"13.1":0},O:{"0":0},H:{"0":1.06227}};
      +module.exports={C:{"97":0.00511,"112":0.02045,"115":0.36302,"116":0.01534,"117":0.12783,"118":0.37325,"119":0.09203,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 120 121 122 3.5 3.6"},D:{"29":0.03579,"46":0.00511,"61":0.00511,"63":0.00511,"66":0.00511,"68":0.01023,"69":0.00511,"70":0.01534,"71":0.01023,"72":0.00511,"73":0.00511,"74":0.10226,"75":0.02557,"76":0.02045,"78":0.02045,"79":0.3528,"80":0.01534,"81":0.01023,"83":0.06136,"84":0.01023,"85":0.00511,"86":0.01023,"87":0.01023,"88":0.03068,"89":0.00511,"90":0.00511,"92":0.00511,"93":0.01534,"94":0.02045,"95":0.05113,"97":0.01534,"98":0.00511,"99":0.01023,"100":0.00511,"103":0.28122,"105":0.00511,"106":0.00511,"107":0.01534,"108":0.01023,"109":1.00726,"110":0.00511,"112":0.05624,"113":0.01023,"114":0.06136,"115":0.09715,"116":3.22119,"117":11.43778,"118":7.49055,"119":0.00511,"120":0.00511,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 64 65 67 77 91 96 101 102 104 111 121 122"},F:{"28":0.00511,"54":0.00511,"83":0.01534,"95":0.00511,"102":0.54709,"103":0.02557,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.03068},B:{"18":0.00511,"83":0.00511,"84":0.00511,"85":0.00511,"86":0.00511,"92":0.02557,"97":0.00511,"98":0.00511,"100":0.01534,"108":0.00511,"109":0.06136,"110":0.01023,"112":0.00511,"114":0.00511,"115":0.01023,"116":0.06136,"117":3.7376,"118":2.58207,_:"12 13 14 15 16 17 79 80 81 87 88 89 90 91 93 94 95 96 99 101 102 103 104 105 106 107 111 113 119"},E:{"14":0.05113,"15":0.04602,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 12.1 17.2","9.1":0.05113,"11.1":0.00511,"13.1":0.05113,"14.1":0.05113,"15.1":0.00511,"15.2-15.3":0.03068,"15.4":0.02045,"15.5":4.79088,"15.6":1.32427,"16.0":0.16362,"16.1":2.91952,"16.2":0.04602,"16.3":0.17384,"16.4":0.63401,"16.5":0.79763,"16.6":1.99918,"17.0":0.56243,"17.1":0.06647},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00137,"5.0-5.1":0.00137,"6.0-6.1":0.0041,"7.0-7.1":0.00957,"8.1-8.4":0.00137,"9.0-9.2":0.00957,"9.3":0.03281,"10.0-10.2":0.00137,"10.3":0.04785,"11.0-11.2":0.04375,"11.3-11.4":0.01504,"12.0-12.1":0.0123,"12.2-12.5":0.21737,"13.0-13.1":0.00684,"13.2":0.03691,"13.3":0.01367,"13.4-13.7":0.04375,"14.0-14.4":0.12031,"14.5-14.8":0.19413,"15.0-15.1":0.07656,"15.2-15.3":0.08749,"15.4":0.09706,"15.5":0.13808,"15.6-15.7":0.9556,"16.0":0.35271,"16.1":0.67535,"16.2":0.32947,"16.3":0.61109,"16.4":0.13124,"16.5":0.34998,"16.6-16.7":6.55526,"17.0":2.33501,"17.1":0.14081,"17.2":0.0041},P:{"4":0.07477,"20":0.06409,"21":0.14954,"22":1.86925,"23":0.43794,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.26704,"11.1-11.2":0.01068,"12.0":0.03204,"17.0":0.01068,"19.0":0.01068},I:{"0":0.12153,"3":0,"4":0.00002,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00037},A:{"11":0.0767,_:"6 7 8 9 10 5.5"},K:{"0":1.84202,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.05375},Q:{_:"13.1"},O:{"0":0.00489},H:{"0":0},L:{"0":33.94422}};
      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 f7194d934d8aff..b4533cffd37fe3 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KP.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KP.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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":1.28,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.79886,"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.15887,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":1.11659,"102":0,"103":0,"104":0,"105":0,"106":0.48113,"107":0,"108":0,"109":0.64,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":9.74977,"117":0.31773,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.15887,"116":2.23773,"117":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.15887,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":3.03659,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0.86515,"13.4-13.7":0.43257,"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.43257,"15.6-15.7":6.04995,"16.0":1.29772,"16.1":2.59545,"16.2":5.61738,"16.3":1.7303,"16.4":0,"16.5":7.78025,"16.6":29.38462,"17.0":4.31965,"17.1":0},P:{"4":0,"20":0,"21":0,"22":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,"19.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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":7.00568},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":7.4488},H:{"0":0}};
      +module.exports={C:{"114":1.001,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120 121 122 3.5 3.6"},D:{"101":1.3335,"115":0.665,"116":0.3325,"117":8.9985,"118":1.001,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 108 109 110 111 112 113 114 119 120 121 122"},F:{"95":0.3325,"103":0.665,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":1.001,"109":0.3325,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.2","14.1":1.666,"16.6":6.6675,"17.0":9.667,"17.1":0.3325},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00623,"5.0-5.1":0.00623,"6.0-6.1":0.01869,"7.0-7.1":0.04361,"8.1-8.4":0.00623,"9.0-9.2":0.04361,"9.3":0.14953,"10.0-10.2":0.00623,"10.3":0.21806,"11.0-11.2":0.19937,"11.3-11.4":0.06853,"12.0-12.1":0.05607,"12.2-12.5":0.99061,"13.0-13.1":0.03115,"13.2":0.16822,"13.3":0.0623,"13.4-13.7":0.19937,"14.0-14.4":0.54826,"14.5-14.8":0.8847,"15.0-15.1":0.34889,"15.2-15.3":0.39874,"15.4":0.44235,"15.5":0.62926,"15.6-15.7":4.35494,"16.0":1.6074,"16.1":3.07774,"16.2":1.50149,"16.3":2.78492,"16.4":0.5981,"16.5":1.59494,"16.6-16.7":29.87405,"17.0":10.64127,"17.1":0.64172,"17.2":0.01869},P:{_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{_:"0"},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":2.6975}};
      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 220ccd3e340fcc..e0df45f56e860f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00393,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00393,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.01572,"116":0.00786,"117":0.1965,"118":0.01965,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00393,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00393,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00786,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.02751,"78":0,"79":0.00393,"80":0.00393,"81":0.01572,"83":0.00393,"84":0,"85":0.00393,"86":0.00786,"87":0.00786,"88":0,"89":0.00393,"90":0.02358,"91":0,"92":0,"93":0,"94":0.05502,"95":0.00393,"96":0,"97":0,"98":0.00393,"99":0.00393,"100":0.00786,"101":0.01179,"102":0.01179,"103":0.01179,"104":0.00786,"105":0.00786,"106":0.01179,"107":0.01179,"108":0.02358,"109":0.36156,"110":0.01179,"111":0.02358,"112":0.02751,"113":0.01965,"114":0.07074,"115":0.12969,"116":7.80891,"117":1.88247,"118":0.00393,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00393,"73":0,"74":0,"75":0,"76":0,"77":0.01572,"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.00393,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.02751,"102":0.02751,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00393,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00786,"108":0.00786,"109":0.03537,"110":0.00393,"111":0.00786,"112":0.00786,"113":0.00786,"114":0.02751,"115":0.03144,"116":1.21044,"117":0.97857},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00393,"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.00393,"14.1":0.00786,"15.1":0.01572,"15.2-15.3":0.00393,"15.4":0.00393,"15.5":0.00393,"15.6":0.01965,"16.0":0.00393,"16.1":0.00786,"16.2":0.00786,"16.3":0.02358,"16.4":0.00786,"16.5":0.02751,"16.6":0.20829,"17.0":0.02358,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01049,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00419,"9.3":0.00419,"10.0-10.2":0,"10.3":0.00839,"11.0-11.2":0.01049,"11.3-11.4":0,"12.0-12.1":0.00419,"12.2-12.5":0.04824,"13.0-13.1":0.08599,"13.2":0.0797,"13.3":0.02727,"13.4-13.7":0.01678,"14.0-14.4":0.09858,"14.5-14.8":0.16779,"15.0-15.1":0.06082,"15.2-15.3":0.08599,"15.4":0.10906,"15.5":0.14053,"15.6-15.7":0.69843,"16.0":0.77813,"16.1":1.00884,"16.2":0.60195,"16.3":1.01304,"16.4":0.22442,"16.5":0.74667,"16.6":13.38134,"17.0":1.39476,"17.1":0.0021},P:{"4":0,"20":0.17196,"21":0.47542,"22":14.6875,"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.01012,"13.0":0.03035,"14.0":0.01012,"15.0":0.01012,"16.0":0.04046,"17.0":0.04046,"18.0":0.08092,"19.0":0.07081},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.19179},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06288,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.98756},R:{_:"0"},M:{"0":0.13961},Q:{"13.1":0.00607},O:{"0":0.07284},H:{"0":0.23561}};
      +module.exports={C:{"52":0.00378,"78":0.00378,"95":0.00378,"102":0.00378,"107":0.00378,"109":0.00755,"115":0.04153,"116":0.00378,"117":0.01888,"118":0.37373,"119":0.08305,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 108 110 111 112 113 114 120 121 122 3.5 3.6"},D:{"42":0.01133,"48":0.00378,"49":0.00378,"56":0.00378,"68":0.01133,"70":0.00378,"77":0.06795,"79":0.00755,"80":0.00378,"81":0.0302,"83":0.00378,"85":0.00378,"86":0.01888,"87":0.01133,"88":0.00378,"89":0.00755,"90":0.05663,"91":0.00378,"92":0.00378,"93":0.00378,"94":0.12458,"95":0.00755,"96":0.00378,"97":0.00378,"98":0.01133,"99":0.00378,"100":0.0151,"101":0.0302,"102":0.02643,"103":0.03398,"104":0.01888,"105":0.0151,"106":0.03398,"107":0.02643,"108":0.04908,"109":0.93243,"110":0.01888,"111":0.0453,"112":0.03775,"113":0.03398,"114":0.11325,"115":0.0906,"116":0.74368,"117":11.8535,"118":11.41938,"119":0.01888,"120":0.00755,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 71 72 73 74 75 76 78 84 121 122"},F:{"95":0.00378,"102":0.09438,"103":0.05285,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00378,"92":0.00755,"97":0.00378,"100":0.00378,"103":0.00755,"104":0.00378,"105":0.00378,"106":0.00378,"107":0.01888,"108":0.0151,"109":0.0906,"110":0.01133,"111":0.01888,"112":0.01133,"113":0.0151,"114":0.04908,"115":0.02643,"116":0.06418,"117":2.66515,"118":2.81238,"119":0.00755,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 101 102"},E:{"8":0.00378,"14":0.00755,_:"0 4 5 6 7 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.2","9.1":0.00755,"12.1":0.00378,"13.1":0.00755,"14.1":0.0151,"15.1":0.00378,"15.2-15.3":0.00378,"15.4":0.01133,"15.5":0.01133,"15.6":0.05285,"16.0":0.01133,"16.1":0.0302,"16.2":0.02643,"16.3":0.0604,"16.4":0.0151,"16.5":0.05285,"16.6":0.38128,"17.0":0.24538,"17.1":0.01888},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00137,"5.0-5.1":0.00137,"6.0-6.1":0.0041,"7.0-7.1":0.00957,"8.1-8.4":0.00137,"9.0-9.2":0.00957,"9.3":0.03281,"10.0-10.2":0.00137,"10.3":0.04785,"11.0-11.2":0.04374,"11.3-11.4":0.01504,"12.0-12.1":0.0123,"12.2-12.5":0.21735,"13.0-13.1":0.00684,"13.2":0.03691,"13.3":0.01367,"13.4-13.7":0.04374,"14.0-14.4":0.1203,"14.5-14.8":0.19412,"15.0-15.1":0.07655,"15.2-15.3":0.08749,"15.4":0.09706,"15.5":0.13807,"15.6-15.7":0.95554,"16.0":0.35269,"16.1":0.6753,"16.2":0.32945,"16.3":0.61105,"16.4":0.13123,"16.5":0.34995,"16.6-16.7":6.55481,"17.0":2.33485,"17.1":0.1408,"17.2":0.0041},P:{"20":0.12221,"21":0.2648,"22":12.63905,"23":2.83131,_:"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":0.01018,"13.0":0.01018,"14.0":0.01018,"15.0":0.01018,"16.0":0.03055,"17.0":0.03055,"18.0":0.07129,"19.0":0.06111},I:{"0":0.12387,"3":0,"4":0.00002,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00037},A:{"8":0.00499,"11":0.13469,_:"6 7 9 10 5.5"},K:{"0":0.25523,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.14318},Q:{"13.1":0.00623},O:{"0":0.06225},H:{"0":0},L:{"0":27.87315}};
      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 1b5a749c117f22..652eb2a4416669 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KW.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KW.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00295,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.0059,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.0059,"115":0.01771,"116":0.00886,"117":0.16236,"118":0.01181,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00295,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00295,"48":0,"49":0.00886,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00295,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00295,"65":0,"66":0,"67":0,"68":0.00295,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00295,"76":0,"77":0,"78":0.00295,"79":0.0059,"80":0.00295,"81":0,"83":0,"84":0,"85":0,"86":0.0059,"87":0.0059,"88":0.00886,"89":0,"90":0.00886,"91":0,"92":0.00295,"93":0.00295,"94":0.00295,"95":0.00295,"96":0,"97":0,"98":0.00886,"99":0.00886,"100":0,"101":0.00295,"102":0.01181,"103":0.02362,"104":0.00295,"105":0.00295,"106":0.00886,"107":0.0059,"108":0.01181,"109":0.22435,"110":0.00295,"111":0.01181,"112":0.00886,"113":0.02066,"114":0.05609,"115":0.07675,"116":4.54608,"117":1.07748,"118":0.00295,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0059,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0059,"47":0,"48":0,"49":0,"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.0059,"68":0,"69":0.02362,"70":0.0059,"71":0.02657,"72":0.19188,"73":0.0797,"74":0.00295,"75":0,"76":0,"77":0.02952,"78":0.00295,"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.00886,"96":0,"97":0,"98":0,"99":0.0059,"100":0.01771,"101":0.0797,"102":0.14465,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00295,"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.00295,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00295,"105":0.00295,"106":0,"107":0,"108":0.00886,"109":0.0059,"110":0.00295,"111":0,"112":0.00295,"113":0.00295,"114":0.01771,"115":0.02066,"116":0.41918,"117":0.34834},E:{"4":0,"5":0,"6":0,"7":0.02362,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00295,"14":0.01476,"15":0.0059,_:"0","3.1":0,"3.2":0,"5.1":0.00295,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01181,"14.1":0.07675,"15.1":0.00886,"15.2-15.3":0.00295,"15.4":0.01771,"15.5":0.01771,"15.6":0.05609,"16.0":0.0059,"16.1":0.03247,"16.2":0.01476,"16.3":0.03542,"16.4":0.01771,"16.5":0.04133,"16.6":0.28634,"17.0":0.02657,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00656,"8.1-8.4":0,"9.0-9.2":0.00984,"9.3":0.04922,"10.0-10.2":0,"10.3":0.06235,"11.0-11.2":0.00656,"11.3-11.4":0.01969,"12.0-12.1":0.01313,"12.2-12.5":0.34129,"13.0-13.1":0.05907,"13.2":0.05579,"13.3":0.0361,"13.4-13.7":0.10173,"14.0-14.4":0.40692,"14.5-14.8":0.70883,"15.0-15.1":0.21002,"15.2-15.3":0.26909,"15.4":0.26253,"15.5":0.46927,"15.6-15.7":2.47105,"16.0":1.12559,"16.1":1.54564,"16.2":0.97464,"16.3":1.71956,"16.4":0.52834,"16.5":2.10679,"16.6":16.38505,"17.0":2.52683,"17.1":0.00656},P:{"4":0.0509,"20":0.18325,"21":0.47848,"22":3.66496,"5.0-5.4":0.01018,"6.2-6.4":0,"7.2-7.4":0.13235,"8.2":0,"9.2":0.01018,"10.1":0,"11.1-11.2":0.06108,"12.0":0.02036,"13.0":0.04072,"14.0":0.04072,"15.0":0.03054,"16.0":0.08144,"17.0":0.04072,"18.0":0.0509,"19.0":0.14253},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08066},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00886,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":46.91831},R:{_:"0"},M:{"0":0.11277},Q:{"13.1":0.00705},O:{"0":2.18488},H:{"0":1.76824}};
      +module.exports={C:{"34":0.00276,"48":0.00276,"65":0.00276,"68":0.00276,"78":0.00276,"102":0.00552,"112":0.00276,"115":0.07447,"116":0.00276,"117":0.02758,"118":0.3613,"119":0.06619,"120":0.00276,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 113 114 121 122 3.5 3.6"},D:{"38":0.00552,"47":0.00276,"49":0.01655,"56":0.00552,"58":0.00552,"64":0.00276,"68":0.00552,"74":0.00276,"75":0.00827,"76":0.00276,"78":0.01103,"79":0.02206,"80":0.00552,"81":0.00276,"83":0.00827,"85":0.00276,"86":0.01379,"87":0.01379,"88":0.01103,"89":0.00276,"90":0.02206,"91":0.00552,"92":0.00827,"93":0.01379,"94":0.00827,"95":0.00276,"96":0.00552,"97":0.00276,"98":0.00276,"99":0.01379,"100":0.00552,"101":0.00552,"102":0.01655,"103":0.1379,"104":0.00827,"105":0.00827,"106":0.01103,"107":0.03861,"108":0.01103,"109":0.73363,"110":0.01655,"111":0.02758,"112":0.01931,"113":0.02482,"114":0.1048,"115":0.07447,"116":0.57091,"117":9.28619,"118":8.23539,"119":0.00827,"120":0.00276,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 57 59 60 61 62 63 65 66 67 69 70 71 72 73 77 84 121 122"},F:{"28":0.01379,"46":0.01379,"95":0.01379,"101":0.01931,"102":0.78327,"103":0.11859,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00276,"18":0.01103,"84":0.00276,"91":0.00276,"92":0.00552,"100":0.00276,"104":0.00552,"105":0.01379,"106":0.01379,"107":0.00552,"108":0.00276,"109":0.0331,"110":0.00276,"111":0.00276,"112":0.00276,"113":0.00827,"114":0.01655,"115":0.00827,"116":0.06895,"117":1.40106,"118":1.21628,"119":0.01379,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 89 90 93 94 95 96 97 98 99 101 102 103"},E:{"7":0.09101,"13":0.00276,"14":0.0331,"15":0.01655,_:"0 4 5 6 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00552,"12.1":0.00276,"13.1":0.02482,"14.1":0.28132,"15.1":0.02206,"15.2-15.3":0.00827,"15.4":0.04413,"15.5":0.06619,"15.6":0.15445,"16.0":0.01379,"16.1":0.12411,"16.2":0.04964,"16.3":0.17651,"16.4":0.0524,"16.5":0.09377,"16.6":0.65089,"17.0":0.31717,"17.1":0.02206},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00254,"5.0-5.1":0.00254,"6.0-6.1":0.00762,"7.0-7.1":0.01779,"8.1-8.4":0.00254,"9.0-9.2":0.01779,"9.3":0.06099,"10.0-10.2":0.00254,"10.3":0.08894,"11.0-11.2":0.08132,"11.3-11.4":0.02795,"12.0-12.1":0.02287,"12.2-12.5":0.40405,"13.0-13.1":0.01271,"13.2":0.06861,"13.3":0.02541,"13.4-13.7":0.08132,"14.0-14.4":0.22363,"14.5-14.8":0.36085,"15.0-15.1":0.14231,"15.2-15.3":0.16264,"15.4":0.18043,"15.5":0.25666,"15.6-15.7":1.77631,"16.0":0.65563,"16.1":1.25536,"16.2":0.61243,"16.3":1.13592,"16.4":0.24396,"16.5":0.65055,"16.6-16.7":12.18514,"17.0":4.3404,"17.1":0.26175,"17.2":0.00762},P:{"4":0.0306,"20":0.13258,"21":0.39774,"22":3.27373,"23":0.48953,"5.0-5.4":0.0102,_:"6.2-6.4 10.1 12.0","7.2-7.4":0.14278,"8.2":0.0102,"9.2":0.0102,"11.1-11.2":0.04079,"13.0":0.0306,"14.0":0.04079,"15.0":0.04079,"16.0":0.07139,"17.0":0.04079,"18.0":0.06119,"19.0":0.12238},I:{"0":0.05044,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"11":0.02206,_:"6 7 8 9 10 5.5"},K:{"0":1.79602,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.12311},Q:{"13.1":0.00724},O:{"0":1.73084},H:{"0":0},L:{"0":39.21509}};
      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 7d71e9b6b49da6..89cd4798bc10f1 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KY.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KY.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00629,"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.00629,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00629,"112":0,"113":0,"114":0.01258,"115":0.28296,"116":0.0503,"117":0.91176,"118":0.05659,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00629,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00629,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.08174,"80":0,"81":0.00629,"83":0.00629,"84":0,"85":0,"86":0,"87":0.00629,"88":0,"89":0,"90":0,"91":0.01886,"92":0.06288,"93":0.00629,"94":0,"95":0,"96":0.00629,"97":0,"98":0,"99":0.00629,"100":0.00629,"101":0.01886,"102":0,"103":1.27646,"104":0,"105":0.00629,"106":0,"107":0.03144,"108":0.00629,"109":0.40243,"110":0,"111":0.01258,"112":0.03144,"113":0.03144,"114":0.35842,"115":0.59736,"116":19.74432,"117":3.04339,"118":0,"119":0.00629,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00629,"73":0,"74":0,"75":0,"76":0,"77":0.00629,"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.00629,"96":0,"97":0,"98":0,"99":0.03144,"100":0.06917,"101":0.13205,"102":0.18864,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01258,"110":0.06917,"111":0,"112":0,"113":0,"114":0.10061,"115":0.16349,"116":2.5152,"117":1.6223},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01258,"14":0.01258,"15":0.00629,_:"0","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.06288,"13.1":0.42758,"14.1":0.18235,"15.1":0.00629,"15.2-15.3":0.03144,"15.4":0.06288,"15.5":0.03773,"15.6":0.80486,"16.0":0.01886,"16.1":0.29554,"16.2":0.08174,"16.3":1.52798,"16.4":0.08174,"16.5":0.17606,"16.6":2.68498,"17.0":0.03773,"17.1":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,"8.1-8.4":0.00909,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.04544,"11.0-11.2":0.00606,"11.3-11.4":0.00606,"12.0-12.1":0,"12.2-12.5":0.21204,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.01515,"14.0-14.4":0.04241,"14.5-14.8":0.13025,"15.0-15.1":0.0212,"15.2-15.3":0.0727,"15.4":0.03332,"15.5":0.1454,"15.6-15.7":2.57175,"16.0":0.88148,"16.1":1.12685,"16.2":0.62401,"16.3":1.62363,"16.4":0.1454,"16.5":0.67247,"16.6":19.8349,"17.0":1.58425,"17.1":0.00303},P:{"4":0.0818,"20":0.03068,"21":0.05113,"22":4.09007,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03068,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.07158,"12.0":0,"13.0":0.01023,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0.01023,"19.0":0.0409},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.16462},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.16978,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":23.39747},R:{_:"0"},M:{"0":0.07795},Q:{"13.1":0},O:{"0":0.01114},H:{"0":0.08434}};
      +module.exports={C:{"78":0.01379,"110":0.0069,"114":0.0069,"115":0.24822,"117":0.06206,"118":0.99978,"119":0.38612,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 113 116 120 121 122 3.5 3.6"},D:{"50":0.0069,"63":0.0069,"68":0.02758,"74":0.0069,"76":0.0069,"77":0.0069,"78":0.0069,"79":0.08964,"81":0.0069,"83":0.0069,"87":0.04827,"88":0.0069,"89":0.0069,"90":0.0069,"91":0.0069,"92":0.01379,"93":0.02069,"95":0.02758,"99":0.0069,"101":0.03448,"102":0.02069,"103":0.64813,"104":0.0069,"106":0.01379,"108":0.0069,"109":0.36544,"110":0.0069,"111":0.0069,"112":0.06206,"113":0.02758,"114":1.66859,"115":0.20685,"116":1.379,"117":16.04467,"118":16.24462,"119":0.0069,"120":0.0069,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 70 71 72 73 75 80 84 85 86 94 96 97 98 100 105 107 121 122"},F:{"102":0.84809,"103":0.02758,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"104":0.01379,"109":0.0069,"110":0.09653,"112":0.0069,"113":0.0069,"114":0.0069,"115":0.02758,"116":0.05516,"117":3.24065,"118":3.07517,"119":0.0069,_:"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 105 106 107 108 111"},E:{"14":0.18617,"15":0.02069,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.2","9.1":0.02069,"12.1":0.10343,"13.1":0.59987,"14.1":0.19306,"15.1":0.0069,"15.2-15.3":0.04137,"15.4":0.21375,"15.5":0.02758,"15.6":0.62745,"16.0":0.2827,"16.1":2.45462,"16.2":0.18617,"16.3":8.75665,"16.4":0.08274,"16.5":0.17927,"16.6":7.39144,"17.0":0.75845,"17.1":0.07585},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00139,"5.0-5.1":0.00139,"6.0-6.1":0.00418,"7.0-7.1":0.00976,"8.1-8.4":0.00139,"9.0-9.2":0.00976,"9.3":0.03345,"10.0-10.2":0.00139,"10.3":0.04878,"11.0-11.2":0.0446,"11.3-11.4":0.01533,"12.0-12.1":0.01254,"12.2-12.5":0.22162,"13.0-13.1":0.00697,"13.2":0.03763,"13.3":0.01394,"13.4-13.7":0.0446,"14.0-14.4":0.12266,"14.5-14.8":0.19792,"15.0-15.1":0.07805,"15.2-15.3":0.08921,"15.4":0.09896,"15.5":0.14078,"15.6-15.7":0.97429,"16.0":0.35961,"16.1":0.68855,"16.2":0.33591,"16.3":0.62304,"16.4":0.13381,"16.5":0.35682,"16.6-16.7":6.68344,"17.0":2.38067,"17.1":0.14356,"17.2":0.00418},P:{"4":0.08331,"20":0.02083,"21":0.02083,"22":2.6556,"23":0.63526,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 15.0 18.0","7.2-7.4":0.02083,"11.1-11.2":0.04166,"14.0":0.01041,"16.0":0.02083,"17.0":0.01041,"19.0":0.01041},I:{"0":0.00618,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.04827,_:"6 7 8 9 10 5.5"},K:{"0":0.02795,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.11178},Q:{_:"13.1"},O:{"0":0.05279},H:{"0":0},L:{"0":13.54452}};
      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 be9b18388962b2..34508aa4cb13cd 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00677,"47":0,"48":0.00677,"49":0,"50":0,"51":0,"52":0.01015,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01692,"69":0.00677,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00338,"77":0,"78":0.03722,"79":0.01692,"80":0,"81":0,"82":0.03046,"83":0,"84":0,"85":0.00338,"86":0,"87":0,"88":0.00677,"89":0,"90":0,"91":0,"92":0,"93":0.01015,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00338,"100":0,"101":0,"102":0.00338,"103":0.00338,"104":0,"105":0,"106":0,"107":0.00338,"108":0,"109":0,"110":0,"111":0.00338,"112":0,"113":0,"114":0.03046,"115":0.09137,"116":0.02369,"117":0.17258,"118":0.01354,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00338,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00338,"46":0,"47":0,"48":0,"49":0.01354,"50":0,"51":0.03046,"52":0,"53":0,"54":0,"55":0,"56":0.00338,"57":0,"58":0,"59":0,"60":0,"61":0.00338,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00338,"70":0,"71":0,"72":0,"73":0.00677,"74":0.03722,"75":0.06768,"76":0.05414,"77":0.05414,"78":0.06091,"79":0.05076,"80":0.11167,"81":0.04738,"83":0.05753,"84":0.06091,"85":0.03722,"86":0.05753,"87":0.0643,"88":0.08798,"89":0.04061,"90":0.26395,"91":0.02707,"92":0.01015,"93":0.16243,"94":0.00677,"95":0.00677,"96":0.02369,"97":0.0643,"98":0.03046,"99":0.03722,"100":0.03384,"101":0.04399,"102":0.05753,"103":0.0203,"104":0.01692,"105":0.06091,"106":0.06768,"107":0.22673,"108":0.06768,"109":0.74448,"110":0.03046,"111":0.0846,"112":0.04399,"113":0.03722,"114":0.31471,"115":0.17597,"116":2.52108,"117":0.58205,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00677,"55":0,"56":0,"57":0,"58":0,"60":0.0203,"62":0.02369,"63":0.00677,"64":0.00677,"65":0.00677,"66":0.01015,"67":0.01015,"68":0.00677,"69":0,"70":0.00677,"71":0,"72":0.00677,"73":0.00338,"74":0.01015,"75":0,"76":0.01015,"77":0.02369,"78":0,"79":0.00677,"80":0.0203,"81":0,"82":0,"83":0.00677,"84":0.00677,"85":0.01354,"86":0.00677,"87":0.00338,"88":0,"89":0,"90":0,"91":0.00677,"92":0.01354,"93":0,"94":0,"95":0.24365,"96":0,"97":0.01692,"98":0,"99":0.00677,"100":0.04399,"101":0.20304,"102":0.1692,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01015,"18":0.04738,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01354,"89":0.00338,"90":0.07106,"91":0,"92":0.00338,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00338,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00338,"108":0,"109":0.00677,"110":0,"111":0.01692,"112":0.00338,"113":0.00338,"114":0.01692,"115":0.01692,"116":0.3181,"117":0.22673},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00338,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01354,"6.1":0,"7.1":0,"9.1":0.00338,"10.1":0,"11.1":0,"12.1":0.00677,"13.1":0.00338,"14.1":0.01354,"15.1":0.00338,"15.2-15.3":0.00338,"15.4":0.00338,"15.5":0.00677,"15.6":0.03384,"16.0":0.00338,"16.1":0.01692,"16.2":0.01354,"16.3":0.02369,"16.4":0.0203,"16.5":0.03384,"16.6":0.13536,"17.0":0.0203,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00681,"9.0-9.2":0,"9.3":0.02382,"10.0-10.2":0,"10.3":0.01021,"11.0-11.2":0.01361,"11.3-11.4":0.01021,"12.0-12.1":0.00681,"12.2-12.5":0.17696,"13.0-13.1":0,"13.2":0,"13.3":12.93153,"13.4-13.7":0.03063,"14.0-14.4":0.16335,"14.5-14.8":0.31989,"15.0-15.1":0.1157,"15.2-15.3":0.13952,"15.4":0.18717,"15.5":0.34711,"15.6-15.7":1.38503,"16.0":1.52116,"16.1":1.51095,"16.2":0.895,"16.3":1.52456,"16.4":0.42198,"16.5":1.27614,"16.6":9.49106,"17.0":1.36462,"17.1":0},P:{"4":0.06146,"20":0.13317,"21":0.16391,"22":1.53662,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05122,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02049,"12.0":0,"13.0":0.01024,"14.0":0.02049,"15.0":0.01024,"16.0":0.04098,"17.0":0.03073,"18.0":0.06146,"19.0":0.08195},I:{"0":0,"3":0,"4":0.0039,"2.1":0,"2.2":0.00195,"2.3":0.00195,"4.1":0.00585,"4.2-4.3":0.00585,"4.4":0,"4.4.3-4.4.4":0.02728},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01015,"9":0.01015,"10":0.00677,"11":0.03722,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.6996},R:{_:"0"},M:{"0":0.05293},Q:{"13.1":0},O:{"0":0.4565},H:{"0":0.28186}};
      +module.exports={C:{"47":0.00326,"48":0.00326,"50":0.00326,"51":0.00652,"52":0.04237,"56":0.00326,"59":0.00326,"62":0.00326,"72":0.00326,"99":0.00652,"101":0.01304,"102":0.00326,"104":0.00652,"107":0.00978,"108":0.00326,"109":0.00326,"111":0.00652,"112":0.00326,"113":0.00326,"114":0.00326,"115":0.34871,"116":0.00652,"117":0.03911,"118":0.69743,"119":0.1271,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 60 61 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 103 105 106 110 120 121 122 3.5 3.6"},D:{"22":0.00326,"26":0.00326,"34":0.00652,"35":0.01304,"38":0.00326,"40":0.00652,"41":0.00326,"43":0.00326,"44":0.00326,"45":0.00326,"46":0.00326,"47":0.00326,"48":0.00326,"49":0.0163,"51":0.00652,"53":0.00652,"64":0.00978,"66":0.00652,"67":0.00326,"68":0.00326,"69":0.00326,"70":0.00326,"71":0.00326,"72":0.00652,"73":0.00326,"74":0.0163,"75":0.00652,"76":0.00326,"77":0.00652,"78":0.00652,"79":0.03259,"80":0.00978,"81":0.00326,"83":0.01955,"84":0.00652,"85":0.02933,"86":0.01304,"87":0.01304,"88":0.01304,"89":0.00652,"90":0.00978,"91":0.06192,"92":0.00652,"93":0.00326,"94":0.00652,"95":0.00652,"96":0.00978,"97":0.04563,"98":0.00652,"99":0.01304,"100":0.01955,"101":0.00978,"102":0.05214,"103":0.08473,"104":0.00978,"105":0.03911,"106":0.15643,"107":0.03911,"108":0.11407,"109":2.52898,"110":0.06518,"111":0.06192,"112":0.07496,"113":0.09777,"114":0.15317,"115":0.0717,"116":1.05266,"117":7.00033,"118":6.81131,"119":0.00978,"120":0.00326,_:"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 42 50 52 54 55 56 57 58 59 60 61 62 63 65 121 122"},F:{"36":0.00978,"56":0.00652,"70":0.00326,"77":0.00326,"78":0.00326,"79":0.02933,"82":0.00326,"83":0.00326,"84":0.0163,"85":0.05214,"86":0.00652,"87":0.00326,"88":0.00326,"93":0.00326,"95":0.34545,"96":0.00978,"99":0.00652,"100":0.00326,"101":0.0163,"102":1.39485,"103":0.56055,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 80 81 89 90 91 92 94 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00652,"84":0.00326,"89":0.00652,"90":0.00326,"92":0.00978,"100":0.00326,"107":0.00652,"108":0.00978,"109":0.01304,"110":0.00326,"111":0.00326,"112":0.00326,"113":0.00652,"114":0.00652,"115":0.00652,"116":0.03259,"117":1.17324,"118":1.07221,"119":0.00326,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106"},E:{"9":0.00652,"13":0.00326,"14":0.01955,_:"0 4 5 6 7 8 10 11 12 15 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.07496,"9.1":0.01304,"12.1":0.00652,"13.1":0.03585,"14.1":0.04563,"15.1":0.01304,"15.2-15.3":0.00652,"15.4":0.01955,"15.5":0.02281,"15.6":0.11732,"16.0":0.00978,"16.1":0.06518,"16.2":0.06192,"16.3":0.09777,"16.4":0.10103,"16.5":0.12058,"16.6":0.46604,"17.0":0.39434,"17.1":0.04889},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00199,"5.0-5.1":0.00199,"6.0-6.1":0.00597,"7.0-7.1":0.01392,"8.1-8.4":0.00199,"9.0-9.2":0.01392,"9.3":0.04773,"10.0-10.2":0.00199,"10.3":0.06961,"11.0-11.2":0.06364,"11.3-11.4":0.02188,"12.0-12.1":0.0179,"12.2-12.5":0.31623,"13.0-13.1":0.00994,"13.2":0.0537,"13.3":0.01989,"13.4-13.7":0.06364,"14.0-14.4":0.17502,"14.5-14.8":0.28242,"15.0-15.1":0.11138,"15.2-15.3":0.12729,"15.4":0.14121,"15.5":0.20088,"15.6-15.7":1.39023,"16.0":0.51313,"16.1":0.98251,"16.2":0.47932,"16.3":0.88903,"16.4":0.19093,"16.5":0.50916,"16.6-16.7":9.53673,"17.0":3.39702,"17.1":0.20486,"17.2":0.00597},P:{"4":0.07132,"20":0.12226,"21":0.19358,"22":1.70147,"23":0.25471,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.07132,"9.2":0.01019,"11.1-11.2":0.02038,"12.0":0.01019,"13.0":0.03057,"14.0":0.02038,"15.0":0.01019,"16.0":0.04075,"17.0":0.04075,"18.0":0.05094,"19.0":0.08151},I:{"0":0.03354,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"6":0.00674,"8":0.01686,"9":0.00337,"10":0.00337,"11":0.06743,_:"7 5.5"},K:{"0":0.41126,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.10113},Q:{_:"13.1"},O:{"0":0.58655},H:{"0":0},L:{"0":42.24852}};
      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 ab762ff7020934..83a43778db93de 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00265,"40":0.00265,"41":0.00265,"42":0,"43":0.00265,"44":0,"45":0,"46":0,"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.0053,"101":0,"102":0.00265,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.0106,"111":0,"112":0,"113":0.00265,"114":0.0053,"115":0.04768,"116":0.01325,"117":0.18013,"118":0.01854,"119":0,"120":0,"3.5":0,"3.6":0.00265},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00265,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.04238,"38":0,"39":0.00265,"40":0.00265,"41":0.00265,"42":0.00265,"43":0.00795,"44":0.0053,"45":0.0053,"46":0.00265,"47":0.00265,"48":0,"49":0.00265,"50":0,"51":0.0053,"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.00265,"64":0,"65":0.00265,"66":0,"67":0,"68":0.00265,"69":0.0053,"70":0.00265,"71":0,"72":0,"73":0,"74":0.00265,"75":0.00265,"76":0,"77":0,"78":0.0053,"79":0.0053,"80":0.0053,"81":0.00265,"83":0.02914,"84":0.00265,"85":0.00265,"86":0.0053,"87":0.0106,"88":0.00795,"89":0.0053,"90":0.01325,"91":0.00795,"92":0.0053,"93":0.00265,"94":0.01325,"95":0.00265,"96":0.00265,"97":0.00795,"98":0.00265,"99":0.02119,"100":0.0053,"101":0.00265,"102":0.02384,"103":0.04238,"104":0.0053,"105":0.00795,"106":0.0053,"107":0.02119,"108":0.03179,"109":0.55629,"110":0.0053,"111":0.01589,"112":0.01589,"113":0.03974,"114":0.06358,"115":0.09801,"116":2.75496,"117":0.6702,"118":0.00795,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00265,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00265,"70":0,"71":0,"72":0.00795,"73":0,"74":0,"75":0,"76":0,"77":0.00265,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00265,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01325,"96":0,"97":0,"98":0,"99":0,"100":0.00265,"101":0.04768,"102":0.04768,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00265},B:{"12":0.00265,"13":0,"14":0.00265,"15":0.00265,"16":0,"17":0,"18":0.01325,"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.00795,"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.00265,"107":0,"108":0.0053,"109":0.0106,"110":0,"111":0,"112":0.01589,"113":0.0053,"114":0.0053,"115":0.01854,"116":0.43179,"117":0.25166},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00795,"10":0,"11":0,"12":0,"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,"11.1":0,"12.1":0.00265,"13.1":0.0053,"14.1":0.01854,"15.1":0.00265,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.03179,"16.0":0,"16.1":0.0053,"16.2":0.00265,"16.3":0.02119,"16.4":0.0053,"16.5":0.01589,"16.6":0.11921,"17.0":0.01854,"17.1":0},G:{"8":0.00231,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00231,"6.0-6.1":0.01157,"7.0-7.1":0.01851,"8.1-8.4":0.03238,"9.0-9.2":0.00231,"9.3":0.08327,"10.0-10.2":0,"10.3":0.07633,"11.0-11.2":0.06014,"11.3-11.4":0.00925,"12.0-12.1":0.03238,"12.2-12.5":0.79803,"13.0-13.1":0.01388,"13.2":0.00463,"13.3":0.04395,"13.4-13.7":0.25445,"14.0-14.4":0.6153,"14.5-14.8":0.60142,"15.0-15.1":0.20356,"15.2-15.3":0.31227,"15.4":0.30302,"15.5":0.49733,"15.6-15.7":3.29854,"16.0":0.83504,"16.1":1.28842,"16.2":0.70319,"16.3":1.32312,"16.4":0.5806,"16.5":1.36475,"16.6":8.26023,"17.0":1.24447,"17.1":0.00463},P:{"4":0.15413,"20":0.1233,"21":0.30825,"22":1.61318,"5.0-5.4":0,"6.2-6.4":0.03083,"7.2-7.4":0.11303,"8.2":0,"9.2":0.02055,"10.1":0,"11.1-11.2":0.03083,"12.0":0.01028,"13.0":0.01028,"14.0":0.02055,"15.0":0.09248,"16.0":0.0411,"17.0":0.0411,"18.0":0.05138,"19.0":0.06165},I:{"0":0,"3":0.0061,"4":0.02745,"2.1":0.0122,"2.2":0.01525,"2.3":0.02135,"4.1":0.0244,"4.2-4.3":0.0427,"4.4":0,"4.4.3-4.4.4":0.13115},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0031,"8":0.03724,"9":0.00621,"10":0.00621,"11":0.05275,"5.5":0},S:{"2.5":0.00735,_:"3.0-3.1"},J:{"7":0,"10":0.0147},N:{"10":0.0196,"11":0.0098},L:{"0":64.60617},R:{_:"0"},M:{"0":0.09556},Q:{"13.1":0.05881},O:{"0":1.04384},H:{"0":0.18791}};
      +module.exports={C:{"2":0.00228,"3":0.00456,"4":0.00228,"5":0.00228,"21":0.00228,"26":0.00228,"30":0.00228,"31":0.00228,"36":0.00228,"37":0.00228,"38":0.00228,"39":0.01367,"40":0.00456,"42":0.00228,"44":0.00228,"45":0.00228,"47":0.00228,"52":0.00684,"72":0.00228,"88":0.00228,"100":0.0114,"101":0.00228,"104":0.00228,"106":0.05242,"107":0.02735,"108":0.00228,"109":0.00228,"110":0.08888,"112":0.00228,"114":0.00228,"115":0.10028,"116":0.00456,"117":0.02051,"118":0.49454,"119":0.07521,_:"6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 27 28 29 32 33 34 35 41 43 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 102 103 105 111 113 120 121 122","3.5":0.00228,"3.6":0.00456},D:{"11":0.00228,"21":0.00228,"22":0.00228,"28":0.00228,"31":0.00228,"32":0.00228,"33":0.00228,"36":0.00456,"37":0.09572,"38":0.00228,"39":0.00228,"40":0.00228,"41":0.0114,"42":0.00228,"43":0.01823,"44":0.00912,"45":0.0114,"46":0.00912,"47":0.00684,"49":0.00228,"51":0.01823,"55":0.00228,"56":0.00456,"58":0.00228,"61":0.00228,"63":0.00228,"64":0.00228,"65":0.00684,"66":0.00228,"68":0.00228,"69":0.00228,"70":0.0114,"71":0.00228,"72":0.00456,"74":0.00912,"75":0.00684,"76":0.00228,"77":0.00228,"78":0.00456,"79":0.01367,"80":0.00228,"83":0.04558,"84":0.00228,"85":0.00228,"86":0.02963,"87":0.00912,"88":0.01595,"89":0.00912,"90":0.0114,"91":0.00684,"92":0.01367,"93":0.00228,"94":0.01595,"95":0.00228,"96":0.02963,"97":0.00684,"98":0.05014,"99":0.07065,"100":0.00684,"101":0.00456,"102":0.02279,"103":0.05925,"104":0.0114,"105":0.02735,"106":0.01367,"107":0.02735,"108":0.04786,"109":1.43805,"110":0.01367,"111":0.03874,"112":0.05925,"113":0.06381,"114":0.09344,"115":0.07977,"116":0.37604,"117":5.89577,"118":5.75448,"119":0.00684,"120":0.00912,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 23 24 25 26 27 29 30 34 35 48 50 52 53 54 57 59 60 62 67 73 81 121 122"},F:{"30":0.00228,"31":0.00228,"89":0.00456,"94":0.00228,"95":0.04102,"102":0.19372,"103":0.11851,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 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 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00456},B:{"12":0.00456,"14":0.00228,"15":0.00456,"17":0.00228,"18":0.02051,"84":0.00228,"89":0.00228,"90":0.00228,"92":0.04558,"100":0.00456,"102":0.00228,"108":0.00228,"109":0.02507,"110":0.00228,"111":0.00456,"112":0.00228,"113":0.00912,"114":0.0114,"115":0.00912,"116":0.03646,"117":1.15545,"118":1.10304,"119":0.00684,_:"13 16 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 103 104 105 106 107"},E:{"5":0.00228,"8":0.0114,"9":0.02051,"13":0.00456,"14":0.00912,_:"0 4 6 7 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.2","5.1":0.00228,"13.1":0.0114,"14.1":0.14586,"15.1":0.00912,"15.2-15.3":0.00228,"15.4":0.00684,"15.5":0.00684,"15.6":0.10939,"16.0":0.01823,"16.1":0.03191,"16.2":0.03874,"16.3":0.04558,"16.4":0.02507,"16.5":0.02963,"16.6":0.24841,"17.0":0.26664,"17.1":0.02963},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00176,"5.0-5.1":0.00176,"6.0-6.1":0.00529,"7.0-7.1":0.01234,"8.1-8.4":0.00176,"9.0-9.2":0.01234,"9.3":0.04232,"10.0-10.2":0.00176,"10.3":0.06172,"11.0-11.2":0.05643,"11.3-11.4":0.0194,"12.0-12.1":0.01587,"12.2-12.5":0.28039,"13.0-13.1":0.00882,"13.2":0.04761,"13.3":0.01763,"13.4-13.7":0.05643,"14.0-14.4":0.15519,"14.5-14.8":0.25041,"15.0-15.1":0.09875,"15.2-15.3":0.11286,"15.4":0.12521,"15.5":0.17811,"15.6-15.7":1.23267,"16.0":0.45498,"16.1":0.87116,"16.2":0.425,"16.3":0.78827,"16.4":0.16929,"16.5":0.45145,"16.6-16.7":8.45587,"17.0":3.01202,"17.1":0.18164,"17.2":0.00529},P:{"4":0.12256,"20":0.09192,"21":0.26555,"22":1.57286,"23":0.23491,"5.0-5.4":0.01021,"6.2-6.4":0.01021,"7.2-7.4":0.11235,_:"8.2 10.1 12.0","9.2":0.02043,"11.1-11.2":0.02043,"13.0":0.03064,"14.0":0.05107,"15.0":0.02043,"16.0":0.14299,"17.0":0.05107,"18.0":0.05107,"19.0":0.10213},I:{"0":0.16131,"3":0,"4":0.00003,"2.1":0,"2.2":0.00005,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00049},A:{"6":0.0081,"7":0.01215,"8":0.12155,"9":0.02431,"10":0.02431,"11":0.20258,_:"5.5"},K:{"0":0.25479,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00772,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.10037},Q:{"13.1":0.12354},O:{"0":1.1041},H:{"0":0},L:{"0":56.85032}};
      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 bf0a89eda3eb3b..c67b1eb4e8a704 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LB.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LB.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00629,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00314,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00314,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00314,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00314,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00314,"100":0,"101":0,"102":0.01258,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00314,"112":0,"113":0.00314,"114":0.00314,"115":0.08803,"116":0.03458,"117":0.27353,"118":0.02515,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.03458,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00314,"47":0,"48":0,"49":0.00943,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00314,"57":0,"58":0.01886,"59":0,"60":0.00314,"61":0,"62":0,"63":0,"64":0,"65":0.00314,"66":0.00314,"67":0.00629,"68":0.01258,"69":0.00314,"70":0.00314,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00314,"77":0,"78":0,"79":0.01258,"80":0.00314,"81":0.00629,"83":0.00629,"84":0.00314,"85":0,"86":0.01258,"87":0.00629,"88":0.00314,"89":0.00314,"90":0.00314,"91":0.00943,"92":0,"93":0.00943,"94":0.00314,"95":0.00314,"96":0,"97":0,"98":0.00314,"99":0.00629,"100":0.00314,"101":0,"102":0.00314,"103":0.01886,"104":0.00314,"105":0.00314,"106":0.0503,"107":0.00629,"108":0.03458,"109":0.85517,"110":0.00629,"111":0.00629,"112":0.02201,"113":0.01572,"114":0.06288,"115":0.11318,"116":3.89856,"117":1.05324,"118":0.00314,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00314,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00314,"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.01258,"73":0.00314,"74":0,"75":0,"76":0,"77":0.01258,"78":0,"79":0.00314,"80":0,"81":0,"82":0,"83":0.00314,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01886,"96":0,"97":0,"98":0,"99":0.00314,"100":0.0283,"101":0.09118,"102":0.09746,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00314,"16":0,"17":0,"18":0.00314,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00314,"90":0,"91":0,"92":0.00943,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00314,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00314,"106":0,"107":0,"108":0,"109":0.02201,"110":0,"111":0.00314,"112":0.00314,"113":0.00314,"114":0.00943,"115":0.01572,"116":0.45902,"117":0.38357},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01258,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0786,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00314,"13.1":0.01572,"14.1":0.03144,"15.1":0.00943,"15.2-15.3":0.00629,"15.4":0.00314,"15.5":0.05974,"15.6":0.06917,"16.0":0.00314,"16.1":0.02201,"16.2":0.01572,"16.3":0.03458,"16.4":0.00943,"16.5":0.04087,"16.6":0.31126,"17.0":0.02201,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04782,"8.1-8.4":0,"9.0-9.2":0.00266,"9.3":0.09033,"10.0-10.2":0,"10.3":0.06376,"11.0-11.2":0.00531,"11.3-11.4":0.00531,"12.0-12.1":0.01594,"12.2-12.5":0.55789,"13.0-13.1":0.00531,"13.2":0,"13.3":0.0186,"13.4-13.7":0.05313,"14.0-14.4":0.23378,"14.5-14.8":0.45163,"15.0-15.1":0.08501,"15.2-15.3":0.13815,"15.4":0.11158,"15.5":0.28957,"15.6-15.7":2.30596,"16.0":0.93514,"16.1":1.36286,"16.2":0.56321,"16.3":1.37083,"16.4":0.26832,"16.5":0.86606,"16.6":14.80014,"17.0":1.46115,"17.1":0},P:{"4":0.13316,"20":0.08194,"21":0.23558,"22":4.01514,"5.0-5.4":0.01024,"6.2-6.4":0,"7.2-7.4":0.12291,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.03073,"12.0":0.01024,"13.0":0.04097,"14.0":0.05121,"15.0":0.02049,"16.0":0.06146,"17.0":0.11267,"18.0":0.04097,"19.0":0.09218},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01218,"4.4":0,"4.4.3-4.4.4":0.14013},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01572,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":57.2122},R:{_:"0"},M:{"0":0.1714},Q:{"13.1":0},O:{"0":0.22625},H:{"0":0.26612}};
      +module.exports={C:{"12":0.00666,"52":0.03662,"68":0.00666,"72":0.00333,"78":0.01332,"91":0.00333,"99":0.00333,"102":0.00666,"104":0.00333,"110":0.00333,"113":0.00333,"114":0.01332,"115":0.3329,"116":0.01332,"117":0.02996,"118":0.97207,"119":0.20307,"120":0.00333,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 100 101 103 105 106 107 108 109 111 112 121 122 3.5 3.6"},D:{"34":0.01332,"38":0.01332,"43":0.00333,"49":0.02996,"57":0.00333,"58":0.06991,"63":0.00333,"64":0.00666,"65":0.00666,"66":0.00666,"67":0.0233,"68":0.00333,"69":0.00333,"70":0.01665,"71":0.00666,"72":0.00333,"73":0.00333,"74":0.00333,"75":0.00666,"76":0.00666,"77":0.00666,"78":0.00333,"79":0.04661,"80":0.00666,"81":0.00666,"83":0.00999,"84":0.00333,"85":0.00666,"86":0.03995,"87":0.0233,"88":0.00666,"89":0.00333,"90":0.00999,"91":0.02663,"92":0.00666,"94":0.00666,"95":0.00999,"96":0.00666,"97":0.00333,"98":0.01332,"99":0.01332,"100":0.01332,"101":0.00666,"102":0.00999,"103":0.05992,"104":0.00666,"105":0.01332,"106":0.00666,"107":0.02663,"108":0.05992,"109":3.05935,"110":0.00999,"111":0.03329,"112":0.07657,"113":0.02663,"114":0.09321,"115":0.08323,"116":0.73238,"117":8.52557,"118":8.93171,"119":0.00999,"120":0.00333,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 59 60 61 62 93 121 122"},F:{"28":0.00333,"79":0.00333,"83":0.00333,"84":0.00333,"85":0.00333,"95":0.03662,"101":0.01997,"102":0.49602,"103":0.14648,_:"9 11 12 15 16 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 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00333,"13":0.00333,"14":0.00333,"15":0.00999,"16":0.00333,"17":0.00666,"18":0.01332,"84":0.00333,"89":0.01332,"90":0.00333,"92":0.03662,"98":0.00999,"100":0.00666,"106":0.00333,"107":0.00666,"109":0.06991,"110":0.00666,"111":0.00666,"112":0.00333,"113":0.00333,"114":0.00999,"115":0.00999,"116":0.11319,"117":1.52135,"118":1.46476,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 99 101 102 103 104 105 108 119"},E:{"7":0.00333,"13":0.00333,"14":0.04328,"15":0.00999,_:"0 4 5 6 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.26965,"11.1":0.00333,"12.1":0.01332,"13.1":0.09321,"14.1":0.11319,"15.1":0.01997,"15.2-15.3":0.09321,"15.4":0.01332,"15.5":0.34622,"15.6":0.1831,"16.0":0.01997,"16.1":0.05659,"16.2":0.02996,"16.3":0.19974,"16.4":0.04328,"16.5":0.08323,"16.6":0.67579,"17.0":0.30627,"17.1":0.02663},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00189,"5.0-5.1":0.00189,"6.0-6.1":0.00568,"7.0-7.1":0.01325,"8.1-8.4":0.00189,"9.0-9.2":0.01325,"9.3":0.04541,"10.0-10.2":0.00189,"10.3":0.06623,"11.0-11.2":0.06055,"11.3-11.4":0.02082,"12.0-12.1":0.01703,"12.2-12.5":0.30087,"13.0-13.1":0.00946,"13.2":0.05109,"13.3":0.01892,"13.4-13.7":0.06055,"14.0-14.4":0.16652,"14.5-14.8":0.2687,"15.0-15.1":0.10597,"15.2-15.3":0.12111,"15.4":0.13435,"15.5":0.19112,"15.6-15.7":1.3227,"16.0":0.48821,"16.1":0.93479,"16.2":0.45604,"16.3":0.84585,"16.4":0.18166,"16.5":0.48442,"16.6-16.7":9.07348,"17.0":3.23201,"17.1":0.1949,"17.2":0.00568},P:{"4":0.1642,"20":0.06158,"21":0.20525,"22":3.33534,"23":0.66707,"5.0-5.4":0.01026,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.13341,"9.2":0.01026,"11.1-11.2":0.02053,"12.0":0.01026,"13.0":0.04105,"14.0":0.05131,"15.0":0.04105,"16.0":0.05131,"17.0":0.11289,"18.0":0.04105,"19.0":0.09236},I:{"0":0.073,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"9":0.00333,"11":0.06991,_:"6 7 8 10 5.5"},K:{"0":0.27347,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.12673},Q:{_:"13.1"},O:{"0":0.25346},H:{"0":0},L:{"0":44.17794}};
      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 03599c88d65330..121ee36fa2833e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LC.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LC.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00406,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00406,"114":0,"115":0.04872,"116":0.02842,"117":0.21924,"118":0.01624,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00406,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00812,"77":0,"78":0.01624,"79":0.01218,"80":0,"81":0.00406,"83":0.00812,"84":0,"85":0,"86":0,"87":0.0203,"88":0.01218,"89":0,"90":0,"91":0,"92":0,"93":0.08526,"94":0.00406,"95":0.00406,"96":0.01624,"97":0,"98":0,"99":0,"100":0,"101":0.00406,"102":0.01218,"103":0.16646,"104":0.00406,"105":0.0609,"106":0.01624,"107":0.00406,"108":0.00406,"109":0.21924,"110":0.00406,"111":0.00406,"112":0.01218,"113":0.00812,"114":0.15428,"115":0.31262,"116":7.64904,"117":1.89196,"118":0.02842,"119":0.0203,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.02842,"73":0,"74":0,"75":0,"76":0,"77":0.0203,"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.0203,"101":0.09338,"102":0.19082,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00406,"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.00406,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.0203,"110":0.00406,"111":0.00406,"112":0,"113":0.01218,"114":0.03654,"115":0.0812,"116":1.27078,"117":0.79982},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.0406,"12.1":0.00812,"13.1":0.02842,"14.1":0.01218,"15.1":0.00406,"15.2-15.3":0.00406,"15.4":0.00406,"15.5":0.00812,"15.6":0.40194,"16.0":0.00812,"16.1":0.00406,"16.2":0.01218,"16.3":0.0203,"16.4":0.00812,"16.5":0.04466,"16.6":0.4669,"17.0":0.01624,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00345,"6.0-6.1":0,"7.0-7.1":0.01036,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.2608,"10.0-10.2":0,"10.3":0.00864,"11.0-11.2":0.00864,"11.3-11.4":0.00173,"12.0-12.1":0.00173,"12.2-12.5":0.16408,"13.0-13.1":0.01036,"13.2":0.00345,"13.3":0.00345,"13.4-13.7":0.01036,"14.0-14.4":0.04145,"14.5-14.8":0.08118,"15.0-15.1":0.05354,"15.2-15.3":0.08118,"15.4":0.03109,"15.5":0.03109,"15.6-15.7":1.48362,"16.0":0.45769,"16.1":0.76858,"16.2":0.26253,"16.3":0.94129,"16.4":0.12263,"16.5":0.42488,"16.6":10.1936,"17.0":1.57343,"17.1":0.00173},P:{"4":0.104,"20":0.1872,"21":0.35359,"22":4.77353,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.58239,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0832,"12.0":0,"13.0":0.0312,"14.0":0.0104,"15.0":0.0208,"16.0":0.052,"17.0":0.052,"18.0":0.0312,"19.0":0.104},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.60246},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00406,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00594},N:{"10":0,"11":0},L:{"0":57.80884},R:{_:"0"},M:{"0":0.08316},Q:{"13.1":0},O:{"0":0.09504},H:{"0":0.25306}};
      +module.exports={C:{"52":0.00399,"87":0.01198,"96":0.00399,"102":0.00399,"109":0.00399,"112":0.00399,"115":0.09586,"116":0.00399,"117":0.03994,"118":0.51123,"119":0.07988,"120":0.00399,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 97 98 99 100 101 103 104 105 106 107 108 110 111 113 114 121 122 3.5 3.6"},D:{"49":0.00799,"70":0.00399,"71":0.00399,"73":0.00399,"74":0.00399,"75":0.00399,"76":0.00799,"79":0.0679,"83":0.00399,"84":0.00799,"87":0.04393,"88":0.01598,"92":0.00399,"93":0.05991,"94":0.00399,"96":0.01198,"99":0.00799,"100":0.00399,"102":0.00399,"103":0.17174,"104":0.03595,"105":0.01598,"106":0.00399,"107":0.00399,"108":0.00399,"109":1.09036,"110":0.10784,"111":0.00799,"112":0.01198,"113":0.00399,"114":0.0679,"115":0.07189,"116":1.56165,"117":12.5811,"118":11.30302,"119":0.07988,"120":0.01997,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 72 77 78 80 81 85 86 89 90 91 95 97 98 101 121 122"},F:{"28":0.00799,"101":0.00399,"102":0.49526,"103":0.09985,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00399,"18":0.00799,"92":0.01198,"94":0.00399,"105":0.00399,"109":0.01198,"111":0.00399,"112":0.00799,"113":0.01598,"114":0.1997,"115":0.02396,"116":0.07189,"117":2.30054,"118":2.22466,"119":0.01198,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 95 96 97 98 99 100 101 102 103 104 106 107 108 110"},E:{"14":0.0639,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.2","5.1":0.00399,"13.1":0.11583,"14.1":0.01997,"15.1":0.00799,"15.2-15.3":0.01598,"15.4":0.00799,"15.5":0.03195,"15.6":0.24763,"16.0":0.00799,"16.1":0.05192,"16.2":0.04393,"16.3":0.04793,"16.4":0.01598,"16.5":0.07589,"16.6":0.89466,"17.0":0.31553,"17.1":0.01198},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00122,"5.0-5.1":0.00122,"6.0-6.1":0.00366,"7.0-7.1":0.00855,"8.1-8.4":0.00122,"9.0-9.2":0.00855,"9.3":0.02932,"10.0-10.2":0.00122,"10.3":0.04276,"11.0-11.2":0.03909,"11.3-11.4":0.01344,"12.0-12.1":0.01099,"12.2-12.5":0.19424,"13.0-13.1":0.00611,"13.2":0.03298,"13.3":0.01222,"13.4-13.7":0.03909,"14.0-14.4":0.1075,"14.5-14.8":0.17347,"15.0-15.1":0.06841,"15.2-15.3":0.07818,"15.4":0.08674,"15.5":0.12338,"15.6-15.7":0.85391,"16.0":0.31518,"16.1":0.60348,"16.2":0.29441,"16.3":0.54606,"16.4":0.11728,"16.5":0.31273,"16.6-16.7":5.85767,"17.0":2.08653,"17.1":0.12583,"17.2":0.00366},P:{"4":0.05259,"20":0.10518,"21":0.16828,"22":4.36482,"23":0.96762,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1","7.2-7.4":0.61002,"11.1-11.2":0.06311,"12.0":0.01052,"13.0":0.02104,"14.0":0.04207,"15.0":0.03155,"16.0":0.04207,"17.0":0.04207,"18.0":0.02104,"19.0":0.09466},I:{"0":0.01195,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.01997,_:"6 7 8 9 10 5.5"},K:{"0":0.11814,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00601,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.16817},Q:{_:"13.1"},O:{"0":0.04204},H:{"0":0.02},L:{"0":44.58681}};
      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 fe8aa55d2a153a..2341907785b57f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0.0207,"3":0.04831,"4":0.0138,"5":0.0207,"6":0.0069,"7":0,"8":0.0069,"9":0,"10":0.0069,"11":0.0138,"12":0.0138,"13":0.0069,"14":0.0069,"15":0.0069,"16":0.0069,"17":0.0207,"18":0.0069,"19":0.0138,"20":0.0069,"21":0.0069,"22":0.0069,"23":0.0138,"24":0.0069,"25":0.0069,"26":0.0069,"27":0.0069,"28":0.0069,"29":0.0069,"30":0.0069,"31":0.0138,"32":0.0069,"33":0.0069,"34":0.0069,"35":0.0276,"36":0.0138,"37":0.0138,"38":0.03451,"39":0.03451,"40":0.03451,"41":0.0276,"42":0,"43":0.0069,"44":0,"45":0,"46":0,"47":0,"48":0.0069,"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.0069,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0069,"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.0069,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0138,"103":0,"104":0,"105":0,"106":0.0069,"107":0,"108":0.0138,"109":0,"110":0,"111":0.25534,"112":0.0069,"113":0.0207,"114":0.03451,"115":0.08971,"116":0.21393,"117":4.51325,"118":0.99374,"119":0,"120":0,"3.5":0.0069,"3.6":0.08971},D:{"4":0.0138,"5":0.0069,"6":0.0069,"7":0.0069,"8":0,"9":0.0069,"10":0.0069,"11":0.0138,"12":0.0069,"13":0,"14":0,"15":0,"16":0,"17":0.0138,"18":0.0069,"19":0.0138,"20":0.0069,"21":0.0138,"22":0.0069,"23":0,"24":0,"25":0.0138,"26":0,"27":0.0138,"28":0.0207,"29":0.0069,"30":0.0138,"31":0.03451,"32":0.0069,"33":0.0207,"34":0.0138,"35":0.0138,"36":0.0276,"37":0.0276,"38":0.06211,"39":0.05521,"40":0.05521,"41":0.08971,"42":0.04831,"43":0.09661,"44":0.15182,"45":0.15872,"46":0.12422,"47":0.06901,"48":0,"49":0.20703,"50":0,"51":0.17943,"52":0,"53":0,"54":0,"55":0,"56":0.0069,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.04831,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.28294,"80":0.0069,"81":0,"83":0,"84":0.0276,"85":0.0069,"86":0,"87":0,"88":0,"89":0,"90":0.0069,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.0069,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0138,"104":0,"105":0.33815,"106":0.0069,"107":0.35195,"108":0.11732,"109":1.22148,"110":0.15872,"111":0.0069,"112":0.11042,"113":0.0069,"114":0.04831,"115":0.12422,"116":13.41554,"117":4.30622,"118":0.03451,"119":0,"120":0},F:{"9":0,"11":0.0138,"12":0.0207,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.0207,"21":0,"22":0,"23":0.0069,"24":0.0069,"25":0,"26":0.0069,"27":0.0069,"28":0.0069,"29":0,"30":0.03451,"31":0.04141,"32":0.0207,"33":0.0138,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.0069,"69":0.0069,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0207,"78":0.0069,"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.0069,"96":0,"97":0,"98":0,"99":0.0069,"100":0.05521,"101":0.33125,"102":0.697,"9.5-9.6":0.0069,"10.0-10.1":0.0138,"10.5":0,"10.6":0,"11.1":0.0069,"11.5":0.0069,"11.6":0.0069,"12.1":0.0276},B:{"12":0.06901,"13":0.0069,"14":0.08281,"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.0138,"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.0138,"106":0,"107":0.31745,"108":0,"109":0.0069,"110":0,"111":0,"112":0,"113":0.0069,"114":0.0138,"115":0.6556,"116":2.91222,"117":2.82251},E:{"4":0.0276,"5":0.0207,"6":0,"7":0.0069,"8":0.0276,"9":0.25534,"10":0,"11":0,"12":0,"13":0.0069,"14":0.11042,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.03451,"6.1":0.0069,"7.1":0.0069,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.12422,"14.1":1.33189,"15.1":0.06211,"15.2-15.3":0.03451,"15.4":0,"15.5":0.04831,"15.6":0.35885,"16.0":0.24844,"16.1":0.17943,"16.2":0.07591,"16.3":0.16562,"16.4":0.04831,"16.5":0.31055,"16.6":1.54582,"17.0":0.06211,"17.1":0},G:{"8":0.02369,"3.2":0.01723,"4.0-4.1":0,"4.2-4.3":0.02369,"5.0-5.1":0.07537,"6.0-6.1":0.04738,"7.0-7.1":0.29072,"8.1-8.4":0.46731,"9.0-9.2":0.01507,"9.3":0.10552,"10.0-10.2":0.01723,"10.3":0.13136,"11.0-11.2":1.05521,"11.3-11.4":0.00646,"12.0-12.1":0.34456,"12.2-12.5":0.27995,"13.0-13.1":0,"13.2":0.01938,"13.3":0.00861,"13.4-13.7":0.00431,"14.0-14.4":0.09691,"14.5-14.8":0.10552,"15.0-15.1":0.04307,"15.2-15.3":0.07537,"15.4":0.28641,"15.5":0.05168,"15.6-15.7":0.94107,"16.0":1.24902,"16.1":0.53622,"16.2":0.34456,"16.3":0.81402,"16.4":0.15505,"16.5":0.20027,"16.6":12.08751,"17.0":1.44499,"17.1":0.00431},P:{"4":0.14549,"20":0,"21":0,"22":3.13834,"5.0-5.4":0,"6.2-6.4":0.15588,"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,"19.0":0.03118},I:{"0":0,"3":0.04036,"4":0.44968,"2.1":0.08936,"2.2":0.18304,"2.3":0.25943,"4.1":0.3214,"4.2-4.3":0.61398,"4.4":0,"4.4.3-4.4.4":1.43839},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.06255,"7":0.10425,"8":0.95909,"9":0.21545,"10":0.1529,"11":0.38225,"5.5":0.00695},S:{"2.5":0.06508,_:"3.0-3.1"},J:{"7":0,"10":0.09297},N:{"10":0.19562,"11":0.11737},L:{"0":19.79318},R:{_:"0"},M:{"0":0.24172},Q:{"13.1":0.0062},O:{"0":0.27581},H:{"0":0.44009}};
      +module.exports={C:{"2":0.0067,"3":0.0268,"4":0.0134,"5":0.0067,"8":0.0067,"11":0.0067,"12":0.0067,"14":0.0067,"15":0.0067,"16":0.0134,"17":0.0134,"18":0.0067,"19":0.0134,"20":0.0134,"21":0.0134,"22":0.0067,"23":0.0067,"24":0.0067,"25":0.0067,"26":0.0134,"27":0.0067,"30":0.0067,"31":0.0268,"32":0.0067,"34":0.0067,"35":0.0268,"36":0.0067,"37":0.0134,"38":0.0268,"39":0.0201,"40":0.04019,"41":0.0067,"52":0.0067,"78":0.0067,"89":0.0067,"109":0.0201,"115":0.22107,"116":0.0268,"117":0.09379,"118":5.45299,"119":0.71679,_:"6 7 9 10 13 28 29 33 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 120 121 122","3.5":0.0067,"3.6":0.05359},D:{"6":0.0134,"9":0.0067,"10":0.0134,"11":0.0134,"12":0.0067,"14":0.0067,"17":0.0067,"18":0.0067,"19":0.0134,"21":0.0201,"22":0.0067,"27":0.0067,"28":0.0067,"29":0.0134,"30":0.0134,"31":0.0201,"32":0.0067,"33":0.0134,"34":0.0067,"35":0.0067,"36":0.0134,"37":0.0134,"38":0.0134,"39":0.0335,"40":0.05359,"41":0.07369,"42":0.0268,"43":0.07369,"44":0.13398,"45":0.09379,"46":0.10049,"47":0.09379,"49":0.20097,"51":0.15408,"69":0.0067,"70":0.06029,"73":0.0134,"79":0.71009,"84":0.0067,"86":0.0067,"94":0.0067,"97":0.0067,"98":0.0134,"100":0.0067,"103":0.0268,"106":1.15223,"107":0.0201,"108":1.85562,"109":0.41534,"110":1.62786,"111":0.83068,"112":1.9896,"113":0.0067,"114":0.06699,"115":0.0268,"116":3.04135,"117":10.16238,"118":11.59597,_:"4 5 7 8 13 15 16 20 23 24 25 26 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 74 75 76 77 78 80 81 83 85 87 88 89 90 91 92 93 95 96 99 101 102 104 105 119 120 121 122"},F:{"11":0.0067,"23":0.0067,"24":0.0067,"25":0.0067,"28":0.0067,"29":0.0067,"30":0.0134,"31":0.04019,"32":0.0201,"33":0.0067,"82":0.0067,"95":0.0067,"98":0.0134,"102":1.54077,"103":0.16078,_:"9 12 15 16 17 18 19 20 21 22 26 27 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.0268},B:{"12":0.0134,"18":0.0067,"92":0.0134,"105":0.0067,"107":0.51582,"108":1.62786,"109":0.53592,"112":0.0335,"113":0.0335,"114":0.04019,"115":0.20097,"116":0.58281,"117":3.70455,"118":3.45668,"119":0.0201,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 110 111"},E:{"4":0.0067,"5":0.0134,"7":0.0134,"8":0.04689,"9":0.25456,"14":0.06699,"15":0.0134,_:"0 6 10 11 12 13 3.1 9.1 10.1 11.1 12.1 17.2","3.2":0.0067,"5.1":0.0201,"6.1":0.0067,"7.1":0.0067,"13.1":0.07369,"14.1":1.30631,"15.1":0.10718,"15.2-15.3":0.06029,"15.4":0.0134,"15.5":0.0268,"15.6":0.35505,"16.0":0.15408,"16.1":0.14738,"16.2":0.04019,"16.3":0.26126,"16.4":0.13398,"16.5":0.20097,"16.6":1.9829,"17.0":0.73689,"17.1":0.0335},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00131,"5.0-5.1":0.00131,"6.0-6.1":0.00392,"7.0-7.1":0.00915,"8.1-8.4":0.00131,"9.0-9.2":0.00915,"9.3":0.03137,"10.0-10.2":0.00131,"10.3":0.04575,"11.0-11.2":0.04183,"11.3-11.4":0.01438,"12.0-12.1":0.01176,"12.2-12.5":0.20784,"13.0-13.1":0.00654,"13.2":0.03529,"13.3":0.01307,"13.4-13.7":0.04183,"14.0-14.4":0.11503,"14.5-14.8":0.18562,"15.0-15.1":0.0732,"15.2-15.3":0.08366,"15.4":0.09281,"15.5":0.13203,"15.6-15.7":0.91373,"16.0":0.33726,"16.1":0.64575,"16.2":0.31503,"16.3":0.58432,"16.4":0.12549,"16.5":0.33464,"16.6-16.7":6.268,"17.0":2.23269,"17.1":0.13464,"17.2":0.00392},P:{"4":0.10887,"20":0.04355,"22":2.02495,"23":0.42459,_:"21 5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0","6.2-6.4":0.09798,"14.0":0.01089,"18.0":0.02177,"19.0":0.04355},I:{"0":1.26769,"3":0,"4":0.00025,"2.1":0,"2.2":0.00038,"2.3":0,"4.1":0.00025,"4.2-4.3":0.00089,"4.4":0,"4.4.3-4.4.4":0.00382},A:{"6":0.03358,"7":0.06044,"8":0.71862,"9":0.11417,"10":0.12089,"11":1.52454,_:"5.5"},K:{"0":0.61049,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.04621,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.3433},Q:{"13.1":0.02971},O:{"0":0.24758},H:{"0":0.02},L:{"0":14.10478}};
      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 4e342a3d021c73..7fca29c05a66d1 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00419,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00839,"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.01258,"103":0,"104":0,"105":0.00419,"106":0,"107":0,"108":0,"109":0,"110":0.00419,"111":0,"112":0.00419,"113":0.00839,"114":0.00419,"115":0.13001,"116":0.03355,"117":0.40682,"118":0.04613,"119":0.00419,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00419,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00419,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00419,"65":0,"66":0,"67":0.00419,"68":0,"69":0,"70":0.00419,"71":0,"72":0,"73":0,"74":0.00419,"75":0,"76":0,"77":0,"78":0.00419,"79":0.00419,"80":0.00419,"81":0.01678,"83":0.00419,"84":0,"85":0.00839,"86":0.00419,"87":0.00839,"88":0.00419,"89":0.00419,"90":0.00419,"91":0.00419,"92":0.00839,"93":0.00419,"94":0.00419,"95":0.00419,"96":0.00419,"97":0.00419,"98":0.00419,"99":0.01258,"100":0.00419,"101":0.00419,"102":0.00839,"103":0.02097,"104":0.00839,"105":0.00839,"106":0.02097,"107":0.00839,"108":0.02936,"109":0.91849,"110":0.00839,"111":0.01678,"112":0.01678,"113":0.02097,"114":0.07549,"115":0.10066,"116":6.39166,"117":1.34627,"118":0.00419,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.04613,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00419,"55":0,"56":0,"57":0,"58":0.00419,"60":0.00419,"62":0,"63":0.00419,"64":0.00419,"65":0,"66":0.00419,"67":0.00419,"68":0.00419,"69":0.02936,"70":0.02097,"71":0.02516,"72":0.09227,"73":0.02936,"74":0.00419,"75":0,"76":0,"77":0.02516,"78":0,"79":0.00419,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00419,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03775,"96":0,"97":0,"98":0,"99":0,"100":0.01678,"101":0.15098,"102":0.13421,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00839,"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.01258,"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.00419,"107":0.00419,"108":0,"109":0.01258,"110":0,"111":0.00419,"112":0.00419,"113":0.00419,"114":0.02097,"115":0.05872,"116":3.65297,"117":2.54995},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00419,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00419,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00419,"13.1":0.00419,"14.1":0.00839,"15.1":0.00419,"15.2-15.3":0,"15.4":0.00419,"15.5":0.00419,"15.6":0.02097,"16.0":0.00839,"16.1":0.00839,"16.2":0.00419,"16.3":0.01258,"16.4":0.01678,"16.5":0.02097,"16.6":0.0713,"17.0":0.00419,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0009,"7.0-7.1":0.01343,"8.1-8.4":0.00358,"9.0-9.2":0.00358,"9.3":0.02775,"10.0-10.2":0.0009,"10.3":0.02775,"11.0-11.2":0.00716,"11.3-11.4":0.00537,"12.0-12.1":0.01522,"12.2-12.5":0.42155,"13.0-13.1":0.01343,"13.2":0.01164,"13.3":0.02596,"13.4-13.7":0.04923,"14.0-14.4":0.1969,"14.5-14.8":0.21928,"15.0-15.1":0.12441,"15.2-15.3":0.1074,"15.4":0.11009,"15.5":0.16826,"15.6-15.7":1.95737,"16.0":0.33563,"16.1":0.39022,"16.2":0.20585,"16.3":0.44392,"16.4":0.22107,"16.5":0.54237,"16.6":2.80225,"17.0":0.43587,"17.1":0},P:{"4":0.3655,"20":0.18275,"21":0.28428,"22":1.23863,"5.0-5.4":0.02031,"6.2-6.4":0.03046,"7.2-7.4":0.78176,"8.2":0.02031,"9.2":0.04061,"10.1":0.01015,"11.1-11.2":0.10153,"12.0":0.02031,"13.0":0.08122,"14.0":0.06092,"15.0":0.04061,"16.0":0.11168,"17.0":0.09137,"18.0":0.11168,"19.0":0.20305},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00271,"4.1":0.00677,"4.2-4.3":0.00406,"4.4":0,"4.4.3-4.4.4":0.06904},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00419,"9":0,"10":0,"11":0.02936,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.66368},R:{_:"0"},M:{"0":0.15096},Q:{"13.1":0},O:{"0":1.29474},H:{"0":1.34121}};
      +module.exports={C:{"17":0.00451,"52":0.00902,"72":0.00451,"87":0.01804,"89":0.00902,"99":0.00451,"105":0.00902,"108":0.00451,"110":0.00451,"111":0.00451,"112":0.00902,"113":0.00451,"114":0.00902,"115":0.31119,"116":0.00902,"117":0.06314,"118":0.88396,"119":0.17138,"120":0.00451,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 90 91 92 93 94 95 96 97 98 100 101 102 103 104 106 107 109 121 122 3.5 3.6"},D:{"22":0.00902,"38":0.00451,"49":0.00902,"63":0.00902,"64":0.00451,"66":0.00451,"67":0.00451,"69":0.00451,"70":0.00902,"71":0.00451,"74":0.01353,"75":0.00451,"76":0.00451,"78":0.00451,"79":0.01353,"80":0.00451,"81":0.01804,"83":0.00451,"84":0.00451,"85":0.01804,"86":0.00451,"87":0.01804,"88":0.00902,"89":0.00902,"90":0.00902,"91":0.01353,"92":0.00902,"93":0.00902,"94":0.00451,"95":0.00902,"96":0.00902,"97":0.00451,"98":0.00902,"99":0.01804,"100":0.00902,"101":0.00451,"102":0.01804,"103":0.0451,"104":0.00902,"105":0.02255,"106":0.03157,"107":0.02255,"108":0.02706,"109":2.12872,"110":0.02255,"111":0.02706,"112":0.02706,"113":0.02706,"114":0.09471,"115":0.07216,"116":0.58179,"117":9.53414,"118":9.38982,"119":0.01353,"120":0.00902,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 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 65 68 72 73 77 121 122"},F:{"29":0.00451,"64":0.00902,"79":0.00902,"84":0.00451,"85":0.00451,"86":0.00902,"95":0.09922,"100":0.00451,"101":0.00451,"102":0.46904,"103":0.26158,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 87 88 89 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00451,"15":0.00451,"16":0.00451,"18":0.01804,"84":0.00451,"85":0.00451,"89":0.00451,"92":0.03608,"99":0.00451,"100":0.00451,"105":0.00451,"107":0.00902,"108":0.00902,"109":0.02706,"110":0.00451,"111":0.00451,"112":0.00451,"113":0.00902,"114":0.01353,"115":0.01804,"116":0.18491,"117":8.88019,"118":8.78999,"119":0.00902,_:"13 14 17 79 80 81 83 86 87 88 90 91 93 94 95 96 97 98 101 102 103 104 106"},E:{"9":0.00451,"13":0.00451,"14":0.00902,"15":0.00451,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00902,"12.1":0.01353,"13.1":0.00902,"14.1":0.01804,"15.1":0.00902,"15.2-15.3":0.00451,"15.4":0.00451,"15.5":0.00451,"15.6":0.05863,"16.0":0.00451,"16.1":0.01804,"16.2":0.01353,"16.3":0.02255,"16.4":0.02255,"16.5":0.04059,"16.6":0.10373,"17.0":0.09922,"17.1":0.00451},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00052,"5.0-5.1":0.00052,"6.0-6.1":0.00155,"7.0-7.1":0.00361,"8.1-8.4":0.00052,"9.0-9.2":0.00361,"9.3":0.01237,"10.0-10.2":0.00052,"10.3":0.01805,"11.0-11.2":0.0165,"11.3-11.4":0.00567,"12.0-12.1":0.00464,"12.2-12.5":0.08198,"13.0-13.1":0.00258,"13.2":0.01392,"13.3":0.00516,"13.4-13.7":0.0165,"14.0-14.4":0.04537,"14.5-14.8":0.07322,"15.0-15.1":0.02887,"15.2-15.3":0.033,"15.4":0.03661,"15.5":0.05208,"15.6-15.7":0.36041,"16.0":0.13303,"16.1":0.25471,"16.2":0.12426,"16.3":0.23048,"16.4":0.0495,"16.5":0.13199,"16.6-16.7":2.47233,"17.0":0.88065,"17.1":0.05311,"17.2":0.00155},P:{"4":0.42581,"20":0.15208,"21":0.19263,"22":1.18619,"23":0.11152,"5.0-5.4":0.01014,"6.2-6.4":0.02028,"7.2-7.4":0.72997,"8.2":0.02028,"9.2":0.04055,"10.1":0.01014,"11.1-11.2":0.09125,"12.0":0.01014,"13.0":0.07097,"14.0":0.07097,"15.0":0.04055,"16.0":0.11152,"17.0":0.08111,"18.0":0.08111,"19.0":0.17235},I:{"0":0.04917,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.00451,"11":0.04961,_:"6 7 9 10 5.5"},K:{"0":1.57788,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.14277},Q:{_:"13.1"},O:{"0":1.35079},H:{"0":0.02},L:{"0":44.38635}};
      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 9a084b4dfa0da0..4faef74b62550a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0021,"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.0021,"73":0,"74":0,"75":0,"76":0,"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.0042,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.01469,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.09446,"116":0.01469,"117":0.11964,"118":0.0105,"119":0.0021,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0021,"41":0,"42":0,"43":0.0042,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0021,"57":0,"58":0,"59":0.0021,"60":0,"61":0,"62":0,"63":0,"64":0.0042,"65":0.0063,"66":0.0021,"67":0.0042,"68":0.0021,"69":0,"70":0.0021,"71":0,"72":0.0042,"73":0,"74":0.0021,"75":0.0084,"76":0.0042,"77":0.0042,"78":0,"79":0.0021,"80":0.0084,"81":0.0021,"83":0.0021,"84":0.0063,"85":0.0021,"86":0,"87":0.0021,"88":0.0042,"89":0.04198,"90":0.0042,"91":0,"92":0.0063,"93":0.0105,"94":0.0084,"95":0.0021,"96":0,"97":0,"98":0.0021,"99":0.02729,"100":0,"101":0,"102":0.0042,"103":0.02309,"104":0,"105":0.0063,"106":0.0021,"107":0.0021,"108":0.0063,"109":0.10705,"110":0.0021,"111":0.0042,"112":0.0042,"113":0.0063,"114":0.02939,"115":0.03358,"116":0.77243,"117":0.16582,"118":0.0021,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.0063,"30":0,"31":0.0021,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.0021,"51":0,"52":0,"53":0,"54":0,"55":0.0063,"56":0,"57":0,"58":0.0021,"60":0.02309,"62":0,"63":0.0105,"64":0.0084,"65":0.0105,"66":0.02099,"67":0.01679,"68":0.0105,"69":0.05248,"70":0.02309,"71":0.16582,"72":0.16792,"73":0.03149,"74":0,"75":0,"76":0,"77":0.0021,"78":0,"79":0.0021,"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.0042,"96":0,"97":0,"98":0.0021,"99":0.0021,"100":0.0021,"101":0.02729,"102":0.04198,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01469},B:{"12":0.0042,"13":0.0042,"14":0.0021,"15":0.0021,"16":0,"17":0.0021,"18":0.02939,"79":0,"80":0,"81":0,"83":0,"84":0.0021,"85":0.0021,"86":0,"87":0,"88":0,"89":0.0021,"90":0.0042,"91":0,"92":0.0063,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0021,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.0063,"110":0,"111":0.0021,"112":0.0042,"113":0.0021,"114":0.01679,"115":0.03149,"116":0.22879,"117":0.13224},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.0021,"13":0.0021,"14":0.0063,"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.0042,"12.1":0,"13.1":0.0042,"14.1":0.0042,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.0063,"16.0":0,"16.1":0,"16.2":0,"16.3":0.0021,"16.4":0.0084,"16.5":0.0021,"16.6":0.01469,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00087,"6.0-6.1":0,"7.0-7.1":0.0358,"8.1-8.4":0,"9.0-9.2":0.00698,"9.3":0.07421,"10.0-10.2":0,"10.3":0.04715,"11.0-11.2":0.00349,"11.3-11.4":0.13445,"12.0-12.1":0.01746,"12.2-12.5":0.72202,"13.0-13.1":0.13358,"13.2":0.02706,"13.3":0.0227,"13.4-13.7":0.31517,"14.0-14.4":0.56749,"14.5-14.8":0.77615,"15.0-15.1":0.58146,"15.2-15.3":0.17112,"15.4":0.1554,"15.5":0.24795,"15.6-15.7":0.91497,"16.0":0.16763,"16.1":0.21215,"16.2":0.27501,"16.3":0.27676,"16.4":0.24009,"16.5":0.87655,"16.6":1.43618,"17.0":0.24708,"17.1":0},P:{"4":0.03146,"20":0.05243,"21":0.13633,"22":0.51385,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06292,"8.2":0,"9.2":0.01049,"10.1":0,"11.1-11.2":0.05243,"12.0":0,"13.0":0.01049,"14.0":0.05243,"15.0":0.01049,"16.0":0.08389,"17.0":0.01049,"18.0":0.01049,"19.0":0.11535},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00641,"4.4":0,"4.4.3-4.4.4":0.05927},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02729,"5.5":0},S:{"2.5":0.11061,_:"3.0-3.1"},J:{"7":0,"10":0.0079},N:{"10":0,"11":0},L:{"0":75.02708},R:{_:"0"},M:{"0":0.09481},Q:{"13.1":0.0079},O:{"0":0.83751},H:{"0":8.61714}};
      +module.exports={C:{"34":0.00384,"47":0.00192,"58":0.00192,"62":0.00192,"72":0.00575,"73":0.00192,"85":0.00192,"94":0.00192,"104":0.00192,"108":0.04411,"111":0.00192,"114":0.00384,"115":0.30496,"116":0.02302,"117":0.04028,"118":0.60033,"119":0.10549,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 59 60 61 63 64 65 66 67 68 69 70 71 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 103 105 106 107 109 110 112 113 120 121 122 3.5 3.6"},D:{"23":0.00192,"29":0.00192,"38":0.00192,"43":0.00767,"47":0.00959,"52":0.00192,"55":0.00192,"57":0.00192,"59":0.0211,"61":0.00767,"64":0.02877,"65":0.00575,"66":0.01343,"67":0.00192,"68":0.00575,"69":0.01343,"70":0.03836,"71":0.00384,"75":0.03069,"76":0.04603,"77":0.00575,"78":0.00192,"79":0.00767,"80":0.01534,"81":0.01534,"83":0.00384,"84":0.00192,"86":0.01343,"87":0.00575,"88":0.01151,"89":0.00384,"90":0.00959,"91":0.00384,"92":0.07672,"93":0.07672,"94":0.03261,"95":0.00575,"98":0.00192,"99":0.16111,"100":0.00384,"101":0.00192,"102":0.00767,"103":0.08823,"104":0.00384,"105":0.02685,"106":0.00384,"107":0.00959,"108":0.00959,"109":0.38168,"110":0.00575,"111":0.01918,"112":0.02493,"113":0.03069,"114":0.10165,"115":0.05179,"116":0.33565,"117":2.43586,"118":2.40901,"119":0.00575,"120":0.00192,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 49 50 51 53 54 56 58 60 62 63 72 73 74 85 96 97 121 122"},F:{"18":0.00384,"21":0.00192,"28":0.00192,"29":0.00192,"36":0.00192,"42":0.00384,"45":0.00192,"76":0.00192,"77":0.00575,"79":0.00192,"86":0.00192,"90":0.00575,"95":0.0211,"98":0.00192,"99":0.00384,"101":0.01918,"102":0.14001,"103":0.1707,_:"9 11 12 15 16 17 19 20 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 40 41 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 80 81 82 83 84 85 87 88 89 91 92 93 94 96 97 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.03644,"13":0.01151,"14":0.00575,"15":0.00384,"16":0.01534,"17":0.00575,"18":0.12659,"80":0.00384,"84":0.01918,"85":0.00384,"86":0.00192,"88":0.00384,"89":0.00959,"90":0.01534,"91":0.00192,"92":0.0537,"95":0.00192,"100":0.01343,"101":0.01151,"102":0.00192,"103":0.00384,"105":0.00192,"106":0.00384,"107":0.00384,"108":0.00192,"109":0.0422,"110":0.00959,"111":0.00767,"112":0.00959,"113":0.01918,"114":0.09206,"115":0.0748,"116":0.07097,"117":0.82282,"118":0.89379,_:"79 81 83 87 93 94 96 97 98 99 104 119"},E:{"13":0.00192,"14":0.01534,"15":0.00192,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.4 16.0 16.2 17.2","11.1":0.00959,"12.1":0.00384,"13.1":0.03836,"14.1":0.01343,"15.1":0.00192,"15.2-15.3":0.00384,"15.5":0.00575,"15.6":0.06521,"16.1":0.00575,"16.3":0.01151,"16.4":0.00575,"16.5":0.00959,"16.6":0.08056,"17.0":0.0211,"17.1":0.01343},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00065,"5.0-5.1":0.00065,"6.0-6.1":0.00194,"7.0-7.1":0.00452,"8.1-8.4":0.00065,"9.0-9.2":0.00452,"9.3":0.0155,"10.0-10.2":0.00065,"10.3":0.0226,"11.0-11.2":0.02066,"11.3-11.4":0.0071,"12.0-12.1":0.00581,"12.2-12.5":0.10267,"13.0-13.1":0.00323,"13.2":0.01744,"13.3":0.00646,"13.4-13.7":0.02066,"14.0-14.4":0.05683,"14.5-14.8":0.0917,"15.0-15.1":0.03616,"15.2-15.3":0.04133,"15.4":0.04585,"15.5":0.06522,"15.6-15.7":0.45138,"16.0":0.1666,"16.1":0.319,"16.2":0.15563,"16.3":0.28865,"16.4":0.06199,"16.5":0.16531,"16.6-16.7":3.09638,"17.0":1.10294,"17.1":0.06651,"17.2":0.00194},P:{"4":0.05185,"20":0.03111,"21":0.09334,"22":0.54965,"23":0.07259,"5.0-5.4":0.01037,_:"6.2-6.4 8.2 10.1 12.0 15.0","7.2-7.4":0.08297,"9.2":0.03111,"11.1-11.2":0.05185,"13.0":0.03111,"14.0":0.01037,"16.0":0.05185,"17.0":0.02074,"18.0":0.04148,"19.0":0.04148},I:{"0":0.02412,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"7":0.00384,"10":0.00959,"11":0.04411,_:"6 8 9 5.5"},K:{"0":3.90415,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.08082,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.04849},Q:{"13.1":0.00808},O:{"0":1.20422},H:{"0":5.77},L:{"0":70.03016}};
      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 fcbf98a16c1f8c..9e0100701f8eb2 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00318,"100":0,"101":0,"102":0.00318,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00318,"113":0.00318,"114":0,"115":0.03175,"116":0.0127,"117":0.15558,"118":0.00953,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00635,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00318,"47":0,"48":0,"49":0.00318,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.03175,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00318,"62":0,"63":0,"64":0,"65":0,"66":0.00318,"67":0,"68":0,"69":0,"70":0.00318,"71":0.00318,"72":0.00318,"73":0,"74":0.00318,"75":0.0127,"76":0,"77":0.00953,"78":0,"79":0.00635,"80":0,"81":0.01905,"83":0.00318,"84":0.00318,"85":0,"86":0,"87":0,"88":0,"89":0.00318,"90":0,"91":0.00953,"92":0.00318,"93":0,"94":0.0127,"95":0.00318,"96":0,"97":0,"98":0.00318,"99":0.02858,"100":0,"101":0,"102":0.00318,"103":0.03175,"104":0.00635,"105":0.00318,"106":0.00318,"107":0,"108":0.00318,"109":0.4445,"110":0.00318,"111":0.00953,"112":0.0381,"113":0.0127,"114":0.04763,"115":0.09843,"116":2.92735,"117":0.60008,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.02858,"27":0,"28":0.00953,"29":0,"30":0.00318,"31":0.00318,"32":0.00635,"33":0,"34":0,"35":0.04763,"36":0,"37":0,"38":0.00635,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0508,"47":0.00318,"48":0,"49":0,"50":0.02223,"51":0.00318,"52":0,"53":0,"54":0,"55":0.00318,"56":0.06985,"57":0.00318,"58":0.00635,"60":0.01588,"62":0,"63":0.02223,"64":0.05715,"65":0.0127,"66":0.01588,"67":0.02858,"68":0.01905,"69":0.17145,"70":0.08255,"71":0.15558,"72":0.3175,"73":0.0381,"74":0.00635,"75":0,"76":0.07303,"77":0.00635,"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.04128,"96":0,"97":0,"98":0,"99":0.00318,"100":0.00635,"101":0.16828,"102":0.17145,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00635},B:{"12":0.0127,"13":0.00318,"14":0,"15":0.00635,"16":0.00318,"17":0.00318,"18":0.00635,"79":0,"80":0,"81":0,"83":0,"84":0.00318,"85":0,"86":0,"87":0,"88":0,"89":0.00953,"90":0.00635,"91":0,"92":0.0127,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00318,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00318,"109":0.03175,"110":0.00318,"111":0.00318,"112":0.00318,"113":0.00953,"114":0.01588,"115":0.02223,"116":0.4445,"117":0.33655},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.00318,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00953,"14.1":0,"15.1":0,"15.2-15.3":0.00318,"15.4":0,"15.5":0,"15.6":0.00318,"16.0":0,"16.1":0,"16.2":0,"16.3":0.00635,"16.4":0.00953,"16.5":0.00635,"16.6":0.0889,"17.0":0.00318,"17.1":0},G:{"8":0.00533,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00376,"6.0-6.1":0,"7.0-7.1":0.0069,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07428,"10.0-10.2":0,"10.3":0.01692,"11.0-11.2":0.00282,"11.3-11.4":0.00094,"12.0-12.1":0,"12.2-12.5":0.14793,"13.0-13.1":0.00063,"13.2":0.00094,"13.3":0.00533,"13.4-13.7":0.01442,"14.0-14.4":0.07835,"14.5-14.8":0.05203,"15.0-15.1":0.17207,"15.2-15.3":0.11941,"15.4":0.03385,"15.5":0.04231,"15.6-15.7":0.73277,"16.0":0.04513,"16.1":0.17426,"16.2":0.04357,"16.3":0.06989,"16.4":0.01786,"16.5":0.12411,"16.6":1.04431,"17.0":0.09747,"17.1":0},P:{"4":0.36173,"20":0.06029,"21":0.39187,"22":1.10527,"5.0-5.4":0,"6.2-6.4":0.19091,"7.2-7.4":0.78374,"8.2":0,"9.2":0.01005,"10.1":0.01005,"11.1-11.2":0.09043,"12.0":0,"13.0":0.0201,"14.0":0.0201,"15.0":0.01005,"16.0":0.19091,"17.0":0.04019,"18.0":0.06029,"19.0":0.27129},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00135,"4.2-4.3":0.00135,"4.4":0,"4.4.3-4.4.4":0.07001},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01588,"5.5":0},S:{"2.5":0.0819,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":75.20503},R:{_:"0"},M:{"0":0.04095},Q:{"13.1":0.34808},O:{"0":0.96233},H:{"0":6.16424}};
      +module.exports={C:{"34":0.00312,"52":0.01249,"72":0.00312,"88":0.00312,"91":0.00312,"107":0.00312,"115":0.10615,"116":0.00312,"117":0.02498,"118":0.32469,"119":0.15922,"120":0.00312,_:"2 3 4 5 6 7 8 9 10 11 12 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 78 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 112 113 114 121 122 3.5 3.6"},D:{"11":0.00312,"36":0.00312,"38":0.00312,"40":0.00312,"43":0.00312,"49":0.00312,"55":0.00312,"69":0.00312,"70":0.03122,"71":0.00624,"75":0.0281,"78":0.08117,"79":0.00937,"80":0.00624,"81":0.01249,"86":0.00312,"87":0.00312,"88":0.00624,"90":0.00624,"91":0.03434,"92":0.01249,"94":0.06868,"95":0.00624,"97":0.00312,"99":0.13425,"102":0.01561,"103":0.11239,"104":0.00937,"105":0.00937,"106":0.02185,"107":0.00624,"108":0.01249,"109":1.47046,"110":0.00937,"111":0.01561,"112":0.02185,"113":0.0281,"114":0.08742,"115":0.06868,"116":0.4121,"117":4.75481,"118":5.41667,"119":0.00312,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 41 42 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 72 73 74 76 77 83 84 85 89 93 96 98 100 101 120 121 122"},F:{"73":0.00312,"77":0.00312,"79":0.00312,"83":0.00312,"85":0.00312,"90":0.00312,"94":0.00312,"95":0.12176,"99":0.00312,"102":0.49015,"103":0.40898,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 78 80 81 82 84 86 87 88 89 91 92 93 96 97 98 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01561,"13":0.02185,"14":0.00312,"16":0.00937,"17":0.02185,"18":0.0281,"84":0.01249,"85":0.00624,"89":0.01249,"90":0.01561,"92":0.04995,"100":0.21854,"102":0.00312,"104":0.00312,"106":0.00312,"107":0.00312,"108":0.00312,"109":0.02185,"110":0.01249,"111":0.00312,"112":0.01561,"113":0.00937,"114":0.02498,"115":0.03434,"116":0.09054,"117":1.15202,"118":1.33934,"119":0.00312,_:"15 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 103 105"},E:{"14":0.00312,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.4 16.0 16.2 17.2","5.1":0.00937,"12.1":0.00624,"13.1":0.00312,"14.1":0.01561,"15.1":0.00312,"15.2-15.3":0.01561,"15.5":0.00937,"15.6":0.01249,"16.1":0.00312,"16.3":0.00624,"16.4":0.00312,"16.5":0.00312,"16.6":0.04683,"17.0":0.03746,"17.1":0.01561},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0002,"5.0-5.1":0.0002,"6.0-6.1":0.00059,"7.0-7.1":0.00137,"8.1-8.4":0.0002,"9.0-9.2":0.00137,"9.3":0.0047,"10.0-10.2":0.0002,"10.3":0.00686,"11.0-11.2":0.00627,"11.3-11.4":0.00216,"12.0-12.1":0.00176,"12.2-12.5":0.03117,"13.0-13.1":0.00098,"13.2":0.00529,"13.3":0.00196,"13.4-13.7":0.00627,"14.0-14.4":0.01725,"14.5-14.8":0.02784,"15.0-15.1":0.01098,"15.2-15.3":0.01255,"15.4":0.01392,"15.5":0.0198,"15.6-15.7":0.13702,"16.0":0.05057,"16.1":0.09684,"16.2":0.04724,"16.3":0.08762,"16.4":0.01882,"16.5":0.05018,"16.6-16.7":0.93993,"17.0":0.33481,"17.1":0.02019,"17.2":0.00059},P:{"4":0.42916,"20":0.07153,"21":0.17371,"22":0.94007,"23":0.1124,_:"5.0-5.4 8.2 12.0","6.2-6.4":0.03065,"7.2-7.4":0.75614,"9.2":0.02044,"10.1":0.01022,"11.1-11.2":0.1124,"13.0":0.02044,"14.0":0.01022,"15.0":0.01022,"16.0":0.1124,"17.0":0.03065,"18.0":0.12262,"19.0":0.23502},I:{"0":0.0479,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"10":0.00312,"11":0.0281,_:"6 7 8 9 5.5"},K:{"0":4.95698,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.10317,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.03439},Q:{"13.1":0.04815},O:{"0":1.04546},H:{"0":1.02},L:{"0":69.1739}};
      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 3590007165e0f0..dfb22fee1dcca4 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01458,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02916,"53":0,"54":0,"55":0.01458,"56":0,"57":0,"58":0,"59":0,"60":0.00729,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.02916,"78":0.00729,"79":0,"80":0.00729,"81":0.00729,"82":0,"83":0.00729,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00729,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00729,"101":0,"102":0.04374,"103":0,"104":0.01458,"105":0.01458,"106":0.01458,"107":0.00729,"108":0.01458,"109":0.00729,"110":0.00729,"111":0.01458,"112":0.00729,"113":0.00729,"114":0.00729,"115":0.37908,"116":0.18954,"117":1.61838,"118":0.12393,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00729,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00729,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00729,"64":0.00729,"65":0,"66":0.00729,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00729,"74":0.03645,"75":0,"76":0.02916,"77":0,"78":0.02916,"79":0.05832,"80":0.03645,"81":0.01458,"83":0.00729,"84":0.00729,"85":0.05103,"86":0.02916,"87":0.05103,"88":0.01458,"89":0.00729,"90":0.03645,"91":0.03645,"92":0.01458,"93":0.02916,"94":0.02187,"95":0.01458,"96":0.00729,"97":0.02916,"98":0.05832,"99":0.02187,"100":0.00729,"101":0.00729,"102":0.02916,"103":0.05832,"104":0.01458,"105":0.00729,"106":0.05103,"107":0.03645,"108":0.0729,"109":2.21616,"110":0.05832,"111":0.05832,"112":0.06561,"113":0.05832,"114":0.63423,"115":1.2393,"116":28.68615,"117":6.0507,"118":0.00729,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00729,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00729,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00729,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.03645,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00729,"86":0.00729,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.08019,"96":0,"97":0,"98":0,"99":0.02916,"100":0.22599,"101":0.68526,"102":0.75087,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00729,"83":0,"84":0,"85":0.00729,"86":0,"87":0,"88":0.00729,"89":0,"90":0.00729,"91":0,"92":0.05103,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02187,"103":0,"104":0,"105":0,"106":0.00729,"107":0.00729,"108":0.02187,"109":0.06561,"110":0.02187,"111":0.01458,"112":0.01458,"113":0.03645,"114":0.06561,"115":0.21141,"116":3.73977,"117":2.32551},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00729,"10":0,"11":0,"12":0,"13":0,"14":0.03645,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01458,"10.1":0,"11.1":0,"12.1":0.00729,"13.1":0.03645,"14.1":0.05103,"15.1":0.01458,"15.2-15.3":0.00729,"15.4":0.01458,"15.5":0.02187,"15.6":0.10206,"16.0":0.00729,"16.1":0.03645,"16.2":0.02916,"16.3":0.05103,"16.4":0.04374,"16.5":0.10206,"16.6":0.37908,"17.0":0.02916,"17.1":0},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.00277,"7.0-7.1":0.00277,"8.1-8.4":0.00555,"9.0-9.2":0.00277,"9.3":0.01525,"10.0-10.2":0.02219,"10.3":0.08459,"11.0-11.2":0.01941,"11.3-11.4":0.00555,"12.0-12.1":0.00693,"12.2-12.5":0.0624,"13.0-13.1":0.00832,"13.2":0.00277,"13.3":1.14957,"13.4-13.7":0.05131,"14.0-14.4":0.06933,"14.5-14.8":0.09429,"15.0-15.1":0.03744,"15.2-15.3":0.03883,"15.4":0.05824,"15.5":0.11787,"15.6-15.7":0.68641,"16.0":0.48257,"16.1":0.87084,"16.2":0.41046,"16.3":0.74188,"16.4":0.17472,"16.5":0.52278,"16.6":6.94593,"17.0":1.03308,"17.1":0.00277},P:{"4":0.05128,"20":0.09231,"21":0.14359,"22":1.90774,"5.0-5.4":0.01026,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.01026,"15.0":0,"16.0":0.01026,"17.0":0.02051,"18.0":0.01026,"19.0":0.03077},I:{"0":0,"3":0,"4":0.01019,"2.1":0,"2.2":0.00612,"2.3":0.01019,"4.1":0.00815,"4.2-4.3":0.05096,"4.4":0,"4.4.3-4.4.4":0.05504},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02251,"9":0.0075,"10":0.0075,"11":0.21763,"5.5":0},S:{"2.5":0.00271,_:"3.0-3.1"},J:{"7":0,"10":0.00271},N:{"10":0,"11":0},L:{"0":28.32649},R:{_:"0"},M:{"0":0.14905},Q:{"13.1":0},O:{"0":0.04607},H:{"0":0.2617}};
      +module.exports={C:{"43":0.0061,"48":0.03049,"52":0.03659,"60":0.0061,"77":0.01829,"78":0.0122,"81":0.0061,"89":0.0061,"91":0.0061,"94":0.0061,"95":0.0061,"98":0.0061,"100":0.0061,"102":0.0122,"103":0.0061,"104":0.01829,"106":0.0061,"107":0.01829,"108":0.0061,"109":0.0061,"110":0.0061,"111":0.0122,"112":0.0061,"113":0.0122,"114":0.0061,"115":0.56711,"116":0.01829,"117":0.12806,"118":1.8416,"119":0.49394,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 82 83 84 85 86 87 88 90 92 93 96 97 99 101 105 120 121 122 3.5 3.6"},D:{"34":0.0061,"38":0.0061,"49":0.01829,"63":0.0061,"66":0.0061,"67":0.0061,"72":0.0061,"73":0.0061,"75":0.0061,"76":0.0061,"77":0.0061,"78":0.0061,"79":0.03659,"80":0.0061,"81":0.0061,"83":0.0122,"84":0.0061,"85":0.05488,"86":0.0122,"87":0.04878,"88":0.0061,"90":0.0061,"91":0.0061,"92":0.0061,"93":0.0061,"94":0.0061,"96":0.0061,"97":0.0061,"98":0.01829,"99":0.01829,"100":0.0061,"101":0.0061,"102":0.04269,"103":0.05488,"104":0.01829,"105":0.0122,"106":0.03659,"107":0.06098,"108":0.06708,"109":2.78069,"110":0.03049,"111":0.05488,"112":0.07927,"113":0.06098,"114":0.20733,"115":0.3049,"116":1.8416,"117":18.81843,"118":19.57458,"119":0.03049,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 68 69 70 71 74 89 95 120 121 122"},F:{"28":0.0061,"46":0.0061,"85":0.0061,"86":0.0122,"95":0.15245,"99":0.0061,"101":0.02439,"102":2.11601,"103":0.51833,_:"9 11 12 15 16 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 87 88 89 90 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0061,"92":0.03049,"108":0.0061,"109":0.06708,"110":0.03049,"111":0.02439,"112":0.01829,"113":0.02439,"114":0.15855,"115":0.06098,"116":0.23782,"117":3.61002,"118":3.3661,"119":0.0122,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107"},E:{"9":0.0061,"14":0.03049,"15":0.0122,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.0061,"11.1":0.0061,"12.1":0.0061,"13.1":0.13416,"14.1":0.06098,"15.1":0.0122,"15.2-15.3":0.0122,"15.4":0.01829,"15.5":0.02439,"15.6":0.17074,"16.0":0.01829,"16.1":0.05488,"16.2":0.04269,"16.3":0.08537,"16.4":0.05488,"16.5":0.09147,"16.6":0.43906,"17.0":0.2988,"17.1":0.02439,"17.2":0.0061},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0009,"5.0-5.1":0.0009,"6.0-6.1":0.0027,"7.0-7.1":0.0063,"8.1-8.4":0.0009,"9.0-9.2":0.0063,"9.3":0.0216,"10.0-10.2":0.0009,"10.3":0.0315,"11.0-11.2":0.0288,"11.3-11.4":0.0099,"12.0-12.1":0.0081,"12.2-12.5":0.14309,"13.0-13.1":0.0045,"13.2":0.0243,"13.3":0.009,"13.4-13.7":0.0288,"14.0-14.4":0.0792,"14.5-14.8":0.12779,"15.0-15.1":0.0504,"15.2-15.3":0.0576,"15.4":0.0639,"15.5":0.0909,"15.6-15.7":0.62907,"16.0":0.23219,"16.1":0.44458,"16.2":0.21689,"16.3":0.40228,"16.4":0.0864,"16.5":0.23039,"16.6-16.7":4.31531,"17.0":1.53713,"17.1":0.0927,"17.2":0.0027},P:{"4":0.10264,"20":0.08211,"21":0.13343,"22":1.98087,"23":1.25216,"5.0-5.4":0.01026,"6.2-6.4":0.01026,"7.2-7.4":0.01026,_:"8.2 9.2 10.1 11.1-11.2 12.0","13.0":0.02053,"14.0":0.01026,"15.0":0.02053,"16.0":0.06158,"17.0":0.02053,"18.0":0.04105,"19.0":0.08211},I:{"0":0.05045,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.01829,"11":0.12806,_:"6 7 9 10 5.5"},K:{"0":0.55784,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.33939},Q:{_:"13.1"},O:{"0":0.05852},H:{"0":0},L:{"0":25.31941}};
      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 e8b2af0051ba55..fb7a75dc78b344 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LU.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LU.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"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.00428,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00856,"49":0,"50":0.00428,"51":0,"52":0.02997,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00428,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01285,"69":0,"70":0,"71":0,"72":0.00428,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05138,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00428,"89":0.00428,"90":0,"91":0.05567,"92":0,"93":0.00428,"94":0,"95":0,"96":0,"97":0.00428,"98":0,"99":0,"100":0,"101":0,"102":1.26319,"103":0.00428,"104":0.00856,"105":0.00856,"106":0,"107":0.00856,"108":0.01713,"109":0.00856,"110":0.01713,"111":0.02569,"112":0.01285,"113":0.02141,"114":0.00856,"115":0.25264,"116":0.10705,"117":1.5929,"118":0.14131,"119":0,"120":0,"3.5":0,"3.6":0.00428},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00428,"40":0.00428,"41":0.00428,"42":0.00428,"43":0.00428,"44":0.00856,"45":0.0471,"46":0.00428,"47":0.00428,"48":0.01713,"49":0.01713,"50":0,"51":0.00856,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00428,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00428,"70":0.00428,"71":0.00428,"72":0.09849,"73":0,"74":0.00856,"75":0,"76":0,"77":0,"78":0,"79":0.01285,"80":0.01285,"81":0,"83":0.00428,"84":0.00428,"85":0.00856,"86":0.02141,"87":0.01285,"88":0.00428,"89":0.01713,"90":0.00428,"91":0.00856,"92":0.00856,"93":0,"94":0.00428,"95":0.00428,"96":0.01285,"97":0.00856,"98":0.00428,"99":0.01285,"100":0.00428,"101":0.00856,"102":0.00428,"103":0.04282,"104":0.00856,"105":0.10277,"106":0.06851,"107":0.08136,"108":0.12418,"109":0.36397,"110":0.34684,"111":0.06423,"112":0.15415,"113":0.0471,"114":0.14559,"115":0.17556,"116":4.31626,"117":1.56721,"118":0.00428,"119":0.00856,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00428,"29":0,"30":0,"31":0.00428,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00428,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00428,"68":0,"69":0.00428,"70":0.00428,"71":0.02569,"72":0.0942,"73":0.02141,"74":0,"75":0,"76":0,"77":0.03854,"78":0.00428,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00856,"90":0,"91":0,"92":0,"93":0,"94":0.00856,"95":0.01713,"96":0.01285,"97":0,"98":0,"99":0,"100":0.05138,"101":0.1199,"102":0.36397,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00428,"13":0,"14":0.00428,"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.00856,"97":0,"98":0,"99":0,"100":0,"101":0.00428,"102":0,"103":0.00856,"104":0,"105":0,"106":0.01285,"107":0.01285,"108":0.00428,"109":0.05138,"110":0.00856,"111":0.02569,"112":0.00856,"113":0.01285,"114":0.08992,"115":0.09849,"116":1.08763,"117":1.17327},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01285,"10":0,"11":0,"12":0,"13":0.00428,"14":0.03854,"15":0.00428,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00428,"10.1":0,"11.1":0,"12.1":0.06423,"13.1":0.10705,"14.1":0.15843,"15.1":0.00856,"15.2-15.3":0.01285,"15.4":0.02141,"15.5":0.05567,"15.6":0.25692,"16.0":0.05567,"16.1":0.1199,"16.2":0.07279,"16.3":0.23551,"16.4":0.05138,"16.5":0.27405,"16.6":1.10476,"17.0":0.11561,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.13852,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01283,"8.1-8.4":0.02565,"9.0-9.2":0.44891,"9.3":0.03335,"10.0-10.2":0,"10.3":0.04104,"11.0-11.2":0.08978,"11.3-11.4":0.00257,"12.0-12.1":0.02822,"12.2-12.5":0.13596,"13.0-13.1":0.0077,"13.2":0.00513,"13.3":0.01796,"13.4-13.7":0.04617,"14.0-14.4":0.17957,"14.5-14.8":0.45148,"15.0-15.1":0.1103,"15.2-15.3":0.13083,"15.4":0.10774,"15.5":0.27961,"15.6-15.7":1.13896,"16.0":0.73109,"16.1":1.62379,"16.2":0.64131,"16.3":1.24926,"16.4":0.20522,"16.5":0.72596,"16.6":14.85263,"17.0":1.88544,"17.1":0},P:{"4":0.12289,"20":0.10241,"21":0.13313,"22":3.35904,"5.0-5.4":0,"6.2-6.4":0.01024,"7.2-7.4":0.02048,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01024,"14.0":0.01024,"15.0":0,"16.0":0.02048,"17.0":0.01024,"18.0":0.03072,"19.0":0.03072},I:{"0":0,"3":0.05328,"4":0.01724,"2.1":0.02664,"2.2":0.08148,"2.3":0.01254,"4.1":0.06581,"4.2-4.3":0.06738,"4.4":0,"4.4.3-4.4.4":0.24132},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00467,"8":0.04204,"9":0.00934,"10":0.00934,"11":0.0327,"5.5":0},S:{"2.5":0.00572,_:"3.0-3.1"},J:{"7":0,"10":0.00572},N:{"10":0.01144,"11":0.01144},L:{"0":42.75712},R:{_:"0"},M:{"0":1.13216},Q:{"13.1":1.0178},O:{"0":1.81261},H:{"0":1.03938}};
      +module.exports={C:{"40":0.00429,"48":0.01288,"50":0.00429,"52":0.07729,"60":0.00429,"68":0.00859,"78":0.13741,"88":0.00859,"89":0.00429,"91":0.10735,"93":0.00859,"94":0.00429,"97":0.00429,"102":0.93609,"103":0.00429,"104":0.02576,"105":0.00429,"106":0.00429,"107":0.00429,"108":0.00429,"109":0.06441,"110":0.00429,"111":0.02576,"112":0.00859,"113":0.01718,"114":0.00859,"115":1.59307,"116":0.05153,"117":0.12882,"118":3.15609,"119":0.55393,"120":0.00429,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 49 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 81 82 83 84 85 86 87 90 92 95 96 98 99 100 101 121 122 3.5","3.6":0.00429},D:{"38":0.00429,"39":0.00429,"40":0.00429,"41":0.00429,"42":0.00429,"43":0.00429,"44":0.00859,"45":0.07729,"46":0.00859,"47":0.00429,"49":0.04723,"51":0.01288,"57":0.00429,"64":0.02147,"69":0.04294,"70":0.00429,"72":0.1417,"74":0.02147,"79":0.04294,"80":0.00429,"81":0.00429,"84":0.00429,"85":0.02576,"86":0.00429,"87":0.02147,"89":0.00429,"90":0.00429,"91":0.02147,"92":0.01288,"93":0.00429,"94":0.01718,"95":0.00429,"96":0.00429,"98":0.01288,"99":0.01718,"100":0.01288,"101":0.00429,"102":0.04294,"103":0.12453,"104":0.01718,"105":0.04294,"106":0.073,"107":0.37787,"108":0.27052,"109":0.95327,"110":0.24905,"111":0.21041,"112":0.27911,"113":0.073,"114":0.22758,"115":0.13311,"116":0.97903,"117":7.46297,"118":7.10657,"119":0.01288,"120":0.00429,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 48 50 52 53 54 55 56 58 59 60 61 62 63 65 66 67 68 71 73 75 76 77 78 83 88 97 121 122"},F:{"46":0.00429,"93":0.02147,"95":0.05153,"98":0.00859,"99":0.00429,"101":0.00429,"102":1.33543,"103":0.20182,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 96 97 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00429,"17":0.02147,"18":0.00429,"89":0.00429,"92":0.00429,"96":0.00429,"97":0.00429,"98":0.00429,"99":0.00429,"101":0.00429,"102":0.00429,"104":0.00429,"105":0.00429,"106":0.01288,"107":0.06441,"108":0.05153,"109":0.0687,"110":0.01718,"111":0.04294,"112":0.03435,"113":0.03865,"114":0.15888,"115":0.04723,"116":0.12882,"117":2.77822,"118":2.40464,"119":0.00429,_:"13 14 15 16 79 80 81 83 84 85 86 87 88 90 91 93 94 95 100 103"},E:{"9":0.01718,"13":0.00859,"14":0.08588,"15":0.00859,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.00429,"9.1":0.00859,"12.1":0.08159,"13.1":0.21041,"14.1":0.30058,"15.1":0.01718,"15.2-15.3":0.01718,"15.4":0.073,"15.5":0.22758,"15.6":0.67416,"16.0":0.11594,"16.1":0.34781,"16.2":0.21041,"16.3":0.68704,"16.4":0.12453,"16.5":0.68704,"16.6":2.08259,"17.0":1.39984,"17.1":0.07729},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00184,"5.0-5.1":0.00184,"6.0-6.1":0.00553,"7.0-7.1":0.01291,"8.1-8.4":0.00184,"9.0-9.2":0.01291,"9.3":0.04425,"10.0-10.2":0.00184,"10.3":0.06453,"11.0-11.2":0.059,"11.3-11.4":0.02028,"12.0-12.1":0.01659,"12.2-12.5":0.29313,"13.0-13.1":0.00922,"13.2":0.04978,"13.3":0.01844,"13.4-13.7":0.059,"14.0-14.4":0.16224,"14.5-14.8":0.26179,"15.0-15.1":0.10324,"15.2-15.3":0.11799,"15.4":0.1309,"15.5":0.1862,"15.6-15.7":1.28868,"16.0":0.47565,"16.1":0.91074,"16.2":0.44431,"16.3":0.82409,"16.4":0.17699,"16.5":0.47196,"16.6-16.7":8.8401,"17.0":3.14888,"17.1":0.18989,"17.2":0.00553},P:{"4":0.13481,"20":0.05185,"21":0.11407,"22":2.73776,"23":0.58074,"5.0-5.4":0.02074,"6.2-6.4":0.01037,"7.2-7.4":0.02074,_:"8.2 9.2 10.1 11.1-11.2 12.0 15.0","13.0":0.02074,"14.0":0.01037,"16.0":0.03111,"17.0":0.02074,"18.0":0.02074,"19.0":0.03111},I:{"0":0.21005,"3":0,"4":0.00004,"2.1":0,"2.2":0.00006,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00015,"4.4":0,"4.4.3-4.4.4":0.00063},A:{"7":0.00483,"8":0.08695,"9":0.01449,"10":0.00966,"11":0.11594,_:"6 5.5"},K:{"0":1.35232,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00571,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.94149},Q:{"13.1":0.7646},O:{"0":1.75174},H:{"0":0},L:{"0":30.16747}};
      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 08783ad2bf886b..e2e89e48e0a828 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LV.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LV.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0.03486,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.05229,"49":0,"50":0,"51":0,"52":0.04067,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00581,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01743,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.01162,"75":0,"76":0,"77":0,"78":0.00581,"79":0,"80":0,"81":0.00581,"82":0,"83":0,"84":0,"85":0,"86":0.00581,"87":0,"88":0.01162,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00581,"96":0,"97":0,"98":0,"99":0.00581,"100":0,"101":0,"102":0.06391,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00581,"109":0,"110":0.01743,"111":0.01162,"112":0.09296,"113":0.01162,"114":0.01743,"115":0.44156,"116":0.12782,"117":1.95797,"118":0.15687,"119":0.00581,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.01162,"42":0,"43":0.00581,"44":0.00581,"45":0.00581,"46":0.00581,"47":0,"48":0,"49":0.01743,"50":0,"51":0.00581,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.01162,"65":0,"66":0.00581,"67":0,"68":0.01743,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00581,"75":0.01162,"76":0.02324,"77":0.00581,"78":0,"79":0.0581,"80":0.04648,"81":0.00581,"83":0,"84":0,"85":0.02324,"86":0.01162,"87":0.09877,"88":0,"89":0.01743,"90":0.08134,"91":0,"92":0.09877,"93":0.01743,"94":0.01162,"95":0.00581,"96":0.01162,"97":0.00581,"98":0.00581,"99":0.01162,"100":0.24402,"101":0.00581,"102":0.0581,"103":0.16268,"104":0.00581,"105":0.01743,"106":0.04648,"107":0.02324,"108":0.04648,"109":1.55127,"110":0.04648,"111":0.04648,"112":0.05229,"113":0.03486,"114":0.50547,"115":1.05161,"116":15.1641,"117":3.81136,"118":0.00581,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00581,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00581,"71":0,"72":0.00581,"73":0.00581,"74":0,"75":0,"76":0,"77":0.03486,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00581,"86":0,"87":0.00581,"88":0,"89":0,"90":0,"91":0.00581,"92":0,"93":0,"94":0.00581,"95":0.08715,"96":0,"97":0,"98":0,"99":0.01162,"100":0.13363,"101":0.56357,"102":0.48223,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01162,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00581,"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.00581,"107":0.01743,"108":0.00581,"109":0.02324,"110":0.01162,"111":0.00581,"112":0.00581,"113":0.00581,"114":0.09877,"115":0.09296,"116":1.69071,"117":1.30144},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00581,"10":0,"11":0,"12":0,"13":0,"14":0.01743,"15":0.01162,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00581,"10.1":0,"11.1":0,"12.1":0,"13.1":0.03486,"14.1":0.03486,"15.1":0.00581,"15.2-15.3":0.01743,"15.4":0.01743,"15.5":0.01743,"15.6":0.09877,"16.0":0.01162,"16.1":0.0581,"16.2":0.03486,"16.3":0.07553,"16.4":0.05229,"16.5":0.10458,"16.6":0.57519,"17.0":0.0581,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00437,"8.1-8.4":0.01747,"9.0-9.2":0.00218,"9.3":0.0131,"10.0-10.2":0,"10.3":0.00873,"11.0-11.2":0.03057,"11.3-11.4":0,"12.0-12.1":0.0131,"12.2-12.5":0.10698,"13.0-13.1":0.00218,"13.2":0.00437,"13.3":2.99987,"13.4-13.7":0.02183,"14.0-14.4":0.08952,"14.5-14.8":0.15502,"15.0-15.1":0.06332,"15.2-15.3":0.06113,"15.4":0.10043,"15.5":0.18121,"15.6-15.7":0.79473,"16.0":0.70084,"16.1":1.06109,"16.2":0.55019,"16.3":1.02179,"16.4":0.22051,"16.5":0.74233,"16.6":10.96023,"17.0":1.73573,"17.1":0.00437},P:{"4":0.03046,"20":0.08121,"21":0.21319,"22":2.96432,"5.0-5.4":0.01015,"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.01015,"14.0":0.0203,"15.0":0.04061,"16.0":0.0203,"17.0":0.0203,"18.0":0.03046,"19.0":0.10152},I:{"0":0,"3":0.00287,"4":0.02292,"2.1":0.00287,"2.2":0.01146,"2.3":0.01719,"4.1":0.01433,"4.2-4.3":0.03725,"4.4":0,"4.4.3-4.4.4":0.08883},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00581,"8":0.02905,"9":0.00581,"10":0.00581,"11":0.04067,"5.5":0},S:{"2.5":0.00419,_:"3.0-3.1"},J:{"7":0,"10":0.00419},N:{"10":0.01257,"11":0},L:{"0":37.77717},R:{_:"0"},M:{"0":0.3771},Q:{"13.1":0},O:{"0":0.06704},H:{"0":0.34511}};
      +module.exports={C:{"16":0.02162,"48":0.09513,"52":0.04324,"60":0.00432,"68":0.00865,"72":0.00432,"75":0.00432,"76":0.00432,"78":0.00432,"88":0.0173,"89":0.00432,"93":0.01297,"95":0.00432,"99":0.00432,"102":0.02594,"103":0.01297,"104":0.00432,"105":0.00865,"107":0.00432,"108":0.00432,"109":0.00432,"110":0.01297,"111":0.00432,"112":0.01297,"113":0.00432,"114":0.0173,"115":0.61401,"116":0.03459,"117":0.08216,"118":1.98904,"119":0.92101,"120":0.01297,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 77 79 80 81 82 83 84 85 86 87 90 91 92 94 96 97 98 100 101 106 121 122 3.5 3.6"},D:{"38":0.00432,"41":0.00432,"44":0.00432,"49":0.0173,"51":0.00432,"58":0.00432,"75":0.00432,"79":0.09945,"80":0.00432,"81":0.00865,"83":0.00432,"84":0.00432,"85":0.02162,"86":0.00432,"87":0.04756,"88":0.00432,"89":0.00432,"90":0.03027,"91":0.02162,"92":0.01297,"93":0.02162,"94":0.01297,"95":0.00432,"96":0.00865,"97":0.00865,"98":0.00432,"99":0.01297,"100":0.01297,"101":0.00865,"102":0.01297,"103":0.13404,"104":0.00865,"105":0.03027,"106":0.06486,"107":0.03892,"108":0.1254,"109":1.91553,"110":0.01297,"111":0.03459,"112":0.06054,"113":0.22917,"114":0.62266,"115":0.32862,"116":2.2528,"117":9.47821,"118":13.9622,"119":0.02162,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 45 46 47 48 50 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 120 121 122"},F:{"16":0.00865,"46":0.00432,"79":0.00432,"85":0.00865,"92":0.00432,"94":0.00432,"95":0.12972,"99":0.00432,"100":0.00432,"101":0.00432,"102":1.05938,"103":0.51023,_:"9 11 12 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 93 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00432,"18":0.00432,"92":0.03027,"98":0.00432,"103":0.00432,"104":0.00432,"106":0.00432,"107":0.02162,"108":0.00432,"109":0.05621,"110":0.00432,"111":0.00432,"112":0.00865,"113":0.00865,"114":0.00865,"115":0.02594,"116":0.05621,"117":1.48746,"118":2.3609,"119":0.00432,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 105"},E:{"7":0.00432,"9":0.00432,"13":0.00432,"14":0.02162,"15":0.00865,_:"0 4 5 6 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.02594,"13.1":0.05189,"14.1":0.04756,"15.1":0.00432,"15.2-15.3":0.02594,"15.4":0.02594,"15.5":0.0173,"15.6":0.13404,"16.0":0.01297,"16.1":0.04756,"16.2":0.05621,"16.3":0.08648,"16.4":0.04756,"16.5":0.13837,"16.6":0.53185,"17.0":0.41078,"17.1":0.05189},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00129,"5.0-5.1":0.00129,"6.0-6.1":0.00387,"7.0-7.1":0.00904,"8.1-8.4":0.00129,"9.0-9.2":0.00904,"9.3":0.03099,"10.0-10.2":0.00129,"10.3":0.0452,"11.0-11.2":0.04132,"11.3-11.4":0.0142,"12.0-12.1":0.01162,"12.2-12.5":0.20532,"13.0-13.1":0.00646,"13.2":0.03486,"13.3":0.01291,"13.4-13.7":0.04132,"14.0-14.4":0.11363,"14.5-14.8":0.18336,"15.0-15.1":0.07231,"15.2-15.3":0.08264,"15.4":0.09168,"15.5":0.13042,"15.6-15.7":0.90261,"16.0":0.33315,"16.1":0.6379,"16.2":0.3112,"16.3":0.57721,"16.4":0.12396,"16.5":0.33057,"16.6-16.7":6.19174,"17.0":2.20552,"17.1":0.133,"17.2":0.00387},P:{"4":0.03056,"20":0.11206,"21":0.34638,"22":3.12762,"23":2.4858,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0","13.0":0.02038,"14.0":0.04075,"15.0":0.02038,"16.0":0.02038,"17.0":0.05094,"18.0":0.03056,"19.0":0.07131},I:{"0":0.04518,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"8":0.0173,"9":0.00432,"11":0.04756,_:"6 7 10 5.5"},K:{"0":0.72085,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.72085},Q:{_:"13.1"},O:{"0":0.03406},H:{"0":0},L:{"0":36.88032}};
      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 70f1c8801ae52c..953475b8d551be 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00134,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00134,"111":0,"112":0,"113":0.00134,"114":0.00134,"115":0.0188,"116":0.00403,"117":0.05506,"118":0.00403,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00134,"39":0,"40":0,"41":0,"42":0,"43":0.00134,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02283,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00537,"59":0,"60":0.00134,"61":0,"62":0,"63":0.00134,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00134,"70":0,"71":0,"72":0,"73":0.00134,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00269,"80":0,"81":0.00269,"83":0.00134,"84":0,"85":0,"86":0.0094,"87":0.00134,"88":0.00134,"89":0.00134,"90":0,"91":0.00134,"92":0.00134,"93":0.00134,"94":0,"95":0.00134,"96":0,"97":0,"98":0.00269,"99":0.00269,"100":0,"101":0,"102":0.00806,"103":0.00269,"104":0.00269,"105":0.00134,"106":0.00134,"107":0.00403,"108":0.00537,"109":0.22965,"110":0.00134,"111":0.00537,"112":0.00269,"113":0.00269,"114":0.01074,"115":0.03492,"116":0.61778,"117":0.1437,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00269,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00134,"60":0.00134,"62":0,"63":0.00269,"64":0.00269,"65":0.00134,"66":0.00134,"67":0.00403,"68":0.00269,"69":0.02283,"70":0.01612,"71":0.04432,"72":0.11147,"73":0.02552,"74":0,"75":0,"76":0,"77":0.00806,"78":0,"79":0.00134,"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.0094,"96":0,"97":0,"98":0.00403,"99":0.00134,"100":0.00269,"101":0.0282,"102":0.03223,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00134,"79":0,"80":0,"81":0,"83":0,"84":0.00134,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00269,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00403,"110":0.00537,"111":0,"112":0,"113":0.00134,"114":0.0094,"115":0.00403,"116":0.10744,"117":0.06446},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00134,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01612,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00134,"15.1":0,"15.2-15.3":0,"15.4":0.00134,"15.5":0.00134,"15.6":0.00806,"16.0":0,"16.1":0.00269,"16.2":0.00134,"16.3":0.00403,"16.4":0.00134,"16.5":0.00269,"16.6":0.01477,"17.0":0.00403,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01555,"8.1-8.4":0,"9.0-9.2":0.00104,"9.3":0.12959,"10.0-10.2":0,"10.3":0.15032,"11.0-11.2":0.00415,"11.3-11.4":0.00415,"12.0-12.1":0.01659,"12.2-12.5":0.32449,"13.0-13.1":0.00726,"13.2":0.01037,"13.3":0.02177,"13.4-13.7":0.04354,"14.0-14.4":0.21875,"14.5-14.8":0.32138,"15.0-15.1":0.11508,"15.2-15.3":0.14825,"15.4":0.20009,"15.5":0.20423,"15.6-15.7":0.79931,"16.0":0.52873,"16.1":0.59819,"16.2":0.34523,"16.3":0.6127,"16.4":0.31102,"16.5":0.78583,"16.6":3.79336,"17.0":0.56709,"17.1":0},P:{"4":0.11185,"20":0.11185,"21":0.20337,"22":1.22022,"5.0-5.4":0,"6.2-6.4":0.02034,"7.2-7.4":0.27455,"8.2":0,"9.2":0.03051,"10.1":0,"11.1-11.2":0.04067,"12.0":0.01017,"13.0":0.06101,"14.0":0.06101,"15.0":0.03051,"16.0":0.11185,"17.0":0.05084,"18.0":0.06101,"19.0":0.15253},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0199,"4.4":0,"4.4.3-4.4.4":0.07562},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.44853},R:{_:"0"},M:{"0":0.06926},Q:{"13.1":0},O:{"0":0.34628},H:{"0":2.51614}};
      +module.exports={C:{"34":0.00155,"38":0.00155,"43":0.0031,"45":0.00155,"47":0.00155,"52":0.02477,"56":0.00155,"61":0.00155,"67":0.00155,"72":0.0031,"84":0.00155,"85":0.00155,"87":0.00155,"88":0.00155,"95":0.00155,"99":0.00155,"102":0.00155,"104":0.00155,"109":0.00155,"110":0.0031,"112":0.00155,"114":0.0031,"115":0.16409,"116":0.00464,"117":0.01858,"118":0.35449,"119":0.06502,"120":0.00155,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 46 48 49 50 51 53 54 55 57 58 59 60 62 63 64 65 66 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 86 89 90 91 92 93 94 96 97 98 100 101 103 105 106 107 108 111 113 121 122 3.5 3.6"},D:{"11":0.00155,"31":0.00155,"33":0.0031,"35":0.00155,"38":0.00155,"40":0.00155,"41":0.00155,"42":0.00155,"43":0.00464,"47":0.00155,"49":0.00619,"53":0.0031,"54":0.00155,"55":0.00155,"56":0.00155,"58":0.06656,"61":0.0031,"63":0.01393,"64":0.00155,"65":0.0031,"66":0.00155,"67":0.00155,"68":0.01393,"69":0.00619,"70":0.00464,"71":0.00155,"72":0.00155,"73":0.00464,"74":0.00155,"75":0.00464,"76":0.0031,"77":0.00464,"78":0.00464,"79":0.00774,"80":0.00464,"81":0.0031,"83":0.00774,"84":0.00155,"85":0.00155,"86":0.01858,"87":0.01238,"88":0.00929,"89":0.01703,"90":0.00619,"91":0.00929,"92":0.00464,"93":0.00774,"94":0.00464,"95":0.00464,"96":0.00774,"97":0.0031,"98":0.01548,"99":0.01238,"100":0.0031,"101":0.00155,"102":0.07121,"103":0.02941,"104":0.00619,"105":0.00929,"106":0.01084,"107":0.01858,"108":0.05418,"109":1.99847,"110":0.00929,"111":0.00929,"112":0.01703,"113":0.01548,"114":0.05108,"115":0.0418,"116":0.36997,"117":3.54028,"118":3.60684,"119":0.0031,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 36 37 39 44 45 46 48 50 51 52 57 59 60 62 120 121 122"},F:{"46":0.0031,"73":0.0031,"79":0.00929,"80":0.00155,"84":0.01858,"85":0.0031,"86":0.0031,"90":0.00155,"94":0.00155,"95":0.04489,"98":0.04025,"99":0.00155,"100":0.00155,"101":0.01238,"102":0.40403,"103":0.14242,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 81 82 83 87 88 89 91 92 93 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00155,"13":0.00155,"14":0.00155,"16":0.00155,"17":0.00155,"18":0.01238,"84":0.00619,"89":0.0031,"90":0.0031,"92":0.0356,"95":0.00155,"100":0.00464,"105":0.0031,"108":0.0031,"109":0.04025,"110":0.00619,"111":0.00155,"112":0.01393,"113":0.0031,"114":0.01703,"115":0.02167,"116":0.04025,"117":0.81115,"118":0.80341,"119":0.0031,_:"15 79 80 81 83 85 86 87 88 91 93 94 96 97 98 99 101 102 103 104 106 107"},E:{"13":0.00155,"14":0.00619,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.2","5.1":0.12539,"13.1":0.0031,"14.1":0.00619,"15.1":0.0774,"15.2-15.3":0.00155,"15.4":0.00464,"15.5":0.00464,"15.6":0.06037,"16.0":0.00155,"16.1":0.05108,"16.2":0.02322,"16.3":0.07585,"16.4":0.02632,"16.5":0.0418,"16.6":0.15635,"17.0":0.04954,"17.1":0.02322},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0009,"5.0-5.1":0.0009,"6.0-6.1":0.0027,"7.0-7.1":0.00631,"8.1-8.4":0.0009,"9.0-9.2":0.00631,"9.3":0.02162,"10.0-10.2":0.0009,"10.3":0.03153,"11.0-11.2":0.02883,"11.3-11.4":0.00991,"12.0-12.1":0.00811,"12.2-12.5":0.14324,"13.0-13.1":0.0045,"13.2":0.02432,"13.3":0.00901,"13.4-13.7":0.02883,"14.0-14.4":0.07928,"14.5-14.8":0.12792,"15.0-15.1":0.05045,"15.2-15.3":0.05766,"15.4":0.06396,"15.5":0.09099,"15.6-15.7":0.62971,"16.0":0.23243,"16.1":0.44503,"16.2":0.21711,"16.3":0.40269,"16.4":0.08648,"16.5":0.23062,"16.6-16.7":4.3197,"17.0":1.5387,"17.1":0.09279,"17.2":0.0027},P:{"4":0.07169,"20":0.07169,"21":0.14338,"22":1.24946,"23":0.11266,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.03072,"7.2-7.4":0.28676,"9.2":0.01024,"11.1-11.2":0.04097,"12.0":0.01024,"13.0":0.03072,"14.0":0.04097,"15.0":0.03072,"16.0":0.08193,"17.0":0.04097,"18.0":0.04097,"19.0":0.1229},I:{"0":0.06726,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"11":0.02786,_:"6 7 8 9 10 5.5"},K:{"0":2.41305,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.0338},Q:{_:"13.1"},O:{"0":0.33804},H:{"0":0.08},L:{"0":71.15206}};
      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 fdadd40b225e97..b6e14623c5903a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03566,"53":0,"54":0,"55":0.00324,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01297,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00324,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00324,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00324,"95":0,"96":0,"97":0,"98":0,"99":0.00324,"100":0,"101":0,"102":0.01297,"103":0.00324,"104":0,"105":0.00324,"106":0.00324,"107":0.00324,"108":0.00324,"109":0.00973,"110":0.00324,"111":0.00324,"112":0.00324,"113":0.00648,"114":0.00648,"115":0.11347,"116":0.0389,"117":0.39552,"118":0.0389,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00324,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01945,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00324,"57":0,"58":0.02269,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00324,"67":0.04215,"68":0.00324,"69":0.00324,"70":0.00648,"71":0,"72":0.00648,"73":0.00648,"74":0,"75":0.00324,"76":0.00324,"77":0,"78":0.00324,"79":0.01621,"80":0,"81":0.00973,"83":0.00973,"84":0.00648,"85":0.00648,"86":0.00648,"87":0.01297,"88":0.00648,"89":0.00324,"90":0.01621,"91":0.00648,"92":0.00324,"93":0.00648,"94":0.00324,"95":0.00324,"96":0.00648,"97":0.02269,"98":0.00324,"99":0.00973,"100":0.00324,"101":0.00648,"102":0.00973,"103":0.01945,"104":0.00648,"105":0.01621,"106":0.02594,"107":0.03566,"108":0.03566,"109":0.94342,"110":0.02269,"111":0.02594,"112":0.03242,"113":0.02594,"114":0.10699,"115":0.14589,"116":4.48044,"117":1.19954,"118":0.00324,"119":0.00324,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00324,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00324,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00324,"70":0,"71":0.00324,"72":0.01945,"73":0.00648,"74":0.00324,"75":0,"76":0,"77":0.04215,"78":0,"79":0.00324,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00324,"86":0,"87":0.00324,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00324,"94":0,"95":0.03242,"96":0,"97":0,"98":0,"99":0.00648,"100":0.05187,"101":0.17831,"102":0.23991,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00324,"15":0.00324,"16":0,"17":0,"18":0.00324,"79":0,"80":0,"81":0,"83":0,"84":0.00324,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00973,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00324,"108":0.00324,"109":0.01621,"110":0.00324,"111":0.00324,"112":0,"113":0.00324,"114":0.01297,"115":0.02594,"116":0.47009,"117":0.34689},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02269,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01297,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00324,"13.1":0.00973,"14.1":0.01621,"15.1":0.01297,"15.2-15.3":0,"15.4":0.00324,"15.5":0.00648,"15.6":0.02594,"16.0":0.00324,"16.1":0.00648,"16.2":0.01621,"16.3":0.01945,"16.4":0.00648,"16.5":0.01945,"16.6":0.07457,"17.0":0.00648,"17.1":0},G:{"8":0.00469,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01251,"6.0-6.1":0,"7.0-7.1":0.05473,"8.1-8.4":0.00156,"9.0-9.2":0,"9.3":0.05004,"10.0-10.2":0.00313,"10.3":0.03284,"11.0-11.2":0.02189,"11.3-11.4":0.00625,"12.0-12.1":0.01095,"12.2-12.5":0.31899,"13.0-13.1":0.00625,"13.2":0.0172,"13.3":0.20797,"13.4-13.7":0.07037,"14.0-14.4":0.23142,"14.5-14.8":0.36121,"15.0-15.1":0.12197,"15.2-15.3":0.14386,"15.4":0.18295,"15.5":0.29553,"15.6-15.7":1.50582,"16.0":0.70991,"16.1":0.85846,"16.2":0.54416,"16.3":1.04297,"16.4":0.2971,"16.5":0.83969,"16.6":6.99118,"17.0":0.58638,"17.1":0},P:{"4":0.25322,"20":0.12154,"21":0.25322,"22":2.75502,"5.0-5.4":0.02026,"6.2-6.4":0.02026,"7.2-7.4":0.23296,"8.2":0.01013,"9.2":0.01013,"10.1":0,"11.1-11.2":0.0709,"12.0":0.01013,"13.0":0.0709,"14.0":0.04051,"15.0":0.02026,"16.0":0.05064,"17.0":0.0709,"18.0":0.05064,"19.0":0.0709},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01301,"4.2-4.3":0.03904,"4.4":0,"4.4.3-4.4.4":0.30361},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00684,"9":0,"10":0,"11":0.05475,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.30642},R:{_:"0"},M:{"0":0.18922},Q:{"13.1":0},O:{"0":0.1284},H:{"0":0.50544}};
      +module.exports={C:{"43":0.00398,"46":0.01989,"52":0.15514,"55":0.01193,"56":0.00398,"64":0.00398,"65":0.04376,"68":0.00398,"72":0.00398,"75":0.00398,"78":0.00796,"81":0.00398,"82":0.00398,"84":0.00796,"87":0.00398,"94":0.00398,"98":0.00398,"99":0.00398,"102":0.01591,"103":0.00398,"104":0.00398,"105":0.00398,"106":0.01591,"107":0.00796,"108":0.00398,"109":0.02785,"110":0.01591,"111":0.01193,"112":0.00398,"113":0.01193,"114":0.00796,"115":0.4694,"116":0.02387,"117":0.08354,"118":1.30876,"119":0.2705,"120":0.00398,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 47 48 49 50 51 53 54 57 58 59 60 61 62 63 66 67 69 70 71 73 74 76 77 79 80 83 85 86 88 89 90 91 92 93 95 96 97 100 101 121 122 3.5 3.6"},D:{"11":0.00398,"38":0.00398,"41":0.00398,"43":0.00796,"48":0.00398,"49":0.05569,"50":0.00398,"51":0.00398,"55":0.00398,"56":0.01591,"58":0.08752,"59":0.00398,"62":0.00398,"63":0.00398,"64":0.00796,"65":0.00796,"66":0.00398,"67":0.31426,"68":0.01193,"69":0.00796,"70":0.01193,"71":0.00398,"72":0.01591,"73":0.01193,"74":0.00398,"75":0.00398,"76":0.00398,"77":0.00398,"78":0.00796,"79":0.05569,"80":0.00796,"81":0.01193,"83":0.03978,"84":0.00796,"85":0.03182,"86":0.01989,"87":0.05967,"88":0.02785,"89":0.00796,"90":0.00796,"91":0.01989,"92":0.01193,"93":0.01193,"94":0.00796,"95":0.01591,"96":0.01193,"97":0.01193,"98":0.01193,"99":0.03182,"100":0.01193,"101":0.02387,"102":0.03182,"103":0.08354,"104":0.01989,"105":0.06763,"106":0.06763,"107":0.10343,"108":0.17503,"109":3.28583,"110":0.07558,"111":0.09945,"112":0.10343,"113":0.0358,"114":0.16708,"115":0.13127,"116":1.01439,"117":10.45816,"118":11.92207,"119":0.02387,"120":0.01591,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 47 52 53 54 57 60 61 121 122"},F:{"28":0.00398,"40":0.00796,"46":0.00398,"79":0.00796,"84":0.00398,"85":0.01193,"87":0.00398,"91":0.01193,"92":0.00398,"93":0.00398,"94":0.00398,"95":0.10741,"97":0.00398,"99":0.00398,"100":0.01193,"101":0.03182,"102":1.33263,"103":0.38587,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 86 88 89 90 96 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00398,"14":0.00398,"18":0.02785,"84":0.00398,"86":0.00398,"90":0.00398,"91":0.00398,"92":0.04376,"100":0.00398,"101":0.00398,"106":0.00796,"107":0.01591,"108":0.00796,"109":0.06763,"110":0.01193,"111":0.00796,"112":0.00398,"113":0.00398,"114":0.01989,"115":0.01591,"116":0.06365,"117":1.47584,"118":1.54346,"119":0.00398,_:"13 15 16 17 79 80 81 83 85 87 88 89 93 94 95 96 97 98 99 102 103 104 105"},E:{"10":0.00796,"13":0.00398,"14":0.04376,"15":0.00398,_:"0 4 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.05569,"11.1":0.00398,"12.1":0.00796,"13.1":0.03182,"14.1":0.05967,"15.1":0.08354,"15.2-15.3":0.00796,"15.4":0.01591,"15.5":0.01989,"15.6":0.19492,"16.0":0.00796,"16.1":0.01193,"16.2":0.0358,"16.3":0.0716,"16.4":0.02387,"16.5":0.03978,"16.6":0.20288,"17.0":0.23868,"17.1":0.00796},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0008,"5.0-5.1":0.0008,"6.0-6.1":0.0024,"7.0-7.1":0.0056,"8.1-8.4":0.0008,"9.0-9.2":0.0056,"9.3":0.01921,"10.0-10.2":0.0008,"10.3":0.02802,"11.0-11.2":0.02561,"11.3-11.4":0.00881,"12.0-12.1":0.0072,"12.2-12.5":0.12727,"13.0-13.1":0.004,"13.2":0.02161,"13.3":0.008,"13.4-13.7":0.02561,"14.0-14.4":0.07044,"14.5-14.8":0.11366,"15.0-15.1":0.04483,"15.2-15.3":0.05123,"15.4":0.05683,"15.5":0.08085,"15.6-15.7":0.55952,"16.0":0.20652,"16.1":0.39543,"16.2":0.19291,"16.3":0.3578,"16.4":0.07684,"16.5":0.20492,"16.6-16.7":3.83819,"17.0":1.36718,"17.1":0.08245,"17.2":0.0024},P:{"4":0.26725,"20":0.07195,"21":0.17474,"22":1.75771,"23":0.29809,"5.0-5.4":0.02056,"6.2-6.4":0.03084,"7.2-7.4":0.22614,_:"8.2 10.1","9.2":0.03084,"11.1-11.2":0.04112,"12.0":0.01028,"13.0":0.07195,"14.0":0.04112,"15.0":0.02056,"16.0":0.04112,"17.0":0.0514,"18.0":0.04112,"19.0":0.06167},I:{"0":0.31759,"3":0,"4":0.00006,"2.1":0,"2.2":0.0001,"2.3":0,"4.1":0.00006,"4.2-4.3":0.00022,"4.4":0,"4.4.3-4.4.4":0.00096},A:{"8":0.01643,"9":0.00411,"10":0.00411,"11":0.22174,_:"6 7 5.5"},K:{"0":0.46786,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00602,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.16864},Q:{_:"13.1"},O:{"0":0.10841},H:{"0":0.02},L:{"0":48.95545}};
      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 734ffe56103569..972068fdfb90b7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0.02015,"3":0.02686,"4":0.01343,"5":0.00672,"6":0.00672,"7":0.00672,"8":0.00672,"9":0.00672,"10":0,"11":0.00672,"12":0.01343,"13":0.01343,"14":0.00672,"15":0.00672,"16":0.00672,"17":0.02015,"18":0.00672,"19":0,"20":0.00672,"21":0.00672,"22":0.00672,"23":0.01343,"24":0.01343,"25":0.00672,"26":0.00672,"27":0.00672,"28":0,"29":0.02015,"30":0.01343,"31":0.01343,"32":0.01343,"33":0.00672,"34":0.01343,"35":0.01343,"36":0.01343,"37":0.00672,"38":0.02686,"39":0.01343,"40":0.02686,"41":0.02015,"42":0.00672,"43":0,"44":0,"45":0,"46":0,"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.00672,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.10074,"68":0.10746,"69":0,"70":0,"71":0,"72":0.10746,"73":0,"74":0,"75":0.49027,"76":0,"77":0.00672,"78":0.30894,"79":0,"80":0,"81":0,"82":0.04701,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01343,"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.34923,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00672,"110":0,"111":0,"112":0,"113":0.01343,"114":0,"115":0.2082,"116":0.14775,"117":1.51782,"118":0.1276,"119":0,"120":0,"3.5":0.02015,"3.6":0.03358},D:{"4":0.00672,"5":0,"6":0.00672,"7":0.01343,"8":0,"9":0.00672,"10":0,"11":0.00672,"12":0,"13":0,"14":0.00672,"15":0.00672,"16":0,"17":0.00672,"18":0.00672,"19":0.01343,"20":0,"21":0.02015,"22":0.00672,"23":0.00672,"24":0,"25":0,"26":0.00672,"27":0,"28":0.00672,"29":0,"30":0,"31":0.02015,"32":0.00672,"33":0.01343,"34":0.00672,"35":0,"36":0.02015,"37":0.02686,"38":0.00672,"39":0.02686,"40":0.0403,"41":0.05373,"42":0.03358,"43":0.06044,"44":0.10074,"45":0.06716,"46":0.08731,"47":0.07388,"48":0,"49":0,"50":0,"51":0.10746,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00672,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00672,"66":0,"67":0,"68":0,"69":0,"70":0.04701,"71":0.09402,"72":0.00672,"73":0,"74":0.00672,"75":0,"76":0.10746,"77":0,"78":0.00672,"79":0.52385,"80":0.02015,"81":0.53056,"83":0.00672,"84":0.02015,"85":1.20888,"86":0.0403,"87":1.46409,"88":0,"89":0.2082,"90":0.00672,"91":0.00672,"92":0,"93":0.00672,"94":0,"95":0,"96":0,"97":0,"98":0.04701,"99":0.01343,"100":0.01343,"101":0,"102":0.00672,"103":0.51042,"104":0.05373,"105":0.06716,"106":0.26864,"107":0.17462,"108":0.40296,"109":0.74548,"110":0.1276,"111":0.42982,"112":0.60444,"113":0.05373,"114":0.12089,"115":0.24849,"116":10.06728,"117":2.57894,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0.00672,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00672,"25":0,"26":0.00672,"27":0.00672,"28":0,"29":0,"30":0.01343,"31":0.03358,"32":0.0403,"33":0.00672,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.09402,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.03358,"78":0.02015,"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.00672,"93":0,"94":0,"95":0.00672,"96":0,"97":0,"98":0,"99":0.00672,"100":0.00672,"101":6.38692,"102":1.86033,"9.5-9.6":0,"10.0-10.1":0.00672,"10.5":0,"10.6":0,"11.1":0.00672,"11.5":0.00672,"11.6":0,"12.1":0.02015},B:{"12":0.0403,"13":0,"14":0.08059,"15":0,"16":0,"17":0,"18":0.10074,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.01343,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.23506,"110":0,"111":0,"112":0,"113":0,"114":0.10746,"115":0.26864,"116":1.01412,"117":0.69846},E:{"4":0.01343,"5":0.01343,"6":0.00672,"7":0,"8":0.01343,"9":0.14104,"10":0,"11":0,"12":0,"13":0,"14":0.25521,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01343,"6.1":0,"7.1":0.00672,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00672,"13.1":0.14775,"14.1":0.28207,"15.1":0.00672,"15.2-15.3":0.00672,"15.4":0.02686,"15.5":0.03358,"15.6":0.3358,"16.0":0.02686,"16.1":0.22163,"16.2":0.06044,"16.3":0.28879,"16.4":0.09402,"16.5":0.32908,"16.6":2.7267,"17.0":0.16118,"17.1":0},G:{"8":0.01543,"3.2":0.00309,"4.0-4.1":0,"4.2-4.3":0.02778,"5.0-5.1":0.01852,"6.0-6.1":0.0463,"7.0-7.1":0.17284,"8.1-8.4":0.3179,"9.0-9.2":0.02161,"9.3":0.1142,"10.0-10.2":0.04938,"10.3":0.12346,"11.0-11.2":0.70371,"11.3-11.4":0,"12.0-12.1":0.27161,"12.2-12.5":0.14198,"13.0-13.1":0,"13.2":0.02778,"13.3":0.00926,"13.4-13.7":0.00309,"14.0-14.4":0.21914,"14.5-14.8":0.49074,"15.0-15.1":0.21605,"15.2-15.3":0.04012,"15.4":0.1821,"15.5":0.14198,"15.6-15.7":1.61112,"16.0":0.51852,"16.1":1.46297,"16.2":0.87038,"16.3":0.97223,"16.4":0.14506,"16.5":1.0926,"16.6":18.91373,"17.0":1.69754,"17.1":0.00309},P:{"4":0.13349,"20":0.04107,"21":0.01027,"22":1.07821,"5.0-5.4":0,"6.2-6.4":0.09242,"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.01027,"19.0":0.01027},I:{"0":0,"3":0.01809,"4":0.34848,"2.1":0.05547,"2.2":0.20861,"2.3":0.22549,"4.1":0.23634,"4.2-4.3":0.39551,"4.4":0,"4.4.3-4.4.4":0.82719},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02686,"7":0.05373,"8":0.61116,"9":0.12089,"10":0.09402,"11":0.32237,"5.5":0.00672},S:{"2.5":0.03612,_:"3.0-3.1"},J:{"7":0,"10":0.0821},N:{"10":0.14748,"11":0.1021},L:{"0":18.10616},R:{_:"0"},M:{"0":0.23645},Q:{"13.1":0.00328},O:{"0":0.22988},H:{"0":0.05596}};
      +module.exports={C:{"3":0.02037,"4":0.02037,"10":0.00679,"12":0.01358,"14":0.00679,"15":0.00679,"16":0.01358,"17":0.00679,"18":0.00679,"19":0.00679,"22":0.00679,"25":0.00679,"29":0.00679,"30":0.00679,"31":0.01358,"32":0.00679,"34":0.00679,"36":0.00679,"37":0.01358,"38":0.00679,"39":0.00679,"40":0.02716,"41":0.01358,"42":0.00679,"67":0.11545,"68":0.10866,"72":0.12224,"75":0.57724,"78":0.46858,"82":0.0747,"92":0.00679,"100":0.00679,"102":0.02716,"104":0.01358,"105":0.00679,"106":0.00679,"109":0.25127,"115":0.32597,"116":0.00679,"117":0.06791,"118":2.17312,"119":0.23089,_:"2 5 6 7 8 9 11 13 20 21 23 24 26 27 28 33 35 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 69 70 71 73 74 76 77 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 103 107 108 110 111 112 113 114 120 121 122","3.5":0.01358,"3.6":0.04754},D:{"7":0.00679,"9":0.00679,"10":0.00679,"14":0.00679,"17":0.00679,"18":0.00679,"21":0.00679,"27":0.00679,"28":0.01358,"29":0.00679,"30":0.00679,"31":0.00679,"32":0.00679,"33":0.01358,"34":0.01358,"35":0.00679,"36":0.00679,"37":0.01358,"38":0.02037,"39":0.02716,"40":0.01358,"41":0.04075,"42":0.02037,"43":0.04754,"44":0.06112,"45":0.04754,"46":0.06112,"47":0.04075,"51":0.08828,"57":0.00679,"65":0.01358,"70":0.05433,"71":0.09507,"72":0.01358,"74":0.00679,"76":0.11545,"78":0.00679,"79":0.6044,"80":0.02716,"81":0.50933,"83":0.3803,"84":0.03396,"85":1.35141,"86":0.81492,"87":1.35141,"90":0.00679,"92":0.00679,"93":0.00679,"96":0.00679,"98":0.11545,"102":0.00679,"103":0.68589,"104":0.06791,"105":0.02037,"106":0.62477,"107":0.38709,"108":1.11372,"109":1.9626,"110":1.04581,"111":0.46179,"112":1.31745,"113":0.02037,"114":0.06791,"115":0.08828,"116":3.03558,"117":7.80286,"118":7.97263,"119":0.00679,_:"4 5 6 8 11 12 13 15 16 19 20 22 23 24 25 26 48 49 50 52 53 54 55 56 58 59 60 61 62 63 64 66 67 68 69 73 75 77 88 89 91 94 95 97 99 100 101 120 121 122"},F:{"12":0.00679,"23":0.00679,"31":0.02037,"32":0.00679,"65":0.09507,"96":0.19015,"102":10.38344,"103":3.99311,_:"9 11 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00679},B:{"12":0.01358,"18":0.10187,"86":0.02716,"108":0.40067,"109":0.00679,"114":0.03396,"115":0.08149,"116":0.04754,"117":1.32425,"118":1.34462,_:"13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 119"},E:{"4":0.00679,"8":0.00679,"9":0.12224,"14":0.44142,"15":0.01358,_:"0 5 6 7 10 11 12 13 3.1 3.2 10.1 11.1","5.1":0.01358,"6.1":0.00679,"7.1":0.00679,"9.1":0.00679,"12.1":0.02037,"13.1":0.11545,"14.1":0.57724,"15.1":0.61798,"15.2-15.3":0.08828,"15.4":0.04075,"15.5":0.06112,"15.6":0.50253,"16.0":0.04754,"16.1":0.34634,"16.2":0.06112,"16.3":0.57724,"16.4":0.17657,"16.5":0.46858,"16.6":3.76221,"17.0":1.51439,"17.1":0.14261,"17.2":0.00679},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00175,"5.0-5.1":0.00175,"6.0-6.1":0.00526,"7.0-7.1":0.01228,"8.1-8.4":0.00175,"9.0-9.2":0.01228,"9.3":0.0421,"10.0-10.2":0.00175,"10.3":0.06139,"11.0-11.2":0.05613,"11.3-11.4":0.01929,"12.0-12.1":0.01579,"12.2-12.5":0.27889,"13.0-13.1":0.00877,"13.2":0.04736,"13.3":0.01754,"13.4-13.7":0.05613,"14.0-14.4":0.15436,"14.5-14.8":0.24907,"15.0-15.1":0.09823,"15.2-15.3":0.11226,"15.4":0.12454,"15.5":0.17716,"15.6-15.7":1.22607,"16.0":0.45254,"16.1":0.8665,"16.2":0.42272,"16.3":0.78406,"16.4":0.16839,"16.5":0.44903,"16.6-16.7":8.41062,"17.0":2.9959,"17.1":0.18067,"17.2":0.00526},P:{"4":0.09472,"20":0.02105,"22":0.55778,"23":0.16839,_:"21 5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0","6.2-6.4":0.05262,"16.0":0.01052,"17.0":0.02105,"18.0":0.01052,"19.0":0.0421},I:{"0":0.76304,"3":0,"4":0.00015,"2.1":0,"2.2":0.00023,"2.3":0,"4.1":0.00015,"4.2-4.3":0.00054,"4.4":0,"4.4.3-4.4.4":0.0023},A:{"6":0.03417,"7":0.03417,"8":0.46475,"9":0.08201,"10":0.08201,"11":0.33489,"5.5":0.00683},K:{"0":0.1059,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01925,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.18612},Q:{"13.1":0.01605},O:{"0":0.11232},H:{"0":0},L:{"0":12.05807}};
      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 edf24035c5b874..14694cbbfe3087 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:{"48":0.05308,"52":0.06941,"60":0.06533,"61":0.02042,"68":0.0245,"69":0.06941,"78":0.01225,"86":0.01633,"87":0.05308,"91":0.00817,"95":0.02858,"97":0.00408,"100":0.01225,"102":0.17557,"103":0.00408,"104":0.04491,"105":0.02858,"111":0.04083,"112":0.00408,"113":0.01225,"114":0.02042,"115":0.36747,"116":0.07758,"117":1.06975,"118":0.09391,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 62 63 64 65 66 67 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 88 89 90 92 93 94 96 98 99 101 106 107 108 109 110 119 120 3.5","3.6":0.04491},D:{"40":0.00408,"41":0.00817,"42":0.00408,"43":0.00817,"44":0.00817,"45":0.00817,"46":0.00817,"47":0.01225,"49":0.05716,"51":0.02858,"53":0.00408,"55":0.00408,"56":0.00408,"58":0.00408,"62":0.00408,"63":0.00817,"64":0.00408,"66":0.00817,"67":0.00817,"68":0.01633,"69":0.01225,"70":0.02042,"71":0.01225,"72":0.01633,"73":0.12657,"74":0.02042,"75":0.1674,"76":0.18374,"77":0.27764,"78":0.01633,"79":0.17557,"80":0.15515,"81":0.06125,"83":0.14699,"84":0.15515,"85":0.1674,"86":0.41238,"87":0.06533,"88":0.02042,"89":0.05716,"90":0.82068,"91":0.10208,"92":0.02858,"93":0.14699,"94":0.01225,"96":0.11024,"97":0.05716,"98":0.11841,"99":0.01633,"100":0.0245,"101":0.13882,"102":0.30623,"103":0.05716,"104":0.20415,"105":0.03675,"106":0.15515,"107":0.20007,"108":0.34706,"109":3.65837,"110":0.06533,"111":0.05716,"112":0.06125,"113":0.08574,"114":0.83293,"115":0.77169,"116":14.30683,"117":3.04184,"118":0.01225,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 48 50 52 54 57 59 60 61 65 95 119 120"},F:{"54":0.00408,"63":0.02858,"67":0.04083,"68":0.02042,"70":0.00817,"71":0.05716,"72":0.03266,"77":0.00817,"79":0.00817,"82":0.01225,"85":0.049,"86":0.01225,"91":0.00817,"95":0.44096,"99":0.01633,"100":0.15924,"101":0.77169,"102":0.76352,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 64 65 66 69 73 74 75 76 78 80 81 83 84 87 88 89 90 92 93 94 96 97 98 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00817,"18":0.06125,"90":0.09391,"92":0.00408,"106":0.01225,"108":0.00817,"109":0.01633,"110":0.01633,"113":0.00817,"114":0.0245,"115":0.0245,"116":0.82477,"117":0.63695,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 107 111 112"},E:{"4":0,"9":0.01225,"14":0.00817,_:"0 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 17.1","5.1":0.00408,"9.1":0.06533,"13.1":0.0245,"14.1":0.04491,"15.1":0.00408,"15.2-15.3":0.00408,"15.4":0.04491,"15.5":0.01225,"15.6":0.09391,"16.0":0.00817,"16.1":0.03675,"16.2":0.0245,"16.3":0.049,"16.4":0.02042,"16.5":0.13882,"16.6":0.28989,"17.0":0.03675},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00836,"8.1-8.4":0.00836,"9.0-9.2":0,"9.3":0.02175,"10.0-10.2":0,"10.3":0.02007,"11.0-11.2":0.03178,"11.3-11.4":0.00502,"12.0-12.1":0.02844,"12.2-12.5":0.16896,"13.0-13.1":0.00836,"13.2":0.00836,"13.3":5.12236,"13.4-13.7":0.03346,"14.0-14.4":0.08364,"14.5-14.8":0.27101,"15.0-15.1":0.04349,"15.2-15.3":0.05688,"15.4":0.04182,"15.5":0.13216,"15.6-15.7":0.81469,"16.0":0.45502,"16.1":0.62733,"16.2":0.33458,"16.3":0.64239,"16.4":0.12547,"16.5":0.41822,"16.6":6.13613,"17.0":0.97529,"17.1":0.00335},P:{"4":0.01061,"20":0.06369,"21":0.09553,"22":1.78331,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02123,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01061,"12.0":0,"13.0":0.01061,"14.0":0,"15.0":0,"16.0":0.01061,"17.0":0.02123,"18.0":0.03184,"19.0":0.05307},I:{"0":0,"3":0.06658,"4":0.00156,"2.1":0,"2.2":0.00094,"2.3":0.00125,"4.1":0.00094,"4.2-4.3":0.0025,"4.4":0,"4.4.3-4.4.4":0.00907},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00408,"8":0.06125,"9":0.01225,"10":0.00817,"11":0.34706,_:"6 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":41.03142},R:{_:"0"},M:{"0":0.14201},Q:{"13.1":0.00592},O:{"0":0.071},H:{"0":0.23528}};
      +module.exports={C:{"34":0.00367,"38":0.00367,"40":0.00367,"48":0.08448,"52":0.10284,"55":0.00367,"61":0.00367,"68":0.01102,"78":0.00735,"87":0.12121,"91":0.01102,"99":0.00367,"101":0.00367,"102":0.0551,"103":0.00367,"104":0.01102,"107":0.00735,"108":0.00367,"109":0.01837,"110":0.00367,"111":0.00367,"112":0.00735,"113":0.01102,"114":0.00735,"115":0.66849,"116":0.01837,"117":0.04775,"118":1.08354,"119":0.20569,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 41 42 43 44 45 46 47 49 50 51 53 54 56 57 58 59 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 96 97 98 100 105 106 120 121 122 3.5","3.6":0.03673},D:{"37":0.00367,"38":0.00367,"39":0.00367,"40":0.00367,"41":0.00367,"42":0.00367,"43":0.00367,"44":0.00367,"45":0.00735,"46":0.00367,"47":0.00367,"48":0.02571,"49":0.02938,"51":0.02571,"53":0.00367,"56":0.00367,"60":0.00367,"63":0.00367,"67":0.01102,"68":0.01102,"69":0.00367,"70":0.00735,"71":0.01102,"72":0.00735,"73":0.00367,"74":0.01102,"75":0.00367,"76":0.00367,"77":0.00367,"78":0.00735,"79":0.02571,"80":0.07346,"81":0.00735,"83":0.00735,"84":0.00735,"85":0.01469,"86":0.01102,"87":0.01102,"88":0.01102,"89":0.00735,"90":0.03306,"91":0.00367,"92":0.01102,"93":0.02204,"94":0.00735,"95":0.00367,"96":0.03673,"97":0.01102,"98":0.02204,"99":0.01837,"100":0.0404,"101":0.01102,"102":0.10284,"103":0.0404,"104":0.04775,"105":0.06611,"106":0.05877,"107":0.05142,"108":0.11754,"109":3.90807,"110":0.02204,"111":0.02938,"112":0.04775,"113":0.06244,"114":0.16161,"115":0.0955,"116":0.8301,"117":8.95845,"118":9.43594,"119":0.03306,"120":0.01469,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 50 52 54 55 57 58 59 61 62 64 65 66 121 122"},F:{"54":0.00367,"55":0.00367,"70":0.01469,"74":0.00367,"75":0.00367,"76":0.00367,"79":0.00367,"82":0.02571,"85":0.03673,"86":0.00735,"95":0.43709,"99":0.00367,"100":0.00367,"101":0.03306,"102":1.41411,"103":0.55462,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 77 78 80 81 83 84 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00367,"13":0.02204,"18":0.00735,"80":0.00367,"81":0.00367,"83":0.00367,"84":0.00367,"85":0.00367,"89":0.00367,"90":0.00367,"92":0.01102,"107":0.00367,"108":0.02204,"109":0.02938,"112":0.00367,"113":0.00735,"114":0.00735,"115":0.00735,"116":0.02204,"117":0.84479,"118":0.88152,"119":0.00367,_:"14 15 16 17 79 86 87 88 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111"},E:{"9":0.01102,"14":0.01469,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 17.2","5.1":0.01102,"9.1":0.0404,"11.1":0.00367,"12.1":0.00735,"13.1":0.02571,"14.1":0.04775,"15.1":0.00735,"15.2-15.3":0.01102,"15.4":0.03673,"15.5":0.01469,"15.6":0.10284,"16.0":0.01102,"16.1":0.04775,"16.2":0.0404,"16.3":0.06979,"16.4":0.05142,"16.5":0.12856,"16.6":0.20202,"17.0":0.29384,"17.1":0.02204},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00128,"5.0-5.1":0.00128,"6.0-6.1":0.00383,"7.0-7.1":0.00894,"8.1-8.4":0.00128,"9.0-9.2":0.00894,"9.3":0.03065,"10.0-10.2":0.00128,"10.3":0.04469,"11.0-11.2":0.04086,"11.3-11.4":0.01405,"12.0-12.1":0.01149,"12.2-12.5":0.20304,"13.0-13.1":0.00638,"13.2":0.03448,"13.3":0.01277,"13.4-13.7":0.04086,"14.0-14.4":0.11238,"14.5-14.8":0.18133,"15.0-15.1":0.07151,"15.2-15.3":0.08173,"15.4":0.09067,"15.5":0.12898,"15.6-15.7":0.89262,"16.0":0.32946,"16.1":0.63083,"16.2":0.30775,"16.3":0.57081,"16.4":0.12259,"16.5":0.32691,"16.6-16.7":6.12317,"17.0":2.1811,"17.1":0.13153,"17.2":0.00383},P:{"4":0.06243,"20":0.06243,"21":0.08324,"22":1.88329,"23":0.32255,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.05202,"11.1-11.2":0.0104,"13.0":0.02081,"14.0":0.0104,"16.0":0.02081,"17.0":0.03121,"18.0":0.03121,"19.0":0.04162},I:{"0":0.06925,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"7":0.00367,"8":0.04775,"9":0.00735,"10":0.00735,"11":0.24976,_:"6 5.5"},K:{"0":0.3507,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.15187},Q:{_:"13.1"},O:{"0":0.08226},H:{"0":0.01},L:{"0":48.61184}};
      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 b40fc90347b986..c8a312b8e7ba2f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ME.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ME.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00316,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01582,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00633,"76":0,"77":0,"78":0.00633,"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.00316,"92":0,"93":0,"94":0.00316,"95":0,"96":0,"97":0,"98":0,"99":0.00316,"100":0,"101":0,"102":0.00316,"103":0.0253,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00316,"112":0,"113":0,"114":0.04428,"115":0.06642,"116":0.03479,"117":0.39854,"118":0.03479,"119":0.00316,"120":0,"3.5":0,"3.6":0.00316},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00316,"38":0.00316,"39":0.00316,"40":0.00316,"41":0.00316,"42":0.00316,"43":0.00316,"44":0.00316,"45":0.00633,"46":0.00316,"47":0.00316,"48":0,"49":0.01898,"50":0,"51":0.00316,"52":0,"53":0.01898,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00316,"65":0,"66":0.00316,"67":0,"68":0.02214,"69":0,"70":0.00949,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00316,"77":0,"78":0,"79":0.07591,"80":0,"81":0.01582,"83":0.00949,"84":0.00316,"85":0.01898,"86":0.00316,"87":0.0253,"88":0.00633,"89":0.00633,"90":0,"91":0,"92":0.00633,"93":0,"94":0.00316,"95":0.00633,"96":0.00316,"97":0.00633,"98":0,"99":0.0253,"100":0,"101":0.00316,"102":0,"103":0.02847,"104":0.00316,"105":0.00633,"106":0.01582,"107":0.00949,"108":0.01898,"109":0.83187,"110":0.01582,"111":0.00316,"112":0.01582,"113":0.02214,"114":0.06326,"115":0.17713,"116":4.3428,"117":1.21776,"118":0.00316,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00633,"29":0,"30":0,"31":0.00316,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00949,"47":0,"48":0,"49":0,"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.04112,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.01898,"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.00633,"95":0.01265,"96":0,"97":0,"98":0,"99":0.00633,"100":0.03796,"101":0.37956,"102":0.19294,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00316},B:{"12":0.00316,"13":0,"14":0.00316,"15":0,"16":0,"17":0,"18":0.00316,"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.01265,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00949,"108":0,"109":0.00633,"110":0,"111":0.00633,"112":0,"113":0,"114":0.00316,"115":0.00633,"116":0.24988,"117":0.19294},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00633,"10":0,"11":0,"12":0,"13":0.00316,"14":0.00633,"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.00633,"14.1":0.01582,"15.1":0.00316,"15.2-15.3":0.00316,"15.4":0.00633,"15.5":0.00949,"15.6":0.04112,"16.0":0.00316,"16.1":0.0253,"16.2":0.04112,"16.3":0.04112,"16.4":0.01265,"16.5":0.04745,"16.6":0.19927,"17.0":0.01582,"17.1":0},G:{"8":0.00387,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00387,"7.0-7.1":0.02321,"8.1-8.4":0.03289,"9.0-9.2":0.00193,"9.3":0.13541,"10.0-10.2":0.01548,"10.3":0.10059,"11.0-11.2":0.05417,"11.3-11.4":0.00387,"12.0-12.1":0.02902,"12.2-12.5":0.33273,"13.0-13.1":0.00193,"13.2":0.00774,"13.3":0.12574,"13.4-13.7":0.02515,"14.0-14.4":0.14122,"14.5-14.8":0.29984,"15.0-15.1":0.12381,"15.2-15.3":0.1064,"15.4":0.08318,"15.5":0.2805,"15.6-15.7":1.26322,"16.0":0.64612,"16.1":0.85504,"16.2":0.47008,"16.3":1.03882,"16.4":0.15282,"16.5":0.75251,"16.6":11.17162,"17.0":0.82602,"17.1":0.00387},P:{"4":0.25527,"20":0.16337,"21":0.20421,"22":3.68607,"5.0-5.4":0.05105,"6.2-6.4":0.03063,"7.2-7.4":0.03063,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02042,"12.0":0,"13.0":0.03063,"14.0":0.01021,"15.0":0,"16.0":0.05105,"17.0":0.01021,"18.0":0.02042,"19.0":0.11232},I:{"0":0,"3":0.00253,"4":0.0228,"2.1":0.00253,"2.2":0.01267,"2.3":0.02027,"4.1":0.06588,"4.2-4.3":0.03041,"4.4":0,"4.4.3-4.4.4":0.11402},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00316,"8":0.0253,"9":0.00633,"10":0.00633,"11":0.02214,"5.5":0},S:{"2.5":0.00684,_:"3.0-3.1"},J:{"7":0,"10":0.01367},N:{"10":0.01026,"11":0.01026},L:{"0":63.62471},R:{_:"0"},M:{"0":0.27348},Q:{"13.1":0},O:{"0":0.06153},H:{"0":0.26539}};
      +module.exports={C:{"3":0.00317,"15":0.00317,"37":0.00317,"38":0.00317,"40":0.00317,"52":0.02222,"56":0.00317,"67":0.00635,"68":0.00635,"72":0.00635,"75":0.02857,"78":0.00635,"79":0.00317,"80":0.00317,"81":0.00635,"82":0.00635,"84":0.00317,"88":0.0127,"91":0.00635,"99":0.00317,"102":0.00317,"103":0.00317,"104":0.01587,"106":0.0127,"107":0.00317,"112":0.00317,"113":0.00317,"114":0.11109,"115":0.26662,"116":0.0127,"117":0.02857,"118":1.02838,"119":0.22218,_:"2 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 69 70 71 73 74 76 77 83 85 86 87 89 90 92 93 94 95 96 97 98 100 101 105 108 109 110 111 120 121 122 3.5","3.6":0.00317},D:{"21":0.00317,"28":0.00317,"31":0.00317,"33":0.00317,"36":0.00317,"38":0.0127,"39":0.00635,"40":0.00317,"41":0.00635,"42":0.00317,"43":0.00635,"44":0.00952,"45":0.00952,"46":0.00635,"47":0.00635,"49":0.07935,"51":0.0127,"53":0.05396,"58":0.00317,"64":0.00317,"65":0.00317,"66":0.00952,"68":0.06983,"70":0.00952,"71":0.00317,"74":0.00317,"75":0.00317,"76":0.00952,"77":0.00317,"78":0.00317,"79":0.38723,"80":0.01587,"81":0.03809,"83":0.04126,"84":0.0127,"85":0.09522,"86":0.00952,"87":0.14283,"88":0.02222,"89":0.00635,"90":0.00635,"91":0.00317,"92":0.0127,"93":0.0127,"94":0.02222,"95":0.00317,"96":0.00635,"97":0.00317,"98":0.00317,"99":0.03174,"100":0.01587,"101":0.00317,"102":0.00635,"103":0.05713,"104":0.00635,"105":0.02222,"106":0.04444,"107":0.00952,"108":0.02857,"109":2.85343,"110":0.0127,"111":0.0127,"112":0.02222,"113":0.02539,"114":0.09522,"115":0.09839,"116":0.8665,"117":8.58567,"118":9.46169,"119":0.00952,"120":0.00317,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 29 30 32 34 35 37 48 50 52 54 55 56 57 59 60 61 62 63 67 69 72 73 121 122"},F:{"28":0.01587,"31":0.00317,"40":0.00317,"42":0.00635,"46":0.04444,"65":0.00635,"68":0.19679,"70":0.00317,"77":0.00317,"79":0.00317,"85":0.00317,"95":0.04126,"101":0.00952,"102":1.31086,"103":0.33962,_:"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 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 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00317},B:{"12":0.00317,"16":0.00317,"18":0.00635,"85":0.00317,"86":0.00317,"92":0.03809,"107":0.03809,"109":0.01587,"110":0.00635,"111":0.00952,"113":0.00317,"114":0.00952,"115":0.00635,"116":0.0127,"117":0.77446,"118":0.56815,_:"13 14 15 17 79 80 81 83 84 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 112 119"},E:{"8":0.00317,"9":0.01904,"12":0.00317,"14":0.04444,"15":0.00317,_:"0 4 5 6 7 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.2","13.1":0.02222,"14.1":0.04444,"15.1":0.00317,"15.2-15.3":0.0127,"15.4":0.01904,"15.5":0.0127,"15.6":0.09205,"16.0":0.00635,"16.1":0.04444,"16.2":0.12061,"16.3":0.19679,"16.4":0.04126,"16.5":0.1714,"16.6":0.43166,"17.0":0.14283,"17.1":0.01587},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00139,"5.0-5.1":0.00139,"6.0-6.1":0.00417,"7.0-7.1":0.00973,"8.1-8.4":0.00139,"9.0-9.2":0.00973,"9.3":0.03337,"10.0-10.2":0.00139,"10.3":0.04867,"11.0-11.2":0.04449,"11.3-11.4":0.0153,"12.0-12.1":0.01251,"12.2-12.5":0.22108,"13.0-13.1":0.00695,"13.2":0.03754,"13.3":0.0139,"13.4-13.7":0.04449,"14.0-14.4":0.12236,"14.5-14.8":0.19744,"15.0-15.1":0.07787,"15.2-15.3":0.08899,"15.4":0.09872,"15.5":0.14044,"15.6-15.7":0.97193,"16.0":0.35874,"16.1":0.68689,"16.2":0.3351,"16.3":0.62153,"16.4":0.13348,"16.5":0.35596,"16.6-16.7":6.66724,"17.0":2.3749,"17.1":0.14322,"17.2":0.00417},P:{"4":0.31984,"20":0.15476,"21":0.14444,"22":2.89916,"23":0.56745,"5.0-5.4":0.05159,"6.2-6.4":0.0619,"7.2-7.4":0.01032,_:"8.2 10.1 12.0 14.0","9.2":0.01032,"11.1-11.2":0.03095,"13.0":0.05159,"15.0":0.01032,"16.0":0.0619,"17.0":0.01032,"18.0":0.04127,"19.0":0.07222},I:{"0":0.10866,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00033},A:{"6":0.00317,"7":0.00635,"8":0.05396,"9":0.00952,"10":0.00952,"11":0.05396,_:"5.5"},K:{"0":0.24574,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00683,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.28669},Q:{_:"13.1"},O:{"0":0.04096},H:{"0":0},L:{"0":49.73957}};
      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 89db0a8aba47af..7be34fea7b63d4 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"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.00404,"48":0.00404,"49":0,"50":0,"51":0,"52":0.02829,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00404,"59":0,"60":0.00404,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00404,"69":0,"70":0,"71":0,"72":0.00808,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02425,"79":0.02425,"80":0,"81":0,"82":0.00404,"83":0.00404,"84":0,"85":0,"86":0,"87":0,"88":0.00808,"89":0.00404,"90":0,"91":0.01616,"92":0,"93":0,"94":0.12527,"95":0.00404,"96":0.00404,"97":0,"98":0,"99":0.00404,"100":0.00404,"101":0.00404,"102":0.09294,"103":0.00404,"104":0.23438,"105":0.00404,"106":0.00808,"107":0.00808,"108":0.00808,"109":0.02425,"110":0.01212,"111":0.02829,"112":0.00808,"113":0.02425,"114":0.0687,"115":0.53745,"116":0.10103,"117":1.13552,"118":0.08082,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04041,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00404,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00404,"41":0,"42":0.00404,"43":0.01616,"44":0,"45":0,"46":0,"47":0,"48":0.00404,"49":0.00404,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00404,"56":0,"57":0.00808,"58":0.00404,"59":0,"60":0,"61":0.00404,"62":0,"63":0.00404,"64":0.00404,"65":0,"66":0,"67":0,"68":0,"69":0.00404,"70":0.00404,"71":0,"72":0.01212,"73":0.00404,"74":0.00404,"75":0,"76":0,"77":0,"78":0.00404,"79":0.00808,"80":0.00808,"81":0.01212,"83":0.00404,"84":0.00404,"85":0,"86":0.00808,"87":0.00404,"88":0.00808,"89":0.00404,"90":0.00808,"91":0.00404,"92":0.00404,"93":0.00808,"94":0.00404,"95":0.02021,"96":0.01212,"97":0.01212,"98":0.00404,"99":0.01616,"100":0.02021,"101":0.00808,"102":0.01212,"103":0.04445,"104":0.00808,"105":0.01212,"106":0.03637,"107":0.01212,"108":0.03233,"109":2.03262,"110":0.02829,"111":0.02021,"112":0.02425,"113":0.0687,"114":0.15356,"115":0.27075,"116":4.59462,"117":1.28908,"118":0.00404,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.00404,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00404,"26":0.00404,"27":0.01212,"28":0.00808,"29":0,"30":0,"31":0,"32":0,"33":0.00404,"34":0,"35":0.00404,"36":0.00404,"37":0.00808,"38":0.00404,"39":0,"40":0,"41":0,"42":0.00404,"43":0,"44":0,"45":0.00404,"46":0,"47":0,"48":0,"49":0,"50":0.00404,"51":0,"52":0,"53":0.02021,"54":0,"55":0,"56":0,"57":0,"58":0.00808,"60":0.05253,"62":0.00808,"63":0.00808,"64":0.00808,"65":0.00404,"66":0.00808,"67":0.00808,"68":0.00808,"69":0.04041,"70":0.04041,"71":0.05253,"72":0.25054,"73":0.05253,"74":0.00404,"75":0,"76":0,"77":0.00808,"78":0,"79":0.00808,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00808,"86":0.00404,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.03233,"96":0,"97":0.00404,"98":0,"99":0.00404,"100":0.02425,"101":0.19801,"102":0.2263,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01212},B:{"12":0,"13":0.00404,"14":0.00404,"15":0.01212,"16":0,"17":0,"18":0.00808,"79":0,"80":0,"81":0,"83":0,"84":0.00404,"85":0,"86":0,"87":0,"88":0,"89":0.00404,"90":0.00808,"91":0,"92":0.02021,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00808,"101":0.04445,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00808,"108":0,"109":0.04041,"110":0.00808,"111":0.00404,"112":0.00808,"113":0.00808,"114":0.02425,"115":0.0687,"116":0.76779,"117":0.493},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04849,"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.00404,"13.1":0.01212,"14.1":0.01616,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00404,"15.6":0.02425,"16.0":0.00404,"16.1":0.00404,"16.2":0.00404,"16.3":0.01616,"16.4":0.00404,"16.5":0.02021,"16.6":0.08486,"17.0":0.00808,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00117,"4.2-4.3":0,"5.0-5.1":0.00292,"6.0-6.1":0,"7.0-7.1":0.01516,"8.1-8.4":0,"9.0-9.2":0.00117,"9.3":0.08573,"10.0-10.2":0,"10.3":0.14288,"11.0-11.2":0.02158,"11.3-11.4":0.00467,"12.0-12.1":0.01575,"12.2-12.5":0.27643,"13.0-13.1":0.00758,"13.2":0.0105,"13.3":1.11271,"13.4-13.7":0.02508,"14.0-14.4":0.08223,"14.5-14.8":0.08573,"15.0-15.1":0.03499,"15.2-15.3":0.04549,"15.4":0.07815,"15.5":0.08748,"15.6-15.7":0.74239,"16.0":0.23036,"16.1":0.20995,"16.2":0.09214,"16.3":0.19828,"16.4":0.2082,"16.5":0.31842,"16.6":1.47196,"17.0":0.18079,"17.1":0.00175},P:{"4":0.05238,"20":0.03143,"21":0.0838,"22":0.67042,"5.0-5.4":0.01048,"6.2-6.4":0,"7.2-7.4":0.03143,"8.2":0,"9.2":0.03143,"10.1":0,"11.1-11.2":0,"12.0":0.02095,"13.0":0,"14.0":0,"15.0":0.01048,"16.0":0.02095,"17.0":0.01048,"18.0":0.01048,"19.0":0.01048},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0081,"4.2-4.3":0.07017,"4.4":0,"4.4.3-4.4.4":0.18084},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01616,"5.5":0},S:{"2.5":1.12029,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.38293},R:{_:"0"},M:{"0":0.35158},Q:{"13.1":0.01192},O:{"0":0.81042},H:{"0":5.1}};
      +module.exports={C:{"27":0.0037,"30":0.0222,"40":0.0037,"41":0.0037,"43":0.0037,"45":0.0037,"47":0.0074,"48":0.0185,"51":0.0037,"52":0.0629,"56":0.0185,"59":0.0037,"62":0.0037,"67":0.0037,"71":0.0037,"72":0.0111,"78":0.0111,"79":0.0111,"81":0.0037,"83":0.0074,"84":0.0037,"88":0.0074,"89":0.0037,"91":0.0037,"92":0.0037,"93":0.0037,"94":0.0074,"95":0.0037,"96":0.0111,"97":0.0037,"98":0.0037,"99":0.0074,"101":0.0037,"102":0.0296,"103":0.0148,"104":0.0037,"105":0.0148,"106":0.0037,"107":0.0037,"108":0.0111,"109":0.0111,"110":0.0185,"111":0.0703,"112":0.0185,"113":0.0296,"114":0.0222,"115":1.184,"116":0.0407,"117":0.1813,"118":2.6011,"119":0.407,"120":0.0074,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 31 32 33 34 35 36 37 38 39 42 44 46 49 50 53 54 55 57 58 60 61 63 64 65 66 68 69 70 73 74 75 76 77 80 82 85 86 87 90 100 121 122 3.5 3.6"},D:{"11":0.0592,"32":0.0037,"37":0.0037,"42":0.0074,"43":0.0111,"46":0.0037,"48":0.0037,"49":0.0148,"50":0.0037,"55":0.0037,"56":0.0037,"57":0.0185,"58":0.0037,"60":0.0037,"61":0.0074,"62":0.0037,"64":0.0074,"65":0.0037,"66":0.0037,"67":0.0037,"68":0.0037,"69":0.0074,"70":0.0148,"71":0.0037,"72":0.0037,"74":0.0407,"75":0.0037,"76":0.0037,"77":0.0185,"78":0.0037,"79":0.0222,"80":0.0111,"81":0.0259,"83":0.0037,"84":0.0037,"85":0.0037,"86":0.0148,"87":0.0148,"88":0.0444,"89":0.0222,"90":0.0148,"91":0.0037,"92":0.0037,"93":0.0148,"94":0.0111,"95":0.0296,"96":0.1036,"97":0.0666,"98":0.0111,"99":0.0148,"100":0.0185,"101":0.0111,"102":0.0333,"103":0.0666,"104":0.0148,"105":0.0407,"106":0.0518,"107":0.0222,"108":0.1147,"109":4.9876,"110":0.0111,"111":0.0185,"112":0.074,"113":0.0518,"114":0.148,"115":0.3108,"116":0.7733,"117":7.3408,"118":7.4222,"119":0.0111,"120":0.0037,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 38 39 40 41 44 45 47 51 52 53 54 59 63 73 121 122"},F:{"42":0.0037,"53":0.0629,"62":0.0037,"73":0.0037,"79":0.0148,"82":0.0037,"83":0.0111,"84":0.0037,"85":0.0074,"86":0.0148,"93":0.0074,"94":0.0037,"95":0.0666,"97":0.0037,"99":0.0037,"100":0.0037,"101":0.0074,"102":0.5957,"103":0.4107,_:"9 11 12 15 16 17 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 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 87 88 89 90 91 92 96 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.0037},B:{"12":0.0037,"14":0.0037,"15":0.0037,"16":0.0037,"17":0.0111,"18":0.0259,"84":0.0074,"85":0.0037,"89":0.0037,"90":0.0222,"92":0.0629,"100":0.0333,"105":0.0037,"106":0.0037,"107":0.0074,"109":0.1258,"110":0.0074,"111":0.0185,"112":0.0111,"113":0.0074,"114":0.0222,"115":0.0185,"116":0.0481,"117":1.369,"118":1.369,"119":0.0074,_:"13 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 108"},E:{"14":0.0259,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.2","13.1":0.0148,"14.1":0.037,"15.1":0.0037,"15.2-15.3":0.0037,"15.4":0.0037,"15.5":0.0111,"15.6":0.0518,"16.0":0.0148,"16.1":0.0222,"16.2":0.0111,"16.3":0.0777,"16.4":0.0111,"16.5":0.0185,"16.6":0.0999,"17.0":0.1147,"17.1":0.0037},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00032,"5.0-5.1":0.00032,"6.0-6.1":0.00096,"7.0-7.1":0.00224,"8.1-8.4":0.00032,"9.0-9.2":0.00224,"9.3":0.0077,"10.0-10.2":0.00032,"10.3":0.01122,"11.0-11.2":0.01026,"11.3-11.4":0.00353,"12.0-12.1":0.00289,"12.2-12.5":0.05099,"13.0-13.1":0.0016,"13.2":0.00866,"13.3":0.00321,"13.4-13.7":0.01026,"14.0-14.4":0.02822,"14.5-14.8":0.04554,"15.0-15.1":0.01796,"15.2-15.3":0.02052,"15.4":0.02277,"15.5":0.03239,"15.6-15.7":0.22415,"16.0":0.08273,"16.1":0.15841,"16.2":0.07728,"16.3":0.14334,"16.4":0.03078,"16.5":0.08209,"16.6-16.7":1.53761,"17.0":0.5477,"17.1":0.03303,"17.2":0.00096},P:{"4":0.031,"20":0.02066,"21":0.05166,"22":0.76457,"23":0.05166,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2","7.2-7.4":0.01033,"12.0":0.01033,"13.0":0.01033,"14.0":0.01033,"15.0":0.01033,"16.0":0.01033,"17.0":0.02066,"18.0":0.01033,"19.0":0.02066},I:{"0":0.09402,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00028},A:{"11":0.0222,_:"6 7 8 9 10 5.5"},K:{"0":2.4502,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.8631,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.2268},Q:{"13.1":0.0189},O:{"0":0.9261},H:{"0":2.93},L:{"0":55.6007}};
      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 2dd6f21582fd9e..326c9929ca1283 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MH.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MH.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.01022,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01022,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00511,"113":0.04088,"114":0,"115":0.03577,"116":0.02044,"117":0.17374,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.02555,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.02044,"74":0,"75":0,"76":0,"77":0,"78":0.00511,"79":0,"80":0.01022,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.01022,"88":0,"89":0.01022,"90":0.00511,"91":0,"92":0,"93":0.0511,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.55188,"104":0,"105":0,"106":0,"107":0.00511,"108":0,"109":1.00156,"110":0,"111":0.00511,"112":0.03066,"113":0.03066,"114":0.01022,"115":0.12264,"116":14.82922,"117":1.92136,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.03066,"102":0.0511,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.02044,"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.03577,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.01022,"108":0.01022,"109":0.02044,"110":0,"111":0.02044,"112":0,"113":0.00511,"114":0,"115":0.0511,"116":1.7885,"117":0.53655},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.84315,"14.1":0.06643,"15.1":0,"15.2-15.3":0.00511,"15.4":0.01022,"15.5":0,"15.6":0.01022,"16.0":0,"16.1":0.03066,"16.2":0.12775,"16.3":0.02555,"16.4":0.04088,"16.5":0.06132,"16.6":0.58765,"17.0":0.07665,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.03301,"11.0-11.2":0.01651,"11.3-11.4":0.04952,"12.0-12.1":0,"12.2-12.5":0.08253,"13.0-13.1":0,"13.2":0,"13.3":0.08253,"13.4-13.7":0,"14.0-14.4":0.54471,"14.5-14.8":0.09904,"15.0-15.1":0.13205,"15.2-15.3":0.14856,"15.4":0.11554,"15.5":0.19807,"15.6-15.7":1.58277,"16.0":0.5282,"16.1":2.58781,"16.2":1.23613,"16.3":1.94407,"16.4":0.13205,"16.5":0.49519,"16.6":7.94317,"17.0":0.37964,"17.1":0},P:{"4":0,"20":0.01038,"21":0.02075,"22":1.66012,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17639,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01038,"12.0":0,"13.0":0,"14.0":0.07263,"15.0":0,"16.0":0,"17.0":0.06225,"18.0":0.02075,"19.0":0.01038},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.29352},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":52.21272},R:{_:"0"},M:{"0":0.27384},Q:{"13.1":0},O:{"0":1.04646},H:{"0":0.15277}};
      +module.exports={C:{"113":0.1107,"115":0.01954,"118":2.18152,"119":0.74237,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 120 121 122 3.5 3.6"},D:{"73":0.10419,"78":0.00651,"93":0.12373,"95":0.00651,"103":0.16931,"107":0.02605,"109":22.67478,"112":0.02605,"113":0.00651,"114":0.04558,"115":0.01954,"116":4.42165,"117":9.20146,"118":12.01464,"119":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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 104 105 106 108 110 111 120 121 122"},F:{"98":0.01954,"102":0.00651,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.02605,"80":0.01954,"109":0.01954,"112":0.14978,"113":0.19536,"115":0.00651,"116":0.1107,"117":2.14245,"118":3.76394,_:"12 13 14 15 16 17 79 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 114 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.5 16.4 17.2","13.1":0.14978,"14.1":0.01954,"15.2-15.3":0.00651,"15.4":0.01954,"15.6":0.08466,"16.0":0.00651,"16.1":0.18885,"16.2":0.04558,"16.3":0.05861,"16.5":0.02605,"16.6":0.29955,"17.0":0.3256,"17.1":0.03907},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00078,"5.0-5.1":0.00078,"6.0-6.1":0.00234,"7.0-7.1":0.00546,"8.1-8.4":0.00078,"9.0-9.2":0.00546,"9.3":0.01873,"10.0-10.2":0.00078,"10.3":0.02732,"11.0-11.2":0.02498,"11.3-11.4":0.00859,"12.0-12.1":0.00703,"12.2-12.5":0.12412,"13.0-13.1":0.0039,"13.2":0.02108,"13.3":0.00781,"13.4-13.7":0.02498,"14.0-14.4":0.06869,"14.5-14.8":0.11085,"15.0-15.1":0.04371,"15.2-15.3":0.04996,"15.4":0.05542,"15.5":0.07884,"15.6-15.7":0.54565,"16.0":0.2014,"16.1":0.38562,"16.2":0.18813,"16.3":0.34893,"16.4":0.07494,"16.5":0.19984,"16.6-16.7":3.74305,"17.0":1.33329,"17.1":0.0804,"17.2":0.00234},P:{"20":0.07418,"21":0.05298,"22":1.07024,"23":0.39207,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.03179,"17.0":0.05298},I:{"0":0.03123,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.69851,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.35926},Q:{_:"13.1"},O:{"0":0.51971},H:{"0":0.17},L:{"0":25.98413}};
      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 c1c06a2e91bd38..af314dd41f3481 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MK.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MK.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00366,"52":0.04391,"53":0,"54":0,"55":0,"56":0.00732,"57":0,"58":0,"59":0,"60":0,"61":0.00366,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.02927,"68":0.00366,"69":0,"70":0,"71":0,"72":0.00366,"73":0,"74":0,"75":0.01098,"76":0,"77":0,"78":0.00366,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.03293,"91":0,"92":0,"93":0,"94":0.00732,"95":0.00366,"96":0,"97":0,"98":0,"99":0.00366,"100":0,"101":0,"102":0.01098,"103":0.00366,"104":0.00732,"105":0.00732,"106":0,"107":0,"108":0,"109":0.01464,"110":0.00366,"111":0.01464,"112":0.00366,"113":0.00732,"114":0.00366,"115":0.18295,"116":0.02927,"117":0.56715,"118":0.04757,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00366,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00366,"39":0,"40":0,"41":0.00366,"42":0,"43":0.00366,"44":0.00366,"45":0.00366,"46":0.00366,"47":0.00732,"48":0,"49":0.04391,"50":0,"51":0.00366,"52":0,"53":0.00732,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00366,"65":0,"66":0.00366,"67":0,"68":0,"69":0.00732,"70":0.00366,"71":0.00366,"72":0,"73":0.01098,"74":0,"75":0.00366,"76":0.04391,"77":0.04391,"78":0,"79":0.06586,"80":0.00732,"81":0.02195,"83":0.00732,"84":0.02195,"85":0.05489,"86":0.00732,"87":0.04391,"88":0.00366,"89":0.00732,"90":0.0183,"91":0.01098,"92":0.00366,"93":0.05123,"94":0,"95":0.01464,"96":0.00366,"97":0,"98":0,"99":0.02195,"100":0.00366,"101":0,"102":0.0183,"103":0.01098,"104":0.00366,"105":0.00732,"106":0.02561,"107":0.06952,"108":0.03293,"109":1.42335,"110":0.02195,"111":0.03659,"112":0.05854,"113":0.02195,"114":0.0805,"115":0.12075,"116":6.07394,"117":1.57337,"118":0.02927,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01098,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00366,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00732,"47":0,"48":0,"49":0,"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.00366,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.01098,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00366,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00366,"95":0.05854,"96":0,"97":0,"98":0,"99":0.00366,"100":0.03293,"101":0.19759,"102":0.17929,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00366,"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.00366,"93":0.05123,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00366,"104":0,"105":0.00366,"106":0.00732,"107":0.00732,"108":0.00732,"109":0.00732,"110":0.00366,"111":0,"112":0.00366,"113":0,"114":0.00732,"115":0.0183,"116":0.35126,"117":0.31833},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00366,"10":0,"11":0,"12":0,"13":0,"14":0.00732,"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.00732,"14.1":0.00732,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00732,"15.6":0.02561,"16.0":0.00366,"16.1":0.01098,"16.2":0.00366,"16.3":0.01098,"16.4":0.00366,"16.5":0.02195,"16.6":0.09879,"17.0":0.00732,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02958,"8.1-8.4":0.01294,"9.0-9.2":0,"9.3":0.04437,"10.0-10.2":0,"10.3":0.02404,"11.0-11.2":0.03698,"11.3-11.4":0.0037,"12.0-12.1":0.01109,"12.2-12.5":0.23851,"13.0-13.1":0,"13.2":0,"13.3":1.51427,"13.4-13.7":0.02958,"14.0-14.4":0.12758,"14.5-14.8":0.29768,"15.0-15.1":0.05177,"15.2-15.3":0.04992,"15.4":0.13497,"15.5":0.14791,"15.6-15.7":1.27576,"16.0":0.58056,"16.1":0.94665,"16.2":0.39012,"16.3":0.81538,"16.4":0.16271,"16.5":0.56392,"16.6":9.66987,"17.0":1.07607,"17.1":0.00185},P:{"4":0.2128,"20":0.05067,"21":0.11146,"22":2.53329,"5.0-5.4":0.01013,"6.2-6.4":0,"7.2-7.4":0.01013,"8.2":0,"9.2":0.01013,"10.1":0,"11.1-11.2":0.01013,"12.0":0,"13.0":0.0304,"14.0":0.01013,"15.0":0.01013,"16.0":0.02027,"17.0":0.02027,"18.0":0.01013,"19.0":0.04053},I:{"0":0,"3":0,"4":0.00312,"2.1":0,"2.2":0.00156,"2.3":0.00234,"4.1":0.10615,"4.2-4.3":0.00546,"4.4":0,"4.4.3-4.4.4":0.02966},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01464,"9":0.00366,"10":0.00366,"11":0.05123,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00634},N:{"10":0.01268,"11":0},L:{"0":63.72068},R:{_:"0"},M:{"0":0.13316},Q:{"13.1":0},O:{"0":0.01902},H:{"0":0.24013}};
      +module.exports={C:{"38":0.00348,"40":0.00348,"47":0.00348,"48":0.00348,"51":0.01394,"52":0.09058,"55":0.00697,"56":0.00697,"61":0.00348,"67":0.00348,"68":0.01742,"72":0.00348,"75":0.01394,"78":0.00697,"82":0.00348,"88":0.00697,"94":0.01394,"95":0.00348,"99":0.03832,"102":0.00348,"103":0.00348,"105":0.01742,"106":0.00348,"108":0.00348,"109":0.02439,"110":0.01742,"111":0.00348,"112":0.00348,"113":0.00697,"114":0.00697,"115":0.44595,"116":0.00348,"117":0.05923,"118":1.37618,"119":0.28569,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 49 50 53 54 57 58 59 60 62 63 64 65 66 69 70 71 73 74 76 77 79 80 81 83 84 85 86 87 89 90 91 92 93 96 97 98 100 101 104 107 120 121 122 3.5","3.6":0.00348},D:{"11":0.00348,"34":0.00348,"38":0.00697,"39":0.00348,"41":0.01045,"43":0.00348,"44":0.00348,"45":0.00348,"46":0.00348,"47":0.01742,"49":0.0871,"50":0.00348,"51":0.00348,"53":0.01045,"56":0.00348,"58":0.00697,"60":0.01045,"64":0.00697,"66":0.00348,"68":0.00348,"69":0.00348,"70":0.01045,"71":0.00348,"72":0.00348,"73":0.03832,"74":0.00348,"75":0.01045,"76":0.00697,"78":0.01045,"79":0.23691,"80":0.00348,"81":0.01742,"83":0.02439,"84":0.01394,"85":0.04181,"86":0.0209,"87":0.04878,"88":0.00697,"89":0.05226,"90":0.01394,"91":0.03832,"92":0.01742,"93":0.00697,"94":0.00348,"95":0.01394,"96":0.00697,"97":0.00348,"98":0.00348,"99":0.03484,"100":0.01045,"101":0.01742,"102":0.00697,"103":0.03832,"104":0.00697,"105":0.03484,"106":0.21252,"107":0.17768,"108":0.14633,"109":3.74878,"110":0.08362,"111":0.03832,"112":0.13239,"113":0.03832,"114":0.09407,"115":0.07316,"116":0.75951,"117":9.9085,"118":10.50774,"119":0.01045,"120":0.00348,_:"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 48 52 54 55 57 59 61 62 63 65 67 77 121 122"},F:{"28":0.03136,"32":0.00348,"36":0.00697,"45":0.00697,"46":0.02787,"65":0.00348,"79":0.00697,"85":0.00348,"92":0.00697,"94":0.01394,"95":0.13936,"100":0.00348,"101":0.00348,"102":0.74558,"103":0.21949,_:"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 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 93 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00348,"18":0.00697,"92":0.01742,"93":0.00348,"95":0.00348,"105":0.00697,"106":0.03136,"107":0.02439,"108":0.02787,"109":0.02439,"110":0.01045,"111":0.00697,"112":0.00697,"113":0.01045,"114":0.01045,"115":0.01045,"116":0.01742,"117":0.86403,"118":0.91629,"119":0.00348,_:"12 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 94 96 97 98 99 100 101 102 103 104"},E:{"9":0.00697,"14":0.01045,"15":0.00348,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.2","13.1":0.01742,"14.1":0.02787,"15.1":0.00697,"15.2-15.3":0.00348,"15.4":0.00697,"15.5":0.00697,"15.6":0.04878,"16.0":0.00697,"16.1":0.0209,"16.2":0.01394,"16.3":0.03136,"16.4":0.03832,"16.5":0.05574,"16.6":0.25085,"17.0":0.09407,"17.1":0.01045},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0013,"5.0-5.1":0.0013,"6.0-6.1":0.00389,"7.0-7.1":0.00907,"8.1-8.4":0.0013,"9.0-9.2":0.00907,"9.3":0.03109,"10.0-10.2":0.0013,"10.3":0.04534,"11.0-11.2":0.04145,"11.3-11.4":0.01425,"12.0-12.1":0.01166,"12.2-12.5":0.20597,"13.0-13.1":0.00648,"13.2":0.03498,"13.3":0.01295,"13.4-13.7":0.04145,"14.0-14.4":0.11399,"14.5-14.8":0.18394,"15.0-15.1":0.07254,"15.2-15.3":0.0829,"15.4":0.09197,"15.5":0.13083,"15.6-15.7":0.90547,"16.0":0.33421,"16.1":0.63992,"16.2":0.31219,"16.3":0.57904,"16.4":0.12436,"16.5":0.33162,"16.6-16.7":6.21135,"17.0":2.21251,"17.1":0.13342,"17.2":0.00389},P:{"4":0.27596,"20":0.04088,"21":0.07155,"22":2.02371,"23":0.42927,"5.0-5.4":0.03066,"6.2-6.4":0.01022,"7.2-7.4":0.01022,_:"8.2 10.1 12.0","9.2":0.01022,"11.1-11.2":0.01022,"13.0":0.04088,"14.0":0.01022,"15.0":0.01022,"16.0":0.02044,"17.0":0.01022,"18.0":0.01022,"19.0":0.04088},I:{"0":0.08428,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{"7":0.00348,"8":0.04529,"9":0.00697,"10":0.00348,"11":0.14284,_:"6 5.5"},K:{"0":0.24109,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.1238},Q:{_:"13.1"},O:{"0":0.01955},H:{"0":0},L:{"0":49.63637}};
      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 a763ebf9e7c81f..d972812d84864e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ML.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ML.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00187,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0056,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.05595,"96":0,"97":0,"98":0,"99":0.00187,"100":0,"101":0,"102":0.00746,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00187,"115":0.05036,"116":0.02425,"117":0.17904,"118":0.01492,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01119,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00373,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00187,"71":0,"72":0.00187,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00373,"80":0.00373,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00373,"93":0,"94":0,"95":0.00187,"96":0,"97":0,"98":0.00187,"99":0.00373,"100":0,"101":0,"102":0,"103":0.00187,"104":0,"105":0,"106":0.00187,"107":0.0056,"108":0.00187,"109":0.08952,"110":0,"111":0,"112":0.00187,"113":0.00187,"114":0.00746,"115":0.00933,"116":0.84112,"117":0.22567,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00187,"33":0,"34":0,"35":0,"36":0,"37":0.00187,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00187,"55":0,"56":0,"57":0,"58":0,"60":0.00187,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00187,"68":0,"69":0.00187,"70":0.00187,"71":0.00746,"72":0.00933,"73":0.00187,"74":0,"75":0,"76":0,"77":0.00746,"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.01679,"96":0,"97":0,"98":0,"99":0,"100":0.00187,"101":0.01865,"102":0.02798,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00187,"17":0,"18":0.00187,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00187,"91":0,"92":0.00373,"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.00187,"106":0,"107":0,"108":0,"109":0.01679,"110":0,"111":0,"112":0.00373,"113":0,"114":0.00187,"115":0.01679,"116":0.2294,"117":0.17904},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00187,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00187,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02052,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00373,"16.0":0,"16.1":0,"16.2":0,"16.3":0.00187,"16.4":0,"16.5":0.00373,"16.6":0.0056,"17.0":0,"17.1":0},G:{"8":0.00174,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00697,"5.0-5.1":0,"6.0-6.1":0.01045,"7.0-7.1":0.05923,"8.1-8.4":0,"9.0-9.2":0.00697,"9.3":0.07665,"10.0-10.2":0.00871,"10.3":0.01394,"11.0-11.2":0.00174,"11.3-11.4":0.00348,"12.0-12.1":0.23519,"12.2-12.5":1.94074,"13.0-13.1":0.03484,"13.2":0.00871,"13.3":0.11672,"13.4-13.7":0.14286,"14.0-14.4":0.80661,"14.5-14.8":0.58362,"15.0-15.1":1.60974,"15.2-15.3":0.10801,"15.4":0.19686,"15.5":0.25435,"15.6-15.7":1.8066,"16.0":0.26655,"16.1":0.36933,"16.2":0.38675,"16.3":0.97211,"16.4":0.40069,"16.5":1.38848,"16.6":4.08531,"17.0":1.4181,"17.1":0},P:{"4":0.19081,"20":0.05021,"21":0.34145,"22":0.92393,"5.0-5.4":0.01004,"6.2-6.4":0,"7.2-7.4":0.17073,"8.2":0,"9.2":0.03013,"10.1":0,"11.1-11.2":0.03013,"12.0":0.01004,"13.0":0.01004,"14.0":0.05021,"15.0":0.02009,"16.0":0.05021,"17.0":0.04017,"18.0":0.03013,"19.0":0.31133},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00034,"4.2-4.3":0.00189,"4.4":0,"4.4.3-4.4.4":0.03642},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00187,"5.5":0},S:{"2.5":0.11389,_:"3.0-3.1"},J:{"7":0,"10":0.00814},N:{"10":0,"11":0},L:{"0":75.87459},R:{_:"0"},M:{"0":0.3254},Q:{"13.1":0.00814},O:{"0":0.51251},H:{"0":0.53912}};
      +module.exports={C:{"41":0.00149,"45":0.00149,"49":0.00149,"52":0.00149,"57":0.00446,"72":0.00149,"78":0.00298,"99":0.02083,"102":0.00149,"108":0.00149,"114":0.00298,"115":0.23362,"116":0.00446,"117":0.02232,"118":0.62347,"119":0.15773,"120":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 30 31 32 33 34 35 36 37 38 39 40 42 43 44 46 47 48 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 89 90 91 92 93 94 95 96 97 98 100 101 103 104 105 106 107 109 110 111 112 113 121 122 3.5 3.6"},D:{"11":0.00149,"44":0.00149,"56":0.00149,"64":0.00298,"65":0.00298,"68":0.00149,"72":0.00744,"73":0.00298,"75":0.00149,"77":0.00298,"79":0.00744,"80":0.00298,"81":0.03422,"83":0.00149,"84":0.00149,"87":0.00298,"88":0.00149,"89":0.00149,"90":0.00298,"92":0.00893,"93":0.00298,"95":0.00446,"98":0.00298,"99":0.01786,"102":0.00298,"103":0.0253,"104":0.00149,"105":0.01934,"106":0.00446,"107":0.00893,"108":0.01042,"109":0.44789,"110":0.00149,"111":0.00893,"112":0.00893,"113":0.00744,"114":0.01488,"115":0.01042,"116":0.10714,"117":2.53406,"118":2.79,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 66 67 69 70 71 74 76 78 85 86 91 94 96 97 100 101 119 120 121 122"},F:{"28":0.00149,"38":0.00298,"79":0.00149,"95":0.02381,"100":0.00149,"102":0.07738,"103":0.10118,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00595,"13":0.04464,"17":0.00149,"18":0.05357,"84":0.00149,"89":0.00149,"90":0.00298,"92":0.00893,"100":0.00149,"105":0.00149,"108":0.00446,"109":0.0625,"110":0.00298,"112":0.00298,"113":0.00149,"114":0.01042,"115":0.10267,"116":0.00893,"117":0.6324,"118":0.84518,_:"14 15 16 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 106 107 111 119"},E:{"14":0.00446,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.5 16.0 16.2 17.2","5.1":0.00744,"12.1":0.00149,"13.1":0.09226,"14.1":0.01488,"15.1":0.00149,"15.4":0.00149,"15.6":0.0253,"16.1":0.00149,"16.3":0.00893,"16.4":0.00149,"16.5":0.00298,"16.6":0.00744,"17.0":0.01339,"17.1":0.00149},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00141,"5.0-5.1":0.00141,"6.0-6.1":0.00424,"7.0-7.1":0.0099,"8.1-8.4":0.00141,"9.0-9.2":0.0099,"9.3":0.03393,"10.0-10.2":0.00141,"10.3":0.04948,"11.0-11.2":0.04524,"11.3-11.4":0.01555,"12.0-12.1":0.01272,"12.2-12.5":0.2248,"13.0-13.1":0.00707,"13.2":0.03817,"13.3":0.01414,"13.4-13.7":0.04524,"14.0-14.4":0.12442,"14.5-14.8":0.20077,"15.0-15.1":0.07918,"15.2-15.3":0.09049,"15.4":0.10038,"15.5":0.1428,"15.6-15.7":0.98828,"16.0":0.36477,"16.1":0.69844,"16.2":0.34074,"16.3":0.63199,"16.4":0.13573,"16.5":0.36194,"16.6-16.7":6.77938,"17.0":2.41484,"17.1":0.14563,"17.2":0.00424},P:{"4":0.19066,"20":0.08028,"21":0.21073,"22":0.84292,"23":0.07024,"5.0-5.4":0.01003,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.25087,"9.2":0.02007,"11.1-11.2":0.01003,"12.0":0.01003,"13.0":0.01003,"14.0":0.04014,"15.0":0.01003,"16.0":0.06021,"17.0":0.06021,"18.0":0.01003,"19.0":0.30104},I:{"0":0.01694,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"11":0.00595,_:"6 7 8 9 10 5.5"},K:{"0":0.35626,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.10214,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.22982},Q:{"13.1":0.00851},O:{"0":0.22131},H:{"0":0.18},L:{"0":72.94077}};
      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 880df73850fac7..78ceb0eec71b12 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00283,"73":0,"74":0,"75":0,"76":0,"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.00567,"103":0.00283,"104":0,"105":0.00283,"106":0,"107":0.00283,"108":0.00283,"109":0,"110":0.00283,"111":0.00283,"112":0.00283,"113":0.00283,"114":0.0085,"115":0.09919,"116":0.03968,"117":0.56113,"118":0.10202,"119":0.00283,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00283,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00283,"38":0.00283,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00283,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00283,"71":0.01417,"72":0,"73":0,"74":0.00283,"75":0,"76":0,"77":0,"78":0,"79":0.00567,"80":0.00283,"81":0.00283,"83":0,"84":0,"85":0.0085,"86":0.00283,"87":0.00567,"88":0.00283,"89":0.00567,"90":0.00283,"91":0.00283,"92":0.00567,"93":0,"94":0.00283,"95":0.00283,"96":0.00283,"97":0,"98":0,"99":0.017,"100":0.00567,"101":0,"102":0.00283,"103":0.00567,"104":0.00283,"105":0.00283,"106":0.00567,"107":0.00567,"108":0.00567,"109":0.24089,"110":0.00283,"111":0.00567,"112":0.01134,"113":0.01134,"114":0.04534,"115":0.05668,"116":2.88785,"117":0.90971,"118":0.00567,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00567,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00283,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00283,"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.00283,"70":0.00283,"71":0,"72":0.01417,"73":0.00283,"74":0,"75":0,"76":0,"77":0.00567,"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.00283,"96":0,"97":0,"98":0,"99":0,"100":0.01984,"101":0.05101,"102":0.06235,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00283,"13":0,"14":0.00283,"15":0,"16":0,"17":0,"18":0.0085,"79":0,"80":0,"81":0,"83":0,"84":0.01134,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0085,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00567,"110":0,"111":0,"112":0.00567,"113":0,"114":0.00567,"115":0.02551,"116":0.38826,"117":0.2834},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00283,"10":0,"11":0,"12":0,"13":0,"14":0.00567,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00283,"10.1":0,"11.1":0,"12.1":0.00283,"13.1":0.00567,"14.1":0.06235,"15.1":0.00567,"15.2-15.3":0.02551,"15.4":0.00283,"15.5":0.00567,"15.6":0.03684,"16.0":0.00567,"16.1":0.01984,"16.2":0.0085,"16.3":0.03684,"16.4":0.0085,"16.5":0.03401,"16.6":0.19555,"17.0":0.04251,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00378,"5.0-5.1":0.00756,"6.0-6.1":0.00095,"7.0-7.1":0.00378,"8.1-8.4":0.01512,"9.0-9.2":0.00189,"9.3":0.02836,"10.0-10.2":0.00284,"10.3":0.06144,"11.0-11.2":0.03876,"11.3-11.4":0.00473,"12.0-12.1":0.00756,"12.2-12.5":0.24955,"13.0-13.1":0.00189,"13.2":0.00189,"13.3":0.00473,"13.4-13.7":0.03119,"14.0-14.4":0.08507,"14.5-14.8":0.1503,"15.0-15.1":0.04915,"15.2-15.3":0.0794,"15.4":0.08602,"15.5":0.17866,"15.6-15.7":0.98875,"16.0":0.21363,"16.1":0.50666,"16.2":0.26089,"16.3":0.56244,"16.4":0.10303,"16.5":0.40836,"16.6":4.50704,"17.0":0.71651,"17.1":0},P:{"4":0.14521,"20":0.05186,"21":0.09335,"22":1.04756,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04149,"8.2":0,"9.2":0.01037,"10.1":0.01037,"11.1-11.2":0.02074,"12.0":0,"13.0":0.02074,"14.0":0.01037,"15.0":0,"16.0":0.02074,"17.0":0.03112,"18.0":0.03112,"19.0":0.04149},I:{"0":0,"3":0,"4":0.00451,"2.1":0,"2.2":0,"2.3":0.00226,"4.1":0.00451,"4.2-4.3":0.01804,"4.4":0,"4.4.3-4.4.4":0.34052},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00756,"9":0.00378,"10":0,"11":0.01134,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":77.35961},R:{_:"0"},M:{"0":0.15765},Q:{"13.1":0.06449},O:{"0":1.92049},H:{"0":0.4342}};
      +module.exports={C:{"30":0.00256,"37":0.00256,"40":0.00256,"43":0.00769,"44":0.00256,"45":0.00256,"47":0.00513,"52":0.00256,"56":0.00256,"57":0.00256,"61":0.00256,"62":0.00256,"64":0.00513,"66":0.00256,"69":0.00256,"72":0.00769,"78":0.00256,"84":0.00256,"85":0.00256,"89":0.00256,"91":0.00256,"92":0.00256,"97":0.00256,"99":0.00256,"102":0.00513,"105":0.00513,"106":0.00513,"107":0.01025,"108":0.00513,"109":0.01025,"110":0.00513,"111":0.00513,"112":0.00256,"113":0.00769,"114":0.01538,"115":0.29475,"116":0.01794,"117":0.06408,"118":2.04784,"119":0.55105,"120":0.00513,_:"2 3 4 5 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 38 39 41 42 46 48 49 50 51 53 54 55 58 59 60 63 65 67 68 70 71 73 74 75 76 77 79 80 81 82 83 86 87 88 90 93 94 95 96 98 100 101 103 104 121 122 3.5 3.6"},D:{"11":0.00256,"31":0.00256,"32":0.00769,"34":0.00256,"37":0.00769,"38":0.00513,"41":0.00256,"43":0.00256,"44":0.00256,"45":0.00256,"46":0.00256,"47":0.00256,"49":0.00256,"51":0.00256,"53":0.0205,"55":0.00256,"56":0.00256,"59":0.00256,"61":0.00513,"62":0.00513,"63":0.00256,"65":0.00256,"67":0.00256,"68":0.00256,"69":0.00256,"70":0.00513,"71":0.01025,"74":0.00769,"75":0.00513,"76":0.00513,"78":0.00513,"79":0.02819,"80":0.00769,"81":0.00513,"83":0.00513,"84":0.00256,"85":0.00256,"86":0.00513,"87":0.01794,"88":0.00513,"89":0.01794,"90":0.00513,"91":0.02819,"92":0.00769,"93":0.00256,"94":0.01538,"95":0.01025,"96":0.00513,"97":0.00513,"98":0.00256,"99":0.04101,"100":0.01025,"101":0.00256,"102":0.01025,"103":0.0205,"104":0.00769,"105":0.01282,"106":0.01538,"107":0.01538,"108":0.01282,"109":0.67151,"110":0.00769,"111":0.01794,"112":0.03588,"113":0.03845,"114":0.26912,"115":0.07433,"116":0.34344,"117":5.65142,"118":5.90772,"119":0.00769,"120":0.00256,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 35 36 39 40 42 48 50 52 54 57 58 60 64 66 72 73 77 121 122"},F:{"74":0.00513,"78":0.00513,"79":0.00256,"95":0.01282,"100":0.00513,"101":0.00513,"102":0.41008,"103":0.12559,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00513,"13":0.00256,"14":0.00256,"16":0.00769,"17":0.00513,"18":0.02563,"84":0.00256,"89":0.00256,"92":0.02819,"100":0.00513,"105":0.00256,"108":0.00256,"109":0.01282,"110":0.00256,"111":0.00256,"112":0.00256,"113":0.00513,"114":0.01025,"115":0.03076,"116":0.02819,"117":1.10722,"118":1.03033,"119":0.00513,_:"15 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 106 107"},E:{"9":0.00513,"13":0.00256,"14":0.01538,"15":0.00769,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 17.2","10.1":0.00256,"11.1":0.00256,"12.1":0.00769,"13.1":0.0205,"14.1":0.03845,"15.1":0.01538,"15.2-15.3":0.00513,"15.4":0.01282,"15.5":0.02307,"15.6":0.33063,"16.0":0.00769,"16.1":0.0487,"16.2":0.01282,"16.3":0.07176,"16.4":0.02819,"16.5":0.07945,"16.6":0.51516,"17.0":0.54079,"17.1":0.01282},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00071,"5.0-5.1":0.00071,"6.0-6.1":0.00213,"7.0-7.1":0.00498,"8.1-8.4":0.00071,"9.0-9.2":0.00498,"9.3":0.01706,"10.0-10.2":0.00071,"10.3":0.02488,"11.0-11.2":0.02275,"11.3-11.4":0.00782,"12.0-12.1":0.0064,"12.2-12.5":0.11303,"13.0-13.1":0.00355,"13.2":0.01919,"13.3":0.00711,"13.4-13.7":0.02275,"14.0-14.4":0.06256,"14.5-14.8":0.10095,"15.0-15.1":0.03981,"15.2-15.3":0.0455,"15.4":0.05047,"15.5":0.0718,"15.6-15.7":0.49691,"16.0":0.18341,"16.1":0.35118,"16.2":0.17132,"16.3":0.31776,"16.4":0.06824,"16.5":0.18199,"16.6-16.7":3.40868,"17.0":1.21419,"17.1":0.07322,"17.2":0.00213},P:{"4":0.09419,"20":0.04186,"21":0.07326,"22":0.8477,"23":0.15698,_:"5.0-5.4 6.2-6.4 8.2 10.1 14.0","7.2-7.4":0.0314,"9.2":0.02093,"11.1-11.2":0.01047,"12.0":0.01047,"13.0":0.02093,"15.0":0.01047,"16.0":0.0314,"17.0":0.02093,"18.0":0.01047,"19.0":0.0314},I:{"0":0.26633,"3":0,"4":0.00005,"2.1":0,"2.2":0.00008,"2.3":0,"4.1":0.00005,"4.2-4.3":0.00019,"4.4":0,"4.4.3-4.4.4":0.0008},A:{"7":0.01185,"8":0.02766,"9":0.0079,"10":0.00395,"11":0.03951,_:"6 5.5"},K:{"0":0.51308,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.17103},Q:{"13.1":0.05205},O:{"0":1.82182},H:{"0":0},L:{"0":66.35664}};
      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 1401254bbd6ddd..425363e38911f3 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00446,"39":0,"40":0.00446,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00446,"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.00446,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00446,"113":0.00446,"114":0.00446,"115":0.10697,"116":0.04011,"117":0.46799,"118":0.04011,"119":0,"120":0,"3.5":0,"3.6":0.00446},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00446,"39":0.00446,"40":0.00446,"41":0.00446,"42":0.00446,"43":0.00446,"44":0.00891,"45":0.00446,"46":0.00446,"47":0.00446,"48":0,"49":0,"50":0,"51":0.00891,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00446,"62":0,"63":0.00446,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00891,"71":0,"72":0,"73":0,"74":0.00446,"75":0.00446,"76":0,"77":0.00446,"78":0,"79":0.01337,"80":0,"81":0.00446,"83":0.00446,"84":0,"85":0.00891,"86":0.00446,"87":0.00446,"88":0.00446,"89":0.00446,"90":0.00446,"91":0.00446,"92":0.00446,"93":0,"94":0,"95":0.00446,"96":0,"97":0.00446,"98":0.00446,"99":0.02229,"100":0.00446,"101":0.00446,"102":0.0936,"103":0.03566,"104":0.39222,"105":0.02674,"106":0.00891,"107":0.01337,"108":0.01337,"109":1.37721,"110":0.00891,"111":0.02229,"112":0.05794,"113":0.11143,"114":0.12034,"115":0.28079,"116":9.03434,"117":1.95662,"118":0.02229,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00446,"73":0.00446,"74":0,"75":0,"76":0,"77":0.01783,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00891,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02229,"96":0,"97":0,"98":0,"99":0.00891,"100":0.0624,"101":0.25851,"102":0.30753,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00446,"13":0,"14":0.00446,"15":0,"16":0.00446,"17":0,"18":0.00446,"79":0,"80":0,"81":0,"83":0,"84":0.00446,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01783,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00446,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00446,"108":0.00446,"109":0.0624,"110":0.00891,"111":0.00891,"112":0.01337,"113":0.01783,"114":0.04011,"115":0.04011,"116":1.29253,"117":1.01174},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01337,"10":0,"11":0,"12":0,"13":0,"14":0.01783,"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.01337,"14.1":0.03566,"15.1":0.00891,"15.2-15.3":0.05794,"15.4":0.01337,"15.5":0.03566,"15.6":0.05794,"16.0":0.01783,"16.1":0.03566,"16.2":0.02229,"16.3":0.0624,"16.4":0.02674,"16.5":0.14708,"16.6":0.28971,"17.0":0.02674,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00316,"6.0-6.1":0,"7.0-7.1":0.00632,"8.1-8.4":0.02211,"9.0-9.2":0,"9.3":0.09161,"10.0-10.2":0,"10.3":0.04107,"11.0-11.2":0.07898,"11.3-11.4":0.03159,"12.0-12.1":0.02843,"12.2-12.5":0.30011,"13.0-13.1":0.00948,"13.2":0.00632,"13.3":0.85927,"13.4-13.7":0.05055,"14.0-14.4":0.2622,"14.5-14.8":0.41384,"15.0-15.1":0.19586,"15.2-15.3":0.19586,"15.4":0.18639,"15.5":0.34434,"15.6-15.7":2.41039,"16.0":1.63009,"16.1":1.85754,"16.2":1.08989,"16.3":1.94916,"16.4":0.34118,"16.5":1.32366,"16.6":15.54904,"17.0":1.85439,"17.1":0},P:{"4":0.1316,"20":0.14172,"21":0.24296,"22":2.99647,"5.0-5.4":0.03037,"6.2-6.4":0.02025,"7.2-7.4":0.07086,"8.2":0,"9.2":0.02025,"10.1":0,"11.1-11.2":0.04049,"12.0":0,"13.0":0.04049,"14.0":0.02025,"15.0":0.02025,"16.0":0.07086,"17.0":0.07086,"18.0":0.04049,"19.0":0.11136},I:{"0":0,"3":0.00354,"4":0.02475,"2.1":0.00354,"2.2":0.01414,"2.3":0.02475,"4.1":0.01591,"4.2-4.3":0.04242,"4.4":0,"4.4.3-4.4.4":0.13434},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00539,"8":0.04847,"9":0.01077,"10":0.01077,"11":0.04847,"5.5":0},S:{"2.5":0.00554,_:"3.0-3.1"},J:{"7":0,"10":0.00554},N:{"10":0.01663,"11":0},L:{"0":42.81664},R:{_:"0"},M:{"0":0.18846},Q:{"13.1":0.01109},O:{"0":0.16075},H:{"0":0.17842}};
      +module.exports={C:{"35":0.00379,"39":0.00379,"40":0.00379,"41":0.00379,"43":0.00379,"47":0.00379,"52":0.00379,"78":0.00379,"89":0.00379,"91":0.00379,"99":0.00379,"102":0.00379,"107":0.00379,"112":0.00379,"113":0.00379,"115":0.19324,"116":0.00379,"117":0.0341,"118":0.68581,"119":0.15156,_:"2 3 4 5 6 7 8 9 10 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 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 93 94 95 96 97 98 100 101 103 104 105 106 108 109 110 111 114 120 121 122 3.5","3.6":0.00379},D:{"31":0.00379,"33":0.00379,"37":0.00379,"39":0.00379,"40":0.00379,"41":0.00379,"42":0.00379,"43":0.00758,"44":0.00758,"45":0.00758,"46":0.00758,"47":0.00379,"49":0.00379,"50":0.00379,"51":0.00758,"58":0.00379,"60":0.00379,"61":0.00379,"63":0.00379,"66":0.00379,"67":0.00379,"69":0.00379,"70":0.01895,"72":0.00379,"73":0.00379,"74":0.01137,"76":0.00379,"77":0.01137,"78":0.00379,"79":0.01516,"80":0.00379,"81":0.00379,"83":0.01516,"84":0.00379,"85":0.01516,"86":0.00758,"87":0.01895,"88":0.01137,"89":0.01137,"90":0.00758,"91":0.00758,"92":0.00379,"93":0.00379,"94":0.00758,"95":0.00379,"96":0.00379,"97":0.00758,"98":0.00758,"99":0.02273,"100":0.00758,"101":0.01895,"102":0.03031,"103":0.08336,"104":0.03031,"105":0.04547,"106":0.01516,"107":0.01895,"108":0.01895,"109":2.76976,"110":0.01137,"111":0.04547,"112":0.08715,"113":0.07957,"114":0.15914,"115":0.08715,"116":0.85253,"117":10.04464,"118":11.41626,"119":0.05305,"120":0.01137,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 38 48 52 53 54 55 56 57 59 62 64 65 68 71 75 121 122"},F:{"31":0.00379,"73":0.00379,"78":0.00758,"79":0.00758,"85":0.00379,"87":0.00379,"95":0.04926,"98":0.00379,"99":0.01137,"100":0.00379,"101":0.00758,"102":0.97377,"103":0.28039,_:"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 74 75 76 77 80 81 82 83 84 86 88 89 90 91 92 93 94 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00379,"16":0.00379,"17":0.00379,"18":0.01516,"84":0.00379,"89":0.00379,"90":0.00379,"92":0.03031,"100":0.01137,"101":0.00379,"104":0.01137,"105":0.00379,"107":0.00758,"108":0.00758,"109":0.08715,"110":0.00758,"111":0.01516,"112":0.01895,"113":0.02273,"114":0.0341,"115":0.03031,"116":0.06441,"117":2.73945,"118":2.50074,"119":0.00379,_:"13 14 15 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 102 103 106"},E:{"9":0.01516,"13":0.00379,"14":0.02652,"15":0.00758,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.00379,"13.1":0.01895,"14.1":0.07199,"15.1":0.01516,"15.2-15.3":0.00758,"15.4":0.00758,"15.5":0.03789,"15.6":0.12125,"16.0":0.02652,"16.1":0.07957,"16.2":0.04547,"16.3":0.12504,"16.4":0.04926,"16.5":0.10609,"16.6":0.3448,"17.0":0.25007,"17.1":0.01516},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00217,"5.0-5.1":0.00217,"6.0-6.1":0.00651,"7.0-7.1":0.01519,"8.1-8.4":0.00217,"9.0-9.2":0.01519,"9.3":0.05207,"10.0-10.2":0.00217,"10.3":0.07593,"11.0-11.2":0.06942,"11.3-11.4":0.02386,"12.0-12.1":0.01953,"12.2-12.5":0.34495,"13.0-13.1":0.01085,"13.2":0.05858,"13.3":0.0217,"13.4-13.7":0.06942,"14.0-14.4":0.19092,"14.5-14.8":0.30807,"15.0-15.1":0.12149,"15.2-15.3":0.13885,"15.4":0.15403,"15.5":0.21912,"15.6-15.7":1.51648,"16.0":0.55973,"16.1":1.07173,"16.2":0.52285,"16.3":0.96977,"16.4":0.20827,"16.5":0.55539,"16.6-16.7":10.40276,"17.0":3.70551,"17.1":0.22346,"17.2":0.00651},P:{"4":0.07145,"20":0.11228,"21":0.18374,"22":2.31714,"23":0.35727,"5.0-5.4":0.02042,"6.2-6.4":0.02042,"7.2-7.4":0.08166,_:"8.2 10.1 12.0","9.2":0.02042,"11.1-11.2":0.03062,"13.0":0.02042,"14.0":0.01021,"15.0":0.02042,"16.0":0.04083,"17.0":0.06125,"18.0":0.04083,"19.0":0.11228},I:{"0":0.12359,"3":0,"4":0.00002,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00037},A:{"6":0.00453,"7":0.00906,"8":0.0634,"9":0.00906,"10":0.00906,"11":0.08604,_:"5.5"},K:{"0":0.11801,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00621,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.17391},Q:{_:"13.1"},O:{"0":0.10559},H:{"0":0},L:{"0":37.93276}};
      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 4a653327248b87..ed46bea3354cb0 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.03266,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00467,"79":0,"80":0.00467,"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.014,"95":0,"96":0,"97":0,"98":0,"99":0.00467,"100":0.00933,"101":0,"102":0.00933,"103":0,"104":0.00467,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00933,"113":0.00467,"114":0.00467,"115":0.11663,"116":0.02333,"117":0.32189,"118":0.03732,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00467,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00467,"31":0,"32":0,"33":0,"34":0.03266,"35":0,"36":0,"37":0,"38":0.08864,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00467,"45":0.00467,"46":0,"47":0,"48":0,"49":0.03732,"50":0,"51":0,"52":0,"53":0.00933,"54":0,"55":0.014,"56":0,"57":0.00467,"58":0.00933,"59":0.00467,"60":0.00467,"61":0.06531,"62":0.014,"63":0,"64":0,"65":0.00467,"66":0,"67":0,"68":0,"69":0.014,"70":0.00933,"71":0,"72":0,"73":0.00467,"74":0.00933,"75":0.00467,"76":0.00467,"77":0.00467,"78":0.014,"79":0.21459,"80":0.02799,"81":0.014,"83":0.01866,"84":0,"85":0,"86":0.01866,"87":0.07931,"88":0.00467,"89":0.01866,"90":0,"91":0.00467,"92":0.014,"93":0,"94":0.00933,"95":0.00467,"96":0.00467,"97":0.03732,"98":0.02333,"99":0.22859,"100":0.00933,"101":0.00933,"102":0.01866,"103":0.07931,"104":0.00933,"105":0.04665,"106":0.014,"107":0.02799,"108":0.06065,"109":0.86769,"110":0.00933,"111":0.00933,"112":0.11663,"113":0.09797,"114":0.20993,"115":0.28923,"116":7.32405,"117":1.58144,"118":0.03732,"119":0.00467,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00467,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.014,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04199,"47":0,"48":0,"49":0,"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.00933,"75":0,"76":0,"77":0.04199,"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.014,"96":0,"97":0,"98":0,"99":0,"100":0.00467,"101":0.01866,"102":0.02333,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00467,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00933,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00467,"109":0.06531,"110":0.00467,"111":0.014,"112":0.00467,"113":0.02333,"114":0.014,"115":0.05132,"116":1.1196,"117":0.69042},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00467,"10":0,"11":0,"12":0,"13":0.01866,"14":0.14928,"15":0.02333,_:"0","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.02333,"13.1":0.07931,"14.1":0.31256,"15.1":0.03266,"15.2-15.3":0.04199,"15.4":0.05132,"15.5":0.1073,"15.6":0.34521,"16.0":0.03732,"16.1":0.07464,"16.2":0.06998,"16.3":0.1866,"16.4":0.08397,"16.5":0.15395,"16.6":1.76804,"17.0":0.04665,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00796,"6.0-6.1":0.05572,"7.0-7.1":0.06368,"8.1-8.4":0.0597,"9.0-9.2":0.02786,"9.3":0.25473,"10.0-10.2":0.02388,"10.3":0.32637,"11.0-11.2":0.09552,"11.3-11.4":0.0398,"12.0-12.1":0.05572,"12.2-12.5":1.06669,"13.0-13.1":0.0398,"13.2":0.01592,"13.3":0.04378,"13.4-13.7":0.12339,"14.0-14.4":0.74031,"14.5-14.8":1.26172,"15.0-15.1":0.47762,"15.2-15.3":0.37812,"15.4":0.34628,"15.5":0.67663,"15.6-15.7":2.38413,"16.0":0.93534,"16.1":1.80302,"16.2":0.99505,"16.3":1.61595,"16.4":0.39404,"16.5":1.206,"16.6":23.02137,"17.0":0.98709,"17.1":0},P:{"4":0.67301,"20":0.13026,"21":0.14111,"22":2.87656,"5.0-5.4":0.05427,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01085,"10.1":0,"11.1-11.2":0,"12.0":0.01085,"13.0":0.01085,"14.0":0,"15.0":0,"16.0":0.01085,"17.0":0.01085,"18.0":0.01085,"19.0":0.07598},I:{"0":0,"3":0,"4":0.02433,"2.1":0.00187,"2.2":0.00561,"2.3":0.00936,"4.1":0.01123,"4.2-4.3":0.02433,"4.4":0,"4.4.3-4.4.4":0.0786},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.10263,"9":0.03421,"10":0,"11":0.06842,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00534},N:{"10":0,"11":0},L:{"0":33.73391},R:{_:"0"},M:{"0":0.3041},Q:{"13.1":0.1974},O:{"0":0.63487},H:{"0":0.16163}};
      +module.exports={C:{"34":0.08468,"78":0.02117,"80":0.01694,"81":0.00423,"91":0.00423,"94":0.03811,"100":0.01694,"108":0.00423,"112":0.01694,"113":0.00423,"115":0.17783,"116":0.00423,"117":0.03811,"118":0.57159,"119":0.12279,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 82 83 84 85 86 87 88 89 90 92 93 95 96 97 98 99 101 102 103 104 105 106 107 109 110 111 114 120 121 122 3.5 3.6"},D:{"30":0.00423,"34":0.06774,"38":0.16513,"43":0.00423,"44":0.00423,"45":0.00423,"46":0.00423,"49":0.03811,"51":0.00423,"53":0.01694,"55":0.04234,"57":0.00423,"58":0.0127,"60":0.00847,"61":0.08045,"62":0.0254,"65":0.00423,"69":0.0127,"70":0.01694,"72":0.00423,"73":0.00847,"74":0.05081,"75":0.00847,"76":0.00847,"77":0.01694,"78":0.0254,"79":0.49114,"80":0.08468,"81":0.05928,"83":0.03387,"84":0.00423,"85":0.00423,"86":0.0254,"87":0.21593,"88":0.00847,"89":0.03387,"91":0.01694,"92":0.0254,"93":0.00423,"94":0.0127,"95":0.00847,"96":0.03387,"97":0.08891,"98":0.06351,"99":0.26674,"100":0.02117,"101":0.03811,"102":0.02964,"103":0.16936,"104":0.01694,"105":0.11855,"106":0.0254,"107":0.03811,"108":0.06351,"109":1.84179,"110":0.03811,"111":0.02964,"112":0.09738,"113":0.11008,"114":0.1863,"115":0.16089,"116":1.11778,"117":9.7128,"118":9.55614,"119":0.05504,"120":0.08891,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 39 40 41 42 47 48 50 52 54 56 59 63 64 66 67 68 71 90 121 122"},F:{"28":0.01694,"36":0.02117,"40":0.00423,"46":0.09315,"74":0.00847,"95":0.02964,"102":0.13972,"103":0.05081,_:"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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00423,"18":0.0254,"105":0.00423,"108":0.00423,"109":0.08891,"111":0.02964,"112":0.00847,"113":0.02964,"114":0.0127,"115":0.00847,"116":0.10585,"117":1.79945,"118":1.72324,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 110 119"},E:{"9":0.00847,"11":0.00423,"12":0.0127,"13":0.05504,"14":0.30061,"15":0.14819,_:"0 4 5 6 7 8 10 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.00423,"12.1":0.04234,"13.1":0.1863,"14.1":0.68591,"15.1":0.06774,"15.2-15.3":0.07198,"15.4":0.10162,"15.5":0.20747,"15.6":0.68591,"16.0":0.06351,"16.1":0.14396,"16.2":0.11855,"16.3":0.35566,"16.4":0.13972,"16.5":0.36412,"16.6":3.32792,"17.0":0.58006,"17.1":0.02117},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00246,"5.0-5.1":0.00246,"6.0-6.1":0.00738,"7.0-7.1":0.01721,"8.1-8.4":0.00246,"9.0-9.2":0.01721,"9.3":0.05901,"10.0-10.2":0.00246,"10.3":0.08606,"11.0-11.2":0.07868,"11.3-11.4":0.02705,"12.0-12.1":0.02213,"12.2-12.5":0.39094,"13.0-13.1":0.01229,"13.2":0.06639,"13.3":0.02459,"13.4-13.7":0.07868,"14.0-14.4":0.21637,"14.5-14.8":0.34915,"15.0-15.1":0.13769,"15.2-15.3":0.15736,"15.4":0.17457,"15.5":0.24834,"15.6-15.7":1.71868,"16.0":0.63436,"16.1":1.21463,"16.2":0.59256,"16.3":1.09907,"16.4":0.23604,"16.5":0.62945,"16.6-16.7":11.78981,"17.0":4.19958,"17.1":0.25325,"17.2":0.00738},P:{"4":0.75991,"20":0.07939,"21":0.11342,"22":2.37048,"23":0.55576,"5.0-5.4":0.04537,_:"6.2-6.4 7.2-7.4 8.2 10.1 11.1-11.2 14.0 16.0","9.2":0.02268,"12.0":0.01134,"13.0":0.02268,"15.0":0.01134,"17.0":0.04537,"18.0":0.02268,"19.0":0.11342},I:{"0":0.07456,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"8":0.17642,"9":0.03528,"10":0.03528,"11":0.17642,_:"6 7 5.5"},K:{"0":0.06918,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.26519},Q:{"13.1":0.21331},O:{"0":0.65721},H:{"0":0},L:{"0":30.10729}};
      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 f267033ba19d4d..dd97ccf2c6e4f7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MP.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MP.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01099,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01649,"88":0.0055,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.0055,"98":0,"99":0,"100":0,"101":0,"102":0.01099,"103":0.21988,"104":0,"105":0,"106":0.01099,"107":0,"108":0,"109":0,"110":0.0055,"111":0,"112":0,"113":0,"114":0,"115":0.12093,"116":0.02749,"117":0.40678,"118":0.02199,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02199,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0055,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0055,"80":0,"81":0,"83":0.0055,"84":0,"85":0.0055,"86":0,"87":0.01099,"88":0,"89":0,"90":0,"91":0.01099,"92":0.0055,"93":0.0055,"94":0.01649,"95":0,"96":0.0055,"97":0,"98":0,"99":0,"100":0.0055,"101":0.0055,"102":0,"103":0.06596,"104":0,"105":0.01099,"106":0.15941,"107":0.0055,"108":0.0055,"109":0.44526,"110":0.07146,"111":0.03298,"112":0.01099,"113":0.03848,"114":0.20889,"115":0.71461,"116":15.60598,"117":2.31424,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0055,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01649,"99":0.0055,"100":0.1759,"101":0.19789,"102":0.17041,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.0055,"100":0,"101":0,"102":0.0055,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.03298,"110":0.0055,"111":0.0055,"112":0.0055,"113":0.01099,"114":0.04947,"115":0.32432,"116":2.9299,"117":1.60512},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0055,"14":0.12643,"15":0.0055,_:"0","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.0055,"13.1":0.03298,"14.1":0.51122,"15.1":0.01099,"15.2-15.3":0.02199,"15.4":0.03298,"15.5":0.0055,"15.6":0.23637,"16.0":0.0055,"16.1":0.09345,"16.2":0.03848,"16.3":0.06047,"16.4":0.01649,"16.5":0.06047,"16.6":0.81356,"17.0":0.01099,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.04648,"11.0-11.2":0.15958,"11.3-11.4":0.0093,"12.0-12.1":0,"12.2-12.5":0.23859,"13.0-13.1":0,"13.2":0,"13.3":0.02324,"13.4-13.7":0.05268,"14.0-14.4":1.49354,"14.5-14.8":0.11,"15.0-15.1":0.52212,"15.2-15.3":0.01704,"15.4":0.02634,"15.5":0.05578,"15.6-15.7":0.3424,"16.0":0.36564,"16.1":0.71114,"16.2":0.2293,"16.3":0.82888,"16.4":0.06662,"16.5":0.66156,"16.6":9.14096,"17.0":0.3331,"17.1":0.0031},P:{"4":0.01025,"20":0.01025,"21":0.04101,"22":7.88482,"5.0-5.4":0.05127,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01025,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0.05127,"19.0":0.01025},I:{"0":0,"3":0,"4":0,"2.1":0,"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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":40.06947},R:{_:"0"},M:{"0":0.70247},Q:{"13.1":0},O:{"0":0.02702},H:{"0":0.03837}};
      +module.exports={C:{"52":0.01179,"61":0.0059,"78":0.21815,"110":0.04127,"113":0.0059,"114":0.06486,"115":0.09434,"117":0.01179,"118":0.35376,"119":0.10613,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 116 120 121 122 3.5 3.6"},D:{"49":0.01769,"53":0.01179,"54":0.01179,"65":0.0059,"66":0.01769,"73":0.02358,"77":0.01179,"79":0.15919,"81":0.0059,"87":0.02358,"91":0.0059,"92":0.02948,"93":0.25942,"96":0.05306,"103":0.11202,"105":0.0059,"107":0.0059,"108":0.08254,"109":1.79828,"110":0.0059,"111":0.01179,"112":0.02358,"113":0.04127,"114":0.12971,"115":0.31838,"116":5.61299,"117":17.46985,"118":17.48754,"119":0.01769,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 67 68 69 70 71 72 74 75 76 78 80 83 84 85 86 88 89 90 94 95 97 98 99 100 101 102 104 106 120 121 122"},F:{"99":0.0059,"100":0.02948,"101":0.02358,"102":0.77238,"103":0.07075,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.0059,"18":0.0059,"108":0.17098,"109":0.11792,"114":0.0059,"115":0.0059,"116":0.1415,"117":2.68858,"118":3.20153,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 119"},E:{"14":0.11792,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1 12.1 17.2","10.1":0.04127,"13.1":0.02358,"14.1":0.737,"15.1":0.05306,"15.2-15.3":0.0059,"15.4":0.06486,"15.5":0.0059,"15.6":0.23584,"16.0":0.02948,"16.1":0.11792,"16.2":0.04717,"16.3":0.22994,"16.4":0.02948,"16.5":0.08844,"16.6":0.96105,"17.0":0.35376,"17.1":0.0059},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00105,"5.0-5.1":0.00105,"6.0-6.1":0.00315,"7.0-7.1":0.00734,"8.1-8.4":0.00105,"9.0-9.2":0.00734,"9.3":0.02518,"10.0-10.2":0.00105,"10.3":0.03671,"11.0-11.2":0.03357,"11.3-11.4":0.01154,"12.0-12.1":0.00944,"12.2-12.5":0.16679,"13.0-13.1":0.00524,"13.2":0.02832,"13.3":0.01049,"13.4-13.7":0.03357,"14.0-14.4":0.09231,"14.5-14.8":0.14896,"15.0-15.1":0.05874,"15.2-15.3":0.06713,"15.4":0.07448,"15.5":0.10595,"15.6-15.7":0.73324,"16.0":0.27064,"16.1":0.5182,"16.2":0.2528,"16.3":0.4689,"16.4":0.1007,"16.5":0.26854,"16.6-16.7":5.02987,"17.0":1.79166,"17.1":0.10805,"17.2":0.00315},P:{"4":0.01073,"20":0.01073,"21":0.4291,"22":5.3208,"23":0.82601,"5.0-5.4":0.01073,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0","18.0":0.01073,"19.0":0.02145},I:{"0":0.00408,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{"11":0.01769,_:"6 7 8 9 10 5.5"},K:{"0":0.04514,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.09439},Q:{"13.1":0.0041},O:{"0":0.09029},H:{"0":0},L:{"0":27.11318}};
      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 7f73ec2e810b06..04236635a51dd2 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MQ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MQ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00488,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0195,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00488,"79":0,"80":0,"81":0,"82":0.04388,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00488,"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.00488,"102":0.04388,"103":0,"104":0,"105":0,"106":0,"107":0.00488,"108":0,"109":0,"110":0,"111":0,"112":0.00488,"113":0,"114":0.00975,"115":0.16575,"116":0.05363,"117":1.24313,"118":0.10725,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00488,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00488,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00975,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00975,"80":0,"81":0.00488,"83":0,"84":0,"85":0,"86":0,"87":0.00488,"88":0.01463,"89":0.00488,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.07313,"96":0,"97":0,"98":0.00975,"99":0.00488,"100":0.00488,"101":0,"102":0.00488,"103":0.03413,"104":0.00488,"105":0.00975,"106":0,"107":0.00488,"108":0.00488,"109":0.59963,"110":0.00975,"111":0.00488,"112":0.03413,"113":0.03413,"114":0.10238,"115":0.39975,"116":10.14,"117":2.145,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00488,"47":0,"48":0,"49":0,"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.05363,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.08775,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04388,"96":0,"97":0,"98":0,"99":0,"100":0.10725,"101":0.28275,"102":0.49725,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00975,"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.00488,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.01463,"105":0,"106":0,"107":0,"108":0.00975,"109":0.0585,"110":0.00488,"111":0.00975,"112":0.00975,"113":0.00488,"114":0.02438,"115":0.0585,"116":1.83788,"117":1.27725},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.039,"15":0.00488,_:"0","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.06338,"14.1":0.08288,"15.1":0.00975,"15.2-15.3":0.039,"15.4":0.19988,"15.5":0.09263,"15.6":0.20963,"16.0":0.01463,"16.1":0.05363,"16.2":0.07313,"16.3":0.19988,"16.4":0.05363,"16.5":0.26325,"16.6":1.09688,"17.0":0.04875,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.18537,"10.0-10.2":0.00883,"10.3":0.08827,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.07356,"13.0-13.1":0.00883,"13.2":0,"13.3":0.00883,"13.4-13.7":0.03531,"14.0-14.4":0.02942,"14.5-14.8":0.33837,"15.0-15.1":0.08239,"15.2-15.3":0.15594,"15.4":0.17948,"15.5":0.19125,"15.6-15.7":1.42703,"16.0":0.98274,"16.1":1.32993,"16.2":0.58258,"16.3":1.35642,"16.4":0.42075,"16.5":1.58592,"16.6":14.51747,"17.0":5.2962,"17.1":0.2295},P:{"4":0.07207,"20":0.32947,"21":0.17503,"22":3.38734,"5.0-5.4":0,"6.2-6.4":0.0103,"7.2-7.4":0.03089,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05148,"12.0":0,"13.0":0.02059,"14.0":0.03089,"15.0":0.10296,"16.0":0.05148,"17.0":0.0103,"18.0":0.02059,"19.0":0.30888},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09363},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00488,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":39.7455},R:{_:"0"},M:{"0":0.25625},Q:{"13.1":0},O:{"0":0.04613},H:{"0":0.39301}};
      +module.exports={C:{"52":0.00892,"68":0.01783,"78":0.00446,"95":0.00446,"102":0.03121,"104":0.01783,"110":0.00446,"112":0.00446,"113":0.00446,"114":0.00446,"115":0.23182,"116":0.00892,"117":0.07133,"118":2.16659,"119":0.65087,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 105 106 107 108 109 111 120 121 122 3.5 3.6"},D:{"61":0.00446,"63":0.00892,"65":0.00446,"68":0.00446,"70":0.00446,"76":0.02229,"79":0.01783,"81":0.00446,"83":0.00892,"86":0.00446,"87":0.01337,"88":0.14266,"89":0.00892,"91":0.00446,"93":0.01783,"94":0.00446,"95":0.00446,"96":0.00446,"97":0.00446,"98":0.00446,"99":0.02229,"100":0.00446,"102":0.00446,"103":0.02675,"105":0.12482,"106":0.00446,"107":0.00446,"108":0.02229,"109":1.16354,"110":0.00892,"111":0.00446,"112":0.04458,"113":0.04012,"114":0.0535,"115":0.15157,"116":0.91389,"117":10.1687,"118":12.26842,"119":0.00892,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 64 66 67 69 71 72 73 74 75 77 78 80 84 85 90 92 101 104 120 121 122"},F:{"28":0.00446,"46":0.01783,"85":0.00446,"89":0.15603,"92":0.00446,"95":0.08024,"99":0.03121,"101":0.00446,"102":1.81441,"103":0.32098,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00446,"18":0.00446,"92":0.01337,"97":0.00446,"101":0.00446,"104":0.06241,"106":0.00446,"108":0.00446,"109":0.02675,"110":0.00446,"111":0.00446,"112":0.00446,"113":0.00446,"114":0.00892,"115":0.02229,"116":0.04904,"117":3.78038,"118":3.29,"119":0.00892,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 102 103 105 107"},E:{"14":0.11145,"15":0.01337,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.01337,"13.1":0.0847,"14.1":0.15157,"15.1":0.02229,"15.2-15.3":0.12482,"15.4":0.31206,"15.5":0.1694,"15.6":0.41459,"16.0":0.01337,"16.1":0.09362,"16.2":0.10699,"16.3":0.30314,"16.4":0.12928,"16.5":0.55279,"16.6":1.7297,"17.0":0.90943,"17.1":0.04012},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00199,"5.0-5.1":0.00199,"6.0-6.1":0.00597,"7.0-7.1":0.01393,"8.1-8.4":0.00199,"9.0-9.2":0.01393,"9.3":0.04775,"10.0-10.2":0.00199,"10.3":0.06964,"11.0-11.2":0.06367,"11.3-11.4":0.02189,"12.0-12.1":0.01791,"12.2-12.5":0.31637,"13.0-13.1":0.00995,"13.2":0.05372,"13.3":0.0199,"13.4-13.7":0.06367,"14.0-14.4":0.1751,"14.5-14.8":0.28255,"15.0-15.1":0.11143,"15.2-15.3":0.12735,"15.4":0.14127,"15.5":0.20097,"15.6-15.7":1.39085,"16.0":0.51336,"16.1":0.98295,"16.2":0.47954,"16.3":0.88943,"16.4":0.19102,"16.5":0.50938,"16.6-16.7":9.54096,"17.0":3.39853,"17.1":0.20495,"17.2":0.00597},P:{"4":0.04176,"20":0.28191,"21":0.18794,"22":2.70422,"23":0.54293,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0","7.2-7.4":0.02088,"11.1-11.2":0.02088,"13.0":0.03132,"15.0":0.01044,"16.0":0.05221,"17.0":0.01044,"18.0":0.06265,"19.0":0.09397},I:{"0":0.02756,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"11":0.01337,_:"6 7 8 9 10 5.5"},K:{"0":0.37679,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.71479},Q:{_:"13.1"},O:{"0":0.01108},H:{"0":0},L:{"0":30.86715}};
      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 8ee74369769826..29ff31126314d7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00318,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00159,"113":0.00478,"114":0.00637,"115":0.0589,"116":0.01274,"117":0.10826,"118":0.00637,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00159,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00318,"41":0,"42":0,"43":0.00318,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.07482,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00159,"66":0.00318,"67":0,"68":0.00318,"69":0.00159,"70":0.00796,"71":0,"72":0,"73":0.00159,"74":0.00318,"75":0,"76":0,"77":0.00159,"78":0.00478,"79":0,"80":0,"81":0.00159,"83":0.00159,"84":0,"85":0,"86":0,"87":0.00159,"88":0.00159,"89":0,"90":0,"91":0.00318,"92":0,"93":0.00478,"94":0.00318,"95":0.00796,"96":0,"97":0,"98":0.00318,"99":0.00159,"100":0,"101":0,"102":0,"103":0.00318,"104":0,"105":0,"106":0.00159,"107":0.00159,"108":0.00318,"109":0.16079,"110":0,"111":0.00318,"112":0.00159,"113":0.0207,"114":0.01274,"115":0.0398,"116":0.74028,"117":0.22129,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00159,"60":0.00637,"62":0,"63":0,"64":0.00159,"65":0,"66":0,"67":0.00478,"68":0,"69":0.00637,"70":0.00796,"71":0.00637,"72":0.03184,"73":0.00796,"74":0,"75":0,"76":0,"77":0.00159,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00478,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00478,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.02388,"102":0.02229,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00318,"15":0,"16":0,"17":0,"18":0.00159,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00159,"90":0,"91":0,"92":0.00318,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00159,"109":0.00955,"110":0,"111":0,"112":0,"113":0.00159,"114":0.01751,"115":0.00637,"116":0.12099,"117":0.08756},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00318,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.02229,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00159,"15.1":0,"15.2-15.3":0,"15.4":0.01274,"15.5":0,"15.6":0.00478,"16.0":0.00159,"16.1":0.00159,"16.2":0.00159,"16.3":0.00478,"16.4":0.00159,"16.5":0.00796,"16.6":0.0191,"17.0":0.00159,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01284,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02568,"10.0-10.2":0,"10.3":0.09356,"11.0-11.2":0.01468,"11.3-11.4":0,"12.0-12.1":0.02018,"12.2-12.5":0.55218,"13.0-13.1":0.00917,"13.2":0.00734,"13.3":0.02935,"13.4-13.7":0.17244,"14.0-14.4":1.12821,"14.5-14.8":0.25499,"15.0-15.1":0.34121,"15.2-15.3":0.21097,"15.4":0.21097,"15.5":0.64207,"15.6-15.7":1.51895,"16.0":0.70444,"16.1":1.05299,"16.2":0.51916,"16.3":1.01264,"16.4":1.07684,"16.5":1.75744,"16.6":5.71809,"17.0":1.0585,"17.1":0.0055},P:{"4":0.10081,"20":0.28226,"21":0.49395,"22":2.27821,"5.0-5.4":0.02016,"6.2-6.4":0.04032,"7.2-7.4":0.98789,"8.2":0.01008,"9.2":0.15121,"10.1":0.01008,"11.1-11.2":0.06048,"12.0":0,"13.0":0.04032,"14.0":0.06048,"15.0":0.06048,"16.0":0.27218,"17.0":0.08064,"18.0":0.15121,"19.0":0.51411},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00909,"4.4":0,"4.4.3-4.4.4":0.08479},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00171,"9":0,"10":0,"11":0.02057,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.73407},R:{_:"0"},M:{"0":0.14294},Q:{"13.1":0.00841},O:{"0":0.34473},H:{"0":0.70845}};
      +module.exports={C:{"27":0.001,"30":0.001,"43":0.01202,"47":0.01603,"49":0.001,"52":0.002,"57":0.001,"72":0.00301,"92":0.00701,"110":0.01904,"111":0.001,"112":0.001,"113":0.00401,"114":0.01303,"115":0.2495,"116":0.001,"117":0.01202,"118":0.2485,"119":0.09719,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 120 121 122 3.5 3.6"},D:{"11":0.00601,"29":0.002,"33":0.00301,"38":0.001,"39":0.001,"40":0.001,"43":0.002,"49":0.001,"55":0.00301,"58":0.8507,"60":0.03507,"61":0.01503,"63":0.002,"65":0.00701,"66":0.00902,"68":0.01303,"69":0.001,"70":0.01102,"72":0.00802,"73":0.002,"74":0.00501,"75":0.01603,"76":0.001,"77":0.00601,"79":0.00301,"80":0.001,"81":0.00501,"83":0.002,"84":0.002,"86":0.001,"87":0.00902,"88":0.00501,"90":0.001,"91":0.002,"92":0.001,"93":0.02305,"94":0.00301,"95":0.02104,"96":0.002,"98":0.00601,"99":0.00401,"100":0.001,"102":0.001,"103":0.00301,"104":0.00301,"105":0.02004,"106":0.002,"107":0.01403,"108":0.01804,"109":0.5521,"111":0.00401,"112":0.01703,"113":0.02204,"114":0.02004,"115":0.09319,"116":0.25651,"117":1.36673,"118":1.78857,"119":0.001,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 34 35 36 37 41 42 44 45 46 47 48 50 51 52 53 54 56 57 59 62 64 67 71 78 85 89 97 101 110 120 121 122"},F:{"77":0.001,"85":0.00301,"95":0.09018,"100":0.001,"101":0.002,"102":0.04008,"103":0.04008,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 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 87 88 89 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.002,"13":0.002,"14":0.00501,"15":0.002,"16":0.001,"17":0.00301,"18":0.01002,"84":0.002,"89":0.00501,"90":0.002,"92":0.01703,"94":0.001,"100":0.00401,"106":0.001,"108":0.00501,"109":0.00802,"110":0.00601,"113":0.001,"114":0.01603,"115":0.00601,"116":0.00601,"117":0.31964,"118":0.32264,_:"79 80 81 83 85 86 87 88 91 93 95 96 97 98 99 101 102 103 104 105 107 111 112 119"},E:{"12":0.001,"13":0.001,"14":0.00601,"15":0.001,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 17.2","5.1":0.06513,"12.1":0.002,"13.1":0.001,"14.1":0.00701,"15.2-15.3":0.00301,"15.4":0.03206,"15.5":0.001,"15.6":0.00701,"16.0":0.001,"16.1":0.001,"16.2":0.001,"16.3":0.02004,"16.4":0.001,"16.5":0.04208,"16.6":0.03607,"17.0":0.03507,"17.1":0.00401},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00127,"5.0-5.1":0.00127,"6.0-6.1":0.00381,"7.0-7.1":0.00889,"8.1-8.4":0.00127,"9.0-9.2":0.00889,"9.3":0.03047,"10.0-10.2":0.00127,"10.3":0.04443,"11.0-11.2":0.04062,"11.3-11.4":0.01396,"12.0-12.1":0.01143,"12.2-12.5":0.20185,"13.0-13.1":0.00635,"13.2":0.03428,"13.3":0.01269,"13.4-13.7":0.04062,"14.0-14.4":0.11171,"14.5-14.8":0.18027,"15.0-15.1":0.07109,"15.2-15.3":0.08125,"15.4":0.09013,"15.5":0.12822,"15.6-15.7":0.88736,"16.0":0.32752,"16.1":0.62712,"16.2":0.30594,"16.3":0.56746,"16.4":0.12187,"16.5":0.32499,"16.6-16.7":6.08714,"17.0":2.16827,"17.1":0.13076,"17.2":0.00381},P:{"4":0.20257,"20":0.63808,"21":1.08373,"22":3.69684,"23":0.20257,"5.0-5.4":0.01013,"6.2-6.4":0.03038,"7.2-7.4":3.59555,_:"8.2 10.1","9.2":0.0709,"11.1-11.2":0.28359,"12.0":0.03038,"13.0":0.1418,"14.0":0.23295,"15.0":0.1418,"16.0":0.87104,"17.0":0.18231,"18.0":0.47603,"19.0":1.72181},I:{"0":0.06266,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00019},A:{"8":0.01078,"9":0.00108,"10":0.00324,"11":0.12618,_:"6 7 5.5"},K:{"0":1.24557,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.08997},Q:{_:"13.1"},O:{"0":0.12596},H:{"0":0.05},L:{"0":64.68369}};
      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 155fdf0bd40d57..82a0ebaa6e91cb 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MS.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MS.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.08862,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.01266,"113":0,"114":0,"115":0,"116":0,"117":0.05697,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.15192,"89":0.03165,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.08862,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01266,"104":0,"105":0.01266,"106":0,"107":0,"108":0,"109":3.15867,"110":0,"111":0.01266,"112":0,"113":0.04431,"114":0.19623,"115":0.49374,"116":17.64804,"117":3.57645,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.05697,"101":0.53805,"102":0.08862,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.10761,"110":0,"111":0,"112":0,"113":0,"114":0.01266,"115":0.10761,"116":4.6209,"117":2.25981},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.01266,_:"0","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.12027,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.03165,"15.6":0.07596,"16.0":0,"16.1":0,"16.2":0,"16.3":0.08862,"16.4":0.08862,"16.5":0.08862,"16.6":0.93051,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.14397,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.7":1.04964,"16.0":0.1808,"16.1":1.51837,"16.2":0.32477,"16.3":0.72319,"16.4":0.03683,"16.5":0.25278,"16.6":9.4735,"17.0":3.00159,"17.1":0.03683},P:{"4":0,"20":0,"21":0.09749,"22":1.68986,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.20582,"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.02166,"17.0":0,"18.0":0,"19.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":4.21615},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":40.85043},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0}};
      +module.exports={C:{"78":0.02272,"102":0.02272,"115":0.02272,"116":0.04543,"118":0.69054,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 117 119 120 121 122 3.5 3.6"},D:{"87":0.02272,"91":0.04543,"95":0.32255,"103":0.06815,"108":0.06815,"109":1.10849,"114":1.52191,"115":0.02272,"116":0.32255,"117":14.66026,"118":11.03949,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 89 90 92 93 94 96 97 98 99 100 101 102 104 105 106 107 110 111 112 113 119 120 121 122"},F:{"101":0.04543,"102":0.43613,"103":0.20898,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"89":0.27712,"109":0.16355,"112":0.02272,"116":0.16355,"117":3.89335,"118":4.14776,_:"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 102 103 104 105 106 107 108 110 111 113 114 115 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 16.1 16.2 16.4 16.5 17.1","13.1":0.16355,"14.1":0.25441,"15.4":0.04543,"15.5":0.02272,"15.6":0.53153,"16.3":0.27712,"16.6":0.78594,"17.0":0.78594,"17.2":0.02272},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.001,"5.0-5.1":0.001,"6.0-6.1":0.00299,"7.0-7.1":0.00698,"8.1-8.4":0.001,"9.0-9.2":0.00698,"9.3":0.02391,"10.0-10.2":0.001,"10.3":0.03488,"11.0-11.2":0.03189,"11.3-11.4":0.01096,"12.0-12.1":0.00897,"12.2-12.5":0.15844,"13.0-13.1":0.00498,"13.2":0.0269,"13.3":0.00996,"13.4-13.7":0.03189,"14.0-14.4":0.08769,"14.5-14.8":0.1415,"15.0-15.1":0.0558,"15.2-15.3":0.06377,"15.4":0.07075,"15.5":0.10064,"15.6-15.7":0.69652,"16.0":0.25708,"16.1":0.49225,"16.2":0.24014,"16.3":0.44541,"16.4":0.09566,"16.5":0.25509,"16.6-16.7":4.77797,"17.0":1.70193,"17.1":0.10263,"17.2":0.00299},P:{"20":0.11423,"21":0.31731,"22":2.31005,"23":0.44424,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.06346,"17.0":0.1777},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{_:"0"},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":44.04876}};
      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 00caaff61d94e7..91a210f6509e92 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0359,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00513,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00513,"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.00513,"103":0,"104":0,"105":0,"106":0,"107":0.00513,"108":0.00513,"109":0,"110":0,"111":0,"112":0.15384,"113":0.01026,"114":0.00513,"115":0.05641,"116":0.06154,"117":0.61536,"118":0.07692,"119":0,"120":0,"3.5":0,"3.6":0.00513},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00513,"44":0.00513,"45":0.00513,"46":0.00513,"47":0.00513,"48":0,"49":0.00513,"50":0,"51":0.00513,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00513,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.02051,"70":0.00513,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00513,"77":0.01538,"78":0,"79":0.00513,"80":0,"81":0,"83":0,"84":0,"85":0.00513,"86":0.00513,"87":0.01026,"88":0,"89":0.00513,"90":0,"91":0,"92":0.01026,"93":0.16922,"94":0.00513,"95":0.00513,"96":0.00513,"97":0.00513,"98":0,"99":0.00513,"100":0.00513,"101":0,"102":0,"103":0.0359,"104":0.00513,"105":0.00513,"106":0.01026,"107":0.01538,"108":0.27178,"109":0.58972,"110":0.01026,"111":0.01538,"112":0.04102,"113":0.03077,"114":0.15384,"115":0.4205,"116":11.94311,"117":4.37931,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02051,"29":0,"30":0,"31":0.00513,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00513,"47":0,"48":0,"49":0,"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.01026,"73":0.00513,"74":0,"75":0,"76":0,"77":0.01538,"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.00513,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01026,"100":0.0923,"101":0.23589,"102":0.7333,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00513,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.02051,"108":0,"109":0.03077,"110":0.00513,"111":0,"112":0.00513,"113":0.00513,"114":0.01538,"115":0.04615,"116":1.22046,"117":1.33841},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01026,"10":0,"11":0,"12":0,"13":0.00513,"14":0.01538,"15":0.00513,_:"0","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.01026,"13.1":0.02564,"14.1":0.08718,"15.1":0.01538,"15.2-15.3":0.01026,"15.4":0.01538,"15.5":0.02051,"15.6":0.14871,"16.0":0.03077,"16.1":0.06154,"16.2":0.04615,"16.3":0.0923,"16.4":0.45639,"16.5":0.21538,"16.6":0.7692,"17.0":0.07179,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01321,"6.0-6.1":0,"7.0-7.1":0.01849,"8.1-8.4":0.01849,"9.0-9.2":0,"9.3":0.02641,"10.0-10.2":0,"10.3":0.19809,"11.0-11.2":0.03698,"11.3-11.4":0.03434,"12.0-12.1":0.01321,"12.2-12.5":0.2245,"13.0-13.1":0,"13.2":0.00792,"13.3":0.00528,"13.4-13.7":0.02113,"14.0-14.4":0.13999,"14.5-14.8":0.22186,"15.0-15.1":0.05547,"15.2-15.3":0.1347,"15.4":0.06075,"15.5":0.19809,"15.6-15.7":1.0697,"16.0":0.81086,"16.1":1.30477,"16.2":0.78709,"16.3":1.25194,"16.4":0.1796,"16.5":0.82142,"16.6":16.11414,"17.0":2.38503,"17.1":0.00528},P:{"4":0.08301,"20":0.08301,"21":0.07263,"22":2.3139,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01038,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01038,"12.0":0.01038,"13.0":0.01038,"14.0":0.01038,"15.0":0.01038,"16.0":0.01038,"17.0":0.01038,"18.0":0.01038,"19.0":0.07263},I:{"0":0,"3":0.00537,"4":0.04298,"2.1":0.02686,"2.2":0.02149,"2.3":0.02686,"4.1":0.03224,"4.2-4.3":0.07522,"4.4":0,"4.4.3-4.4.4":0.24178},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00513,"8":0.04615,"9":0.00513,"10":0.00513,"11":0.02564,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00487},N:{"10":0.01462,"11":0},L:{"0":42.48426},R:{_:"0"},M:{"0":0.17052},Q:{"13.1":0},O:{"0":0.17539},H:{"0":0.19372}};
      +module.exports={C:{"52":0.00504,"68":0.03527,"78":0.01008,"88":0.00504,"107":0.02519,"108":0.01008,"110":0.00504,"113":0.00504,"114":0.00504,"115":0.09572,"116":0.01511,"117":0.09572,"118":1.17385,"119":0.23175,"120":0.00504,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 111 112 121 122 3.5 3.6"},D:{"42":0.00504,"43":0.00504,"44":0.00504,"45":0.00504,"46":0.00504,"47":0.00504,"49":0.01008,"51":0.00504,"53":0.00504,"69":0.03527,"70":0.00504,"74":0.00504,"75":0.00504,"76":0.00504,"77":0.02015,"79":0.02519,"80":0.00504,"81":0.00504,"83":0.00504,"85":0.00504,"86":0.00504,"87":0.01008,"88":0.01008,"89":0.00504,"90":0.00504,"91":0.00504,"92":0.02015,"93":0.5038,"96":0.01008,"97":0.00504,"99":0.00504,"100":0.00504,"103":0.07557,"104":0.00504,"105":0.00504,"106":0.02015,"107":0.15114,"108":0.01008,"109":0.94714,"110":0.01511,"111":0.01008,"112":0.08061,"113":0.03527,"114":0.1461,"115":0.2519,"116":1.50132,"117":15.79413,"118":15.47674,"119":0.01511,"120":0.00504,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 48 50 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 78 84 94 95 98 101 102 121 122"},F:{"28":0.0403,"36":0.00504,"46":0.00504,"90":0.01511,"95":0.00504,"100":0.00504,"101":0.01008,"102":2.11596,"103":0.2922,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00504,"92":0.00504,"107":0.00504,"108":0.00504,"109":0.04534,"112":0.01008,"113":0.01008,"114":0.02015,"115":0.02519,"116":0.08565,"117":2.49885,"118":2.4132,"119":0.00504,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111"},E:{"9":0.01008,"13":0.01008,"14":0.04534,"15":0.01008,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.00504,"11.1":0.00504,"12.1":0.01008,"13.1":0.07557,"14.1":0.16122,"15.1":0.03527,"15.2-15.3":0.02519,"15.4":0.02519,"15.5":0.0403,"15.6":0.37281,"16.0":0.05038,"16.1":0.15114,"16.2":0.12595,"16.3":0.17129,"16.4":0.63983,"16.5":0.32243,"16.6":1.06806,"17.0":0.99752,"17.1":0.03527},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0018,"5.0-5.1":0.0018,"6.0-6.1":0.00541,"7.0-7.1":0.01263,"8.1-8.4":0.0018,"9.0-9.2":0.01263,"9.3":0.04331,"10.0-10.2":0.0018,"10.3":0.06316,"11.0-11.2":0.05775,"11.3-11.4":0.01985,"12.0-12.1":0.01624,"12.2-12.5":0.28694,"13.0-13.1":0.00902,"13.2":0.04873,"13.3":0.01805,"13.4-13.7":0.05775,"14.0-14.4":0.15881,"14.5-14.8":0.25626,"15.0-15.1":0.10106,"15.2-15.3":0.1155,"15.4":0.12813,"15.5":0.18227,"15.6-15.7":1.26147,"16.0":0.46561,"16.1":0.89151,"16.2":0.43493,"16.3":0.80669,"16.4":0.17325,"16.5":0.462,"16.6-16.7":8.65344,"17.0":3.08239,"17.1":0.18588,"17.2":0.00541},P:{"4":0.04205,"20":0.02102,"21":0.06307,"22":1.73441,"23":0.36791,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 14.0","7.2-7.4":0.01051,"11.1-11.2":0.01051,"12.0":0.01051,"13.0":0.01051,"15.0":0.03153,"16.0":0.01051,"17.0":0.01051,"18.0":0.01051,"19.0":0.06307},I:{"0":0.15304,"3":0,"4":0.00003,"2.1":0,"2.2":0.00005,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00046},A:{"6":0.00504,"7":0.00504,"8":0.03527,"9":0.00504,"10":0.00504,"11":0.03023,_:"5.5"},K:{"0":0.36223,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.15382},Q:{_:"13.1"},O:{"0":0.11909},H:{"0":0},L:{"0":29.05718}};
      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 d660cd79c10f92..d9ca826fea06ce 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MU.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MU.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00692,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00346,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00346,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00346,"99":0,"100":0,"101":0,"102":0.02423,"103":0,"104":0,"105":0.00346,"106":0,"107":0,"108":0.00692,"109":0,"110":0.00346,"111":0,"112":0,"113":0.00346,"114":0.00692,"115":0.06924,"116":0.03116,"117":0.61624,"118":0.04847,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00346,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00346,"35":0,"36":0,"37":0,"38":0.01731,"39":0,"40":0.01731,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00346,"47":0,"48":0,"49":0.01039,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00346,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00346,"75":0,"76":0,"77":0,"78":0.00346,"79":0.03116,"80":0.00692,"81":0.03808,"83":0.00346,"84":0,"85":0,"86":0,"87":0.02423,"88":0.01039,"89":0.00346,"90":0.00346,"91":0.00346,"92":0.01039,"93":0.00346,"94":0.00346,"95":0,"96":0.00346,"97":0.00346,"98":0.01385,"99":0.01385,"100":0.00346,"101":0.00346,"102":0.00346,"103":0.02423,"104":0.02077,"105":0.00692,"106":0.04154,"107":0.00692,"108":0.01385,"109":0.55046,"110":0.03808,"111":0.01039,"112":0.0277,"113":0.00692,"114":0.09694,"115":0.25273,"116":5.83001,"117":1.30517,"118":0.00692,"119":0.00346,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00692,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00346,"64":0,"65":0.00346,"66":0,"67":0.02077,"68":0,"69":0.04154,"70":0.00692,"71":0.01039,"72":0.11078,"73":0.02077,"74":0.00692,"75":0,"76":0,"77":0.02077,"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.01731,"96":0,"97":0,"98":0,"99":0,"100":0.02077,"101":0.09694,"102":0.08655,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00346,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01385,"110":0.00346,"111":0,"112":0.00346,"113":0.00346,"114":0.01039,"115":0.03116,"116":0.63701,"117":0.48814},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00346,"13":0,"14":0.01039,"15":0.00346,_:"0","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.00346,"13.1":0.02423,"14.1":0.0277,"15.1":0,"15.2-15.3":0.00346,"15.4":0.00692,"15.5":0.01039,"15.6":0.06232,"16.0":0.02423,"16.1":0.01039,"16.2":0.04154,"16.3":0.05539,"16.4":0.01731,"16.5":0.0727,"16.6":0.23195,"17.0":0.03116,"17.1":0},G:{"8":0,"3.2":0,"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.01073,"8.1-8.4":0.00239,"9.0-9.2":0,"9.3":0.09661,"10.0-10.2":0,"10.3":0.06798,"11.0-11.2":0.00119,"11.3-11.4":0.00239,"12.0-12.1":0.01073,"12.2-12.5":0.23853,"13.0-13.1":0.00119,"13.2":0.00358,"13.3":0.00954,"13.4-13.7":0.00716,"14.0-14.4":0.03459,"14.5-14.8":0.07633,"15.0-15.1":0.05844,"15.2-15.3":0.03459,"15.4":0.05248,"15.5":0.05248,"15.6-15.7":0.7633,"16.0":0.25523,"16.1":0.52596,"16.2":0.48541,"16.3":0.44009,"16.4":0.05725,"16.5":0.32202,"16.6":7.04146,"17.0":1.11037,"17.1":0.00239},P:{"4":0.16292,"20":0.29529,"21":0.2342,"22":5.06068,"5.0-5.4":0.01018,"6.2-6.4":0,"7.2-7.4":0.15274,"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.07128,"15.0":0.01018,"16.0":0.2342,"17.0":0.08146,"18.0":0.05091,"19.0":0.14255},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00152,"4.2-4.3":0.00457,"4.4":0,"4.4.3-4.4.4":0.0716},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0277,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.83611},R:{_:"0"},M:{"0":0.29421},Q:{"13.1":0.00654},O:{"0":0.80417},H:{"0":0.92846}};
      +module.exports={C:{"20":0.00338,"34":0.00338,"52":0.01691,"72":0.00338,"78":0.00676,"87":0.00338,"94":0.00338,"99":0.00338,"102":0.00338,"104":0.01691,"105":0.00338,"110":0.01015,"112":0.00338,"113":0.00338,"114":0.02706,"115":0.2435,"116":0.01353,"117":0.0372,"118":1.51852,"119":0.23336,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 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 89 90 91 92 93 95 96 97 98 100 101 103 106 107 108 109 111 120 121 122 3.5 3.6"},D:{"26":0.00676,"34":0.01015,"38":0.0372,"49":0.02367,"50":0.01691,"56":0.00338,"60":0.00338,"64":0.00338,"65":0.00338,"67":0.00338,"68":0.01015,"69":0.00676,"71":0.00338,"72":0.00338,"74":0.02029,"76":0.00676,"78":0.00338,"79":0.0744,"80":0.01691,"81":0.02029,"83":0.00338,"85":0.01691,"86":0.00338,"87":0.04735,"88":0.01691,"89":0.00338,"90":0.01015,"91":0.00676,"92":0.01353,"93":0.00676,"94":0.01691,"95":0.00338,"96":0.00676,"97":0.00676,"98":0.00676,"99":0.02029,"100":0.00338,"101":0.01015,"102":0.02367,"103":0.07779,"104":0.04058,"105":0.09131,"106":0.00676,"107":0.04735,"108":0.02367,"109":1.58616,"110":0.01015,"111":0.03044,"112":0.04058,"113":0.01691,"114":0.14881,"115":0.13528,"116":1.13973,"117":9.83147,"118":9.62855,"119":0.04058,"120":0.00338,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 57 58 59 61 62 63 66 70 73 75 77 84 121 122"},F:{"28":0.03044,"95":0.03044,"99":0.00676,"101":0.00676,"102":0.4701,"103":0.17586,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00338,"17":0.00338,"18":0.00338,"92":0.01353,"100":0.00338,"107":0.00338,"109":0.08455,"110":0.00676,"111":0.00338,"112":0.01015,"113":0.00338,"114":0.01015,"115":0.04735,"116":0.0947,"117":1.6538,"118":2.20506,"119":0.00338,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108"},E:{"14":0.01691,"15":0.01353,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.00338,"11.1":0.00338,"12.1":0.00338,"13.1":0.09808,"14.1":0.08117,"15.1":0.00676,"15.2-15.3":0.01353,"15.4":0.01353,"15.5":0.02367,"15.6":0.19616,"16.0":0.04397,"16.1":0.0372,"16.2":0.15895,"16.3":0.14881,"16.4":0.02367,"16.5":0.12175,"16.6":0.50392,"17.0":0.45995,"17.1":0.02367},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00085,"5.0-5.1":0.00085,"6.0-6.1":0.00255,"7.0-7.1":0.00594,"8.1-8.4":0.00085,"9.0-9.2":0.00594,"9.3":0.02037,"10.0-10.2":0.00085,"10.3":0.0297,"11.0-11.2":0.02715,"11.3-11.4":0.00933,"12.0-12.1":0.00764,"12.2-12.5":0.13492,"13.0-13.1":0.00424,"13.2":0.02291,"13.3":0.00849,"13.4-13.7":0.02715,"14.0-14.4":0.07467,"14.5-14.8":0.12049,"15.0-15.1":0.04752,"15.2-15.3":0.05431,"15.4":0.06025,"15.5":0.0857,"15.6-15.7":0.59314,"16.0":0.21893,"16.1":0.41919,"16.2":0.2045,"16.3":0.3793,"16.4":0.08146,"16.5":0.21723,"16.6-16.7":4.06883,"17.0":1.44933,"17.1":0.0874,"17.2":0.00255},P:{"4":0.16481,"20":0.23692,"21":0.13391,"22":4.69712,"23":0.86526,"5.0-5.4":0.0103,"6.2-6.4":0.0206,"7.2-7.4":0.20601,_:"8.2 10.1 12.0","9.2":0.0103,"11.1-11.2":0.0412,"13.0":0.0309,"14.0":0.0412,"15.0":0.0103,"16.0":0.10301,"17.0":0.0721,"18.0":0.0309,"19.0":0.10301},I:{"0":0.03951,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"11":0.02367,_:"6 7 8 9 10 5.5"},K:{"0":0.86047,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.43024},Q:{"13.1":0.00662},O:{"0":0.62881},H:{"0":0},L:{"0":50.0081}};
      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 aaee820aec4f47..b7ac137267d7d7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00578,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00289,"100":0,"101":0,"102":0,"103":0.00289,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00578,"111":0.00578,"112":0,"113":0,"114":0,"115":0.01156,"116":0.104,"117":0.51135,"118":0.02022,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00289,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00289,"71":0,"72":0,"73":0,"74":0.00289,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00289,"83":0.01733,"84":0,"85":0,"86":0,"87":0.00578,"88":0.00578,"89":0,"90":0,"91":0.00289,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00578,"100":0.00289,"101":0,"102":0,"103":0.00867,"104":0,"105":0.00289,"106":0.00867,"107":0.00578,"108":0.00289,"109":0.19356,"110":0.00289,"111":0.00867,"112":0.01445,"113":0.01156,"114":0.11267,"115":0.13289,"116":4.50106,"117":1.08626,"118":0.00289,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00289,"70":0.00289,"71":0.00289,"72":0.06934,"73":0.02022,"74":0,"75":0,"76":0,"77":0.00578,"78":0.00289,"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.02889,"101":0.09245,"102":0.08667,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00289,"89":0,"90":0,"91":0,"92":0.00289,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00289,"103":0,"104":0,"105":0,"106":0,"107":0.00289,"108":0.00578,"109":0.00867,"110":0,"111":0,"112":0.00289,"113":0.00289,"114":0.01445,"115":0.02889,"116":0.35535,"117":0.24268},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00289,"12":0,"13":0,"14":0.00578,"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.00578,"14.1":0.01156,"15.1":0.00867,"15.2-15.3":0.00578,"15.4":0.00578,"15.5":0.00578,"15.6":0.02022,"16.0":0.00578,"16.1":0.02022,"16.2":0.00867,"16.3":0.02311,"16.4":0.01445,"16.5":0.05489,"16.6":0.19645,"17.0":0.03467,"17.1":0.00289},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01551,"6.0-6.1":0,"7.0-7.1":0.0031,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02481,"10.0-10.2":0,"10.3":0.0062,"11.0-11.2":0,"11.3-11.4":0.0062,"12.0-12.1":0,"12.2-12.5":0.13335,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.04652,"14.0-14.4":0.08994,"14.5-14.8":0.22329,"15.0-15.1":0.05892,"15.2-15.3":0.17987,"15.4":0.06823,"15.5":0.18918,"15.6-15.7":1.26842,"16.0":1.31184,"16.1":1.50412,"16.2":0.63886,"16.3":1.52273,"16.4":0.54893,"16.5":1.81114,"16.6":17.07251,"17.0":3.9014,"17.1":0},P:{"4":0.02075,"20":0.04151,"21":0.05189,"22":1.54619,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02075,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01038,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01038,"18.0":0.01038,"19.0":0.07264},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.11578},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.07909},R:{_:"0"},M:{"0":1.27287},Q:{"13.1":0},O:{"0":1.06665},H:{"0":0.63956}};
      +module.exports={C:{"64":0.01136,"67":0.00284,"72":0.00284,"85":0.00284,"101":0.00284,"108":0.03691,"110":0.0142,"113":0.00568,"114":0.00284,"115":0.0653,"116":0.00284,"117":0.07665,"118":0.93971,"119":0.12208,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 109 111 112 120 121 122 3.5 3.6"},D:{"70":0.00852,"74":0.00284,"75":0.00568,"78":0.00284,"80":0.00568,"83":0.03407,"84":0.00284,"86":0.00284,"87":0.02271,"88":0.00568,"91":0.00284,"92":0.00284,"93":0.00284,"94":0.00284,"95":0.00284,"96":0.00568,"97":0.00284,"98":0.00284,"99":0.01703,"100":0.00284,"101":0.00568,"102":0.00284,"103":0.02839,"104":0.00284,"105":0.00568,"106":0.00568,"107":0.02271,"108":0.05394,"109":0.67284,"110":0.00852,"111":0.06246,"112":0.03691,"113":0.0142,"114":0.09369,"115":0.07381,"116":0.93403,"117":9.36586,"118":8.8009,"119":0.0142,"120":0.00284,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 76 77 79 81 85 89 90 121 122"},F:{"95":0.00284,"102":0.75801,"103":0.08517,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00284,"16":0.00568,"17":0.00284,"18":0.00284,"84":0.00284,"90":0.00284,"92":0.01136,"100":0.00284,"102":0.01136,"105":0.00284,"107":0.01136,"108":0.22428,"109":0.01987,"110":0.03123,"111":0.00284,"112":0.00568,"113":0.01136,"114":0.0142,"115":0.06814,"116":0.04826,"117":1.17535,"118":1.16399,"119":0.04826,_:"13 14 15 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 101 103 104 106"},E:{"11":0.01703,"13":0.00568,"14":0.01703,"15":0.00568,_:"0 4 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00852,"13.1":0.03123,"14.1":0.18737,"15.1":0.02555,"15.2-15.3":0.01136,"15.4":0.0142,"15.5":0.01136,"15.6":0.09085,"16.0":0.01703,"16.1":0.05678,"16.2":0.0142,"16.3":0.05678,"16.4":0.04259,"16.5":0.13627,"16.6":0.59335,"17.0":0.36339,"17.1":0.02839,"17.2":0.00568},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00219,"5.0-5.1":0.00219,"6.0-6.1":0.00658,"7.0-7.1":0.01534,"8.1-8.4":0.00219,"9.0-9.2":0.01534,"9.3":0.05261,"10.0-10.2":0.00219,"10.3":0.07672,"11.0-11.2":0.07014,"11.3-11.4":0.02411,"12.0-12.1":0.01973,"12.2-12.5":0.34853,"13.0-13.1":0.01096,"13.2":0.05918,"13.3":0.02192,"13.4-13.7":0.07014,"14.0-14.4":0.19289,"14.5-14.8":0.31126,"15.0-15.1":0.12275,"15.2-15.3":0.14029,"15.4":0.15563,"15.5":0.22139,"15.6-15.7":1.5322,"16.0":0.56553,"16.1":1.08284,"16.2":0.52827,"16.3":0.97982,"16.4":0.21043,"16.5":0.56115,"16.6-16.7":10.51055,"17.0":3.74391,"17.1":0.22577,"17.2":0.00658},P:{"4":0.03131,"20":0.03131,"21":0.04175,"22":1.60726,"23":0.20874,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0","7.2-7.4":0.01044,"18.0":0.01044,"19.0":0.02087},I:{"0":0.04987,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"11":0.10788,_:"6 7 8 9 10 5.5"},K:{"0":1.16008,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":1.35343},Q:{_:"13.1"},O:{"0":1.10279},H:{"0":0},L:{"0":45.06736}};
      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 ebc0f71846e464..89f98c6a0a30e3 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MW.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MW.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00311,"86":0,"87":0,"88":0,"89":0.00311,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00311,"100":0,"101":0,"102":0.00934,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00623,"109":0.00311,"110":0.00311,"111":0.00623,"112":0.00311,"113":0.00623,"114":0.00934,"115":0.07474,"116":0.04982,"117":0.48578,"118":0.08719,"119":0.00311,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00311,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00623,"41":0,"42":0,"43":0.00311,"44":0.0218,"45":0,"46":0.00311,"47":0,"48":0,"49":0,"50":0.00311,"51":0,"52":0,"53":0,"54":0,"55":0.00623,"56":0,"57":0,"58":0.00311,"59":0,"60":0,"61":0.00311,"62":0,"63":0,"64":0.01557,"65":0.00311,"66":0,"67":0,"68":0,"69":0,"70":0.00934,"71":0,"72":0,"73":0,"74":0.00623,"75":0.00311,"76":0,"77":0.00311,"78":0,"79":0.00623,"80":0.00934,"81":0.01868,"83":0.00311,"84":0,"85":0.00311,"86":0,"87":0.00311,"88":0.00311,"89":0,"90":0.00311,"91":0.00311,"92":0.00934,"93":0.00311,"94":0.00311,"95":0.00311,"96":0.00311,"97":0,"98":0.00311,"99":0.00934,"100":0.00311,"101":0.00311,"102":0.00934,"103":0.01557,"104":0.00311,"105":0.00623,"106":0.00623,"107":0.00623,"108":0.00623,"109":0.2896,"110":0.01557,"111":0.00934,"112":0.00934,"113":0.02803,"114":0.05294,"115":0.05917,"116":2.6687,"117":1.32034,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00934,"27":0.00311,"28":0.0218,"29":0,"30":0.00311,"31":0,"32":0.01246,"33":0.00311,"34":0,"35":0.01868,"36":0,"37":0.00311,"38":0.00311,"39":0,"40":0,"41":0,"42":0.00623,"43":0.00311,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00311,"52":0,"53":0,"54":0.00623,"55":0,"56":0.00311,"57":0.00623,"58":0.00311,"60":0.0218,"62":0,"63":0.04048,"64":0.00934,"65":0.00311,"66":0.01868,"67":0.02803,"68":0.01557,"69":0.09031,"70":0.07785,"71":0.13079,"72":0.33943,"73":0.06228,"74":0.00311,"75":0.01557,"76":0.00311,"77":0.0436,"78":0.00311,"79":0.00311,"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.01868,"96":0,"97":0,"98":0,"99":0.00311,"100":0.00311,"101":0.1121,"102":0.14947,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01557},B:{"12":0.00623,"13":0.00311,"14":0,"15":0.00623,"16":0.00311,"17":0.00311,"18":0.01868,"79":0,"80":0,"81":0,"83":0,"84":0.00623,"85":0,"86":0,"87":0,"88":0,"89":0.00311,"90":0.00311,"91":0,"92":0.0218,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00623,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00311,"109":0.02803,"110":0.00311,"111":0.00623,"112":0.00934,"113":0.00623,"114":0.02491,"115":0.04982,"116":0.37368,"117":0.66951},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00311,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00311,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00311,"13.1":0.00623,"14.1":0.00311,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00623,"16.0":0,"16.1":0.00311,"16.2":0.00311,"16.3":0.00311,"16.4":0.00311,"16.5":0.00623,"16.6":0.0218,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00129,"6.0-6.1":0.00283,"7.0-7.1":0.00798,"8.1-8.4":0,"9.0-9.2":0.00077,"9.3":0.0157,"10.0-10.2":0,"10.3":0.02317,"11.0-11.2":0.00051,"11.3-11.4":0.00129,"12.0-12.1":0.00618,"12.2-12.5":0.2098,"13.0-13.1":0.00154,"13.2":0.00026,"13.3":0.00798,"13.4-13.7":0.01467,"14.0-14.4":0.05123,"14.5-14.8":0.05277,"15.0-15.1":0.04016,"15.2-15.3":0.03295,"15.4":0.04737,"15.5":0.05535,"15.6-15.7":0.39514,"16.0":0.08598,"16.1":0.08804,"16.2":0.08083,"16.3":0.10632,"16.4":0.08778,"16.5":0.17814,"16.6":0.70276,"17.0":0.23091,"17.1":0},P:{"4":0.25823,"20":0.08263,"21":0.20658,"22":0.54744,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.13428,"8.2":0,"9.2":0.01033,"10.1":0,"11.1-11.2":0.01033,"12.0":0,"13.0":0.01033,"14.0":0.01033,"15.0":0.01033,"16.0":0.04132,"17.0":0.03099,"18.0":0.04132,"19.0":0.05165},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00806,"4.4":0,"4.4.3-4.4.4":0.1144},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00934,"5.5":0},S:{"2.5":0.0964,_:"3.0-3.1"},J:{"7":0,"10":0.01377},N:{"10":0,"11":0},L:{"0":75.10967},R:{_:"0"},M:{"0":0.21347},Q:{"13.1":0.00689},O:{"0":3.1469},H:{"0":5.95205}};
      +module.exports={C:{"62":0.00678,"72":0.00339,"78":0.00339,"81":0.00339,"88":0.00339,"89":0.01017,"91":0.01017,"94":0.00339,"99":0.00339,"102":0.05084,"104":0.00678,"105":0.00339,"106":0.01017,"108":0.00339,"109":0.00678,"110":0.00339,"111":0.00339,"112":0.01017,"113":0.01356,"114":0.02711,"115":0.3389,"116":0.01017,"117":0.14234,"118":1.97579,"119":0.35246,"120":0.01356,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 82 83 84 85 86 87 90 92 93 95 96 97 98 100 101 103 107 121 122 3.5 3.6"},D:{"31":0.00339,"44":0.02711,"49":0.00678,"50":0.00678,"55":0.00678,"58":0.00339,"64":0.01017,"65":0.00339,"66":0.00339,"67":0.00339,"68":0.00339,"69":0.01695,"70":0.00339,"71":0.00339,"72":0.00339,"74":0.01695,"75":0.03389,"76":0.00339,"78":0.00339,"79":0.02033,"80":0.00678,"81":0.00339,"83":0.00678,"84":0.00339,"85":0.00339,"86":0.01017,"87":0.01695,"88":0.01017,"89":0.00339,"90":0.01695,"91":0.00339,"92":0.02033,"93":0.01695,"94":0.01017,"95":0.01017,"96":0.00339,"97":0.00678,"99":0.01356,"100":0.01017,"102":0.05422,"103":0.05084,"104":0.00678,"105":0.02372,"106":0.01695,"107":0.02711,"108":0.02711,"109":0.96925,"110":0.01695,"111":0.02711,"112":0.02372,"113":0.03728,"114":0.10845,"115":0.05422,"116":0.73202,"117":8.48267,"118":8.11666,"119":0.00678,"120":0.00339,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 51 52 53 54 56 57 59 60 61 62 63 73 77 98 101 121 122"},F:{"36":0.00339,"42":0.00678,"64":0.00339,"72":0.00678,"79":0.00678,"84":0.00339,"90":0.00678,"95":0.07117,"99":0.00339,"101":0.01356,"102":0.40329,"103":0.31857,_:"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 69 70 71 73 74 75 76 77 78 80 81 82 83 85 86 87 88 89 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01017,"13":0.00678,"14":0.00339,"15":0.01356,"16":0.00678,"17":0.01017,"18":0.061,"84":0.01017,"85":0.00678,"86":0.00339,"89":0.00678,"90":0.01017,"92":0.04406,"99":0.00339,"100":0.01017,"104":0.00339,"105":0.00339,"107":0.00339,"108":0.01356,"109":0.06439,"110":0.00678,"111":0.00339,"112":0.02711,"113":0.01356,"114":0.03389,"115":0.05422,"116":0.08811,"117":2.37569,"118":1.78261,"119":0.00339,_:"79 80 81 83 87 88 91 93 94 95 96 97 98 101 102 103 106"},E:{"13":0.00339,"14":0.00339,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.5 16.0 17.1 17.2","5.1":0.00678,"12.1":0.01356,"13.1":0.01356,"14.1":0.00678,"15.1":0.02372,"15.4":0.00678,"15.6":0.01695,"16.1":0.03389,"16.2":0.00678,"16.3":0.01356,"16.4":0.00339,"16.5":0.00678,"16.6":0.04406,"17.0":0.02711},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00019,"5.0-5.1":0.00019,"6.0-6.1":0.00056,"7.0-7.1":0.00131,"8.1-8.4":0.00019,"9.0-9.2":0.00131,"9.3":0.00451,"10.0-10.2":0.00019,"10.3":0.00657,"11.0-11.2":0.00601,"11.3-11.4":0.00207,"12.0-12.1":0.00169,"12.2-12.5":0.02985,"13.0-13.1":0.00094,"13.2":0.00507,"13.3":0.00188,"13.4-13.7":0.00601,"14.0-14.4":0.01652,"14.5-14.8":0.02666,"15.0-15.1":0.01051,"15.2-15.3":0.01202,"15.4":0.01333,"15.5":0.01896,"15.6-15.7":0.13124,"16.0":0.04844,"16.1":0.09275,"16.2":0.04525,"16.3":0.08393,"16.4":0.01802,"16.5":0.04806,"16.6-16.7":0.90027,"17.0":0.32068,"17.1":0.01934,"17.2":0.00056},P:{"4":0.17827,"20":0.0734,"21":0.19924,"22":0.60821,"23":0.03146,_:"5.0-5.4 8.2 10.1 12.0","6.2-6.4":0.01049,"7.2-7.4":0.14681,"9.2":0.02097,"11.1-11.2":0.01049,"13.0":0.03146,"14.0":0.02097,"15.0":0.01049,"16.0":0.03146,"17.0":0.04195,"18.0":0.04195,"19.0":0.06292},I:{"0":0.04604,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"10":0.00339,"11":0.02033,_:"6 7 8 9 5.5"},K:{"0":3.66992,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.06611,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.1785},Q:{"13.1":0.00661},O:{"0":2.02958},H:{"0":1.09},L:{"0":60.9937}};
      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 d6d6420c25e983..b3c040dfef13ca 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00889,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00444,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00444,"67":0,"68":0.00444,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00889,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00444,"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.02222,"103":0,"104":0.01778,"105":0.00444,"106":0,"107":0.00444,"108":0.00444,"109":0,"110":0.00444,"111":0.00444,"112":0.00444,"113":0.00889,"114":0.00889,"115":0.13332,"116":0.04444,"117":0.61772,"118":0.05777,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"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.05777,"50":0,"51":0,"52":0.00889,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00444,"66":0.01778,"67":0.00444,"68":0,"69":0,"70":0.00444,"71":0.00444,"72":0,"73":0,"74":0.00889,"75":0.00444,"76":0.00444,"77":0.00444,"78":0.00444,"79":0.03555,"80":0.01333,"81":0.00889,"83":0.00444,"84":0.00444,"85":0.00444,"86":0.00444,"87":0.02666,"88":0.01333,"89":0.01778,"90":0.00444,"91":0.02666,"92":0.00444,"93":0.00889,"94":0.00444,"95":0.00444,"96":0.00444,"97":0.00889,"98":0.00444,"99":0.02666,"100":0.00444,"101":0.00444,"102":0.00889,"103":0.0711,"104":0.00889,"105":0.00889,"106":0.01778,"107":0.01778,"108":0.02222,"109":1.26654,"110":0.02222,"111":0.02222,"112":0.03111,"113":0.03555,"114":0.15554,"115":0.31108,"116":8.69691,"117":2.27977,"118":0.00889,"119":0.00444,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00444,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.01778,"73":0.00444,"74":0.00444,"75":0,"76":0,"77":0.01778,"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.02666,"96":0,"97":0,"98":0,"99":0.00444,"100":0.10221,"101":0.25775,"102":0.30219,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00444,"13":0,"14":0,"15":0,"16":0,"17":0.00444,"18":0.00444,"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.00889,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00444,"100":0,"101":0,"102":0.00444,"103":0,"104":0,"105":0,"106":0,"107":0.00444,"108":0.00444,"109":0.04444,"110":0.00444,"111":0.00444,"112":0.00444,"113":0.00889,"114":0.04888,"115":0.04888,"116":1.25321,"117":0.99101},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00444,"14":0.01333,"15":0.00444,_:"0","3.1":0,"3.2":0,"5.1":0.00444,"6.1":0,"7.1":0,"9.1":0.00889,"10.1":0,"11.1":0.00444,"12.1":0.00444,"13.1":0.03111,"14.1":0.04444,"15.1":0.00889,"15.2-15.3":0.00444,"15.4":0.00889,"15.5":0.01778,"15.6":0.10221,"16.0":0.01333,"16.1":0.03111,"16.2":0.02666,"16.3":0.0711,"16.4":0.04,"16.5":0.09332,"16.6":0.43996,"17.0":0.03111,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00653,"6.0-6.1":0,"7.0-7.1":0.0049,"8.1-8.4":0,"9.0-9.2":0.02449,"9.3":0.0555,"10.0-10.2":0.00163,"10.3":0.05387,"11.0-11.2":0.00816,"11.3-11.4":0.03591,"12.0-12.1":0.0049,"12.2-12.5":0.24975,"13.0-13.1":0.00816,"13.2":0.00326,"13.3":0.01959,"13.4-13.7":0.03265,"14.0-14.4":0.07182,"14.5-14.8":0.19425,"15.0-15.1":0.05224,"15.2-15.3":0.05713,"15.4":0.0604,"15.5":0.11427,"15.6-15.7":1.05452,"16.0":0.44238,"16.1":0.76232,"16.2":0.4032,"16.3":0.7966,"16.4":0.15508,"16.5":0.41462,"16.6":9.82694,"17.0":1.2047,"17.1":0.00163},P:{"4":0.10269,"20":0.02054,"21":0.05134,"22":0.84203,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05134,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01027,"12.0":0,"13.0":0.01027,"14.0":0,"15.0":0,"16.0":0.01027,"17.0":0.02054,"18.0":0.01027,"19.0":0.02054},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.02293,"2.3":0,"4.1":0.01835,"4.2-4.3":0.01376,"4.4":0,"4.4.3-4.4.4":0.12384},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03555,"5.5":0},S:{"2.5":0.00556,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.36039},R:{_:"0"},M:{"0":0.21113},Q:{"13.1":0},O:{"0":0.06112},H:{"0":0.24196}};
      +module.exports={C:{"52":0.02211,"59":0.00884,"66":0.00442,"78":0.02211,"88":0.00884,"91":0.00442,"99":0.00442,"102":0.01326,"105":0.00442,"106":0.00442,"107":0.00442,"108":0.00442,"109":0.00442,"110":0.00442,"111":0.00442,"112":0.00884,"113":0.00884,"114":0.02211,"115":0.29621,"116":0.01326,"117":0.05747,"118":1.18925,"119":0.22547,"120":0.00442,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 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 100 101 103 104 121 122 3.5 3.6"},D:{"22":0.00442,"38":0.00884,"49":0.03095,"52":0.02211,"58":0.00442,"63":0.00442,"65":0.00884,"66":0.03979,"67":0.00884,"69":0.00442,"70":0.00442,"71":0.00442,"74":0.00884,"75":0.00884,"76":0.01326,"77":0.00884,"78":0.00442,"79":0.06632,"80":0.04421,"81":0.00884,"83":0.00884,"84":0.00442,"85":0.00442,"86":0.00442,"87":0.05305,"88":0.02211,"89":0.00884,"90":0.00442,"91":0.06189,"92":0.00884,"93":0.01768,"94":0.00884,"95":0.01326,"96":0.00884,"97":0.01768,"98":0.00884,"99":0.03095,"100":0.00884,"101":0.01326,"102":0.01326,"103":0.15474,"104":0.01326,"105":0.01326,"106":0.03095,"107":0.03537,"108":0.04863,"109":2.67913,"110":0.04421,"111":0.04421,"112":0.04863,"113":0.04421,"114":0.1901,"115":0.17684,"116":1.21135,"117":12.43185,"118":12.08701,"119":0.02211,"120":0.00884,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 59 60 61 62 64 68 72 73 121 122"},F:{"28":0.00884,"46":0.00442,"74":0.00442,"85":0.00442,"86":0.00442,"89":0.00442,"95":0.04863,"99":0.00442,"100":0.00442,"101":0.00442,"102":1.46335,"103":0.252,_:"9 11 12 15 16 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 87 88 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00884,"15":0.00442,"17":0.00442,"18":0.00884,"90":0.00442,"92":0.01768,"99":0.00442,"100":0.00442,"102":0.00442,"104":0.00442,"105":0.00442,"107":0.00442,"108":0.00884,"109":0.09284,"110":0.00884,"111":0.00884,"112":0.01326,"113":0.01768,"114":0.03979,"115":0.03537,"116":0.11053,"117":2.77639,"118":2.4625,"119":0.01326,_:"13 14 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 101 103 106"},E:{"8":0.00442,"13":0.00884,"14":0.03095,"15":0.00442,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 10.1 17.2","5.1":0.00884,"9.1":0.00442,"11.1":0.00884,"12.1":0.01326,"13.1":0.06189,"14.1":0.09726,"15.1":0.01768,"15.2-15.3":0.01326,"15.4":0.02211,"15.5":0.03537,"15.6":0.22989,"16.0":0.02653,"16.1":0.06189,"16.2":0.04863,"16.3":0.14147,"16.4":0.06632,"16.5":0.21221,"16.6":0.76483,"17.0":0.43768,"17.1":0.02211},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00108,"5.0-5.1":0.00108,"6.0-6.1":0.00324,"7.0-7.1":0.00755,"8.1-8.4":0.00108,"9.0-9.2":0.00755,"9.3":0.0259,"10.0-10.2":0.00108,"10.3":0.03776,"11.0-11.2":0.03453,"11.3-11.4":0.01187,"12.0-12.1":0.00971,"12.2-12.5":0.17156,"13.0-13.1":0.00539,"13.2":0.02913,"13.3":0.01079,"13.4-13.7":0.03453,"14.0-14.4":0.09495,"14.5-14.8":0.15321,"15.0-15.1":0.06042,"15.2-15.3":0.06905,"15.4":0.07661,"15.5":0.10898,"15.6-15.7":0.75421,"16.0":0.27838,"16.1":0.53302,"16.2":0.26003,"16.3":0.4823,"16.4":0.10358,"16.5":0.27622,"16.6-16.7":5.1737,"17.0":1.8429,"17.1":0.11113,"17.2":0.00324},P:{"4":0.09484,"20":0.01054,"21":0.03161,"22":0.71659,"23":0.15807,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0","7.2-7.4":0.06323,"11.1-11.2":0.01054,"13.0":0.01054,"17.0":0.02108,"18.0":0.01054,"19.0":0.01054},I:{"0":0.08326,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{"8":0.00482,"11":0.10128,_:"6 7 9 10 5.5"},K:{"0":0.26221,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00558,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.22316},Q:{_:"13.1"},O:{"0":0.05021},H:{"0":0},L:{"0":45.15175}};
      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 cdc186ca592166..e4e565e26b0c9d 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00425,"35":0,"36":0,"37":0,"38":0,"39":0.00425,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00849,"49":0,"50":0,"51":0,"52":0.00425,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.02124,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00425,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00425,"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.00849,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00425,"111":0,"112":0.00425,"113":0.00425,"114":0.00425,"115":0.09343,"116":0.03398,"117":0.39922,"118":0.03398,"119":0.00425,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00425,"30":0,"31":0,"32":0,"33":0,"34":0.00425,"35":0,"36":0,"37":0,"38":0.01699,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00849,"50":0,"51":0,"52":0,"53":0.01274,"54":0,"55":0.00849,"56":0.00425,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00425,"66":0,"67":0,"68":0,"69":0,"70":0.00425,"71":0.00425,"72":0.00425,"73":0.00425,"74":0.00849,"75":0.00425,"76":0,"77":0,"78":0.00849,"79":0.08919,"80":0.00425,"81":0.02124,"83":0.00849,"84":0.00425,"85":0.00849,"86":0.01274,"87":0.05521,"88":0.01699,"89":0.00849,"90":0.00425,"91":0.03398,"92":0.01274,"93":0.00425,"94":0.00849,"95":0.00425,"96":0.00425,"97":0.01274,"98":0.00849,"99":0.18262,"100":0.00849,"101":0.00425,"102":0.01274,"103":0.05946,"104":0.00849,"105":0.02124,"106":0.00849,"107":0.01699,"108":0.03398,"109":1.03202,"110":0.01699,"111":0.03398,"112":0.04247,"113":0.05521,"114":0.14865,"115":0.27606,"116":8.36234,"117":2.0598,"118":0.01274,"119":0.00425,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01274,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00849,"37":0.00425,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01699,"47":0,"48":0,"49":0,"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.00849,"70":0.00425,"71":0.00849,"72":0.05521,"73":0.01274,"74":0.00425,"75":0,"76":0,"77":0.02124,"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.00849,"96":0,"97":0,"98":0,"99":0,"100":0.02124,"101":0.07645,"102":0.08494,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01274,"110":0,"111":0,"112":0,"113":0.00425,"114":0.00849,"115":0.02124,"116":0.4969,"117":0.37798},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00425,"14":0.02548,"15":0.00849,_:"0","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.00425,"13.1":0.02124,"14.1":0.07645,"15.1":0.01274,"15.2-15.3":0.01274,"15.4":0.02973,"15.5":0.05096,"15.6":0.16988,"16.0":0.01274,"16.1":0.06371,"16.2":0.04247,"16.3":0.14015,"16.4":0.02973,"16.5":0.11042,"16.6":0.94708,"17.0":0.05096,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00488,"6.0-6.1":0,"7.0-7.1":0.01463,"8.1-8.4":0.01707,"9.0-9.2":0.01219,"9.3":0.10484,"10.0-10.2":0,"10.3":0.26087,"11.0-11.2":0.00244,"11.3-11.4":0.00488,"12.0-12.1":0.01463,"12.2-12.5":0.31695,"13.0-13.1":0.00731,"13.2":0,"13.3":0.02438,"13.4-13.7":0.04389,"14.0-14.4":0.16091,"14.5-14.8":0.31939,"15.0-15.1":0.14141,"15.2-15.3":0.12434,"15.4":0.22187,"15.5":0.26331,"15.6-15.7":1.71153,"16.0":1.01424,"16.1":1.23367,"16.2":0.8387,"16.3":1.42628,"16.4":0.38766,"16.5":1.37508,"16.6":12.72435,"17.0":1.37264,"17.1":0},P:{"4":0.40128,"20":0.06336,"21":0.11616,"22":1.58399,"5.0-5.4":0.06336,"6.2-6.4":0.01056,"7.2-7.4":0.03168,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01056,"12.0":0,"13.0":0.01056,"14.0":0,"15.0":0.01056,"16.0":0.02112,"17.0":0.01056,"18.0":0.01056,"19.0":0.03168},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.06274},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03822,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":53.57114},R:{_:"0"},M:{"0":0.1956},Q:{"13.1":0.01151},O:{"0":0.83419},H:{"0":0.51198}};
      +module.exports={C:{"34":0.0081,"37":0.00405,"39":0.01214,"48":0.03643,"52":0.0081,"78":0.00405,"83":0.00405,"88":0.0081,"99":0.00405,"102":0.00405,"106":0.00405,"107":0.00405,"109":0.00405,"110":0.00405,"111":0.00405,"112":0.00405,"113":0.0081,"114":0.01214,"115":0.24288,"116":0.01619,"117":0.03643,"118":0.88651,"119":0.18216,"120":0.0081,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 101 103 104 105 108 121 122 3.5 3.6"},D:{"29":0.01214,"34":0.01214,"38":0.03238,"47":0.00405,"49":0.01619,"53":0.02429,"55":0.02024,"56":0.01214,"58":0.01214,"62":0.00405,"65":0.0081,"67":0.00405,"68":0.00405,"69":0.00405,"70":0.0081,"71":0.00405,"72":0.00405,"73":0.00405,"74":0.01214,"75":0.01214,"76":0.00405,"77":0.00405,"78":0.02429,"79":0.19026,"80":0.01214,"81":0.04048,"83":0.01214,"84":0.0081,"85":0.01214,"86":0.02429,"87":0.12549,"88":0.02834,"89":0.01619,"90":0.01214,"91":0.05667,"92":0.01619,"93":0.01214,"94":0.01619,"95":0.0081,"96":0.01619,"97":0.02429,"98":0.01619,"99":0.17002,"100":0.01214,"101":0.01214,"102":0.03238,"103":0.15382,"104":0.01619,"105":0.03238,"106":0.02429,"107":0.04048,"108":0.06477,"109":2.51381,"110":0.03643,"111":0.06072,"112":0.06072,"113":0.06477,"114":0.17002,"115":0.17811,"116":0.87842,"117":12.64595,"118":11.96184,"119":0.02429,"120":0.02024,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 59 60 61 63 64 66 121 122"},F:{"28":0.02834,"36":0.02024,"40":0.00405,"46":0.03643,"74":0.00405,"78":0.00405,"85":0.00405,"95":0.02429,"101":0.00405,"102":0.36837,"103":0.0931,_:"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 75 76 77 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00405,"107":0.00405,"108":0.00405,"109":0.02834,"112":0.00405,"113":0.0081,"114":0.01214,"115":0.01214,"116":0.03238,"117":1.13749,"118":1.04438,"119":0.0081,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111"},E:{"7":0.00405,"13":0.0081,"14":0.05262,"15":0.01214,_:"0 4 5 6 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.00405,"12.1":0.0081,"13.1":0.03643,"14.1":0.15382,"15.1":0.02429,"15.2-15.3":0.02429,"15.4":0.05262,"15.5":0.09715,"15.6":0.34003,"16.0":0.03238,"16.1":0.11334,"16.2":0.08501,"16.3":0.26717,"16.4":0.06882,"16.5":0.18621,"16.6":1.74469,"17.0":0.48171,"17.1":0.02429},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0015,"5.0-5.1":0.0015,"6.0-6.1":0.00449,"7.0-7.1":0.01048,"8.1-8.4":0.0015,"9.0-9.2":0.01048,"9.3":0.03593,"10.0-10.2":0.0015,"10.3":0.05239,"11.0-11.2":0.0479,"11.3-11.4":0.01647,"12.0-12.1":0.01347,"12.2-12.5":0.23801,"13.0-13.1":0.00748,"13.2":0.04042,"13.3":0.01497,"13.4-13.7":0.0479,"14.0-14.4":0.13173,"14.5-14.8":0.21256,"15.0-15.1":0.08383,"15.2-15.3":0.0958,"15.4":0.10628,"15.5":0.15119,"15.6-15.7":1.04635,"16.0":0.38621,"16.1":0.73948,"16.2":0.36076,"16.3":0.66913,"16.4":0.14371,"16.5":0.38321,"16.6-16.7":7.17777,"17.0":2.55675,"17.1":0.15418,"17.2":0.00449},P:{"4":0.37555,"20":0.05365,"21":0.09657,"22":1.34125,"23":0.25752,"5.0-5.4":0.06438,"6.2-6.4":0.01073,"7.2-7.4":0.03219,_:"8.2 9.2 10.1 12.0 14.0","11.1-11.2":0.01073,"13.0":0.01073,"15.0":0.01073,"16.0":0.02146,"17.0":0.01073,"18.0":0.01073,"19.0":0.03219},I:{"0":0.04145,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"11":0.1012,_:"6 7 8 9 10 5.5"},K:{"0":0.62496,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.20832},Q:{"13.1":0.0119},O:{"0":0.88685},H:{"0":0},L:{"0":42.19283}};
      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 7baa4f981ce5ca..e946fbee3e6890 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0.0039,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.0039,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.0078,"51":0,"52":0.0078,"53":0,"54":0.0078,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0039,"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.0039,"96":0,"97":0.0039,"98":0,"99":0,"100":0.0039,"101":0,"102":0.0117,"103":0,"104":0.0078,"105":0,"106":0,"107":0.0039,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.0117,"114":0.0039,"115":0.10533,"116":0.02341,"117":0.28087,"118":0.02341,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0039,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0078,"41":0,"42":0,"43":0.0039,"44":0,"45":0,"46":0,"47":0.0039,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0078,"56":0,"57":0.0078,"58":0.0039,"59":0,"60":0.02731,"61":0,"62":0,"63":0.0039,"64":0.0039,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0156,"71":0,"72":0,"73":0,"74":0.0078,"75":0,"76":0,"77":0,"78":0,"79":0.0039,"80":0.0117,"81":0.10533,"83":0.0039,"84":0,"85":0.0078,"86":0,"87":0.02341,"88":0.0078,"89":0.0039,"90":0.03121,"91":0.01951,"92":0.03511,"93":0.0039,"94":0.0156,"95":0.01951,"96":0.0039,"97":0.0039,"98":0,"99":0.0039,"100":0.0039,"101":0.0078,"102":0.0117,"103":0.02731,"104":0.01951,"105":0.0078,"106":0.0039,"107":0.0039,"108":0.0117,"109":0.90893,"110":0.0078,"111":0.0156,"112":0.0156,"113":0.02731,"114":0.08972,"115":0.07022,"116":3.08179,"117":0.79971,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.0039,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.0039,"36":0,"37":0.02341,"38":0.0078,"39":0,"40":0,"41":0,"42":0.0039,"43":0,"44":0,"45":0,"46":0.01951,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0039,"57":0.0039,"58":0.01951,"60":0.04291,"62":0,"63":0.05461,"64":0.03511,"65":0.0156,"66":0.02341,"67":0.02341,"68":0.0078,"69":0.10143,"70":0.12093,"71":0.10533,"72":0.28087,"73":0.04681,"74":0.0117,"75":0,"76":0.0156,"77":0.01951,"78":0,"79":0.0078,"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.05071,"96":0,"97":0,"98":0,"99":0.0039,"100":0.01951,"101":0.15214,"102":0.17164,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0039},B:{"12":0.0117,"13":0.0078,"14":0.0078,"15":0.0039,"16":0,"17":0,"18":0.0117,"79":0,"80":0,"81":0,"83":0,"84":0.0039,"85":0,"86":0,"87":0,"88":0,"89":0.0039,"90":0.0039,"91":0,"92":0.0156,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.0156,"109":0.02731,"110":0.0039,"111":0,"112":0.0117,"113":0.0078,"114":0.02731,"115":0.03121,"116":0.63976,"117":0.52273},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.02341,"14.1":0.0039,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01951,"16.0":0,"16.1":0,"16.2":0,"16.3":0.0039,"16.4":0.0039,"16.5":0.0039,"16.6":0.03511,"17.0":0.0039,"17.1":0},G:{"8":0.04211,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00148,"6.0-6.1":0.00222,"7.0-7.1":0.00887,"8.1-8.4":0,"9.0-9.2":0.00148,"9.3":0.0096,"10.0-10.2":0,"10.3":0.09604,"11.0-11.2":0.00296,"11.3-11.4":0.00296,"12.0-12.1":0.02512,"12.2-12.5":1.13029,"13.0-13.1":0.01625,"13.2":0.01625,"13.3":0.06132,"13.4-13.7":0.21202,"14.0-14.4":0.51713,"14.5-14.8":0.40336,"15.0-15.1":0.10786,"15.2-15.3":0.12042,"15.4":0.15071,"15.5":0.16991,"15.6-15.7":1.58758,"16.0":0.14997,"16.1":0.15144,"16.2":0.13519,"16.3":0.3546,"16.4":0.15292,"16.5":0.25265,"16.6":1.24111,"17.0":0.22237,"17.1":0},P:{"4":0.15589,"20":0.07275,"21":0.08314,"22":0.46767,"5.0-5.4":0.01039,"6.2-6.4":0,"7.2-7.4":0.13511,"8.2":0,"9.2":0.02079,"10.1":0.01039,"11.1-11.2":0.01039,"12.0":0,"13.0":0.01039,"14.0":0.02079,"15.0":0.06236,"16.0":0.05196,"17.0":0.04157,"18.0":0.01039,"19.0":0.13511},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.00189,"4.4":0,"4.4.3-4.4.4":0.17412},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.0078,"10":0,"11":0.0156,"5.5":0},S:{"2.5":0.67699,_:"3.0-3.1"},J:{"7":0,"10":0.0061},N:{"10":0,"11":0},L:{"0":76.13624},R:{_:"0"},M:{"0":0.04879},Q:{"13.1":0},O:{"0":0.20127},H:{"0":3.47603}};
      +module.exports={C:{"7":0.01368,"42":0.01026,"50":0.03078,"52":0.03078,"54":0.03078,"78":0.01026,"88":0.00342,"90":0.00342,"97":0.00342,"100":0.00342,"104":0.01026,"107":0.00342,"108":0.00684,"112":0.00684,"113":0.03078,"114":0.00342,"115":0.26334,"116":0.00342,"117":0.02052,"118":0.53352,"119":0.1026,_:"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 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 91 92 93 94 95 96 98 99 101 102 103 105 106 109 110 111 120 121 122 3.5 3.6"},D:{"11":0.00342,"40":0.00684,"43":0.01368,"47":0.0171,"55":0.0171,"56":0.00342,"57":0.03078,"58":0.00342,"60":0.09576,"61":0.00342,"63":0.00342,"64":0.00342,"68":0.00342,"70":0.0171,"71":0.00342,"73":0.00342,"74":0.01368,"76":0.00342,"79":0.01368,"80":0.00684,"81":0.10944,"83":0.00342,"84":0.00342,"85":0.00342,"86":0.00342,"87":0.04104,"88":0.01026,"90":0.1539,"91":0.09576,"92":0.16416,"93":0.00342,"94":0.04446,"95":0.0513,"96":0.00684,"98":0.00342,"99":0.00342,"100":0.00342,"101":0.00684,"102":0.04104,"103":0.06156,"104":0.04104,"105":0.01368,"106":0.01026,"107":0.0171,"108":0.02394,"109":1.90494,"110":0.01026,"111":0.04104,"112":0.0171,"113":0.0342,"114":0.0855,"115":0.0342,"116":0.31464,"117":4.12452,"118":4.86666,"119":0.01026,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 48 49 50 51 52 53 54 59 62 65 66 67 69 72 75 77 78 89 97 120 121 122"},F:{"36":0.00342,"42":0.00342,"79":0.04788,"85":0.00342,"95":0.19152,"97":0.00342,"100":0.00342,"101":0.00684,"102":0.46512,"103":0.32832,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.06498,"13":0.0342,"14":0.0342,"15":0.0171,"16":0.00342,"17":0.00342,"18":0.03078,"84":0.00342,"89":0.00342,"90":0.00342,"91":0.00684,"92":0.03078,"99":0.00342,"100":0.00342,"102":0.00684,"105":0.00342,"107":0.00342,"108":0.0171,"109":0.1197,"110":0.00684,"112":0.0171,"113":0.0171,"114":0.04446,"115":0.0171,"116":0.04788,"117":1.09782,"118":1.35774,_:"79 80 81 83 85 86 87 88 93 94 95 96 97 98 101 103 104 106 111 119"},E:{"14":0.00342,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.4 15.5 16.0 16.2 17.2","12.1":0.00342,"13.1":0.02736,"14.1":0.01026,"15.2-15.3":0.00342,"15.6":0.01026,"16.1":0.00342,"16.3":0.01368,"16.4":0.00342,"16.5":0.01026,"16.6":0.02394,"17.0":0.02736,"17.1":0.00342},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00045,"5.0-5.1":0.00045,"6.0-6.1":0.00134,"7.0-7.1":0.00312,"8.1-8.4":0.00045,"9.0-9.2":0.00312,"9.3":0.01069,"10.0-10.2":0.00045,"10.3":0.01559,"11.0-11.2":0.01425,"11.3-11.4":0.0049,"12.0-12.1":0.00401,"12.2-12.5":0.07083,"13.0-13.1":0.00223,"13.2":0.01203,"13.3":0.00445,"13.4-13.7":0.01425,"14.0-14.4":0.0392,"14.5-14.8":0.06326,"15.0-15.1":0.02495,"15.2-15.3":0.02851,"15.4":0.03163,"15.5":0.04499,"15.6-15.7":0.31138,"16.0":0.11493,"16.1":0.22006,"16.2":0.10736,"16.3":0.19912,"16.4":0.04276,"16.5":0.11404,"16.6-16.7":2.13601,"17.0":0.76086,"17.1":0.04588,"17.2":0.00134},P:{"4":0.20101,"20":0.06348,"21":0.04232,"22":0.33855,"23":0.03174,_:"5.0-5.4 8.2 12.0","6.2-6.4":0.01058,"7.2-7.4":0.13753,"9.2":0.01058,"10.1":0.02116,"11.1-11.2":0.01058,"13.0":0.01058,"14.0":0.01058,"15.0":0.03174,"16.0":0.06348,"17.0":0.02116,"18.0":0.02116,"19.0":0.0529},I:{"0":0.05237,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},A:{"9":0.03078,"11":0.06156,_:"6 7 8 10 5.5"},K:{"0":2.77424,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.60536,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.0658},Q:{_:"13.1"},O:{"0":0.1316},H:{"0":0.7},L:{"0":71.77902}};
      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 424be419ccdc8b..bf4130c8272195 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.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.00379,"49":0,"50":0,"51":0,"52":0.01138,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"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,"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.00759,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00379,"113":0.00379,"114":0.00379,"115":0.16314,"116":0.03794,"117":0.52357,"118":0.04173,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01138,"41":0,"42":0.00379,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00379,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00759,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00379,"66":0,"67":0,"68":0.00379,"69":0.00759,"70":0.00379,"71":0,"72":0,"73":0.00759,"74":0.00759,"75":0,"76":0,"77":0.00379,"78":0.00379,"79":0,"80":0,"81":0.06829,"83":0,"84":0,"85":0,"86":0,"87":0.00379,"88":0.01518,"89":0.00379,"90":0,"91":0,"92":0,"93":0.00759,"94":0.00379,"95":0.00379,"96":0.00379,"97":0.00379,"98":0,"99":0.01138,"100":0.00379,"101":0.00379,"102":0,"103":0.00759,"104":0.00379,"105":0.00379,"106":0.05691,"107":0.00759,"108":0.02656,"109":0.84986,"110":0.01518,"111":0.01138,"112":0.03415,"113":0.01518,"114":0.0645,"115":0.13279,"116":5.03843,"117":1.48345,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.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.01138,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01138,"62":0,"63":0,"64":0,"65":0,"66":0.00379,"67":0,"68":0,"69":0.04553,"70":0.01138,"71":0.04173,"72":0.5084,"73":0.07209,"74":0.00379,"75":0,"76":0,"77":0.00759,"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.04173,"96":0,"97":0,"98":0,"99":0.00379,"100":0.03035,"101":0.14797,"102":0.129,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00379,"13":0,"14":0,"15":0,"16":0.00759,"17":0.00379,"18":0.01897,"79":0,"80":0,"81":0,"83":0,"84":0.00379,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00379,"91":0,"92":0.01138,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00379,"101":0,"102":0,"103":0.00379,"104":0,"105":0,"106":0,"107":0,"108":0.01138,"109":0.07588,"110":0.00379,"111":0.03035,"112":0.09106,"113":0.01518,"114":0.03415,"115":0.03794,"116":1.24443,"117":0.89918},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00759,"14":0.00379,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00379,"11.1":0,"12.1":0.00379,"13.1":0.02276,"14.1":0.01897,"15.1":0,"15.2-15.3":0,"15.4":0.00379,"15.5":0.00759,"15.6":0.02656,"16.0":0,"16.1":0.01138,"16.2":0.00759,"16.3":0.03415,"16.4":0.01138,"16.5":0.03035,"16.6":0.24661,"17.0":0.01518,"17.1":0},G:{"8":0.00209,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00209,"5.0-5.1":0.00939,"6.0-6.1":0.01148,"7.0-7.1":0.04799,"8.1-8.4":0.01043,"9.0-9.2":0.00104,"9.3":0.22014,"10.0-10.2":0,"10.3":0.04904,"11.0-11.2":0.00209,"11.3-11.4":0.00522,"12.0-12.1":0.00209,"12.2-12.5":0.65728,"13.0-13.1":0,"13.2":0.00104,"13.3":0.00313,"13.4-13.7":0.01461,"14.0-14.4":0.17319,"14.5-14.8":0.13667,"15.0-15.1":0.05842,"15.2-15.3":0.06677,"15.4":0.03547,"15.5":0.06781,"15.6-15.7":1.82265,"16.0":0.17423,"16.1":0.51435,"16.2":0.17632,"16.3":0.45488,"16.4":0.0772,"16.5":0.43401,"16.6":4.61348,"17.0":0.44862,"17.1":0},P:{"4":0.36788,"20":0.11241,"21":0.20438,"22":2.81023,"5.0-5.4":0.01022,"6.2-6.4":0.02044,"7.2-7.4":0.28613,"8.2":0,"9.2":0,"10.1":0.02044,"11.1-11.2":0.01022,"12.0":0,"13.0":0.03066,"14.0":0.03066,"15.0":0.01022,"16.0":0.03066,"17.0":0.10219,"18.0":0.03066,"19.0":0.17372},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00363,"4.2-4.3":0.00726,"4.4":0,"4.4.3-4.4.4":0.14155},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0645,"5.5":0},S:{"2.5":0.00621,_:"3.0-3.1"},J:{"7":0,"10":0.00621},N:{"10":0,"11":0},L:{"0":66.9657},R:{_:"0"},M:{"0":0.08688},Q:{"13.1":0.01241},O:{"0":0.47166},H:{"0":2.33843}};
      +module.exports={C:{"34":0.02037,"47":0.0034,"48":0.01358,"52":0.02377,"56":0.0034,"60":0.0034,"69":0.0034,"72":0.0034,"78":0.0034,"91":0.0034,"98":0.03395,"99":0.0034,"102":0.0034,"110":0.0034,"113":0.02716,"114":0.0034,"115":0.31913,"116":0.02377,"117":0.04074,"118":0.94721,"119":0.21049,"120":0.05772,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 100 101 103 104 105 106 107 108 109 111 112 121 122 3.5 3.6"},D:{"37":0.0034,"40":0.00679,"42":0.0034,"49":0.0034,"50":0.0034,"58":0.0034,"60":0.0034,"62":0.0034,"63":0.0034,"65":0.0034,"69":0.01358,"70":0.0034,"73":0.02716,"74":0.01358,"75":0.0034,"76":0.0034,"77":0.00679,"78":0.00679,"79":0.01019,"81":0.01019,"83":0.01019,"85":0.0034,"86":0.0034,"87":0.01019,"88":0.02037,"89":0.02716,"90":0.0034,"91":0.00679,"92":0.01019,"93":0.01698,"94":0.03395,"95":0.00679,"96":0.01698,"97":0.0034,"99":0.01019,"100":0.00679,"101":0.01019,"102":0.02716,"103":0.03056,"104":0.01019,"105":0.0034,"106":0.01358,"107":0.00679,"108":0.01698,"109":2.48175,"110":0.01358,"111":0.01358,"112":0.03395,"113":0.03056,"114":0.10525,"115":0.06111,"116":0.58055,"117":7.05481,"118":7.58443,"119":0.0034,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 43 44 45 46 47 48 51 52 53 54 55 56 57 59 61 64 66 67 68 71 72 80 84 98 120 121 122"},F:{"28":0.0034,"58":0.00679,"75":0.0034,"79":0.0034,"85":0.0034,"86":0.00679,"95":0.10525,"99":0.0034,"101":0.00679,"102":0.53302,"103":0.3395,_:"9 11 12 15 16 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 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 80 81 82 83 84 87 88 89 90 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00679,"13":0.0034,"14":0.0034,"15":0.0034,"16":0.00679,"17":0.0034,"18":0.0679,"84":0.00679,"90":0.0034,"92":0.02716,"100":0.0034,"104":0.0034,"105":0.0034,"107":0.0034,"108":0.04414,"109":0.0713,"110":0.01019,"111":0.0034,"112":0.14938,"113":0.01019,"114":0.03395,"115":0.01698,"116":0.0713,"117":2.32897,"118":2.50891,"119":0.0034,_:"79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 106"},E:{"13":0.0034,"14":0.01019,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.0034,"12.1":0.0034,"13.1":0.03395,"14.1":0.04753,"15.1":0.0034,"15.2-15.3":0.0034,"15.4":0.02716,"15.5":0.02037,"15.6":0.07809,"16.0":0.0034,"16.1":0.02037,"16.2":0.01358,"16.3":0.10525,"16.4":0.01698,"16.5":0.02716,"16.6":0.39382,"17.0":0.23426,"17.1":0.01019},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00072,"5.0-5.1":0.00072,"6.0-6.1":0.00215,"7.0-7.1":0.00501,"8.1-8.4":0.00072,"9.0-9.2":0.00501,"9.3":0.01718,"10.0-10.2":0.00072,"10.3":0.02506,"11.0-11.2":0.02291,"11.3-11.4":0.00787,"12.0-12.1":0.00644,"12.2-12.5":0.11382,"13.0-13.1":0.00358,"13.2":0.01933,"13.3":0.00716,"13.4-13.7":0.02291,"14.0-14.4":0.063,"14.5-14.8":0.10165,"15.0-15.1":0.04009,"15.2-15.3":0.04582,"15.4":0.05083,"15.5":0.0723,"15.6-15.7":0.5004,"16.0":0.1847,"16.1":0.35364,"16.2":0.17253,"16.3":0.32,"16.4":0.06872,"16.5":0.18326,"16.6-16.7":3.43261,"17.0":1.22271,"17.1":0.07373,"17.2":0.00215},P:{"4":0.43385,"20":0.06198,"21":0.13429,"22":2.1486,"23":0.34088,"5.0-5.4":0.01033,"6.2-6.4":0.01033,"7.2-7.4":0.29956,_:"8.2 9.2 12.0","10.1":0.03099,"11.1-11.2":0.01033,"13.0":0.03099,"14.0":0.02066,"15.0":0.02066,"16.0":0.04132,"17.0":0.08264,"18.0":0.02066,"19.0":0.16528},I:{"0":0.03285,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"9":0.00462,"11":0.11081,_:"6 7 8 10 5.5"},K:{"0":1.5576,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0066,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.24435},Q:{_:"13.1"},O:{"0":0.40284},H:{"0":0.1},L:{"0":58.51811}};
      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 55bcdd868bdb2a..0f2faa750b9d68 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NC.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NC.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05705,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00519,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01037,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02593,"79":0,"80":0.00519,"81":0,"82":0.00519,"83":0.01556,"84":0,"85":0,"86":0,"87":0,"88":0.02593,"89":0.00519,"90":0,"91":0.03112,"92":0,"93":0.00519,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.31116,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00519,"109":0.00519,"110":0,"111":0.00519,"112":0.00519,"113":0.03112,"114":0.00519,"115":0.30079,"116":0.28004,"117":4.29919,"118":0.16077,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00519,"50":0,"51":0,"52":0,"53":0.01037,"54":0,"55":0,"56":0.01037,"57":0,"58":0,"59":0,"60":0,"61":0.00519,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.01556,"76":0.00519,"77":0,"78":0,"79":0.01037,"80":0,"81":0.04149,"83":0,"84":0,"85":0,"86":0.00519,"87":0.00519,"88":0.01037,"89":0,"90":0.00519,"91":0,"92":0.00519,"93":0,"94":0.02074,"95":0.00519,"96":0.01037,"97":0.01037,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.07779,"104":0.00519,"105":0,"106":0,"107":0.02593,"108":0,"109":0.99053,"110":0.00519,"111":0.00519,"112":0.04667,"113":0.02074,"114":0.47193,"115":0.17632,"116":7.41598,"117":2.68116,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00519,"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.00519,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.02074,"101":0.24374,"102":0.25411,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00519,"18":0.03112,"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.02593,"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.00519,"107":0,"108":0,"109":0.02593,"110":0.01037,"111":0.01037,"112":0.01037,"113":0.00519,"114":0.52379,"115":0.05186,"116":2.01217,"117":1.42096},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00519,"14":0.05705,"15":0.01037,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01556,"11.1":0.00519,"12.1":0.02593,"13.1":0.07779,"14.1":0.15558,"15.1":0.01037,"15.2-15.3":0.01037,"15.4":0.02074,"15.5":0.0363,"15.6":0.20225,"16.0":0.05186,"16.1":0.06742,"16.2":0.05186,"16.3":0.10891,"16.4":0.04149,"16.5":0.223,"16.6":1.86177,"17.0":0.01037,"17.1":0},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,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.0046,"9.3":0.04136,"10.0-10.2":0,"10.3":0.04596,"11.0-11.2":0.0046,"11.3-11.4":0.00689,"12.0-12.1":0,"12.2-12.5":0.34011,"13.0-13.1":0.00919,"13.2":0,"13.3":0.19074,"13.4-13.7":0.0046,"14.0-14.4":0.10111,"14.5-14.8":0.17465,"15.0-15.1":0.41364,"15.2-15.3":0.03677,"15.4":0.14937,"15.5":0.1126,"15.6-15.7":1.20875,"16.0":0.35849,"16.1":1.02262,"16.2":0.32402,"16.3":1.02951,"16.4":0.20223,"16.5":0.65493,"16.6":15.3829,"17.0":0.91461,"17.1":0.0046},P:{"4":0.01033,"20":0.10332,"21":0.21697,"22":4.03982,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.27896,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02066,"12.0":0,"13.0":0.02066,"14.0":0.02066,"15.0":0.02066,"16.0":0.08266,"17.0":0.01033,"18.0":0.031,"19.0":0.36162},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01801,"4.4":0,"4.4.3-4.4.4":0.23868},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01037,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.46239},R:{_:"0"},M:{"0":0.52473},Q:{"13.1":0},O:{"0":0.0674},H:{"0":0.0319}};
      +module.exports={C:{"52":0.10059,"60":0.01437,"68":0.00479,"73":0.00479,"78":0.0479,"80":0.01916,"88":0.04311,"91":0.12933,"96":0.00479,"102":0.11496,"103":0.00479,"108":0.04311,"110":0.00479,"111":0.00479,"113":0.05269,"114":0.00958,"115":0.87178,"116":0.02874,"117":0.16765,"118":3.4488,"119":0.57959,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 74 75 76 77 79 81 82 83 84 85 86 87 89 90 92 93 94 95 97 98 99 100 101 104 105 106 107 109 112 120 121 122 3.5 3.6"},D:{"49":0.00479,"76":0.00479,"77":0.00479,"79":0.00958,"86":0.00479,"87":0.00958,"88":0.00958,"89":0.00479,"90":0.00479,"91":0.00479,"92":0.00479,"93":0.00958,"94":0.06227,"96":0.00958,"97":0.01437,"98":0.00958,"103":0.18202,"104":0.00958,"106":0.00479,"107":0.01437,"109":1.73398,"110":0.01437,"111":0.01916,"112":0.01437,"113":0.01437,"114":0.45984,"115":0.06227,"116":0.68497,"117":10.75355,"118":9.67101,"119":0.00479,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 84 85 95 99 100 101 102 105 108 120 121 122"},F:{"78":0.01437,"81":0.00479,"91":0.00479,"95":0.00958,"101":0.00958,"102":0.57001,"103":0.20597,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00958,"17":0.00479,"18":0.01916,"90":0.00479,"92":0.00958,"99":0.00958,"100":0.00958,"102":0.00479,"108":0.00479,"109":0.05269,"110":0.00479,"111":0.00958,"112":0.01437,"114":0.34009,"115":0.02395,"116":0.07664,"117":4.02839,"118":3.45838,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 101 103 104 105 106 107 113 119"},E:{"12":0.00958,"13":0.00479,"14":0.09101,"15":0.02874,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 17.2","10.1":0.0479,"11.1":0.00958,"12.1":0.03353,"13.1":0.06706,"14.1":0.18202,"15.1":0.00958,"15.2-15.3":0.04311,"15.4":0.02395,"15.5":0.03832,"15.6":0.29219,"16.0":0.04311,"16.1":0.11017,"16.2":0.05748,"16.3":0.67539,"16.4":0.02395,"16.5":0.18202,"16.6":5.16362,"17.0":0.69934,"17.1":0.03832},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00151,"5.0-5.1":0.00151,"6.0-6.1":0.00454,"7.0-7.1":0.01058,"8.1-8.4":0.00151,"9.0-9.2":0.01058,"9.3":0.03629,"10.0-10.2":0.00151,"10.3":0.05292,"11.0-11.2":0.04838,"11.3-11.4":0.01663,"12.0-12.1":0.01361,"12.2-12.5":0.2404,"13.0-13.1":0.00756,"13.2":0.04082,"13.3":0.01512,"13.4-13.7":0.04838,"14.0-14.4":0.13305,"14.5-14.8":0.2147,"15.0-15.1":0.08467,"15.2-15.3":0.09676,"15.4":0.10735,"15.5":0.15271,"15.6-15.7":1.05685,"16.0":0.39008,"16.1":0.7469,"16.2":0.36438,"16.3":0.67584,"16.4":0.14515,"16.5":0.38706,"16.6-16.7":7.24976,"17.0":2.5824,"17.1":0.15573,"17.2":0.00454},P:{"4":0.02143,"20":0.14998,"21":0.10713,"22":3.17111,"23":0.51423,_:"5.0-5.4 6.2-6.4 8.2 9.2 17.0","7.2-7.4":0.38568,"10.1":0.22498,"11.1-11.2":0.02143,"12.0":0.01071,"13.0":0.02143,"14.0":0.02143,"15.0":0.01071,"16.0":0.09642,"18.0":0.03214,"19.0":0.1607},I:{"0":0.02073,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"11":0.00958,_:"6 7 8 9 10 5.5"},K:{"0":0.08857,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.45848},Q:{_:"13.1"},O:{"0":0.02084},H:{"0":0},L:{"0":32.33052}};
      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 96c1b20cd21455..5841777c40aebf 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00279,"73":0,"74":0,"75":0,"76":0,"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.00279,"104":0,"105":0,"106":0.01953,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00279,"114":0.00279,"115":0.0558,"116":0.01674,"117":0.18693,"118":0.00837,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00279,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.06696,"80":0,"81":0,"83":0,"84":0,"85":0.00279,"86":0,"87":0.00279,"88":0,"89":0,"90":0.00279,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00279,"103":0.00279,"104":0,"105":0,"106":0.00279,"107":0,"108":0,"109":0.09486,"110":0,"111":0,"112":0.00279,"113":0.00279,"114":0.01674,"115":0.01953,"116":0.6696,"117":0.10602,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00279,"27":0,"28":0.00279,"29":0,"30":0.00279,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0279,"38":0,"39":0,"40":0,"41":0,"42":0.00279,"43":0,"44":0,"45":0,"46":0.01674,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00279,"60":0.04185,"62":0,"63":0.03348,"64":0.00279,"65":0,"66":0.01116,"67":0.03069,"68":0.00279,"69":0.06696,"70":0.03069,"71":0.05301,"72":0.24552,"73":0.01395,"74":0,"75":0,"76":0,"77":0.01395,"78":0.00279,"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.01953,"96":0,"97":0,"98":0,"99":0,"100":0.00837,"101":0.02232,"102":0.03906,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00279},B:{"12":0.00558,"13":0,"14":0,"15":0,"16":0,"17":0.00279,"18":0.00279,"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,"102":0.00558,"103":0,"104":0,"105":0.00837,"106":0,"107":0,"108":0,"109":0.03069,"110":0,"111":0.00279,"112":0.00837,"113":0.01116,"114":0.01116,"115":0.03348,"116":0.1674,"117":0.13113},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.01395,"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.04464,"15.1":4.15989,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00837,"16.0":0,"16.1":0,"16.2":0.00279,"16.3":0.00558,"16.4":0,"16.5":0,"16.6":0.02232,"17.0":0,"17.1":0},G:{"8":0.0014,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02944,"6.0-6.1":0,"7.0-7.1":0.0021,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00701,"10.0-10.2":0,"10.3":0.08831,"11.0-11.2":0.0007,"11.3-11.4":0,"12.0-12.1":0.00561,"12.2-12.5":1.12555,"13.0-13.1":0.0021,"13.2":0.00911,"13.3":0.00631,"13.4-13.7":0.02663,"14.0-14.4":0.12545,"14.5-14.8":0.92931,"15.0-15.1":0.10933,"15.2-15.3":0.0799,"15.4":0.02873,"15.5":0.07149,"15.6-15.7":0.91319,"16.0":0.28664,"16.1":0.10162,"16.2":0.26001,"16.3":0.35883,"16.4":0.28244,"16.5":0.73027,"16.6":1.17671,"17.0":0.21936,"17.1":0},P:{"4":0.0403,"20":0.06045,"21":0.07053,"22":0.37279,"5.0-5.4":0,"6.2-6.4":0.01008,"7.2-7.4":0.05038,"8.2":0,"9.2":0.05038,"10.1":0,"11.1-11.2":0.02015,"12.0":0,"13.0":0.03023,"14.0":0,"15.0":0,"16.0":0.02015,"17.0":0,"18.0":0.03023,"19.0":0.03023},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04116},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02232,"5.5":0},S:{"2.5":0.06489,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.01709},R:{_:"0"},M:{"0":0.03605},Q:{"13.1":0.03605},O:{"0":0.87962},H:{"0":3.14677}};
      +module.exports={C:{"47":0.00243,"52":0.00243,"60":0.00486,"67":0.00243,"72":0.00243,"78":0.00243,"87":0.00243,"97":0.00243,"99":0.00243,"104":0.00486,"106":0.0607,"110":0.00243,"115":0.33264,"116":0.00728,"117":0.04128,"118":0.64828,"119":0.0607,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 98 100 101 102 103 105 107 108 109 111 112 113 114 120 121 122 3.5 3.6"},D:{"26":0.00728,"50":0.00243,"58":0.00728,"64":0.00486,"68":0.00243,"69":0.00243,"74":0.00243,"78":0.00243,"79":0.12383,"90":0.00243,"91":0.00243,"92":0.00243,"99":0.00971,"100":0.00243,"102":0.00243,"103":0.00971,"105":0.00243,"107":0.00243,"108":0.00243,"109":0.33021,"110":0.00243,"111":0.00486,"112":0.00486,"113":0.01214,"114":0.03642,"115":0.00728,"116":0.09226,"117":1.89141,"118":1.5175,"120":0.00243,_:"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 49 51 52 53 54 55 56 57 59 60 61 62 63 65 66 67 70 71 72 73 75 76 77 80 81 83 84 85 86 87 88 89 93 94 95 96 97 98 101 104 106 119 121 122"},F:{"40":0.00243,"79":0.00243,"83":0.00243,"95":0.08741,"98":0.00486,"99":0.00971,"102":0.27436,"103":0.07041,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 85 86 87 88 89 90 91 92 93 94 96 97 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00728,"13":0.00243,"16":0.00486,"17":0.00971,"18":0.017,"84":0.00728,"85":0.00243,"89":0.00971,"90":0.00971,"92":0.00728,"100":0.01457,"102":0.00971,"105":0.02671,"109":0.08741,"110":0.00243,"111":0.00486,"113":0.00243,"114":0.03156,"115":0.01942,"116":0.02671,"117":0.55358,"118":0.51716,_:"14 15 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 103 104 106 107 108 112 119"},E:{"14":0.00486,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 17.2","5.1":0.04128,"12.1":0.00971,"13.1":0.00486,"14.1":0.00243,"15.1":12.4265,"15.6":0.00243,"16.4":0.00243,"16.5":0.00243,"16.6":0.00243,"17.0":0.02671,"17.1":0.05584},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00059,"5.0-5.1":0.00059,"6.0-6.1":0.00176,"7.0-7.1":0.00411,"8.1-8.4":0.00059,"9.0-9.2":0.00411,"9.3":0.0141,"10.0-10.2":0.00059,"10.3":0.02057,"11.0-11.2":0.0188,"11.3-11.4":0.00646,"12.0-12.1":0.00529,"12.2-12.5":0.09343,"13.0-13.1":0.00294,"13.2":0.01586,"13.3":0.00588,"13.4-13.7":0.0188,"14.0-14.4":0.05171,"14.5-14.8":0.08344,"15.0-15.1":0.0329,"15.2-15.3":0.03761,"15.4":0.04172,"15.5":0.05935,"15.6-15.7":0.41072,"16.0":0.1516,"16.1":0.29027,"16.2":0.14161,"16.3":0.26265,"16.4":0.05641,"16.5":0.15042,"16.6-16.7":2.81748,"17.0":1.0036,"17.1":0.06052,"17.2":0.00176},P:{"4":0.07142,"20":0.03061,"21":0.11223,"22":0.36728,"23":0.07142,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 15.0 17.0","7.2-7.4":0.05101,"9.2":0.06121,"11.1-11.2":0.0102,"13.0":0.0102,"14.0":0.0102,"16.0":0.03061,"18.0":0.11223,"19.0":0.03061},I:{"0":0.03767,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"11":0.11412,_:"6 7 8 9 10 5.5"},K:{"0":2.77168,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.03029,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.04543},Q:{"13.1":0.02272},O:{"0":0.72691},H:{"0":0.56},L:{"0":68.82841}};
      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 3d99f1bfb9bdf5..ed088ac43ef73f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NF.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NF.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.04645,"116":0.04645,"117":0.27579,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.50512,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":2.11629,"117":0.36868,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":1.33538,"117":2.66786},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.13934,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0.22934,"16.5":0,"16.6":0.0929,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":3.83209,"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.57455,"15.5":0,"15.6-15.7":4.98647,"16.0":0.76431,"16.1":21.65897,"16.2":0.18976,"16.3":0.95934,"16.4":0,"16.5":0.57455,"16.6":19.16574,"17.0":0,"17.1":0},P:{"4":0,"20":0,"21":0.66737,"22":9.39617,"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,"19.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.04645,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":26.20603},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0}};
      +module.exports={C:{"102":0.18782,"115":0.18782,"118":0.93038,"119":0.18782,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 106 107 108 109 110 111 112 113 114 116 117 120 121 122 3.5 3.6"},D:{"109":5.94922,"117":4.08845,"118":2.60333,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 119 120 121 122"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.74256,"117":7.62216,"118":15.98688,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 119"},E:{"14":0.5591,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 17.0 17.1 17.2","13.1":0.5591,"16.5":0.18782,"16.6":2.23205},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00163,"5.0-5.1":0.00163,"6.0-6.1":0.00489,"7.0-7.1":0.01141,"8.1-8.4":0.00163,"9.0-9.2":0.01141,"9.3":0.0391,"10.0-10.2":0.00163,"10.3":0.05703,"11.0-11.2":0.05214,"11.3-11.4":0.01792,"12.0-12.1":0.01466,"12.2-12.5":0.25906,"13.0-13.1":0.00815,"13.2":0.04399,"13.3":0.01629,"13.4-13.7":0.05214,"14.0-14.4":0.14338,"14.5-14.8":0.23137,"15.0-15.1":0.09124,"15.2-15.3":0.10428,"15.4":0.11568,"15.5":0.16456,"15.6-15.7":1.13891,"16.0":0.42037,"16.1":0.80489,"16.2":0.39267,"16.3":0.72831,"16.4":0.15642,"16.5":0.41711,"16.6-16.7":7.81267,"17.0":2.78291,"17.1":0.16782,"17.2":0.00489},P:{"22":6.23181,_:"4 20 21 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 19.0","18.0":0.20556},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{"11":1.48512,_:"6 7 8 9 10 5.5"},K:{"0":0.20275,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.60262},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":32.78387}};
      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 485f6dfe0e62de..b681effd1b4506 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00166,"44":0,"45":0,"46":0,"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.00166,"69":0,"70":0,"71":0,"72":0.00166,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00166,"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.00166,"100":0,"101":0.00166,"102":0.00331,"103":0,"104":0,"105":0,"106":0.00166,"107":0.00166,"108":0.00166,"109":0.00166,"110":0.00166,"111":0.00166,"112":0.00331,"113":0.00331,"114":0.00331,"115":0.10102,"116":0.01325,"117":0.0679,"118":0.00662,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00166,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00166,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00166,"60":0,"61":0,"62":0.00166,"63":0.00166,"64":0.00166,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00331,"71":0,"72":0.00166,"73":0,"74":0.00331,"75":0.00166,"76":0.00331,"77":0.00166,"78":0,"79":0.00331,"80":0.00331,"81":0.00828,"83":0,"84":0,"85":0.00166,"86":0.00166,"87":0.00331,"88":0.00166,"89":0.00166,"90":0.00166,"91":0.00166,"92":0.00166,"93":0.04802,"94":0.00166,"95":0.00331,"96":0.00166,"97":0.00166,"98":0,"99":0.00166,"100":0.00166,"101":0.00166,"102":0.00166,"103":0.00662,"104":0.00166,"105":0.00497,"106":0.00331,"107":0.00331,"108":0.00497,"109":0.14076,"110":0.00331,"111":0.00662,"112":0.00662,"113":0.00662,"114":0.02484,"115":0.03146,"116":0.61769,"117":0.13579,"118":0.00166,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.0149,"25":0,"26":0.00828,"27":0.01822,"28":0.01656,"29":0.00166,"30":0.01159,"31":0.00662,"32":0.01656,"33":0.00662,"34":0,"35":0.00166,"36":0.00166,"37":0.00497,"38":0.00828,"39":0.00166,"40":0,"41":0.00166,"42":0.01325,"43":0,"44":0.00166,"45":0.00166,"46":0.00828,"47":0.00497,"48":0,"49":0,"50":0.01159,"51":0.00662,"52":0,"53":0.00166,"54":0.00828,"55":0.00662,"56":0.00331,"57":0.00994,"58":0.02153,"60":0.13745,"62":0.00166,"63":0.1242,"64":0.02484,"65":0.01325,"66":0.09274,"67":0.09936,"68":0.06624,"69":0.3577,"70":0.23018,"71":0.45374,"72":0.91908,"73":0.13579,"74":0.00994,"75":0.00497,"76":0.00994,"77":0.05962,"78":0.00331,"79":0.00166,"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.00497,"96":0,"97":0,"98":0,"99":0,"100":0.00662,"101":0.02153,"102":0.01822,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01159},B:{"12":0.00166,"13":0,"14":0,"15":0.00166,"16":0,"17":0,"18":0.00331,"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.00166,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00331,"110":0,"111":0,"112":0.00166,"113":0.00166,"114":0.00497,"115":0.00828,"116":0.06458,"117":0.0414},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00166,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00166,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00166,"14.1":0.00166,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00166,"15.6":0.00497,"16.0":0,"16.1":0.00166,"16.2":0.00166,"16.3":0.00331,"16.4":0.00166,"16.5":0.00331,"16.6":0.00828,"17.0":0.00166,"17.1":0},G:{"8":0.00424,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00085,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00509,"8.1-8.4":0.00085,"9.0-9.2":0,"9.3":0.01782,"10.0-10.2":0.00085,"10.3":0.02631,"11.0-11.2":0.02631,"11.3-11.4":0.0017,"12.0-12.1":0.02546,"12.2-12.5":0.51423,"13.0-13.1":0.02037,"13.2":0.00594,"13.3":0.02715,"13.4-13.7":0.06704,"14.0-14.4":0.36743,"14.5-14.8":0.35216,"15.0-15.1":0.45144,"15.2-15.3":0.23081,"15.4":0.15868,"15.5":0.24015,"15.6-15.7":1.26013,"16.0":0.42344,"16.1":0.43532,"16.2":0.36828,"16.3":0.61861,"16.4":0.35895,"16.5":0.71874,"16.6":1.44003,"17.0":0.28597,"17.1":0},P:{"4":0.04089,"20":0.05111,"21":0.10221,"22":0.39863,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04089,"8.2":0,"9.2":0.02044,"10.1":0,"11.1-11.2":0.02044,"12.0":0,"13.0":0.01022,"14.0":0.01022,"15.0":0.01022,"16.0":0.03066,"17.0":0.02044,"18.0":0.02044,"19.0":0.04089},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.00096,"4.4":0,"4.4.3-4.4.4":0.06515},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00166,"5.5":0},S:{"2.5":0.03338,_:"3.0-3.1"},J:{"7":0,"10":0.00834},N:{"10":0,"11":0},L:{"0":55.02002},R:{_:"0"},M:{"0":0.23363},Q:{"13.1":0.00834},O:{"0":0.77599},H:{"0":26.29764}};
      +module.exports={C:{"34":0.00143,"43":0.01142,"45":0.00143,"47":0.00285,"49":0.00143,"52":0.00285,"57":0.00143,"58":0.00143,"65":0.00285,"66":0.00143,"68":0.00143,"72":0.00428,"77":0.00143,"78":0.00285,"80":0.00143,"89":0.00143,"91":0.00143,"92":0.00143,"93":0.00143,"94":0.00143,"95":0.00143,"96":0.00143,"99":0.00571,"100":0.00143,"101":0.00428,"102":0.00428,"103":0.00143,"104":0.00143,"105":0.00143,"106":0.00428,"107":0.00285,"108":0.00285,"109":0.00428,"110":0.00428,"111":0.00143,"112":0.00285,"113":0.00285,"114":0.00856,"115":0.56224,"116":0.00571,"117":0.02569,"118":0.36246,"119":0.06564,"120":0.00143,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 46 48 50 51 53 54 55 56 59 60 61 62 63 64 67 69 70 71 73 74 75 76 79 81 82 83 84 85 86 87 88 90 97 98 121 122 3.5 3.6"},D:{"11":0.00143,"37":0.00143,"41":0.00143,"43":0.00143,"47":0.01142,"49":0.00143,"50":0.00143,"54":0.00285,"55":0.00285,"56":0.00285,"57":0.00143,"58":0.00714,"59":0.00856,"61":0.00143,"62":0.01142,"63":0.01427,"64":0.01284,"65":0.00143,"66":0.00143,"67":0.00143,"68":0.00428,"69":0.00428,"70":0.0157,"71":0.00143,"72":0.00428,"73":0.00285,"74":0.01712,"75":0.00714,"76":0.00999,"77":0.01427,"78":0.00143,"79":0.01855,"80":0.0157,"81":0.00999,"83":0.00428,"84":0.00571,"85":0.00856,"86":0.00856,"87":0.01284,"88":0.00999,"89":0.00428,"90":0.00571,"91":0.0157,"92":0.00428,"93":0.26114,"94":0.00999,"95":0.01855,"96":0.00428,"97":0.00856,"98":0.00714,"99":0.00571,"100":0.00714,"101":0.00571,"102":0.01142,"103":0.02997,"104":0.00999,"105":0.02854,"106":0.01855,"107":0.0157,"108":0.02711,"109":0.83622,"110":0.0157,"111":0.03282,"112":0.02997,"113":0.02854,"114":0.07991,"115":0.06992,"116":0.31109,"117":2.27607,"118":2.16619,"119":0.00999,"120":0.00285,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 42 44 45 46 48 51 52 53 60 121 122"},F:{"33":0.00143,"42":0.00143,"53":0.00143,"58":0.00143,"72":0.00143,"73":0.00143,"74":0.00285,"75":0.00143,"76":0.00285,"77":0.01427,"78":0.00285,"79":0.00856,"83":0.00143,"84":0.00143,"85":0.00428,"94":0.00143,"95":0.03139,"99":0.00143,"100":0.02141,"101":0.00714,"102":0.1584,"103":0.08847,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 60 62 63 64 65 66 67 68 69 70 71 80 81 82 86 87 88 89 90 91 92 93 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00856,"13":0.00143,"14":0.00143,"15":0.00143,"17":0.00143,"18":0.01712,"84":0.00285,"89":0.00285,"90":0.00428,"92":0.01427,"100":0.00285,"106":0.00143,"107":0.00285,"108":0.00285,"109":0.01142,"110":0.00285,"111":0.00285,"112":0.00285,"113":0.00285,"114":0.00999,"115":0.01427,"116":0.02711,"117":0.34962,"118":0.31679,"119":0.00143,_:"16 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"11":0.00143,"13":0.00285,"14":0.00999,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.00856,"11.1":0.00143,"12.1":0.00285,"13.1":0.01427,"14.1":0.01427,"15.1":0.00714,"15.2-15.3":0.00143,"15.4":0.00428,"15.5":0.00428,"15.6":0.03282,"16.0":0.00428,"16.1":0.00714,"16.2":0.00571,"16.3":0.00999,"16.4":0.00428,"16.5":0.01712,"16.6":0.03282,"17.0":0.03139,"17.1":0.00285},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00068,"5.0-5.1":0.00068,"6.0-6.1":0.00203,"7.0-7.1":0.00475,"8.1-8.4":0.00068,"9.0-9.2":0.00475,"9.3":0.01627,"10.0-10.2":0.00068,"10.3":0.02373,"11.0-11.2":0.0217,"11.3-11.4":0.00746,"12.0-12.1":0.0061,"12.2-12.5":0.10781,"13.0-13.1":0.00339,"13.2":0.01831,"13.3":0.00678,"13.4-13.7":0.0217,"14.0-14.4":0.05967,"14.5-14.8":0.09628,"15.0-15.1":0.03797,"15.2-15.3":0.04339,"15.4":0.04814,"15.5":0.06848,"15.6-15.7":0.47395,"16.0":0.17494,"16.1":0.33495,"16.2":0.16341,"16.3":0.30309,"16.4":0.06509,"16.5":0.17358,"16.6-16.7":3.25123,"17.0":1.1581,"17.1":0.06984,"17.2":0.00203},P:{"4":0.04056,"20":0.03042,"21":0.08112,"22":0.42588,"23":0.04056,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.04056,"9.2":0.02028,"11.1-11.2":0.02028,"13.0":0.01014,"14.0":0.01014,"15.0":0.01014,"16.0":0.03042,"17.0":0.02028,"18.0":0.02028,"19.0":0.03042},I:{"0":0.05117,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.00304,"9":0.00152,"10":0.00152,"11":0.01674,_:"6 7 5.5"},K:{"0":23.54474,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.03429,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.22287},Q:{"13.1":0.00857},O:{"0":0.73719},H:{"0":4.7},L:{"0":53.20959}};
      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 20595375b6a998..25d02f12eb0068 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00375,"99":0,"100":0,"101":0,"102":0.00375,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00375,"111":0.00375,"112":0.0075,"113":0.0075,"114":0.0075,"115":0.09755,"116":0.03377,"117":0.55154,"118":0.06003,"119":0.00375,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00375,"39":0,"40":0,"41":0.00375,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.09755,"50":0,"51":0,"52":0,"53":0.0075,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00375,"66":0.00375,"67":0,"68":0.00375,"69":0.00375,"70":0.00375,"71":0,"72":0.00375,"73":0.00375,"74":0,"75":0.00375,"76":0.00375,"77":0,"78":0,"79":0.03377,"80":0.00375,"81":0.0075,"83":0.0075,"84":0.00375,"85":0.00375,"86":0.00375,"87":0.01126,"88":0.01126,"89":0.0075,"90":0.05628,"91":0.32642,"92":0.00375,"93":0.0075,"94":0.00375,"95":0.00375,"96":0.0075,"97":0.00375,"98":0.00375,"99":0.01876,"100":0.00375,"101":0.00375,"102":0.0075,"103":0.02626,"104":0.0075,"105":0.03377,"106":0.01501,"107":0.0075,"108":0.0075,"109":0.58156,"110":0.0075,"111":0.01126,"112":0.01501,"113":0.02251,"114":0.07504,"115":0.16884,"116":5.99194,"117":1.3995,"118":0.00375,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00375,"29":0.00375,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.03752,"70":0.00375,"71":0.01126,"72":0.03752,"73":0.0075,"74":0,"75":0,"76":0,"77":0.01126,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.04127,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04127,"96":0,"97":0,"98":0,"99":0.00375,"100":0.07129,"101":0.22137,"102":0.21762,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00375,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.06378,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01126,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0075,"104":0.00375,"105":0,"106":0,"107":0,"108":0,"109":0.01876,"110":0.00375,"111":0,"112":0.00375,"113":0.00375,"114":0.02626,"115":0.03002,"116":0.79542,"117":0.59657},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00375,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00375,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00375,"14.1":0.06378,"15.1":0,"15.2-15.3":0,"15.4":0.00375,"15.5":0.00375,"15.6":0.03002,"16.0":0.0075,"16.1":0.01126,"16.2":0.0075,"16.3":0.01126,"16.4":0.00375,"16.5":0.04127,"16.6":0.23262,"17.0":0.01501,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00302,"6.0-6.1":0,"7.0-7.1":0.0242,"8.1-8.4":0,"9.0-9.2":0.00504,"9.3":0.04738,"10.0-10.2":0,"10.3":0.01916,"11.0-11.2":0.00504,"11.3-11.4":0.00302,"12.0-12.1":0.00403,"12.2-12.5":0.16635,"13.0-13.1":0.00403,"13.2":0.00403,"13.3":0.96583,"13.4-13.7":0.00907,"14.0-14.4":0.05343,"14.5-14.8":0.0867,"15.0-15.1":0.03932,"15.2-15.3":0.08166,"15.4":0.04033,"15.5":0.0615,"15.6-15.7":0.86199,"16.0":0.32463,"16.1":0.2712,"16.2":0.16635,"16.3":0.35588,"16.4":0.10787,"16.5":0.34984,"16.6":5.15882,"17.0":0.73093,"17.1":0},P:{"4":0.2048,"20":0.13312,"21":0.23551,"22":2.24251,"5.0-5.4":0,"6.2-6.4":0.01024,"7.2-7.4":0.29695,"8.2":0,"9.2":0.03072,"10.1":0,"11.1-11.2":0.09216,"12.0":0,"13.0":0.02048,"14.0":0.03072,"15.0":0.03072,"16.0":0.1024,"17.0":0.04096,"18.0":0.0512,"19.0":0.16384},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01073,"4.2-4.3":0.01073,"4.4":0,"4.4.3-4.4.4":0.18235},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01501,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":70.89942},R:{_:"0"},M:{"0":0.09997},Q:{"13.1":0},O:{"0":0.18744},H:{"0":0.49688}};
      +module.exports={C:{"52":0.00363,"66":0.00363,"78":0.00363,"98":0.1089,"102":0.00363,"112":0.00363,"113":0.01089,"114":0.01452,"115":0.26862,"116":0.01452,"117":0.06534,"118":1.1979,"119":0.29766,"121":0.00363,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 103 104 105 106 107 108 109 110 111 120 122 3.5 3.6"},D:{"11":0.00363,"38":0.00363,"49":0.00726,"53":0.01452,"58":0.00363,"63":0.00363,"65":0.00363,"66":0.00363,"68":0.00363,"69":0.00726,"70":0.01089,"73":0.00726,"75":0.01089,"76":0.01089,"77":0.00363,"79":0.07986,"80":0.00363,"81":0.00363,"83":0.02904,"84":0.00363,"85":0.00363,"86":0.00726,"87":0.02541,"88":0.01815,"89":0.00363,"90":0.00363,"91":2.76969,"93":0.01815,"94":0.00726,"95":0.00726,"96":0.01452,"97":0.01452,"98":0.00726,"99":0.05808,"100":0.01089,"101":0.00363,"102":0.00363,"103":0.08712,"104":0.01452,"105":0.03993,"106":0.01815,"107":0.02541,"108":0.04356,"109":1.49919,"110":0.01452,"111":0.02541,"112":0.02178,"113":0.05082,"114":0.12705,"115":0.05808,"116":0.70059,"117":8.78097,"118":8.97336,"119":0.00726,"120":0.00726,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 62 64 67 71 72 74 78 92 121 122"},F:{"28":0.00363,"78":0.00363,"87":0.00363,"95":0.05082,"97":0.00726,"100":0.00363,"102":1.29228,"103":0.18876,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 96 98 99 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00363,"18":0.00726,"84":0.00726,"85":0.00363,"92":0.0363,"100":0.00363,"104":0.01452,"107":0.00363,"108":0.00363,"109":0.04356,"110":0.01089,"111":0.00726,"112":0.01089,"113":0.00363,"114":0.03267,"115":0.0363,"116":0.10164,"117":2.26149,"118":2.19615,"119":0.00363,_:"12 13 15 16 17 79 80 81 83 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 105 106"},E:{"14":0.00363,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.2","5.1":0.01815,"13.1":0.00726,"14.1":0.02178,"15.1":0.00363,"15.2-15.3":0.00363,"15.4":0.00363,"15.5":0.01452,"15.6":0.06171,"16.0":0.00363,"16.1":0.01089,"16.2":0.02904,"16.3":0.04356,"16.4":0.01452,"16.5":0.1089,"16.6":0.42471,"17.0":0.08712,"17.1":0.00726},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00055,"5.0-5.1":0.00055,"6.0-6.1":0.00166,"7.0-7.1":0.00388,"8.1-8.4":0.00055,"9.0-9.2":0.00388,"9.3":0.01332,"10.0-10.2":0.00055,"10.3":0.01942,"11.0-11.2":0.01776,"11.3-11.4":0.0061,"12.0-12.1":0.00499,"12.2-12.5":0.08823,"13.0-13.1":0.00277,"13.2":0.01498,"13.3":0.00555,"13.4-13.7":0.01776,"14.0-14.4":0.04883,"14.5-14.8":0.0788,"15.0-15.1":0.03108,"15.2-15.3":0.03551,"15.4":0.0394,"15.5":0.05605,"15.6-15.7":0.38788,"16.0":0.14317,"16.1":0.27413,"16.2":0.13373,"16.3":0.24805,"16.4":0.05327,"16.5":0.14206,"16.6-16.7":2.66081,"17.0":0.94779,"17.1":0.05716,"17.2":0.00166},P:{"4":0.21573,"20":0.113,"21":0.2671,"22":1.99297,"23":0.31846,_:"5.0-5.4 10.1 12.0","6.2-6.4":0.02055,"7.2-7.4":0.30819,"8.2":0.01027,"9.2":0.03082,"11.1-11.2":0.07191,"13.0":0.02055,"14.0":0.03082,"15.0":0.01027,"16.0":0.10273,"17.0":0.04109,"18.0":0.06164,"19.0":0.17464},I:{"0":0.06339,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00019},A:{"11":0.02904,_:"6 7 8 9 10 5.5"},K:{"0":0.50331,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00637,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.13379},Q:{_:"13.1"},O:{"0":0.14653},H:{"0":0},L:{"0":56.54264}};
      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 e375c51c5f6611..cb56d796fea0cc 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00495,"39":0,"40":0,"41":0,"42":0,"43":0.00495,"44":0.01484,"45":0.00495,"46":0,"47":0,"48":0.01484,"49":0,"50":0,"51":0,"52":0.00495,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00495,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0099,"79":0,"80":0,"81":0.0099,"82":0,"83":0.00495,"84":0,"85":0,"86":0,"87":0,"88":0.00495,"89":0,"90":0,"91":0.00495,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.08412,"103":0.00495,"104":0.00495,"105":0.00495,"106":0.00495,"107":0.00495,"108":0.00495,"109":0.00495,"110":0.01484,"111":0.00495,"112":0.0099,"113":0.02474,"114":0.0099,"115":0.13854,"116":0.07917,"117":1.2469,"118":0.1138,"119":0.00495,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00495,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00495,"46":0,"47":0.00495,"48":0.03464,"49":0.01484,"50":0,"51":0,"52":0.01484,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00495,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00495,"69":0,"70":0.00495,"71":0.00495,"72":0.02474,"73":0,"74":0.00495,"75":0,"76":0.00495,"77":0.01484,"78":0.0099,"79":0.01484,"80":0.01979,"81":0.00495,"83":0.00495,"84":0.00495,"85":0.16328,"86":0.03958,"87":0.04948,"88":0.00495,"89":0.0099,"90":0.0099,"91":0.00495,"92":0.0099,"93":0.01979,"94":0.00495,"95":0.00495,"96":0.00495,"97":0.00495,"98":0.00495,"99":0.0099,"100":0.03464,"101":0.05938,"102":0.04453,"103":0.08906,"104":0.05443,"105":0.05443,"106":0.06432,"107":0.02474,"108":0.06927,"109":0.44532,"110":0.02474,"111":0.03464,"112":0.05443,"113":0.09401,"114":0.30183,"115":0.35131,"116":9.10927,"117":2.78078,"118":0.00495,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.02969,"73":0.00495,"74":0,"75":0,"76":0,"77":0.02474,"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.01484,"96":0,"97":0,"98":0,"99":0.00495,"100":0.05938,"101":0.17813,"102":0.28698,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00495,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00495,"104":0,"105":0,"106":0.00495,"107":0.00495,"108":0.00495,"109":0.05938,"110":0.00495,"111":0.00495,"112":0.00495,"113":0.01484,"114":0.04453,"115":0.10886,"116":2.05837,"117":1.78623},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00495,"9":0.00495,"10":0,"11":0,"12":0,"13":0.00495,"14":0.02969,"15":0.0099,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01484,"10.1":0,"11.1":0,"12.1":0.02474,"13.1":0.05443,"14.1":0.09401,"15.1":0.01484,"15.2-15.3":0.01484,"15.4":0.02474,"15.5":0.03464,"15.6":0.26224,"16.0":0.02969,"16.1":0.06432,"16.2":0.06927,"16.3":0.16328,"16.4":0.06927,"16.5":0.20287,"16.6":1.50419,"17.0":0.08906,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00603,"8.1-8.4":0,"9.0-9.2":0.04224,"9.3":0.0513,"10.0-10.2":0,"10.3":0.0694,"11.0-11.2":0.00302,"11.3-11.4":0.02716,"12.0-12.1":0.00603,"12.2-12.5":0.3289,"13.0-13.1":0.00603,"13.2":0.00603,"13.3":0.1207,"13.4-13.7":0.02716,"14.0-14.4":0.08751,"14.5-14.8":0.21726,"15.0-15.1":0.07242,"15.2-15.3":0.10561,"15.4":0.11768,"15.5":0.20217,"15.6-15.7":1.56907,"16.0":0.92636,"16.1":1.71391,"16.2":0.7785,"16.3":1.57812,"16.4":0.24743,"16.5":0.85696,"16.6":18.42152,"17.0":2.18765,"17.1":0.00302},P:{"4":0.02059,"20":0.06177,"21":0.15443,"22":4.49893,"5.0-5.4":0.0103,"6.2-6.4":0,"7.2-7.4":0.0103,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.0103,"14.0":0.0103,"15.0":0.0103,"16.0":0.02059,"17.0":0.02059,"18.0":0.02059,"19.0":0.04118},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.03685,"2.3":0,"4.1":0.03685,"4.2-4.3":0.01228,"4.4":0,"4.4.3-4.4.4":0.0737},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.02813,"10":0,"11":0.10547,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":36.22443},R:{_:"0"},M:{"0":0.56582},Q:{"13.1":0.00505},O:{"0":0.44458},H:{"0":0.4209}};
      +module.exports={C:{"38":0.00497,"43":0.00497,"44":0.02979,"45":0.00497,"48":0.14399,"52":0.00993,"68":0.00497,"77":0.00497,"78":0.01986,"81":0.0149,"83":0.00497,"85":0.00993,"88":0.00497,"91":0.00497,"102":0.04469,"103":0.00497,"104":0.00497,"105":0.00497,"106":0.00497,"107":0.00497,"108":0.00497,"109":0.00993,"110":0.00993,"111":0.00497,"112":0.00993,"113":0.03972,"114":0.00993,"115":0.28797,"116":0.01986,"117":0.12413,"118":1.95621,"119":0.40713,"120":0.00497,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 82 84 86 87 89 90 92 93 94 95 96 97 98 99 100 101 121 122 3.5 3.6"},D:{"38":0.00993,"41":0.00497,"45":0.00993,"47":0.00497,"48":0.05958,"49":0.02483,"52":0.01986,"61":0.00497,"63":0.00497,"65":0.00497,"66":0.00993,"68":0.0149,"69":0.00993,"70":0.00993,"71":0.00993,"72":0.02979,"73":0.00497,"74":0.0149,"75":0.00993,"76":0.00993,"77":0.00993,"78":0.01986,"79":0.05958,"80":0.03476,"81":0.01986,"83":0.03476,"84":0.01986,"85":0.37734,"86":0.08937,"87":0.33266,"88":0.02483,"89":0.01986,"90":0.02483,"91":0.00993,"92":0.0149,"93":0.02979,"94":0.00993,"95":0.00497,"96":0.00993,"97":0.00993,"98":0.00993,"99":0.02483,"100":0.06951,"101":0.11916,"102":0.07448,"103":0.16881,"104":0.10923,"105":0.03476,"106":0.12909,"107":0.05462,"108":0.14895,"109":0.84405,"110":0.04469,"111":0.06455,"112":0.0993,"113":0.14399,"114":0.37734,"115":0.17874,"116":1.68314,"117":12.86432,"118":11.54363,"119":0.0149,"120":0.00497,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 46 50 51 53 54 55 56 57 58 59 60 62 64 67 121 122"},F:{"46":0.00497,"85":0.00497,"92":0.00497,"95":0.03476,"99":0.00497,"100":0.00497,"101":0.00993,"102":0.94832,"103":0.20853,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"80":0.00497,"81":0.00497,"83":0.00497,"84":0.00497,"85":0.00497,"86":0.00497,"88":0.00497,"89":0.00497,"92":0.00993,"103":0.00497,"106":0.00497,"107":0.00993,"108":0.00993,"109":0.08937,"110":0.00993,"111":0.00993,"112":0.00993,"113":0.0149,"114":0.04469,"115":0.04469,"116":0.15888,"117":3.81809,"118":3.53508,"119":0.00993,_:"12 13 14 15 16 17 18 79 87 90 91 93 94 95 96 97 98 99 100 101 102 104 105"},E:{"9":0.00993,"13":0.00497,"14":0.05462,"15":0.04469,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.00497,"9.1":0.10923,"12.1":0.04469,"13.1":0.10923,"14.1":0.18867,"15.1":0.03476,"15.2-15.3":0.02483,"15.4":0.05462,"15.5":0.07448,"15.6":0.51636,"16.0":0.06455,"16.1":0.12413,"16.2":0.13902,"16.3":0.30287,"16.4":0.13406,"16.5":0.3128,"16.6":2.20943,"17.0":0.97314,"17.1":0.07448},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00206,"5.0-5.1":0.00206,"6.0-6.1":0.00618,"7.0-7.1":0.01442,"8.1-8.4":0.00206,"9.0-9.2":0.01442,"9.3":0.04944,"10.0-10.2":0.00206,"10.3":0.07209,"11.0-11.2":0.06591,"11.3-11.4":0.02266,"12.0-12.1":0.01854,"12.2-12.5":0.32751,"13.0-13.1":0.0103,"13.2":0.05562,"13.3":0.0206,"13.4-13.7":0.06591,"14.0-14.4":0.18126,"14.5-14.8":0.29249,"15.0-15.1":0.11535,"15.2-15.3":0.13183,"15.4":0.14625,"15.5":0.20804,"15.6-15.7":1.43981,"16.0":0.53143,"16.1":1.01755,"16.2":0.49642,"16.3":0.92074,"16.4":0.19774,"16.5":0.52731,"16.6-16.7":9.87683,"17.0":3.51817,"17.1":0.21216,"17.2":0.00618},P:{"4":0.02103,"20":0.04206,"21":0.09463,"22":3.55382,"23":0.82011,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0","7.2-7.4":0.01051,"13.0":0.01051,"14.0":0.01051,"16.0":0.02103,"17.0":0.02103,"18.0":0.01051,"19.0":0.03154},I:{"0":0.05009,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"9":0.03298,"11":0.12093,_:"6 7 8 10 5.5"},K:{"0":0.38273,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.50854},Q:{"13.1":0.00504},O:{"0":0.38266},H:{"0":0.01},L:{"0":24.14722}};
      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 f07dfcc57cec92..bf93cf0c9e8817 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.02769,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00692,"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.06923,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00692,"109":0.00692,"110":0,"111":0,"112":0.00692,"113":0.02769,"114":0.00692,"115":0.11769,"116":0.06231,"117":22.98436,"118":1.7169,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01385,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.11077,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00692,"79":0.01385,"80":0,"81":0.00692,"83":0,"84":0,"85":1.37768,"86":0.01385,"87":0.01385,"88":0,"89":0.00692,"90":0.01385,"91":0,"92":0,"93":0.04154,"94":0,"95":0,"96":0.00692,"97":0.00692,"98":0.00692,"99":0.00692,"100":0.01385,"101":0.02077,"102":0.01385,"103":0.08308,"104":0.01385,"105":0.01385,"106":0.01385,"107":0.01385,"108":0.02077,"109":0.22846,"110":0.03462,"111":0.02769,"112":0.08308,"113":0.10385,"114":0.24923,"115":0.61615,"116":8.71606,"117":2.7692,"118":0.00692,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00692,"73":0,"74":0,"75":0,"76":0,"77":0.02077,"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.01385,"96":0,"97":0,"98":0,"99":0.00692,"100":0.11769,"101":0.27,"102":0.51923,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01385,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.02769,"110":0,"111":0,"112":0.01385,"113":0.01385,"114":0.02769,"115":0.09,"116":1.42614,"117":1.36383},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00692,"14":0.03462,"15":0.00692,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02077,"12.1":0.01385,"13.1":0.05538,"14.1":0.15923,"15.1":0.02077,"15.2-15.3":0.02077,"15.4":0.06923,"15.5":0.06231,"15.6":0.29769,"16.0":0.02769,"16.1":0.10385,"16.2":0.07615,"16.3":0.24923,"16.4":0.15923,"16.5":0.23538,"16.6":1.78613,"17.0":0.13846,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03529,"10.0-10.2":0,"10.3":0.04491,"11.0-11.2":0,"11.3-11.4":0.17644,"12.0-12.1":0.00642,"12.2-12.5":0.1989,"13.0-13.1":0,"13.2":0,"13.3":0.07699,"13.4-13.7":0.00642,"14.0-14.4":0.05133,"14.5-14.8":0.19248,"15.0-15.1":0.0385,"15.2-15.3":0.0802,"15.4":0.08341,"15.5":0.22456,"15.6-15.7":1.29606,"16.0":1.03941,"16.1":1.87672,"16.2":0.83089,"16.3":1.72915,"16.4":0.17003,"16.5":0.74106,"16.6":20.89414,"17.0":1.87993,"17.1":0.00321},P:{"4":0.02059,"20":0.02059,"21":0.05146,"22":1.935,"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.01029,"18.0":0.01029,"19.0":0.01029},I:{"0":0,"3":0,"4":0.0124,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00207,"4.2-4.3":0.00413,"4.4":0,"4.4.3-4.4.4":0.04755},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03462,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":16.52096},R:{_:"0"},M:{"0":0.2677},Q:{"13.1":0},O:{"0":0.02154},H:{"0":0.14274}};
      +module.exports={C:{"52":0.00672,"59":0.02686,"78":0.01343,"102":0.03358,"108":0.00672,"113":0.00672,"115":0.2082,"116":0.00672,"117":0.05373,"118":27.96542,"119":3.60649,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 109 110 111 112 114 120 121 122 3.5 3.6"},D:{"49":0.01343,"66":0.12089,"79":0.01343,"85":3.15652,"86":0.01343,"87":0.02015,"89":0.01343,"90":0.01343,"93":0.00672,"96":0.00672,"97":0.00672,"98":0.01343,"99":0.00672,"100":0.00672,"101":0.02015,"102":0.01343,"103":0.10074,"104":0.01343,"105":0.01343,"106":0.01343,"107":0.03358,"108":0.03358,"109":0.32237,"110":0.03358,"111":0.02686,"112":0.06044,"113":0.08059,"114":0.18805,"115":0.2082,"116":1.90734,"117":9.17406,"118":8.18009,"119":0.00672,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 88 91 92 94 95 120 121 122"},F:{"46":0.00672,"90":0.00672,"95":0.02015,"98":0.00672,"99":0.00672,"100":0.02686,"101":0.02015,"102":1.4708,"103":0.1679,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01343,"86":0.00672,"107":0.00672,"109":0.03358,"112":0.02015,"113":0.03358,"114":0.01343,"115":0.02015,"116":0.08059,"117":1.86033,"118":1.83347,"119":0.00672,_:"12 13 14 15 16 18 79 80 81 83 84 85 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111"},E:{"13":0.00672,"14":0.04701,"15":0.01343,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.02686,"12.1":0.01343,"13.1":0.06044,"14.1":0.22834,"15.1":0.03358,"15.2-15.3":0.03358,"15.4":0.10746,"15.5":0.10074,"15.6":0.42982,"16.0":0.03358,"16.1":0.15447,"16.2":0.12089,"16.3":0.32908,"16.4":0.22163,"16.5":0.30222,"16.6":1.8469,"17.0":0.97382,"17.1":0.06044},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.002,"5.0-5.1":0.002,"6.0-6.1":0.00599,"7.0-7.1":0.01397,"8.1-8.4":0.002,"9.0-9.2":0.01397,"9.3":0.04788,"10.0-10.2":0.002,"10.3":0.06983,"11.0-11.2":0.06384,"11.3-11.4":0.02195,"12.0-12.1":0.01796,"12.2-12.5":0.31721,"13.0-13.1":0.00998,"13.2":0.05387,"13.3":0.01995,"13.4-13.7":0.06384,"14.0-14.4":0.17556,"14.5-14.8":0.28329,"15.0-15.1":0.11172,"15.2-15.3":0.12768,"15.4":0.14165,"15.5":0.2015,"15.6-15.7":1.39453,"16.0":0.51472,"16.1":0.98554,"16.2":0.4808,"16.3":0.89178,"16.4":0.19152,"16.5":0.51073,"16.6-16.7":9.56617,"17.0":3.40751,"17.1":0.20549,"17.2":0.00599},P:{"4":0.02115,"20":0.02115,"21":0.03173,"22":1.5335,"23":0.33843,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","17.0":0.01058,"19.0":0.01058},I:{"0":0.02614,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"11":0.05373,_:"6 7 8 9 10 5.5"},K:{"0":0.13778,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.33497},Q:{_:"13.1"},O:{"0":0.0197},H:{"0":0.01},L:{"0":10.48712}};
      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 8a9e512594a1ba..cf1a1eb44e92a9 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0023,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.0023,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.0023,"111":0,"112":0,"113":0,"114":0.0023,"115":0.03907,"116":0.00919,"117":0.18154,"118":0.02068,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.0023,"42":0,"43":0,"44":0,"45":0,"46":0,"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.0023,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.0023,"75":0,"76":0,"77":0,"78":0,"79":0.0023,"80":0,"81":0.0023,"83":0,"84":0,"85":0,"86":0,"87":0.0023,"88":0.0023,"89":0,"90":0,"91":0,"92":0,"93":0.0023,"94":0,"95":0,"96":0.0023,"97":0,"98":0.0023,"99":0.0023,"100":0.0023,"101":0,"102":0.0023,"103":0.00919,"104":0.0023,"105":0.0023,"106":0.0046,"107":0.00689,"108":0.0046,"109":0.46649,"110":0.0023,"111":0.0023,"112":0.00919,"113":0.0046,"114":0.02298,"115":0.03447,"116":2.9897,"117":0.66642,"118":0.00689,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0023,"70":0.0023,"71":0.0046,"72":0.05745,"73":0.01609,"74":0,"75":0,"76":0,"77":0.00689,"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.0046,"96":0,"97":0,"98":0,"99":0,"100":0.0046,"101":0.03677,"102":0.02987,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.0023,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.0046,"110":0,"111":0,"112":0,"113":0.0023,"114":0.0023,"115":0.0046,"116":0.19533,"117":0.14018},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0023,"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.0023,"14.1":0.0046,"15.1":0,"15.2-15.3":0.0023,"15.4":0,"15.5":0.0023,"15.6":0.00919,"16.0":0,"16.1":0.0023,"16.2":0.0023,"16.3":0.00689,"16.4":0.0023,"16.5":0.00919,"16.6":0.03907,"17.0":0.0046,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00598,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01435,"10.0-10.2":0,"10.3":0.05382,"11.0-11.2":0.01076,"11.3-11.4":0.00239,"12.0-12.1":0.00837,"12.2-12.5":0.39226,"13.0-13.1":0.00359,"13.2":0.00359,"13.3":0.04066,"13.4-13.7":0.03468,"14.0-14.4":0.09328,"14.5-14.8":0.20809,"15.0-15.1":0.0287,"15.2-15.3":0.05023,"15.4":0.05262,"15.5":0.09209,"15.6-15.7":1.76277,"16.0":0.15786,"16.1":0.42335,"16.2":0.16982,"16.3":0.42335,"16.4":0.07773,"16.5":0.26908,"16.6":6.64927,"17.0":0.69124,"17.1":0.00239},P:{"4":0.06277,"20":0.02092,"21":0.04184,"22":0.46028,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03138,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01046,"14.0":0,"15.0":0,"16.0":0.01046,"17.0":0.04184,"18.0":0.01046,"19.0":0.01046},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07298},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0023,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.30468},R:{_:"0"},M:{"0":0.04621},Q:{"13.1":0},O:{"0":0.95505},H:{"0":0.52501}};
      +module.exports={C:{"52":0.00182,"65":0.00182,"88":0.00182,"89":0.00182,"91":0.00182,"100":0.00182,"103":0.00182,"105":0.00182,"107":0.00182,"109":0.00182,"110":0.00182,"111":0.00182,"112":0.00182,"113":0.00182,"114":0.00364,"115":0.15106,"116":0.00728,"117":0.0182,"118":0.59696,"119":0.12558,"120":0.00364,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 92 93 94 95 96 97 98 99 101 102 104 106 108 121 122 3.5 3.6"},D:{"49":0.00182,"62":0.00182,"63":0.00182,"64":0.00182,"65":0.00182,"69":0.00364,"72":0.00182,"73":0.00182,"74":0.00364,"75":0.00182,"76":0.00182,"77":0.00182,"78":0.00182,"79":0.00728,"81":0.00182,"83":0.00182,"86":0.00182,"87":0.00728,"88":0.00364,"89":0.00182,"91":0.00364,"92":0.00182,"93":0.00546,"94":0.00182,"95":0.00182,"96":0.00728,"97":0.00546,"98":0.00728,"99":0.01274,"100":0.00546,"101":0.00182,"102":0.01092,"103":0.03094,"104":0.00182,"105":0.00364,"106":0.02002,"107":0.01092,"108":0.01456,"109":1.56702,"110":0.00728,"111":0.01456,"112":0.02912,"113":0.01092,"114":0.03094,"115":0.04732,"116":0.32214,"117":7.40194,"118":5.02138,"119":0.0455,"120":0.00364,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 66 67 68 70 71 80 84 85 90 121 122"},F:{"42":0.00182,"79":0.00182,"85":0.00364,"95":0.01638,"101":0.00182,"102":0.18382,"103":0.06188,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00182,"92":0.00546,"100":0.00182,"107":0.00182,"108":0.00182,"109":0.01274,"110":0.00182,"111":0.00182,"112":0.00182,"113":0.00182,"114":0.00546,"115":0.00546,"116":0.01092,"117":0.6825,"118":0.43498,"119":0.00364,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106"},E:{"13":0.00182,"14":0.00546,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.00182,"12.1":0.00182,"13.1":0.01092,"14.1":0.01456,"15.1":0.00182,"15.2-15.3":0.00364,"15.4":0.00364,"15.5":0.00546,"15.6":0.03276,"16.0":0.00546,"16.1":0.01092,"16.2":0.00728,"16.3":0.01456,"16.4":0.01638,"16.5":0.0182,"16.6":0.10374,"17.0":0.07462,"17.1":0.00728},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00098,"5.0-5.1":0.00098,"6.0-6.1":0.00294,"7.0-7.1":0.00685,"8.1-8.4":0.00098,"9.0-9.2":0.00685,"9.3":0.0235,"10.0-10.2":0.00098,"10.3":0.03427,"11.0-11.2":0.03134,"11.3-11.4":0.01077,"12.0-12.1":0.00881,"12.2-12.5":0.1557,"13.0-13.1":0.0049,"13.2":0.02644,"13.3":0.00979,"13.4-13.7":0.03134,"14.0-14.4":0.08618,"14.5-14.8":0.13906,"15.0-15.1":0.05484,"15.2-15.3":0.06267,"15.4":0.06953,"15.5":0.09891,"15.6-15.7":0.68451,"16.0":0.25265,"16.1":0.48376,"16.2":0.236,"16.3":0.43773,"16.4":0.09401,"16.5":0.25069,"16.6-16.7":4.69558,"17.0":1.67259,"17.1":0.10086,"17.2":0.00294},P:{"4":0.0751,"20":0.01073,"21":0.03219,"22":0.36479,"23":0.06438,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","7.2-7.4":0.03219,"13.0":0.01073,"17.0":0.04292,"18.0":0.01073,"19.0":0.01073},I:{"0":0.0407,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"7":0.00218,"8":0.00218,"11":0.00655,_:"6 9 10 5.5"},K:{"0":0.59721,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.04091},Q:{_:"13.1"},O:{"0":0.88355},H:{"0":0},L:{"0":70.45371}};
      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 ba7610d5812062..d4baf97481e812 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0.00813,"117":0,"118":0.03793,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.05418,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00813,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.06773,"110":0,"111":0.02167,"112":0,"113":0,"114":0.01625,"115":0.07585,"116":3.84949,"117":0.47678,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00813,"71":0,"72":0.0298,"73":0,"74":0,"75":0,"76":0,"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.01625,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.02167,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.0298,"116":0.83979,"117":0.37113},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.40906,"15.1":0,"15.2-15.3":0.0298,"15.4":0,"15.5":0.01625,"15.6":0,"16.0":0,"16.1":0.01625,"16.2":0,"16.3":0.00813,"16.4":0.17338,"16.5":0,"16.6":0.0596,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.03281,"13.0-13.1":0,"13.2":0,"13.3":0.10095,"13.4-13.7":0.03281,"14.0-14.4":0.06814,"14.5-14.8":0,"15.0-15.1":0.03281,"15.2-15.3":1.28212,"15.4":0.20191,"15.5":0.13629,"15.6-15.7":1.01459,"16.0":0.13629,"16.1":0.5401,"16.2":0.23724,"16.3":1.2165,"16.4":0.60825,"16.5":0.40634,"16.6":18.81785,"17.0":0.20191,"17.1":0},P:{"4":0,"20":0.06069,"21":0.11127,"22":1.04193,"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.11127,"12.0":0,"13.0":0,"14.0":0,"15.0":0.06069,"16.0":0.34394,"17.0":0,"18.0":0,"19.0":0.20232},I:{"0":0,"3":0,"4":0,"2.1":0,"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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.99801},R:{_:"0"},M:{"0":0.02916},Q:{"13.1":0},O:{"0":0.28435},H:{"0":1.0492}};
      +module.exports={C:{"104":0.02737,"118":0.19158,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 112 113 114 115 116 117 119 120 121 122 3.5 3.6"},D:{"103":0.05474,"109":0.24632,"110":0.02737,"113":0.27369,"116":0.02737,"117":6.12153,"118":14.18018,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 111 112 114 115 119 120 121 122"},F:{"103":0.02737,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"90":0.02737,"116":0.19158,"117":1.11909,"118":2.81293,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 119"},E:{"14":0.24632,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.2 16.3 16.4 16.5 17.1 17.2","14.1":0.24632,"16.1":0.02737,"16.6":0.13685,"17.0":0.02737},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0005,"5.0-5.1":0.0005,"6.0-6.1":0.0015,"7.0-7.1":0.0035,"8.1-8.4":0.0005,"9.0-9.2":0.0035,"9.3":0.01201,"10.0-10.2":0.0005,"10.3":0.01751,"11.0-11.2":0.01601,"11.3-11.4":0.0055,"12.0-12.1":0.0045,"12.2-12.5":0.07956,"13.0-13.1":0.0025,"13.2":0.01351,"13.3":0.005,"13.4-13.7":0.01601,"14.0-14.4":0.04403,"14.5-14.8":0.07105,"15.0-15.1":0.02802,"15.2-15.3":0.03202,"15.4":0.03552,"15.5":0.05054,"15.6-15.7":0.34975,"16.0":0.12909,"16.1":0.24717,"16.2":0.12058,"16.3":0.22366,"16.4":0.04803,"16.5":0.12809,"16.6-16.7":2.39919,"17.0":0.8546,"17.1":0.05154,"17.2":0.0015},P:{"20":0.03096,"21":0.42316,"22":1.35206,"23":2.03325,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 13.0 15.0 16.0 17.0 18.0","11.1-11.2":0.68119,"14.0":0.03096,"19.0":0.34059},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.53584,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.73765},Q:{_:"13.1"},O:{"0":0.61935},H:{"0":0},L:{"0":62.11921}};
      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 d67a70f9491b36..d5b2b98f4e4a78 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0.06096,"118":0.00572,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0.02731,"117":0.02731,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0.00572},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0.02731,"16.3":0.02223,"16.4":0.0108,"16.5":0.01651,"16.6":0.18733,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0.09003,"15.4":0,"15.5":0,"15.6-15.7":0.09003,"16.0":0.18606,"16.1":0.92431,"16.2":0.18606,"16.3":49.75658,"16.4":0,"16.5":0.27609,"16.6":8.04868,"17.0":0.37212,"17.1":0},P:{"4":0,"20":0,"21":0,"22":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,"19.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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.93062},R:{_:"0"},M:{"0":0.69301},Q:{"13.1":0},O:{"0":0},H:{"0":0}};
      +module.exports={C:{"115":0.2723,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 3.5 3.6"},D:{"116":0.2723,"117":0.40747,"118":0.2723,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 119 120 121 122"},F:{"102":0.13517,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.5 16.4 17.2","15.2-15.3":6.12188,"15.4":0.13517,"15.6":0.40747,"16.0":0.95207,"16.1":0.2723,"16.2":0.13517,"16.3":0.13517,"16.5":0.2723,"16.6":7.21108,"17.0":1.49668,"17.1":0.67977},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00343,"5.0-5.1":0.00343,"6.0-6.1":0.0103,"7.0-7.1":0.02403,"8.1-8.4":0.00343,"9.0-9.2":0.02403,"9.3":0.08238,"10.0-10.2":0.00343,"10.3":0.12014,"11.0-11.2":0.10985,"11.3-11.4":0.03776,"12.0-12.1":0.03089,"12.2-12.5":0.5458,"13.0-13.1":0.01716,"13.2":0.09268,"13.3":0.03433,"13.4-13.7":0.10985,"14.0-14.4":0.30208,"14.5-14.8":0.48744,"15.0-15.1":0.19223,"15.2-15.3":0.21969,"15.4":0.24372,"15.5":0.3467,"15.6-15.7":2.39946,"16.0":0.88564,"16.1":1.69576,"16.2":0.82728,"16.3":1.53442,"16.4":0.32954,"16.5":0.87877,"16.6-16.7":16.45981,"17.0":5.86306,"17.1":0.35357,"17.2":0.0103},P:{_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{_:"0"},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":46.08297}};
      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 d496056b5e66d9..55d7d11aac5355 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.25281,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00538,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01076,"49":0,"50":0,"51":0,"52":0.01076,"53":0,"54":0.00538,"55":0,"56":0,"57":0,"58":0,"59":0.01614,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02152,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00538,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00538,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.03227,"103":0,"104":0.00538,"105":0,"106":0,"107":0,"108":0.00538,"109":0.00538,"110":0.00538,"111":0,"112":0.00538,"113":0.01076,"114":0.00538,"115":0.13985,"116":0.09144,"117":1.14035,"118":0.11296,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00538,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01076,"35":0,"36":0,"37":0,"38":0.05917,"39":0.01076,"40":0.01076,"41":0.01076,"42":0.01076,"43":0.01076,"44":0.01076,"45":0.01076,"46":0.01076,"47":0.00538,"48":0.01076,"49":0.03765,"50":0.00538,"51":0.01076,"52":0.01614,"53":0.01076,"54":0.01076,"55":0.01076,"56":0.01076,"57":0.00538,"58":0.01076,"59":0.02152,"60":0.01076,"61":0.00538,"62":0,"63":0,"64":0,"65":0.00538,"66":0.07531,"67":0,"68":0.00538,"69":0,"70":0.00538,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00538,"77":0,"78":0.00538,"79":0.05379,"80":0.00538,"81":0,"83":0.00538,"84":0,"85":0.00538,"86":0.00538,"87":0.0269,"88":0.04303,"89":0.01614,"90":0.04303,"91":0,"92":0.00538,"93":0.03227,"94":0.01076,"95":0.00538,"96":0.01076,"97":0.00538,"98":0.01076,"99":0.0269,"100":0,"101":0.01076,"102":0.00538,"103":0.16675,"104":0.01614,"105":0.01076,"106":0.01076,"107":0.04303,"108":0.03765,"109":0.50563,"110":0.03227,"111":0.04303,"112":0.04841,"113":0.12372,"114":0.47873,"115":0.64548,"116":11.49492,"117":2.84011,"118":0.01076,"119":0.00538,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00538,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01076,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01076,"73":0,"74":0,"75":0,"76":0,"77":0.03765,"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.01076,"96":0,"97":0,"98":0,"99":0.00538,"100":0.07531,"101":0.16675,"102":0.22054,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00538,"18":0.00538,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00538,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00538,"104":0,"105":0.00538,"106":0,"107":0,"108":0.00538,"109":0.03765,"110":0,"111":0.00538,"112":0.00538,"113":0.01614,"114":0.03227,"115":0.08606,"116":1.97947,"117":1.42544},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0269,"14":0.07531,"15":0.01076,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01614,"12.1":0.0269,"13.1":0.11834,"14.1":0.17213,"15.1":0.02152,"15.2-15.3":0.01614,"15.4":0.03765,"15.5":0.08606,"15.6":0.44108,"16.0":0.03765,"16.1":0.13448,"16.2":0.10758,"16.3":0.22592,"16.4":0.08069,"16.5":0.26895,"16.6":2.16236,"17.0":0.07531,"17.1":0},G:{"8":0.01414,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01696,"7.0-7.1":0.00283,"8.1-8.4":0.00283,"9.0-9.2":0,"9.3":0.07917,"10.0-10.2":0.00283,"10.3":0.16964,"11.0-11.2":0.25729,"11.3-11.4":0.14137,"12.0-12.1":0.01696,"12.2-12.5":0.69554,"13.0-13.1":0,"13.2":0,"13.3":0.03676,"13.4-13.7":0.03958,"14.0-14.4":0.14985,"14.5-14.8":0.32515,"15.0-15.1":0.13854,"15.2-15.3":0.14137,"15.4":0.16116,"15.5":0.21206,"15.6-15.7":1.88588,"16.0":0.62768,"16.1":1.50418,"16.2":0.66727,"16.3":1.35998,"16.4":0.17813,"16.5":0.557,"16.6":17.4027,"17.0":1.13945,"17.1":0.00565},P:{"4":0.17786,"20":0.06277,"21":0.14647,"22":2.43772,"5.0-5.4":0.02092,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01046,"12.0":0,"13.0":0.01046,"14.0":0.01046,"15.0":0.01046,"16.0":0.02092,"17.0":0.02092,"18.0":0.01046,"19.0":0.03139},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02441,"4.2-4.3":0.01221,"4.4":0,"4.4.3-4.4.4":0.06103},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01703,"9":0,"10":0,"11":0.08517,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.21258},R:{_:"0"},M:{"0":0.40203},Q:{"13.1":0.00924},O:{"0":0.06932},H:{"0":0.23624}};
      +module.exports={C:{"11":0.21941,"34":0.00522,"37":0.01045,"48":0.02612,"52":0.02612,"54":0.00522,"59":0.02612,"66":0.00522,"78":0.05224,"88":0.00522,"89":0.00522,"90":0.00522,"98":0.00522,"102":0.0209,"104":0.00522,"105":0.00522,"108":0.00522,"110":0.00522,"113":0.01567,"114":0.01045,"115":0.2612,"116":0.0209,"117":0.09926,"118":1.80228,"119":0.32389,"120":0.00522,_:"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 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 56 57 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 91 92 93 94 95 96 97 99 100 101 103 106 107 109 111 112 121 122 3.5 3.6"},D:{"26":0.00522,"34":0.01567,"38":0.08358,"39":0.0209,"40":0.0209,"41":0.0209,"42":0.0209,"43":0.0209,"44":0.0209,"45":0.0209,"46":0.0209,"47":0.0209,"48":0.0209,"49":0.05224,"50":0.0209,"51":0.02612,"52":0.03657,"53":0.03134,"54":0.0209,"55":0.0209,"56":0.0209,"57":0.0209,"58":0.0209,"59":0.04179,"60":0.0209,"61":0.01045,"65":0.01045,"66":0.1515,"67":0.00522,"68":0.00522,"69":0.00522,"70":0.00522,"71":0.00522,"73":0.00522,"74":0.00522,"75":0.00522,"76":0.01045,"77":0.00522,"78":0.00522,"79":0.09926,"80":0.00522,"81":0.00522,"83":0.01567,"85":0.01045,"86":0.01045,"87":0.05746,"88":0.01567,"89":0.0209,"90":0.08358,"91":0.00522,"92":0.0209,"93":0.06269,"94":0.0209,"95":0.01045,"96":0.00522,"97":0.01045,"98":0.01567,"99":0.03657,"100":0.00522,"101":0.01045,"102":0.01045,"103":0.30822,"104":0.02612,"105":0.0209,"106":0.01567,"107":0.07314,"108":0.07836,"109":0.82539,"110":0.04702,"111":0.06791,"112":0.07314,"113":0.13582,"114":0.36568,"115":0.35523,"116":2.27244,"117":14.06823,"118":12.41745,"119":0.02612,"120":0.01567,_:"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 62 63 64 72 84 121 122"},F:{"28":0.01045,"45":0.00522,"46":0.02612,"92":0.00522,"95":0.02612,"99":0.00522,"100":0.01045,"101":0.00522,"102":0.85674,"103":0.11493,_:"9 11 12 15 16 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 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00522,"17":0.01567,"18":0.00522,"92":0.00522,"103":0.00522,"104":0.00522,"105":0.01045,"108":0.00522,"109":0.08881,"110":0.00522,"111":0.01567,"112":0.00522,"113":0.02612,"114":0.02612,"115":0.02612,"116":0.09926,"117":3.17097,"118":3.01425,"119":0.00522,_:"12 13 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 106 107"},E:{"12":0.00522,"13":0.04702,"14":0.12015,"15":0.01567,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.03134,"12.1":0.02612,"13.1":0.20896,"14.1":0.29254,"15.1":0.03657,"15.2-15.3":0.04702,"15.4":0.06791,"15.5":0.1515,"15.6":0.86718,"16.0":0.08358,"16.1":0.22986,"16.2":0.17762,"16.3":0.37613,"16.4":0.14105,"16.5":0.44404,"16.6":3.37993,"17.0":0.83584,"17.1":0.07314},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00175,"5.0-5.1":0.00175,"6.0-6.1":0.00526,"7.0-7.1":0.01228,"8.1-8.4":0.00175,"9.0-9.2":0.01228,"9.3":0.0421,"10.0-10.2":0.00175,"10.3":0.0614,"11.0-11.2":0.05614,"11.3-11.4":0.0193,"12.0-12.1":0.01579,"12.2-12.5":0.27892,"13.0-13.1":0.00877,"13.2":0.04736,"13.3":0.01754,"13.4-13.7":0.05614,"14.0-14.4":0.15437,"14.5-14.8":0.2491,"15.0-15.1":0.09824,"15.2-15.3":0.11227,"15.4":0.12455,"15.5":0.17718,"15.6-15.7":1.2262,"16.0":0.45259,"16.1":0.86659,"16.2":0.42277,"16.3":0.78414,"16.4":0.16841,"16.5":0.44908,"16.6-16.7":8.41151,"17.0":2.99622,"17.1":0.18069,"17.2":0.00526},P:{"4":0.17497,"20":0.04374,"21":0.12029,"22":2.14343,"23":0.44837,"5.0-5.4":0.02187,"6.2-6.4":0.01094,_:"7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.01094,"13.0":0.01094,"14.0":0.01094,"15.0":0.01094,"16.0":0.02187,"17.0":0.02187,"18.0":0.01094,"19.0":0.03281},I:{"0":0.03326,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.02032,"11":0.16252,_:"6 7 9 10 5.5"},K:{"0":0.2579,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.43939},Q:{"13.1":0.00478},O:{"0":0.05254},H:{"0":0},L:{"0":26.76653}};
      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 fa2a403e2b8688..30bf408454f709 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/OM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/OM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.01413,"116":0.00565,"117":0.09608,"118":0.00565,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00283,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00283,"49":0.00283,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00283,"57":0,"58":0.01413,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00283,"65":0.00283,"66":0,"67":0,"68":0,"69":0.00283,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00283,"77":0,"78":0,"79":0.0113,"80":0.00283,"81":0.00565,"83":0.00565,"84":0,"85":0.00283,"86":0.00283,"87":0.00848,"88":0.00565,"89":0.00283,"90":0.00283,"91":0.00565,"92":0,"93":0.0113,"94":0,"95":0.00848,"96":0.00283,"97":0.00283,"98":0.00565,"99":0.03109,"100":0.00283,"101":0.00283,"102":0.00283,"103":0.05087,"104":0.00283,"105":0.00565,"106":0.00848,"107":0.00565,"108":0.00848,"109":0.47477,"110":0.00283,"111":0.00565,"112":0.0113,"113":0.01978,"114":0.04239,"115":0.07065,"116":4.08922,"117":0.86193,"118":0.00848,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00283,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.02543,"73":0.00565,"74":0,"75":0,"76":0,"77":0.02261,"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.00283,"96":0,"97":0,"98":0,"99":0,"100":0.00848,"101":0.03391,"102":0.03956,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00283,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00283,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01696,"110":0,"111":0.00283,"112":0.00283,"113":0.00565,"114":0.00848,"115":0.01978,"116":0.42955,"117":0.29108},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00848,"15":0.00283,_:"0","3.1":0,"3.2":0,"5.1":0.00283,"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.01413,"15.1":0.00283,"15.2-15.3":0.00283,"15.4":0.00565,"15.5":0.00848,"15.6":0.03391,"16.0":0.00283,"16.1":0.01413,"16.2":0.0113,"16.3":0.02826,"16.4":0.0113,"16.5":0.02543,"16.6":0.20065,"17.0":0.01978,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00853,"6.0-6.1":0,"7.0-7.1":0.03839,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07466,"10.0-10.2":0,"10.3":0.03839,"11.0-11.2":0.00427,"11.3-11.4":0,"12.0-12.1":0.00853,"12.2-12.5":0.33915,"13.0-13.1":0.00427,"13.2":0.0064,"13.3":0.02133,"13.4-13.7":0.04479,"14.0-14.4":0.16424,"14.5-14.8":0.26023,"15.0-15.1":0.10025,"15.2-15.3":0.11305,"15.4":0.14505,"15.5":0.28156,"15.6-15.7":1.89628,"16.0":0.66124,"16.1":0.88735,"16.2":0.5162,"16.3":1.03239,"16.4":0.31782,"16.5":1.05586,"16.6":11.88745,"17.0":1.13691,"17.1":0},P:{"4":0.11233,"20":0.09191,"21":0.21446,"22":2.69601,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10212,"8.2":0,"9.2":0.01021,"10.1":0,"11.1-11.2":0.06127,"12.0":0.02042,"13.0":0.07149,"14.0":0.04085,"15.0":0.04085,"16.0":0.06127,"17.0":0.05106,"18.0":0.05106,"19.0":0.10212},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02231,"4.4":0,"4.4.3-4.4.4":0.14725},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.38712},R:{_:"0"},M:{"0":0.07174},Q:{"13.1":0},O:{"0":1.09045},H:{"0":0.54335}};
      +module.exports={C:{"34":0.00277,"66":0.00277,"74":0.00277,"102":0.00553,"105":0.00277,"115":0.07189,"117":0.01659,"118":0.28203,"119":0.0553,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 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 106 107 108 109 110 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"11":0.00277,"38":0.00553,"49":0.00553,"56":0.00277,"58":0.0553,"63":0.00277,"64":0.00277,"65":0.00277,"68":0.02212,"69":0.00553,"70":0.00277,"71":0.00277,"73":0.00277,"75":0.00277,"76":0.00277,"78":0.00277,"79":0.04701,"80":0.00277,"81":0.00553,"83":0.01659,"84":0.00277,"85":0.00553,"86":0.0083,"87":0.02765,"88":0.01106,"89":0.00553,"90":0.00553,"91":0.02765,"92":0.00553,"93":0.03318,"94":0.00277,"95":0.01106,"96":0.00553,"97":0.00277,"98":0.01383,"99":0.0553,"100":0.00553,"101":0.00553,"102":0.00553,"103":0.18249,"104":0.0083,"105":0.0083,"106":0.00553,"107":0.01659,"108":0.03871,"109":1.68942,"110":0.01106,"111":0.01659,"112":0.02212,"113":0.02489,"114":0.05807,"115":0.07189,"116":0.48388,"117":8.53003,"118":8.38348,"119":0.05254,"120":0.01383,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 61 62 66 67 72 74 77 121 122"},F:{"28":0.0083,"46":0.00553,"85":0.00277,"94":0.00553,"95":0.0083,"98":0.00277,"100":0.00553,"101":0.00277,"102":0.28203,"103":0.06636,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 96 97 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00277,"17":0.00277,"18":0.00553,"92":0.0083,"94":0.00277,"97":0.00277,"100":0.00277,"101":0.00553,"103":0.00277,"107":0.00277,"108":0.00277,"109":0.06083,"110":0.01383,"111":0.00553,"112":0.00553,"113":0.00553,"114":0.0083,"115":0.02212,"116":0.06083,"117":1.45716,"118":1.36315,"119":0.00277,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 95 96 98 99 102 104 105 106"},E:{"13":0.00277,"14":0.03318,"15":0.00553,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.01383,"12.1":0.00277,"13.1":0.02489,"14.1":0.03871,"15.1":0.00553,"15.2-15.3":0.00553,"15.4":0.01936,"15.5":0.05254,"15.6":0.14378,"16.0":0.0083,"16.1":0.04148,"16.2":0.04148,"16.3":0.11337,"16.4":0.03042,"16.5":0.08295,"16.6":0.48388,"17.0":0.27097,"17.1":0.01383},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0016,"5.0-5.1":0.0016,"6.0-6.1":0.00479,"7.0-7.1":0.01118,"8.1-8.4":0.0016,"9.0-9.2":0.01118,"9.3":0.03834,"10.0-10.2":0.0016,"10.3":0.05591,"11.0-11.2":0.05112,"11.3-11.4":0.01757,"12.0-12.1":0.01438,"12.2-12.5":0.254,"13.0-13.1":0.00799,"13.2":0.04313,"13.3":0.01597,"13.4-13.7":0.05112,"14.0-14.4":0.14058,"14.5-14.8":0.22684,"15.0-15.1":0.08946,"15.2-15.3":0.10224,"15.4":0.11342,"15.5":0.16135,"15.6-15.7":1.11664,"16.0":0.41215,"16.1":0.78916,"16.2":0.38499,"16.3":0.71408,"16.4":0.15336,"16.5":0.40896,"16.6-16.7":7.65995,"17.0":2.72851,"17.1":0.16454,"17.2":0.00479},P:{"4":0.09271,"20":0.07211,"21":0.16482,"22":2.2663,"23":0.50477,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.10301,"9.2":0.0103,"11.1-11.2":0.06181,"12.0":0.0206,"13.0":0.05151,"14.0":0.04121,"15.0":0.10301,"16.0":0.06181,"17.0":0.04121,"18.0":0.05151,"19.0":0.07211},I:{"0":0.09358,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00028},A:{"8":0.00283,"11":0.11877,_:"6 7 9 10 5.5"},K:{"0":0.5571,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.05788},Q:{_:"13.1"},O:{"0":1.05631},H:{"0":0},L:{"0":52.75368}};
      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 bc6b5e0fe9611e..a3a17ff75f99d5 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00402,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0201,"74":0,"75":0,"76":0,"77":0,"78":0.00402,"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.01206,"98":0.01608,"99":0,"100":0,"101":0,"102":0.00804,"103":0,"104":0.00402,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00402,"111":0,"112":0,"113":0.0201,"114":0.0201,"115":0.09246,"116":0.02814,"117":0.3819,"118":0.03618,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00402,"42":0,"43":0.00402,"44":0.00402,"45":0.00402,"46":0,"47":0,"48":0,"49":0.00402,"50":0,"51":0,"52":0,"53":0,"54":0.00402,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01608,"69":0.00402,"70":0.00402,"71":0,"72":0,"73":0.01206,"74":0.00804,"75":0.00804,"76":0.00804,"77":0.00402,"78":0.00402,"79":0.03216,"80":0.02412,"81":0.00804,"83":0.00804,"84":0.00402,"85":0.00402,"86":0.00402,"87":0.01608,"88":0.00804,"89":0.01206,"90":0.00402,"91":0.04422,"92":0,"93":0.0201,"94":0.00402,"95":0.00402,"96":0.00804,"97":0.00402,"98":0.00804,"99":0.01608,"100":0,"101":0.00402,"102":0.00402,"103":0.04422,"104":0.00402,"105":0.00402,"106":0.00804,"107":0.05226,"108":0.01206,"109":0.41004,"110":0.00804,"111":0.01206,"112":0.0402,"113":0.03618,"114":0.1206,"115":0.18492,"116":6.8139,"117":1.96578,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01206,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.01206,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00402,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01206,"73":0,"74":0,"75":0,"76":0,"77":0.01206,"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.00402,"96":0,"97":0,"98":0.00402,"99":0.01206,"100":0.11658,"101":0.29748,"102":0.32562,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00402,"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.00402,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.02814,"110":0,"111":0.00402,"112":0.00804,"113":0.00804,"114":0.02412,"115":0.03618,"116":1.01706,"117":0.804},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00402,"10":0,"11":0,"12":0.00804,"13":0,"14":0.01206,"15":0.00402,_:"0","3.1":0,"3.2":0,"5.1":0.00402,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00402,"13.1":0.0201,"14.1":0.1005,"15.1":0.00402,"15.2-15.3":0.00804,"15.4":0.00804,"15.5":0.00804,"15.6":0.10854,"16.0":0.00804,"16.1":0.03216,"16.2":0.03216,"16.3":0.0603,"16.4":0.1005,"16.5":0.0603,"16.6":0.3819,"17.0":0.03216,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00653,"6.0-6.1":0.01795,"7.0-7.1":0.0457,"8.1-8.4":0.00979,"9.0-9.2":0,"9.3":0.02122,"10.0-10.2":0,"10.3":0.03917,"11.0-11.2":0.02774,"11.3-11.4":0.00326,"12.0-12.1":0.00653,"12.2-12.5":0.16483,"13.0-13.1":0.02122,"13.2":0,"13.3":0.03427,"13.4-13.7":0.06365,"14.0-14.4":0.06528,"14.5-14.8":0.1991,"15.0-15.1":0.05059,"15.2-15.3":0.06365,"15.4":0.06365,"15.5":0.0816,"15.6-15.7":1.30396,"16.0":0.38352,"16.1":0.70502,"16.2":0.42595,"16.3":0.72787,"16.4":0.15014,"16.5":0.47165,"16.6":9.64346,"17.0":1.22073,"17.1":0},P:{"4":0.14303,"20":0.13281,"21":0.31671,"22":3.32032,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.34736,"8.2":0,"9.2":0.02043,"10.1":0,"11.1-11.2":0.05108,"12.0":0.01022,"13.0":0.02043,"14.0":0.01022,"15.0":0.02043,"16.0":0.0613,"17.0":0.08173,"18.0":0.02043,"19.0":0.13281},I:{"0":0,"3":0,"4":0.01911,"2.1":0,"2.2":0.01274,"2.3":0.01911,"4.1":0.01911,"4.2-4.3":0.05096,"4.4":0,"4.4.3-4.4.4":0.15926},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.019,"9":0.00475,"10":0.00475,"11":0.02375,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.01196,"11":0},L:{"0":60.91766},R:{_:"0"},M:{"0":0.22724},Q:{"13.1":0.01196},O:{"0":0.19734},H:{"0":0.3227}};
      +module.exports={C:{"34":0.00423,"52":0.00423,"78":0.00423,"85":0.00423,"97":0.01268,"102":0.00423,"109":0.01691,"110":0.00423,"112":0.00423,"113":0.00846,"114":0.04228,"115":0.24522,"116":0.01268,"117":0.03382,"118":0.84137,"119":0.17758,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 98 99 100 101 103 104 105 106 107 108 111 120 121 122 3.5 3.6"},D:{"11":0.00423,"29":0.00423,"34":0.00423,"43":0.00423,"44":0.00423,"45":0.00423,"46":0.00423,"47":0.00423,"49":0.00423,"51":0.00423,"54":0.00423,"60":0.00423,"68":0.0296,"69":0.01691,"70":0.00423,"73":0.01268,"74":0.01268,"75":0.00846,"76":0.01691,"77":0.00423,"78":0.00846,"79":0.08456,"80":0.05919,"81":0.00423,"83":0.02114,"85":0.00423,"86":0.00846,"87":0.05496,"88":0.02114,"89":0.03382,"91":0.09302,"92":0.01691,"93":0.03805,"94":0.00846,"95":0.00423,"96":0.00423,"97":0.00846,"98":0.01691,"99":0.01691,"100":0.00423,"101":0.00846,"102":0.00846,"103":0.1057,"104":0.00423,"105":0.02114,"106":0.01691,"107":0.06342,"108":0.03382,"109":0.97667,"110":0.00846,"111":0.02114,"112":0.05919,"113":0.05919,"114":0.14375,"115":0.14375,"116":1.03163,"117":11.50439,"118":12.77702,"119":0.01268,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 38 39 40 41 42 48 50 52 53 55 56 57 58 59 61 62 63 64 65 66 67 71 72 84 90 120 121 122"},F:{"28":0.01691,"46":0.00423,"95":0.01691,"100":0.00423,"101":0.01691,"102":2.10977,"103":0.24522,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00423,"14":0.00423,"15":0.00423,"16":0.00423,"18":0.00846,"92":0.00846,"107":0.00423,"109":0.03805,"110":0.00423,"111":0.00423,"112":0.01691,"113":0.01268,"114":0.03382,"115":0.0296,"116":0.06765,"117":2.77357,"118":2.45224,"119":0.00846,_:"13 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108"},E:{"9":0.00846,"12":0.01268,"14":0.02537,"15":0.00423,_:"0 4 5 6 7 8 10 11 13 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00846,"11.1":0.00423,"12.1":0.00423,"13.1":0.03805,"14.1":0.15221,"15.1":0.01691,"15.2-15.3":0.02114,"15.4":0.01691,"15.5":0.02114,"15.6":0.25791,"16.0":0.01691,"16.1":0.05919,"16.2":0.06342,"16.3":0.12261,"16.4":0.13952,"16.5":0.11838,"16.6":0.74413,"17.0":0.36361,"17.1":0.04651,"17.2":0.00423},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00096,"5.0-5.1":0.00096,"6.0-6.1":0.00288,"7.0-7.1":0.00673,"8.1-8.4":0.00096,"9.0-9.2":0.00673,"9.3":0.02308,"10.0-10.2":0.00096,"10.3":0.03366,"11.0-11.2":0.03077,"11.3-11.4":0.01058,"12.0-12.1":0.00865,"12.2-12.5":0.1529,"13.0-13.1":0.00481,"13.2":0.02596,"13.3":0.00962,"13.4-13.7":0.03077,"14.0-14.4":0.08462,"14.5-14.8":0.13655,"15.0-15.1":0.05385,"15.2-15.3":0.06154,"15.4":0.06827,"15.5":0.09712,"15.6-15.7":0.67217,"16.0":0.2481,"16.1":0.47504,"16.2":0.23175,"16.3":0.42984,"16.4":0.09232,"16.5":0.24617,"16.6-16.7":4.61094,"17.0":1.64244,"17.1":0.09905,"17.2":0.00288},P:{"4":0.12526,"20":0.1357,"21":0.26096,"22":2.58873,"23":0.45929,"5.0-5.4":0.02088,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0","7.2-7.4":0.31315,"11.1-11.2":0.03132,"13.0":0.02088,"15.0":0.01044,"16.0":0.04175,"17.0":0.06263,"18.0":0.02088,"19.0":0.10438},I:{"0":0.09188,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00028},A:{"8":0.02602,"9":0.0052,"10":0.0052,"11":0.03122,_:"6 7 5.5"},K:{"0":0.38639,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00577,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.17893},Q:{"13.1":0.01154},O:{"0":0.09812},H:{"0":0.11},L:{"0":45.3135}};
      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 bb6da300ac5403..4ab98217e78bb6 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00552,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00552,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01104,"69":0.00552,"70":0,"71":0,"72":0,"73":0,"74":0.00552,"75":0.00552,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00552,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00552,"98":0,"99":0,"100":0,"101":0,"102":0.00552,"103":0,"104":0.00552,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00552,"111":0,"112":0,"113":0,"114":0.00552,"115":0.07173,"116":0.04966,"117":0.50214,"118":0.05518,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.02207,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01104,"50":0,"51":0.00552,"52":0,"53":0.01655,"54":0,"55":0,"56":0,"57":0,"58":0.00552,"59":0,"60":0,"61":0,"62":0.01104,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01655,"69":0.00552,"70":0.00552,"71":0,"72":0,"73":0.00552,"74":0.01104,"75":0.01104,"76":0,"77":0.00552,"78":0.00552,"79":0.17658,"80":0.01655,"81":0.01655,"83":0.00552,"84":0.01104,"85":0.00552,"86":0.01655,"87":0.03311,"88":0.02207,"89":0.01655,"90":0.00552,"91":0.04966,"92":0.01104,"93":0.01104,"94":0.01104,"95":0.02207,"96":0.02207,"97":0.01104,"98":0.01104,"99":0.02759,"100":0.01104,"101":0.01104,"102":0.01104,"103":0.03863,"104":0.01655,"105":0.02207,"106":0.03863,"107":0.02759,"108":0.03863,"109":1.74921,"110":0.02207,"111":0.03863,"112":0.06622,"113":0.07173,"114":0.22072,"115":0.35315,"116":16.65884,"117":4.39785,"118":0.00552,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00552,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00552,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.01104,"73":0.00552,"74":0.00552,"75":0,"76":0,"77":0.01104,"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.03863,"96":0,"97":0,"98":0,"99":0.01104,"100":0.29797,"101":0.56284,"102":0.68423,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00552,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00552,"88":0,"89":0,"90":0,"91":0,"92":0.00552,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00552,"109":0.02759,"110":0.00552,"111":0.00552,"112":0.00552,"113":0.00552,"114":0.02207,"115":0.03863,"116":1.00428,"117":0.80011},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01104,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00552,"6.1":0,"7.1":0,"9.1":0.01655,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00552,"14.1":0.01655,"15.1":0.00552,"15.2-15.3":0,"15.4":0.00552,"15.5":0.01104,"15.6":0.03311,"16.0":0.00552,"16.1":0.01655,"16.2":0.00552,"16.3":0.02759,"16.4":0.01104,"16.5":0.04414,"16.6":0.13795,"17.0":0.01655,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00425,"6.0-6.1":0.00061,"7.0-7.1":0.00243,"8.1-8.4":0.00243,"9.0-9.2":0.00121,"9.3":0.01032,"10.0-10.2":0,"10.3":0.01032,"11.0-11.2":0.00971,"11.3-11.4":0.00182,"12.0-12.1":0.00303,"12.2-12.5":0.105,"13.0-13.1":0.00364,"13.2":0.00182,"13.3":0.02731,"13.4-13.7":0.01882,"14.0-14.4":0.02671,"14.5-14.8":0.07769,"15.0-15.1":0.02003,"15.2-15.3":0.02913,"15.4":0.03763,"15.5":0.0789,"15.6-15.7":0.46978,"16.0":0.19605,"16.1":0.30226,"16.2":0.18998,"16.3":0.37935,"16.4":0.05463,"16.5":0.23004,"16.6":3.24478,"17.0":0.47767,"17.1":0},P:{"4":0.22417,"20":0.04076,"21":0.07133,"22":0.70308,"5.0-5.4":0.02038,"6.2-6.4":0.01019,"7.2-7.4":0.06114,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01019,"12.0":0,"13.0":0.04076,"14.0":0.02038,"15.0":0.01019,"16.0":0.03057,"17.0":0.02038,"18.0":0.01019,"19.0":0.03057},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01121,"4.2-4.3":0.00672,"4.4":0,"4.4.3-4.4.4":0.09414},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00828,"9":0,"10":0,"11":0.02483,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":61.84398},R:{_:"0"},M:{"0":0.0986},Q:{"13.1":0},O:{"0":0.02689},H:{"0":0.20792}};
      +module.exports={C:{"45":0.01117,"52":0.01676,"54":0.00559,"68":0.00559,"88":0.01117,"104":0.00559,"110":0.00559,"111":0.00559,"112":0.00559,"113":0.00559,"114":0.01117,"115":0.13404,"116":0.00559,"117":0.02234,"118":0.80424,"119":0.1508,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 120 121 122 3.5 3.6"},D:{"34":0.00559,"38":0.02793,"41":0.00559,"47":0.00559,"49":0.02793,"53":0.01117,"56":0.00559,"62":0.00559,"65":0.00559,"68":0.01676,"70":0.00559,"73":0.00559,"74":0.00559,"77":0.00559,"78":0.00559,"79":0.29601,"80":0.00559,"81":0.01676,"83":0.00559,"84":0.00559,"85":0.01117,"86":0.00559,"87":0.05585,"88":0.03351,"89":0.00559,"90":0.00559,"91":0.08378,"92":0.01117,"93":0.02234,"94":0.01117,"95":0.02234,"96":0.05585,"97":0.02234,"98":0.03351,"99":0.02234,"100":0.02234,"101":0.01117,"102":0.01676,"103":0.10053,"104":0.02234,"105":0.03351,"106":0.04468,"107":0.03351,"108":0.05585,"109":3.10526,"110":0.02793,"111":0.06702,"112":0.06144,"113":0.05027,"114":0.18989,"115":0.15638,"116":0.94945,"117":18.43609,"118":20.46344,"119":0.02793,"120":0.01117,_:"4 5 6 7 8 9 10 11 12 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 57 58 59 60 61 63 64 66 67 69 71 72 75 76 121 122"},F:{"28":0.00559,"36":0.00559,"83":0.00559,"95":0.07261,"97":0.00559,"99":0.00559,"100":0.00559,"101":0.00559,"102":2.88186,"103":0.31835,_:"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 84 85 86 87 88 89 90 91 92 93 94 96 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00559,"18":0.01117,"92":0.01676,"100":0.00559,"102":0.00559,"108":0.00559,"109":0.05027,"110":0.00559,"111":0.00559,"112":0.00559,"113":0.01676,"114":0.02793,"115":0.02793,"116":0.07261,"117":1.78162,"118":1.93241,"119":0.01676,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 103 104 105 106 107"},E:{"14":0.01676,"15":0.00559,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.2","5.1":0.00559,"13.1":0.01117,"14.1":0.03351,"15.1":0.01117,"15.4":0.0391,"15.5":0.01676,"15.6":0.07819,"16.0":0.00559,"16.1":0.0391,"16.2":0.01117,"16.3":0.0391,"16.4":0.01676,"16.5":0.04468,"16.6":0.18431,"17.0":0.13963,"17.1":0.01676},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00035,"5.0-5.1":0.00035,"6.0-6.1":0.00105,"7.0-7.1":0.00246,"8.1-8.4":0.00035,"9.0-9.2":0.00246,"9.3":0.00842,"10.0-10.2":0.00035,"10.3":0.01228,"11.0-11.2":0.01123,"11.3-11.4":0.00386,"12.0-12.1":0.00316,"12.2-12.5":0.05581,"13.0-13.1":0.00175,"13.2":0.00948,"13.3":0.00351,"13.4-13.7":0.01123,"14.0-14.4":0.03089,"14.5-14.8":0.04984,"15.0-15.1":0.01966,"15.2-15.3":0.02246,"15.4":0.02492,"15.5":0.03545,"15.6-15.7":0.24534,"16.0":0.09056,"16.1":0.17339,"16.2":0.08459,"16.3":0.15689,"16.4":0.0337,"16.5":0.08985,"16.6-16.7":1.68301,"17.0":0.5995,"17.1":0.03615,"17.2":0.00105},P:{"4":0.22451,"20":0.03062,"21":0.05103,"22":0.61231,"23":0.08164,"5.0-5.4":0.02041,"6.2-6.4":0.01021,"7.2-7.4":0.06123,_:"8.2 9.2 10.1 12.0","11.1-11.2":0.01021,"13.0":0.04082,"14.0":0.01021,"15.0":0.01021,"16.0":0.03062,"17.0":0.02041,"18.0":0.01021,"19.0":0.02041},I:{"0":0.04392,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"8":0.00878,"11":0.05266,_:"6 7 9 10 5.5"},K:{"0":0.18543,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.08389},Q:{_:"13.1"},O:{"0":0.02208},H:{"0":0},L:{"0":40.43697}};
      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 d9531271da58ee..0707e0716412b1 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PF.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PF.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"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.00482,"64":0,"65":0,"66":0,"67":0.00482,"68":0.00482,"69":0,"70":0,"71":0.00482,"72":0.00963,"73":0,"74":0,"75":0.03372,"76":0,"77":0,"78":0.04335,"79":0,"80":0,"81":0,"82":0.00482,"83":0.00482,"84":0.13488,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.10597,"92":0,"93":0,"94":0.01445,"95":0,"96":0,"97":0,"98":0,"99":0.00963,"100":0,"101":0,"102":0.10116,"103":0,"104":0,"105":0.00482,"106":0,"107":0.01445,"108":0,"109":0,"110":0,"111":0,"112":0.00482,"113":0.00482,"114":0.00963,"115":0.34682,"116":0.1686,"117":2.06168,"118":0.24085,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00482,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.02409,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00963,"72":0,"73":0,"74":0,"75":0.00482,"76":0.00482,"77":0,"78":0,"79":0.04817,"80":0.00482,"81":0.03854,"83":0,"84":0,"85":0.08671,"86":0.00482,"87":0.07707,"88":0.00482,"89":0,"90":0,"91":0.00482,"92":0.01927,"93":0.10597,"94":0.00482,"95":0,"96":0,"97":0,"98":0.00482,"99":0.00482,"100":0,"101":0.00482,"102":0.08189,"103":0.13969,"104":0.08189,"105":0.00963,"106":0.00482,"107":0.00482,"108":0.13488,"109":0.36609,"110":0.00482,"111":0.00482,"112":0.15896,"113":0.04335,"114":0.08671,"115":0.1686,"116":5.70815,"117":1.7293,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00482,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00482,"47":0,"48":0,"49":0,"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.00482,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01927,"73":0.00482,"74":0,"75":0,"76":0,"77":0.03372,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00482,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00963,"96":0,"97":0,"98":0,"99":0.00482,"100":0.12524,"101":0.21677,"102":0.20713,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00482,"16":0,"17":0,"18":0.00963,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01445,"91":0,"92":0.00482,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00482,"99":0.00482,"100":0,"101":0,"102":0.00482,"103":0,"104":0,"105":0,"106":0.00482,"107":0.00482,"108":0.00482,"109":0.05299,"110":0.00482,"111":0,"112":0.01927,"113":0.00963,"114":0.06744,"115":0.03854,"116":2.72161,"117":1.1609},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00963,"14":0.07226,"15":0.01445,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00482,"12.1":0.03854,"13.1":0.20713,"14.1":0.12043,"15.1":0.02409,"15.2-15.3":0.03854,"15.4":0.01927,"15.5":0.13969,"15.6":0.95377,"16.0":0.03372,"16.1":0.10597,"16.2":0.05299,"16.3":0.26494,"16.4":0.06262,"16.5":0.21195,"16.6":1.88826,"17.0":0.10116,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00599,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.003,"9.0-9.2":0,"9.3":0.07491,"10.0-10.2":0.00599,"10.3":0.05694,"11.0-11.2":0,"11.3-11.4":0.03896,"12.0-12.1":0.003,"12.2-12.5":0.54238,"13.0-13.1":0.003,"13.2":0,"13.3":0.39555,"13.4-13.7":0.01498,"14.0-14.4":0.05694,"14.5-14.8":0.15882,"15.0-15.1":0.38356,"15.2-15.3":6.61049,"15.4":0.1798,"15.5":0.21575,"15.6-15.7":1.6721,"16.0":0.86002,"16.1":1.27056,"16.2":0.63528,"16.3":1.94479,"16.4":0.24872,"16.5":0.91696,"16.6":12.66661,"17.0":0.63228,"17.1":0},P:{"4":0.03092,"20":0.07214,"21":0.3607,"22":3.60696,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1752,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01031,"12.0":0,"13.0":0,"14.0":0.02061,"15.0":0.02061,"16.0":0.02061,"17.0":0.02061,"18.0":0.03092,"19.0":0.05153},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02141,"4.4":0,"4.4.3-4.4.4":0.1142},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04335,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":40.64268},R:{_:"0"},M:{"0":0.51312},Q:{"13.1":0},O:{"0":0.07775},H:{"0":0.17174}};
      +module.exports={C:{"48":0.00512,"57":0.00512,"60":0.00512,"63":0.00512,"67":0.04094,"68":0.04605,"72":0.05629,"74":0.00512,"75":0.20468,"76":0.00512,"78":0.12281,"82":0.03582,"83":0.00512,"85":0.00512,"88":0.00512,"89":0.00512,"91":0.20468,"94":0.02047,"95":0.01023,"97":0.00512,"98":0.01023,"99":0.01023,"102":0.04094,"103":0.00512,"105":0.00512,"107":0.04094,"108":0.01023,"112":0.00512,"113":0.00512,"114":0.02559,"115":0.98758,"116":0.04605,"117":0.1791,"118":3.50003,"119":0.63451,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 58 59 61 62 64 65 66 69 70 71 73 77 79 80 81 84 86 87 90 92 93 96 100 101 104 106 109 110 111 120 121 122 3.5 3.6"},D:{"41":0.02559,"47":0.00512,"49":0.01023,"53":0.00512,"57":0.00512,"58":0.00512,"65":0.00512,"67":0.03582,"70":0.01535,"71":0.04094,"72":0.00512,"74":0.01023,"76":0.04094,"78":0.00512,"79":0.23538,"80":0.02047,"81":0.19956,"83":0.00512,"84":0.01023,"85":0.48612,"86":0.02047,"87":0.44006,"88":0.00512,"90":0.00512,"92":0.05117,"93":0.03582,"94":0.01023,"95":0.00512,"96":0.00512,"98":0.08187,"101":0.0307,"102":0.02047,"103":0.25073,"105":0.01023,"106":0.02559,"107":0.01023,"108":0.04605,"109":1.05922,"110":0.11769,"111":0.01023,"112":0.0307,"113":0.24562,"114":0.09211,"115":0.08699,"116":1.18714,"117":7.18427,"118":8.80636,"119":0.0307,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 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 52 54 55 56 59 60 61 62 63 64 66 68 69 73 75 77 89 91 97 99 100 104 120 121 122"},F:{"28":0.00512,"46":0.00512,"65":0.0307,"73":0.00512,"89":0.01535,"94":0.01023,"95":0.02559,"100":0.00512,"101":0.01023,"102":0.66521,"103":0.06652,_:"9 11 12 15 16 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 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00512,"16":0.00512,"18":0.03582,"86":0.00512,"90":0.01023,"91":0.00512,"92":0.01535,"97":0.01023,"98":0.00512,"99":0.00512,"104":0.00512,"106":0.01023,"107":0.01535,"109":0.05117,"110":0.01535,"111":0.01023,"112":0.01023,"113":0.01023,"114":0.04094,"115":0.01023,"116":0.07164,"117":3.06508,"118":2.91669,_:"13 14 15 17 79 80 81 83 84 85 87 88 89 93 94 95 96 100 101 102 103 105 108 119"},E:{"13":0.01023,"14":0.49635,"15":0.07164,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.00512,"12.1":0.18421,"13.1":0.31214,"14.1":0.59869,"15.1":0.10234,"15.2-15.3":0.43495,"15.4":0.11769,"15.5":0.2405,"15.6":2.2873,"16.0":0.07164,"16.1":0.29167,"16.2":0.18933,"16.3":0.85454,"16.4":0.25073,"16.5":0.91083,"16.6":3.96568,"17.0":1.88817,"17.1":0.11769},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00159,"5.0-5.1":0.00159,"6.0-6.1":0.00476,"7.0-7.1":0.01111,"8.1-8.4":0.00159,"9.0-9.2":0.01111,"9.3":0.0381,"10.0-10.2":0.00159,"10.3":0.05557,"11.0-11.2":0.0508,"11.3-11.4":0.01746,"12.0-12.1":0.01429,"12.2-12.5":0.25243,"13.0-13.1":0.00794,"13.2":0.04287,"13.3":0.01588,"13.4-13.7":0.0508,"14.0-14.4":0.13971,"14.5-14.8":0.22544,"15.0-15.1":0.08891,"15.2-15.3":0.10161,"15.4":0.11272,"15.5":0.16035,"15.6-15.7":1.10975,"16.0":0.40961,"16.1":0.78429,"16.2":0.38262,"16.3":0.70967,"16.4":0.15241,"16.5":0.40643,"16.6-16.7":7.61267,"17.0":2.71167,"17.1":0.16353,"17.2":0.00476},P:{"4":0.04257,"20":0.03193,"21":0.18091,"22":2.72434,"23":0.4576,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0","7.2-7.4":0.26605,"11.1-11.2":0.01064,"13.0":0.01064,"15.0":0.01064,"16.0":0.01064,"17.0":0.02128,"18.0":0.02128,"19.0":0.11706},I:{"0":0.01457,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.11257,_:"6 7 8 9 10 5.5"},K:{"0":0.45379,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.45891},Q:{_:"13.1"},O:{"0":0.04882},H:{"0":0.01},L:{"0":30.10047}};
      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 a1198ea14bacfe..43eac2aeda9a77 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00331,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00331,"90":0,"91":0,"92":0,"93":0,"94":0.00331,"95":0,"96":0,"97":0.00663,"98":0.00331,"99":0.00331,"100":0.00331,"101":0,"102":0.00331,"103":0.00663,"104":0,"105":0.00331,"106":0,"107":0.00331,"108":0,"109":0.00331,"110":0.00331,"111":0.00331,"112":0,"113":0.00663,"114":0.00331,"115":0.04638,"116":0.03313,"117":0.3578,"118":0.01657,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00663,"41":0,"42":0,"43":0.00331,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00331,"51":0,"52":0,"53":0,"54":0,"55":0.00331,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00331,"65":0.00331,"66":0,"67":0.00331,"68":0.00331,"69":0.00994,"70":0.01325,"71":0.00331,"72":0,"73":0.00331,"74":0.00331,"75":0,"76":0,"77":0,"78":0.00331,"79":0.02982,"80":0.00331,"81":0.00663,"83":0.00331,"84":0.00331,"85":0,"86":0,"87":0.00994,"88":0.0497,"89":0.00331,"90":0.00663,"91":0,"92":0.00331,"93":0.00331,"94":0.00331,"95":0.00663,"96":0.00331,"97":0,"98":0,"99":0.02319,"100":0.00331,"101":0.00331,"102":0.00331,"103":0.05963,"104":0.00331,"105":0.01325,"106":0.00663,"107":0.00994,"108":0.01325,"109":0.38431,"110":0.00994,"111":0.00994,"112":0.02319,"113":0.03313,"114":0.04307,"115":0.09276,"116":3.0082,"117":0.57646,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00663,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00663,"62":0,"63":0,"64":0.00331,"65":0.00663,"66":0.00331,"67":0,"68":0,"69":0.00994,"70":0.00663,"71":0.01325,"72":0.12921,"73":0.02319,"74":0,"75":0,"76":0.00663,"77":0.07951,"78":0.00663,"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.00994,"96":0,"97":0,"98":0,"99":0,"100":0.00331,"101":0.0762,"102":0.04638,"9.5-9.6":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.00994,"13":0.00331,"14":0.00331,"15":0,"16":0.00994,"17":0.00331,"18":0.02319,"79":0,"80":0.00331,"81":0,"83":0,"84":0.01988,"85":0.00994,"86":0,"87":0,"88":0,"89":0.00663,"90":0.01657,"91":0,"92":0.02319,"93":0,"94":0,"95":0.00663,"96":0.00331,"97":0,"98":0,"99":0,"100":0.00663,"101":0,"102":0.00331,"103":0.00331,"104":0,"105":0.00331,"106":0.00331,"107":0.0265,"108":0,"109":0.00994,"110":0.00663,"111":0.00663,"112":0.01325,"113":0.04307,"114":0.05963,"115":0.06626,"116":0.68248,"117":0.46051},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00331,"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.00331,"14.1":0.00663,"15.1":0,"15.2-15.3":0.00663,"15.4":0,"15.5":0.00331,"15.6":0.00663,"16.0":0,"16.1":0,"16.2":0.00331,"16.3":0.00331,"16.4":0.00331,"16.5":0.00994,"16.6":0.06626,"17.0":0.00994,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00107,"7.0-7.1":0,"8.1-8.4":0.00645,"9.0-9.2":0.01343,"9.3":0.06689,"10.0-10.2":0,"10.3":0.02042,"11.0-11.2":0.00806,"11.3-11.4":0.0094,"12.0-12.1":0.00698,"12.2-12.5":0.08247,"13.0-13.1":0.00484,"13.2":0.00134,"13.3":0.00833,"13.4-13.7":0.01424,"14.0-14.4":0.0325,"14.5-14.8":0.03761,"15.0-15.1":0.06178,"15.2-15.3":0.03949,"15.4":0.05802,"15.5":0.15016,"15.6-15.7":0.20415,"16.0":0.10825,"16.1":0.09321,"16.2":0.08381,"16.3":0.10933,"16.4":0.08784,"16.5":0.2525,"16.6":1.02263,"17.0":0.07897,"17.1":0},P:{"4":0.09158,"20":0.20352,"21":0.67161,"22":1.86218,"5.0-5.4":0,"6.2-6.4":0.02035,"7.2-7.4":0.32563,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.09158,"12.0":0,"13.0":0.0407,"14.0":0.0407,"15.0":0.0407,"16.0":0.20352,"17.0":0.0407,"18.0":0.19334,"19.0":0.37651},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01092,"4.2-4.3":0.01819,"4.4":0,"4.4.3-4.4.4":0.32746},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00331,"11":0.00994,"5.5":0},S:{"2.5":0.02006,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":79.7703},R:{_:"0"},M:{"0":0.10031},Q:{"13.1":0.00669},O:{"0":1.40427},H:{"0":1.58904}};
      +module.exports={C:{"60":0.00895,"72":0.00298,"80":0.00597,"89":0.00298,"92":0.01194,"93":0.00597,"94":0.00298,"95":0.00597,"97":0.01194,"98":0.00597,"99":0.00298,"100":0.00298,"103":0.00597,"107":0.00597,"109":0.00298,"110":0.00597,"111":0.00597,"112":0.01492,"113":0.00298,"114":0.00895,"115":0.1313,"116":0.00895,"117":0.17307,"118":0.7639,"119":0.14622,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 81 82 83 84 85 86 87 88 90 91 96 101 102 104 105 106 108 120 121 122 3.5 3.6"},D:{"11":0.00597,"37":0.00298,"38":0.00298,"43":0.00895,"49":0.00298,"50":0.00298,"53":0.00298,"55":0.00298,"56":0.00298,"59":0.00895,"60":0.00298,"62":0.00298,"65":0.01194,"66":0.00298,"67":0.00895,"68":0.00597,"69":0.01492,"70":0.04178,"71":0.00298,"72":0.00597,"74":0.00895,"77":0.00298,"78":0.01194,"79":0.04774,"80":0.00298,"81":0.02387,"83":0.00597,"84":0.00895,"85":0.00298,"87":0.0179,"88":0.12533,"89":0.00597,"90":0.03282,"91":0.00298,"92":0.00597,"93":0.00298,"94":0.02089,"95":0.00597,"96":0.01194,"97":0.00298,"98":0.00298,"99":0.04476,"100":0.1313,"101":0.00895,"102":0.02686,"103":0.11339,"104":0.00298,"105":0.03879,"106":0.02089,"107":0.01492,"108":0.03282,"109":0.94294,"110":0.0179,"111":0.02984,"112":0.03879,"113":0.05073,"114":0.09847,"115":0.07758,"116":0.46252,"117":3.86428,"118":4.57149,"119":0.00597,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 44 45 46 47 48 51 52 54 57 58 61 63 64 73 75 76 86 120 121 122"},F:{"74":0.00298,"76":0.00597,"77":0.02984,"78":0.04178,"83":0.00298,"94":0.00298,"95":0.01492,"99":0.00298,"101":0.00895,"102":0.14622,"103":0.10146,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 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 79 80 81 82 84 85 86 87 88 89 90 91 92 93 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01194,"13":0.0179,"14":0.00895,"15":0.00298,"16":0.00895,"17":0.02686,"18":0.06565,"80":0.00597,"83":0.00298,"84":0.04774,"85":0.01194,"89":0.0179,"90":0.03581,"92":0.07162,"94":0.00597,"98":0.00298,"99":0.00597,"100":0.01194,"101":0.00298,"102":0.00298,"103":0.00597,"104":0.00298,"105":0.00298,"106":0.00597,"107":0.01492,"108":0.00298,"109":0.0567,"110":0.01194,"111":0.00597,"112":0.01492,"113":0.02387,"114":0.0925,"115":0.06863,"116":0.27453,"117":1.47708,"118":1.3995,"119":0.01194,_:"79 81 86 87 88 91 93 95 96 97"},E:{"11":0.00597,"13":0.00298,"14":0.00298,"15":0.00298,_:"0 4 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.1 17.2","13.1":0.02686,"14.1":0.0179,"15.1":0.01194,"15.2-15.3":0.00895,"15.4":0.00298,"15.5":0.00597,"15.6":0.04774,"16.0":0.00298,"16.1":0.00597,"16.2":0.00597,"16.3":0.02089,"16.4":0.00298,"16.5":0.0179,"16.6":0.1492,"17.0":0.05371},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00018,"5.0-5.1":0.00018,"6.0-6.1":0.00055,"7.0-7.1":0.00128,"8.1-8.4":0.00018,"9.0-9.2":0.00128,"9.3":0.00438,"10.0-10.2":0.00018,"10.3":0.00638,"11.0-11.2":0.00584,"11.3-11.4":0.00201,"12.0-12.1":0.00164,"12.2-12.5":0.029,"13.0-13.1":0.00091,"13.2":0.00493,"13.3":0.00182,"13.4-13.7":0.00584,"14.0-14.4":0.01605,"14.5-14.8":0.0259,"15.0-15.1":0.01022,"15.2-15.3":0.01167,"15.4":0.01295,"15.5":0.01842,"15.6-15.7":0.12751,"16.0":0.04706,"16.1":0.09011,"16.2":0.04396,"16.3":0.08154,"16.4":0.01751,"16.5":0.0467,"16.6-16.7":0.87468,"17.0":0.31157,"17.1":0.01879,"17.2":0.00055},P:{"4":0.10208,"20":0.16334,"21":0.30625,"22":2.0519,"23":0.10208,_:"5.0-5.4 6.2-6.4 8.2 12.0","7.2-7.4":0.19396,"9.2":0.02042,"10.1":0.02042,"11.1-11.2":0.06125,"13.0":0.06125,"14.0":0.05104,"15.0":0.02042,"16.0":0.14292,"17.0":0.02042,"18.0":0.11229,"19.0":0.42876},I:{"0":0.21639,"3":0,"4":0.00004,"2.1":0,"2.2":0.00007,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00015,"4.4":0,"4.4.3-4.4.4":0.00065},A:{"10":0.0094,"11":0.05326,_:"6 7 8 9 5.5"},K:{"0":1.34215,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02105,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.15435},Q:{"13.1":0.01403},O:{"0":1.15062},H:{"0":0.04},L:{"0":73.78861}};
      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 992d1ddf10a647..303b871df8716a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PH.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PH.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.02261,"57":0,"58":0,"59":0.00565,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00565,"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.03391,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00565,"114":0,"115":0.06217,"116":0.02826,"117":0.47477,"118":0.02826,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00565,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00565,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.03391,"67":0.00565,"68":0.00565,"69":0.00565,"70":0.00565,"71":0,"72":0,"73":0.00565,"74":0,"75":0.00565,"76":0.00565,"77":0,"78":0.0113,"79":0.03391,"80":0.00565,"81":0.00565,"83":0.01696,"84":0.00565,"85":0.00565,"86":0.0113,"87":0.13,"88":0.01696,"89":0.00565,"90":0.0113,"91":0.01696,"92":0.01696,"93":0.10174,"94":0.0113,"95":0.00565,"96":0.0113,"97":0.0113,"98":0.0113,"99":0.05652,"100":0.00565,"101":0.00565,"102":0.02261,"103":0.25999,"104":0.0113,"105":0.02826,"106":0.01696,"107":0.03391,"108":0.04522,"109":1.36778,"110":0.03391,"111":0.03956,"112":0.11869,"113":0.09043,"114":0.25999,"115":0.45781,"116":17.63424,"117":3.59467,"118":0.02826,"119":0.01696,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0113,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00565,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00565,"47":0,"48":0,"49":0,"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.00565,"68":0,"69":0.0113,"70":0.00565,"71":0.00565,"72":0.04522,"73":0.0113,"74":0.0113,"75":0,"76":0,"77":0.01696,"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.00565,"96":0,"97":0,"98":0,"99":0,"100":0.12434,"101":0.23738,"102":0.25999,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00565,"18":0.00565,"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.00565,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00565,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00565,"108":0.00565,"109":0.02826,"110":0.00565,"111":0.00565,"112":0.00565,"113":0.0113,"114":0.02826,"115":0.06217,"116":2.1195,"117":1.47517},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00565,"14":0.00565,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00565,"10.1":0,"11.1":0.00565,"12.1":0,"13.1":0.00565,"14.1":0.02261,"15.1":0.0113,"15.2-15.3":0.00565,"15.4":0.00565,"15.5":0.0113,"15.6":0.05652,"16.0":0.00565,"16.1":0.02261,"16.2":0.01696,"16.3":0.03956,"16.4":0.01696,"16.5":0.04522,"16.6":0.29956,"17.0":0.02826,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00601,"6.0-6.1":0,"7.0-7.1":0.01287,"8.1-8.4":0,"9.0-9.2":0.00515,"9.3":0.10726,"10.0-10.2":0.00172,"10.3":0.05063,"11.0-11.2":0.01287,"11.3-11.4":0.03347,"12.0-12.1":0.00686,"12.2-12.5":0.27889,"13.0-13.1":0.00172,"13.2":0.00343,"13.3":0.0103,"13.4-13.7":0.02746,"14.0-14.4":0.07637,"14.5-14.8":0.13558,"15.0-15.1":0.04376,"15.2-15.3":0.05235,"15.4":0.07466,"15.5":0.10812,"15.6-15.7":0.94908,"16.0":0.30978,"16.1":0.42563,"16.2":0.23169,"16.3":0.43335,"16.4":0.13644,"16.5":0.38615,"16.6":4.07005,"17.0":0.50715,"17.1":0.00086},P:{"4":0.15839,"20":0.02112,"21":0.04224,"22":0.60189,"5.0-5.4":0.01056,"6.2-6.4":0.01056,"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.01056,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01056,"18.0":0.01056,"19.0":0.01056},I:{"0":0,"3":0,"4":0.042,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.108},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.13,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":57.3395},R:{_:"0"},M:{"0":0.07826},Q:{"13.1":0.00435},O:{"0":0.39132},H:{"0":0.40341}};
      +module.exports={C:{"56":0.05106,"59":0.01135,"88":0.00567,"107":0.00567,"110":0.00567,"113":0.00567,"115":0.13048,"116":0.00567,"117":0.02269,"118":0.69778,"119":0.06808,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 111 112 114 120 121 122 3.5 3.6"},D:{"38":0.00567,"49":0.02269,"58":0.00567,"66":0.05673,"67":0.00567,"69":0.00567,"70":0.00567,"71":0.00567,"72":0.01702,"73":0.00567,"74":0.00567,"75":0.01702,"76":0.01135,"78":0.01135,"79":0.05106,"80":0.00567,"81":0.00567,"83":0.02269,"84":0.00567,"85":0.01135,"86":0.01135,"87":0.14183,"88":0.01702,"89":0.01135,"90":0.00567,"91":0.03404,"92":0.01702,"93":0.17019,"94":0.05106,"95":0.01135,"96":0.02269,"97":0.01135,"98":0.01135,"99":0.05106,"100":0.01135,"101":0.01135,"102":0.04538,"103":0.48788,"104":0.02269,"105":0.04538,"106":0.03971,"107":0.03971,"108":0.1475,"109":2.51881,"110":0.0624,"111":0.0624,"112":0.10779,"113":0.12481,"114":0.26096,"115":0.2099,"116":1.30479,"117":19.1407,"118":16.54814,"119":0.05106,"120":0.01135,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 68 77 121 122"},F:{"28":0.01135,"36":0.00567,"46":0.00567,"74":0.00567,"95":0.01135,"101":0.00567,"102":1.16864,"103":0.10211,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00567,"18":0.00567,"90":0.00567,"92":0.02837,"100":0.00567,"103":0.03404,"108":0.00567,"109":0.07942,"110":0.00567,"111":0.00567,"112":0.00567,"113":0.02837,"114":0.02837,"115":0.03404,"116":0.07375,"117":4.85042,"118":3.9087,"119":0.01135,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 104 105 106 107"},E:{"13":0.00567,"14":0.01135,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.01135,"12.1":0.00567,"13.1":0.01135,"14.1":0.03404,"15.1":0.01702,"15.2-15.3":0.00567,"15.4":0.01135,"15.5":0.01702,"15.6":0.07942,"16.0":0.00567,"16.1":0.03971,"16.2":0.02269,"16.3":0.05673,"16.4":0.02269,"16.5":0.04538,"16.6":0.34038,"17.0":0.21557,"17.1":0.01135},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00045,"5.0-5.1":0.00045,"6.0-6.1":0.00135,"7.0-7.1":0.00314,"8.1-8.4":0.00045,"9.0-9.2":0.00314,"9.3":0.01078,"10.0-10.2":0.00045,"10.3":0.01572,"11.0-11.2":0.01437,"11.3-11.4":0.00494,"12.0-12.1":0.00404,"12.2-12.5":0.07141,"13.0-13.1":0.00225,"13.2":0.01213,"13.3":0.00449,"13.4-13.7":0.01437,"14.0-14.4":0.03952,"14.5-14.8":0.06378,"15.0-15.1":0.02515,"15.2-15.3":0.02875,"15.4":0.03189,"15.5":0.04536,"15.6-15.7":0.31395,"16.0":0.11588,"16.1":0.22188,"16.2":0.10824,"16.3":0.20077,"16.4":0.04312,"16.5":0.11498,"16.6-16.7":2.15364,"17.0":0.76714,"17.1":0.04626,"17.2":0.00135},P:{"4":0.15105,"20":0.02158,"21":0.03237,"22":0.48552,"23":0.08632,"5.0-5.4":0.01079,"6.2-6.4":0.01079,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0","17.0":0.01079,"18.0":0.01079,"19.0":0.01079},I:{"0":0.06027,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00018},A:{"11":0.49355,_:"6 7 8 9 10 5.5"},K:{"0":0.45001,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.08221},Q:{"13.1":0.00433},O:{"0":0.35481},H:{"0":0},L:{"0":37.99265}};
      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 9409c3b0c0c116..c30e85459463b7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PK.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PK.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00481,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00241,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00241,"103":0.00241,"104":0,"105":0.00241,"106":0.00481,"107":0.00481,"108":0.00481,"109":0.00481,"110":0.00481,"111":0.00481,"112":0,"113":0.00241,"114":0.00241,"115":0.0409,"116":0.00722,"117":0.09624,"118":0.00962,"119":0,"120":0,"3.5":0,"3.6":0.00241},D:{"4":0.00481,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00241,"44":0,"45":0,"46":0,"47":0,"48":0.00241,"49":0.00241,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00241,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00241,"65":0,"66":0.00241,"67":0,"68":0.00481,"69":0.00241,"70":0.00241,"71":0.00241,"72":0.00241,"73":0.00241,"74":0.00481,"75":0.00241,"76":0.00481,"77":0.00241,"78":0.00481,"79":0.00481,"80":0.00722,"81":0.00722,"83":0.00241,"84":0.00481,"85":0.10586,"86":0.00962,"87":0.00481,"88":0.00241,"89":0.00481,"90":0.00241,"91":0.00481,"92":0.00241,"93":0.00722,"94":0,"95":0.00481,"96":0.00241,"97":0.00481,"98":0.00241,"99":0.00241,"100":0.00241,"101":0.00241,"102":0.00481,"103":0.02165,"104":0.00481,"105":0.01925,"106":0.0409,"107":0.05293,"108":0.06015,"109":0.78195,"110":0.03609,"111":0.03609,"112":0.03609,"113":0.00962,"114":0.03368,"115":0.06015,"116":2.40841,"117":0.64721,"118":0.00481,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00241,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01684,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00241,"62":0,"63":0.00241,"64":0,"65":0,"66":0,"67":0.00241,"68":0,"69":0.00722,"70":0.00481,"71":0.01203,"72":0.12271,"73":0.03609,"74":0,"75":0,"76":0,"77":0.01203,"78":0.00241,"79":0.00241,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00241,"92":0.00241,"93":0.00241,"94":0.00241,"95":0.01444,"96":0,"97":0,"98":0,"99":0,"100":0.00722,"101":0.04812,"102":0.04812,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00241,"13":0,"14":0,"15":0.00241,"16":0,"17":0,"18":0.00481,"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.00481,"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.00241,"107":0.00962,"108":0.00962,"109":0.01203,"110":0.00722,"111":0.00241,"112":0.00241,"113":0.00241,"114":0.00241,"115":0.00481,"116":0.12992,"117":0.08902},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00241,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00241,"6.1":0,"7.1":0,"9.1":0.00481,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00241,"14.1":0.00481,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00241,"15.6":0.00962,"16.0":0,"16.1":0.00481,"16.2":0.00241,"16.3":0.00481,"16.4":0.00241,"16.5":0.00481,"16.6":0.02406,"17.0":0.00241,"17.1":0},G:{"8":0,"3.2":0.00092,"4.0-4.1":0,"4.2-4.3":0.00046,"5.0-5.1":0.00415,"6.0-6.1":0,"7.0-7.1":0.06506,"8.1-8.4":0.00092,"9.0-9.2":0.00369,"9.3":0.06321,"10.0-10.2":0.00092,"10.3":0.04199,"11.0-11.2":0.006,"11.3-11.4":0.00554,"12.0-12.1":0.00508,"12.2-12.5":0.22239,"13.0-13.1":0.00138,"13.2":0.00277,"13.3":0.17902,"13.4-13.7":0.01523,"14.0-14.4":0.0669,"14.5-14.8":0.07059,"15.0-15.1":0.02814,"15.2-15.3":0.02538,"15.4":0.02584,"15.5":0.04891,"15.6-15.7":0.7756,"16.0":0.12873,"16.1":0.23808,"16.2":0.09597,"16.3":0.19794,"16.4":0.07751,"16.5":0.17994,"16.6":1.7136,"17.0":0.26484,"17.1":0},P:{"4":0.14295,"20":0.04084,"21":0.09189,"22":0.71473,"5.0-5.4":0.01021,"6.2-6.4":0.02042,"7.2-7.4":0.02042,"8.2":0,"9.2":0.01021,"10.1":0,"11.1-11.2":0.01021,"12.0":0,"13.0":0.02042,"14.0":0,"15.0":0,"16.0":0.02042,"17.0":0.06126,"18.0":0.02042,"19.0":0.03063},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01315,"4.4":0,"4.4.3-4.4.4":0.13812},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00241,"9":0,"10":0,"11":0.02647,"5.5":0},S:{"2.5":0.07594,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.63853},R:{_:"0"},M:{"0":0.06075},Q:{"13.1":0},O:{"0":3.85016},H:{"0":1.40195}};
      +module.exports={C:{"44":0.00282,"47":0.00282,"50":0.00282,"52":0.01128,"72":0.00282,"78":0.00282,"88":0.00282,"91":0.00282,"95":0.00282,"99":0.00564,"102":0.00564,"104":0.00282,"105":0.00846,"106":0.01128,"107":0.01128,"108":0.0141,"109":0.0141,"110":0.01128,"111":0.0141,"112":0.00282,"113":0.00282,"114":0.00564,"115":0.1974,"116":0.00564,"117":0.01974,"118":0.3948,"119":0.08742,"120":0.00282,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 96 97 98 100 101 103 121 122 3.5 3.6"},D:{"38":0.00282,"41":0.00282,"43":0.00282,"47":0.00564,"48":0.00564,"49":0.01128,"50":0.00282,"55":0.00282,"56":0.01692,"57":0.00282,"58":0.00282,"60":0.00564,"62":0.00282,"63":0.00564,"64":0.00564,"65":0.00846,"66":0.01128,"67":0.00282,"68":0.02256,"69":0.00846,"70":0.00846,"71":0.00282,"72":0.01128,"73":0.01974,"74":0.02538,"75":0.0141,"76":0.01128,"77":0.00846,"78":0.00846,"79":0.01692,"80":0.01974,"81":0.00846,"83":0.01974,"84":0.01128,"85":0.30738,"86":0.01692,"87":0.01974,"88":0.00564,"89":0.0141,"90":0.00846,"91":0.01692,"92":0.00846,"93":0.03666,"94":0.00564,"95":0.01974,"96":0.0141,"97":0.0141,"98":0.01128,"99":0.00846,"100":0.00846,"101":0.00846,"102":0.0282,"103":0.09588,"104":0.01692,"105":0.07896,"106":0.14382,"107":0.1833,"108":0.21432,"109":4.28358,"110":0.10716,"111":0.11844,"112":0.12408,"113":0.02256,"114":0.07614,"115":0.06768,"116":0.40608,"117":7.16562,"118":8.97042,"119":0.0282,"120":0.01128,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 51 52 53 54 59 61 121 122"},F:{"28":0.00846,"36":0.00282,"46":0.00564,"79":0.00846,"85":0.00564,"86":0.00282,"90":0.00282,"91":0.00564,"92":0.00564,"93":0.00564,"94":0.00846,"95":0.08178,"96":0.00282,"97":0.00282,"99":0.00282,"101":0.00282,"102":0.31584,"103":0.17202,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 87 88 89 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00564,"14":0.00282,"15":0.00282,"16":0.00564,"17":0.00282,"18":0.01692,"84":0.00282,"89":0.00282,"90":0.00282,"92":0.01974,"100":0.00282,"103":0.00564,"104":0.00282,"105":0.00282,"106":0.01128,"107":0.0282,"108":0.0282,"109":0.03948,"110":0.0282,"111":0.0141,"112":0.00564,"113":0.00282,"114":0.00564,"115":0.00846,"116":0.01974,"117":0.45966,"118":0.48786,"119":0.00282,_:"13 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102"},E:{"13":0.00282,"14":0.00846,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.00846,"9.1":0.00282,"12.1":0.00282,"13.1":0.01128,"14.1":0.01974,"15.1":0.00282,"15.2-15.3":0.00282,"15.4":0.00564,"15.5":0.00564,"15.6":0.03384,"16.0":0.00282,"16.1":0.01692,"16.2":0.01974,"16.3":0.01974,"16.4":0.00846,"16.5":0.0141,"16.6":0.07614,"17.0":0.0564,"17.1":0.00282},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00036,"5.0-5.1":0.00036,"6.0-6.1":0.00107,"7.0-7.1":0.00249,"8.1-8.4":0.00036,"9.0-9.2":0.00249,"9.3":0.00855,"10.0-10.2":0.00036,"10.3":0.01246,"11.0-11.2":0.0114,"11.3-11.4":0.00392,"12.0-12.1":0.00321,"12.2-12.5":0.05662,"13.0-13.1":0.00178,"13.2":0.00962,"13.3":0.00356,"13.4-13.7":0.0114,"14.0-14.4":0.03134,"14.5-14.8":0.05057,"15.0-15.1":0.01994,"15.2-15.3":0.02279,"15.4":0.02529,"15.5":0.03597,"15.6-15.7":0.24893,"16.0":0.09188,"16.1":0.17593,"16.2":0.08583,"16.3":0.15919,"16.4":0.03419,"16.5":0.09117,"16.6-16.7":1.70763,"17.0":0.60827,"17.1":0.03668,"17.2":0.00107},P:{"4":0.19095,"20":0.03182,"21":0.07426,"22":0.60467,"23":0.10608,"5.0-5.4":0.01061,"6.2-6.4":0.01061,"7.2-7.4":0.02122,_:"8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.01061,"13.0":0.01061,"16.0":0.02122,"17.0":0.05304,"18.0":0.01061,"19.0":0.02122},I:{"0":0.07143,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"8":0.00911,"9":0.00304,"10":0.00304,"11":0.10326,_:"6 7 5.5"},K:{"0":1.43524,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.06462,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.04308},Q:{_:"13.1"},O:{"0":3.36742},H:{"0":0.13},L:{"0":63.80638}};
      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 087962302ecdf3..fd4ac7d4d8937c 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00385,"49":0,"50":0,"51":0,"52":0.02308,"53":0,"54":0,"55":0,"56":0.00385,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00385,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00385,"88":0,"89":0,"90":0,"91":0.00385,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00385,"99":0.00385,"100":0,"101":0,"102":0.05386,"103":0.00385,"104":0.00385,"105":0.00385,"106":0.00385,"107":0.00385,"108":0.00385,"109":0.00385,"110":0.00385,"111":0.00385,"112":0.00769,"113":0.01154,"114":0.02308,"115":0.23851,"116":0.08079,"117":1.43878,"118":0.13465,"119":0.00385,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00385,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00385,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00385,"79":0.09618,"80":0.00385,"81":0.00385,"83":0,"84":0,"85":0.01154,"86":0.00385,"87":0.01154,"88":0.00385,"89":0.00769,"90":0.00385,"91":0.00385,"92":0.00385,"93":0.01154,"94":0,"95":0.00385,"96":0,"97":0.00385,"98":0.00385,"99":0.02693,"100":0.00385,"101":0,"102":0.00385,"103":0.01154,"104":0.11926,"105":0.00769,"106":0.01539,"107":0.01539,"108":0.02308,"109":0.42702,"110":0.01539,"111":0.01539,"112":0.01924,"113":0.02308,"114":0.09618,"115":0.09618,"116":4.97802,"117":1.65421,"118":0.00385,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00385,"70":0,"71":0,"72":0.01154,"73":0.00769,"74":0,"75":0,"76":0,"77":0.18081,"78":0.00385,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00769,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00385,"92":0,"93":0,"94":0.00385,"95":0.06925,"96":0,"97":0,"98":0,"99":0.01154,"100":0.40778,"101":0.86942,"102":1.63882,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00385,"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.00385,"107":0.00385,"108":0.00385,"109":0.02308,"110":0.00385,"111":0,"112":0.00385,"113":0.00385,"114":0.01154,"115":0.02693,"116":0.5732,"117":0.5078},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00385,"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.00385,"14.1":0.01539,"15.1":0,"15.2-15.3":0,"15.4":0.00385,"15.5":0.00385,"15.6":0.02693,"16.0":0.00385,"16.1":0.01154,"16.2":0.00769,"16.3":0.02308,"16.4":0.01154,"16.5":0.03462,"16.6":0.14619,"17.0":0.01924,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00533,"10.0-10.2":0,"10.3":0.00933,"11.0-11.2":0.00133,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.05596,"13.0-13.1":0,"13.2":0,"13.3":0.07861,"13.4-13.7":0.00666,"14.0-14.4":0.03731,"14.5-14.8":0.08793,"15.0-15.1":0.02531,"15.2-15.3":0.03997,"15.4":0.04663,"15.5":0.09859,"15.6-15.7":0.68215,"16.0":0.32909,"16.1":0.77408,"16.2":0.33841,"16.3":0.65284,"16.4":0.0866,"16.5":0.32109,"16.6":7.92604,"17.0":1.56682,"17.1":0.00266},P:{"4":0.01009,"20":0.06052,"21":0.12105,"22":2.36042,"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.01009,"12.0":0,"13.0":0.01009,"14.0":0.02017,"15.0":0.01009,"16.0":0.02017,"17.0":0.02017,"18.0":0.03026,"19.0":0.04035},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04385},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00385,"9":0,"10":0,"11":0.00769,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.34986},R:{_:"0"},M:{"0":0.63991},Q:{"13.1":0},O:{"0":0.04307},H:{"0":2.67962}};
      +module.exports={C:{"48":0.00671,"52":0.04026,"68":0.00336,"78":0.01007,"82":0.00336,"87":0.00671,"88":0.00336,"89":0.00336,"91":0.00336,"99":0.00336,"100":0.00336,"102":0.0302,"103":0.00336,"104":0.00336,"105":0.00336,"106":0.00671,"107":0.00336,"108":0.00671,"109":0.00336,"110":0.01007,"111":0.00671,"112":0.01342,"113":0.01007,"114":0.01342,"115":0.47977,"116":0.02013,"117":0.11743,"118":2.47935,"119":0.50325,"120":0.00336,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 90 92 93 94 95 96 97 98 101 121 122 3.5 3.6"},D:{"49":0.00671,"60":0.00336,"78":0.00336,"79":0.20466,"80":0.00336,"81":0.00336,"83":0.00336,"84":0.00336,"85":0.02349,"86":0.00336,"87":0.02349,"88":0.00336,"89":0.01007,"90":0.00336,"91":0.02684,"92":0.00336,"93":0.00336,"95":0.01007,"96":0.00336,"97":0.00336,"98":0.01007,"99":0.05704,"100":0.00671,"101":0.00336,"102":0.00336,"103":0.02349,"104":1.0065,"105":0.01007,"106":0.01342,"107":0.02013,"108":0.0302,"109":0.82869,"110":0.01342,"111":0.04697,"112":0.02349,"113":0.0302,"114":0.10736,"115":0.04697,"116":0.36234,"117":7.28706,"118":7.5823,"119":0.01007,"120":0.00336,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 94 121 122"},F:{"78":0.00336,"79":0.00336,"84":0.00336,"85":0.01007,"86":0.00336,"94":0.00336,"95":0.12749,"96":0.00336,"97":0.00336,"98":0.00336,"99":0.00671,"100":0.01007,"101":0.02349,"102":6.35437,"103":0.71462,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 87 88 89 90 91 92 93 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00336,"107":0.00336,"108":0.00336,"109":0.05033,"110":0.00336,"111":0.00336,"112":0.00336,"113":0.00336,"114":0.01342,"115":0.01007,"116":0.02684,"117":0.98973,"118":1.03334,"119":0.00671,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"13":0.00336,"14":0.01007,"15":0.00336,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.00336,"13.1":0.01007,"14.1":0.0302,"15.1":0.00336,"15.2-15.3":0.00336,"15.4":0.01007,"15.5":0.01342,"15.6":0.05368,"16.0":0.01342,"16.1":0.02349,"16.2":0.02349,"16.3":0.03691,"16.4":0.02013,"16.5":0.05368,"16.6":0.19124,"17.0":0.19795,"17.1":0.01342},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00078,"5.0-5.1":0.00078,"6.0-6.1":0.00233,"7.0-7.1":0.00543,"8.1-8.4":0.00078,"9.0-9.2":0.00543,"9.3":0.01861,"10.0-10.2":0.00078,"10.3":0.02714,"11.0-11.2":0.02482,"11.3-11.4":0.00853,"12.0-12.1":0.00698,"12.2-12.5":0.1233,"13.0-13.1":0.00388,"13.2":0.02094,"13.3":0.00775,"13.4-13.7":0.02482,"14.0-14.4":0.06824,"14.5-14.8":0.11012,"15.0-15.1":0.04343,"15.2-15.3":0.04963,"15.4":0.05506,"15.5":0.07832,"15.6-15.7":0.54205,"16.0":0.20007,"16.1":0.38308,"16.2":0.18689,"16.3":0.34664,"16.4":0.07445,"16.5":0.19852,"16.6-16.7":3.71839,"17.0":1.32451,"17.1":0.07987,"17.2":0.00233},P:{"4":0.01017,"20":0.07119,"21":0.12203,"22":2.19662,"23":0.40678,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1 12.0","9.2":0.01017,"11.1-11.2":0.01017,"13.0":0.01017,"14.0":0.02034,"15.0":0.01017,"16.0":0.03051,"17.0":0.02034,"18.0":0.03051,"19.0":0.06102},I:{"0":0.01983,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"8":0.00336,"11":0.01678,_:"6 7 9 10 5.5"},K:{"0":2.26595,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.48509},Q:{_:"13.1"},O:{"0":0.02658},H:{"0":0},L:{"0":54.10131}};
      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 4d959004ca5583..3f0a47fb3e5151 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00459,"95":0,"96":0,"97":0,"98":0,"99":0.00919,"100":0,"101":0,"102":0.01837,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.05512,"109":0,"110":0,"111":0.00919,"112":0.03674,"113":0.00459,"114":0,"115":0.04593,"116":0.04593,"117":1.0472,"118":0.09645,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.02756,"77":0.00459,"78":0,"79":0,"80":0.00459,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.02297,"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.08727,"104":0,"105":0,"106":0,"107":0,"108":0,"109":1.17581,"110":0,"111":0.07349,"112":0.11023,"113":0,"114":0.23424,"115":0.51442,"116":3.74789,"117":0.77162,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01837,"100":0.36744,"101":0.17453,"102":1.92906,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00919,"115":0,"116":0.71651,"117":0.49604},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00459,"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.00459,"14.1":0.07349,"15.1":0.10105,"15.2-15.3":0.43174,"15.4":0.00459,"15.5":0.01837,"15.6":0.5236,"16.0":0.02756,"16.1":0.20209,"16.2":0.15616,"16.3":0.60168,"16.4":0.1975,"16.5":1.29063,"16.6":4.05562,"17.0":0.21587,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.04168,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.42754,"13.0-13.1":0,"13.2":0,"13.3":0.04168,"13.4-13.7":0,"14.0-14.4":0.0521,"14.5-14.8":0.0521,"15.0-15.1":0.3647,"15.2-15.3":0.5731,"15.4":0.01042,"15.5":0.18756,"15.6-15.7":3.56885,"16.0":0.85965,"16.1":1.71409,"16.2":1.31292,"16.3":2.35492,"16.4":0.54184,"16.5":2.12047,"16.6":33.92755,"17.0":2.3966,"17.1":0},P:{"4":0.02071,"20":0.02071,"21":0.02071,"22":1.16998,"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.02071,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0.18637,"19.0":0.02071},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.47756},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":25.28864},R:{_:"0"},M:{"0":0.18384},Q:{"13.1":0},O:{"0":0},H:{"0":0.14333}};
      +module.exports={C:{"78":0.00448,"91":0.00896,"114":0.02689,"115":0.16583,"116":0.00448,"117":0.04482,"118":0.81572,"119":0.11653,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 101 102 103 104 105 106 107 108 109 110 111 112 113 120 121 122 3.5 3.6"},D:{"49":0.00448,"85":0.00448,"87":0.00448,"88":0.00896,"92":0.01345,"96":0.01793,"103":0.12998,"105":0.01345,"109":0.91433,"111":0.13446,"114":0.03137,"115":0.04482,"116":4.03828,"117":3.88141,"118":2.55026,"119":0.00448,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 86 89 90 91 93 94 95 97 98 99 100 101 102 104 106 107 108 110 112 113 120 121 122"},F:{"100":0.04034,"102":3.82763,"103":0.01345,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.00448,"116":0.01345,"117":1.22359,"118":1.12946,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 119"},E:{"14":0.01345,"15":0.01345,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 17.2","14.1":0.04482,"15.1":0.35408,"15.2-15.3":1.19669,"15.4":0.02241,"15.5":0.1748,"15.6":1.14739,"16.0":0.08068,"16.1":0.88744,"16.2":0.3989,"16.3":1.72557,"16.4":1.17428,"16.5":1.43872,"16.6":11.63975,"17.0":3.57664,"17.1":0.57818},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00439,"5.0-5.1":0.00439,"6.0-6.1":0.01318,"7.0-7.1":0.03076,"8.1-8.4":0.00439,"9.0-9.2":0.03076,"9.3":0.10546,"10.0-10.2":0.00439,"10.3":0.1538,"11.0-11.2":0.14062,"11.3-11.4":0.04834,"12.0-12.1":0.03955,"12.2-12.5":0.69869,"13.0-13.1":0.02197,"13.2":0.11865,"13.3":0.04394,"13.4-13.7":0.14062,"14.0-14.4":0.3867,"14.5-14.8":0.62399,"15.0-15.1":0.24608,"15.2-15.3":0.28123,"15.4":0.31199,"15.5":0.44382,"15.6-15.7":3.07161,"16.0":1.13373,"16.1":2.17078,"16.2":1.05902,"16.3":1.96425,"16.4":0.42185,"16.5":1.12494,"16.6-16.7":21.07062,"17.0":7.50545,"17.1":0.45261,"17.2":0.01318},P:{"22":0.80943,_:"4 20 21 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 13.0 14.0 15.0 16.0 17.0","12.0":0.21067,"18.0":0.09979,"19.0":0.01109},I:{"0":0.03842,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"11":0.00448,_:"6 7 8 9 10 5.5"},K:{"0":0.04414,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.03862},Q:{_:"13.1"},O:{"0":0.02759},H:{"0":0},L:{"0":10.07506}};
      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 d784e7cbec5f84..308060cdf165b0 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":32,"117":32,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.7":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0,"17.0":0,"17.1":0},P:{"4":0,"20":0,"21":0,"22":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,"19.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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":36},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0}};
      +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 3.5 3.6"},D:{"117":33.33,"118":66.67,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 119 120 121 122"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.7":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6-16.7":0,"17.0":0,"17.1":0,"17.2":0},P:{_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{_:"0"},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{_:"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 f2d8d8001007fc..748ed6b79719af 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00398,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01991,"74":0,"75":0,"76":0,"77":0,"78":0.00398,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"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.00398,"103":0,"104":0.01991,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00398,"112":0,"113":0.00398,"114":0.02389,"115":0.03583,"116":0.05573,"117":0.7763,"118":0.04379,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00398,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01194,"66":0,"67":0,"68":0.00398,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00398,"75":0,"76":0.00398,"77":0,"78":0,"79":0.01194,"80":0.03583,"81":0,"83":0.00398,"84":0.00398,"85":0.00398,"86":0,"87":0.01991,"88":0.00398,"89":0.00398,"90":0.00398,"91":0.00398,"92":0,"93":0,"94":0.00398,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00796,"102":0.00398,"103":0.05972,"104":0.00398,"105":0.00796,"106":0.00398,"107":0.00796,"108":0.01194,"109":0.27469,"110":0.00796,"111":0.01592,"112":0.02787,"113":0.04379,"114":0.10749,"115":0.21896,"116":6.40941,"117":1.33364,"118":0.00796,"119":0.00398,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00398,"74":0,"75":0,"76":0,"77":0.01194,"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.00398,"96":0,"97":0.00398,"98":0,"99":0,"100":0.05573,"101":0.14332,"102":0.16322,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00398,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00398,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00398,"108":0.00796,"109":0.01991,"110":0.00398,"111":0.00796,"112":0.00796,"113":0.00796,"114":0.02787,"115":0.05573,"116":1.4451,"117":1.01117},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00398,"9":0.00398,"10":0,"11":0,"12":0,"13":0.01592,"14":0.02787,"15":0.03981,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00796,"10.1":0,"11.1":0,"12.1":0.00398,"13.1":0.03583,"14.1":0.08758,"15.1":0.01592,"15.2-15.3":0.01194,"15.4":0.02389,"15.5":0.05573,"15.6":0.19507,"16.0":0.01194,"16.1":0.09156,"16.2":0.05573,"16.3":0.2309,"16.4":0.05175,"16.5":0.19905,"16.6":1.05497,"17.0":0.07166,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00374,"8.1-8.4":0.00374,"9.0-9.2":0,"9.3":0.03365,"10.0-10.2":0,"10.3":0.01495,"11.0-11.2":0.02243,"11.3-11.4":0.01869,"12.0-12.1":0.00374,"12.2-12.5":0.09347,"13.0-13.1":0,"13.2":0,"13.3":0.00748,"13.4-13.7":0.09347,"14.0-14.4":0.1645,"14.5-14.8":0.33274,"15.0-15.1":0.12338,"15.2-15.3":0.20937,"15.4":0.12712,"15.5":0.29536,"15.6-15.7":1.2562,"16.0":0.97954,"16.1":1.59642,"16.2":0.93841,"16.3":1.53287,"16.4":0.46734,"16.5":1.43566,"16.6":24.96329,"17.0":2.2993,"17.1":0.00748},P:{"4":0.12248,"20":0.08166,"21":0.24497,"22":2.62318,"5.0-5.4":0.01021,"6.2-6.4":0.02041,"7.2-7.4":0.02041,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03062,"12.0":0,"13.0":0.02041,"14.0":0.01021,"15.0":0,"16.0":0.06124,"17.0":0.02041,"18.0":0.06124,"19.0":0.05103},I:{"0":0,"3":0,"4":0.02803,"2.1":0,"2.2":0.00934,"2.3":0.01869,"4.1":0.02803,"4.2-4.3":0.0654,"4.4":0,"4.4.3-4.4.4":0.17752},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01194,"9":0.00398,"10":0.00398,"11":0.01592,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":41.86905},R:{_:"0"},M:{"0":0.29493},Q:{"13.1":0},O:{"0":0.01806},H:{"0":0.19944}};
      +module.exports={C:{"52":0.01151,"73":0.04604,"78":0.01535,"102":0.00384,"105":0.00384,"110":0.01919,"111":0.00384,"113":0.00384,"114":0.06907,"115":0.08825,"116":0.01535,"117":0.19185,"118":1.23168,"119":0.2072,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 106 107 108 109 112 120 121 122 3.5","3.6":0.00384},D:{"44":0.00384,"45":0.00384,"47":0.00384,"49":0.01535,"51":0.00384,"65":0.02686,"68":0.00384,"72":0.00384,"74":0.00384,"75":0.00384,"76":0.00384,"79":0.01919,"80":0.00767,"84":0.00384,"85":0.00384,"87":0.06139,"88":0.00384,"89":0.01535,"91":0.00767,"92":0.00384,"93":0.00767,"94":0.00384,"95":0.00384,"96":0.00384,"97":0.00384,"99":0.00384,"101":0.01151,"102":0.01151,"103":0.1343,"104":0.00767,"105":0.01151,"106":0.01535,"107":0.04221,"108":0.08058,"109":1.00529,"110":0.06139,"111":0.06907,"112":0.07674,"113":0.09209,"114":0.15732,"115":0.19185,"116":1.22784,"117":8.1306,"118":8.69081,"119":0.01919,"120":0.00384,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 46 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 73 77 78 81 83 86 90 98 100 121 122"},F:{"28":0.00384,"73":0.00384,"95":0.01151,"97":0.01151,"100":0.00384,"101":0.00384,"102":1.05134,"103":0.10744,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00384,"90":0.00384,"91":0.00384,"92":0.00767,"106":0.01919,"108":0.00384,"109":0.04604,"110":0.00384,"111":0.02302,"112":0.01535,"113":0.00767,"114":0.01919,"115":0.0307,"116":0.08825,"117":3.15785,"118":3.16936,"119":0.00767,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 93 94 95 96 97 98 99 100 101 102 103 104 105 107"},E:{"9":0.00384,"13":0.01535,"14":0.05756,"15":0.01919,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.01151,"13.1":0.06907,"14.1":0.21487,"15.1":0.08441,"15.2-15.3":0.0307,"15.4":0.09209,"15.5":0.12662,"15.6":0.82112,"16.0":0.06523,"16.1":0.12662,"16.2":0.11127,"16.3":0.56788,"16.4":0.1343,"16.5":0.42591,"16.6":2.4058,"17.0":0.93623,"17.1":0.14581},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00271,"5.0-5.1":0.00271,"6.0-6.1":0.00813,"7.0-7.1":0.01896,"8.1-8.4":0.00271,"9.0-9.2":0.01896,"9.3":0.06502,"10.0-10.2":0.00271,"10.3":0.09482,"11.0-11.2":0.0867,"11.3-11.4":0.0298,"12.0-12.1":0.02438,"12.2-12.5":0.43077,"13.0-13.1":0.01355,"13.2":0.07315,"13.3":0.02709,"13.4-13.7":0.0867,"14.0-14.4":0.23841,"14.5-14.8":0.38471,"15.0-15.1":0.15172,"15.2-15.3":0.17339,"15.4":0.19236,"15.5":0.27363,"15.6-15.7":1.89377,"16.0":0.69899,"16.1":1.33837,"16.2":0.65293,"16.3":1.21104,"16.4":0.26009,"16.5":0.69357,"16.6-16.7":12.99088,"17.0":4.62741,"17.1":0.27905,"17.2":0.00813},P:{"4":0.17758,"20":0.06267,"21":0.22981,"22":2.37119,"23":0.55363,"5.0-5.4":0.01045,"6.2-6.4":0.01045,"7.2-7.4":0.02089,_:"8.2 9.2 10.1 12.0","11.1-11.2":0.02089,"13.0":0.02089,"14.0":0.01045,"15.0":0.01045,"16.0":0.06267,"17.0":0.02089,"18.0":0.07312,"19.0":0.04178},I:{"0":0.04905,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.01919,"10":0.00384,"11":0.03453,_:"6 7 9 5.5"},K:{"0":0.19105,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.31431},Q:{_:"13.1"},O:{"0":0.01849},H:{"0":0},L:{"0":31.50129}};
      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 7227fed2c374e8..14081be332a5d0 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00292,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00292,"109":0.00292,"110":0,"111":0,"112":0,"113":0.00292,"114":0.00292,"115":0.04383,"116":0.02045,"117":0.1724,"118":0.01169,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00292,"36":0,"37":0,"38":0.00292,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00292,"47":0,"48":0,"49":0.00292,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00292,"59":0,"60":0,"61":0,"62":0,"63":0.00292,"64":0,"65":0,"66":0,"67":0,"68":0.00292,"69":0.01461,"70":0,"71":0,"72":0.00292,"73":0.00292,"74":0.01753,"75":0,"76":0,"77":0.04383,"78":0,"79":0.00877,"80":0,"81":0.00877,"83":0.00292,"84":0.00292,"85":0,"86":0.00292,"87":0.00877,"88":0,"89":0.00584,"90":0.00292,"91":0,"92":0.00292,"93":0,"94":0,"95":0.01169,"96":0.00292,"97":0.00292,"98":0.00584,"99":0.00292,"100":0.01461,"101":0.00292,"102":0.00584,"103":0.00584,"104":0.01169,"105":0.00877,"106":0.00584,"107":0.00877,"108":0.01461,"109":0.58732,"110":0.01461,"111":0.01169,"112":0.03506,"113":0.01461,"114":0.04675,"115":0.07305,"116":4.53202,"117":1.23016,"118":0.00292,"119":0.00292,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00292,"47":0,"48":0,"49":0,"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.02338,"73":0.01169,"74":0,"75":0,"76":0,"77":0.00877,"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.00584,"96":0,"97":0,"98":0,"99":0,"100":0.01169,"101":0.06721,"102":0.06428,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00292,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00292,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00292,"108":0.00292,"109":0.00584,"110":0.00292,"111":0,"112":0.00292,"113":0.00292,"114":0.00877,"115":0.01461,"116":0.36525,"117":0.24837},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00292,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00584,"6.1":0,"7.1":0,"9.1":0.01753,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00292,"14.1":0.00584,"15.1":0,"15.2-15.3":0,"15.4":0.00292,"15.5":0.00584,"15.6":0.01461,"16.0":0.00292,"16.1":0.01461,"16.2":0.00584,"16.3":0.02045,"16.4":0.00584,"16.5":0.01753,"16.6":0.08182,"17.0":0.01461,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00143,"6.0-6.1":0,"7.0-7.1":0.03587,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04591,"10.0-10.2":0,"10.3":0.01578,"11.0-11.2":0.00287,"11.3-11.4":0,"12.0-12.1":0.01148,"12.2-12.5":0.12483,"13.0-13.1":0.00143,"13.2":0,"13.3":0.16644,"13.4-13.7":0.01435,"14.0-14.4":0.08896,"14.5-14.8":0.23674,"15.0-15.1":0.033,"15.2-15.3":0.06313,"15.4":0.08752,"15.5":0.13057,"15.6-15.7":1.31715,"16.0":0.60836,"16.1":0.57536,"16.2":0.30992,"16.3":0.67723,"16.4":0.12626,"16.5":0.4864,"16.6":7.86989,"17.0":1.08758,"17.1":0.00287},P:{"4":0.07076,"20":0.12131,"21":0.27294,"22":2.71926,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06065,"8.2":0,"9.2":0.01011,"10.1":0.01011,"11.1-11.2":0.06065,"12.0":0.01011,"13.0":0.06065,"14.0":0.05054,"15.0":0.03033,"16.0":0.10109,"17.0":0.09098,"18.0":0.06065,"19.0":0.13141},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09922},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00877,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.92239},R:{_:"0"},M:{"0":0.09909},Q:{"13.1":0},O:{"0":0.07078},H:{"0":0.28144}};
      +module.exports={C:{"52":0.01192,"103":0.00397,"108":0.00795,"111":0.00397,"115":0.19473,"116":0.00795,"117":0.03974,"118":0.49278,"119":0.07551,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 109 110 112 113 114 120 121 122 3.5 3.6"},D:{"38":0.00397,"49":0.01192,"51":0.00397,"56":0.00397,"57":0.00397,"58":0.01192,"63":0.00795,"68":0.00397,"69":0.00397,"72":0.00397,"73":0.00397,"74":0.00397,"76":0.00397,"77":0.04769,"78":0.0159,"79":0.04769,"81":0.00795,"83":0.00795,"84":0.00795,"85":0.00397,"86":0.00795,"87":0.01987,"88":0.00397,"89":0.00795,"90":0.00397,"91":0.00397,"92":0.00397,"93":0.00795,"94":0.00397,"95":0.00795,"96":0.00795,"97":0.00795,"98":0.0159,"99":0.00795,"100":0.04769,"101":0.01192,"102":0.01987,"103":0.02384,"104":0.01192,"105":0.00795,"106":0.02384,"107":0.03179,"108":0.03179,"109":2.30889,"110":0.01987,"111":0.03179,"112":0.05564,"113":0.02782,"114":0.06358,"115":0.07551,"116":0.65968,"117":15.22439,"118":13.59903,"119":0.01192,"120":0.00397,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 59 60 61 62 64 65 66 67 70 71 75 80 121 122"},F:{"46":0.00795,"79":0.00397,"85":0.00397,"89":0.00397,"95":0.0159,"101":0.00397,"102":0.5802,"103":0.11922,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00795,"17":0.00397,"18":0.01192,"84":0.00397,"92":0.00795,"106":0.01192,"108":0.00397,"109":0.01192,"111":0.00795,"112":0.00397,"113":0.00397,"114":0.01192,"115":0.0159,"116":0.03974,"117":1.4823,"118":1.45051,"119":0.00397,_:"12 13 14 15 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 107 110"},E:{"14":0.00795,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 16.0 17.2","5.1":0.02782,"11.1":0.00397,"12.1":0.00397,"13.1":0.00397,"14.1":0.03577,"15.1":0.00795,"15.2-15.3":0.00397,"15.4":0.00397,"15.5":0.01987,"15.6":0.06756,"16.1":0.03974,"16.2":0.02384,"16.3":0.05166,"16.4":0.01987,"16.5":0.06358,"16.6":0.29805,"17.0":0.22652,"17.1":0.00397},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00143,"5.0-5.1":0.00143,"6.0-6.1":0.00428,"7.0-7.1":0.01,"8.1-8.4":0.00143,"9.0-9.2":0.01,"9.3":0.03427,"10.0-10.2":0.00143,"10.3":0.04998,"11.0-11.2":0.04569,"11.3-11.4":0.01571,"12.0-12.1":0.01285,"12.2-12.5":0.22704,"13.0-13.1":0.00714,"13.2":0.03855,"13.3":0.01428,"13.4-13.7":0.04569,"14.0-14.4":0.12566,"14.5-14.8":0.20277,"15.0-15.1":0.07996,"15.2-15.3":0.09139,"15.4":0.10138,"15.5":0.14422,"15.6-15.7":0.99812,"16.0":0.3684,"16.1":0.70539,"16.2":0.34413,"16.3":0.63828,"16.4":0.13708,"16.5":0.36555,"16.6-16.7":6.8469,"17.0":2.4389,"17.1":0.14708,"17.2":0.00428},P:{"4":0.0408,"20":0.0816,"21":0.1122,"22":1.72377,"23":0.2346,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.0306,"11.1-11.2":0.0408,"13.0":0.0408,"14.0":0.0408,"15.0":0.0102,"16.0":0.0714,"17.0":0.0408,"18.0":0.0306,"19.0":0.0918},I:{"0":0.06594,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"11":0.03974,_:"6 7 8 9 10 5.5"},K:{"0":0.1687,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.08435},Q:{_:"13.1"},O:{"0":0.04218},H:{"0":0},L:{"0":44.3512}};
      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 2ec5f1d4fd7670..6d6e6c0c51b10d 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.0058,"51":0,"52":0.0232,"53":0,"54":0.0058,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0116,"79":0,"80":0,"81":0,"82":0,"83":0.0116,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0058,"92":0,"93":0,"94":0,"95":0.0058,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.029,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.0058,"109":0,"110":0.0058,"111":0.0116,"112":0.0058,"113":0.0058,"114":0.0058,"115":0.1276,"116":0.1276,"117":1.4268,"118":0.1508,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0058,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0232,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.0058,"58":0,"59":0,"60":0.0116,"61":0,"62":0,"63":0.0116,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0058,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0058,"79":0.0174,"80":0.0058,"81":0.0058,"83":0.0058,"84":0.0116,"85":0.0174,"86":0.0058,"87":0.0116,"88":0.0116,"89":0.0406,"90":0.0058,"91":0.0406,"92":0.0058,"93":0.0406,"94":0.0058,"95":0.0058,"96":0,"97":0.0058,"98":0,"99":0.029,"100":0.0116,"101":0.0058,"102":0.0058,"103":0.0638,"104":0.0116,"105":0.0232,"106":0.029,"107":0.0232,"108":0.029,"109":0.9164,"110":0.0232,"111":0.0232,"112":0.0406,"113":0.0348,"114":0.1566,"115":0.5104,"116":13.7402,"117":5.51,"118":0.0116,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0058,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0058,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0058,"72":0.029,"73":0.0116,"74":0,"75":0,"76":0,"77":0.0232,"78":0,"79":0,"80":0,"81":0,"82":0.0058,"83":0,"84":0,"85":0.0058,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0058,"95":0.0174,"96":0,"97":0,"98":0,"99":0.0116,"100":0.3828,"101":0.6786,"102":1.943,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.0058,"14":0.0058,"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.0058,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.0058,"108":0.0058,"109":0.058,"110":0.0058,"111":0.0058,"112":0.0058,"113":0.0116,"114":0.522,"115":0.0696,"116":1.827,"117":1.8792},E:{"4":0,"5":0,"6":0,"7":0,"8":0.0058,"9":0,"10":0,"11":0,"12":0,"13":0.0058,"14":0.0232,"15":0.0058,_:"0","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.0058,"13.1":0.0406,"14.1":0.0928,"15.1":0.0058,"15.2-15.3":0.0116,"15.4":0.0174,"15.5":0.029,"15.6":0.145,"16.0":0.0232,"16.1":0.058,"16.2":0.0406,"16.3":0.1044,"16.4":0.0464,"16.5":0.1798,"16.6":0.7772,"17.0":0.0696,"17.1":0},G:{"8":0.01583,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00198,"6.0-6.1":0,"7.0-7.1":0.00198,"8.1-8.4":0.00198,"9.0-9.2":0,"9.3":0.07123,"10.0-10.2":0,"10.3":0.06133,"11.0-11.2":0.00791,"11.3-11.4":0.01187,"12.0-12.1":0.00594,"12.2-12.5":0.39768,"13.0-13.1":0,"13.2":0,"13.3":0.14641,"13.4-13.7":0.08508,"14.0-14.4":0.11475,"14.5-14.8":0.18005,"15.0-15.1":0.06529,"15.2-15.3":0.04946,"15.4":0.06529,"15.5":0.12267,"15.6-15.7":1.14359,"16.0":0.54211,"16.1":0.89429,"16.2":0.38977,"16.3":0.83889,"16.4":0.16224,"16.5":0.56784,"16.6":11.55456,"17.0":1.94686,"17.1":0.00791},P:{"4":0.03095,"20":0.02063,"21":0.0619,"22":1.68173,"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.01032,"12.0":0.01032,"13.0":0.01032,"14.0":0,"15.0":0,"16.0":0.02063,"17.0":0.01032,"18.0":0.01032,"19.0":0.02063},I:{"0":0,"3":0,"4":0.0052,"2.1":0,"2.2":0,"2.3":0.0208,"4.1":0.0052,"4.2-4.3":0.026,"4.4":0,"4.4.3-4.4.4":0.1144},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00633,"9":0.00633,"10":0,"11":0.05695,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.336},R:{_:"0"},M:{"0":0.3024},Q:{"13.1":0.0042},O:{"0":0.1638},H:{"0":0.29822}};
      +module.exports={C:{"7":0.00612,"50":0.00612,"52":0.03059,"54":0.00612,"78":0.01223,"82":0.00612,"83":0.01223,"91":0.00612,"95":0.00612,"97":0.00612,"102":0.01223,"103":0.00612,"104":0.00612,"106":0.00612,"108":0.00612,"111":0.01223,"112":0.00612,"113":0.00612,"114":0.00612,"115":0.19574,"116":0.01835,"117":0.16516,"118":2.02473,"119":0.44654,_:"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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 84 85 86 87 88 89 90 92 93 94 96 98 99 100 101 105 107 109 110 120 121 122 3.5 3.6"},D:{"38":0.00612,"47":0.00612,"49":0.02447,"55":0.00612,"57":0.00612,"60":0.02447,"63":0.01835,"76":0.00612,"78":0.00612,"79":0.02447,"80":0.01223,"81":0.00612,"83":0.00612,"85":0.01835,"86":0.00612,"87":0.02447,"88":0.01223,"89":0.06729,"90":0.01223,"91":0.07952,"92":0.00612,"93":0.0734,"94":0.00612,"95":0.00612,"96":0.01223,"98":0.00612,"99":0.01223,"100":0.02447,"101":0.00612,"102":0.01223,"103":0.0734,"104":0.01223,"105":0.02447,"106":0.02447,"107":0.06117,"108":0.04282,"109":1.32127,"110":0.02447,"111":0.02447,"112":0.05505,"113":0.0367,"114":0.20798,"115":0.26915,"116":1.05824,"117":17.43957,"118":18.98717,"119":0.03059,"120":0.00612,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 56 58 59 61 62 64 65 66 67 68 69 70 71 72 73 74 75 77 84 97 121 122"},F:{"28":0.00612,"85":0.00612,"95":0.03059,"96":0.00612,"99":0.00612,"100":0.00612,"101":0.01223,"102":6.4779,"103":0.5383,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00612,"13":0.00612,"14":0.00612,"15":0.00612,"92":0.01223,"103":0.00612,"106":0.00612,"107":0.00612,"108":0.01223,"109":0.09176,"110":0.00612,"111":0.00612,"112":0.00612,"113":0.01223,"114":0.05505,"115":0.01835,"116":0.0734,"117":2.97286,"118":3.51728,"119":0.01835,_:"16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104 105"},E:{"13":0.00612,"14":0.03059,"15":0.01223,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.00612,"13.1":0.0734,"14.1":0.15293,"15.1":0.01223,"15.2-15.3":0.01835,"15.4":0.02447,"15.5":0.04282,"15.6":0.20798,"16.0":0.03059,"16.1":0.11011,"16.2":0.06729,"16.3":0.17128,"16.4":0.09787,"16.5":0.22021,"16.6":0.85638,"17.0":0.65452,"17.1":0.0367},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00112,"5.0-5.1":0.00112,"6.0-6.1":0.00335,"7.0-7.1":0.00781,"8.1-8.4":0.00112,"9.0-9.2":0.00781,"9.3":0.02678,"10.0-10.2":0.00112,"10.3":0.03905,"11.0-11.2":0.0357,"11.3-11.4":0.01227,"12.0-12.1":0.01004,"12.2-12.5":0.17739,"13.0-13.1":0.00558,"13.2":0.03012,"13.3":0.01116,"13.4-13.7":0.0357,"14.0-14.4":0.09818,"14.5-14.8":0.15843,"15.0-15.1":0.06248,"15.2-15.3":0.0714,"15.4":0.07921,"15.5":0.11268,"15.6-15.7":0.77987,"16.0":0.28785,"16.1":0.55115,"16.2":0.26888,"16.3":0.49871,"16.4":0.10711,"16.5":0.28562,"16.6-16.7":5.34972,"17.0":1.90559,"17.1":0.11492,"17.2":0.00335},P:{"4":0.021,"20":0.0105,"21":0.04199,"22":1.23882,"23":0.28346,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 14.0 15.0","12.0":0.0105,"13.0":0.0105,"16.0":0.0105,"17.0":0.0105,"18.0":0.0105,"19.0":0.021},I:{"0":0.05021,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.00765,"9":0.00765,"11":0.07646,_:"6 7 10 5.5"},K:{"0":0.26398,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.23292},Q:{_:"13.1"},O:{"0":0.11258},H:{"0":0},L:{"0":25.6693}};
      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 7741c410cef600..1b05f517091932 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PW.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PW.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00513,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00513,"115":0.08718,"116":0.05641,"117":0.89227,"118":0.03077,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00513,"44":0,"45":0,"46":0,"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.00513,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03077,"79":0.01538,"80":0,"81":0,"83":0.02564,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.03077,"94":0.00513,"95":0.01026,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.23076,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.3846,"110":0,"111":0.01538,"112":1.23072,"113":0.1282,"114":0.2205,"115":0.07179,"116":14.51737,"117":2.02043,"118":0.00513,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01538,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00513,"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.00513,"101":0.07692,"102":0.21538,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00513,"108":0,"109":0.00513,"110":0,"111":0.00513,"112":0.01026,"113":0,"114":0.00513,"115":0.02051,"116":0.43588,"117":0.38973},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.02051,"13":0,"14":0,"15":0.00513,_:"0","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.01026,"14.1":0.03077,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.01026,"15.6":0.02564,"16.0":0.00513,"16.1":0.19999,"16.2":0.01538,"16.3":0.01026,"16.4":0.02564,"16.5":0.0923,"16.6":3.36397,"17.0":0.01538,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.23037,"10.0-10.2":0.09754,"10.3":0,"11.0-11.2":0.0249,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.0083,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.33622,"14.0-14.4":0.0249,"14.5-14.8":0.10792,"15.0-15.1":0.26358,"15.2-15.3":0.0249,"15.4":0.0166,"15.5":0.0249,"15.6-15.7":0.60809,"16.0":0.68904,"16.1":0.48357,"16.2":1.20581,"16.3":0.19716,"16.4":0.2781,"16.5":0.18886,"16.6":13.38224,"17.0":2.4303,"17.1":0},P:{"4":0,"20":0.11169,"21":0.02031,"22":2.36583,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.70061,"8.2":0,"9.2":0.02031,"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.02031,"18.0":0,"19.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.22974},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.22043},R:{_:"0"},M:{"0":0.05359},Q:{"13.1":0},O:{"0":0.08282},H:{"0":0.17527}};
      +module.exports={C:{"115":0.00472,"116":0.01417,"117":0.00472,"118":0.65636,"119":0.07555,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 120 121 122 3.5 3.6"},D:{"75":0.00472,"79":0.07555,"83":0.01417,"87":0.1936,"92":0.00472,"95":0.00472,"97":0.00472,"102":0.00472,"103":0.09916,"104":0.00472,"107":0.01417,"109":0.76024,"112":0.65636,"114":0.02833,"115":0.01417,"116":1.30799,"117":12.15915,"118":22.00924,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 80 81 84 85 86 88 89 90 91 93 94 96 98 99 100 101 105 106 108 110 111 113 119 120 121 122"},F:{"102":0.07555,"103":0.23138,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"108":0.00472,"109":0.12749,"111":0.00472,"112":0.02833,"116":0.02833,"117":1.4166,"118":1.69992,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 113 114 115 119"},E:{"11":0.00472,"14":0.01889,_:"0 4 5 6 7 8 9 10 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 17.2","13.1":0.03305,"14.1":0.10388,"15.5":0.05666,"15.6":0.14638,"16.1":0.56664,"16.2":0.00472,"16.3":0.00472,"16.4":0.07083,"16.5":0.13222,"16.6":1.25605,"17.0":0.25971,"17.1":0.00472},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0013,"5.0-5.1":0.0013,"6.0-6.1":0.0039,"7.0-7.1":0.0091,"8.1-8.4":0.0013,"9.0-9.2":0.0091,"9.3":0.03119,"10.0-10.2":0.0013,"10.3":0.04549,"11.0-11.2":0.04159,"11.3-11.4":0.0143,"12.0-12.1":0.0117,"12.2-12.5":0.20666,"13.0-13.1":0.0065,"13.2":0.03509,"13.3":0.013,"13.4-13.7":0.04159,"14.0-14.4":0.11438,"14.5-14.8":0.18456,"15.0-15.1":0.07278,"15.2-15.3":0.08318,"15.4":0.09228,"15.5":0.13127,"15.6-15.7":0.90851,"16.0":0.33533,"16.1":0.64206,"16.2":0.31323,"16.3":0.58098,"16.4":0.12477,"16.5":0.33273,"16.6-16.7":6.23218,"17.0":2.21993,"17.1":0.13387,"17.2":0.0039},P:{"20":0.02068,"21":0.02068,"22":2.32692,"23":1.00316,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.70325,"17.0":0.02068,"19.0":0.02068},I:{"0":0.01575,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.14248,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.06332},Q:{"13.1":0.04222},O:{"0":0.09499},H:{"0":0},L:{"0":36.00616}};
      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 9463f4042107a2..0f9a3fc4c98e53 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PY.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PY.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00616,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00616,"46":0,"47":0.00924,"48":0,"49":0,"50":0.00308,"51":0,"52":0.0462,"53":0,"54":0.00308,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01232,"74":0,"75":0,"76":0,"77":0,"78":0.00308,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00616,"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.00308,"103":0.00308,"104":0,"105":0,"106":0,"107":0.00616,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00308,"114":0.00308,"115":0.077,"116":0.02464,"117":0.3234,"118":0.03388,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00308,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00616,"48":0,"49":0.00924,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00308,"56":0,"57":0.00308,"58":0,"59":0,"60":0.00924,"61":0,"62":0,"63":0,"64":0.00616,"65":0.00616,"66":0,"67":0,"68":0.00616,"69":0.00308,"70":0.00308,"71":0.00308,"72":0,"73":0.00616,"74":0,"75":0,"76":0,"77":0.00308,"78":0,"79":0.01848,"80":0.00308,"81":0.00616,"83":0.00308,"84":0,"85":0.00308,"86":0.00616,"87":0.1848,"88":0.00616,"89":0.01232,"90":0.00308,"91":0.0924,"92":0,"93":0.00308,"94":0.00308,"95":0.00308,"96":0.00308,"97":0.00308,"98":0,"99":0.00616,"100":0.00308,"101":0.00308,"102":0.00616,"103":0.01232,"104":0.00308,"105":0.00616,"106":0.00616,"107":0.01232,"108":0.01232,"109":0.64064,"110":0.00616,"111":0.0154,"112":0.01848,"113":0.01232,"114":0.03696,"115":0.154,"116":4.389,"117":1.14268,"118":0.00308,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00308,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00616,"70":0,"71":0,"72":0.01848,"73":0.00616,"74":0,"75":0,"76":0,"77":0.01848,"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.01232,"96":0,"97":0,"98":0,"99":0.00308,"100":0.07392,"101":0.17556,"102":0.18788,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00308,"13":0.00308,"14":0.00308,"15":0,"16":0,"17":0,"18":0.00308,"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.00308,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01232,"102":0.00308,"103":0.00308,"104":0,"105":0,"106":0,"107":0.00308,"108":0,"109":0.00616,"110":0,"111":0,"112":0.00308,"113":0.00308,"114":0.00924,"115":0.01848,"116":0.47124,"117":0.31416},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00616,"14":0.00308,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00308,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00308,"14.1":0.00616,"15.1":0,"15.2-15.3":0,"15.4":0.00924,"15.5":0.00308,"15.6":0.01232,"16.0":0.00308,"16.1":0.00924,"16.2":0.00308,"16.3":0.01232,"16.4":0.00308,"16.5":0.0154,"16.6":0.10164,"17.0":0.00616,"17.1":0},G:{"8":0,"3.2":0.00291,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00194,"6.0-6.1":0.00097,"7.0-7.1":0.02036,"8.1-8.4":0.00679,"9.0-9.2":0.00097,"9.3":0.02715,"10.0-10.2":0,"10.3":0.01261,"11.0-11.2":0.03103,"11.3-11.4":0.00388,"12.0-12.1":0.00776,"12.2-12.5":0.14739,"13.0-13.1":0.00194,"13.2":0.00097,"13.3":0.02133,"13.4-13.7":0.01939,"14.0-14.4":0.04654,"14.5-14.8":0.12509,"15.0-15.1":0.01648,"15.2-15.3":0.02036,"15.4":0.02521,"15.5":0.05624,"15.6-15.7":1.08407,"16.0":0.20751,"16.1":0.32968,"16.2":0.15805,"16.3":0.34326,"16.4":0.20751,"16.5":0.40338,"16.6":5.64919,"17.0":0.50325,"17.1":0},P:{"4":0.447,"20":0.15239,"21":0.2743,"22":2.85472,"5.0-5.4":0.01016,"6.2-6.4":0.02032,"7.2-7.4":0.56891,"8.2":0,"9.2":0.03048,"10.1":0.01016,"11.1-11.2":0.06095,"12.0":0.01016,"13.0":0.06095,"14.0":0.04064,"15.0":0.04064,"16.0":0.2235,"17.0":0.2235,"18.0":0.06095,"19.0":0.13207},I:{"0":0,"3":0,"4":0.01653,"2.1":0,"2.2":0.00827,"2.3":0.04134,"4.1":0.01653,"4.2-4.3":0.01653,"4.4":0,"4.4.3-4.4.4":0.15707},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00924,"9":0.00308,"10":0.00308,"11":0.01232,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":73.37232},R:{_:"0"},M:{"0":0.12456},Q:{"13.1":0},O:{"0":0.04844},H:{"0":0.41274}};
      +module.exports={C:{"7":0.01813,"17":0.00302,"24":0.00302,"30":0.00302,"35":0.01813,"42":0.01209,"43":0.00302,"45":0.00907,"47":0.00302,"50":0.03626,"52":0.16319,"54":0.04231,"59":0.00302,"60":0.00302,"61":0.00302,"64":0.00302,"65":0.00302,"66":0.00302,"73":0.02418,"78":0.00302,"80":0.00302,"88":0.01511,"89":0.00302,"93":0.00604,"98":0.00604,"102":0.01511,"103":0.00907,"107":0.00302,"108":0.00302,"110":0.00302,"111":0.00302,"113":0.00604,"114":0.00604,"115":0.3022,"116":0.00907,"117":0.0272,"118":0.80687,"119":0.13599,_:"2 3 4 5 6 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 25 26 27 28 29 31 32 33 34 36 37 38 39 40 41 44 46 48 49 51 53 55 56 57 58 62 63 67 68 69 70 71 72 74 75 76 77 79 81 82 83 84 85 86 87 90 91 92 94 95 96 97 99 100 101 104 105 106 109 112 120 121 122 3.5 3.6"},D:{"11":0.0272,"31":0.00302,"38":0.00302,"39":0.00302,"43":0.00302,"44":0.00302,"45":0.00302,"46":0.00302,"47":0.02418,"49":0.01813,"51":0.00302,"55":0.01813,"57":0.03929,"60":0.11484,"64":0.01511,"65":0.01209,"67":0.00302,"68":0.01511,"69":0.01209,"70":0.00302,"71":0.00302,"73":0.01813,"74":0.00302,"75":0.00302,"77":0.00302,"78":0.00302,"79":0.03626,"80":0.00302,"81":0.00604,"83":0.01209,"84":0.00604,"85":0.00604,"86":0.00604,"87":0.55605,"88":0.00907,"89":0.03022,"90":0.00604,"91":0.40495,"92":0.00302,"93":0.01511,"94":0.00302,"95":0.00302,"96":0.00907,"97":0.01209,"98":0.00302,"99":0.00907,"100":0.00604,"101":0.00302,"102":0.01813,"103":0.02418,"104":0.00907,"105":0.00907,"106":0.00604,"107":0.02418,"108":0.03324,"109":1.89177,"110":0.00907,"111":0.03022,"112":0.03929,"113":0.01813,"114":0.06044,"115":0.06951,"116":0.57418,"117":8.80006,"118":8.5855,"119":0.01209,"120":0.00907,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 40 41 42 48 50 52 53 54 56 58 59 61 62 63 66 72 76 121 122"},F:{"28":0.00302,"85":0.00907,"95":0.02418,"100":0.00302,"101":0.00302,"102":1.24809,"103":0.12995,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01813,"13":0.04231,"14":0.04231,"15":0.02115,"17":0.00604,"18":0.00604,"85":0.00302,"91":0.00302,"92":0.00907,"96":0.00302,"100":0.00302,"101":0.04231,"102":0.00604,"103":0.00907,"107":0.00302,"108":0.00302,"109":0.03626,"110":0.01511,"111":0.00302,"112":0.00302,"113":0.00907,"114":0.01813,"115":0.01511,"116":0.03929,"117":1.4143,"118":1.45358,"119":0.00907,_:"16 79 80 81 83 84 86 87 88 89 90 93 94 95 97 98 99 104 105 106"},E:{"8":0.00302,"9":0.00604,"13":0.02418,"14":0.00302,"15":0.00302,_:"0 4 5 6 7 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.2","5.1":0.00907,"13.1":0.00907,"14.1":0.0272,"15.1":0.00302,"15.2-15.3":0.00604,"15.4":0.02418,"15.5":0.00604,"15.6":0.03626,"16.0":0.00604,"16.1":0.0272,"16.2":0.00907,"16.3":0.03929,"16.4":0.00604,"16.5":0.02418,"16.6":0.275,"17.0":0.13599,"17.1":0.00907},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00066,"5.0-5.1":0.00066,"6.0-6.1":0.00198,"7.0-7.1":0.00462,"8.1-8.4":0.00066,"9.0-9.2":0.00462,"9.3":0.01584,"10.0-10.2":0.00066,"10.3":0.0231,"11.0-11.2":0.02112,"11.3-11.4":0.00726,"12.0-12.1":0.00594,"12.2-12.5":0.10496,"13.0-13.1":0.0033,"13.2":0.01782,"13.3":0.0066,"13.4-13.7":0.02112,"14.0-14.4":0.05809,"14.5-14.8":0.09374,"15.0-15.1":0.03697,"15.2-15.3":0.04225,"15.4":0.04687,"15.5":0.06667,"15.6-15.7":0.46142,"16.0":0.17031,"16.1":0.3261,"16.2":0.15909,"16.3":0.29507,"16.4":0.06337,"16.5":0.16899,"16.6-16.7":3.16527,"17.0":1.12748,"17.1":0.06799,"17.2":0.00198},P:{"4":0.36758,"20":0.11232,"21":0.26548,"22":2.48119,"23":0.45948,"5.0-5.4":0.01021,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.5718,"9.2":0.02042,"11.1-11.2":0.04084,"12.0":0.01021,"13.0":0.08169,"14.0":0.03063,"15.0":0.02042,"16.0":0.23485,"17.0":0.14295,"18.0":0.05105,"19.0":0.10211},I:{"0":0.09025,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00027},A:{"7":0.00302,"8":0.01511,"9":0.03929,"10":0.00302,"11":0.07857,_:"6 5.5"},K:{"0":0.35286,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.11165},Q:{_:"13.1"},O:{"0":0.0628},H:{"0":0.01},L:{"0":58.51686}};
      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 38483d7b94f021..9ca55883e71f0f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0.06449,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00537,"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.00269,"103":0,"104":0,"105":0,"106":0,"107":0.01075,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00269,"114":0,"115":0.01612,"116":0.01344,"117":0.11823,"118":0.00806,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00269,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00806,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00269,"69":0.00269,"70":0,"71":0.00269,"72":0,"73":0,"74":0,"75":0,"76":0.00269,"77":0,"78":0,"79":0.00806,"80":0,"81":0,"83":0,"84":0.00269,"85":0,"86":0.00269,"87":0.00537,"88":0.00537,"89":0,"90":0,"91":0.00269,"92":0,"93":0.00269,"94":0,"95":0.00269,"96":0.00269,"97":0.00269,"98":0.00269,"99":0.00537,"100":0.00269,"101":0.00269,"102":0.00269,"103":0.02418,"104":0.00269,"105":0.00269,"106":0.00537,"107":0.00537,"108":0.01881,"109":0.27945,"110":0.00537,"111":0.00806,"112":0.01612,"113":0.01881,"114":0.05374,"115":0.09405,"116":3.54415,"117":0.64757,"118":0.00269,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00269,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01075,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00537,"70":0.00269,"71":0.00269,"72":0.09942,"73":0.02956,"74":0.00269,"75":0,"76":0,"77":0.05643,"78":0.00269,"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.00269,"96":0,"97":0,"98":0,"99":0.00269,"100":0.01881,"101":0.07524,"102":0.0833,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00269,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00269,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00269,"104":0.00269,"105":0.00269,"106":0,"107":0,"108":0,"109":0.00806,"110":0.00269,"111":0.00269,"112":0.00269,"113":0.00269,"114":0.00806,"115":0.03224,"116":0.5374,"117":0.28482},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00537,"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.00806,"14.1":0.01881,"15.1":0.00269,"15.2-15.3":0.00269,"15.4":0.00537,"15.5":0.01075,"15.6":0.05105,"16.0":0.00537,"16.1":0.01612,"16.2":0.01075,"16.3":0.04299,"16.4":0.01881,"16.5":0.04568,"16.6":0.27945,"17.0":0.02687,"17.1":0},G:{"8":0.00322,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00161,"6.0-6.1":0,"7.0-7.1":0.01447,"8.1-8.4":0,"9.0-9.2":0.00482,"9.3":0.02734,"10.0-10.2":0,"10.3":0.02573,"11.0-11.2":0.01286,"11.3-11.4":0,"12.0-12.1":0.00643,"12.2-12.5":0.15116,"13.0-13.1":0.00161,"13.2":0.00322,"13.3":0.01286,"13.4-13.7":0.0193,"14.0-14.4":0.08523,"14.5-14.8":0.15598,"15.0-15.1":0.0595,"15.2-15.3":0.04985,"15.4":0.06432,"15.5":0.09648,"15.6-15.7":1.12404,"16.0":0.39076,"16.1":0.52905,"16.2":0.31196,"16.3":0.66896,"16.4":0.14955,"16.5":0.59177,"16.6":10.03433,"17.0":1.30253,"17.1":0.00322},P:{"4":0.04051,"20":0.06077,"21":0.10128,"22":2.03574,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03038,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01013,"12.0":0,"13.0":0.01013,"14.0":0.02026,"15.0":0,"16.0":0.02026,"17.0":0.02026,"18.0":0.02026,"19.0":0.04051},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07612},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01075,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.43525},R:{_:"0"},M:{"0":0.10238},Q:{"13.1":0},O:{"0":4.19766},H:{"0":1.5924}};
      +module.exports={C:{"5":0.26019,"52":0.00266,"66":0.00266,"68":0.00531,"78":0.00266,"88":0.02124,"96":0.01328,"98":0.00266,"106":0.00266,"107":0.00266,"111":0.00266,"113":0.00266,"114":0.00266,"115":0.05045,"116":0.00266,"117":0.02655,"118":0.46463,"119":0.07434,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 97 99 100 101 102 103 104 105 108 109 110 112 120 121 122 3.5 3.6"},D:{"38":0.00531,"41":0.00266,"49":0.00531,"53":0.00531,"56":0.00266,"58":0.09824,"65":0.00266,"68":0.00797,"69":0.00797,"71":0.00531,"73":0.00266,"75":0.00266,"76":0.00531,"78":0.00266,"79":0.04248,"80":0.00266,"83":0.00531,"84":0.00531,"85":0.00266,"86":0.00797,"87":0.01328,"88":0.01859,"89":0.00266,"91":0.00266,"92":0.00266,"93":0.00531,"94":0.00531,"95":0.01328,"96":0.00531,"97":0.00797,"98":0.00531,"99":0.01328,"100":0.00797,"101":0.01062,"102":0.00797,"103":0.077,"104":0.01328,"105":0.04514,"106":0.00797,"107":0.00531,"108":0.03452,"109":0.98235,"110":0.01062,"111":0.01859,"112":0.0239,"113":0.02921,"114":0.08496,"115":0.09824,"116":0.78323,"117":7.85349,"118":7.26143,"119":0.02921,"120":0.00266,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 57 59 60 61 62 63 64 66 67 70 72 74 77 81 90 121 122"},F:{"28":0.00531,"46":0.01328,"95":0.01062,"99":0.00266,"100":0.00266,"101":0.02655,"102":0.67968,"103":0.09558,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.01062,"18":0.00531,"84":0.00266,"92":0.01328,"100":0.00266,"103":0.00266,"107":0.00266,"108":0.00266,"109":0.01593,"110":0.00266,"111":0.00266,"112":0.01062,"113":0.01328,"114":0.01062,"115":0.02921,"116":0.0239,"117":1.67265,"118":1.44698,"119":0.00797,_:"12 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 104 105 106"},E:{"13":0.00266,"14":0.01593,"15":0.00266,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00797,"12.1":0.00531,"13.1":0.02921,"14.1":0.06107,"15.1":0.00797,"15.2-15.3":0.01062,"15.4":0.03983,"15.5":0.0531,"15.6":0.20444,"16.0":0.01593,"16.1":0.03452,"16.2":0.04514,"16.3":0.13806,"16.4":0.11151,"16.5":0.20975,"16.6":0.77261,"17.0":0.40091,"17.1":0.02124},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00124,"5.0-5.1":0.00124,"6.0-6.1":0.00373,"7.0-7.1":0.00871,"8.1-8.4":0.00124,"9.0-9.2":0.00871,"9.3":0.02988,"10.0-10.2":0.00124,"10.3":0.04357,"11.0-11.2":0.03984,"11.3-11.4":0.01369,"12.0-12.1":0.0112,"12.2-12.5":0.19795,"13.0-13.1":0.00622,"13.2":0.03361,"13.3":0.01245,"13.4-13.7":0.03984,"14.0-14.4":0.10956,"14.5-14.8":0.17679,"15.0-15.1":0.06972,"15.2-15.3":0.07968,"15.4":0.08839,"15.5":0.12574,"15.6-15.7":0.87024,"16.0":0.3212,"16.1":0.61502,"16.2":0.30004,"16.3":0.5565,"16.4":0.11952,"16.5":0.31871,"16.6-16.7":5.96967,"17.0":2.12642,"17.1":0.12823,"17.2":0.00373},P:{"4":0.05183,"20":0.08292,"21":0.08292,"22":1.42001,"23":0.25913,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 15.0","7.2-7.4":0.04146,"11.1-11.2":0.01037,"14.0":0.01037,"16.0":0.02073,"17.0":0.02073,"18.0":0.01037,"19.0":0.0311},I:{"0":0.05846,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00018},A:{"11":0.03186,_:"6 7 8 9 10 5.5"},K:{"0":2.39447,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.11752},Q:{_:"13.1"},O:{"0":5.53079},H:{"0":0},L:{"0":51.79951}};
      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 4e68a0899beada..f014e5dc4306de 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00446,"53":0,"54":0,"55":0.00446,"56":0.00446,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00446,"78":0.05354,"79":0,"80":0,"81":0,"82":0.00446,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00446,"89":0.04462,"90":0,"91":0.02231,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.14278,"103":0,"104":0.00446,"105":0,"106":0,"107":0,"108":0,"109":0.00446,"110":0,"111":0.00446,"112":0.00446,"113":0.00892,"114":0.03123,"115":0.23649,"116":0.10263,"117":1.89189,"118":0.16063,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00446,"50":0,"51":0,"52":0,"53":0.00446,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00446,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00446,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02231,"80":0,"81":0.00892,"83":0.02231,"84":0,"85":0.00892,"86":0,"87":0.00446,"88":0,"89":0,"90":0,"91":0.00446,"92":0,"93":0,"94":0.03123,"95":0,"96":0,"97":0.00446,"98":0,"99":0.00446,"100":0.00446,"101":0,"102":0,"103":0.04908,"104":0,"105":0.03123,"106":0.00446,"107":0.01785,"108":0.00892,"109":0.45066,"110":0.00446,"111":0.00892,"112":0.02677,"113":0.02231,"114":0.11601,"115":0.16063,"116":7.28645,"117":1.92312,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00892,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00446,"77":0.02677,"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.00446,"96":0,"97":0,"98":0,"99":0.01339,"100":0.09816,"101":0.29449,"102":0.33465,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00446,"16":0,"17":0.00446,"18":0.00446,"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.00892,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00446,"101":0,"102":0,"103":0,"104":0,"105":0.00446,"106":0.00446,"107":0.00446,"108":0,"109":0.02231,"110":0.00892,"111":0,"112":0.00892,"113":0.00446,"114":0.03123,"115":0.10709,"116":1.81157,"117":1.31183},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02677,"15":0.00446,_:"0","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.01339,"13.1":0.12047,"14.1":0.10709,"15.1":0.02231,"15.2-15.3":0.00892,"15.4":0.02677,"15.5":0.06247,"15.6":0.18294,"16.0":0.01785,"16.1":0.03123,"16.2":0.0357,"16.3":0.13386,"16.4":0.0357,"16.5":0.14278,"16.6":0.705,"17.0":0.04462,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00991,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04459,"10.0-10.2":0,"10.3":0.15853,"11.0-11.2":0.00743,"11.3-11.4":0.01486,"12.0-12.1":0.00743,"12.2-12.5":0.93881,"13.0-13.1":0,"13.2":0,"13.3":0.00991,"13.4-13.7":0.07679,"14.0-14.4":0.19074,"14.5-14.8":0.47065,"15.0-15.1":0.06936,"15.2-15.3":0.06936,"15.4":0.07431,"15.5":0.1511,"15.6-15.7":1.27074,"16.0":0.69606,"16.1":1.43423,"16.2":0.50285,"16.3":1.08744,"16.4":0.16596,"16.5":0.73074,"16.6":14.22341,"17.0":2.03121,"17.1":0},P:{"4":0.05138,"20":0.09249,"21":0.25691,"22":3.13435,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0.06166,"8.2":0,"9.2":0.01028,"10.1":0,"11.1-11.2":0.08221,"12.0":0.01028,"13.0":0.01028,"14.0":0.03083,"15.0":0.01028,"16.0":0.02055,"17.0":0.03083,"18.0":0.04111,"19.0":0.06166},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0026,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.12202},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02677,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":49.68042},R:{_:"0"},M:{"0":0.34889},Q:{"13.1":0},O:{"0":0.03877},H:{"0":0.31458}};
      +module.exports={C:{"52":0.00411,"55":0.00822,"56":0.00411,"78":0.11508,"82":0.00411,"85":0.00822,"88":0.00822,"89":0.04521,"91":0.04932,"95":0.00411,"98":0.00411,"99":0.00411,"100":0.00411,"102":0.09042,"104":0.00411,"105":0.00411,"109":0.00411,"110":0.00411,"111":0.00411,"112":0.00411,"113":0.01233,"114":0.00411,"115":0.67815,"116":0.02055,"117":0.18906,"118":3.21402,"119":0.57129,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 86 87 90 92 93 94 96 97 101 103 106 107 108 120 121 122 3.5 3.6"},D:{"38":0.00411,"43":0.01644,"49":0.00822,"53":0.00822,"58":0.00411,"61":0.00822,"67":0.01233,"68":0.00411,"71":0.02055,"74":0.00411,"78":0.00411,"79":0.02877,"81":0.01644,"83":0.02466,"84":0.02466,"85":0.00822,"86":0.00411,"87":0.03699,"88":0.00822,"89":0.00411,"90":0.00411,"91":0.00822,"92":0.00411,"94":0.0411,"96":0.00411,"97":0.00822,"99":0.00411,"100":0.00411,"102":0.00411,"103":0.12741,"105":0.04521,"106":0.02877,"107":0.05343,"108":0.00411,"109":1.00695,"110":0.00822,"111":0.01233,"112":0.02877,"113":0.02055,"114":0.1233,"115":0.0822,"116":1.22067,"117":9.56397,"118":9.09954,"119":0.00411,"120":0.00411,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 56 57 59 60 62 63 64 65 66 69 70 72 73 75 76 77 80 93 95 98 101 104 121 122"},F:{"46":0.00411,"93":0.00411,"95":0.01233,"101":0.02055,"102":1.75086,"103":0.2877,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00411,"17":0.00411,"18":0.00411,"92":0.01644,"100":0.00411,"104":0.00411,"107":0.00411,"108":0.00411,"109":0.0822,"110":0.00822,"111":0.00411,"112":0.01644,"113":0.00822,"114":0.05754,"115":0.03699,"116":0.0822,"117":3.09072,"118":3.10716,"119":0.00411,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 105 106"},E:{"14":0.03699,"15":0.00822,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00822,"13.1":0.28359,"14.1":0.19728,"15.1":0.05343,"15.2-15.3":0.00822,"15.4":0.07398,"15.5":0.1233,"15.6":0.40278,"16.0":0.0411,"16.1":0.05754,"16.2":0.06165,"16.3":0.26715,"16.4":0.05754,"16.5":0.16851,"16.6":1.18779,"17.0":0.63705,"17.1":0.06987,"17.2":0.00411},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00178,"5.0-5.1":0.00178,"6.0-6.1":0.00533,"7.0-7.1":0.01243,"8.1-8.4":0.00178,"9.0-9.2":0.01243,"9.3":0.04262,"10.0-10.2":0.00178,"10.3":0.06215,"11.0-11.2":0.05683,"11.3-11.4":0.01953,"12.0-12.1":0.01598,"12.2-12.5":0.28236,"13.0-13.1":0.00888,"13.2":0.04795,"13.3":0.01776,"13.4-13.7":0.05683,"14.0-14.4":0.15627,"14.5-14.8":0.25217,"15.0-15.1":0.09945,"15.2-15.3":0.11365,"15.4":0.12608,"15.5":0.17936,"15.6-15.7":1.24131,"16.0":0.45817,"16.1":0.87726,"16.2":0.42798,"16.3":0.7938,"16.4":0.17048,"16.5":0.45461,"16.6-16.7":8.51513,"17.0":3.03313,"17.1":0.18291,"17.2":0.00533},P:{"4":0.03097,"20":0.08259,"21":0.28908,"22":2.46749,"23":0.44394,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.0413,"11.1-11.2":0.0413,"13.0":0.01032,"14.0":0.06195,"15.0":0.01032,"16.0":0.0413,"17.0":0.03097,"18.0":0.03097,"19.0":0.05162},I:{"0":0.04102,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"11":0.09453,_:"6 7 8 9 10 5.5"},K:{"0":0.32573,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.32984},Q:{_:"13.1"},O:{"0":0.02356},H:{"0":0.01},L:{"0":38.05744}};
      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 a6678dac311921..f7467a0db6f605 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00427,"46":0,"47":0,"48":0.0256,"49":0,"50":0,"51":0,"52":0.0256,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00427,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00427,"79":0,"80":0,"81":0,"82":0,"83":0.00427,"84":0,"85":0,"86":0.00853,"87":0,"88":0.00427,"89":0,"90":0,"91":0.00427,"92":0,"93":0,"94":0,"95":0.00427,"96":0,"97":0,"98":0,"99":0.00427,"100":0,"101":0,"102":0.02987,"103":0.18348,"104":0.00427,"105":0.00427,"106":0,"107":0,"108":0.00427,"109":0.00427,"110":0.00427,"111":0.00427,"112":0.00427,"113":0.00853,"114":0.00427,"115":0.18775,"116":0.11094,"117":0.96861,"118":0.06827,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00427,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0128,"50":0,"51":0.00427,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00427,"60":0.17068,"61":0.00427,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00427,"71":0.00427,"72":0,"73":0,"74":0,"75":0,"76":0.00427,"77":0.00853,"78":0.00427,"79":0.01707,"80":0.00427,"81":0.00853,"83":0,"84":0,"85":0.0128,"86":0.00427,"87":0.0128,"88":0.00427,"89":0,"90":0.00427,"91":0.02134,"92":0.00427,"93":0.00853,"94":0.00427,"95":0,"96":0.00427,"97":0.00427,"98":0.00427,"99":0.0128,"100":0.0256,"101":0,"102":0.0128,"103":0.0128,"104":0.00427,"105":0.0128,"106":0.00853,"107":0.0128,"108":0.01707,"109":0.76806,"110":0.01707,"111":0.0256,"112":0.02987,"113":0.02134,"114":0.07254,"115":0.12801,"116":9.81837,"117":2.06096,"118":0.00427,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00853,"73":0.00427,"74":0,"75":0,"76":0,"77":0.01707,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00853,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.06827,"96":0,"97":0,"98":0,"99":0.02134,"100":0.11948,"101":0.26882,"102":0.42243,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00427,"109":0.01707,"110":0,"111":0,"112":0.00427,"113":0.00853,"114":0.0128,"115":0.0256,"116":0.49924,"117":0.40963},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00853,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00427,"10.1":0,"11.1":0,"12.1":0.00427,"13.1":0.0128,"14.1":0.0128,"15.1":0.00427,"15.2-15.3":0,"15.4":0.00427,"15.5":0.00427,"15.6":0.02987,"16.0":0.00427,"16.1":0.00853,"16.2":0.0128,"16.3":0.02134,"16.4":0.00853,"16.5":0.02987,"16.6":0.16641,"17.0":0.02134,"17.1":0},G:{"8":0,"3.2":0.02995,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.11794,"6.0-6.1":0,"7.0-7.1":0.00374,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02621,"10.0-10.2":0,"10.3":0.02246,"11.0-11.2":0.02434,"11.3-11.4":0.00187,"12.0-12.1":0.01498,"12.2-12.5":0.15538,"13.0-13.1":0.00187,"13.2":0,"13.3":0.1741,"13.4-13.7":0.05429,"14.0-14.4":0.13292,"14.5-14.8":0.22652,"15.0-15.1":0.08986,"15.2-15.3":0.07488,"15.4":0.08424,"15.5":0.14976,"15.6-15.7":1.1251,"16.0":0.61965,"16.1":0.91543,"16.2":0.49422,"16.3":0.87612,"16.4":0.19095,"16.5":0.59531,"16.6":10.49472,"17.0":1.79343,"17.1":0.00562},P:{"4":0.08101,"20":0.27341,"21":0.17215,"22":2.92648,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01013,"8.2":0,"9.2":0.01013,"10.1":0,"11.1-11.2":0.03038,"12.0":0.01013,"13.0":0.03038,"14.0":0.02025,"15.0":0.01013,"16.0":0.03038,"17.0":0.02025,"18.0":0.03038,"19.0":0.07088},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0277,"4.2-4.3":0.04432,"4.4":0,"4.4.3-4.4.4":0.19944},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.0256,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":57.07458},R:{_:"0"},M:{"0":0.21212},Q:{"13.1":0},O:{"0":0.04013},H:{"0":0.27681}};
      +module.exports={C:{"33":0.00445,"48":0.05781,"52":0.04892,"56":0.00445,"68":0.00445,"72":0.01779,"78":0.00889,"83":0.00889,"86":0.00889,"87":0.00445,"88":0.00445,"95":0.00445,"96":0.00445,"99":0.00445,"100":0.00445,"102":0.02224,"103":0.08449,"104":0.00889,"105":0.00889,"106":0.00445,"108":0.16454,"109":0.00445,"110":0.00445,"111":0.00445,"112":0.00445,"113":0.01334,"114":0.00889,"115":0.42247,"116":0.00889,"117":0.06226,"118":1.68541,"119":0.49806,"120":0.00445,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 84 85 89 90 91 92 93 94 97 98 101 107 121 122 3.5 3.6"},D:{"28":0.00889,"38":0.00445,"41":0.00445,"49":0.03113,"51":0.01334,"58":0.00445,"60":0.33353,"61":0.00889,"70":0.00889,"71":0.00445,"72":0.00445,"73":0.00445,"74":0.00445,"75":0.00445,"76":0.00889,"77":0.00445,"78":0.00445,"79":0.03558,"80":0.00445,"81":0.00889,"83":0.00445,"84":0.00445,"85":0.02224,"86":0.00889,"87":0.02224,"88":0.00889,"89":0.00445,"90":0.00889,"91":0.03558,"92":0.00445,"93":0.00445,"94":0.00445,"95":0.00445,"96":0.00445,"97":0.00445,"98":0.00889,"99":0.01334,"100":0.05336,"101":0.00445,"102":0.01334,"103":0.02224,"104":0.00445,"105":0.03113,"106":0.00889,"107":0.01779,"108":0.03113,"109":1.61426,"110":0.02224,"111":0.03558,"112":0.04447,"113":0.03113,"114":0.11118,"115":0.08449,"116":0.70707,"117":14.72402,"118":15.81353,"119":0.01334,"120":0.00445,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 52 53 54 55 56 57 59 62 63 64 65 66 67 68 69 121 122"},F:{"46":0.00445,"79":0.00445,"82":0.00445,"85":0.01334,"95":0.06226,"99":0.02668,"100":0.03558,"101":0.00445,"102":1.72988,"103":0.35131,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00445,"18":0.00445,"92":0.00445,"106":0.00445,"107":0.00445,"108":0.01334,"109":0.03113,"110":0.00445,"112":0.00445,"113":0.00889,"114":0.00889,"115":0.02224,"116":0.03558,"117":1.05394,"118":1.07173,"119":0.00445,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 111"},E:{"14":0.01334,"15":0.00445,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.2","9.1":0.00445,"12.1":0.00445,"13.1":0.02224,"14.1":0.02668,"15.1":0.00889,"15.2-15.3":0.00445,"15.4":0.00889,"15.5":0.01334,"15.6":0.07115,"16.0":0.00889,"16.1":0.02668,"16.2":0.02224,"16.3":0.04447,"16.4":0.02224,"16.5":0.05781,"16.6":0.25348,"17.0":0.20456,"17.1":0.01779},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00125,"5.0-5.1":0.00125,"6.0-6.1":0.00374,"7.0-7.1":0.00872,"8.1-8.4":0.00125,"9.0-9.2":0.00872,"9.3":0.02989,"10.0-10.2":0.00125,"10.3":0.04359,"11.0-11.2":0.03986,"11.3-11.4":0.0137,"12.0-12.1":0.01121,"12.2-12.5":0.19804,"13.0-13.1":0.00623,"13.2":0.03363,"13.3":0.01246,"13.4-13.7":0.03986,"14.0-14.4":0.10961,"14.5-14.8":0.17687,"15.0-15.1":0.06975,"15.2-15.3":0.07971,"15.4":0.08843,"15.5":0.1258,"15.6-15.7":0.87063,"16.0":0.32135,"16.1":0.6153,"16.2":0.30017,"16.3":0.55676,"16.4":0.11957,"16.5":0.31886,"16.6-16.7":5.97235,"17.0":2.12738,"17.1":0.12829,"17.2":0.00374},P:{"4":0.12193,"20":0.30482,"21":0.12193,"22":2.5402,"23":0.47756,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.01016,"9.2":0.02032,"11.1-11.2":0.03048,"13.0":0.03048,"14.0":0.02032,"15.0":0.01016,"16.0":0.03048,"17.0":0.02032,"18.0":0.02032,"19.0":0.06096},I:{"0":0.13812,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.00042},A:{"11":0.04892,_:"6 7 8 9 10 5.5"},K:{"0":0.30097,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.19991},Q:{_:"13.1"},O:{"0":0.03887},H:{"0":0.01},L:{"0":39.05713}};
      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 7e421555995af7..c08fc5e9af0aa2 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00792,"49":0,"50":0,"51":0,"52":0.03961,"53":0,"54":0,"55":0,"56":0.00396,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00396,"66":0,"67":0,"68":0.00396,"69":0,"70":0,"71":0,"72":0.00396,"73":0.00396,"74":0,"75":0.00396,"76":0,"77":0.01188,"78":0.00792,"79":0,"80":0.00396,"81":0.00396,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01188,"89":0,"90":0,"91":0.00396,"92":0,"93":0,"94":0.00396,"95":0,"96":0.00396,"97":0,"98":0,"99":0.01584,"100":0.00396,"101":0.00396,"102":0.01981,"103":0.00396,"104":0.00396,"105":0.00396,"106":0.00396,"107":0.00396,"108":0.00396,"109":0.00396,"110":0.00396,"111":0.00396,"112":0.01584,"113":0.01981,"114":0.01584,"115":0.47136,"116":0.06734,"117":1.03778,"118":0.08714,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00396,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00396,"48":0,"49":0.02377,"50":0,"51":0,"52":0,"53":0.00396,"54":0,"55":0.00396,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03169,"69":0,"70":0.00396,"71":0,"72":0,"73":0,"74":0,"75":0.00396,"76":0.00396,"77":0.00792,"78":0.01188,"79":0.05545,"80":0.01188,"81":0.01584,"83":0.01981,"84":0.00792,"85":0.02773,"86":0.00396,"87":0.03961,"88":0.01188,"89":0.00396,"90":0.00792,"91":0.00396,"92":0.01188,"93":0.00396,"94":0.00396,"95":0.00396,"96":0.00792,"97":0.00792,"98":0.00396,"99":0.01981,"100":0.00792,"101":0.00396,"102":0.00792,"103":0.02773,"104":0.00792,"105":0.03961,"106":0.01981,"107":0.03169,"108":0.03961,"109":1.97258,"110":0.03169,"111":0.03169,"112":0.04753,"113":0.04357,"114":0.0911,"115":0.15448,"116":6.09598,"117":1.6557,"118":0.00792,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00396,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00396,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00396,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00792,"71":0,"72":0.00792,"73":0.00396,"74":0,"75":0,"76":0.00396,"77":0.03565,"78":0,"79":0.00396,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01188,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00396,"94":0.00792,"95":0.10695,"96":0,"97":0.00396,"98":0,"99":0.00396,"100":0.06734,"101":0.32876,"102":0.35649,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00396,"18":0.00396,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00396,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00396,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00396,"109":0.02377,"110":0.00396,"111":0.00396,"112":0.00396,"113":0.00396,"114":0.00792,"115":0.02377,"116":0.40402,"117":0.32084},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00396,"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.00396,"13.1":0.02377,"14.1":0.01188,"15.1":0.00396,"15.2-15.3":0,"15.4":0.00396,"15.5":0.00792,"15.6":0.03169,"16.0":0.00396,"16.1":0.00792,"16.2":0.00792,"16.3":0.01188,"16.4":0.00792,"16.5":0.02773,"16.6":0.12675,"17.0":0.01584,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0026,"6.0-6.1":0,"7.0-7.1":0.02859,"8.1-8.4":0.0104,"9.0-9.2":0,"9.3":0.04288,"10.0-10.2":0.0052,"10.3":0.05587,"11.0-11.2":0.02729,"11.3-11.4":0.0078,"12.0-12.1":0.0065,"12.2-12.5":0.15983,"13.0-13.1":0.0039,"13.2":0.01299,"13.3":0.08186,"13.4-13.7":0.04288,"14.0-14.4":0.07666,"14.5-14.8":0.18841,"15.0-15.1":0.05587,"15.2-15.3":0.06757,"15.4":0.07277,"15.5":0.13644,"15.6-15.7":1.06161,"16.0":0.41451,"16.1":0.67699,"16.2":0.33525,"16.3":0.62501,"16.4":0.14164,"16.5":0.40541,"16.6":7.36113,"17.0":0.74586,"17.1":0},P:{"4":0.10162,"20":0.07114,"21":0.1626,"22":2.76415,"5.0-5.4":0.02032,"6.2-6.4":0,"7.2-7.4":0.01016,"8.2":0,"9.2":0.01016,"10.1":0,"11.1-11.2":0.03049,"12.0":0,"13.0":0.02032,"14.0":0.04065,"15.0":0.01016,"16.0":0.02032,"17.0":0.02032,"18.0":0.02032,"19.0":0.05081},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03641,"4.2-4.3":0.00497,"4.4":0,"4.4.3-4.4.4":0.04635},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00417,"9":0,"10":0,"11":0.07505,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.26746},R:{_:"0"},M:{"0":0.21137},Q:{"13.1":0},O:{"0":0.02416},H:{"0":0.52028}};
      +module.exports={C:{"18":0.03134,"35":0.00392,"44":0.01175,"48":0.01567,"52":0.1097,"56":0.00784,"60":0.00392,"61":0.00392,"65":0.00784,"67":0.00392,"68":0.00784,"72":0.00784,"73":0.01175,"75":0.00784,"77":0.00392,"78":0.01959,"80":0.00784,"81":0.00784,"82":0.00392,"84":0.00392,"88":0.02351,"91":0.00784,"92":0.00392,"94":0.00392,"96":0.00392,"97":0.00392,"99":0.01175,"100":0.00392,"101":0.00392,"102":0.01567,"103":0.00784,"104":0.00392,"105":0.00392,"106":0.00392,"107":0.03526,"108":0.00392,"109":0.00784,"110":0.00392,"111":0.00784,"112":0.02351,"113":0.03918,"114":0.01175,"115":1.18715,"116":0.03526,"117":0.09795,"118":2.21759,"119":0.45449,_:"2 3 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 36 37 38 39 40 41 42 43 45 46 47 49 50 51 53 54 55 57 58 59 62 63 64 66 69 70 71 74 76 79 83 85 86 87 89 90 93 95 98 120 121 122 3.5 3.6"},D:{"26":0.00392,"31":0.00392,"33":0.00392,"34":0.00392,"38":0.00784,"41":0.00392,"43":0.00392,"47":0.00392,"48":0.00392,"49":0.05485,"53":0.00784,"55":0.00392,"56":0.00392,"64":0.00392,"65":0.00392,"68":0.05485,"69":0.00392,"70":0.00784,"71":0.00392,"72":0.00392,"73":0.00392,"74":0.00392,"75":0.01175,"76":0.00392,"77":0.00392,"78":0.02743,"79":0.21549,"80":0.00784,"81":0.02351,"83":0.02743,"84":0.01959,"85":0.05877,"86":0.00784,"87":0.06661,"88":0.01959,"89":0.01567,"90":0.01959,"91":0.00784,"92":0.01959,"93":0.00784,"94":0.01567,"95":0.01567,"96":0.01959,"97":0.01567,"98":0.01175,"99":0.01959,"100":0.01959,"101":0.01567,"102":0.01567,"103":0.05485,"104":0.01959,"105":0.03918,"106":0.05093,"107":0.06661,"108":0.09403,"109":4.59581,"110":0.08228,"111":0.03526,"112":0.07052,"113":0.0431,"114":0.10579,"115":0.08228,"116":0.69349,"117":9.76757,"118":10.46106,"119":0.02351,"120":0.00392,_:"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 40 42 44 45 46 50 51 52 54 57 58 59 60 61 62 63 66 67 121 122"},F:{"28":0.01175,"36":0.00392,"40":0.00392,"46":0.00784,"48":0.00392,"57":0.00392,"70":0.00392,"79":0.00392,"82":0.01567,"85":0.03134,"86":0.00392,"87":0.00784,"90":0.00392,"91":0.00392,"95":0.26642,"96":0.00392,"97":0.00392,"99":0.00392,"100":0.00392,"101":0.00784,"102":1.49276,"103":0.47016,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 80 81 83 84 88 89 92 93 94 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00784,"85":0.00392,"92":0.00392,"108":0.01959,"109":0.03918,"110":0.01175,"111":0.01567,"112":0.00392,"113":0.00392,"114":0.01175,"115":0.01567,"116":0.03134,"117":0.88547,"118":0.92857,"119":0.00392,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107"},E:{"13":0.00392,"14":0.01959,"15":0.01175,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.00392,"11.1":0.00392,"12.1":0.00392,"13.1":0.05485,"14.1":0.03918,"15.1":0.00392,"15.2-15.3":0.00392,"15.4":0.01567,"15.5":0.01959,"15.6":0.10187,"16.0":0.01175,"16.1":0.01175,"16.2":0.01567,"16.3":0.03134,"16.4":0.01959,"16.5":0.04702,"16.6":0.27426,"17.0":0.19198,"17.1":0.01567},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00089,"5.0-5.1":0.00089,"6.0-6.1":0.00267,"7.0-7.1":0.00623,"8.1-8.4":0.00089,"9.0-9.2":0.00623,"9.3":0.02134,"10.0-10.2":0.00089,"10.3":0.03113,"11.0-11.2":0.02846,"11.3-11.4":0.00978,"12.0-12.1":0.008,"12.2-12.5":0.1414,"13.0-13.1":0.00445,"13.2":0.02401,"13.3":0.00889,"13.4-13.7":0.02846,"14.0-14.4":0.07826,"14.5-14.8":0.12629,"15.0-15.1":0.0498,"15.2-15.3":0.05692,"15.4":0.06314,"15.5":0.08982,"15.6-15.7":0.62164,"16.0":0.22945,"16.1":0.43933,"16.2":0.21433,"16.3":0.39753,"16.4":0.08538,"16.5":0.22767,"16.6-16.7":4.26436,"17.0":1.51898,"17.1":0.0916,"17.2":0.00267},P:{"4":0.14366,"20":0.05131,"21":0.11288,"22":2.31912,"23":0.50282,"5.0-5.4":0.02052,_:"6.2-6.4 8.2 9.2 12.0","7.2-7.4":0.01026,"10.1":0.01026,"11.1-11.2":0.02052,"13.0":0.02052,"14.0":0.03078,"15.0":0.01026,"16.0":0.02052,"17.0":0.02052,"18.0":0.02052,"19.0":0.06157},I:{"0":0.06052,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00018},A:{"8":0.0162,"9":0.00405,"10":0.0081,"11":0.33211,_:"6 7 5.5"},K:{"0":0.43922,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.20682},Q:{_:"13.1"},O:{"0":0.04258},H:{"0":0.09},L:{"0":49.0679}};
      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 b72ff1d280b165..92b6a543bbea39 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0.00563,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.01688,"46":0.00563,"47":0.00563,"48":0.01688,"49":0.00563,"50":0.02251,"51":0.00563,"52":0.06754,"53":0.01688,"54":0,"55":0,"56":0.01126,"57":0,"58":0,"59":0,"60":0.00563,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00563,"68":0.01688,"69":0.01126,"70":0.00563,"71":0.01126,"72":0.01126,"73":0.00563,"74":0.00563,"75":0.01126,"76":0.00563,"77":0.01126,"78":0.01688,"79":0.01688,"80":0.00563,"81":0.01126,"82":0.01126,"83":0.01126,"84":0.00563,"85":0.00563,"86":0,"87":0.00563,"88":0.00563,"89":0.00563,"90":0.00563,"91":0.01126,"92":0,"93":0,"94":0.00563,"95":0.00563,"96":0.00563,"97":0.00563,"98":0.01126,"99":0.00563,"100":0,"101":0.01126,"102":0.05065,"103":0.01126,"104":0.01688,"105":0.01126,"106":0.01126,"107":0.00563,"108":0.02251,"109":0.01688,"110":0.01126,"111":0.01688,"112":0.01688,"113":0.02251,"114":0.0394,"115":0.30954,"116":0.12944,"117":0.66973,"118":0.05065,"119":0,"120":0,"3.5":0,"3.6":0.00563},D:{"4":0.01126,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00563,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04502,"50":0,"51":0.02251,"52":0.01126,"53":0.00563,"54":0,"55":0.00563,"56":0.01126,"57":0,"58":0.00563,"59":0,"60":0,"61":0.00563,"62":0,"63":0,"64":0.00563,"65":0,"66":0.00563,"67":0.00563,"68":0.04502,"69":0.02814,"70":0.03377,"71":0.0394,"72":0.05065,"73":0.03377,"74":0.05628,"75":0.09005,"76":0.09005,"77":0.10693,"78":0.09568,"79":0.11256,"80":0.13507,"81":0.13507,"83":0.11256,"84":0.05628,"85":0.11256,"86":0.15196,"87":0.16321,"88":0.1407,"89":0.10693,"90":0.34331,"91":0.06754,"92":0.02814,"93":0.02814,"94":0.02814,"95":0.02814,"96":0.05628,"97":0.06191,"98":0.04502,"99":0.05628,"100":0.06191,"101":0.04502,"102":0.13507,"103":0.10693,"104":0.06754,"105":0.1013,"106":0.16884,"107":0.29828,"108":0.12944,"109":1.49705,"110":0.07879,"111":0.09568,"112":0.09005,"113":0.39396,"114":0.86671,"115":1.20439,"116":5.38037,"117":1.33384,"118":0.00563,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01688,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00563,"54":0.01688,"55":0.01126,"56":0,"57":0,"58":0,"60":0.00563,"62":0.02251,"63":0.02251,"64":0.01126,"65":0.01688,"66":0.01126,"67":0.02251,"68":0.02251,"69":0.00563,"70":0.01688,"71":0.01126,"72":0.02251,"73":0.01688,"74":0.01126,"75":0.01126,"76":0.01126,"77":0.06754,"78":0.00563,"79":0.02814,"80":0.00563,"81":0.00563,"82":0.01126,"83":0.01688,"84":0.00563,"85":0.0394,"86":0.01688,"87":0.01126,"88":0,"89":0.00563,"90":0.01126,"91":0.00563,"92":0.01126,"93":0.00563,"94":0.00563,"95":0.41647,"96":0.02251,"97":0,"98":0.00563,"99":0.0394,"100":0.19698,"101":0.82732,"102":0.77666,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01126,"18":0.01688,"79":0.00563,"80":0.01126,"81":0.01126,"83":0.01688,"84":0.02251,"85":0.01126,"86":0.01126,"87":0.01688,"88":0.01126,"89":0.01126,"90":0.07879,"91":0.00563,"92":0.01126,"93":0,"94":0.00563,"95":0.00563,"96":0.00563,"97":0.01126,"98":0.00563,"99":0.01126,"100":0.00563,"101":0.00563,"102":0.00563,"103":0.00563,"104":0,"105":0.01126,"106":0.00563,"107":0.01126,"108":0.01126,"109":0.03377,"110":0.01126,"111":0.01688,"112":0.00563,"113":0.02251,"114":0.11819,"115":0.09005,"116":0.73164,"117":0.6022},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00563,"14":0.01688,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.21386,"10.1":0,"11.1":0,"12.1":0.01126,"13.1":0.01688,"14.1":0.03377,"15.1":0.00563,"15.2-15.3":0.00563,"15.4":0.01126,"15.5":0.01126,"15.6":0.06754,"16.0":0.00563,"16.1":0.02814,"16.2":0.01688,"16.3":0.0394,"16.4":0.14633,"16.5":0.20261,"16.6":0.22512,"17.0":0.02814,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0074,"8.1-8.4":0.00247,"9.0-9.2":0.05429,"9.3":0.06416,"10.0-10.2":0.02221,"10.3":0.06416,"11.0-11.2":0.07403,"11.3-11.4":0.02714,"12.0-12.1":0.04935,"12.2-12.5":0.30105,"13.0-13.1":0.03948,"13.2":0.02961,"13.3":10.84016,"13.4-13.7":0.06909,"14.0-14.4":0.21221,"14.5-14.8":0.32079,"15.0-15.1":0.24182,"15.2-15.3":0.33066,"15.4":0.15052,"15.5":0.15793,"15.6-15.7":1.06107,"16.0":0.69833,"16.1":0.90561,"16.2":0.54781,"16.3":0.83158,"16.4":0.2591,"16.5":0.68106,"16.6":5.51015,"17.0":1.00925,"17.1":0},P:{"4":0.04162,"20":0.03121,"21":0.06243,"22":0.57223,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0104,"8.2":0,"9.2":0.0104,"10.1":0,"11.1-11.2":0.0104,"12.0":0.0104,"13.0":0.0104,"14.0":0,"15.0":0,"16.0":0.0104,"17.0":0.02081,"18.0":0.0104,"19.0":0.02081},I:{"0":0,"3":0.01738,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00174,"4.2-4.3":0.00348,"4.4":0,"4.4.3-4.4.4":0.03303},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00582,"7":0,"8":0.02326,"9":0.01745,"10":0.01163,"11":0.11631,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":35.60404},R:{_:"0"},M:{"0":0.27981},Q:{"13.1":0.00437},O:{"0":0.14865},H:{"0":0.62915}};
      +module.exports={C:{"31":0.00581,"44":0.00581,"48":0.02324,"50":0.00581,"52":0.11041,"53":0.00581,"56":0.00581,"60":0.00581,"66":0.00581,"68":0.01743,"69":0.00581,"70":0.01162,"71":0.00581,"72":0.01743,"73":0.00581,"74":0.00581,"75":0.01743,"76":0.00581,"77":0.00581,"78":0.02324,"79":0.00581,"80":0.00581,"81":0.01162,"82":0.00581,"83":0.00581,"87":0.00581,"88":0.01162,"90":0.00581,"91":0.01162,"94":0.00581,"95":0.00581,"96":0.00581,"97":0.00581,"98":0.00581,"99":0.00581,"100":0.00581,"101":0.00581,"102":0.03487,"103":0.02906,"104":0.01743,"105":0.01162,"106":0.01162,"107":0.01743,"108":0.02324,"109":0.01162,"110":0.02324,"111":0.02324,"112":0.01743,"113":0.02324,"114":0.02324,"115":0.69732,"116":0.02324,"117":0.08135,"118":1.20869,"119":0.23825,"120":0.00581,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 51 54 55 57 58 59 61 62 63 64 65 67 84 85 86 89 92 93 121 122 3.5 3.6"},D:{"22":0.00581,"25":0.01162,"26":0.00581,"38":0.00581,"41":0.00581,"47":0.00581,"49":0.07554,"51":0.03487,"52":0.01162,"53":0.00581,"55":0.00581,"56":0.01162,"57":0.00581,"58":0.01162,"61":0.00581,"64":0.00581,"65":0.00581,"67":0.01162,"68":0.05811,"69":0.04068,"70":0.04649,"71":0.04068,"72":0.06392,"73":0.02324,"74":0.06973,"75":0.0523,"76":0.06392,"77":0.04068,"78":0.06392,"79":0.12784,"80":0.1046,"81":0.09298,"83":0.06973,"84":0.04649,"85":0.11622,"86":0.12784,"87":0.11041,"88":0.11041,"89":0.09879,"90":0.09298,"91":0.04068,"92":0.01162,"93":0.02324,"94":0.02906,"95":0.01162,"96":0.01743,"97":0.03487,"98":0.04068,"99":0.02906,"100":0.02906,"101":0.06392,"102":0.14528,"103":0.05811,"104":0.02324,"105":0.14528,"106":0.22663,"107":0.13946,"108":0.17433,"109":2.89388,"110":0.08135,"111":0.11041,"112":0.13365,"113":0.44164,"114":0.77286,"115":0.60434,"116":0.83097,"117":8.46082,"118":7.9262,"119":0.01162,"120":0.01162,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 48 50 54 59 60 62 63 66 121 122"},F:{"36":0.03487,"46":0.00581,"48":0.00581,"49":0.00581,"53":0.01162,"54":0.01162,"55":0.01162,"57":0.00581,"58":0.00581,"60":0.00581,"64":0.00581,"65":0.00581,"67":0.00581,"68":0.00581,"70":0.00581,"71":0.00581,"72":0.00581,"73":0.00581,"74":0.00581,"75":0.00581,"76":0.01162,"77":0.01743,"78":0.00581,"79":0.06973,"80":0.00581,"81":0.00581,"82":0.01162,"83":0.00581,"84":0.01162,"85":0.06973,"86":0.01743,"87":0.00581,"89":0.00581,"90":0.00581,"92":0.01162,"93":0.00581,"94":0.01162,"95":0.91814,"97":0.00581,"98":0.00581,"99":0.01743,"100":0.01162,"101":0.03487,"102":3.14956,"103":1.23193,_:"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 50 51 52 56 62 63 66 69 88 91 96 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00581},B:{"14":0.00581,"18":0.01162,"79":0.00581,"80":0.01743,"81":0.01743,"83":0.01743,"84":0.02324,"85":0.01162,"86":0.01743,"87":0.01162,"88":0.01162,"89":0.01743,"90":0.01162,"92":0.02324,"99":0.00581,"100":0.00581,"105":0.00581,"106":0.00581,"107":0.01743,"108":0.02324,"109":0.06973,"110":0.01743,"111":0.01162,"112":0.00581,"113":0.02324,"114":0.09298,"115":0.01743,"116":0.04649,"117":1.48762,"118":1.7433,"119":0.00581,_:"12 13 15 16 17 91 93 94 95 96 97 98 101 102 103 104"},E:{"13":0.00581,"14":0.0523,"15":0.00581,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 17.2","5.1":0.00581,"9.1":0.33704,"11.1":0.00581,"12.1":0.01743,"13.1":0.03487,"14.1":0.08717,"15.1":0.01743,"15.2-15.3":0.01162,"15.4":0.02324,"15.5":0.02906,"15.6":0.17433,"16.0":0.01743,"16.1":0.05811,"16.2":0.04649,"16.3":0.09298,"16.4":0.11041,"16.5":0.99368,"16.6":0.4242,"17.0":0.31379,"17.1":0.02324},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00098,"5.0-5.1":0.00098,"6.0-6.1":0.00293,"7.0-7.1":0.00683,"8.1-8.4":0.00098,"9.0-9.2":0.00683,"9.3":0.02341,"10.0-10.2":0.00098,"10.3":0.03415,"11.0-11.2":0.03122,"11.3-11.4":0.01073,"12.0-12.1":0.00878,"12.2-12.5":0.15512,"13.0-13.1":0.00488,"13.2":0.02634,"13.3":0.00976,"13.4-13.7":0.03122,"14.0-14.4":0.08585,"14.5-14.8":0.13854,"15.0-15.1":0.05463,"15.2-15.3":0.06244,"15.4":0.06927,"15.5":0.09854,"15.6-15.7":0.68196,"16.0":0.25171,"16.1":0.48196,"16.2":0.23512,"16.3":0.4361,"16.4":0.09366,"16.5":0.24976,"16.6-16.7":4.67809,"17.0":1.66636,"17.1":0.10049,"17.2":0.00293},P:{"4":0.07345,"20":0.03148,"21":0.05247,"22":0.68206,"23":0.11543,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 14.0 15.0","7.2-7.4":0.02099,"9.2":0.01049,"11.1-11.2":0.01049,"13.0":0.01049,"16.0":0.01049,"17.0":0.01049,"18.0":0.01049,"19.0":0.02099},I:{"0":0.03334,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.01843,"11":0.19658,_:"6 7 9 10 5.5"},K:{"0":0.8378,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.20526},Q:{"13.1":0.00419},O:{"0":0.17175},H:{"0":0},L:{"0":26.51562}};
      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 d0e891ac6c9299..240aef1994686e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RW.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RW.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00409,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00409,"103":0,"104":0,"105":0.00817,"106":0,"107":0,"108":0,"109":0.01226,"110":0,"111":0.03677,"112":0.01226,"113":0.01634,"114":0.00817,"115":0.08987,"116":0.04494,"117":0.55965,"118":0.06128,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00409,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00409,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00409,"60":0,"61":0,"62":0.00409,"63":0,"64":0.00817,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00409,"71":0,"72":0.01226,"73":0,"74":0.00817,"75":0,"76":0,"77":0.00409,"78":0.00409,"79":0.01634,"80":0.04085,"81":0.00409,"83":0,"84":0.00409,"85":0,"86":0,"87":0.00817,"88":0.01634,"89":0.00409,"90":0.00409,"91":0.02043,"92":0.00409,"93":0.00409,"94":0.00409,"95":0.01226,"96":0.00409,"97":0,"98":0.02451,"99":0.00817,"100":0,"101":0.00409,"102":0.00817,"103":0.04085,"104":0.00817,"105":0.01634,"106":0.01634,"107":0.00409,"108":0.01226,"109":0.58416,"110":0.00817,"111":0.03268,"112":0.01634,"113":0.0286,"114":0.17974,"115":0.26144,"116":7.65121,"117":1.80557,"118":0.01226,"119":0.00409,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00409,"25":0,"26":0,"27":0.00409,"28":0.00409,"29":0,"30":0,"31":0.00409,"32":0,"33":0.00409,"34":0,"35":0,"36":0,"37":0.00409,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00409,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.01634,"52":0,"53":0.00409,"54":0,"55":0,"56":0.01226,"57":0.00409,"58":0.00409,"60":0.01634,"62":0,"63":0.02043,"64":0.00817,"65":0,"66":0.01226,"67":0.05311,"68":0.01226,"69":0.10621,"70":0.05719,"71":0.37991,"72":0.45752,"73":0.0817,"74":0,"75":0,"76":0,"77":0.02043,"78":0,"79":0.00817,"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.01226,"96":0,"97":0,"98":0,"99":0,"100":0.01226,"101":0.12255,"102":0.20834,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00409},B:{"12":0.01634,"13":0.00409,"14":0,"15":0.00409,"16":0.00409,"17":0.00817,"18":0.03677,"79":0,"80":0,"81":0,"83":0,"84":0.00409,"85":0,"86":0,"87":0,"88":0,"89":0.00817,"90":0.00409,"91":0,"92":0.02451,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0286,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00409,"109":0.00409,"110":0.00409,"111":0.00817,"112":0.01634,"113":0.00409,"114":0.03268,"115":0.06945,"116":0.69854,"117":0.58824},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00409,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00817,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00409,"14.1":0.02043,"15.1":0.00409,"15.2-15.3":0,"15.4":0.04494,"15.5":0.00409,"15.6":0.02043,"16.0":0.00409,"16.1":0.00409,"16.2":0.00409,"16.3":0.01226,"16.4":0.01634,"16.5":0.0286,"16.6":0.13889,"17.0":0.02043,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00181,"6.0-6.1":0,"7.0-7.1":0.00633,"8.1-8.4":0.0009,"9.0-9.2":0,"9.3":0.03256,"10.0-10.2":0,"10.3":0.08411,"11.0-11.2":0.00452,"11.3-11.4":0.00271,"12.0-12.1":0.00452,"12.2-12.5":0.88906,"13.0-13.1":0.0199,"13.2":0,"13.3":0.01357,"13.4-13.7":0.05336,"14.0-14.4":0.11125,"14.5-14.8":0.14019,"15.0-15.1":0.06964,"15.2-15.3":0.123,"15.4":0.11758,"15.5":0.15195,"15.6-15.7":1.93097,"16.0":0.18993,"16.1":0.34911,"16.2":0.29213,"16.3":0.46669,"16.4":0.09949,"16.5":0.32107,"16.6":2.96383,"17.0":0.47483,"17.1":0.00181},P:{"4":0.06004,"20":0.02001,"21":0.30019,"22":0.52032,"5.0-5.4":0.03002,"6.2-6.4":0.01001,"7.2-7.4":0.07004,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01001,"12.0":0.01001,"13.0":0,"14.0":0.01001,"15.0":0,"16.0":0.03002,"17.0":0.01001,"18.0":0.02001,"19.0":0.10006},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00062,"4.2-4.3":0.00186,"4.4":0,"4.4.3-4.4.4":0.07429},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04085,"5.5":0},S:{"2.5":0.08873,_:"3.0-3.1"},J:{"7":0,"10":0.00592},N:{"10":0,"11":0},L:{"0":60.25525},R:{_:"0"},M:{"0":0.1183},Q:{"13.1":0},O:{"0":0.16562},H:{"0":9.4863}};
      +module.exports={C:{"23":0.00415,"31":0.00829,"33":0.00415,"34":0.00829,"36":0.00415,"40":0.00415,"47":0.00829,"50":0.00415,"52":0.00415,"60":0.00829,"67":0.00415,"72":0.00415,"78":0.00415,"79":0.00415,"99":0.00415,"101":0.00415,"102":0.01244,"105":0.00415,"106":0.00415,"107":0.00415,"108":0.00415,"110":0.00415,"111":0.00829,"112":0.00829,"113":0.00415,"114":0.00415,"115":0.2737,"116":0.01244,"117":0.05391,"118":1.23995,"119":0.36494,"120":0.01244,_:"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 32 35 37 38 39 41 42 43 44 45 46 48 49 51 53 54 55 56 57 58 59 61 62 63 64 65 66 68 69 70 71 73 74 75 76 77 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 103 104 109 121 122 3.5 3.6"},D:{"34":0.00415,"40":0.00415,"49":0.01659,"55":0.00415,"56":0.00415,"58":0.00829,"59":0.00415,"61":0.00829,"64":0.00829,"65":0.00415,"66":0.00415,"67":0.00415,"68":0.01244,"69":0.01659,"70":0.03318,"71":0.00829,"72":0.01244,"73":0.04147,"74":0.02074,"75":0.01244,"76":0.00415,"77":0.00829,"78":0.00829,"79":0.02074,"80":0.57229,"81":0.00829,"83":0.01244,"84":0.00829,"86":0.00415,"87":0.02074,"88":0.01659,"89":0.00829,"90":0.02074,"91":0.00829,"92":0.00829,"93":0.04562,"95":0.01659,"96":0.00415,"97":0.00415,"98":0.06635,"99":0.00415,"100":0.00829,"101":0.01659,"102":0.02074,"103":0.08709,"104":0.02488,"105":0.03318,"106":0.08294,"107":0.04147,"108":0.06221,"109":1.53439,"110":0.06635,"111":0.05391,"112":0.06635,"113":0.05391,"114":0.29029,"115":0.16173,"116":1.07407,"117":11.25496,"118":12.76447,"119":0.02903,"120":0.00829,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 42 43 44 45 46 47 48 50 51 52 53 54 57 60 62 63 85 94 121 122"},F:{"79":0.00829,"87":0.00415,"95":0.03318,"98":0.00415,"99":0.01659,"100":0.01659,"101":0.00829,"102":0.51008,"103":0.47276,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 88 89 90 91 92 93 94 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.04147,"13":0.04147,"14":0.01244,"15":0.00415,"16":0.02074,"17":0.02074,"18":0.1327,"84":0.01244,"85":0.03732,"89":0.01244,"90":0.02488,"92":0.07465,"100":0.12856,"104":0.00415,"106":0.00415,"107":0.00415,"108":0.00415,"109":0.02903,"110":0.00829,"111":0.04147,"112":0.01659,"113":0.02488,"114":0.06635,"115":0.02903,"116":0.08709,"117":1.99885,"118":2.10668,"119":0.00415,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 105"},E:{"13":0.00415,"14":0.00829,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.01659,"11.1":0.01244,"12.1":0.00415,"13.1":0.01659,"14.1":0.03318,"15.1":0.00415,"15.2-15.3":0.00415,"15.4":0.11612,"15.5":0.01244,"15.6":0.07465,"16.0":0.00415,"16.1":0.01244,"16.2":0.02903,"16.3":0.01659,"16.4":0.04976,"16.5":0.07465,"16.6":0.20735,"17.0":0.11612,"17.1":0.02074},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00053,"5.0-5.1":0.00053,"6.0-6.1":0.00158,"7.0-7.1":0.00369,"8.1-8.4":0.00053,"9.0-9.2":0.00369,"9.3":0.01266,"10.0-10.2":0.00053,"10.3":0.01846,"11.0-11.2":0.01688,"11.3-11.4":0.0058,"12.0-12.1":0.00475,"12.2-12.5":0.08385,"13.0-13.1":0.00264,"13.2":0.01424,"13.3":0.00527,"13.4-13.7":0.01688,"14.0-14.4":0.04641,"14.5-14.8":0.07488,"15.0-15.1":0.02953,"15.2-15.3":0.03375,"15.4":0.03744,"15.5":0.05326,"15.6-15.7":0.36862,"16.0":0.13606,"16.1":0.26051,"16.2":0.12709,"16.3":0.23573,"16.4":0.05063,"16.5":0.135,"16.6-16.7":2.52867,"17.0":0.90072,"17.1":0.05432,"17.2":0.00158},P:{"4":0.04147,"20":0.01037,"21":0.12442,"22":0.49767,"23":0.07258,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 15.0","7.2-7.4":0.13479,"11.1-11.2":0.01037,"14.0":0.02074,"16.0":0.02074,"17.0":0.01037,"18.0":0.04147,"19.0":0.10368},I:{"0":0.01165,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.04976,_:"6 7 8 9 10 5.5"},K:{"0":4.84096,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.13462,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.14633},Q:{"13.1":0.01756},O:{"0":0.16974},H:{"0":6.11},L:{"0":43.77083}};
      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 ec5fc924f5cf3b..6c41dc31cdb11e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00218,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00435,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.01088,"116":0.0087,"117":0.08918,"118":0.01088,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00218,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00218,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00218,"56":0.00218,"57":0,"58":0.00218,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00218,"69":0,"70":0,"71":0,"72":0.00218,"73":0,"74":0.00218,"75":0.00218,"76":0,"77":0,"78":0,"79":0.0087,"80":0.00435,"81":0.00218,"83":0.00218,"84":0,"85":0.00218,"86":0.00218,"87":0.00653,"88":0.00653,"89":0.00218,"90":0.00653,"91":0.00218,"92":0.00218,"93":0.00435,"94":0,"95":0.00218,"96":0.00218,"97":0.00218,"98":0.0087,"99":0.0174,"100":0,"101":0.00218,"102":0.00218,"103":0.0087,"104":0.00218,"105":0.00435,"106":0.0087,"107":0.00653,"108":0.0087,"109":0.19793,"110":0.00218,"111":0.00435,"112":0.0087,"113":0.00653,"114":0.03915,"115":0.0522,"116":2.04668,"117":0.58508,"118":0.00218,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00218,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.01088,"73":0.00218,"74":0,"75":0,"76":0,"77":0.01523,"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.00218,"96":0,"97":0,"98":0,"99":0,"100":0.00653,"101":0.01305,"102":0.0261,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00218,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00218,"91":0,"92":0.00218,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00218,"109":0.00435,"110":0.00218,"111":0.00218,"112":0,"113":0.00218,"114":0.01088,"115":0.08048,"116":0.3132,"117":0.22185},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0087,"15":0.00218,_:"0","3.1":0,"3.2":0,"5.1":0.00435,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00435,"14.1":0.01523,"15.1":0.00218,"15.2-15.3":0.00218,"15.4":0.00435,"15.5":0.0087,"15.6":0.03915,"16.0":0.00653,"16.1":0.02828,"16.2":0.01523,"16.3":0.03045,"16.4":0.01088,"16.5":0.02828,"16.6":0.2088,"17.0":0.01523,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02734,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05468,"10.0-10.2":0,"10.3":0.06494,"11.0-11.2":0.01367,"11.3-11.4":0,"12.0-12.1":0.02734,"12.2-12.5":0.22899,"13.0-13.1":0.01025,"13.2":0.01367,"13.3":0.16405,"13.4-13.7":0.0957,"14.0-14.4":0.47849,"14.5-14.8":0.66988,"15.0-15.1":0.27,"15.2-15.3":0.30076,"15.4":0.35203,"15.5":0.55026,"15.6-15.7":2.13269,"16.0":1.44571,"16.1":1.76015,"16.2":1.22698,"16.3":2.16686,"16.4":0.89887,"16.5":2.43345,"16.6":17.01022,"17.0":1.51065,"17.1":0},P:{"4":0.03105,"20":0.06211,"21":0.13457,"22":1.81151,"5.0-5.4":0.01035,"6.2-6.4":0,"7.2-7.4":0.05176,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01035,"12.0":0,"13.0":0.01035,"14.0":0.03105,"15.0":0.01035,"16.0":0.03105,"17.0":0.0207,"18.0":0.03105,"19.0":0.06211},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03011,"4.4":0,"4.4.3-4.4.4":0.09034},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01958,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.41073},R:{_:"0"},M:{"0":0.07825},Q:{"13.1":0},O:{"0":2.12058},H:{"0":0.40004}};
      +module.exports={C:{"34":0.00236,"52":0.00471,"66":0.00236,"78":0.00236,"103":0.00236,"107":0.00236,"111":0.00236,"113":0.00236,"114":0.00236,"115":0.05183,"116":0.00236,"117":0.02592,"118":0.40759,"119":0.0801,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 108 109 110 112 120 121 122 3.5 3.6"},D:{"11":0.00236,"34":0.00236,"38":0.00471,"41":0.00236,"43":0.00236,"47":0.00236,"48":0.00236,"49":0.00236,"56":0.00471,"58":0.01649,"63":0.00236,"64":0.00236,"65":0.00471,"67":0.00236,"68":0.00707,"69":0.00471,"70":0.00236,"71":0.00236,"72":0.00236,"73":0.00236,"74":0.00236,"75":0.00471,"76":0.00236,"77":0.00236,"78":0.00236,"79":0.0377,"80":0.00471,"81":0.00471,"83":0.00942,"84":0.00236,"85":0.00942,"86":0.00942,"87":0.01414,"88":0.01178,"89":0.00471,"90":0.00942,"91":0.00707,"92":0.00471,"93":0.01885,"94":0.00471,"95":0.00707,"96":0.00707,"97":0.03534,"98":0.00942,"99":0.03063,"100":0.00471,"101":0.00707,"102":0.00707,"103":0.03298,"104":0.00707,"105":0.0801,"106":0.01414,"107":0.02356,"108":0.02592,"109":0.90235,"110":0.01414,"111":0.03063,"112":0.02827,"113":0.02356,"114":0.14136,"115":0.08717,"116":0.54895,"117":6.90308,"118":7.068,"119":0.00942,"120":0.00471,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 44 45 46 50 51 52 53 54 55 57 59 60 61 62 66 121 122"},F:{"28":0.00707,"36":0.00236,"46":0.00236,"71":0.00236,"74":0.00236,"77":0.00236,"79":0.00471,"81":0.00236,"82":0.00471,"83":0.00236,"91":0.00236,"93":0.00236,"94":0.00236,"95":0.00707,"100":0.00236,"101":0.00236,"102":0.26623,"103":0.0377,_:"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 75 76 78 80 84 85 86 87 88 89 90 92 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00236,"15":0.00236,"16":0.00236,"17":0.00236,"18":0.00707,"84":0.00236,"85":0.00236,"89":0.00236,"90":0.00236,"91":0.00236,"92":0.01178,"96":0.00236,"97":0.00236,"98":0.00236,"101":0.00236,"103":0.00236,"104":0.00236,"105":0.00236,"106":0.00471,"107":0.00707,"108":0.00471,"109":0.0212,"110":0.00942,"111":0.00471,"112":0.00471,"113":0.01178,"114":0.0212,"115":0.02592,"116":0.05419,"117":1.54318,"118":1.26282,"119":0.00471,_:"13 14 79 80 81 83 86 87 88 93 94 95 99 100 102"},E:{"13":0.00471,"14":0.02827,"15":0.00707,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.02356,"11.1":0.00236,"12.1":0.00236,"13.1":0.01885,"14.1":0.05183,"15.1":0.01414,"15.2-15.3":0.01178,"15.4":0.02356,"15.5":0.0377,"15.6":0.16256,"16.0":0.0212,"16.1":0.07304,"16.2":0.05654,"16.3":0.1178,"16.4":0.04948,"16.5":0.0966,"16.6":0.69031,"17.0":0.34162,"17.1":0.01885},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00264,"5.0-5.1":0.00264,"6.0-6.1":0.00791,"7.0-7.1":0.01847,"8.1-8.4":0.00264,"9.0-9.2":0.01847,"9.3":0.06331,"10.0-10.2":0.00264,"10.3":0.09233,"11.0-11.2":0.08441,"11.3-11.4":0.02902,"12.0-12.1":0.02374,"12.2-12.5":0.41943,"13.0-13.1":0.01319,"13.2":0.07122,"13.3":0.02638,"13.4-13.7":0.08441,"14.0-14.4":0.23214,"14.5-14.8":0.37459,"15.0-15.1":0.14772,"15.2-15.3":0.16883,"15.4":0.18729,"15.5":0.26643,"15.6-15.7":1.84392,"16.0":0.68059,"16.1":1.30314,"16.2":0.63574,"16.3":1.17916,"16.4":0.25324,"16.5":0.67531,"16.6-16.7":12.64894,"17.0":4.50561,"17.1":0.27171,"17.2":0.00791},P:{"4":0.03079,"20":0.04106,"21":0.10265,"22":1.4884,"23":0.24636,"5.0-5.4":0.01026,_:"6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.04106,"11.1-11.2":0.01026,"13.0":0.01026,"14.0":0.03079,"16.0":0.03079,"17.0":0.02053,"18.0":0.02053,"19.0":0.07185},I:{"0":0.06845,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"8":0.00241,"11":0.11068,_:"6 7 9 10 5.5"},K:{"0":0.45864,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.07644},Q:{_:"13.1"},O:{"0":1.9798},H:{"0":0},L:{"0":46.29456}};
      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 74c33515ab6757..00686708a7bf40 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SB.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SB.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.05085,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01017,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00339,"111":0,"112":0,"113":0.00339,"114":0.00339,"115":0.04746,"116":0.02034,"117":0.28476,"118":0.01695,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00339,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.01017,"52":0,"53":0.03051,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00339,"70":0.00339,"71":0,"72":0,"73":0,"74":0.00339,"75":0,"76":0.00339,"77":0.00339,"78":0.00339,"79":0,"80":0,"81":0.00678,"83":0.00339,"84":0,"85":0,"86":0,"87":0.00678,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.01356,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00339,"102":0.00339,"103":0.07119,"104":0.01356,"105":0.00339,"106":0.00678,"107":0,"108":0.15933,"109":0.37968,"110":0.02712,"111":0.01017,"112":0.01017,"113":0.00339,"114":0.05085,"115":0.06441,"116":3.24423,"117":1.28481,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00678,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00339,"34":0,"35":0,"36":0,"37":0.00678,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00339,"64":0,"65":0.00339,"66":0,"67":0,"68":0.00678,"69":0.01695,"70":0.12543,"71":0.00678,"72":0.06441,"73":0.03051,"74":0,"75":0,"76":0,"77":0.03729,"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.0678,"102":0.03729,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00339,"13":0,"14":0.53901,"15":0.00678,"16":0.01017,"17":0.01356,"18":0.02034,"79":0,"80":0.01017,"81":0,"83":0,"84":0.00339,"85":0.00678,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01695,"93":0,"94":0.00339,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00339,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00339,"108":0.00339,"109":0.01695,"110":0.01017,"111":0.00339,"112":0.00678,"113":0.02034,"114":0.01356,"115":0.07119,"116":0.88818,"117":0.64071},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.00678,"14.1":0.01695,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00339,"15.6":0.22713,"16.0":0.00339,"16.1":0.00339,"16.2":0,"16.3":0.00339,"16.4":0.00339,"16.5":0.01017,"16.6":0.0678,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.01749,"9.3":0.01117,"10.0-10.2":0,"10.3":0.0442,"11.0-11.2":0.00243,"11.3-11.4":0.00243,"12.0-12.1":0,"12.2-12.5":0.22734,"13.0-13.1":0,"13.2":0,"13.3":0.12144,"13.4-13.7":0.0374,"14.0-14.4":0.02235,"14.5-14.8":0.07967,"15.0-15.1":0.02866,"15.2-15.3":0.1501,"15.4":0.02672,"15.5":0,"15.6-15.7":0.25357,"16.0":0.3687,"16.1":0.12144,"16.2":0.38618,"16.3":0.20548,"16.4":0.03983,"16.5":0.12581,"16.6":2.5051,"17.0":0.07724,"17.1":0},P:{"4":0.08305,"20":0.4983,"21":0.69554,"22":1.10041,"5.0-5.4":0.03114,"6.2-6.4":0,"7.2-7.4":0.15572,"8.2":0,"9.2":0.20762,"10.1":0,"11.1-11.2":0.02076,"12.0":0.01038,"13.0":0.01038,"14.0":0.03114,"15.0":0.01038,"16.0":0.15572,"17.0":0.05191,"18.0":0.14534,"19.0":0.10381},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13746},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05424,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":72.07271},R:{_:"0"},M:{"0":0.49575},Q:{"13.1":0.00661},O:{"0":4.56751},H:{"0":2.15272}};
      +module.exports={C:{"47":0.02714,"96":0.01206,"98":0.00302,"110":0.00302,"113":0.00905,"115":0.0573,"116":0.00302,"117":0.03921,"118":0.78718,"119":0.06032,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 99 100 101 102 103 104 105 106 107 108 109 111 112 114 120 121 122 3.5 3.6"},D:{"41":0.00302,"47":0.02714,"48":0.00302,"54":0.00302,"55":0.00603,"69":0.0181,"71":0.00603,"75":0.00603,"76":0.00302,"78":0.00905,"79":0.01508,"81":0.00302,"87":0.08746,"89":0.04222,"90":0.00302,"91":0.00603,"92":0.00302,"94":0.00603,"95":0.19906,"101":0.00302,"102":0.00905,"103":0.19302,"104":0.00905,"105":0.00603,"106":0.0181,"107":0.05429,"108":0.6786,"109":0.6213,"110":0.06635,"111":0.00905,"112":0.10858,"113":0.00302,"114":0.06635,"115":0.05429,"116":0.41922,"117":6.44821,"118":5.23578,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 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 49 50 51 52 53 56 57 58 59 60 61 62 63 64 65 66 67 68 70 72 73 74 77 80 83 84 85 86 88 93 96 97 98 99 100 119 120 121 122"},F:{"83":0.00603,"102":0.1508,"103":0.06032,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00603,"13":0.01206,"14":2.90742,"15":0.00603,"16":0.01206,"17":0.03619,"18":0.01508,"88":0.01206,"92":0.02413,"97":0.00302,"100":0.00302,"103":0.00302,"105":0.01508,"107":0.00302,"108":0.00302,"109":0.03619,"110":0.04826,"111":0.01206,"112":0.01206,"113":0.00603,"114":0.04222,"115":0.0754,"116":0.10858,"117":1.91818,"118":1.52006,"119":0.00603,_:"79 80 81 83 84 85 86 87 89 90 91 93 94 95 96 98 99 101 102 104 106"},E:{"12":0.00603,"13":0.00302,"14":0.01508,"15":0.00302,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 16.0 17.1 17.2","12.1":0.00905,"13.1":0.00603,"14.1":0.03318,"15.4":0.00603,"15.5":0.02111,"15.6":0.41621,"16.1":0.00302,"16.2":0.00302,"16.3":0.00603,"16.4":0.00603,"16.5":0.06334,"16.6":0.1327,"17.0":0.04524},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00025,"5.0-5.1":0.00025,"6.0-6.1":0.00074,"7.0-7.1":0.00173,"8.1-8.4":0.00025,"9.0-9.2":0.00173,"9.3":0.00593,"10.0-10.2":0.00025,"10.3":0.00865,"11.0-11.2":0.00791,"11.3-11.4":0.00272,"12.0-12.1":0.00223,"12.2-12.5":0.03932,"13.0-13.1":0.00124,"13.2":0.00668,"13.3":0.00247,"13.4-13.7":0.00791,"14.0-14.4":0.02176,"14.5-14.8":0.03511,"15.0-15.1":0.01385,"15.2-15.3":0.01583,"15.4":0.01756,"15.5":0.02497,"15.6-15.7":0.17284,"16.0":0.0638,"16.1":0.12215,"16.2":0.05959,"16.3":0.11053,"16.4":0.02374,"16.5":0.0633,"16.6-16.7":1.18565,"17.0":0.42234,"17.1":0.02547,"17.2":0.00074},P:{"4":0.1773,"20":0.74048,"21":0.29202,"22":0.82392,"23":0.11472,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.14601,"9.2":0.03129,"11.1-11.2":0.07301,"13.0":0.03129,"14.0":0.04172,"15.0":0.01043,"16.0":0.22945,"17.0":0.01043,"18.0":0.07301,"19.0":0.22945},I:{"0":0.04865,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"10":0.00729,"11":0.14954,_:"6 7 8 9 5.5"},K:{"0":1.59052,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00699,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.77534},Q:{"13.1":0.11875},O:{"0":3.33883},H:{"0":0.03},L:{"0":64.94059}};
      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 3c48cfa13b905d..1b24383ee22741 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SC.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SC.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.03896,"51":0,"52":0.08324,"53":0.21075,"54":0,"55":0.00708,"56":0.04073,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00177,"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.00177,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.06199,"103":0,"104":0.00177,"105":0.01594,"106":0,"107":0,"108":0.00531,"109":0,"110":0,"111":0,"112":0.00177,"113":0,"114":0,"115":0.02657,"116":0.01771,"117":0.15231,"118":0.01063,"119":0,"120":0,"3.5":0,"3.6":0.00177},D:{"4":0.00177,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01063,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.04073,"46":0,"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.00354,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00177,"69":0.00177,"70":0.00177,"71":0.00177,"72":0.10272,"73":0,"74":0.00177,"75":0.00177,"76":0.00177,"77":0.00177,"78":0.00177,"79":0.00354,"80":0.00354,"81":0.00354,"83":0.00354,"84":0.00177,"85":0.00177,"86":0.00708,"87":0.00531,"88":0.00354,"89":0.00177,"90":0.00354,"91":0.00354,"92":0.00177,"93":0,"94":0.00354,"95":0,"96":0.00354,"97":0,"98":0,"99":0.00531,"100":0.00177,"101":0.00354,"102":0.00177,"103":0.00354,"104":0.00354,"105":0.01063,"106":0.01948,"107":0.00708,"108":0.00177,"109":0.08324,"110":0.00886,"111":0.00354,"112":0.03365,"113":0.02479,"114":0.08501,"115":0.0425,"116":0.696,"117":0.21606,"118":0.00708,"119":0.00177,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00177,"69":0.00354,"70":0,"71":0,"72":0.02657,"73":0.00708,"74":0,"75":0,"76":0,"77":0.00177,"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.00354,"95":0.00354,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01063,"102":0.01063,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00177,"16":0,"17":0,"18":0.00177,"79":0,"80":0.00177,"81":0.00177,"83":0.00177,"84":0.00177,"85":0.00177,"86":0.00177,"87":0,"88":0,"89":0.00177,"90":0.00177,"91":0,"92":0.00177,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00177,"100":0.00354,"101":0,"102":0,"103":0,"104":0,"105":0.00177,"106":0,"107":0,"108":0.00177,"109":0.00177,"110":0,"111":0,"112":0.00354,"113":0.00708,"114":0.01063,"115":0.00708,"116":0.15585,"117":0.10449},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00354,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01063,"10.1":0,"11.1":0,"12.1":0.05313,"13.1":0.00177,"14.1":0.00886,"15.1":0.00531,"15.2-15.3":0.00531,"15.4":0,"15.5":0,"15.6":0.00708,"16.0":0.00177,"16.1":0.00177,"16.2":0.00177,"16.3":0.01948,"16.4":0.00354,"16.5":0.00708,"16.6":0.03896,"17.0":0.00354,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03025,"10.0-10.2":0,"10.3":0.0121,"11.0-11.2":0.01815,"11.3-11.4":0.01815,"12.0-12.1":0.03025,"12.2-12.5":0.35085,"13.0-13.1":0.01815,"13.2":51.63552,"13.3":0.0121,"13.4-13.7":0.10284,"14.0-14.4":0.22382,"14.5-14.8":0.30246,"15.0-15.1":0.11493,"15.2-15.3":0.15728,"15.4":0.11493,"15.5":0.09679,"15.6-15.7":0.89527,"16.0":0.31456,"16.1":0.60491,"16.2":0.16333,"16.3":0.41134,"16.4":0.3327,"16.5":0.39319,"16.6":3.65973,"17.0":0.3448,"17.1":0},P:{"4":0.05062,"20":0.0405,"21":0.13161,"22":0.99214,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05062,"8.2":0,"9.2":0.02025,"10.1":0,"11.1-11.2":0.0405,"12.0":0,"13.0":0.0405,"14.0":0.01012,"15.0":0,"16.0":0.0405,"17.0":0.02025,"18.0":0.03037,"19.0":0.07087},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03531},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00266,"7":0,"8":0.00266,"9":0.0186,"10":0,"11":0.02922,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0.00823,"11":0},L:{"0":32.84116},R:{_:"0"},M:{"0":0.26333},Q:{"13.1":0.0576},O:{"0":0.89696},H:{"0":0.43628}};
      +module.exports={C:{"45":0.0067,"49":0.00168,"50":0.04693,"52":2.72015,"53":0.0067,"55":0.07039,"56":0.90336,"62":0.00335,"68":0.00335,"70":0.00168,"71":0.00168,"72":0.00168,"73":0.00168,"76":0.00335,"77":0.00335,"78":0.01006,"79":0.00168,"80":0.00168,"81":0.00168,"82":0.00335,"88":0.00168,"91":0.00838,"98":0.00168,"100":0.00335,"102":0.11062,"104":0.0352,"105":0.03352,"106":0.00168,"107":0.00168,"108":0.0067,"111":0.00335,"113":0.00335,"115":0.20615,"116":0.00335,"117":0.02682,"118":0.34358,"119":0.02849,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 51 54 57 58 59 60 61 63 64 65 66 67 69 74 75 83 84 85 86 87 89 90 92 93 94 95 96 97 99 101 103 109 110 112 114 120 121 122 3.5 3.6"},D:{"37":0.00838,"44":0.0067,"45":0.18436,"49":0.00503,"53":0.00335,"55":0.00335,"64":0.00168,"68":0.03184,"69":0.01508,"70":0.02011,"71":0.01508,"72":0.34861,"73":0.01006,"74":0.03687,"75":0.02011,"76":0.02179,"77":0.01173,"78":0.02514,"79":0.03017,"80":0.03855,"81":0.02682,"83":0.04358,"84":0.02346,"85":0.02849,"86":0.06704,"87":0.03855,"88":0.04022,"89":0.02849,"90":0.03855,"91":0.01341,"92":0.01341,"93":0.00168,"94":0.0067,"95":0.00335,"96":0.00503,"97":0.0067,"98":0.0067,"99":0.00838,"100":0.00168,"101":0.01173,"102":0.01508,"103":0.0067,"104":0.00503,"105":0.15084,"106":0.0838,"107":0.0067,"108":0.00503,"109":0.3285,"110":0.01173,"111":0.02849,"112":0.19609,"113":0.02849,"114":0.13408,"115":0.03855,"116":0.28492,"117":3.11568,"118":2.21064,"119":0.00168,"120":0.00335,_:"4 5 6 7 8 9 10 11 12 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 46 47 48 50 51 52 54 56 57 58 59 60 61 62 63 65 66 67 121 122"},F:{"47":0.00168,"53":0.00335,"54":0.00838,"55":0.00838,"56":0.00168,"57":0.00168,"60":0.00168,"65":0.00168,"66":0.00168,"67":0.00168,"68":0.00168,"71":0.00168,"75":0.00168,"76":0.00168,"78":0.00168,"94":0.00335,"95":0.01006,"102":0.08883,"103":0.02011,_:"9 11 12 15 16 17 18 19 20 21 22 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 58 62 63 64 69 70 72 73 74 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00335,"18":0.0067,"79":0.00503,"80":0.00838,"81":0.00838,"83":0.00838,"84":0.01341,"85":0.0067,"86":0.00838,"87":0.01006,"88":0.00838,"89":0.00838,"90":0.00838,"91":0.00168,"92":0.01006,"95":0.00168,"100":0.00168,"105":0.0067,"107":0.00168,"108":0.00168,"109":0.00503,"110":0.00168,"111":0.00335,"112":0.01006,"113":0.00838,"114":0.01006,"115":0.00503,"116":0.10559,"117":0.57152,"118":0.37207,"119":0.00503,_:"13 14 15 16 17 93 94 96 97 98 99 101 102 103 104 106"},E:{"14":0.0905,"15":0.00168,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.00168,"9.1":0.16257,"12.1":0.11732,"13.1":0.0067,"14.1":0.09386,"15.1":0.02514,"15.2-15.3":0.0352,"15.4":0.00503,"15.5":0.01341,"15.6":0.02849,"16.0":0.01173,"16.1":0.01844,"16.2":0.0067,"16.3":0.01341,"16.4":0.03184,"16.5":0.03687,"16.6":0.13576,"17.0":0.08548,"17.1":0.00335},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00554,"5.0-5.1":0.00554,"6.0-6.1":0.01663,"7.0-7.1":0.03879,"8.1-8.4":0.00554,"9.0-9.2":0.03879,"9.3":0.13301,"10.0-10.2":0.00554,"10.3":0.19397,"11.0-11.2":0.17735,"11.3-11.4":0.06096,"12.0-12.1":0.04988,"12.2-12.5":0.8812,"13.0-13.1":0.02771,"13.2":0.14964,"13.3":0.05542,"13.4-13.7":0.17735,"14.0-14.4":0.48771,"14.5-14.8":0.78698,"15.0-15.1":0.31036,"15.2-15.3":0.3547,"15.4":0.39349,"15.5":0.55975,"15.6-15.7":3.87394,"16.0":1.42987,"16.1":2.73781,"16.2":1.33565,"16.3":2.47733,"16.4":0.53204,"16.5":1.41878,"16.6-16.7":26.57446,"17.0":9.46594,"17.1":0.57084,"17.2":0.01663},P:{"4":0.03085,"20":0.05141,"21":0.13367,"22":1.17222,"23":0.16452,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0","7.2-7.4":0.03085,"11.1-11.2":0.01028,"13.0":0.09254,"15.0":0.01028,"16.0":0.05141,"17.0":0.02057,"18.0":0.05141,"19.0":0.10283},I:{"0":0.02484,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"11":0.0838,_:"6 7 8 9 10 5.5"},K:{"0":0.591,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.25804},Q:{"13.1":0.0333},O:{"0":0.54106},H:{"0":0},L:{"0":25.96409}};
      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 e65a54835f68f6..505554e4bfd1a1 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SD.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SD.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00087,"46":0,"47":0.00173,"48":0,"49":0.0026,"50":0,"51":0,"52":0.00087,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00087,"67":0,"68":0,"69":0.00087,"70":0,"71":0,"72":0.00173,"73":0,"74":0,"75":0,"76":0,"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.00087,"101":0,"102":0.0052,"103":0,"104":0,"105":0.00087,"106":0.00087,"107":0,"108":0,"109":0.00173,"110":0.0026,"111":0.00433,"112":0.00087,"113":0.00087,"114":0.00087,"115":0.02078,"116":0.00779,"117":0.0459,"118":0.00433,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00087,"41":0.00087,"42":0,"43":0.00087,"44":0,"45":0,"46":0.00087,"47":0.00087,"48":0,"49":0,"50":0.00087,"51":0.00173,"52":0,"53":0,"54":0,"55":0.00087,"56":0.00087,"57":0,"58":0.00953,"59":0,"60":0,"61":0,"62":0,"63":0.00087,"64":0,"65":0,"66":0,"67":0,"68":0.00087,"69":0.00087,"70":0.00346,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00087,"78":0.00693,"79":0.0026,"80":0.00173,"81":0.00173,"83":0.00087,"84":0,"85":0.00087,"86":0.00087,"87":0.00173,"88":0.0026,"89":0.00087,"90":0,"91":0.00087,"92":0.00173,"93":0,"94":0,"95":0,"96":0.00087,"97":0.00346,"98":0.00087,"99":0.00346,"100":0.00087,"101":0,"102":0.00087,"103":0.00087,"104":0.00173,"105":0.00087,"106":0.00087,"107":0.00346,"108":0.00173,"109":0.04936,"110":0.00173,"111":0.00606,"112":0.0026,"113":0.00087,"114":0.01039,"115":0.01472,"116":0.14982,"117":0.03464,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00087,"25":0,"26":0,"27":0,"28":0.0026,"29":0.00087,"30":0.00433,"31":0,"32":0.00087,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00087,"39":0,"40":0,"41":0,"42":0.00087,"43":0,"44":0,"45":0,"46":0,"47":0.00087,"48":0,"49":0,"50":0.00087,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00173,"60":0.00606,"62":0,"63":0.0026,"64":0.00346,"65":0.00346,"66":0.0026,"67":0.0052,"68":0.00173,"69":0.01472,"70":0.01126,"71":0.01386,"72":0.06928,"73":0.01039,"74":0.0026,"75":0,"76":0.00173,"77":0.02511,"78":0.00087,"79":0.00173,"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.0026,"96":0,"97":0,"98":0,"99":0.00087,"100":0.00346,"101":0.01126,"102":0.01126,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00087,"10.6":0.00173,"11.1":0.00087,"11.5":0,"11.6":0,"12.1":0.00433},B:{"12":0.00087,"13":0,"14":0.00087,"15":0,"16":0.00087,"17":0.00087,"18":0.00346,"79":0,"80":0,"81":0,"83":0,"84":0.00087,"85":0,"86":0,"87":0,"88":0,"89":0.00173,"90":0.00087,"91":0,"92":0.00866,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00087,"101":0,"102":0,"103":0.00087,"104":0,"105":0,"106":0,"107":0,"108":0.00087,"109":0.00173,"110":0.00173,"111":0.00173,"112":0.00087,"113":0.00087,"114":0.0026,"115":0.00346,"116":0.03291,"117":0.01299},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00087,"12":0,"13":0,"14":0.00087,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.05283,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00087,"14.1":0.00087,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00087,"16.0":0,"16.1":0,"16.2":0,"16.3":0.00087,"16.4":0,"16.5":0,"16.6":0.00173,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00709,"5.0-5.1":0,"6.0-6.1":0.00203,"7.0-7.1":0.01469,"8.1-8.4":0.00051,"9.0-9.2":0.00304,"9.3":0.11296,"10.0-10.2":0.00051,"10.3":0.01925,"11.0-11.2":0.0152,"11.3-11.4":0.00203,"12.0-12.1":0.00962,"12.2-12.5":0.22086,"13.0-13.1":0.00253,"13.2":0.00203,"13.3":0.0157,"13.4-13.7":0.03749,"14.0-14.4":0.19705,"14.5-14.8":0.22086,"15.0-15.1":0.08966,"15.2-15.3":0.14842,"15.4":0.11246,"15.5":0.1621,"15.6-15.7":0.58458,"16.0":0.31407,"16.1":0.3784,"16.2":0.2776,"16.3":0.53544,"16.4":0.3627,"16.5":0.30445,"16.6":0.70413,"17.0":0.19553,"17.1":0},P:{"4":0.41517,"20":0.52655,"21":0.35441,"22":1.205,"5.0-5.4":0.03038,"6.2-6.4":0.05063,"7.2-7.4":0.30378,"8.2":0,"9.2":0.28353,"10.1":0.01013,"11.1-11.2":0.05063,"12.0":0.01013,"13.0":0.07088,"14.0":0.15189,"15.0":0.0405,"16.0":0.45567,"17.0":0.14176,"18.0":0.2734,"19.0":0.56706},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00963,"4.2-4.3":0.02247,"4.4":0,"4.4.3-4.4.4":0.21829},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00433,"5.5":0},S:{"2.5":0.00913,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":74.81685},R:{_:"0"},M:{"0":0.18268},Q:{"13.1":0},O:{"0":1.64412},H:{"0":10.22132}};
      +module.exports={C:{"26":0.00081,"28":0.00081,"31":0.00243,"32":0.00081,"33":0.00081,"34":0.00162,"35":0.00162,"36":0.00162,"38":0.00486,"39":0.00081,"40":0.00081,"41":0.00081,"42":0.00324,"43":0.00405,"44":0.00486,"45":0.00243,"46":0.00243,"47":0.00324,"48":0.00486,"49":0.01134,"50":0.00648,"52":0.0081,"53":0.00081,"56":0.00243,"57":0.00162,"58":0.00243,"60":0.00081,"61":0.00162,"64":0.00243,"66":0.00243,"68":0.00081,"70":0.00324,"71":0.00081,"72":0.0081,"74":0.00405,"78":0.00324,"80":0.00324,"81":0.00567,"83":0.00081,"85":0.00243,"87":0.00243,"89":0.00081,"90":0.00324,"91":0.01377,"94":0.00243,"95":0.00081,"96":0.00162,"99":0.00081,"101":0.00081,"102":0.00324,"103":0.00081,"104":0.00081,"105":0.00081,"106":0.00405,"107":0.00486,"108":0.00243,"109":0.00729,"110":0.00081,"111":0.04455,"112":0.00567,"113":0.00324,"114":0.0081,"115":0.20169,"116":0.00972,"117":0.04617,"118":0.45522,"119":0.11502,"120":0.00162,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 29 30 37 51 54 55 59 62 63 65 67 69 73 75 76 77 79 82 84 86 88 92 93 97 98 100 121 122 3.5 3.6"},D:{"11":0.00648,"27":0.00081,"31":0.00162,"32":0.00243,"33":0.0081,"34":0.00081,"38":0.00081,"39":0.00081,"40":0.0081,"41":0.00324,"43":0.0162,"46":0.00243,"47":0.00729,"48":0.00081,"49":0.00243,"50":0.01134,"51":0.00729,"52":0.00567,"53":0.00081,"54":0.00162,"55":0.00162,"56":0.00081,"57":0.00405,"58":0.07209,"59":0.00081,"60":0.00162,"61":0.00162,"63":0.0243,"64":0.00972,"65":0.00081,"66":0.00567,"67":0.00081,"68":0.0162,"69":0.00972,"70":0.01863,"71":0.02187,"72":0.00162,"73":0.00081,"74":0.00405,"75":0.00243,"76":0.00324,"78":0.081,"79":0.01215,"80":0.00648,"81":0.00243,"83":0.0162,"84":0.00081,"85":0.00162,"86":0.00567,"87":0.00648,"88":0.01134,"89":0.01053,"90":0.00081,"91":0.00567,"92":0.01944,"93":0.00972,"94":0.00324,"95":0.00405,"96":0.00891,"97":0.00243,"98":0.00162,"99":0.01053,"100":0.00486,"101":0.00324,"102":0.0243,"103":0.01458,"104":0.0162,"105":0.02268,"106":0.01458,"107":0.00648,"108":0.01863,"109":0.60102,"110":0.00648,"111":0.04374,"112":0.03726,"113":0.01863,"114":0.0567,"115":0.04374,"116":0.19602,"117":0.82863,"118":1.10241,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 35 36 37 42 44 45 62 77 119 120 121 122"},F:{"18":0.00567,"22":0.00081,"35":0.00081,"36":0.00081,"38":0.00081,"42":0.00162,"58":0.00081,"73":0.00081,"75":0.00081,"79":0.01701,"83":0.00243,"84":0.00243,"85":0.00081,"86":0.00648,"93":0.00081,"95":0.02187,"97":0.00162,"99":0.00081,"100":0.10692,"101":0.00729,"102":0.13122,"103":0.11745,_:"9 11 12 15 16 17 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 37 39 40 41 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 74 76 77 78 80 81 82 87 88 89 90 91 92 94 96 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01701,"13":0.00324,"14":0.0081,"15":0.00486,"16":0.00972,"17":0.00486,"18":0.03726,"80":0.00081,"84":0.02268,"85":0.00243,"89":0.01377,"90":0.01296,"92":0.08748,"94":0.00081,"100":0.01215,"102":0.00081,"103":0.00729,"104":0.00243,"105":0.00486,"106":0.00405,"107":0.00081,"108":0.00972,"109":0.01215,"110":0.00486,"111":0.00567,"112":0.01215,"113":0.02187,"114":0.01053,"115":0.02187,"116":0.0405,"117":0.22032,"118":0.31752,"119":0.00324,_:"79 81 83 86 87 88 91 93 95 96 97 98 99 101"},E:{"7":0.00081,"13":0.00243,"14":0.00162,_:"0 4 5 6 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 15.1 15.4 17.2","5.1":0.6885,"11.1":0.00081,"12.1":0.00081,"13.1":0.00081,"14.1":0.00324,"15.2-15.3":0.00081,"15.5":0.00081,"15.6":0.00972,"16.0":0.00486,"16.1":0.00081,"16.2":0.00081,"16.3":0.01215,"16.4":0.00081,"16.5":0.00243,"16.6":0.01215,"17.0":0.00891,"17.1":0.00081},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00037,"5.0-5.1":0.00037,"6.0-6.1":0.00111,"7.0-7.1":0.0026,"8.1-8.4":0.00037,"9.0-9.2":0.0026,"9.3":0.00891,"10.0-10.2":0.00037,"10.3":0.01299,"11.0-11.2":0.01188,"11.3-11.4":0.00408,"12.0-12.1":0.00334,"12.2-12.5":0.05903,"13.0-13.1":0.00186,"13.2":0.01002,"13.3":0.00371,"13.4-13.7":0.01188,"14.0-14.4":0.03267,"14.5-14.8":0.05272,"15.0-15.1":0.02079,"15.2-15.3":0.02376,"15.4":0.02636,"15.5":0.0375,"15.6-15.7":0.25952,"16.0":0.09579,"16.1":0.18341,"16.2":0.08948,"16.3":0.16596,"16.4":0.03564,"16.5":0.09505,"16.6-16.7":1.78027,"17.0":0.63414,"17.1":0.03824,"17.2":0.00111},P:{"4":0.41604,"20":0.29427,"21":0.25368,"22":1.00458,"23":0.05074,"5.0-5.4":0.01015,"6.2-6.4":0.02029,"7.2-7.4":0.24354,"8.2":0.01015,"9.2":0.04059,_:"10.1","11.1-11.2":0.09133,"12.0":0.05074,"13.0":0.07103,"14.0":0.12177,"15.0":0.06088,"16.0":0.37545,"17.0":0.09133,"18.0":0.26383,"19.0":0.42619},I:{"0":0.25601,"3":0,"4":0.00005,"2.1":0,"2.2":0.00008,"2.3":0,"4.1":0.00005,"4.2-4.3":0.00018,"4.4":0,"4.4.3-4.4.4":0.00077},A:{"8":0.00081,"9":0.00081,"11":0.03807,_:"6 7 10 5.5"},K:{"0":5.32242,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01838,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.17461},Q:{"13.1":0.00919},O:{"0":1.21308},H:{"0":6.79},L:{"0":71.5461}};
      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 4655c979da783d..da4e7c259c1cda 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00501,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00501,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01502,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00501,"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.03506,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00501,"114":0.00501,"115":0.09014,"116":0.05509,"117":0.76122,"118":0.07512,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00501,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01502,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00501,"76":0.00501,"77":0,"78":0.00501,"79":0.01002,"80":0.00501,"81":0.00501,"83":0,"84":0,"85":0.00501,"86":0.00501,"87":0.01502,"88":0.00501,"89":0.02504,"90":0.00501,"91":0.01002,"92":0.01002,"93":0.09014,"94":0,"95":0,"96":0.00501,"97":0,"98":0.00501,"99":0.00501,"100":0.01502,"101":0.01002,"102":0.01502,"103":0.20032,"104":0.02003,"105":0.03506,"106":0.01002,"107":0.01502,"108":0.10517,"109":0.54086,"110":0.02003,"111":0.03506,"112":0.04507,"113":0.10517,"114":0.29547,"115":0.99659,"116":11.48835,"117":2.39883,"118":0.00501,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00501,"47":0,"48":0,"49":0,"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.00501,"73":0,"74":0,"75":0,"76":0,"77":0.02003,"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.01002,"96":0,"97":0,"98":0,"99":0.00501,"100":0.0601,"101":0.1252,"102":0.22035,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00501,"89":0,"90":0,"91":0,"92":0.00501,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00501,"104":0,"105":0,"106":0.00501,"107":0.00501,"108":0.00501,"109":0.04507,"110":0.01002,"111":0.00501,"112":0.00501,"113":0.01502,"114":0.07512,"115":0.16026,"116":2.34875,"117":1.49739},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00501,"14":0.03506,"15":0.00501,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00501,"12.1":0.00501,"13.1":0.04006,"14.1":0.10517,"15.1":0.01502,"15.2-15.3":0.01502,"15.4":0.02504,"15.5":0.04006,"15.6":0.22536,"16.0":0.02003,"16.1":0.0601,"16.2":0.05509,"16.3":0.16026,"16.4":0.0601,"16.5":0.15525,"16.6":1.1268,"17.0":0.05509,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00785,"9.3":0.06278,"10.0-10.2":0,"10.3":0.05885,"11.0-11.2":0,"11.3-11.4":0.02354,"12.0-12.1":0.00785,"12.2-12.5":0.25503,"13.0-13.1":0.00392,"13.2":0,"13.3":0.01569,"13.4-13.7":0.04316,"14.0-14.4":0.12163,"14.5-14.8":0.43159,"15.0-15.1":0.09024,"15.2-15.3":0.16087,"15.4":0.18833,"15.5":0.29427,"15.6-15.7":2.77787,"16.0":0.98089,"16.1":2.20111,"16.2":0.96912,"16.3":2.10694,"16.4":0.22757,"16.5":0.85141,"16.6":25.14206,"17.0":1.70674,"17.1":0.00785},P:{"4":0.04092,"20":0.06139,"21":0.18416,"22":4.76771,"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.01023,"14.0":0.01023,"15.0":0.01023,"16.0":0.02046,"17.0":0.02046,"18.0":0.01023,"19.0":0.03069},I:{"0":0,"3":0,"4":0.01,"2.1":0,"2.2":0,"2.3":0,"4.1":0.005,"4.2-4.3":0.005,"4.4":0,"4.4.3-4.4.4":0.05},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01002,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":27.69382},R:{_:"0"},M:{"0":0.4393},Q:{"13.1":0},O:{"0":0.01498},H:{"0":0.15124}};
      +module.exports={C:{"16":0.00489,"52":0.00978,"56":0.00489,"59":0.00978,"78":0.01957,"88":0.00489,"91":0.00489,"102":0.01957,"104":0.00489,"108":0.00489,"109":0.00489,"110":0.00489,"111":0.00489,"112":0.00489,"113":0.00978,"114":0.00978,"115":0.21525,"116":0.01468,"117":0.07338,"118":1.33062,"119":0.26417,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 103 105 106 107 120 121 122 3.5 3.6"},D:{"38":0.00489,"49":0.00978,"66":0.03424,"74":0.00489,"75":0.00489,"76":0.00489,"77":0.00489,"79":0.02446,"80":0.00489,"81":0.00489,"83":0.00489,"84":0.00489,"85":0.01468,"86":0.02935,"87":0.03424,"88":0.00489,"89":0.04892,"90":0.01468,"91":0.00978,"92":0.01468,"93":0.13208,"94":0.00489,"95":0.00489,"96":0.00978,"97":0.00489,"98":0.00978,"99":0.00978,"100":0.03914,"101":0.0587,"102":0.04403,"103":0.35222,"104":0.04403,"105":0.03914,"106":0.01468,"107":0.02935,"108":0.09295,"109":0.96372,"110":0.05381,"111":0.06849,"112":0.07338,"113":0.09295,"114":0.21525,"115":0.36201,"116":3.53692,"117":14.83744,"118":11.17333,"119":0.01957,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 78 120 121 122"},F:{"46":0.00489,"95":0.08316,"101":0.00489,"102":0.93437,"103":0.12719,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00489,"88":0.00489,"92":0.01468,"103":0.01468,"104":0.00978,"106":0.00978,"107":0.00489,"108":0.00489,"109":0.10273,"110":0.00978,"111":0.00489,"112":0.00489,"113":0.02446,"114":0.02935,"115":0.04403,"116":0.20057,"117":3.82554,"118":3.1211,"119":0.00978,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 89 90 91 93 94 95 96 97 98 99 100 101 102 105"},E:{"13":0.00489,"14":0.06849,"15":0.00978,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.00978,"12.1":0.01468,"13.1":0.07827,"14.1":0.20057,"15.1":0.03424,"15.2-15.3":0.02446,"15.4":0.0636,"15.5":0.08806,"15.6":0.48431,"16.0":0.04892,"16.1":0.13698,"16.2":0.11741,"16.3":0.31309,"16.4":0.13208,"16.5":0.29352,"16.6":1.8932,"17.0":0.71912,"17.1":0.03914},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00261,"5.0-5.1":0.00261,"6.0-6.1":0.00784,"7.0-7.1":0.01829,"8.1-8.4":0.00261,"9.0-9.2":0.01829,"9.3":0.06271,"10.0-10.2":0.00261,"10.3":0.09145,"11.0-11.2":0.08361,"11.3-11.4":0.02874,"12.0-12.1":0.02351,"12.2-12.5":0.41543,"13.0-13.1":0.01306,"13.2":0.07054,"13.3":0.02613,"13.4-13.7":0.08361,"14.0-14.4":0.22992,"14.5-14.8":0.37101,"15.0-15.1":0.14631,"15.2-15.3":0.16722,"15.4":0.1855,"15.5":0.26389,"15.6-15.7":1.82631,"16.0":0.67409,"16.1":1.29069,"16.2":0.62967,"16.3":1.1679,"16.4":0.25082,"16.5":0.66886,"16.6-16.7":12.5281,"17.0":4.46256,"17.1":0.26911,"17.2":0.00784},P:{"4":0.05182,"20":0.04145,"21":0.12436,"22":3.91738,"23":0.78762,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0","13.0":0.01036,"14.0":0.01036,"15.0":0.01036,"16.0":0.02073,"17.0":0.02073,"18.0":0.01036,"19.0":0.02073},I:{"0":0.04066,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"11":0.02935,_:"6 7 8 9 10 5.5"},K:{"0":0.1941,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.45972},Q:{_:"13.1"},O:{"0":0.01022},H:{"0":0},L:{"0":19.66261}};
      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 8b9cf6bdead1b5..86cc6c4af27df0 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00332,"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.03985,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01328,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00332,"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.00996,"103":0.00332,"104":0.00332,"105":0.00664,"106":0.00996,"107":0.00332,"108":0.00332,"109":0.00664,"110":0.00332,"111":0.00664,"112":0.00332,"113":0.00332,"114":0.00332,"115":0.03985,"116":0.02657,"117":0.43173,"118":0.03653,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00664,"35":0,"36":0,"37":0,"38":0.03321,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00664,"48":0.00332,"49":0.00332,"50":0,"51":0,"52":0,"53":0.00664,"54":0,"55":0,"56":0.00332,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00332,"66":0,"67":0.00332,"68":0.00332,"69":0.00332,"70":0,"71":0,"72":0.00332,"73":0.00332,"74":0,"75":0.00332,"76":0.00332,"77":0,"78":0.00664,"79":0.08967,"80":0.00332,"81":0.01993,"83":0.00664,"84":0.00332,"85":0.00996,"86":0.01328,"87":0.04982,"88":0.00332,"89":0.00332,"90":0,"91":0.00332,"92":0.00332,"93":0,"94":0.00664,"95":0.00332,"96":0.00332,"97":0.00332,"98":0.00664,"99":0.02657,"100":0.01328,"101":0.01328,"102":0.00996,"103":0.03321,"104":0.01328,"105":0.03321,"106":0.03653,"107":0.04982,"108":0.07306,"109":0.24575,"110":0.04982,"111":0.03985,"112":0.04982,"113":0.02657,"114":0.57785,"115":0.15609,"116":4.51656,"117":0.97637,"118":0.00664,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00996,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00332,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01661,"47":0,"48":0,"49":0,"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.00332,"70":0,"71":0.00332,"72":0.0797,"73":0.01661,"74":0.00332,"75":0,"76":0,"77":0.02325,"78":0.00332,"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.00332,"92":0,"93":0.00332,"94":0.00664,"95":0.00664,"96":0,"97":0,"98":0,"99":0,"100":0.01328,"101":0.05978,"102":0.0631,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00332,"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.00332,"106":0.00332,"107":0.01328,"108":0.00996,"109":0.01661,"110":0.00664,"111":0.00664,"112":0.00332,"113":0.00332,"114":0.00996,"115":0.02657,"116":0.49483,"117":0.3321},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00332,"9":0,"10":0,"11":0,"12":0,"13":0.00332,"14":0.01993,"15":0.00332,_:"0","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.01661,"14.1":0.04317,"15.1":0.00664,"15.2-15.3":0.00664,"15.4":0.01661,"15.5":0.02989,"15.6":0.12288,"16.0":0.02325,"16.1":0.03653,"16.2":0.02657,"16.3":0.08635,"16.4":0.02325,"16.5":0.09299,"16.6":0.74058,"17.0":0.02989,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00496,"7.0-7.1":0.00992,"8.1-8.4":0.00744,"9.0-9.2":0.00992,"9.3":0.06448,"10.0-10.2":0,"10.3":0.06448,"11.0-11.2":0.01736,"11.3-11.4":0.01488,"12.0-12.1":0.0124,"12.2-12.5":0.26537,"13.0-13.1":0.00992,"13.2":0,"13.3":0.02728,"13.4-13.7":0.03224,"14.0-14.4":0.12152,"14.5-14.8":0.21577,"15.0-15.1":0.12152,"15.2-15.3":0.10664,"15.4":0.10912,"15.5":0.16121,"15.6-15.7":1.17061,"16.0":0.71923,"16.1":1.32189,"16.2":0.63739,"16.3":1.11108,"16.4":0.16617,"16.5":0.61258,"16.6":16.27441,"17.0":1.16813,"17.1":0},P:{"4":0.50563,"20":0.04128,"21":0.10319,"22":3.07503,"5.0-5.4":0.04128,"6.2-6.4":0.01032,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.02064,"11.1-11.2":0,"12.0":0.01032,"13.0":0.02064,"14.0":0,"15.0":0,"16.0":0.02064,"17.0":0.01032,"18.0":0.01032,"19.0":0.03096},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":27.13321},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00588,"9":0.01175,"10":0,"11":0.05876,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":27.83964},R:{_:"0"},M:{"0":0.47421},Q:{"13.1":0.01336},O:{"0":0.52096},H:{"0":0.71453}};
      +module.exports={C:{"44":0.00337,"48":0.01012,"61":0.00674,"72":0.00674,"78":0.03372,"83":0.00337,"88":0.00674,"91":0.00337,"102":0.00674,"103":0.00337,"104":0.00337,"105":0.00674,"106":0.01012,"107":0.00674,"108":0.01012,"109":0.01012,"110":0.00674,"111":0.00674,"112":0.00337,"113":0.01012,"114":0.00337,"115":0.11465,"116":0.00674,"117":0.04046,"118":1.00823,"119":0.26639,"120":0.00337,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 121 122 3.5 3.6"},D:{"26":0.00337,"34":0.02023,"38":0.09442,"41":0.00337,"47":0.02023,"48":0.00337,"49":0.01012,"50":0.00337,"53":0.02023,"55":0.00337,"56":0.01012,"61":0.00337,"62":0.00337,"63":0.00337,"65":0.00337,"67":0.00337,"68":0.00337,"69":0.00674,"70":0.00337,"71":0.00337,"72":0.00337,"73":0.01012,"74":0.00337,"75":0.01349,"76":0.00337,"77":0.22255,"78":0.02023,"79":0.27988,"80":0.01012,"81":0.0607,"83":0.02023,"84":0.01012,"85":0.20906,"86":0.04046,"87":0.22255,"88":0.00337,"89":0.01349,"90":0.00337,"91":0.01686,"92":0.01012,"93":0.00337,"94":0.02698,"95":0.01349,"96":0.01012,"97":0.00674,"98":0.0236,"99":0.03372,"100":0.04384,"101":0.05395,"102":0.0607,"103":0.09779,"104":0.04046,"105":0.08767,"106":0.09442,"107":0.09779,"108":0.12476,"109":0.75196,"110":0.08093,"111":0.09104,"112":0.1079,"113":0.08767,"114":1.76018,"115":0.11802,"116":0.9037,"117":8.64244,"118":8.15687,"119":0.02023,"120":0.01012,_:"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 42 43 44 45 46 51 52 54 57 58 59 60 64 66 121 122"},F:{"28":0.0236,"36":0.01349,"46":0.05395,"74":0.01349,"89":0.00337,"92":0.00337,"93":0.00337,"94":0.00674,"95":0.01012,"101":0.00337,"102":0.39115,"103":0.11465,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00337,"92":0.00337,"103":0.00337,"105":0.00337,"106":0.00674,"107":0.02023,"108":0.01686,"109":0.05058,"110":0.01349,"111":0.01012,"112":0.00674,"113":0.01012,"114":0.01686,"115":0.0236,"116":0.09104,"117":1.30159,"118":1.48368,"119":0.00674,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104"},E:{"8":0.00674,"13":0.01686,"14":0.05058,"15":0.01012,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.2","9.1":0.00337,"12.1":0.00674,"13.1":0.05732,"14.1":0.12476,"15.1":0.0236,"15.2-15.3":0.01686,"15.4":0.04721,"15.5":0.08093,"15.6":0.3372,"16.0":0.0607,"16.1":0.11802,"16.2":0.07081,"16.3":0.22255,"16.4":0.0607,"16.5":0.19895,"16.6":1.81751,"17.0":0.54626,"17.1":0.03035},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0017,"5.0-5.1":0.0017,"6.0-6.1":0.00509,"7.0-7.1":0.01188,"8.1-8.4":0.0017,"9.0-9.2":0.01188,"9.3":0.04072,"10.0-10.2":0.0017,"10.3":0.05939,"11.0-11.2":0.0543,"11.3-11.4":0.01866,"12.0-12.1":0.01527,"12.2-12.5":0.26979,"13.0-13.1":0.00848,"13.2":0.04581,"13.3":0.01697,"13.4-13.7":0.0543,"14.0-14.4":0.14932,"14.5-14.8":0.24094,"15.0-15.1":0.09502,"15.2-15.3":0.10859,"15.4":0.12047,"15.5":0.17137,"15.6-15.7":1.18604,"16.0":0.43777,"16.1":0.8382,"16.2":0.40892,"16.3":0.75846,"16.4":0.16289,"16.5":0.43437,"16.6-16.7":8.136,"17.0":2.89808,"17.1":0.17477,"17.2":0.00509},P:{"4":0.52699,"20":0.03162,"21":0.09486,"22":2.67713,"23":0.60077,"5.0-5.4":0.04216,"6.2-6.4":0.01054,_:"7.2-7.4 8.2 9.2 11.1-11.2 14.0 15.0","10.1":0.01054,"12.0":0.01054,"13.0":0.02108,"16.0":0.02108,"17.0":0.01054,"18.0":0.01054,"19.0":0.02108},I:{"0":17.45484,"3":0,"4":0.00351,"2.1":0,"2.2":0.00526,"2.3":0,"4.1":0.00351,"4.2-4.3":0.01228,"4.4":0,"4.4.3-4.4.4":0.05263},A:{"8":0.01293,"9":0.0517,"10":0.00646,"11":0.16158,_:"6 7 5.5"},K:{"0":0.80862,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.55012},Q:{"13.1":0.01988},O:{"0":0.57001},H:{"0":0},L:{"0":24.92682}};
      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 bc7c8080d11668..b287315e8c0ef1 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SH.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SH.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":100,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.7":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0,"17.0":0,"17.1":0},P:{"4":0,"20":0,"21":0,"22":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,"19.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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":0}};
      +module.exports={C:{"7":0.00693,"42":0.00693,"50":0.0277,"115":15.06188,"118":0.00693,_:"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 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 121 122 3.5 3.6"},D:{"11":0.06925,"50":0.0554,"55":0.00693,"60":0.04155,"70":0.2216,"87":0.65095,"109":1.82128,"111":0.02078,"116":0.0277,"117":0.23545,"118":42.5472,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 56 57 58 59 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 112 113 114 115 119 120 121 122"},F:{"103":0.6371,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00693,"13":0.0277,"14":0.00693,"15":0.00693,"17":0.00693,"18":0.00693,"117":0.90718,"118":2.37528,"119":0.03463,_:"16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2","12.1":0.0554,"13.1":0.00693,"14.1":0.00693},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00013,"5.0-5.1":0.00013,"6.0-6.1":0.0004,"7.0-7.1":0.00093,"8.1-8.4":0.00013,"9.0-9.2":0.00093,"9.3":0.00319,"10.0-10.2":0.00013,"10.3":0.00465,"11.0-11.2":0.00425,"11.3-11.4":0.00146,"12.0-12.1":0.0012,"12.2-12.5":0.02112,"13.0-13.1":0.00066,"13.2":0.00359,"13.3":0.00133,"13.4-13.7":0.00425,"14.0-14.4":0.01169,"14.5-14.8":0.01886,"15.0-15.1":0.00744,"15.2-15.3":0.0085,"15.4":0.00943,"15.5":0.01342,"15.6-15.7":0.09286,"16.0":0.03427,"16.1":0.06562,"16.2":0.03201,"16.3":0.05938,"16.4":0.01275,"16.5":0.03401,"16.6-16.7":0.63697,"17.0":0.22689,"17.1":0.01368,"17.2":0.0004},P:{"4":0.79725,"20":0.01022,"22":0.31685,"23":1.01189,_:"21 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 17.0 18.0 19.0","13.0":0.03066,"16.0":0.01022},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{"9":0.02078,"11":0.0554,_:"6 7 8 10 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{_:"0"},Q:{_:"13.1"},O:{"0":0.00923},H:{"0":0},L:{"0":31.3141}};
      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 863d46b8c470e4..50f721791c4201 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04198,"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.00525,"69":0,"70":0,"71":0,"72":0.00525,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01049,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01049,"89":0,"90":0,"91":0.00525,"92":0.00525,"93":0,"94":0.00525,"95":0,"96":0,"97":0.00525,"98":0,"99":0.00525,"100":0.00525,"101":0,"102":0.07871,"103":0.01049,"104":0.00525,"105":0,"106":0,"107":0.00525,"108":0.01049,"109":0.01049,"110":0.01574,"111":0.03148,"112":0.01574,"113":0.04722,"114":0.03148,"115":0.51421,"116":0.1784,"117":2.94357,"118":0.20988,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00525,"42":0,"43":0,"44":0.00525,"45":0,"46":0,"47":0,"48":0,"49":0.05247,"50":0,"51":0.03148,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01049,"69":0.00525,"70":0.00525,"71":0.00525,"72":0.00525,"73":0,"74":0.01049,"75":0.00525,"76":0.00525,"77":0.00525,"78":0.01049,"79":0.02624,"80":0.01574,"81":0.01049,"83":0.01049,"84":0.00525,"85":0.01574,"86":0.01049,"87":0.01574,"88":0.01574,"89":0.01049,"90":0.02099,"91":0.00525,"92":0.00525,"93":0.00525,"94":0.07346,"95":0.00525,"96":0.00525,"97":0,"98":0.01574,"99":0.02099,"100":0.01049,"101":0.00525,"102":0.00525,"103":0.03148,"104":0.01574,"105":0.03673,"106":0.01574,"107":0.02099,"108":0.02099,"109":1.26453,"110":0.01049,"111":0.01574,"112":0.03673,"113":0.02624,"114":0.1784,"115":0.31482,"116":11.48568,"117":2.8911,"118":0.01574,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01574,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01049,"47":0,"48":0,"49":0,"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.01049,"70":0,"71":0,"72":0.00525,"73":0,"74":0,"75":0,"76":0.00525,"77":0.01574,"78":0.00525,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00525,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01049,"96":0,"97":0,"98":0,"99":0.01574,"100":0.10494,"101":0.43025,"102":0.5247,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00525,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0.00525,"84":0.00525,"85":0.00525,"86":0,"87":0,"88":0,"89":0.00525,"90":0,"91":0,"92":0.00525,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00525,"108":0.00525,"109":0.06296,"110":0.00525,"111":0.00525,"112":0.00525,"113":0.00525,"114":0.02099,"115":0.06296,"116":1.80497,"117":1.34323},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00525,"14":0.02099,"15":0.00525,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.03673,"10.1":0,"11.1":0,"12.1":0.00525,"13.1":0.03148,"14.1":0.08395,"15.1":0.00525,"15.2-15.3":0.00525,"15.4":0.01049,"15.5":0.01574,"15.6":0.11019,"16.0":0.02099,"16.1":0.08395,"16.2":0.06821,"16.3":0.13118,"16.4":0.03148,"16.5":0.14167,"16.6":0.50896,"17.0":0.03673,"17.1":0},G:{"8":0.00174,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00523,"8.1-8.4":0.00523,"9.0-9.2":0.00523,"9.3":0.04529,"10.0-10.2":0,"10.3":0.03484,"11.0-11.2":0.02265,"11.3-11.4":0.01045,"12.0-12.1":0.0209,"12.2-12.5":0.1533,"13.0-13.1":0.00348,"13.2":0.00348,"13.3":0.01219,"13.4-13.7":0.02961,"14.0-14.4":0.0662,"14.5-14.8":0.19685,"15.0-15.1":0.054,"15.2-15.3":0.05575,"15.4":0.10626,"15.5":0.10626,"15.6-15.7":0.94942,"16.0":0.76999,"16.1":1.00168,"16.2":0.62017,"16.3":0.81179,"16.4":0.16549,"16.5":0.52087,"16.6":9.79031,"17.0":1.71592,"17.1":0},P:{"4":0.08162,"20":0.04081,"21":0.18363,"22":3.18299,"5.0-5.4":0.0102,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.0102,"10.1":0,"11.1-11.2":0.0102,"12.0":0,"13.0":0.0204,"14.0":0.05101,"15.0":0.0102,"16.0":0.03061,"17.0":0.0102,"18.0":0.0204,"19.0":0.03061},I:{"0":0,"3":0,"4":0.00652,"2.1":0,"2.2":0.00326,"2.3":0.00652,"4.1":0.03587,"4.2-4.3":0.00978,"4.4":0,"4.4.3-4.4.4":0.08804},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01049,"9":0,"10":0.00525,"11":0.02624,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.02303},R:{_:"0"},M:{"0":0.71295},Q:{"13.1":0},O:{"0":0.10932},H:{"0":0.22049}};
      +module.exports={C:{"45":0.01036,"52":0.13471,"60":0.01036,"68":0.00518,"72":0.00518,"78":0.01554,"83":0.01554,"88":0.02072,"89":0.00518,"91":0.01036,"95":0.00518,"97":0.01036,"99":0.01036,"100":0.00518,"102":0.04145,"103":0.01036,"104":0.00518,"105":0.00518,"107":0.00518,"108":0.01036,"109":0.00518,"110":0.01036,"111":0.03627,"112":0.01036,"113":0.03109,"114":0.02072,"115":1.04138,"116":0.02591,"117":0.22278,"118":4.50747,"119":1.04138,"120":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 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 90 92 93 94 96 98 101 106 121 122 3.5 3.6"},D:{"34":0.00518,"41":0.00518,"48":0.00518,"49":0.02072,"51":0.03627,"53":0.00518,"58":0.00518,"69":0.00518,"72":0.00518,"74":0.00518,"78":0.00518,"79":0.04145,"80":0.01036,"81":0.00518,"83":0.00518,"84":0.00518,"85":0.01554,"86":0.01036,"87":0.03109,"88":0.01036,"89":0.00518,"90":0.02072,"91":0.01036,"92":0.01554,"93":0.00518,"94":0.01554,"95":0.00518,"96":0.00518,"97":0.00518,"98":0.03109,"99":0.02072,"100":0.01554,"101":0.00518,"102":0.00518,"103":0.06735,"104":0.02072,"105":0.05699,"106":0.02591,"107":0.03109,"108":0.03109,"109":2.27446,"110":0.03109,"111":0.02591,"112":0.05699,"113":0.02591,"114":0.20206,"115":0.12953,"116":1.29525,"117":13.89026,"118":14.06642,"119":0.05699,"120":0.00518,_:"4 5 6 7 8 9 10 11 12 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 50 52 54 55 56 57 59 60 61 62 63 64 65 66 67 68 70 71 73 75 76 77 121 122"},F:{"28":0.01554,"46":0.02072,"85":0.00518,"95":0.04145,"99":0.01036,"101":0.03627,"102":1.63202,"103":0.45593,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00518},B:{"15":0.01036,"83":0.01036,"85":0.00518,"92":0.01554,"98":0.00518,"107":0.01036,"108":0.00518,"109":0.16579,"110":0.00518,"111":0.00518,"112":0.01036,"113":0.01554,"114":0.02072,"115":0.04663,"116":0.15543,"117":2.5646,"118":2.69412,"119":0.00518,_:"12 13 14 16 17 18 79 80 81 84 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 103 104 105 106"},E:{"9":0.00518,"14":0.02591,"15":0.00518,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.2","9.1":0.00518,"12.1":0.00518,"13.1":0.06735,"14.1":0.29014,"15.1":0.09844,"15.2-15.3":0.01036,"15.4":0.02072,"15.5":0.02072,"15.6":0.18134,"16.0":0.02591,"16.1":0.05181,"16.2":0.11916,"16.3":0.18652,"16.4":0.06217,"16.5":0.24869,"16.6":0.73052,"17.0":0.45593,"17.1":0.04663},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00113,"5.0-5.1":0.00113,"6.0-6.1":0.00338,"7.0-7.1":0.0079,"8.1-8.4":0.00113,"9.0-9.2":0.0079,"9.3":0.02707,"10.0-10.2":0.00113,"10.3":0.03948,"11.0-11.2":0.03609,"11.3-11.4":0.01241,"12.0-12.1":0.01015,"12.2-12.5":0.17934,"13.0-13.1":0.00564,"13.2":0.03045,"13.3":0.01128,"13.4-13.7":0.03609,"14.0-14.4":0.09925,"14.5-14.8":0.16016,"15.0-15.1":0.06316,"15.2-15.3":0.07219,"15.4":0.08008,"15.5":0.11392,"15.6-15.7":0.7884,"16.0":0.291,"16.1":0.55718,"16.2":0.27182,"16.3":0.50417,"16.4":0.10828,"16.5":0.28874,"16.6-16.7":5.40825,"17.0":1.92644,"17.1":0.11617,"17.2":0.00338},P:{"4":0.13947,"20":0.05364,"21":0.12874,"22":2.67138,"23":0.53642,"5.0-5.4":0.02146,_:"6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.01073,"11.1-11.2":0.01073,"13.0":0.02146,"14.0":0.02146,"15.0":0.01073,"16.0":0.01073,"17.0":0.01073,"18.0":0.01073,"19.0":0.03219},I:{"0":0.05752,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"8":0.02072,"9":0.00691,"11":0.07599,_:"6 7 10 5.5"},K:{"0":0.26499,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.84315},Q:{_:"13.1"},O:{"0":0.12045},H:{"0":0},L:{"0":32.44187}};
      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 40c4f494da50f2..eef80b6f6dc656 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js
      @@ -1 +1 @@
      -module.exports={C:{"34":0.00453,"43":0.00905,"51":0.00453,"52":0.0905,"56":0.0181,"61":0.00453,"68":0.0362,"72":0.00453,"78":0.0181,"79":0.00453,"88":0.00905,"91":0.0181,"99":0.01358,"101":0.00453,"102":0.07693,"103":0.00453,"104":0.00453,"105":0.00905,"108":0.02263,"109":0.01358,"110":0.00905,"111":0.01358,"112":0.02715,"113":0.0362,"114":0.04073,"115":0.91405,"116":0.24888,"117":3.80553,"118":0.4163,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 53 54 55 57 58 59 60 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 100 106 107 119 120 3.5 3.6"},D:{"34":0.0181,"38":0.04525,"41":0.00905,"47":0.01358,"49":0.0543,"53":0.04073,"63":0.08598,"67":0.00453,"68":0.01358,"70":0.00453,"72":0.00453,"76":0.00453,"77":0.08145,"78":0.00453,"79":0.362,"80":0.00905,"81":0.0181,"83":0.01358,"84":0.00905,"85":0.0543,"86":0.02263,"87":0.06788,"88":0.0362,"89":0.01358,"90":0.02715,"91":0.02263,"92":0.00905,"93":0.08145,"94":0.00905,"96":0.01358,"97":0.00453,"98":0.00905,"99":0.01358,"100":0.00905,"101":0.00905,"102":0.0181,"103":0.06335,"104":0.02715,"105":0.01358,"106":0.0181,"107":0.0362,"108":0.0362,"109":2.52043,"110":0.02263,"111":0.07693,"112":0.0543,"113":0.04073,"114":0.3258,"115":0.5068,"116":17.37148,"117":5.13135,"118":0.00905,_:"4 5 6 7 8 9 10 11 12 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 65 66 69 71 73 74 75 95 119 120"},F:{"28":0.0181,"36":0.00905,"46":0.0543,"77":0.00905,"85":0.02263,"93":0.01358,"95":0.19005,"96":0.00905,"98":0.00453,"99":0.01358,"100":0.2896,"101":1.15388,"102":1.3756,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 86 87 88 89 90 91 92 94 97 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"83":0.00453,"84":0.03168,"92":0.01358,"105":0.01358,"107":0.02715,"108":0.01358,"109":0.11313,"110":0.00905,"112":0.00905,"113":0.00905,"114":0.0543,"115":0.17195,"116":2.2444,"117":2.10413,_:"12 13 14 15 16 17 18 79 80 81 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 111"},E:{"4":0,"13":0.00453,"14":0.03168,"15":0.00453,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.1","9.1":0.00905,"12.1":0.0181,"13.1":0.04073,"14.1":0.07693,"15.1":0.00905,"15.2-15.3":0.00905,"15.4":0.02263,"15.5":0.02715,"15.6":0.15385,"16.0":0.02263,"16.1":0.0543,"16.2":0.06335,"16.3":0.11313,"16.4":0.0543,"16.5":0.24435,"16.6":0.8326,"17.0":0.0905},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.00232,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00927,"10.0-10.2":0,"10.3":0.04056,"11.0-11.2":0.00579,"11.3-11.4":0.00348,"12.0-12.1":0.00464,"12.2-12.5":0.09966,"13.0-13.1":0.00232,"13.2":0.00811,"13.3":0.24568,"13.4-13.7":0.00695,"14.0-14.4":0.09155,"14.5-14.8":0.10662,"15.0-15.1":0.03593,"15.2-15.3":0.04172,"15.4":0.04404,"15.5":0.09039,"15.6-15.7":0.79152,"16.0":0.3129,"16.1":0.62812,"16.2":0.28509,"16.3":0.54931,"16.4":0.08112,"16.5":0.26307,"16.6":6.60451,"17.0":1.0627,"17.1":0.00116},P:{"4":0.40275,"20":0.04131,"21":0.12392,"22":2.29259,"5.0-5.4":0.03098,"6.2-6.4":0.01033,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.02064,"11.1-11.2":0,"12.0":0.01032,"13.0":0.02065,"14.0":0,"15.0":0,"16.0":0.03098,"17.0":0.01033,"18.0":0.01032,"19.0":0.03098},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01027,"4.2-4.3":0.01643,"4.4":0,"4.4.3-4.4.4":0.05543},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00905,"11":0.06335,_:"6 7 9 10 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":40.38643},R:{_:"0"},M:{"0":0.29565},Q:{"13.1":0},O:{"0":0.03285},H:{"0":0.66347}};
      +module.exports={C:{"34":0.00497,"43":0.00497,"52":0.07952,"56":0.01491,"66":0.00497,"68":0.00994,"72":0.00497,"78":0.01988,"80":0.00497,"84":0.00497,"88":0.00994,"89":0.00497,"91":0.01988,"93":0.00497,"95":0.00497,"98":0.00497,"99":0.00994,"102":0.02982,"103":0.01491,"104":0.00497,"105":0.00994,"106":0.00497,"107":0.01491,"108":0.01988,"109":0.00497,"110":0.00994,"111":0.00994,"112":0.01491,"113":0.01988,"114":0.01988,"115":0.92939,"116":0.03976,"117":0.2982,"118":3.83684,"119":0.71568,"120":0.00497,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 81 82 83 85 86 87 90 92 94 96 97 100 101 121 122 3.5 3.6"},D:{"34":0.00994,"38":0.03976,"41":0.00497,"43":0.00497,"47":0.00497,"49":0.04473,"53":0.02982,"55":0.01491,"63":0.06958,"67":0.00497,"68":0.00994,"69":0.00497,"70":0.00497,"71":0.00994,"72":0.00497,"74":0.00497,"75":0.00497,"76":0.00497,"77":0.00497,"78":0.00497,"79":0.29323,"80":0.00994,"81":0.01491,"83":0.00994,"84":0.00497,"85":0.01988,"86":0.02485,"87":0.06461,"88":0.01988,"89":0.00994,"90":0.01988,"91":0.00497,"92":0.00497,"93":0.06461,"94":0.00497,"95":0.00994,"96":0.00994,"97":0.00497,"98":0.01491,"99":0.01491,"100":0.00994,"101":0.00994,"102":0.01988,"103":0.08946,"104":0.00994,"105":0.01491,"106":0.01988,"107":0.02485,"108":0.02982,"109":2.63907,"110":0.02982,"111":0.11928,"112":0.03479,"113":0.03479,"114":0.20874,"115":0.15904,"116":1.08843,"117":12.5741,"118":12.84745,"119":0.01491,_:"4 5 6 7 8 9 10 11 12 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 56 57 58 59 60 61 62 64 65 66 73 120 121 122"},F:{"28":0.01988,"36":0.00497,"46":0.02982,"60":0.00497,"77":0.00994,"79":0.00497,"85":0.00994,"93":0.00497,"94":0.00497,"95":0.17892,"97":0.00497,"99":0.00497,"100":0.00994,"101":0.03479,"102":2.33093,"103":0.82005,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 84 86 87 88 89 90 91 92 96 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00497,"83":0.00497,"92":0.01491,"100":0.00497,"104":0.00497,"105":0.00994,"107":0.00497,"108":0.00497,"109":0.08449,"110":0.00994,"111":0.00497,"112":0.00994,"113":0.00994,"114":0.03479,"115":0.03479,"116":0.10934,"117":2.67386,"118":2.56452,"119":0.00497,_:"12 13 14 15 16 17 79 80 81 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 106"},E:{"14":0.02982,"15":0.00994,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.01491,"12.1":0.02485,"13.1":0.03976,"14.1":0.07455,"15.1":0.00994,"15.2-15.3":0.01491,"15.4":0.01988,"15.5":0.03479,"15.6":0.1491,"16.0":0.02485,"16.1":0.0497,"16.2":0.05467,"16.3":0.0994,"16.4":0.05467,"16.5":0.14413,"16.6":0.57652,"17.0":0.46221,"17.1":0.03479,"17.2":0.00497},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00106,"5.0-5.1":0.00106,"6.0-6.1":0.00319,"7.0-7.1":0.00744,"8.1-8.4":0.00106,"9.0-9.2":0.00744,"9.3":0.02552,"10.0-10.2":0.00106,"10.3":0.03722,"11.0-11.2":0.03403,"11.3-11.4":0.0117,"12.0-12.1":0.00957,"12.2-12.5":0.16907,"13.0-13.1":0.00532,"13.2":0.02871,"13.3":0.01063,"13.4-13.7":0.03403,"14.0-14.4":0.09357,"14.5-14.8":0.15099,"15.0-15.1":0.05955,"15.2-15.3":0.06805,"15.4":0.0755,"15.5":0.1074,"15.6-15.7":0.74328,"16.0":0.27434,"16.1":0.52529,"16.2":0.25627,"16.3":0.47531,"16.4":0.10208,"16.5":0.27222,"16.6-16.7":5.09872,"17.0":1.81619,"17.1":0.10952,"17.2":0.00319},P:{"4":0.3622,"20":0.04139,"21":0.09314,"22":1.82133,"23":0.44498,"5.0-5.4":0.0207,"6.2-6.4":0.01035,_:"7.2-7.4 8.2 9.2 10.1 12.0 14.0","11.1-11.2":0.01035,"13.0":0.01035,"15.0":0.01035,"16.0":0.01035,"17.0":0.01035,"18.0":0.01035,"19.0":0.03105},I:{"0":0.07006,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"8":0.00497,"9":0.00994,"11":0.05467,_:"6 7 10 5.5"},K:{"0":0.59857,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.27665},Q:{_:"13.1"},O:{"0":0.04527},H:{"0":0},L:{"0":36.70053}};
      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 d226e23dc21005..0c08ed816b175e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0116,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00193,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00193,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00193,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.02127,"116":0.0058,"117":0.09283,"118":0.01354,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00193,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00193,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00193,"58":0.00193,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00387,"65":0.0116,"66":0,"67":0,"68":0,"69":0,"70":0.00193,"71":0,"72":0.00193,"73":0,"74":0.00193,"75":0.00193,"76":0.00387,"77":0.00193,"78":0,"79":0.00774,"80":0.00193,"81":0.00193,"83":0.0058,"84":0,"85":0,"86":0,"87":0.00193,"88":0.00193,"89":0,"90":0,"91":0,"92":0.0116,"93":0.01354,"94":0.00193,"95":0.00193,"96":0,"97":0,"98":0,"99":0.0058,"100":0,"101":0,"102":0.00193,"103":0.01741,"104":0.00967,"105":0.0058,"106":0.00193,"107":0.00774,"108":0.00387,"109":0.04255,"110":0.00193,"111":0.00967,"112":0.0058,"113":0.0058,"114":0.01354,"115":0.01547,"116":0.72525,"117":0.16826,"118":0.00193,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.00193,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00387,"25":0,"26":0.00387,"27":0.00193,"28":0.00193,"29":0,"30":0.0058,"31":0,"32":0.00193,"33":0.00193,"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.00193,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00193,"54":0.0058,"55":0,"56":0.00193,"57":0.00193,"58":0.00387,"60":0.0851,"62":0,"63":0.1083,"64":0.06382,"65":0.0116,"66":0.07543,"67":0.04448,"68":0.0058,"69":0.24368,"70":0.08123,"71":0.205,"72":0.54732,"73":0.16246,"74":0,"75":0,"76":0,"77":0.02514,"78":0,"79":0.00193,"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.00387,"96":0,"97":0,"98":0.00193,"99":0,"100":0.00193,"101":0.05028,"102":0.05609,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02127},B:{"12":0.00193,"13":0.00193,"14":0.00193,"15":0.00193,"16":0.00193,"17":0,"18":0.0058,"79":0,"80":0,"81":0,"83":0,"84":0.00193,"85":0,"86":0,"87":0,"88":0,"89":0.00193,"90":0,"91":0,"92":0.0058,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00193,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00387,"110":0.00193,"111":0.00193,"112":0.00967,"113":0.00193,"114":0.00193,"115":0.00774,"116":0.15085,"117":0.1025},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00387,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00774,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00193,"12.1":0,"13.1":0.00193,"14.1":0.00193,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01547,"16.0":0,"16.1":0.00193,"16.2":0,"16.3":0.0058,"16.4":0.00193,"16.5":0.00193,"16.6":0.02708,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00502,"7.0-7.1":0.08782,"8.1-8.4":0,"9.0-9.2":0.03346,"9.3":0.11543,"10.0-10.2":0,"10.3":0.2066,"11.0-11.2":0,"11.3-11.4":0.01255,"12.0-12.1":0.0184,"12.2-12.5":0.58801,"13.0-13.1":0.03764,"13.2":0.00167,"13.3":0.01422,"13.4-13.7":0.03848,"14.0-14.4":0.36301,"14.5-14.8":0.58299,"15.0-15.1":0.23002,"15.2-15.3":0.61979,"15.4":0.19907,"15.5":0.36552,"15.6-15.7":1.39349,"16.0":0.18903,"16.1":0.18736,"16.2":0.20576,"16.3":0.44665,"16.4":0.0987,"16.5":0.34879,"16.6":1.63103,"17.0":0.2802,"17.1":0},P:{"4":0.32312,"20":0.10097,"21":0.14136,"22":0.3837,"5.0-5.4":0.05049,"6.2-6.4":0,"7.2-7.4":0.10097,"8.2":0,"9.2":0.03029,"10.1":0.02019,"11.1-11.2":0.03029,"12.0":0,"13.0":0.02019,"14.0":0.0101,"15.0":0.0101,"16.0":0.02019,"17.0":0.02019,"18.0":0.06058,"19.0":0.02019},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0027,"4.2-4.3":0.00946,"4.4":0,"4.4.3-4.4.4":0.12072},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00193,"5.5":0},S:{"2.5":0.12099,_:"3.0-3.1"},J:{"7":0,"10":0.00807},N:{"10":0,"11":0},L:{"0":69.80625},R:{_:"0"},M:{"0":0.10486},Q:{"13.1":0},O:{"0":0.70174},H:{"0":13.36364}};
      +module.exports={C:{"38":0.00329,"44":0.00165,"45":0.00165,"47":0.00329,"48":0.00329,"49":0.00165,"53":0.00165,"66":0.00165,"78":0.00165,"82":0.00165,"95":0.00658,"109":0.00165,"111":0.00165,"115":0.10205,"116":0.00494,"117":0.01317,"118":0.33249,"119":0.10534,"120":0.00988,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 50 51 52 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 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 110 112 113 114 121 122 3.5 3.6"},D:{"11":0.00329,"19":0.00329,"22":0.00165,"42":0.00494,"47":0.00165,"48":0.00329,"50":0.00329,"54":0.00329,"55":0.00329,"58":0.01152,"59":0.00165,"63":0.00494,"64":0.01975,"65":0.07572,"66":0.00165,"68":0.00165,"69":0.00165,"72":0.00494,"74":0.00329,"75":0.00329,"76":0.01481,"78":0.00165,"79":0.02469,"80":0.00494,"81":0.00988,"83":0.00494,"85":0.00988,"86":0.00658,"87":0.00658,"89":0.00329,"91":0.00329,"92":0.14979,"93":0.06913,"95":0.00823,"96":0.00658,"98":0.00658,"99":0.01975,"100":0.00494,"101":0.00165,"102":0.03457,"103":0.11851,"105":0.01646,"106":0.00494,"107":0.01811,"108":0.00658,"109":0.20081,"111":0.00658,"112":0.01811,"113":0.00823,"114":0.09711,"115":0.02798,"116":0.38846,"117":1.72172,"118":2.06738,"119":0.01152,"120":0.00329,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 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 49 51 52 53 56 57 60 61 62 67 70 71 73 77 84 88 90 94 97 104 110 121 122"},F:{"24":0.00165,"31":0.00165,"36":0.00165,"40":0.00165,"42":0.00165,"45":0.00165,"46":0.00165,"65":0.01811,"72":0.02304,"77":0.00165,"79":0.00329,"95":0.01481,"98":0.00165,"99":0.00329,"101":0.00329,"102":0.29793,"103":0.13003,_:"9 11 12 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 32 33 34 35 37 38 39 41 43 44 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 73 74 75 76 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00988,"13":0.01646,"14":0.00165,"15":0.00494,"16":0.00988,"17":0.00658,"18":0.04444,"84":0.00658,"89":0.00329,"90":0.00494,"92":0.03621,"100":0.00329,"101":0.00165,"106":0.00165,"107":0.00329,"108":0.01317,"109":0.00494,"110":0.00165,"111":0.00494,"112":0.00165,"114":0.01317,"115":0.00823,"116":0.03457,"117":0.62219,"118":0.60737,"119":0.03457,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 102 103 104 105 113"},E:{"13":0.00165,"14":0.00658,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.02963,"11.1":0.00823,"12.1":0.00165,"13.1":0.01975,"14.1":0.02963,"15.1":0.00165,"15.2-15.3":0.00165,"15.4":0.00165,"15.5":0.00165,"15.6":0.05926,"16.0":0.00494,"16.1":0.00494,"16.2":0.00329,"16.3":0.01152,"16.4":0.00329,"16.5":0.00823,"16.6":0.09382,"17.0":0.02304,"17.1":0.00165},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0.00062,"6.0-6.1":0.00187,"7.0-7.1":0.00436,"8.1-8.4":0.00062,"9.0-9.2":0.00436,"9.3":0.01494,"10.0-10.2":0.00062,"10.3":0.02178,"11.0-11.2":0.01991,"11.3-11.4":0.00685,"12.0-12.1":0.0056,"12.2-12.5":0.09895,"13.0-13.1":0.00311,"13.2":0.0168,"13.3":0.00622,"13.4-13.7":0.01991,"14.0-14.4":0.05476,"14.5-14.8":0.08837,"15.0-15.1":0.03485,"15.2-15.3":0.03983,"15.4":0.04418,"15.5":0.06285,"15.6-15.7":0.43499,"16.0":0.16055,"16.1":0.30742,"16.2":0.14997,"16.3":0.27817,"16.4":0.05974,"16.5":0.15931,"16.6-16.7":2.98392,"17.0":1.06289,"17.1":0.0641,"17.2":0.00187},P:{"4":0.2764,"20":0.03071,"21":0.15356,"22":0.37877,"23":0.0819,"5.0-5.4":0.16379,"6.2-6.4":0.01024,"7.2-7.4":0.09213,_:"8.2 10.1 12.0 14.0","9.2":0.03071,"11.1-11.2":0.03071,"13.0":0.01024,"15.0":0.01024,"16.0":0.02047,"17.0":0.01024,"18.0":0.02047,"19.0":0.04095},I:{"0":0.11635,"3":0,"4":0.00002,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00035},A:{"9":0.00165,"10":0.00165,"11":0.0214,_:"6 7 8 5.5"},K:{"0":11.39776,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.09188,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.04177},Q:{_:"13.1"},O:{"0":0.65153},H:{"0":3.93},L:{"0":67.44889}};
      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 c019e9e748ab5f..e6845350004821 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"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.00848,"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":38.61006,"103":0,"104":0,"105":0.00848,"106":0.00848,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00848,"113":0.01696,"114":0,"115":0.14419,"116":0.05089,"117":1.62854,"118":0.11027,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00848,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00848,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.01696,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00848,"100":0,"101":0,"102":0,"103":0.01696,"104":0,"105":0.01696,"106":0,"107":0.00848,"108":0,"109":0.65311,"110":0.10178,"111":0.00848,"112":0.01696,"113":0.00848,"114":0.02545,"115":0.07634,"116":19.86484,"117":7.59139,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00848,"100":0.00848,"101":0.02545,"102":0.10178,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00848,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.00848,"116":0.40714,"117":0.36473},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00848,"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.00848,"13.1":0.06786,"14.1":0.19509,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.05937,"15.6":0.0933,"16.0":0,"16.1":0.07634,"16.2":0.05089,"16.3":0.14419,"16.4":0.02545,"16.5":0.2375,"16.6":0.61919,"17.0":0.04241,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.02223,"9.0-9.2":0.00123,"9.3":0.00123,"10.0-10.2":0,"10.3":0.00123,"11.0-11.2":0.01482,"11.3-11.4":0,"12.0-12.1":0.00123,"12.2-12.5":0.27167,"13.0-13.1":0,"13.2":0,"13.3":0.0037,"13.4-13.7":0,"14.0-14.4":0.02099,"14.5-14.8":0.14077,"15.0-15.1":0.29143,"15.2-15.3":0.00494,"15.4":0,"15.5":0.03828,"15.6-15.7":0.51,"16.0":0.13583,"16.1":0.31365,"16.2":0.27908,"16.3":0.18893,"16.4":0.07656,"16.5":0.1383,"16.6":9.07866,"17.0":0.65447,"17.1":0},P:{"4":0,"20":0,"21":0.01015,"22":1.0757,"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,"19.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,"4.4":0,"4.4.3-4.4.4":0.04},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":13.86015},R:{_:"0"},M:{"0":0.0167},Q:{"13.1":0.00152},O:{"0":0.00304},H:{"0":0.0115}};
      +module.exports={C:{"78":0.18984,"102":4.60136,"115":61.472,"118":0.42488,"119":0.12656,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 120 121 122 3.5 3.6"},D:{"103":0.00904,"105":0.00904,"109":0.80456,"110":0.00904,"114":0.00904,"115":0.00904,"116":3.45328,"117":9.32928,"118":8.19928,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 106 107 108 111 112 113 119 120 121 122"},F:{"102":0.01808,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.00904,"116":0.00904,"117":0.1356,"118":0.4972,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 17.2","12.1":0.00904,"13.1":0.01808,"14.1":0.35256,"15.6":0.08136,"16.1":0.00904,"16.3":0.0452,"16.4":0.01808,"16.5":0.0904,"16.6":0.24408,"17.0":0.08136,"17.1":0.02712},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00052,"5.0-5.1":0.00052,"6.0-6.1":0.00155,"7.0-7.1":0.00362,"8.1-8.4":0.00052,"9.0-9.2":0.00362,"9.3":0.01241,"10.0-10.2":0.00052,"10.3":0.01809,"11.0-11.2":0.01654,"11.3-11.4":0.00569,"12.0-12.1":0.00465,"12.2-12.5":0.08219,"13.0-13.1":0.00258,"13.2":0.01396,"13.3":0.00517,"13.4-13.7":0.01654,"14.0-14.4":0.04549,"14.5-14.8":0.0734,"15.0-15.1":0.02895,"15.2-15.3":0.03308,"15.4":0.0367,"15.5":0.05221,"15.6-15.7":0.36133,"16.0":0.13337,"16.1":0.25536,"16.2":0.12458,"16.3":0.23106,"16.4":0.04962,"16.5":0.13233,"16.6-16.7":2.47864,"17.0":0.8829,"17.1":0.05324,"17.2":0.00155},P:{"22":0.37279,"23":0.13462,_:"4 20 21 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.00191,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.00288,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.0173},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":3.95686}};
      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 4f05196afc81c1..7293e7c279eade 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00235,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00235,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00704,"79":0,"80":0.00469,"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.00704,"96":0,"97":0,"98":0,"99":0.00235,"100":0,"101":0,"102":0.00235,"103":0,"104":0,"105":0,"106":0,"107":0.00235,"108":0,"109":0,"110":0.00235,"111":0,"112":0.00235,"113":0.00235,"114":0.00235,"115":0.05865,"116":0.01877,"117":0.21583,"118":0.01642,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00469,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00469,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00235,"69":0,"70":0.00235,"71":0,"72":0,"73":0,"74":0,"75":0.00235,"76":0,"77":0,"78":0.00938,"79":0.01173,"80":0.00938,"81":0.01408,"83":0.00235,"84":0,"85":0,"86":0.00469,"87":0.01173,"88":0.00469,"89":0,"90":0,"91":0.00469,"92":0.00235,"93":0.01173,"94":0.00235,"95":0.00704,"96":0,"97":0.00235,"98":0.00469,"99":0.00235,"100":0,"101":0,"102":0.02815,"103":0.04457,"104":0.00469,"105":0.01173,"106":0.00235,"107":0.00469,"108":0.00469,"109":0.30263,"110":0.00704,"111":0.01173,"112":0.01173,"113":0.01642,"114":0.02346,"115":0.04223,"116":1.75246,"117":0.42463,"118":0.00235,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00235,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00235,"65":0,"66":0,"67":0.00235,"68":0.00469,"69":0.00235,"70":0,"71":0.00469,"72":0.00938,"73":0.00235,"74":0,"75":0,"76":0,"77":0.00235,"78":0,"79":0.00235,"80":0,"81":0,"82":0.00235,"83":0,"84":0,"85":0.00469,"86":0.00235,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00938,"96":0,"97":0,"98":0,"99":0,"100":0.00938,"101":0.04692,"102":0.06569,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0.00235,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00235,"16":0,"17":0,"18":0.00469,"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.00235,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00235,"101":0.00235,"102":0,"103":0,"104":0,"105":0,"106":0.00235,"107":0,"108":0,"109":0.01173,"110":0.00235,"111":0,"112":0.00235,"113":0,"114":0.00704,"115":0.01877,"116":0.37301,"117":0.26275},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00235,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0.00235,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01173,"14.1":0.00938,"15.1":0.00235,"15.2-15.3":0,"15.4":0.00235,"15.5":0,"15.6":0.01642,"16.0":0,"16.1":0.00235,"16.2":0.00469,"16.3":0.00469,"16.4":0.00235,"16.5":0.01877,"16.6":0.03754,"17.0":0.00469,"17.1":0},G:{"8":0.0023,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04604,"8.1-8.4":0,"9.0-9.2":0.01381,"9.3":0.11281,"10.0-10.2":0,"10.3":0.12432,"11.0-11.2":0.0046,"11.3-11.4":0.0046,"12.0-12.1":0.1082,"12.2-12.5":1.30996,"13.0-13.1":0.01842,"13.2":0.00691,"13.3":0.24403,"13.4-13.7":0.13353,"14.0-14.4":0.8334,"14.5-14.8":1.10737,"15.0-15.1":0.40749,"15.2-15.3":0.33382,"15.4":0.22101,"15.5":0.44893,"15.6-15.7":4.58601,"16.0":0.65843,"16.1":0.84261,"16.2":0.48116,"16.3":1.00837,"16.4":0.36145,"16.5":1.09585,"16.6":6.92276,"17.0":1.30536,"17.1":0},P:{"4":0.33787,"20":0.19453,"21":0.18429,"22":1.38219,"5.0-5.4":0,"6.2-6.4":0.01024,"7.2-7.4":0.60407,"8.2":0,"9.2":0.02048,"10.1":0,"11.1-11.2":0.04095,"12.0":0.01024,"13.0":0.03072,"14.0":0.03072,"15.0":0.02048,"16.0":0.10238,"17.0":0.05119,"18.0":0.05119,"19.0":0.08191},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.00262,"4.4":0,"4.4.3-4.4.4":0.07564},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},S:{"2.5":0.01531,_:"3.0-3.1"},J:{"7":0,"10":0.00765},N:{"10":0,"11":0.00765},L:{"0":68.26032},R:{_:"0"},M:{"0":0.09185},Q:{"13.1":0},O:{"0":0.05358},H:{"0":0.25362}};
      +module.exports={C:{"52":0.01748,"57":0.00437,"64":0.00219,"68":0.00219,"70":0.00656,"72":0.00219,"78":0.01967,"80":0.01311,"81":0.00219,"84":0.00219,"88":0.00219,"91":0.00219,"95":0.02185,"96":0.00219,"99":0.00219,"102":0.00219,"103":0.00219,"106":0.00656,"107":0.00656,"110":0.00219,"112":0.00219,"113":0.00219,"114":0.01311,"115":0.25128,"116":0.00874,"117":0.059,"118":0.80845,"119":0.20758,"120":0.00219,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 65 66 67 69 71 73 74 75 76 77 79 82 83 85 86 87 89 90 92 93 94 97 98 100 101 104 105 108 109 111 121 122 3.5 3.6"},D:{"11":0.00219,"34":0.00219,"39":0.00437,"42":0.00437,"43":0.00219,"49":0.04152,"56":0.00437,"65":0.00219,"67":0.00219,"68":0.00437,"69":0.00219,"70":0.00219,"71":0.00219,"72":0.00219,"73":0.01311,"74":0.00437,"75":0.00874,"76":0.00874,"77":0.00437,"79":0.03933,"80":0.00437,"81":0.00656,"83":0.01311,"84":0.00219,"85":0.00219,"86":0.02185,"87":0.02622,"88":0.02404,"89":0.00219,"90":0.00437,"91":0.03496,"93":0.07866,"94":0.00437,"95":0.02185,"96":0.00656,"97":0.00874,"98":0.01748,"99":0.00219,"100":0.00656,"101":0.00219,"102":0.059,"103":0.16169,"104":0.02841,"105":0.02841,"106":0.01093,"107":0.00437,"108":0.01748,"109":1.20394,"110":0.01311,"111":0.02404,"112":0.01093,"113":0.02622,"114":0.06118,"115":0.03059,"116":0.41078,"117":4.09251,"118":5.06265,"119":0.00656,_:"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 40 41 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 66 78 92 120 121 122"},F:{"28":0.00219,"31":0.00219,"36":0.00219,"46":0.00219,"79":0.01967,"82":0.00874,"85":0.02841,"86":0.00437,"89":0.00219,"95":0.05681,"98":0.00437,"102":0.24909,"103":0.20321,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 87 88 90 91 92 93 94 96 97 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00437,"13":0.00219,"15":0.00219,"18":0.02841,"84":0.00219,"90":0.00219,"92":0.01311,"100":0.00656,"101":0.01748,"105":0.00219,"106":0.00219,"107":0.00656,"108":0.00437,"109":0.04807,"110":0.01093,"111":0.00219,"112":0.00874,"113":0.00656,"114":0.01967,"115":0.03933,"116":0.02622,"117":1.23453,"118":1.35252,_:"14 16 17 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 102 103 104 119"},E:{"11":0.00219,"13":0.00437,"14":0.00437,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 6.1 9.1 10.1 15.2-15.3 17.2","5.1":0.00219,"7.1":0.0153,"11.1":0.00219,"12.1":0.00656,"13.1":0.03715,"14.1":0.03278,"15.1":0.01311,"15.4":0.00437,"15.5":0.00437,"15.6":0.06774,"16.0":0.00219,"16.1":0.00656,"16.2":0.0153,"16.3":0.01967,"16.4":0.01748,"16.5":0.06555,"16.6":0.09396,"17.0":0.08522,"17.1":0.00437},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00185,"5.0-5.1":0.00185,"6.0-6.1":0.00556,"7.0-7.1":0.01297,"8.1-8.4":0.00185,"9.0-9.2":0.01297,"9.3":0.04448,"10.0-10.2":0.00185,"10.3":0.06486,"11.0-11.2":0.0593,"11.3-11.4":0.02038,"12.0-12.1":0.01668,"12.2-12.5":0.29465,"13.0-13.1":0.00927,"13.2":0.05004,"13.3":0.01853,"13.4-13.7":0.0593,"14.0-14.4":0.16308,"14.5-14.8":0.26315,"15.0-15.1":0.10378,"15.2-15.3":0.1186,"15.4":0.13158,"15.5":0.18717,"15.6-15.7":1.29537,"16.0":0.47812,"16.1":0.91547,"16.2":0.44661,"16.3":0.82837,"16.4":0.1779,"16.5":0.47441,"16.6-16.7":8.88597,"17.0":3.16522,"17.1":0.19088,"17.2":0.00556},P:{"4":0.35602,"20":0.14241,"21":0.11189,"22":1.14942,"23":0.19327,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01017,"7.2-7.4":0.52894,"9.2":0.02034,"11.1-11.2":0.05086,"12.0":0.01017,"13.0":0.04069,"14.0":0.02034,"15.0":0.01017,"16.0":0.08138,"17.0":0.04069,"18.0":0.03052,"19.0":0.0712},I:{"0":0.02333,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"11":0.00656,_:"6 7 8 9 10 5.5"},K:{"0":0.24701,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00782,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.07816},Q:{_:"13.1"},O:{"0":0.03126},H:{"0":0.05},L:{"0":60.69948}};
      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 d5bbd49c87a644..06b5860d4715ce 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.0023,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.0023,"115":0.00918,"116":0.02066,"117":0.21114,"118":0.02754,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0023,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00459,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0023,"61":0,"62":0,"63":0.0023,"64":0.00689,"65":0.00459,"66":0,"67":0,"68":0.00689,"69":0.0023,"70":0.00459,"71":0,"72":0,"73":0.00918,"74":0.00689,"75":0,"76":0,"77":0.00689,"78":0.00459,"79":0.03213,"80":0.0023,"81":0.01148,"83":0.00918,"84":0,"85":0,"86":0.00459,"87":0.05049,"88":0.0459,"89":0,"90":0,"91":0.00459,"92":0.0023,"93":0.08721,"94":0.00459,"95":0.0023,"96":0.01836,"97":0,"98":0.00689,"99":0.02525,"100":0.0023,"101":0,"102":0.0023,"103":0.01377,"104":0.00918,"105":0.01148,"106":0.0459,"107":0.00918,"108":0.02525,"109":0.24098,"110":0.01377,"111":0.01377,"112":0.00918,"113":0.01377,"114":0.07344,"115":0.07803,"116":2.46024,"117":0.71834,"118":0.0023,"119":0.0023,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0023,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0023,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00689,"70":0.00689,"71":0.03443,"72":0.16295,"73":0.06656,"74":0,"75":0,"76":0,"77":0.04361,"78":0.00689,"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.0023,"96":0,"97":0,"98":0,"99":0,"100":0.02525,"101":0.05967,"102":0.06656,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00918,"79":0,"80":0,"81":0,"83":0,"84":0.0023,"85":0,"86":0,"87":0,"88":0,"89":0.0023,"90":0,"91":0,"92":0.00459,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0023,"101":0,"102":0,"103":0,"104":0,"105":0.0023,"106":0,"107":0.0023,"108":0.00459,"109":0.00459,"110":0,"111":0.00689,"112":0.00689,"113":0.0023,"114":0.01836,"115":0.00918,"116":0.24786,"117":0.15836},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00459,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00459,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0023,"14.1":0.00918,"15.1":0,"15.2-15.3":0.0023,"15.4":0,"15.5":0,"15.6":0.03672,"16.0":0,"16.1":0.0023,"16.2":0.0023,"16.3":0.00459,"16.4":0.00459,"16.5":0.01377,"16.6":0.05279,"17.0":0.0023,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00313,"6.0-6.1":0,"7.0-7.1":0.00938,"8.1-8.4":0,"9.0-9.2":0.00104,"9.3":0.09489,"10.0-10.2":0,"10.3":0.0365,"11.0-11.2":0,"11.3-11.4":0.00104,"12.0-12.1":0.01668,"12.2-12.5":0.32221,"13.0-13.1":0.00417,"13.2":0.00209,"13.3":0.01981,"13.4-13.7":0.11887,"14.0-14.4":0.30657,"14.5-14.8":0.45464,"15.0-15.1":0.17518,"15.2-15.3":0.08968,"15.4":0.122,"15.5":0.16893,"15.6-15.7":1.13973,"16.0":0.48488,"16.1":0.38686,"16.2":0.34202,"16.3":0.53493,"16.4":0.36496,"16.5":1.14181,"16.6":3.07091,"17.0":0.91658,"17.1":0},P:{"4":0.11213,"20":0.19368,"21":0.43832,"22":1.88579,"5.0-5.4":0.02039,"6.2-6.4":0.06116,"7.2-7.4":0.65238,"8.2":0,"9.2":0.01019,"10.1":0,"11.1-11.2":0.04077,"12.0":0,"13.0":0.03058,"14.0":0.06116,"15.0":0.03058,"16.0":0.12232,"17.0":0.09174,"18.0":0.09174,"19.0":0.40774},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00602,"4.4":0,"4.4.3-4.4.4":0.27972},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00459,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":73.93231},R:{_:"0"},M:{"0":0.07705},Q:{"13.1":0},O:{"0":2.1497},H:{"0":1.59022}};
      +module.exports={C:{"66":0.00221,"85":0.00221,"91":0.1195,"99":0.00221,"106":0.00221,"115":0.07303,"116":0.02656,"117":0.01549,"118":0.93167,"119":0.25892,"120":0.00443,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 92 93 94 95 96 97 98 100 101 102 103 104 105 107 108 109 110 111 112 113 114 121 122 3.5 3.6"},D:{"33":0.00221,"43":0.00221,"45":0.00221,"49":0.00221,"54":0.00443,"58":0.00221,"60":0.00664,"63":0.00221,"64":0.01328,"65":0.00885,"68":0.04205,"70":0.00664,"71":0.01107,"72":0.00221,"73":0.00664,"74":0.00664,"75":0.00443,"77":0.01549,"78":0.02213,"79":0.09737,"80":0.00443,"81":0.0177,"83":0.01992,"84":0.00221,"86":0.01992,"87":0.01992,"88":0.1018,"91":0.00221,"92":0.00443,"93":0.32752,"94":0.00443,"95":0.00221,"96":0.01328,"98":0.03983,"99":0.0177,"100":0.00221,"102":0.0177,"103":0.05533,"104":0.00221,"105":0.0332,"106":0.00885,"107":0.02213,"108":0.0509,"109":1.21494,"110":0.03541,"111":0.0509,"112":0.03541,"113":0.02877,"114":0.10401,"115":0.04647,"116":0.36293,"117":6.39557,"118":6.66113,"119":0.0177,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 46 47 48 50 51 52 53 55 56 57 59 61 62 66 67 69 76 85 89 90 97 101 120 121 122"},F:{"28":0.00221,"46":0.01328,"93":0.00221,"94":0.00221,"95":0.00664,"99":0.00221,"101":0.00221,"102":0.38949,"103":0.19032,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00885,"14":0.00221,"15":0.00221,"16":0.00221,"17":0.00221,"18":0.02434,"84":0.01107,"88":0.00221,"89":0.00664,"90":0.00221,"92":0.02877,"94":0.00221,"100":0.00443,"103":0.00221,"104":0.00221,"105":0.01549,"107":0.00664,"108":0.00221,"109":0.02213,"110":0.01107,"111":0.01992,"112":0.00664,"113":0.00664,"114":0.02434,"115":0.00885,"116":0.03762,"117":0.95602,"118":0.84979,"119":0.0177,_:"13 79 80 81 83 85 86 87 91 93 95 96 97 98 99 101 102 106"},E:{"14":0.00885,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.01328,"11.1":0.00221,"12.1":0.00221,"13.1":0.00443,"14.1":0.00885,"15.1":0.00885,"15.2-15.3":0.02213,"15.4":0.00221,"15.5":0.02877,"15.6":0.13721,"16.0":0.00221,"16.1":0.02213,"16.2":0.00664,"16.3":0.03762,"16.4":0.00664,"16.5":0.0509,"16.6":0.09073,"17.0":0.04205,"17.1":0.0177},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00082,"5.0-5.1":0.00082,"6.0-6.1":0.00246,"7.0-7.1":0.00575,"8.1-8.4":0.00082,"9.0-9.2":0.00575,"9.3":0.01972,"10.0-10.2":0.00082,"10.3":0.02875,"11.0-11.2":0.02629,"11.3-11.4":0.00904,"12.0-12.1":0.00739,"12.2-12.5":0.13062,"13.0-13.1":0.00411,"13.2":0.02218,"13.3":0.00822,"13.4-13.7":0.02629,"14.0-14.4":0.07229,"14.5-14.8":0.11666,"15.0-15.1":0.04601,"15.2-15.3":0.05258,"15.4":0.05833,"15.5":0.08297,"15.6-15.7":0.57425,"16.0":0.21195,"16.1":0.40584,"16.2":0.19799,"16.3":0.36722,"16.4":0.07887,"16.5":0.21031,"16.6-16.7":3.93923,"17.0":1.40317,"17.1":0.08462,"17.2":0.00246},P:{"4":0.16353,"20":0.17375,"21":0.32705,"22":2.01343,"23":0.15331,"5.0-5.4":0.01022,"6.2-6.4":0.03066,"7.2-7.4":0.73587,_:"8.2 10.1 12.0","9.2":0.01022,"11.1-11.2":0.04088,"13.0":0.02044,"14.0":0.04088,"15.0":0.04088,"16.0":0.09198,"17.0":0.06132,"18.0":0.1022,"19.0":0.3986},I:{"0":0.12396,"3":0,"4":0.00002,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00037},A:{"7":0.00272,"11":0.03268,_:"6 8 9 10 5.5"},K:{"0":1.997,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00779,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.07787},Q:{_:"13.1"},O:{"0":1.65084},H:{"0":0.16},L:{"0":62.13921}};
      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 aa635a40e03e13..6fbeeca3d0981a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00314,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.02201,"111":0.00314,"112":0,"113":0,"114":0,"115":0.30811,"116":0.03458,"117":0.67596,"118":0.02201,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00314,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00314,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00314,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00314,"77":0,"78":0,"79":0.00629,"80":0,"81":0.00629,"83":0.01572,"84":0,"85":0,"86":0,"87":0.00314,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00314,"94":0,"95":0.00314,"96":0.00314,"97":0.00629,"98":0.00943,"99":0,"100":0,"101":0,"102":0.00314,"103":0.0786,"104":0,"105":0.00314,"106":0,"107":0.00314,"108":0.00314,"109":0.49675,"110":0.00314,"111":0.02201,"112":0.02515,"113":0.04402,"114":0.05345,"115":0.14777,"116":3.93314,"117":0.76085,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01258,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00314,"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.0283,"101":0.13205,"102":0.09118,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00314,"18":0.00629,"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.00314,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.00314,"105":0,"106":0,"107":0,"108":0,"109":0.01572,"110":0,"111":0.03144,"112":0,"113":0,"114":0.00629,"115":0.01886,"116":0.66338,"117":0.40558},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01258,"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,"13.1":0.01886,"14.1":0.0283,"15.1":0,"15.2-15.3":0.00314,"15.4":0.00314,"15.5":0.00314,"15.6":0.07546,"16.0":0.00629,"16.1":0.01258,"16.2":0.00629,"16.3":0.01258,"16.4":0.00943,"16.5":0.04087,"16.6":0.32069,"17.0":0.01572,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00757,"8.1-8.4":0,"9.0-9.2":0.00189,"9.3":0.00757,"10.0-10.2":0,"10.3":3.25972,"11.0-11.2":0.00189,"11.3-11.4":0.00378,"12.0-12.1":0.00189,"12.2-12.5":0.29703,"13.0-13.1":0,"13.2":0,"13.3":0.00757,"13.4-13.7":0.0227,"14.0-14.4":0.09838,"14.5-14.8":0.37838,"15.0-15.1":0.01703,"15.2-15.3":0.02649,"15.4":0.08135,"15.5":0.04919,"15.6-15.7":2.31189,"16.0":0.33108,"16.1":1.43216,"16.2":0.61108,"16.3":0.74351,"16.4":0.12297,"16.5":0.48622,"16.6":7.45972,"17.0":0.96297,"17.1":0},P:{"4":0.47227,"20":0.16427,"21":0.81107,"22":5.11283,"5.0-5.4":0.01027,"6.2-6.4":0.01027,"7.2-7.4":0.63654,"8.2":0,"9.2":0.01027,"10.1":0,"11.1-11.2":0.0308,"12.0":0.01027,"13.0":0.11293,"14.0":0.0616,"15.0":0.01027,"16.0":0.19507,"17.0":0.26693,"18.0":0.07187,"19.0":0.154},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03041,"4.2-4.3":0.06081,"4.4":0,"4.4.3-4.4.4":0.30406},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08803,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.92431},R:{_:"0"},M:{"0":0.06856},Q:{"13.1":0.04799},O:{"0":0.67189},H:{"0":0.17525}};
      +module.exports={C:{"110":0.04781,"111":0.04781,"115":0.23638,"116":0.00266,"117":0.02922,"118":1.83264,"119":0.3559,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 112 113 114 120 121 122 3.5 3.6"},D:{"11":0.00266,"49":0.00531,"61":0.00797,"63":0.00266,"76":0.00797,"77":0.00266,"79":0.01328,"83":0.03453,"87":0.00266,"90":0.00266,"91":0.00531,"93":0.02125,"95":0.00797,"96":0.00266,"100":0.00531,"101":0.00531,"102":0.00266,"103":0.1567,"104":0.00797,"105":0.00266,"106":0.00266,"107":0.00531,"108":0.00531,"109":1.01725,"110":0.01062,"111":0.07702,"112":0.03187,"113":0.0903,"114":0.06374,"115":0.08234,"116":0.64275,"117":6.34518,"118":6.84451,"119":0.01062,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 64 65 66 67 68 69 70 71 72 73 74 75 78 80 81 84 85 86 88 89 92 94 97 98 99 120 121 122"},F:{"28":0.00531,"99":0.02922,"102":0.69322,"103":0.22576,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00266,"17":0.00266,"18":0.02125,"92":0.00531,"97":0.00531,"109":0.03187,"111":0.05578,"112":0.00531,"113":0.00531,"114":0.02125,"115":0.02125,"116":0.05578,"117":1.31738,"118":1.45018,"119":0.00266,_:"13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 101 102 103 104 105 106 107 108 110"},E:{"14":0.00266,"15":0.00266,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 17.2","5.1":0.00531,"13.1":0.02125,"14.1":0.23904,"15.4":0.00266,"15.5":0.00531,"15.6":0.08234,"16.0":0.02125,"16.1":0.06906,"16.2":0.00266,"16.3":0.01859,"16.4":0.05312,"16.5":0.11421,"16.6":0.46214,"17.0":0.14077,"17.1":0.01328},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00121,"5.0-5.1":0.00121,"6.0-6.1":0.00363,"7.0-7.1":0.00846,"8.1-8.4":0.00121,"9.0-9.2":0.00846,"9.3":0.02901,"10.0-10.2":0.00121,"10.3":0.04231,"11.0-11.2":0.03868,"11.3-11.4":0.0133,"12.0-12.1":0.01088,"12.2-12.5":0.1922,"13.0-13.1":0.00604,"13.2":0.03264,"13.3":0.01209,"13.4-13.7":0.03868,"14.0-14.4":0.10638,"14.5-14.8":0.17165,"15.0-15.1":0.06769,"15.2-15.3":0.07736,"15.4":0.08583,"15.5":0.12209,"15.6-15.7":0.84497,"16.0":0.31188,"16.1":0.59716,"16.2":0.29133,"16.3":0.54034,"16.4":0.11605,"16.5":0.30946,"16.6-16.7":5.7963,"17.0":2.06467,"17.1":0.12451,"17.2":0.00363},P:{"4":0.28848,"20":0.17515,"21":0.51515,"22":5.11028,"23":0.97878,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.0103,"7.2-7.4":0.62848,"9.2":0.02061,"11.1-11.2":0.02061,"12.0":0.0103,"13.0":0.12364,"14.0":0.05151,"15.0":0.0103,"16.0":0.13394,"17.0":0.12364,"18.0":0.08242,"19.0":0.20606},I:{"0":0.02192,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"7":0.1051,"9":0.2102,"11":0.42041,_:"6 8 10 5.5"},K:{"0":0.37923,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.07344},Q:{"13.1":0.02938},O:{"0":0.81518},H:{"0":0.01},L:{"0":53.71262}};
      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 f26cfde71bdf15..a1d1884fa22df7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ST.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ST.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0.03859,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.02894,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.08683,"51":0,"52":0.07236,"53":0,"54":0.06754,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00965,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05306,"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.00482,"105":0.00482,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00482,"115":0,"116":0.03859,"117":0.36662,"118":0.00482,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00482,"43":0.01447,"44":0,"45":0,"46":0,"47":0.03859,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0193,"56":0.00965,"57":0.06754,"58":0.00482,"59":0,"60":0.21226,"61":0.00482,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00482,"69":0,"70":0.00965,"71":0,"72":0,"73":0.02894,"74":0,"75":0,"76":0.00965,"77":0,"78":0,"79":0.14472,"80":0,"81":0.03377,"83":0,"84":0,"85":0,"86":0,"87":0.00965,"88":0.02894,"89":3.80131,"90":0,"91":0,"92":0,"93":0.00965,"94":0.02412,"95":0,"96":0.00482,"97":0,"98":0,"99":0.00482,"100":0.02412,"101":0.0193,"102":0.00965,"103":0.00965,"104":0.00482,"105":0,"106":0,"107":0,"108":0,"109":1.65463,"110":0,"111":0.08683,"112":0.00965,"113":0.00965,"114":0.06754,"115":0.14472,"116":5.63443,"117":1.77523,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00482,"70":0,"71":0,"72":0.04342,"73":0,"74":0.04824,"75":0,"76":0,"77":0,"78":0,"79":0.0193,"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.02412,"96":0.00965,"97":0.00482,"98":0,"99":0,"100":0.02412,"101":0.05306,"102":0.21226,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.03377,"13":0.08201,"14":0.08201,"15":0.03377,"16":0,"17":0,"18":0.01447,"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.02412,"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.00482,"106":0,"107":0,"108":0,"109":0.07718,"110":0.00965,"111":0.00482,"112":0,"113":0.00482,"114":0.00965,"115":0.03859,"116":1.37484,"117":1.56298},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.00482,"14.1":0.00482,"15.1":0.00482,"15.2-15.3":0.09166,"15.4":0,"15.5":0,"15.6":0.00482,"16.0":0,"16.1":0.00965,"16.2":0.00482,"16.3":0.02894,"16.4":0.01447,"16.5":0.0193,"16.6":0.45828,"17.0":0.05306,"17.1":0.02412},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.03202,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.21551,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.0431,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.06465,"13.0-13.1":0.01047,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.01047,"14.5-14.8":0.01047,"15.0-15.1":0.01047,"15.2-15.3":0,"15.4":0.41993,"15.5":0.0862,"15.6-15.7":1.15142,"16.0":0.0431,"16.1":0.0862,"16.2":0.16132,"16.3":0.26907,"16.4":0.0431,"16.5":0.25861,"16.6":2.65873,"17.0":0.23706,"17.1":0},P:{"4":0.14145,"20":0.15156,"21":0.02021,"22":0.71737,"5.0-5.4":0,"6.2-6.4":0.05052,"7.2-7.4":0.22228,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06062,"12.0":0.0101,"13.0":0.05052,"14.0":0.02021,"15.0":0,"16.0":0,"17.0":0,"18.0":0,"19.0":0.03031},I:{"0":0,"3":0,"4":0.11264,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02816,"4.2-4.3":1.08415,"4.4":0,"4.4.3-4.4.4":1.16863},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.07718,"10":0,"11":0.11095,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.41028},R:{_:"0"},M:{"0":0.08282},Q:{"13.1":0},O:{"0":3.5145},H:{"0":0.18621}};
      +module.exports={C:{"7":0.02535,"42":0.03549,"50":0.0507,"52":0.07098,"54":0.08619,"74":0.01521,"78":1.81506,"102":0.00507,"115":0.34476,"116":0.00507,"117":0.00507,"118":0.2535,"119":0.01521,_:"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 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 120 121 122 3.5 3.6"},D:{"11":0.01521,"40":0.01521,"43":0.09126,"47":0.04563,"52":0.01521,"55":0.06084,"57":0.0507,"59":0.02535,"60":0.17745,"65":0.0507,"76":0.00507,"79":0.20787,"81":0.00507,"86":0.00507,"87":0.02028,"88":0.18759,"89":5.46039,"90":0.02028,"95":0.10647,"99":0.02028,"102":0.00507,"109":4.54779,"111":0.06591,"112":0.02028,"113":0.00507,"114":0.1521,"115":0.02535,"116":0.48672,"117":9.30852,"118":9.93213,"120":0.01521,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 48 49 50 51 53 54 56 58 61 62 63 64 66 67 68 69 70 71 72 73 74 75 77 78 80 83 84 85 91 92 93 94 96 97 98 100 101 103 104 105 106 107 108 110 119 121 122"},F:{"74":0.00507,"79":0.02028,"95":0.01521,"102":0.26364,"103":0.06591,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.06591,"13":0.0507,"14":0.03549,"15":0.02028,"18":0.00507,"105":0.02028,"107":0.00507,"109":0.04056,"110":0.02028,"114":0.10647,"115":0.21294,"116":0.00507,"117":4.26894,"118":3.8532,_:"16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 108 111 112 113 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.4 15.5 15.6 16.0 16.1 16.2 16.4 17.2","11.1":0.02028,"13.1":0.01521,"14.1":0.01521,"15.1":0.01521,"15.2-15.3":0.17745,"16.3":0.38532,"16.5":0.01521,"16.6":0.00507,"17.0":0.1014,"17.1":0.23829},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00031,"5.0-5.1":0.00031,"6.0-6.1":0.00093,"7.0-7.1":0.00216,"8.1-8.4":0.00031,"9.0-9.2":0.00216,"9.3":0.00741,"10.0-10.2":0.00031,"10.3":0.0108,"11.0-11.2":0.00988,"11.3-11.4":0.00339,"12.0-12.1":0.00278,"12.2-12.5":0.04907,"13.0-13.1":0.00154,"13.2":0.00833,"13.3":0.00309,"13.4-13.7":0.00988,"14.0-14.4":0.02716,"14.5-14.8":0.04382,"15.0-15.1":0.01728,"15.2-15.3":0.01975,"15.4":0.02191,"15.5":0.03117,"15.6-15.7":0.21572,"16.0":0.07962,"16.1":0.15246,"16.2":0.07438,"16.3":0.13795,"16.4":0.02963,"16.5":0.07901,"16.6-16.7":1.47982,"17.0":0.52712,"17.1":0.03179,"17.2":0.00093},P:{"4":0.51372,"20":0.01048,"21":0.01048,"22":0.77582,"23":0.09436,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 14.0 15.0 17.0 18.0","7.2-7.4":0.0629,"11.1-11.2":0.01048,"12.0":0.02097,"13.0":0.04194,"16.0":0.01048,"19.0":0.10484},I:{"0":0.08829,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00027},A:{"9":0.02028,"11":0.21294,_:"6 7 8 10 5.5"},K:{"0":0.24129,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01479,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.0493},Q:{"13.1":0.01479},O:{"0":2.65234},H:{"0":0.02},L:{"0":47.48975}};
      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 6a562972e114c9..c9e81a3f4c71c3 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.0044,"52":0.00879,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01319,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00879,"92":0,"93":0,"94":0,"95":0,"96":0.0044,"97":0,"98":0,"99":0,"100":0.0044,"101":0,"102":0.03956,"103":0.01319,"104":0.03516,"105":0,"106":0,"107":0,"108":0.0044,"109":0.00879,"110":0,"111":0.0044,"112":0,"113":0.0044,"114":0.03516,"115":0.1802,"116":0.04835,"117":0.83505,"118":0.07472,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02198,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0044,"66":0,"67":0.01758,"68":0,"69":0,"70":0.0044,"71":0,"72":0,"73":0,"74":0.0044,"75":0.0044,"76":0.02198,"77":0.02198,"78":0.00879,"79":0.05274,"80":0.0044,"81":0.00879,"83":0.0044,"84":0.0044,"85":0,"86":0.01319,"87":0.02637,"88":0.00879,"89":0,"90":0.01319,"91":0.01758,"92":0.00879,"93":0.02198,"94":0.00879,"95":0.0044,"96":0.0044,"97":0.00879,"98":0.0044,"99":0.01319,"100":0.01319,"101":0.00879,"102":0.00879,"103":0.06153,"104":0.0044,"105":0.00879,"106":0.02637,"107":0.05274,"108":0.01758,"109":1.0548,"110":0.03956,"111":0.01758,"112":0.02637,"113":0.05274,"114":0.12306,"115":0.19338,"116":9.04052,"117":2.38649,"118":0.0044,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0044,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.0044,"70":0,"71":0.0044,"72":0.01758,"73":0.00879,"74":0,"75":0,"76":0,"77":0.02637,"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.01319,"95":0.03956,"96":0,"97":0,"98":0,"99":0.0044,"100":0.11867,"101":0.29886,"102":0.33842,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.0044,"15":0.01758,"16":0,"17":0,"18":0.0044,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0044,"91":0,"92":0.01319,"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.00879,"107":0.0044,"108":0.0044,"109":0.01758,"110":0.0044,"111":0.0044,"112":0.0044,"113":0.01319,"114":0.02198,"115":0.04835,"116":1.01085,"117":0.81308},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00879,"15":0.0044,_:"0","3.1":0,"3.2":0,"5.1":0.0044,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0044,"13.1":0.00879,"14.1":0.02637,"15.1":0.0044,"15.2-15.3":0.0044,"15.4":0.0044,"15.5":0.0044,"15.6":0.03956,"16.0":0.0044,"16.1":0.01319,"16.2":0.00879,"16.3":0.02198,"16.4":0.01319,"16.5":0.03516,"16.6":0.19338,"17.0":0.01758,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0101,"6.0-6.1":0.02425,"7.0-7.1":0.00606,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01414,"10.0-10.2":0,"10.3":0.0202,"11.0-11.2":0.00202,"11.3-11.4":0,"12.0-12.1":0.00202,"12.2-12.5":0.19094,"13.0-13.1":0.00303,"13.2":0,"13.3":0.29297,"13.4-13.7":0.0202,"14.0-14.4":0.10001,"14.5-14.8":0.12022,"15.0-15.1":0.0202,"15.2-15.3":0.03334,"15.4":0.07173,"15.5":0.06365,"15.6-15.7":0.87285,"16.0":0.21518,"16.1":0.35358,"16.2":0.16467,"16.3":0.47279,"16.4":0.09496,"16.5":0.30206,"16.6":5.66544,"17.0":0.82234,"17.1":0.00202},P:{"4":0.09239,"20":0.10266,"21":0.15399,"22":2.03263,"5.0-5.4":0.01027,"6.2-6.4":0,"7.2-7.4":0.11292,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0308,"12.0":0.01027,"13.0":0.11292,"14.0":0.01027,"15.0":0.01027,"16.0":0.05133,"17.0":0.02053,"18.0":0.0308,"19.0":0.08213},I:{"0":0,"3":0,"4":0.06182,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.20092},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00879,"5.5":0},S:{"2.5":0.00561,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.24891},R:{_:"0"},M:{"0":0.25223},Q:{"13.1":0},O:{"0":0.10089},H:{"0":0.42452}};
      +module.exports={C:{"35":0.00846,"51":0.00423,"52":0.02116,"68":0.01692,"72":0.00423,"78":0.00423,"88":0.00423,"91":0.01269,"93":0.00423,"100":0.00423,"102":0.01269,"103":0.01269,"104":0.00846,"108":0.00423,"109":0.00423,"111":0.01269,"113":0.00846,"114":0.08039,"115":0.40618,"116":0.00846,"117":0.07616,"118":1.52739,"119":0.32579,"120":0.00423,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 94 95 96 97 98 99 101 105 106 107 110 112 121 122 3.5 3.6"},D:{"38":0.00423,"49":0.03808,"55":0.00423,"65":0.01269,"70":0.00846,"72":0.00423,"73":0.00423,"74":0.00846,"75":0.00846,"76":0.00846,"78":0.03385,"79":0.09731,"80":0.03385,"81":0.02116,"83":0.00846,"84":0.00846,"85":0.00423,"86":0.01692,"87":0.05923,"88":0.02116,"89":0.00423,"90":0.00423,"91":0.02116,"92":0.00846,"93":0.03385,"94":0.01269,"95":0.00423,"96":0.00423,"97":0.01269,"98":0.00423,"99":0.01269,"100":0.00846,"101":0.01269,"102":0.01269,"103":0.11847,"104":0.00846,"105":0.02539,"106":0.02116,"107":0.02539,"108":0.055,"109":2.22974,"110":0.04231,"111":0.02539,"112":0.02962,"113":0.08039,"114":0.13539,"115":0.13962,"116":0.85889,"117":12.55761,"118":12.06258,"119":0.01269,"120":0.00423,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 67 68 69 71 77 121 122"},F:{"28":0.00846,"66":0.00846,"72":0.00423,"77":0.00423,"95":0.08462,"101":0.00846,"102":1.6374,"103":0.26232,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00423,"15":0.03808,"18":0.00846,"85":0.00423,"87":0.00423,"92":0.02539,"98":0.00423,"100":0.00423,"103":0.00423,"104":0.00423,"105":0.00423,"106":0.01692,"107":0.00846,"108":0.00846,"109":0.04231,"110":0.00423,"111":0.00846,"112":0.01269,"113":0.01269,"114":0.02539,"115":0.04654,"116":0.07193,"117":2.32282,"118":2.27628,"119":0.00423,_:"13 14 16 17 79 80 81 83 84 86 88 89 90 91 93 94 95 96 97 99 101 102"},E:{"12":0.00423,"14":0.00846,"15":0.00423,_:"0 4 5 6 7 8 9 10 11 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00423,"12.1":0.00423,"13.1":0.01269,"14.1":0.06347,"15.1":0.00423,"15.2-15.3":0.00846,"15.4":0.00846,"15.5":0.00846,"15.6":0.07193,"16.0":0.00846,"16.1":0.02539,"16.2":0.01692,"16.3":0.09308,"16.4":0.02116,"16.5":0.03385,"16.6":0.49503,"17.0":0.21155,"17.1":0.01269},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00074,"5.0-5.1":0.00074,"6.0-6.1":0.00223,"7.0-7.1":0.00521,"8.1-8.4":0.00074,"9.0-9.2":0.00521,"9.3":0.01785,"10.0-10.2":0.00074,"10.3":0.02603,"11.0-11.2":0.0238,"11.3-11.4":0.00818,"12.0-12.1":0.00669,"12.2-12.5":0.11824,"13.0-13.1":0.00372,"13.2":0.02008,"13.3":0.00744,"13.4-13.7":0.0238,"14.0-14.4":0.06544,"14.5-14.8":0.10559,"15.0-15.1":0.04164,"15.2-15.3":0.04759,"15.4":0.0528,"15.5":0.07511,"15.6-15.7":0.51979,"16.0":0.19186,"16.1":0.36735,"16.2":0.17921,"16.3":0.3324,"16.4":0.07139,"16.5":0.19037,"16.6-16.7":3.56568,"17.0":1.27011,"17.1":0.07659,"17.2":0.00223},P:{"4":0.0513,"20":0.2052,"21":0.12312,"22":2.2469,"23":0.33857,"5.0-5.4":0.01026,_:"6.2-6.4 8.2 9.2","7.2-7.4":0.12312,"10.1":0.01026,"11.1-11.2":0.03078,"12.0":0.01026,"13.0":0.09234,"14.0":0.02052,"15.0":0.01026,"16.0":0.04104,"17.0":0.03078,"18.0":0.02052,"19.0":0.06156},I:{"0":0.09757,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00029},A:{"11":0.01692,_:"6 7 8 9 10 5.5"},K:{"0":0.3073,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01154,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.24807},Q:{_:"13.1"},O:{"0":0.10384},H:{"0":0.01},L:{"0":48.37407}};
      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 ab40a7432d2800..1d4e74145ff911 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00154,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00461,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00154,"69":0,"70":0,"71":0,"72":0.00154,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"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,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00154,"98":0,"99":0.00154,"100":0,"101":0,"102":0.00154,"103":0.00154,"104":0,"105":0.00154,"106":0,"107":0,"108":0,"109":0.00154,"110":0.00154,"111":0,"112":0.00154,"113":0.00307,"114":0.00154,"115":0.0599,"116":0.00768,"117":0.08755,"118":0.00614,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00154,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00307,"39":0,"40":0.00154,"41":0,"42":0,"43":0.00154,"44":0,"45":0,"46":0.00154,"47":0,"48":0,"49":0.00461,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00922,"59":0,"60":0.00154,"61":0,"62":0,"63":0.00154,"64":0,"65":0,"66":0.00154,"67":0,"68":0.00154,"69":0.00154,"70":0.00307,"71":0.00154,"72":0,"73":0.00154,"74":0,"75":0,"76":0,"77":0.00154,"78":0.00154,"79":0.00768,"80":0.00307,"81":0.00768,"83":0.00154,"84":0.00154,"85":0.00154,"86":0.00154,"87":0.00307,"88":0.00307,"89":0.00307,"90":0.00154,"91":0.00154,"92":0.00154,"93":0.00154,"94":0.00154,"95":0.00307,"96":0.00307,"97":0.00154,"98":0.00154,"99":0.00461,"100":0.00154,"101":0,"102":0.00307,"103":0.00307,"104":0.00154,"105":0.00154,"106":0.00307,"107":0.00307,"108":0.00768,"109":0.2857,"110":0.00154,"111":0.00307,"112":0.00461,"113":0.00768,"114":0.01997,"115":0.02304,"116":0.71578,"117":0.16435,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00154,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00307,"48":0,"49":0,"50":0,"51":0.00154,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00154,"60":0.00154,"62":0.00154,"63":0.00461,"64":0.00154,"65":0,"66":0,"67":0,"68":0,"69":0.00307,"70":0.00614,"71":0.00461,"72":0.01843,"73":0.00614,"74":0,"75":0,"76":0,"77":0.00922,"78":0,"79":0.00614,"80":0,"81":0,"82":0,"83":0,"84":0.00154,"85":0.00154,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01382,"96":0,"97":0,"98":0,"99":0,"100":0.00307,"101":0.03379,"102":0.02765,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00154},B:{"12":0.00154,"13":0,"14":0,"15":0,"16":0,"17":0.00154,"18":0.00307,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00614,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00614,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01536,"110":0,"111":0,"112":0,"113":0.00154,"114":0.00307,"115":0.00614,"116":0.09984,"117":0.06912},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00154,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.2089,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00307,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00154,"15.6":0.00461,"16.0":0,"16.1":0.00154,"16.2":0,"16.3":0.00768,"16.4":0.00154,"16.5":0.00307,"16.6":0.00461,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00154,"5.0-5.1":0.00257,"6.0-6.1":0.00051,"7.0-7.1":0.04633,"8.1-8.4":0.00051,"9.0-9.2":0.00257,"9.3":0.07001,"10.0-10.2":0.00154,"10.3":0.02419,"11.0-11.2":0.0036,"11.3-11.4":0.01184,"12.0-12.1":0.02574,"12.2-12.5":0.44784,"13.0-13.1":0.00824,"13.2":0.00206,"13.3":0.05662,"13.4-13.7":0.07721,"14.0-14.4":0.16266,"14.5-14.8":0.26767,"15.0-15.1":0.12097,"15.2-15.3":0.157,"15.4":0.122,"15.5":0.14671,"15.6-15.7":0.52248,"16.0":0.23679,"16.1":0.25944,"16.2":0.18531,"16.3":0.36084,"16.4":0.20436,"16.5":0.47821,"16.6":0.98061,"17.0":0.14516,"17.1":0},P:{"4":1.499,"20":0.19115,"21":0.45272,"22":0.99598,"5.0-5.4":0.06036,"6.2-6.4":0.17103,"7.2-7.4":0.23139,"8.2":0.04024,"9.2":0.21127,"10.1":0.07042,"11.1-11.2":0.12072,"12.0":0.0503,"13.0":0.20121,"14.0":0.26157,"15.0":0.07042,"16.0":0.21127,"17.0":0.35211,"18.0":0.18109,"19.0":0.28169},I:{"0":0,"3":0,"4":0.00215,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00573,"4.2-4.3":0.02149,"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,"9":0,"10":0,"11":0.00307,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":83.16762},R:{_:"0"},M:{"0":0.06771},Q:{"13.1":0},O:{"0":1.058},H:{"0":1.25005}};
      +module.exports={C:{"31":0.00303,"32":0.00152,"40":0.00152,"43":0.00455,"44":0.00152,"45":0.00303,"47":0.00303,"48":0.00455,"49":0.00152,"50":0.00303,"52":0.04551,"53":0.00152,"56":0.00303,"58":0.00152,"60":0.00152,"61":0.00152,"62":0.00303,"68":0.00152,"72":0.0091,"74":0.00152,"78":0.00303,"80":0.00152,"81":0.00152,"84":0.00303,"86":0.00455,"87":0.00152,"88":0.00455,"89":0.00152,"91":0.00303,"94":0.00152,"95":0.00152,"96":0.00152,"97":0.00152,"99":0.00303,"100":0.00152,"101":0.00152,"102":0.01517,"103":0.00303,"104":0.00152,"105":0.00152,"106":0.00455,"107":0.00152,"108":0.00303,"109":0.0091,"110":0.00303,"111":0.00303,"112":0.00455,"113":0.01972,"114":0.0091,"115":0.44448,"116":0.0091,"117":0.04399,"118":0.57494,"119":0.09254,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 34 35 36 37 38 39 41 42 46 51 54 55 57 59 63 64 65 66 67 69 70 71 73 75 76 77 79 82 83 85 90 92 93 98 120 121 122 3.5 3.6"},D:{"11":0.00152,"29":0.00152,"30":0.00152,"38":0.00455,"40":0.00152,"43":0.01365,"44":0.00152,"47":0.00152,"49":0.02427,"50":0.00152,"53":0.00152,"55":0.00152,"56":0.00607,"58":0.05006,"59":0.00303,"60":0.00152,"62":0.00152,"63":0.00759,"64":0.00759,"65":0.00303,"66":0.02124,"67":0.00303,"68":0.01365,"69":0.00607,"70":0.0182,"71":0.00607,"72":0.00303,"73":0.00455,"74":0.00607,"75":0.00303,"76":0.01365,"77":0.00455,"78":0.00607,"79":0.04703,"80":0.01365,"81":0.01214,"83":0.01365,"84":0.00303,"85":0.00607,"86":0.00759,"87":0.02579,"88":0.01669,"89":0.01062,"90":0.00759,"91":0.01669,"92":0.0091,"93":0.00455,"94":0.0091,"95":0.00607,"96":0.01669,"97":0.00759,"98":0.01062,"99":0.03337,"100":0.01669,"101":0.00607,"102":0.01972,"103":0.03034,"104":0.01214,"105":0.01669,"106":0.02124,"107":0.03186,"108":0.03641,"109":1.9008,"110":0.03337,"111":0.01669,"112":0.02579,"113":0.02882,"114":0.07888,"115":0.05765,"116":0.27154,"117":2.7306,"118":2.86865,"119":0.00455,"120":0.00152,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 32 33 34 35 36 37 39 41 42 45 46 48 51 52 54 57 61 121 122"},F:{"36":0.00152,"42":0.00152,"77":0.00152,"79":0.03489,"83":0.00152,"84":0.00152,"85":0.00607,"86":0.03034,"89":0.00455,"90":0.00152,"95":0.10467,"99":0.00152,"100":0.00303,"101":0.00455,"102":0.19266,"103":0.11074,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 87 88 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00152,"14":0.00152,"15":0.00152,"16":0.00455,"17":0.00152,"18":0.04096,"83":0.00152,"84":0.00455,"85":0.00152,"89":0.00152,"90":0.00152,"92":0.05613,"99":0.00152,"100":0.01062,"104":0.00152,"105":0.00152,"106":0.00152,"107":0.00152,"108":0.00607,"109":0.09254,"110":0.00152,"111":0.00152,"112":0.00455,"113":0.00607,"114":0.01214,"115":0.0091,"116":0.03337,"117":0.50364,"118":0.4733,"119":0.00152,_:"13 79 80 81 86 87 88 91 93 94 95 96 97 98 101 102 103"},E:{"14":0.0091,"15":0.00152,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 16.0 17.1 17.2","5.1":1.31524,"10.1":0.04248,"11.1":0.00152,"12.1":0.00152,"13.1":0.00303,"14.1":0.02427,"15.1":0.00607,"15.2-15.3":0.00152,"15.4":0.00152,"15.5":0.00303,"15.6":0.04096,"16.1":0.00607,"16.2":0.00152,"16.3":0.01517,"16.4":0.01669,"16.5":0.00759,"16.6":0.02124,"17.0":0.01214},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0004,"5.0-5.1":0.0004,"6.0-6.1":0.00119,"7.0-7.1":0.00277,"8.1-8.4":0.0004,"9.0-9.2":0.00277,"9.3":0.00951,"10.0-10.2":0.0004,"10.3":0.01386,"11.0-11.2":0.01268,"11.3-11.4":0.00436,"12.0-12.1":0.00356,"12.2-12.5":0.06298,"13.0-13.1":0.00198,"13.2":0.01069,"13.3":0.00396,"13.4-13.7":0.01268,"14.0-14.4":0.03486,"14.5-14.8":0.05625,"15.0-15.1":0.02218,"15.2-15.3":0.02535,"15.4":0.02812,"15.5":0.04001,"15.6-15.7":0.27688,"16.0":0.1022,"16.1":0.19568,"16.2":0.09546,"16.3":0.17706,"16.4":0.03803,"16.5":0.1014,"16.6-16.7":1.89934,"17.0":0.67655,"17.1":0.0408,"17.2":0.00119},P:{"4":1.93461,"20":0.18232,"21":0.29374,"22":0.97237,"23":0.10129,"5.0-5.4":0.08103,"6.2-6.4":0.19245,"7.2-7.4":0.24309,"8.2":0.06077,"9.2":0.19245,"10.1":0.0709,"11.1-11.2":0.1418,"12.0":0.06077,"13.0":0.20258,"14.0":0.23296,"15.0":0.08103,"16.0":0.20258,"17.0":0.29374,"18.0":0.11142,"19.0":0.24309},I:{"0":0.1097,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00033},A:{"9":0.00152,"11":0.03944,_:"6 7 8 10 5.5"},K:{"0":0.84319,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.0933},Q:{_:"13.1"},O:{"0":1.17052},H:{"0":0.48},L:{"0":73.74798}};
      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 33eb72f459b276..150a84df0d8008 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SZ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SZ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00208,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00208,"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,"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.00208,"103":0,"104":0,"105":0,"106":0.01245,"107":0,"108":0,"109":0.00208,"110":0,"111":0,"112":0,"113":0.00208,"114":0.00208,"115":0.02075,"116":0.01245,"117":0.06433,"118":0.00623,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00208,"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.01453,"71":0,"72":0.00208,"73":0,"74":0.00208,"75":0,"76":0,"77":0,"78":0,"79":0.00208,"80":0,"81":0.01038,"83":0.00208,"84":0,"85":0,"86":0.00208,"87":0,"88":0.00208,"89":0.00208,"90":0.00415,"91":0,"92":0,"93":0,"94":0.00208,"95":0.01038,"96":0,"97":0,"98":0,"99":0.01038,"100":0,"101":0,"102":0,"103":0.02283,"104":0.00208,"105":0,"106":0.00623,"107":0.00208,"108":0.0083,"109":0.22825,"110":0,"111":0.00208,"112":0.00208,"113":0.0083,"114":0.0332,"115":0.02075,"116":1.26783,"117":0.249,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00208,"25":0.00623,"26":0.0166,"27":0,"28":0.02075,"29":0,"30":0.00208,"31":0,"32":0.01038,"33":0,"34":0,"35":0.1245,"36":0.00208,"37":0,"38":0.01038,"39":0,"40":0,"41":0.00208,"42":0.00208,"43":0,"44":0.09545,"45":0,"46":0.00208,"47":0.00623,"48":0,"49":0,"50":0.01868,"51":0.00415,"52":0,"53":0,"54":0.00415,"55":0.00208,"56":0.01038,"57":0.00623,"58":0.02075,"60":0.02698,"62":0,"63":0.12865,"64":0.01868,"65":0.01245,"66":0.01245,"67":0.0249,"68":0.0747,"69":0.2656,"70":0.11205,"71":0.16393,"72":0.80718,"73":0.08508,"74":0.00415,"75":0.00208,"76":0.00208,"77":0.03943,"78":0.0083,"79":0.00208,"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.01038,"96":0,"97":0.00208,"98":0,"99":0,"100":0.00415,"101":0.04358,"102":0.0332,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01245},B:{"12":0.00415,"13":0,"14":0.00208,"15":0,"16":0,"17":0.00208,"18":0.00415,"79":0,"80":0,"81":0,"83":0,"84":0.00208,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00415,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00208,"110":0.00208,"111":0,"112":0,"113":0.00208,"114":0.0083,"115":0.0166,"116":0.2573,"117":0.11205},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00208,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00208,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00208,"12.1":0,"13.1":0.00208,"14.1":0.00208,"15.1":0,"15.2-15.3":0,"15.4":0.00208,"15.5":0.00208,"15.6":0.00415,"16.0":0,"16.1":0.00208,"16.2":0.00208,"16.3":0.00415,"16.4":0,"16.5":0.00208,"16.6":0.01453,"17.0":0.00208,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00548,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00352,"10.0-10.2":0,"10.3":0.00509,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00196,"12.2-12.5":0.17735,"13.0-13.1":0,"13.2":0,"13.3":0.03719,"13.4-13.7":0.01175,"14.0-14.4":0.06969,"14.5-14.8":0.13311,"15.0-15.1":0.04307,"15.2-15.3":0.24665,"15.4":0.04072,"15.5":0.02388,"15.6-15.7":0.35196,"16.0":0.20397,"16.1":0.1429,"16.2":0.166,"16.3":0.36527,"16.4":0.0509,"16.5":0.49407,"16.6":1.21052,"17.0":0.1014,"17.1":0},P:{"4":0.26677,"20":0.06156,"21":0.26677,"22":0.94397,"5.0-5.4":0,"6.2-6.4":0.01026,"7.2-7.4":1.221,"8.2":0,"9.2":0.02052,"10.1":0,"11.1-11.2":0.08208,"12.0":0,"13.0":0.02052,"14.0":0.01026,"15.0":0.03078,"16.0":0.0513,"17.0":0.02052,"18.0":0.01026,"19.0":0.08208},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01296,"4.4":0,"4.4.3-4.4.4":0.05949},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},S:{"2.5":0.05548,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":70.03658},R:{_:"0"},M:{"0":0.1902},Q:{"13.1":0},O:{"0":0.84798},H:{"0":14.19545}};
      +module.exports={C:{"28":0.00239,"47":0.00239,"52":0.00716,"60":0.00955,"79":0.00239,"91":0.00239,"95":0.00239,"104":0.00239,"110":0.00478,"111":0.00239,"114":0.00716,"115":0.05492,"116":0.02149,"117":0.03343,"118":0.28656,"119":0.06209,_:"2 3 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 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 101 102 103 105 106 107 108 109 112 113 120 121 122 3.5 3.6"},D:{"11":0.00239,"39":0.00239,"49":0.00239,"56":0.00478,"57":0.00239,"65":0.00239,"67":0.00239,"68":0.00478,"69":0.00239,"70":0.02866,"72":0.00478,"74":0.00478,"77":0.00478,"78":0.00239,"80":0.00239,"81":0.00239,"83":0.00478,"84":0.00239,"85":0.00478,"86":0.00239,"87":0.00716,"88":0.00478,"89":0.01433,"90":0.00478,"91":0.00478,"92":0.00239,"93":0.00239,"94":0.00478,"95":0.00239,"97":0.00239,"98":0.00478,"99":0.00478,"102":0.01194,"103":0.03343,"104":0.02149,"105":0.00239,"106":0.00955,"107":0.00239,"108":0.03343,"109":0.86207,"110":0.10985,"111":0.00478,"112":0.00478,"113":0.0191,"114":0.07403,"115":0.0406,"116":0.19104,"117":4.03333,"118":7.31444,"119":0.00478,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 58 59 60 61 62 63 64 66 71 73 75 76 79 96 100 101 120 121 122"},F:{"36":0.00239,"37":0.00239,"42":0.00239,"68":0.02866,"78":0.00239,"79":0.00478,"81":0.00239,"82":0.00478,"85":0.00239,"94":0.00239,"95":0.02388,"102":0.22925,"103":0.16477,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 80 83 84 86 87 88 89 90 91 92 93 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01433,"14":0.00478,"15":0.00955,"16":0.00239,"17":0.00478,"18":0.03104,"84":0.00716,"90":0.01672,"92":0.01194,"97":0.00239,"100":0.00239,"105":0.00955,"106":0.00478,"109":0.01194,"111":0.00239,"113":0.00478,"114":0.01433,"115":0.02627,"116":0.04776,"117":0.71879,"118":0.67342,_:"13 79 80 81 83 85 86 87 88 89 91 93 94 95 96 98 99 101 102 103 104 107 108 110 112 119"},E:{"13":0.00239,"14":0.00239,"15":0.00955,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 12.1 17.2","5.1":0.00955,"11.1":0.00478,"13.1":0.00478,"14.1":0.00478,"15.1":0.00716,"15.2-15.3":0.00478,"15.4":0.01194,"15.5":0.01194,"15.6":0.02388,"16.0":0.00478,"16.1":0.00478,"16.2":0.00239,"16.3":0.00955,"16.4":0.00955,"16.5":0.11224,"16.6":0.04298,"17.0":0.06448,"17.1":0.00478},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00026,"5.0-5.1":0.00026,"6.0-6.1":0.00078,"7.0-7.1":0.00182,"8.1-8.4":0.00026,"9.0-9.2":0.00182,"9.3":0.00623,"10.0-10.2":0.00026,"10.3":0.00908,"11.0-11.2":0.00831,"11.3-11.4":0.00286,"12.0-12.1":0.00234,"12.2-12.5":0.04127,"13.0-13.1":0.0013,"13.2":0.00701,"13.3":0.0026,"13.4-13.7":0.00831,"14.0-14.4":0.02284,"14.5-14.8":0.03686,"15.0-15.1":0.01454,"15.2-15.3":0.01661,"15.4":0.01843,"15.5":0.02622,"15.6-15.7":0.18144,"16.0":0.06697,"16.1":0.12823,"16.2":0.06256,"16.3":0.11603,"16.4":0.02492,"16.5":0.06645,"16.6-16.7":1.24463,"17.0":0.44334,"17.1":0.02674,"17.2":0.00078},P:{"4":0.1537,"20":0.03074,"21":0.26642,"22":0.88124,"23":0.1537,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.02049,"7.2-7.4":1.27062,"9.2":0.01025,"11.1-11.2":0.09222,"12.0":0.01025,"13.0":0.01025,"14.0":0.01025,"15.0":0.01025,"16.0":0.05123,"17.0":0.06148,"18.0":0.03074,"19.0":0.13321},I:{"0":0.0833,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{"11":0.0191,_:"6 7 8 9 10 5.5"},K:{"0":12.45101,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.08373,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.11418},Q:{_:"13.1"},O:{"0":0.86016},H:{"0":1.89},L:{"0":62.59068}};
      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 5473c8643bbd92..fd02a3b4af0e46 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0.00493,"114":0,"115":0.83385,"116":0.00987,"117":0.37005,"118":0.00493,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.0148,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.0296,"77":0,"78":0,"79":0.06414,"80":0.00493,"81":0,"83":0.02467,"84":0,"85":0,"86":0,"87":0,"88":0.0148,"89":0,"90":0,"91":0,"92":0,"93":0.07894,"94":0.00987,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.12828,"104":0,"105":0.00987,"106":0.00987,"107":0.00493,"108":0,"109":0.31084,"110":0.00493,"111":0,"112":0.03454,"113":0.07894,"114":0.09375,"115":0.53781,"116":7.79079,"117":1.32725,"118":0.0296,"119":0.00987,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.02467,"73":0,"74":0,"75":0,"76":0,"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.03454,"96":0,"97":0,"98":0,"99":0,"100":0.0296,"101":0.09868,"102":0.04934,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0296,"16":0,"17":0,"18":0.08881,"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.00493,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00493,"109":0.0148,"110":0,"111":0,"112":0.00493,"113":0,"114":0.03947,"115":0.56741,"116":3.62156,"117":2.56568},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00987,"15":0.07894,_:"0","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.04934,"14.1":0.06414,"15.1":0.00493,"15.2-15.3":0.09868,"15.4":0.13815,"15.5":0.01974,"15.6":0.14802,"16.0":0.00987,"16.1":0.57234,"16.2":0.04441,"16.3":0.37498,"16.4":0.07894,"16.5":0.35525,"16.6":1.91439,"17.0":0.05427,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00678,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.20008,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.12548,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.02713,"14.0-14.4":0.078,"14.5-14.8":0.37982,"15.0-15.1":0.04748,"15.2-15.3":0.09156,"15.4":0.05087,"15.5":0.11869,"15.6-15.7":1.0818,"16.0":0.86816,"16.1":3.77106,"16.2":0.80711,"16.3":1.89909,"16.4":0.30182,"16.5":0.72912,"16.6":21.25628,"17.0":1.86857,"17.1":0},P:{"4":0.02097,"20":0.05243,"21":0.02097,"22":2.83107,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06291,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.01049,"15.0":0,"16.0":0.01049,"17.0":0.10485,"18.0":0,"19.0":0.04194},I:{"0":0,"3":0,"4":0,"2.1":0,"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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":36.52731},R:{_:"0"},M:{"0":0.43061},Q:{"13.1":0},O:{"0":0.04559},H:{"0":0.07194}};
      +module.exports={C:{"115":1.48603,"116":0.00462,"118":0.85839,"119":0.10615,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 117 120 121 122 3.5 3.6"},D:{"29":0.02308,"33":0.20306,"49":0.01385,"66":0.00462,"72":0.00462,"75":0.02769,"76":0.01385,"79":0.08769,"83":0.01385,"87":0.00462,"88":0.03692,"91":0.00462,"92":0.01846,"93":0.07846,"96":0.00462,"100":0.01846,"103":0.11076,"105":0.00923,"107":0.00923,"109":0.38305,"110":0.01846,"112":0.05538,"113":0.20768,"114":0.07384,"115":0.06,"116":2.14136,"117":12.7374,"118":7.7532,"119":0.12461,"120":0.01846,_:"4 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 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 77 78 80 81 84 85 86 89 90 94 95 97 98 99 101 102 104 106 108 111 121 122"},F:{"95":0.11538,"101":0.01385,"102":0.21691,"103":0.08769,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.13845,"85":0.00462,"92":0.02308,"109":0.24921,"110":0.00923,"111":0.06,"112":0.00462,"114":0.02308,"115":0.00923,"116":0.10615,"117":4.36118,"118":6.23025,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 113 119"},E:{"12":0.00923,"14":0.02308,"15":0.01846,_:"0 4 5 6 7 8 9 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.2","13.1":0.02769,"14.1":0.17076,"15.1":0.05538,"15.2-15.3":0.20768,"15.4":0.00462,"15.5":0.00462,"15.6":0.35997,"16.0":0.02769,"16.1":0.3369,"16.2":0.00462,"16.3":0.31382,"16.4":0.13384,"16.5":0.29998,"16.6":3.18435,"17.0":0.50304,"17.1":0.00462},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00212,"5.0-5.1":0.00212,"6.0-6.1":0.00635,"7.0-7.1":0.01481,"8.1-8.4":0.00212,"9.0-9.2":0.01481,"9.3":0.05078,"10.0-10.2":0.00212,"10.3":0.07405,"11.0-11.2":0.0677,"11.3-11.4":0.02327,"12.0-12.1":0.01904,"12.2-12.5":0.33641,"13.0-13.1":0.01058,"13.2":0.05713,"13.3":0.02116,"13.4-13.7":0.0677,"14.0-14.4":0.18619,"14.5-14.8":0.30044,"15.0-15.1":0.11848,"15.2-15.3":0.13541,"15.4":0.15022,"15.5":0.21369,"15.6-15.7":1.47892,"16.0":0.54587,"16.1":1.04519,"16.2":0.5099,"16.3":0.94575,"16.4":0.20311,"16.5":0.54164,"16.6-16.7":10.1451,"17.0":3.61373,"17.1":0.21792,"17.2":0.00635},P:{"4":0.04461,"20":0.0223,"21":0.08922,"22":2.17465,"23":0.50184,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 17.0","7.2-7.4":0.28995,"13.0":0.04461,"16.0":0.05576,"18.0":0.05576,"19.0":0.0223},I:{"0":0.03215,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"11":0.04154,_:"6 7 8 9 10 5.5"},K:{"0":0.08616,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.02693},Q:{_:"13.1"},O:{"0":0.18309},H:{"0":0},L:{"0":30.43732}};
      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 f1807941875c92..1284863bd20f9f 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TD.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TD.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00245,"94":0,"95":0.00245,"96":0.00245,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00123,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00123,"111":0,"112":0,"113":0,"114":0.0135,"115":0.03068,"116":0.00368,"117":0.0773,"118":0.00614,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00368,"56":0,"57":0,"58":0.00123,"59":0,"60":0.00245,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00123,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00123,"95":0,"96":0,"97":0,"98":0,"99":0.00614,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.00368,"106":0,"107":0,"108":0,"109":0.00982,"110":0,"111":0,"112":0,"113":0,"114":0.00245,"115":0.00614,"116":0.19509,"117":0.07485,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00123,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00123,"62":0,"63":0.00736,"64":0,"65":0,"66":0.03313,"67":0.00491,"68":0,"69":0.02331,"70":0.00123,"71":0.00982,"72":0.00859,"73":0.00491,"74":0.00123,"75":0,"76":0,"77":0.00123,"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.00368,"102":0.00491,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00491,"14":0,"15":0,"16":0,"17":0.00123,"18":0.00123,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00123,"90":0,"91":0,"92":0.00123,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01227,"110":0,"111":0.00491,"112":0,"113":0.00245,"114":0.00123,"115":0.00368,"116":0.06012,"117":0.04663},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.00245,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0.00123,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00122,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00122,"10.0-10.2":0,"10.3":0.00427,"11.0-11.2":0.00061,"11.3-11.4":0.2345,"12.0-12.1":0.01099,"12.2-12.5":0.37251,"13.0-13.1":0.20336,"13.2":0,"13.3":0.00122,"13.4-13.7":0.02015,"14.0-14.4":0.26076,"14.5-14.8":0.18565,"15.0-15.1":0.2516,"15.2-15.3":0.0574,"15.4":0.24183,"15.5":0.36091,"15.6-15.7":0.60396,"16.0":0.1887,"16.1":0.18748,"16.2":0.21618,"16.3":0.44457,"16.4":0.39328,"16.5":0.55755,"16.6":1.0864,"17.0":0.18809,"17.1":0},P:{"4":0.12032,"20":0.21055,"21":0.16042,"22":0.44116,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.2306,"8.2":0,"9.2":0.25066,"10.1":0,"11.1-11.2":0.05013,"12.0":0,"13.0":0.10026,"14.0":0.06016,"15.0":0.01003,"16.0":0.25066,"17.0":0.04011,"18.0":0.09024,"19.0":0.43113},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00062,"4.4":0,"4.4.3-4.4.4":0.01061},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},S:{"2.5":0.07018,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":88.33675},R:{_:"0"},M:{"0":0.14037},Q:{"13.1":0.01755},O:{"0":0.0965},H:{"0":1.50333}};
      +module.exports={C:{"30":0.0008,"43":0.0008,"44":0.0016,"47":0.0008,"48":0.0008,"49":0.0008,"72":0.0008,"78":0.0008,"93":0.00399,"95":0.01037,"96":0.0016,"100":0.00559,"102":0.0008,"113":0.0008,"114":0.0008,"115":0.1995,"117":0.02075,"118":0.4389,"119":0.14364,_:"2 3 4 5 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 45 46 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 97 98 99 101 103 104 105 106 107 108 109 110 111 112 116 120 121 122 3.5 3.6"},D:{"25":0.0008,"50":0.00239,"51":0.0008,"53":0.0008,"57":0.0016,"58":0.0016,"59":0.0008,"63":0.0016,"64":0.0008,"66":0.0008,"67":0.0008,"70":0.0008,"71":0.0008,"77":0.0008,"78":0.0016,"79":0.0008,"80":0.00319,"81":0.0016,"83":0.00239,"87":0.0008,"88":0.00239,"92":0.0008,"94":0.01995,"95":0.01516,"99":0.02713,"102":0.0008,"103":0.00319,"104":0.0008,"105":0.00958,"106":0.0016,"107":0.00319,"109":0.08858,"110":0.0008,"111":0.00958,"112":0.0016,"113":0.0016,"114":0.01037,"115":0.01117,"116":0.04469,"117":0.84269,"118":1.11002,"119":0.0016,_:"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 49 52 54 55 56 60 61 62 65 68 69 72 73 74 75 76 84 85 86 89 90 91 93 96 97 98 100 101 108 120 121 122"},F:{"40":0.0016,"45":0.0008,"65":0.0008,"74":0.0008,"79":0.00239,"96":0.0008,"99":0.0008,"101":0.00319,"102":0.02633,"103":0.01835,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00319,"13":0.0008,"14":0.0016,"15":0.0008,"17":0.0016,"18":0.01357,"84":0.00399,"89":0.0008,"90":0.00319,"91":0.0008,"92":0.00638,"100":0.0008,"105":0.0008,"106":0.0008,"107":0.00479,"108":0.0008,"109":0.05905,"110":0.00239,"111":0.02873,"112":0.00319,"113":0.00239,"114":0.0008,"115":0.01596,"116":0.01436,"117":0.29686,"118":0.19312,"119":0.0008,_:"16 79 80 81 83 85 86 87 88 93 94 95 96 97 98 99 101 102 103 104"},E:{"14":0.0008,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 16.0 17.1 17.2","5.1":0.01117,"13.1":0.00319,"15.5":0.0008,"15.6":0.00958,"16.1":0.0008,"16.2":0.00239,"16.3":0.0016,"16.4":0.0016,"16.5":0.0016,"16.6":0.00319,"17.0":0.00798},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00056,"5.0-5.1":0.00056,"6.0-6.1":0.00167,"7.0-7.1":0.0039,"8.1-8.4":0.00056,"9.0-9.2":0.0039,"9.3":0.01338,"10.0-10.2":0.00056,"10.3":0.01952,"11.0-11.2":0.01784,"11.3-11.4":0.00613,"12.0-12.1":0.00502,"12.2-12.5":0.08866,"13.0-13.1":0.00279,"13.2":0.01506,"13.3":0.00558,"13.4-13.7":0.01784,"14.0-14.4":0.04907,"14.5-14.8":0.07919,"15.0-15.1":0.03123,"15.2-15.3":0.03569,"15.4":0.03959,"15.5":0.05632,"15.6-15.7":0.38979,"16.0":0.14387,"16.1":0.27547,"16.2":0.13439,"16.3":0.24927,"16.4":0.05353,"16.5":0.14276,"16.6-16.7":2.67389,"17.0":0.95245,"17.1":0.05744,"17.2":0.00167},P:{"4":0.03046,"20":0.09137,"21":0.22335,"22":0.53808,"23":0.07107,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.16244,"9.2":0.04061,"11.1-11.2":0.05076,"13.0":0.17259,"14.0":0.05076,"15.0":0.04061,"16.0":0.08122,"17.0":0.05076,"18.0":0.12183,"19.0":0.43655},I:{"0":0.00916,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"11":0.00638,_:"6 7 8 9 10 5.5"},K:{"0":1.92045,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.09202,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.04601},Q:{"13.1":0.0092},O:{"0":0.10122},H:{"0":0.15},L:{"0":86.02144}};
      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 5aa19575217fa9..e16b77494e562a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"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.0037,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0037,"73":0,"74":0,"75":0,"76":0.01482,"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.01111,"103":0.00741,"104":0,"105":0,"106":0,"107":0,"108":0.00741,"109":0.0037,"110":0.0037,"111":0.05926,"112":0.0037,"113":0.0037,"114":0.01482,"115":0.40374,"116":0.06297,"117":1.10009,"118":0.11112,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0037,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.0037,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01482,"41":0,"42":0.0037,"43":0.0037,"44":0,"45":0,"46":0,"47":0.0889,"48":0,"49":0.0037,"50":0.0037,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0037,"64":0,"65":0.0037,"66":0,"67":0,"68":0,"69":0,"70":0.0037,"71":0,"72":0,"73":0.0037,"74":0,"75":0.01852,"76":0.01482,"77":0.0037,"78":0.0037,"79":0.01852,"80":0.00741,"81":0.10371,"83":0,"84":0,"85":0.0037,"86":0.0037,"87":0.0037,"88":0.0037,"89":0,"90":0.00741,"91":0.0037,"92":0.01111,"93":0.05186,"94":0.0037,"95":0.03334,"96":0.00741,"97":0.0037,"98":0,"99":0.0037,"100":0,"101":0.00741,"102":0.02222,"103":0.02222,"104":0.0037,"105":0.01482,"106":0.01111,"107":0.01111,"108":0.02593,"109":1.46678,"110":0.00741,"111":0.00741,"112":0.01111,"113":0.00741,"114":0.03334,"115":0.05926,"116":3.75215,"117":1.03342,"118":0.0037,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0037,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01852,"62":0,"63":0.0037,"64":0,"65":0.0037,"66":0.01852,"67":0.01852,"68":0.0037,"69":0.02593,"70":0.01482,"71":0.05556,"72":0.27039,"73":0.07038,"74":0,"75":0,"76":0,"77":0.01482,"78":0.0037,"79":0.00741,"80":0,"81":0,"82":0,"83":0.0037,"84":0,"85":0,"86":0,"87":0.11482,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.04074,"96":0,"97":0,"98":0,"99":0,"100":0.02222,"101":0.32595,"102":0.21113,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0037},B:{"12":0.00741,"13":0,"14":0.0037,"15":0.01111,"16":0,"17":0,"18":0.01111,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.02222,"91":0,"92":0.03704,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.03334,"110":0,"111":0.0037,"112":0.0037,"113":0,"114":0.02593,"115":0.03704,"116":0.88896,"117":0.62227},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.02593,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01111,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.01482,"16.0":0.0037,"16.1":0,"16.2":0,"16.3":0.0037,"16.4":0.01111,"16.5":0.00741,"16.6":0.05926,"17.0":0,"17.1":0},G:{"8":0.00241,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.02251,"7.0-7.1":0.0611,"8.1-8.4":0.09648,"9.0-9.2":0.00161,"9.3":0.09487,"10.0-10.2":0.00161,"10.3":0.04904,"11.0-11.2":0.01045,"11.3-11.4":0.01688,"12.0-12.1":0.07477,"12.2-12.5":1.48338,"13.0-13.1":0.00402,"13.2":0.00322,"13.3":0.0201,"13.4-13.7":0.18251,"14.0-14.4":0.14633,"14.5-14.8":0.27899,"15.0-15.1":0.13588,"15.2-15.3":0.21467,"15.4":0.02653,"15.5":0.19939,"15.6-15.7":1.78327,"16.0":0.04985,"16.1":0.14954,"16.2":0.08201,"16.3":0.13186,"16.4":0.49526,"16.5":0.31758,"16.6":1.50187,"17.0":0.33527,"17.1":0},P:{"4":0.11467,"20":0.01042,"21":0.05212,"22":0.38571,"5.0-5.4":0.01042,"6.2-6.4":0,"7.2-7.4":0.01042,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.02085,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01042,"18.0":0.01042,"19.0":0.01042},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.01589,"4.4":0,"4.4.3-4.4.4":0.61718},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0037,"5.5":0},S:{"2.5":0.01259,_:"3.0-3.1"},J:{"7":0,"10":0.0063},N:{"10":0,"11":0},L:{"0":74.70218},R:{_:"0"},M:{"0":0.06926},Q:{"13.1":0.02518},O:{"0":0.38406},H:{"0":2.34849}};
      +module.exports={C:{"52":0.01388,"64":0.00347,"72":0.0243,"76":0.00347,"87":0.00694,"88":0.00347,"94":0.00347,"99":0.00347,"100":0.00347,"102":0.00694,"103":0.00694,"108":0.00694,"109":0.00694,"110":0.01041,"111":0.03124,"112":0.02777,"113":0.00694,"114":0.0243,"115":0.91634,"116":0.02083,"117":0.08678,"118":2.24574,"119":0.57272,"120":0.00347,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 73 74 75 77 78 79 80 81 82 83 84 85 86 89 90 91 92 93 95 96 97 98 101 104 105 106 107 121 122 3.5 3.6"},D:{"11":0.00694,"33":0.06248,"34":0.02777,"39":0.00347,"40":0.00347,"41":0.00347,"43":0.01736,"47":0.11801,"49":0.00347,"50":0.00347,"56":0.00347,"58":0.00694,"60":0.00347,"63":0.00694,"64":0.00347,"65":0.01388,"66":0.00694,"69":0.00347,"70":0.00347,"71":0.00347,"74":0.00347,"75":0.06942,"76":0.01736,"77":0.00694,"79":0.04165,"80":0.00347,"81":0.00694,"85":0.00347,"87":0.00694,"88":0.01388,"89":0.00347,"90":0.05207,"91":0.00347,"92":0.00347,"93":0.24991,"94":0.00347,"95":0.22214,"96":0.01041,"98":0.01041,"99":0.03818,"100":0.00694,"101":0.00347,"102":0.01388,"103":0.07636,"104":0.00694,"105":0.48594,"106":0.03124,"107":0.0243,"108":0.03124,"109":4.56784,"110":0.02083,"111":0.01736,"112":0.01041,"113":0.00694,"114":0.10413,"115":0.08678,"116":0.36446,"117":5.19609,"118":6.2721,"119":0.00347,"120":0.00347,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 38 42 44 45 46 48 51 52 53 54 55 57 59 61 62 67 68 72 73 78 83 84 86 97 121 122"},F:{"34":0.00347,"79":0.01041,"82":0.01041,"85":0.05554,"87":0.20132,"90":0.07289,"95":0.10413,"101":0.04859,"102":0.5033,"103":0.479,_:"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 81 83 84 86 88 89 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.03124,"13":0.00347,"14":0.00347,"17":0.00347,"18":0.0243,"84":0.00694,"85":0.00347,"89":0.00347,"90":0.00347,"92":0.03124,"109":0.05901,"110":0.00347,"111":0.00347,"112":0.00347,"113":0.00347,"114":0.02777,"115":0.02777,"116":0.02777,"117":2.26309,"118":2.15202,"119":0.00694,_:"15 16 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108"},E:{"14":0.09372,"15":0.00347,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 17.1 17.2","5.1":0.01736,"11.1":0.00347,"13.1":0.00347,"14.1":0.00694,"15.6":0.03818,"16.3":0.00694,"16.4":0.00347,"16.5":0.01041,"16.6":0.02083,"17.0":0.04512},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00067,"5.0-5.1":0.00067,"6.0-6.1":0.00201,"7.0-7.1":0.00468,"8.1-8.4":0.00067,"9.0-9.2":0.00468,"9.3":0.01606,"10.0-10.2":0.00067,"10.3":0.02342,"11.0-11.2":0.02142,"11.3-11.4":0.00736,"12.0-12.1":0.00602,"12.2-12.5":0.10641,"13.0-13.1":0.00335,"13.2":0.01807,"13.3":0.00669,"13.4-13.7":0.02142,"14.0-14.4":0.05889,"14.5-14.8":0.09503,"15.0-15.1":0.03748,"15.2-15.3":0.04283,"15.4":0.04751,"15.5":0.06759,"15.6-15.7":0.46779,"16.0":0.17266,"16.1":0.3306,"16.2":0.16128,"16.3":0.29914,"16.4":0.06425,"16.5":0.17132,"16.6-16.7":3.20892,"17.0":1.14303,"17.1":0.06893,"17.2":0.00201},P:{"4":0.17576,"21":0.02197,"22":0.39547,"23":0.03296,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0 19.0","7.2-7.4":0.03296,"13.0":0.02197,"17.0":0.01099},I:{"0":0.41572,"3":0,"4":0.00008,"2.1":0,"2.2":0.00013,"2.3":0,"4.1":0.00008,"4.2-4.3":0.00029,"4.4":0,"4.4.3-4.4.4":0.00125},A:{"11":0.01041,_:"6 7 8 9 10 5.5"},K:{"0":1.69556,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01959,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.12405},Q:{"13.1":0.03265},O:{"0":0.31339},H:{"0":0.57},L:{"0":60.13141}};
      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 6e70a91fc16641..3670bf835418b4 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TH.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TH.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00352,"53":0.00352,"54":0,"55":0.01408,"56":0.21114,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00352,"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.00352,"103":0,"104":0,"105":0.00352,"106":0.00352,"107":0,"108":0,"109":0,"110":0.00352,"111":0.00352,"112":0,"113":0.00352,"114":0.00352,"115":0.05982,"116":0.0176,"117":0.26744,"118":0.02815,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00352,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0176,"38":0.00352,"39":0,"40":0,"41":0.00352,"42":0,"43":0.00352,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01056,"50":0,"51":0,"52":0,"53":0.00704,"54":0,"55":0,"56":0.00352,"57":0,"58":0,"59":0.02463,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01056,"69":0.00352,"70":0.00352,"71":0.00352,"72":0.00352,"73":0.00704,"74":0.00704,"75":0.01408,"76":0,"77":0,"78":0.00352,"79":0.08446,"80":0.00704,"81":0.00352,"83":0.00704,"84":0.00352,"85":0.00704,"86":0.00704,"87":0.02111,"88":0.00704,"89":0.00704,"90":0.00352,"91":0.01408,"92":0.00352,"93":0.00352,"94":0.00352,"95":0.00352,"96":0.00352,"97":0.00352,"98":0.00352,"99":0.02463,"100":0.00352,"101":0.01056,"102":0.01056,"103":0.0176,"104":0.00704,"105":0.01056,"106":0.01408,"107":0.01056,"108":0.0176,"109":0.90086,"110":0.01056,"111":0.0176,"112":0.02111,"113":0.02815,"114":0.05982,"115":0.08094,"116":5.09199,"117":1.41464,"118":0.00352,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00352,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01408,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00352,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00352,"73":0,"74":0,"75":0,"76":0,"77":0.01056,"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.00704,"96":0,"97":0,"98":0,"99":0,"100":0.01056,"101":0.04927,"102":0.0563,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00704,"79":0,"80":0,"81":0,"83":0,"84":0.00352,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00352,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01408,"110":0.00352,"111":0.00352,"112":0.00352,"113":0.00352,"114":0.0176,"115":0.01408,"116":0.51026,"117":0.42932},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00352,"14":0.01056,"15":0.00352,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00704,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01056,"14.1":0.03519,"15.1":0.01408,"15.2-15.3":0.00352,"15.4":0.01408,"15.5":0.0176,"15.6":0.07038,"16.0":0.00704,"16.1":0.05279,"16.2":0.02815,"16.3":0.07742,"16.4":0.0176,"16.5":0.22522,"16.6":0.69324,"17.0":0.09501,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00542,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02979,"10.0-10.2":0,"10.3":0.04333,"11.0-11.2":0,"11.3-11.4":0.00542,"12.0-12.1":0.00812,"12.2-12.5":0.42247,"13.0-13.1":0.00812,"13.2":0.20311,"13.3":0.04604,"13.4-13.7":0.04333,"14.0-14.4":0.21124,"14.5-14.8":0.41164,"15.0-15.1":0.12187,"15.2-15.3":0.12999,"15.4":0.15978,"15.5":0.24915,"15.6-15.7":2.69732,"16.0":1.04264,"16.1":1.29991,"16.2":0.65267,"16.3":1.38928,"16.4":0.34935,"16.5":1.13743,"16.6":13.88471,"17.0":2.20173,"17.1":0.00271},P:{"4":0.33116,"20":0.09314,"21":0.19663,"22":2.10078,"5.0-5.4":0.0207,"6.2-6.4":0,"7.2-7.4":0.13453,"8.2":0,"9.2":0.01035,"10.1":0,"11.1-11.2":0.06209,"12.0":0,"13.0":0.0207,"14.0":0.0207,"15.0":0.0207,"16.0":0.04139,"17.0":0.04139,"18.0":0.03105,"19.0":0.08279},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.0224,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07279},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.14076,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":56.36807},R:{_:"0"},M:{"0":0.12314},Q:{"13.1":0},O:{"0":0.16851},H:{"0":0.31293}};
      +module.exports={C:{"47":0.00334,"52":0.01338,"53":0.01338,"55":0.02341,"56":0.92629,"66":0.00334,"77":0.00334,"78":0.00669,"79":0.00334,"83":0.00334,"85":0.00334,"88":0.00334,"89":0.00334,"96":0.00334,"99":0.00334,"102":0.00334,"103":0.00334,"105":0.00334,"106":0.00334,"108":0.00669,"109":0.00334,"110":0.00669,"111":0.00334,"112":0.00334,"113":0.00669,"114":0.00334,"115":0.16386,"116":0.00334,"117":0.02341,"118":0.67883,"119":0.15382,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 54 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 80 81 82 84 86 87 90 91 92 93 94 95 97 98 100 101 104 107 120 121 122 3.5 3.6"},D:{"25":0.05685,"37":0.0301,"38":0.01003,"41":0.00334,"43":0.00669,"49":0.02341,"50":0.00334,"53":0.01672,"55":0.00334,"56":0.00669,"57":0.00334,"58":0.00334,"63":0.00334,"65":0.00334,"68":0.01338,"69":0.00334,"70":0.00334,"71":0.00334,"72":0.00334,"73":0.01338,"74":0.02341,"75":0.00669,"76":0.00334,"77":0.00334,"78":0.00669,"79":0.21402,"80":0.01338,"81":0.00669,"83":0.01338,"84":0.00669,"85":0.01003,"86":0.00669,"87":0.0535,"88":0.02006,"89":0.01003,"90":0.01003,"91":0.02675,"92":0.18058,"93":0.00334,"94":0.01003,"95":0.01003,"96":0.00669,"97":0.01338,"98":0.00334,"99":0.02341,"100":0.01003,"101":0.0301,"102":0.03678,"103":0.04013,"104":0.01003,"105":0.02675,"106":0.02675,"107":0.04013,"108":0.05016,"109":2.30402,"110":0.01672,"111":0.03344,"112":0.0301,"113":0.05016,"114":0.09698,"115":0.07022,"116":0.4715,"117":8.6643,"118":9.49362,"119":0.02341,"120":0.00669,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 39 40 42 44 45 46 47 48 51 52 54 59 60 61 62 64 66 67 121 122"},F:{"28":0.01003,"36":0.00334,"46":0.01003,"95":0.02006,"102":0.27755,"103":0.09698,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00669,"84":0.00334,"92":0.01003,"100":0.00334,"107":0.00334,"108":0.01003,"109":0.0301,"110":0.00334,"111":0.00334,"112":0.00669,"113":0.00669,"114":0.03678,"115":0.01672,"116":0.03678,"117":1.36435,"118":1.46467,"119":0.00669,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106"},E:{"13":0.00334,"14":0.02341,"15":0.00669,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.00669,"11.1":0.00334,"12.1":0.00334,"13.1":0.0301,"14.1":0.13042,"15.1":0.06688,"15.2-15.3":0.01003,"15.4":0.03678,"15.5":0.04682,"15.6":0.20398,"16.0":0.02006,"16.1":0.12707,"16.2":0.07357,"16.3":0.22405,"16.4":0.05016,"16.5":0.1371,"16.6":1.37773,"17.0":0.81928,"17.1":0.04013},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00204,"5.0-5.1":0.00204,"6.0-6.1":0.00611,"7.0-7.1":0.01427,"8.1-8.4":0.00204,"9.0-9.2":0.01427,"9.3":0.04891,"10.0-10.2":0.00204,"10.3":0.07133,"11.0-11.2":0.06522,"11.3-11.4":0.02242,"12.0-12.1":0.01834,"12.2-12.5":0.32405,"13.0-13.1":0.01019,"13.2":0.05503,"13.3":0.02038,"13.4-13.7":0.06522,"14.0-14.4":0.17935,"14.5-14.8":0.28941,"15.0-15.1":0.11413,"15.2-15.3":0.13044,"15.4":0.1447,"15.5":0.20584,"15.6-15.7":1.42461,"16.0":0.52582,"16.1":1.00681,"16.2":0.49117,"16.3":0.91102,"16.4":0.19565,"16.5":0.52175,"16.6-16.7":9.77253,"17.0":3.48102,"17.1":0.20992,"17.2":0.00611},P:{"4":0.27255,"20":0.08386,"21":0.15724,"22":1.83447,"23":0.40882,"5.0-5.4":0.02097,"6.2-6.4":0.0629,"7.2-7.4":0.09434,_:"8.2 10.1 12.0","9.2":0.02097,"11.1-11.2":0.08386,"13.0":0.03145,"14.0":0.02097,"15.0":0.01048,"16.0":0.04193,"17.0":0.0629,"18.0":0.04193,"19.0":0.17821},I:{"0":0.03311,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.00711,"9":0.00355,"10":0.00355,"11":0.27003,_:"6 7 5.5"},K:{"0":0.28618,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.11981},Q:{"13.1":0.00666},O:{"0":0.15974},H:{"0":0.02},L:{"0":43.50085}};
      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 ec75c2c4219c35..f8d060aab97761 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TJ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TJ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00533,"73":0,"74":0,"75":0,"76":0,"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.04264,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00267,"112":0,"113":0,"114":0,"115":0.04264,"116":0.00533,"117":0.07196,"118":0.00533,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00267,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00533,"45":0,"46":0,"47":0,"48":0,"49":0.02132,"50":0.00267,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00267,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00267,"70":0.00267,"71":0.00533,"72":0,"73":0.00267,"74":0,"75":0,"76":0.00267,"77":0,"78":0,"79":0.01333,"80":0,"81":0.008,"83":0.00267,"84":0,"85":0,"86":0.00267,"87":0.00267,"88":0.00533,"89":0.00267,"90":0.01066,"91":0.00267,"92":0.00267,"93":0,"94":0.00267,"95":0,"96":0.00267,"97":0.45039,"98":0.19988,"99":0.00267,"100":0.008,"101":0,"102":0.00533,"103":0.01066,"104":0,"105":0.09861,"106":0.06929,"107":0.12792,"108":0.09328,"109":0.60762,"110":0.00267,"111":0.02665,"112":0.31714,"113":0.01066,"114":0.02399,"115":0.02399,"116":1.74025,"117":0.26384,"118":0.00267,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00267,"29":0.00267,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00267,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00267,"62":0,"63":0.00267,"64":0.00533,"65":0,"66":0,"67":0.00267,"68":0,"69":0.01866,"70":0.008,"71":0.02399,"72":0.06396,"73":0.01066,"74":0,"75":0,"76":0,"77":0.01333,"78":0,"79":0.008,"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.03731,"96":0,"97":0,"98":0,"99":0.00267,"100":0.00533,"101":0.0613,"102":0.07462,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00267,"17":0,"18":0.00533,"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.00267,"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.18122,"106":0,"107":0,"108":0,"109":0.00533,"110":0.01866,"111":0,"112":0.00267,"113":0.00267,"114":0.01333,"115":0.01066,"116":0.14391,"117":0.09061},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01066,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.06663,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00533,"15.1":0,"15.2-15.3":0.008,"15.4":0.00267,"15.5":0.00267,"15.6":0.01066,"16.0":0,"16.1":0.00267,"16.2":0.00267,"16.3":0.03198,"16.4":0.00267,"16.5":0.01066,"16.6":0.09061,"17.0":0.02932,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00404,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00538,"9.3":0.04576,"10.0-10.2":0,"10.3":0.02423,"11.0-11.2":0.01077,"11.3-11.4":0.00808,"12.0-12.1":0.02692,"12.2-12.5":0.34323,"13.0-13.1":0.00404,"13.2":0.00269,"13.3":2.95181,"13.4-13.7":0.03096,"14.0-14.4":0.15345,"14.5-14.8":0.19248,"15.0-15.1":0.1171,"15.2-15.3":0.1696,"15.4":0.09691,"15.5":0.19383,"15.6-15.7":1.09835,"16.0":0.51149,"16.1":0.97182,"16.2":0.53841,"16.3":0.64339,"16.4":0.80761,"16.5":0.77261,"16.6":3.04468,"17.0":0.65147,"17.1":0},P:{"4":0.33691,"20":0.28586,"21":0.35732,"22":1.06176,"5.0-5.4":0.05105,"6.2-6.4":0.09188,"7.2-7.4":0.33691,"8.2":0,"9.2":0.06126,"10.1":0.01021,"11.1-11.2":0.06126,"12.0":0.03063,"13.0":0.04084,"14.0":0.06126,"15.0":0.38795,"16.0":0.25523,"17.0":0.05105,"18.0":0.2246,"19.0":0.30628},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01003,"4.2-4.3":0.01505,"4.4":0,"4.4.3-4.4.4":0.08025},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02932,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":69.30356},R:{_:"0"},M:{"0":0.04401},Q:{"13.1":0.02201},O:{"0":1.3203},H:{"0":1.32636}};
      +module.exports={C:{"29":0.002,"32":0.002,"35":0.002,"52":0.00999,"72":0.002,"81":0.002,"85":0.004,"90":0.002,"99":0.06993,"100":0.002,"106":0.26374,"107":0.00599,"110":0.002,"115":0.17582,"116":0.004,"117":0.004,"118":0.27572,"119":0.03596,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 33 34 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 82 83 84 86 87 88 89 91 92 93 94 95 96 97 98 101 102 103 104 105 108 109 111 112 113 114 120 121 122 3.5 3.6"},D:{"11":0.00999,"35":0.004,"37":0.002,"38":0.00599,"40":0.00999,"44":0.02198,"46":0.004,"47":0.002,"49":0.05594,"53":0.002,"56":0.004,"57":0.002,"59":0.002,"60":0.004,"62":0.002,"66":0.002,"68":0.002,"69":0.00599,"70":0.002,"71":0.01399,"72":0.002,"73":0.002,"74":0.002,"75":0.002,"76":0.00599,"78":0.002,"79":0.01998,"80":0.004,"81":0.00799,"83":0.004,"86":0.24176,"87":0.00599,"88":0.00599,"89":0.01598,"90":0.04595,"91":0.01399,"92":0.002,"93":0.002,"94":0.00799,"95":0.004,"96":0.01598,"97":0.00999,"98":0.01798,"99":0.02597,"100":0.00599,"101":0.002,"102":0.04196,"103":0.00799,"104":0.00799,"105":0.25574,"106":0.13786,"107":0.72727,"108":0.32767,"109":2.41159,"110":0.00999,"111":0.004,"112":0.37163,"113":0.01998,"114":0.06593,"115":0.03596,"116":0.22577,"117":2.64136,"118":3.22477,"119":0.002,"120":0.002,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 39 41 42 43 45 48 50 51 52 54 55 58 61 63 64 65 67 77 84 85 121 122"},F:{"29":0.002,"36":0.002,"42":0.004,"78":0.00599,"79":0.04795,"81":0.004,"82":0.002,"85":0.00799,"86":0.01598,"87":0.002,"88":0.002,"89":0.002,"90":0.002,"95":0.13387,"98":0.002,"99":0.002,"101":0.01399,"102":0.25574,"103":0.25375,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 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 83 84 91 92 93 94 96 97 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.002},B:{"12":0.002,"13":0.00799,"14":0.00599,"15":0.00799,"16":0.00799,"18":0.02398,"81":0.002,"84":0.004,"85":0.002,"90":0.002,"91":0.004,"92":0.00999,"94":0.002,"96":0.002,"97":0.002,"98":0.002,"100":0.00599,"101":0.002,"109":0.04196,"111":0.002,"112":0.00799,"113":0.00599,"114":0.004,"115":0.00599,"116":0.02597,"117":0.44555,"118":0.47353,"119":0.01798,_:"17 79 80 83 86 87 88 89 93 95 99 102 103 104 105 106 107 108 110"},E:{"14":0.01998,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 13.1 17.2","5.1":0.64136,"12.1":0.002,"14.1":0.00799,"15.1":0.002,"15.2-15.3":0.004,"15.4":0.00599,"15.5":0.002,"15.6":0.02597,"16.0":0.002,"16.1":0.02198,"16.2":0.01199,"16.3":0.03596,"16.4":0.01798,"16.5":0.01598,"16.6":0.0959,"17.0":0.03996,"17.1":0.002},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00072,"5.0-5.1":0.00072,"6.0-6.1":0.00217,"7.0-7.1":0.00506,"8.1-8.4":0.00072,"9.0-9.2":0.00506,"9.3":0.01734,"10.0-10.2":0.00072,"10.3":0.02529,"11.0-11.2":0.02312,"11.3-11.4":0.00795,"12.0-12.1":0.0065,"12.2-12.5":0.11489,"13.0-13.1":0.00361,"13.2":0.01951,"13.3":0.00723,"13.4-13.7":0.02312,"14.0-14.4":0.06359,"14.5-14.8":0.10261,"15.0-15.1":0.04046,"15.2-15.3":0.04625,"15.4":0.0513,"15.5":0.07298,"15.6-15.7":0.50508,"16.0":0.18643,"16.1":0.35695,"16.2":0.17414,"16.3":0.32299,"16.4":0.06937,"16.5":0.18498,"16.6-16.7":3.46477,"17.0":1.23417,"17.1":0.07443,"17.2":0.00217},P:{"4":0.38347,"20":0.24219,"21":0.33301,"22":1.08985,"23":0.07064,"5.0-5.4":0.04036,"6.2-6.4":0.111,"7.2-7.4":0.48438,"8.2":0.01009,"9.2":0.10091,"10.1":0.04036,"11.1-11.2":0.06055,"12.0":0.02018,"13.0":0.10091,"14.0":0.10091,"15.0":0.13119,"16.0":0.24219,"17.0":0.06055,"18.0":0.10091,"19.0":0.37337},I:{"0":0.02388,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"8":0.00874,"11":0.17908,_:"6 7 9 10 5.5"},K:{"0":1.46243,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.04801},Q:{"13.1":0.04801},O:{"0":1.2083},H:{"0":0.25},L:{"0":67.09647}};
      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 ec61eaf51d58c6..8d1b0da9cba0e1 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00383,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00383,"37":0.01532,"38":0.00766,"39":0,"40":0.01149,"41":0.00383,"42":0,"43":0,"44":0.01149,"45":0,"46":0,"47":0.01149,"48":0.01532,"49":0,"50":0,"51":0,"52":0.00383,"53":0,"54":0,"55":0,"56":0.01532,"57":0.00383,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00766,"64":0,"65":0.00383,"66":0,"67":0.00766,"68":0,"69":0,"70":0,"71":0,"72":0.00766,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02298,"79":0.10341,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00383,"86":0,"87":0,"88":0.00383,"89":0,"90":0,"91":0,"92":0.00766,"93":0.00383,"94":0,"95":0.03064,"96":0.00383,"97":0,"98":0,"99":0.00766,"100":0.00383,"101":0.00383,"102":0.03447,"103":0.00383,"104":0,"105":0.01149,"106":0.01149,"107":0.01915,"108":0.00383,"109":0.00383,"110":0.00383,"111":0.00766,"112":0.01532,"113":0.11873,"114":0.02681,"115":0.54003,"116":0.19916,"117":1.12602,"118":0.15703,"119":0.00766,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00383,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00383,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00383,"41":0,"42":0,"43":0.00766,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00383,"54":0,"55":0,"56":0,"57":0,"58":0.02298,"59":0.00383,"60":0,"61":0.00766,"62":0.00383,"63":0,"64":0,"65":0.00766,"66":0,"67":0.00383,"68":0.01532,"69":0,"70":0.00383,"71":0,"72":0.00383,"73":0,"74":0.00766,"75":0,"76":0,"77":0,"78":0.00383,"79":0.00766,"80":0.01915,"81":0,"83":0,"84":0.00383,"85":0.00766,"86":0.00383,"87":0.0383,"88":0.01149,"89":0,"90":0.00766,"91":0.00383,"92":0,"93":0,"94":0,"95":0.00766,"96":0,"97":0.01149,"98":0.00383,"99":0.00383,"100":0.00766,"101":0.01915,"102":0.00383,"103":0.04213,"104":0.00766,"105":0.00383,"106":0,"107":0.14554,"108":0.00766,"109":0.76217,"110":0.01149,"111":0.01915,"112":0.01915,"113":0.03064,"114":0.17235,"115":0.22597,"116":5.46924,"117":1.03793,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.06128,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00383,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00383,"64":0.00766,"65":0,"66":0,"67":0,"68":0.00383,"69":0.00383,"70":0.01532,"71":0.03064,"72":0.05362,"73":0.01532,"74":0,"75":0,"76":0,"77":0.00383,"78":0.00383,"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.01915,"96":0,"97":0,"98":0.00383,"99":0.00383,"100":0.00383,"101":0.1532,"102":0.10724,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00383},B:{"12":0.01532,"13":0.00383,"14":0.00766,"15":0.00766,"16":0.01149,"17":0.00766,"18":0.03447,"79":0,"80":0,"81":0,"83":0,"84":0.00766,"85":0.00383,"86":0,"87":0,"88":0,"89":0.00383,"90":0.01149,"91":0,"92":0.01532,"93":0,"94":0,"95":0,"96":0.00383,"97":0.00383,"98":0,"99":0,"100":0.01532,"101":0,"102":0,"103":0.00766,"104":0.00766,"105":0.00383,"106":0,"107":0,"108":0.02298,"109":0.01532,"110":0.00766,"111":0.02681,"112":0.01149,"113":0.02298,"114":0.10724,"115":0.22214,"116":1.17198,"117":0.59365},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01149,"12":0,"13":0.00383,"14":0.01532,"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.00383,"13.1":0.02681,"14.1":0.04213,"15.1":0.01532,"15.2-15.3":0.04979,"15.4":0.01532,"15.5":0.00383,"15.6":0.03447,"16.0":0,"16.1":0.01149,"16.2":0.02298,"16.3":0.03064,"16.4":0.01149,"16.5":0.03447,"16.6":0.02681,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.013,"10.0-10.2":0,"10.3":0.00928,"11.0-11.2":0.00093,"11.3-11.4":0,"12.0-12.1":0.00743,"12.2-12.5":0.68049,"13.0-13.1":0.01764,"13.2":0.0065,"13.3":0.02507,"13.4-13.7":0.1309,"14.0-14.4":0.50596,"14.5-14.8":1.17623,"15.0-15.1":0.17639,"15.2-15.3":0.17546,"15.4":0.20238,"15.5":0.36949,"15.6-15.7":0.7464,"16.0":0.22652,"16.1":0.42519,"16.2":0.28965,"16.3":0.82902,"16.4":0.71576,"16.5":0.51153,"16.6":1.69425,"17.0":0.13833,"17.1":0},P:{"4":0.0609,"20":0.10149,"21":0.13194,"22":0.43642,"5.0-5.4":0.13194,"6.2-6.4":0.01015,"7.2-7.4":0.14209,"8.2":0,"9.2":0.01015,"10.1":0,"11.1-11.2":0.03045,"12.0":0,"13.0":0.0203,"14.0":0.03045,"15.0":0.0203,"16.0":0.11164,"17.0":0.03045,"18.0":0.03045,"19.0":0.10149},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.05915},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00383,"10":0,"11":0.04979,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.80678},R:{_:"0"},M:{"0":0.12957},Q:{"13.1":0.00617},O:{"0":0.77742},H:{"0":1.19164}};
      +module.exports={C:{"8":0.00386,"30":0.0193,"32":0.00772,"34":0.00386,"36":0.00772,"37":0.03474,"38":0.00772,"40":0.0386,"41":0.00386,"42":0.00386,"44":0.02702,"45":0.01158,"47":0.01158,"48":0.02702,"50":0.00772,"52":0.00386,"53":0.00386,"56":0.05018,"57":0.00772,"59":0.00386,"60":0.00386,"61":0.00772,"62":0.00386,"67":0.04632,"72":0.06562,"76":0.00386,"78":0.05018,"79":0.2509,"85":0.06562,"92":0.00772,"93":0.00386,"95":0.00386,"96":0.00772,"98":0.00386,"99":0.0579,"102":0.00386,"103":0.00772,"105":0.00386,"106":0.00386,"107":0.00772,"109":0.00386,"110":0.00386,"111":0.0193,"112":0.01544,"113":0.02316,"114":0.0193,"115":1.2545,"116":0.1351,"117":0.25476,"118":3.2617,"119":0.46706,"120":0.02702,_:"2 3 4 5 6 7 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 33 35 39 43 46 49 51 54 55 58 63 64 65 66 68 69 70 71 73 74 75 77 80 81 82 83 84 86 87 88 89 90 91 94 97 100 101 104 108 121 122 3.5 3.6"},D:{"28":0.00386,"31":0.00772,"32":0.00386,"34":0.01544,"41":0.00772,"43":0.01158,"49":0.03088,"50":0.00772,"51":0.00386,"56":0.01158,"58":0.06562,"59":0.00386,"61":0.00386,"62":0.00772,"63":0.01544,"64":0.00386,"65":0.04632,"67":0.01544,"68":0.00772,"69":0.00772,"70":0.00386,"74":0.0193,"75":0.00386,"78":0.0193,"80":0.03088,"83":0.00386,"84":0.01544,"85":0.05018,"86":0.0386,"87":0.10422,"88":0.02316,"89":0.00386,"90":0.00772,"91":0.01544,"92":0.00386,"94":0.00772,"95":0.03474,"96":0.00386,"97":0.03474,"98":0.01158,"99":0.00386,"100":0.01158,"101":0.01158,"102":0.00772,"103":0.28564,"104":0.0193,"105":0.0193,"106":0.00772,"107":0.01158,"108":0.03474,"109":2.72516,"110":0.0193,"111":0.04246,"112":0.05018,"113":0.07334,"114":0.26248,"115":0.22388,"116":1.49382,"117":9.73492,"118":7.11784,"119":0.00386,_:"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 33 35 36 37 38 39 40 42 44 45 46 47 48 52 53 54 55 57 60 66 71 72 73 76 77 79 81 93 120 121 122"},F:{"37":0.00386,"62":0.00386,"72":0.00386,"75":0.01544,"79":0.00386,"80":0.00386,"85":0.00772,"95":0.06562,"98":0.00772,"101":0.01544,"102":0.45548,"103":0.16212,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 73 74 76 77 78 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.03474,"13":0.01544,"14":0.00772,"16":0.03088,"17":0.01158,"18":0.05018,"84":0.01544,"89":0.02316,"90":0.00772,"92":0.02702,"96":0.01544,"97":0.00386,"98":0.00386,"100":0.01544,"101":0.00386,"105":0.02316,"106":0.01158,"108":0.03474,"109":0.03088,"110":0.05018,"111":0.02702,"112":0.03088,"113":0.02316,"114":0.14282,"115":0.14282,"116":0.18914,"117":2.6634,"118":1.74086,"119":0.04246,_:"15 79 80 81 83 85 86 87 88 91 93 94 95 99 102 103 104 107"},E:{"11":0.00386,"12":0.00386,"13":0.00386,"14":0.03088,"15":0.00386,_:"0 4 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0 17.1 17.2","11.1":0.00386,"12.1":0.00772,"13.1":0.0772,"14.1":0.0965,"15.1":0.01158,"15.2-15.3":0.06176,"15.4":0.02702,"15.5":0.01158,"15.6":0.04246,"16.1":0.01544,"16.2":0.02702,"16.3":0.08492,"16.4":0.01158,"16.5":0.14668,"16.6":0.20458,"17.0":0.05018},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00061,"5.0-5.1":0.00061,"6.0-6.1":0.00182,"7.0-7.1":0.00425,"8.1-8.4":0.00061,"9.0-9.2":0.00425,"9.3":0.01459,"10.0-10.2":0.00061,"10.3":0.02127,"11.0-11.2":0.01945,"11.3-11.4":0.00669,"12.0-12.1":0.00547,"12.2-12.5":0.09663,"13.0-13.1":0.00304,"13.2":0.01641,"13.3":0.00608,"13.4-13.7":0.01945,"14.0-14.4":0.05348,"14.5-14.8":0.0863,"15.0-15.1":0.03403,"15.2-15.3":0.0389,"15.4":0.04315,"15.5":0.06138,"15.6-15.7":0.42482,"16.0":0.1568,"16.1":0.30023,"16.2":0.14647,"16.3":0.27167,"16.4":0.05835,"16.5":0.15559,"16.6-16.7":2.91421,"17.0":1.03806,"17.1":0.0626,"17.2":0.00182},P:{"4":0.14956,"20":0.06979,"21":0.10967,"22":0.41876,"23":0.02991,_:"5.0-5.4 6.2-6.4 8.2","7.2-7.4":0.11965,"9.2":0.01994,"10.1":0.02991,"11.1-11.2":0.03988,"12.0":0.00997,"13.0":0.01994,"14.0":0.01994,"15.0":0.01994,"16.0":0.0997,"17.0":0.02991,"18.0":0.03988,"19.0":0.17947},I:{"0":0.01222,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.1158,_:"6 7 8 9 10 5.5"},K:{"0":0.89471,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.16575},Q:{"13.1":0.00614},O:{"0":0.84104},H:{"0":0.02},L:{"0":53.83664}};
      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 04abe813758d9e..ef4c5bfc11c606 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00485,"45":0,"46":0,"47":0,"48":0.00243,"49":0,"50":0,"51":0,"52":0.00243,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00728,"69":0.00243,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00243,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00243,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.13591,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00243,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0.00243,"117":0.02912,"118":0.00243,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00243,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00485,"74":0.00243,"75":0.00243,"76":0.00485,"77":0.00485,"78":0.00243,"79":0.00728,"80":0.00243,"81":0.00485,"83":0.00728,"84":0.00485,"85":0.00243,"86":0.00485,"87":0,"88":0.00243,"89":0.04611,"90":0.00243,"91":0.00243,"92":0,"93":0.00728,"94":0.00728,"95":0,"96":0.00243,"97":0,"98":0.00485,"99":0.00485,"100":0.01699,"101":0.00485,"102":0.00728,"103":0.00243,"104":0.00243,"105":0.01456,"106":0.01456,"107":0.05097,"108":0.05825,"109":1.13098,"110":0.00485,"111":0.00971,"112":0.00728,"113":0.00728,"114":0.02427,"115":0.08737,"116":2.14304,"117":0.59219,"118":0.00728,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00243,"54":0,"55":0,"56":0,"57":0,"58":0.00243,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00243,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00728,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00243,"85":0,"86":0,"87":0,"88":0,"89":0.00243,"90":0,"91":0.00243,"92":0,"93":0.00485,"94":0.00485,"95":0,"96":0,"97":0.01456,"98":0,"99":0.00243,"100":0.00485,"101":0.00485,"102":0.01456,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00485,"85":0.00243,"86":0,"87":0,"88":0.00243,"89":0,"90":0.00485,"91":0,"92":0.02184,"93":0,"94":0,"95":0,"96":0.00243,"97":0.00243,"98":0,"99":0.00243,"100":0.02427,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00243,"110":0,"111":0.00243,"112":0.00971,"113":0,"114":0.00485,"115":0.00485,"116":0.07281,"117":0.05825},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00243,"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.00485,"16.0":0,"16.1":0.00243,"16.2":0,"16.3":0.00485,"16.4":0,"16.5":0.0267,"16.6":0.16989,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.00414,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.26195,"13.0-13.1":0.00725,"13.2":0.00725,"13.3":0.01553,"13.4-13.7":0.01553,"14.0-14.4":0.02278,"14.5-14.8":0.03003,"15.0-15.1":0.06833,"15.2-15.3":0.17912,"15.4":0.08697,"15.5":0.11389,"15.6-15.7":1.19792,"16.0":0.23606,"16.1":2.00344,"16.2":0.21329,"16.3":0.82519,"16.4":0.06109,"16.5":0.3075,"16.6":3.38772,"17.0":1.20103,"17.1":0.00725},P:{"4":0.11076,"20":0.30208,"21":0.29201,"22":2.07426,"5.0-5.4":0.02014,"6.2-6.4":0,"7.2-7.4":0.12083,"8.2":0,"9.2":0.05035,"10.1":0.01007,"11.1-11.2":0.02014,"12.0":0.07048,"13.0":0.07048,"14.0":0.02014,"15.0":0.08055,"16.0":0.12083,"17.0":0.22152,"18.0":0.48332,"19.0":0.45312},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.00092,"4.4":0,"4.4.3-4.4.4":0.00378},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.17538},R:{_:"0"},M:{"0":0.06058},Q:{"13.1":0},O:{"0":0.60584},H:{"0":0.31546}};
      +module.exports={C:{"34":0.00483,"52":0.00242,"60":0.01209,"64":0.02659,"70":0.00725,"72":0.01692,"73":0.00242,"78":0.00483,"89":0.00242,"91":1.45987,"97":0.00967,"103":0.01209,"110":0.00242,"115":0.00242,"117":0.00725,"118":0.03384,"119":0.00483,_:"2 3 4 5 6 7 8 9 10 11 12 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 65 66 67 68 69 71 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 93 94 95 96 98 99 100 101 102 104 105 106 107 108 109 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"40":0.01209,"44":0.00725,"47":0.00483,"49":0.04592,"60":0.00725,"61":0.01209,"63":0.02659,"65":0.03142,"66":0.00242,"69":0.00242,"70":0.00483,"73":0.00725,"76":0.02659,"77":0.00242,"78":0.00967,"79":0.00242,"80":0.00967,"81":0.00725,"83":0.00725,"84":0.00483,"85":0.00725,"86":0.00967,"87":0.00725,"88":0.00725,"89":0.07251,"91":0.00967,"92":0.00483,"93":0.00967,"94":0.04592,"96":0.01209,"97":0.02175,"98":0.029,"100":0.05559,"101":0.04109,"102":0.029,"103":0.02659,"104":0.01692,"105":0.06284,"106":0.04109,"107":0.04592,"108":0.04109,"109":4.45695,"110":0.00967,"111":0.03384,"112":0.11602,"113":0.01934,"114":0.03867,"115":0.02659,"116":0.19336,"117":4.97902,"118":5.45275,"119":0.02175,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 45 46 48 50 51 52 53 54 55 56 57 58 59 62 64 67 68 71 72 74 75 90 95 99 120 121 122"},F:{"34":0.0145,"50":0.00483,"53":0.00725,"60":0.00483,"64":0.00242,"66":0.00242,"67":0.00967,"69":0.00242,"70":0.00242,"73":0.00242,"75":0.00242,"78":0.00483,"79":0.00967,"81":0.0145,"82":0.00483,"83":0.00967,"84":0.00483,"86":0.00242,"88":0.03384,"89":0.00725,"90":0.02175,"92":0.00483,"93":0.00725,"94":0.00967,"95":0.00967,"97":0.00725,"99":0.01209,"101":0.00483,"102":0.07493,"103":0.00967,_:"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 51 52 54 55 56 57 58 62 63 65 68 71 72 74 76 77 80 85 87 91 96 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"84":0.03142,"88":0.00967,"89":0.00242,"90":0.0145,"92":0.28521,"98":0.00483,"99":0.01692,"100":0.02417,"104":0.00483,"106":0.00242,"107":0.00242,"108":0.00242,"109":0.00483,"110":0.00725,"111":0.00483,"112":0.03142,"114":0.0846,"115":0.00967,"116":0.08218,"117":0.30454,"118":0.10151,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 91 93 94 95 96 97 101 102 103 105 113 119"},E:{"14":0.00483,"15":0.00725,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 13.1 15.2-15.3 15.4 16.0 16.4 17.1 17.2","12.1":0.00725,"14.1":0.00483,"15.1":0.00725,"15.5":0.00242,"15.6":0.02659,"16.1":0.00242,"16.2":0.00242,"16.3":0.00483,"16.5":0.00725,"16.6":0.05076,"17.0":0.12085},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00078,"5.0-5.1":0.00078,"6.0-6.1":0.00234,"7.0-7.1":0.00545,"8.1-8.4":0.00078,"9.0-9.2":0.00545,"9.3":0.01869,"10.0-10.2":0.00078,"10.3":0.02726,"11.0-11.2":0.02492,"11.3-11.4":0.00857,"12.0-12.1":0.00701,"12.2-12.5":0.12383,"13.0-13.1":0.00389,"13.2":0.02103,"13.3":0.00779,"13.4-13.7":0.02492,"14.0-14.4":0.06853,"14.5-14.8":0.11059,"15.0-15.1":0.04361,"15.2-15.3":0.04984,"15.4":0.05529,"15.5":0.07866,"15.6-15.7":0.54436,"16.0":0.20092,"16.1":0.38471,"16.2":0.18768,"16.3":0.34811,"16.4":0.07476,"16.5":0.19937,"16.6-16.7":3.73422,"17.0":1.33015,"17.1":0.08021,"17.2":0.00234},P:{"4":0.3552,"20":0.11163,"21":0.18267,"22":1.83689,"23":0.18267,"5.0-5.4":0.0203,"6.2-6.4":0.06089,"7.2-7.4":0.29431,"8.2":0.01015,"9.2":0.03045,_:"10.1 12.0","11.1-11.2":0.0203,"13.0":0.16238,"14.0":0.03045,"15.0":0.06089,"16.0":0.08119,"17.0":0.93367,"18.0":0.17253,"19.0":0.19282},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.14166,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.12891},Q:{_:"13.1"},O:{"0":0.43223},H:{"0":0.01},L:{"0":63.87092}};
      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 ba7130c8bc6357..dc9dae15b50a6e 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00346,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02422,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00346,"76":0,"77":0,"78":0.00692,"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.0346,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01038,"103":0.00346,"104":0.00346,"105":0.00692,"106":0.00346,"107":0,"108":0,"109":0,"110":0.00346,"111":0,"112":0.00346,"113":0.00346,"114":0.00346,"115":0.10726,"116":0.02076,"117":0.25258,"118":0.02076,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03114,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00346,"57":0,"58":0.01038,"59":0,"60":0,"61":0,"62":0,"63":0.00346,"64":0,"65":0.00692,"66":0,"67":0.00346,"68":0,"69":0,"70":0.01038,"71":0.00346,"72":0.01038,"73":0.00346,"74":0.00346,"75":0,"76":0.00346,"77":0.00346,"78":0.00346,"79":0.0173,"80":0.01038,"81":0.0173,"83":0.00346,"84":0.00692,"85":0.02076,"86":0.00692,"87":0.02768,"88":0.00346,"89":0.02076,"90":0.02768,"91":0.02076,"92":0.00692,"93":0,"94":0.00346,"95":0.00692,"96":0.00346,"97":0.00346,"98":0.01038,"99":0.02076,"100":0.01384,"101":0.00346,"102":0.01384,"103":0.0173,"104":0.00692,"105":0.01384,"106":0.0519,"107":0.02076,"108":0.10034,"109":1.80612,"110":0.0173,"111":0.0173,"112":0.0346,"113":0.02768,"114":0.07266,"115":0.15224,"116":4.4461,"117":1.18332,"118":0.00346,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00346,"65":0,"66":0,"67":0,"68":0,"69":0.02422,"70":0.0173,"71":0,"72":0.0173,"73":0.00346,"74":0.00346,"75":0,"76":0,"77":0.00692,"78":0,"79":0.00346,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00346,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0346,"96":0,"97":0,"98":0,"99":0.00346,"100":0.11072,"101":0.23528,"102":0.30448,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00346,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.02422,"91":0,"92":0.00692,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00346,"108":0.00346,"109":0.02076,"110":0.00346,"111":0,"112":0.00346,"113":0.00346,"114":0.01038,"115":0.0173,"116":0.48094,"117":0.35638},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00692,"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.00346,"14.1":0.00346,"15.1":0,"15.2-15.3":0,"15.4":0.00346,"15.5":0.00346,"15.6":0.0173,"16.0":0.00346,"16.1":0.00346,"16.2":0.00346,"16.3":0.00692,"16.4":0,"16.5":0.00692,"16.6":0.04152,"17.0":0.00346,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00507,"6.0-6.1":0.00254,"7.0-7.1":0.03634,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0431,"10.0-10.2":0.00169,"10.3":0.03465,"11.0-11.2":0.00423,"11.3-11.4":0.00254,"12.0-12.1":0.00676,"12.2-12.5":0.20618,"13.0-13.1":0.00254,"13.2":0.00169,"13.3":1.18218,"13.4-13.7":0.03127,"14.0-14.4":0.08619,"14.5-14.8":0.22731,"15.0-15.1":0.05831,"15.2-15.3":0.05239,"15.4":0.05493,"15.5":0.09126,"15.6-15.7":0.82896,"16.0":0.24759,"16.1":0.46898,"16.2":0.26787,"16.3":0.38955,"16.4":0.10647,"16.5":0.35491,"16.6":3.18234,"17.0":0.39209,"17.1":0},P:{"4":0.20413,"20":0.06124,"21":0.12248,"22":1.09208,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.26537,"8.2":0,"9.2":0.01021,"10.1":0,"11.1-11.2":0.02041,"12.0":0.01021,"13.0":0.03062,"14.0":0.02041,"15.0":0.01021,"16.0":0.04083,"17.0":0.05103,"18.0":0.02041,"19.0":0.05103},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01472,"4.4":0,"4.4.3-4.4.4":0.14718},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03114,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.86668},R:{_:"0"},M:{"0":0.07194},Q:{"13.1":0},O:{"0":0.1308},H:{"0":0.3715}};
      +module.exports={C:{"47":0.00385,"52":0.08079,"59":0.00385,"67":0.00385,"68":0.00385,"72":0.00385,"75":0.01539,"78":0.00769,"88":0.00385,"91":0.00385,"102":0.00769,"103":0.00385,"104":0.00769,"105":0.01154,"108":0.00385,"110":0.01539,"111":0.00385,"112":0.00385,"113":0.01154,"114":0.00385,"115":0.38085,"116":0.03078,"117":0.04232,"118":0.65399,"119":0.14619,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 60 61 62 63 64 65 66 69 70 71 73 74 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 106 107 109 120 121 122 3.5 3.6"},D:{"11":0.00385,"38":0.00385,"41":0.00385,"46":0.00385,"47":0.00385,"48":0.00385,"49":0.10772,"50":0.00385,"51":0.00385,"53":0.00385,"56":0.02308,"58":0.04232,"59":0.00385,"60":0.00385,"63":0.00769,"64":0.00385,"65":0.01539,"66":0.00385,"67":0.00385,"68":0.00385,"69":0.00769,"70":0.01539,"71":0.00769,"72":0.00385,"73":0.00385,"74":0.00769,"75":0.00385,"76":0.01154,"77":0.00769,"78":0.00385,"79":0.04232,"80":0.01154,"81":0.02308,"83":0.01154,"84":0.01539,"85":0.06155,"86":0.01924,"87":0.07309,"88":0.01154,"89":0.01924,"90":0.00769,"91":0.03847,"92":0.02693,"93":0.00769,"94":0.01154,"95":0.01924,"96":0.01539,"97":0.01924,"98":0.03078,"99":0.02308,"100":0.01154,"101":0.01539,"102":0.05001,"103":0.04232,"104":0.03078,"105":0.06925,"106":0.06155,"107":0.06925,"108":0.10387,"109":6.11288,"110":0.06925,"111":0.06155,"112":0.09233,"113":0.04616,"114":0.13849,"115":0.09233,"116":0.7117,"117":9.6175,"118":9.94834,"119":0.01154,"120":0.00385,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 52 54 55 57 61 62 121 122"},F:{"28":0.00385,"40":0.00385,"65":0.00385,"79":0.00769,"82":0.00385,"85":0.00769,"91":0.01154,"93":0.00385,"94":0.00385,"95":0.13849,"96":0.01154,"100":0.00385,"101":0.00769,"102":2.16971,"103":0.41548,_:"9 11 12 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 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 90 92 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00385,"15":0.00385,"17":0.00385,"18":0.01539,"84":0.00385,"89":0.00385,"92":0.02308,"100":0.00385,"102":0.00385,"107":0.01539,"108":0.02308,"109":0.06155,"110":0.01154,"111":0.01924,"112":0.00385,"113":0.01154,"114":0.01539,"115":0.02308,"116":0.04232,"117":1.38107,"118":1.40031,"119":0.00769,_:"13 14 16 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 103 104 105 106"},E:{"14":0.01539,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 17.2","5.1":0.00385,"11.1":0.00385,"13.1":0.01154,"14.1":0.01154,"15.1":0.00385,"15.2-15.3":0.00385,"15.4":0.01539,"15.5":0.00769,"15.6":0.03078,"16.0":0.00385,"16.1":0.01924,"16.2":0.00385,"16.3":0.03462,"16.4":0.00385,"16.5":0.01924,"16.6":0.10772,"17.0":0.06925,"17.1":0.00385},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00051,"5.0-5.1":0.00051,"6.0-6.1":0.00152,"7.0-7.1":0.00355,"8.1-8.4":0.00051,"9.0-9.2":0.00355,"9.3":0.01216,"10.0-10.2":0.00051,"10.3":0.01773,"11.0-11.2":0.01621,"11.3-11.4":0.00557,"12.0-12.1":0.00456,"12.2-12.5":0.08053,"13.0-13.1":0.00253,"13.2":0.01367,"13.3":0.00506,"13.4-13.7":0.01621,"14.0-14.4":0.04457,"14.5-14.8":0.07192,"15.0-15.1":0.02836,"15.2-15.3":0.03241,"15.4":0.03596,"15.5":0.05115,"15.6-15.7":0.35403,"16.0":0.13067,"16.1":0.2502,"16.2":0.12206,"16.3":0.22639,"16.4":0.04862,"16.5":0.12966,"16.6-16.7":2.42854,"17.0":0.86506,"17.1":0.05217,"17.2":0.00152},P:{"4":0.1127,"20":0.05123,"21":0.07172,"22":0.90156,"23":0.14343,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.26637,"9.2":0.01025,"11.1-11.2":0.02049,"12.0":0.01025,"13.0":0.02049,"14.0":0.03074,"15.0":0.01025,"16.0":0.03074,"17.0":0.06147,"18.0":0.02049,"19.0":0.04098},I:{"0":0.06735,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"8":0.004,"9":0.004,"10":0.004,"11":0.08802,_:"6 7 5.5"},K:{"0":0.25539,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.08},Q:{_:"13.1"},O:{"0":0.1477},H:{"0":0.04},L:{"0":56.22723}};
      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 7562d7da478254..3bd6cde5601678 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0.00467,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.0187,"112":0,"113":0,"114":0.05609,"115":0.02337,"116":0.0187,"117":0.26174,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00467,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.0187,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.02337,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00467,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.04674,"104":0,"105":0.01402,"106":0,"107":0.02337,"108":0,"109":0.72914,"110":0,"111":0,"112":0.0187,"113":0.02337,"114":0.15892,"115":0.43936,"116":8.46461,"117":1.276,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0187,"73":0,"74":0,"75":0,"76":0,"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.00467,"100":0,"101":0.00935,"102":0.02337,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00935,"14":0,"15":0.00467,"16":0,"17":0.01402,"18":0.0187,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.11685,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00467,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00467,"102":0,"103":0,"104":0,"105":0,"106":0.00467,"107":0,"108":0.01402,"109":0.02337,"110":0,"111":0.00935,"112":0.00467,"113":0.00467,"114":0.06076,"115":0.40664,"116":2.70157,"117":1.83688},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03272,"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.01402,"14.1":0.05141,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.01402,"15.6":0.07946,"16.0":0,"16.1":0.06076,"16.2":0.00467,"16.3":0.0187,"16.4":0.03272,"16.5":0.13555,"16.6":0.30381,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09445,"10.0-10.2":0,"10.3":0.01692,"11.0-11.2":0.09445,"11.3-11.4":0.00564,"12.0-12.1":0,"12.2-12.5":0.30169,"13.0-13.1":0,"13.2":0,"13.3":0.01692,"13.4-13.7":0.03383,"14.0-14.4":0.67105,"14.5-14.8":0.41165,"15.0-15.1":0.15085,"15.2-15.3":0.25235,"15.4":0.11137,"15.5":0.29041,"15.6-15.7":2.95487,"16.0":0.2016,"16.1":0.36795,"16.2":0.22838,"16.3":1.11654,"16.4":0.30733,"16.5":1.14473,"16.6":5.12168,"17.0":0.15648,"17.1":0},P:{"4":0,"20":0.09434,"21":0.29351,"22":0.5975,"5.0-5.4":0.03145,"6.2-6.4":0,"7.2-7.4":0.23061,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05241,"12.0":0,"13.0":0.02096,"14.0":0.02096,"15.0":0.04193,"16.0":0.07338,"17.0":0.02096,"18.0":0.06289,"19.0":0.10482},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.1509,"4.4":0,"4.4.3-4.4.4":0.17606},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00935,"11":0,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.1096},R:{_:"0"},M:{"0":0.03196},Q:{"13.1":0.00533},O:{"0":0.56988},H:{"0":0.07059}};
      +module.exports={C:{"78":0.00431,"115":0.10344,"116":0.01293,"117":0.10344,"118":0.57323,"119":0.03879,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 120 121 122 3.5 3.6"},D:{"62":0.03017,"68":0.00431,"71":0.00431,"72":0.00431,"74":0.06896,"75":0.01724,"86":0.00431,"93":0.01724,"94":0.00431,"95":0.02155,"96":0.00431,"98":0.01724,"99":0.01724,"103":0.18102,"106":0.01293,"109":2.27137,"110":0.01724,"111":0.01293,"112":0.03017,"113":0.01293,"114":0.0431,"115":0.26291,"116":0.71115,"117":9.73198,"118":8.43036,"119":0.01724,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 69 70 73 76 77 78 79 80 81 83 84 85 87 88 89 90 91 92 97 100 101 102 104 105 107 108 120 121 122"},F:{"102":0.07758,"103":0.00431,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.03879,"80":0.00431,"86":0.00431,"92":0.03879,"103":0.02155,"106":0.00862,"109":0.0431,"111":0.02155,"112":0.00431,"113":0.02586,"114":0.0431,"115":0.0862,"116":0.74563,"117":5.42629,"118":2.91356,_:"12 13 14 15 16 17 79 81 83 84 85 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104 105 107 108 110 119"},E:{"13":0.00431,"14":0.02586,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 16.2 17.2","13.1":0.07758,"14.1":0.01724,"15.2-15.3":0.03017,"15.4":0.02155,"15.5":0.01293,"15.6":0.07758,"16.0":0.00431,"16.1":0.11637,"16.3":0.02586,"16.4":0.00862,"16.5":0.0862,"16.6":0.45255,"17.0":0.87924,"17.1":0.00431},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00098,"5.0-5.1":0.00098,"6.0-6.1":0.00294,"7.0-7.1":0.00685,"8.1-8.4":0.00098,"9.0-9.2":0.00685,"9.3":0.02349,"10.0-10.2":0.00098,"10.3":0.03425,"11.0-11.2":0.03132,"11.3-11.4":0.01077,"12.0-12.1":0.00881,"12.2-12.5":0.15561,"13.0-13.1":0.00489,"13.2":0.02642,"13.3":0.00979,"13.4-13.7":0.03132,"14.0-14.4":0.08612,"14.5-14.8":0.13897,"15.0-15.1":0.05481,"15.2-15.3":0.06264,"15.4":0.06949,"15.5":0.09885,"15.6-15.7":0.6841,"16.0":0.2525,"16.1":0.48347,"16.2":0.23586,"16.3":0.43747,"16.4":0.09395,"16.5":0.25054,"16.6-16.7":4.69277,"17.0":1.67159,"17.1":0.1008,"17.2":0.00294},P:{"4":0.07274,"20":0.09353,"21":0.16627,"22":0.95606,"23":0.03118,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 15.0","7.2-7.4":0.10392,"11.1-11.2":0.02078,"14.0":0.01039,"16.0":0.03118,"17.0":0.09353,"18.0":0.11431,"19.0":0.04157},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{"11":0.00862,_:"6 7 8 9 10 5.5"},K:{"0":0.09104,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.07966},Q:{"13.1":0.29019},O:{"0":0.47227},H:{"0":0},L:{"0":48.27198}};
      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 f7161871da9611..302785736abdcc 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00923,"49":0,"50":0,"51":0,"52":0.00231,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00231,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.03461,"116":0.00692,"117":0.08075,"118":0.00923,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00461,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01154,"35":0,"36":0,"37":0,"38":0.01615,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00692,"48":0,"49":0.00923,"50":0,"51":0,"52":0,"53":0.00461,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01154,"69":0,"70":0,"71":0,"72":0,"73":0.00461,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.05998,"80":0.00231,"81":0.00231,"83":0.01384,"84":0.00231,"85":0.00692,"86":0.00231,"87":0.01615,"88":0.00231,"89":0.00231,"90":0.00231,"91":0.00231,"92":0.00231,"93":0,"94":0.00231,"95":0.00231,"96":0.00692,"97":0.00231,"98":0.00231,"99":0.01846,"100":0.00231,"101":0.00231,"102":0.00231,"103":0.00923,"104":0.00461,"105":0.00461,"106":0.01154,"107":0.00923,"108":0.01154,"109":0.76362,"110":0.00692,"111":0.01154,"112":0.01384,"113":0.00923,"114":0.0323,"115":0.07844,"116":1.9102,"117":0.60674,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00461,"29":0,"30":0,"31":0.00231,"32":0.00231,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00692,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02538,"47":0,"48":0,"49":0,"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.00231,"70":0.00231,"71":0.00231,"72":0.03922,"73":0.01384,"74":0,"75":0,"76":0,"77":0.02076,"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.01384,"96":0,"97":0,"98":0,"99":0.00231,"100":0.0323,"101":0.09228,"102":0.15226,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00231,"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.00231,"93":0,"94":0,"95":0,"96":0.00231,"97":0.00231,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00231,"108":0.00231,"109":0.02076,"110":0.00231,"111":0,"112":0.00231,"113":0.00231,"114":0.00461,"115":0.00692,"116":0.21224,"117":0.1638},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00231,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00231,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00461,"14.1":0.00692,"15.1":0,"15.2-15.3":0,"15.4":0.00231,"15.5":0.00231,"15.6":0.01846,"16.0":0.00231,"16.1":0.00461,"16.2":0.00461,"16.3":0.00923,"16.4":0.00461,"16.5":0.01154,"16.6":0.06229,"17.0":0.00461,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01861,"8.1-8.4":0,"9.0-9.2":0.00155,"9.3":0.03102,"10.0-10.2":0.00155,"10.3":0.06979,"11.0-11.2":0.0062,"11.3-11.4":0.00775,"12.0-12.1":0.01241,"12.2-12.5":1.04999,"13.0-13.1":0.00931,"13.2":0.0031,"13.3":0.08065,"13.4-13.7":0.06824,"14.0-14.4":0.14734,"14.5-14.8":0.35827,"15.0-15.1":0.05273,"15.2-15.3":0.06824,"15.4":0.06979,"15.5":0.11942,"15.6-15.7":2.75603,"16.0":0.23574,"16.1":0.52112,"16.2":0.23264,"16.3":0.54593,"16.4":0.13959,"16.5":0.47769,"16.6":7.37475,"17.0":0.83751,"17.1":0},P:{"4":0.458,"20":0.11196,"21":0.29516,"22":2.44268,"5.0-5.4":0.03053,"6.2-6.4":0.01018,"7.2-7.4":0.14249,"8.2":0,"9.2":0.02036,"10.1":0,"11.1-11.2":0.02036,"12.0":0.01018,"13.0":0.06107,"14.0":0.03053,"15.0":0.01018,"16.0":0.04071,"17.0":0.12213,"18.0":0.03053,"19.0":0.08142},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00261,"4.2-4.3":0.00958,"4.4":0,"4.4.3-4.4.4":0.03703},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03691,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.98823},R:{_:"0"},M:{"0":0.1077},Q:{"13.1":0},O:{"0":0.1154},H:{"0":0.76474}};
      +module.exports={C:{"47":0.00255,"48":0.02554,"49":0.00255,"52":0.00511,"60":0.00255,"72":0.00255,"78":0.00255,"87":0.00255,"88":0.00255,"91":0.00255,"93":0.00255,"96":0.00255,"99":0.00255,"102":0.00255,"103":0.00255,"105":0.00255,"106":0.00255,"107":0.00511,"108":0.00255,"109":0.00255,"110":0.00255,"111":0.00255,"112":0.00255,"113":0.00255,"114":0.00255,"115":0.17112,"116":0.00255,"117":0.01022,"118":0.27583,"119":0.0613,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 92 94 95 97 98 100 101 104 120 121 122 3.5 3.6"},D:{"22":0.00255,"26":0.02554,"34":0.08428,"38":0.09961,"39":0.00511,"41":0.00255,"43":0.00255,"47":0.03831,"48":0.00255,"49":0.04597,"50":0.00255,"53":0.01788,"55":0.00255,"56":0.00255,"58":0.00255,"60":0.00255,"63":0.00255,"65":0.00255,"66":0.00255,"67":0.00255,"68":0.05108,"69":0.00255,"70":0.00255,"71":0.00255,"72":0.00255,"73":0.01532,"74":0.00255,"75":0.00511,"76":0.00255,"77":0.00255,"78":0.00255,"79":0.3218,"80":0.01277,"81":0.00766,"83":0.06385,"84":0.00766,"85":0.02554,"86":0.01022,"87":0.08173,"88":0.01022,"89":0.01532,"90":0.00511,"91":0.01022,"92":0.00766,"93":0.00255,"94":0.01277,"95":0.01022,"96":0.01788,"97":0.01022,"98":0.00766,"99":0.04342,"100":0.01277,"101":0.00766,"102":0.01277,"103":0.03576,"104":0.01277,"105":0.02043,"106":0.05108,"107":0.04597,"108":0.07151,"109":3.59348,"110":0.0332,"111":0.04597,"112":0.05874,"113":0.03065,"114":0.07151,"115":0.16346,"116":0.34479,"117":5.72351,"118":6.3518,"119":0.00766,"120":0.00255,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 40 42 44 45 46 51 52 54 57 59 61 62 64 121 122"},F:{"25":0.00255,"28":0.01532,"31":0.00511,"32":0.01022,"36":0.00511,"40":0.02299,"46":0.10982,"79":0.00255,"85":0.00511,"86":0.00255,"91":0.00255,"93":0.00255,"94":0.00255,"95":0.07407,"96":0.00255,"99":0.00255,"100":0.00255,"101":0.00766,"102":1.32808,"103":0.32436,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 87 88 89 90 92 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00255,"13":0.00255,"14":0.00255,"15":0.00255,"16":0.00511,"17":0.00255,"18":0.01022,"92":0.00766,"96":0.00255,"97":0.00255,"100":0.00255,"105":0.00255,"106":0.00255,"107":0.01022,"108":0.00511,"109":0.10471,"110":0.00766,"111":0.00511,"112":0.00255,"113":0.00511,"114":0.01277,"115":0.01277,"116":0.02554,"117":0.85559,"118":1.088,"119":0.00255,_:"79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 98 99 101 102 103 104"},E:{"13":0.00255,"14":0.01788,"15":0.00255,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.01022,"12.1":0.00255,"13.1":0.01532,"14.1":0.03065,"15.1":0.00511,"15.2-15.3":0.00255,"15.4":0.00766,"15.5":0.01277,"15.6":0.09961,"16.0":0.00766,"16.1":0.02299,"16.2":0.01532,"16.3":0.04597,"16.4":0.02299,"16.5":0.04086,"16.6":0.22475,"17.0":0.12004,"17.1":0.00511},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00114,"5.0-5.1":0.00114,"6.0-6.1":0.00341,"7.0-7.1":0.00795,"8.1-8.4":0.00114,"9.0-9.2":0.00795,"9.3":0.02727,"10.0-10.2":0.00114,"10.3":0.03977,"11.0-11.2":0.03636,"11.3-11.4":0.0125,"12.0-12.1":0.01023,"12.2-12.5":0.18067,"13.0-13.1":0.00568,"13.2":0.03068,"13.3":0.01136,"13.4-13.7":0.03636,"14.0-14.4":0.09999,"14.5-14.8":0.16135,"15.0-15.1":0.06363,"15.2-15.3":0.07272,"15.4":0.08067,"15.5":0.11476,"15.6-15.7":0.79425,"16.0":0.29315,"16.1":0.56131,"16.2":0.27384,"16.3":0.50791,"16.4":0.10908,"16.5":0.29088,"16.6-16.7":5.44836,"17.0":1.94073,"17.1":0.11703,"17.2":0.00341},P:{"4":0.52485,"20":0.08233,"21":0.22641,"22":2.01708,"23":0.40136,"5.0-5.4":0.03087,"6.2-6.4":0.01029,"7.2-7.4":0.13379,_:"8.2 10.1","9.2":0.02058,"11.1-11.2":0.02058,"12.0":0.01029,"13.0":0.05146,"14.0":0.02058,"15.0":0.01029,"16.0":0.04116,"17.0":0.10291,"18.0":0.03087,"19.0":0.06175},I:{"0":0.03704,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.00259,"9":0.00259,"11":0.17104,_:"6 7 10 5.5"},K:{"0":0.82651,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.10424},Q:{_:"13.1"},O:{"0":0.11169},H:{"0":0},L:{"0":57.6221}};
      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 c6bc4c02caaf10..9eac4ef5ac7052 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.08207,"49":0,"50":0,"51":0,"52":0.00391,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00391,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00391,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00391,"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.00782,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00391,"111":0,"112":0,"113":0,"114":0.00782,"115":0.03908,"116":0.02736,"117":0.49241,"118":0.03517,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00391,"48":0,"49":0.00782,"50":0,"51":0,"52":0,"53":0.00782,"54":0,"55":0,"56":0.00391,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00391,"67":0.00391,"68":0.01954,"69":0.00782,"70":0.00391,"71":0,"72":0,"73":0.00391,"74":0.00391,"75":0.00782,"76":0.01172,"77":0.00391,"78":0.00391,"79":0.03517,"80":0.00391,"81":0.00782,"83":0.00391,"84":0.00391,"85":0,"86":0,"87":0.00782,"88":0,"89":0,"90":0,"91":0.00782,"92":0.00391,"93":0.01954,"94":0,"95":0.00782,"96":0,"97":0.00782,"98":0,"99":0.00391,"100":0.00391,"101":0.00391,"102":0,"103":0.18758,"104":0.00391,"105":0.00391,"106":0.00391,"107":0.00391,"108":0.01172,"109":0.36735,"110":0.02345,"111":0.00782,"112":0.01954,"113":0.03517,"114":0.08207,"115":0.1954,"116":6.58889,"117":1.37952,"118":0.00391,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01563,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00782,"73":0.00391,"74":0,"75":0,"76":0,"77":0.03126,"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.00391,"96":0,"97":0,"98":0,"99":0,"100":0.04299,"101":0.18758,"102":0.16023,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00391,"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.00782,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01954,"110":0,"111":0.00782,"112":0.00391,"113":0.00391,"114":0.01172,"115":0.05471,"116":1.27401,"117":0.78942},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00391,"14":0.01172,"15":0.00782,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00391,"10.1":0,"11.1":0,"12.1":0.00391,"13.1":0.05471,"14.1":0.03126,"15.1":0,"15.2-15.3":0.00391,"15.4":0.01172,"15.5":0.02736,"15.6":0.10552,"16.0":0.01563,"16.1":0.01563,"16.2":0.01954,"16.3":0.05471,"16.4":0.04299,"16.5":0.06253,"16.6":0.55494,"17.0":0.03517,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02934,"6.0-6.1":0,"7.0-7.1":0.03178,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08556,"10.0-10.2":0,"10.3":0.10023,"11.0-11.2":0.00733,"11.3-11.4":0.00244,"12.0-12.1":0,"12.2-12.5":0.36181,"13.0-13.1":0,"13.2":0,"13.3":0.00244,"13.4-13.7":0.01956,"14.0-14.4":0.31536,"14.5-14.8":0.20291,"15.0-15.1":0.06845,"15.2-15.3":0.05134,"15.4":0.04645,"15.5":0.1589,"15.6-15.7":1.69169,"16.0":0.81896,"16.1":0.96075,"16.2":0.41803,"16.3":0.83851,"16.4":0.18335,"16.5":0.80429,"16.6":15.46482,"17.0":1.49368,"17.1":0},P:{"4":0.36801,"20":0.09463,"21":0.28389,"22":4.48969,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.30492,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01051,"12.0":0,"13.0":0.04206,"14.0":0.02103,"15.0":0.01051,"16.0":0.03154,"17.0":0.05257,"18.0":0.02103,"19.0":0.06309},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03672,"4.2-4.3":0.24477,"4.4":0,"4.4.3-4.4.4":0.46506},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00391,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0.00609},N:{"10":0,"11":0},L:{"0":52.31206},R:{_:"0"},M:{"0":0.24977},Q:{"13.1":0},O:{"0":0.06092},H:{"0":0.34605}};
      +module.exports={C:{"13":0.00385,"34":0.00385,"48":0.04625,"50":0.00385,"52":0.00771,"77":0.00385,"78":0.00771,"85":0.00385,"87":0.00385,"88":0.00385,"102":0.00385,"108":0.00771,"110":0.00771,"114":0.01542,"115":0.12718,"116":0.00771,"117":0.09635,"118":0.78622,"119":0.14645,_:"2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 86 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 109 111 112 113 120 121 122 3.5 3.6"},D:{"5":0.00385,"9":0.00385,"10":0.00385,"47":0.00385,"49":0.02312,"50":0.00385,"53":0.01156,"54":0.00385,"55":0.00385,"56":0.00771,"58":0.00771,"63":0.00385,"65":0.00385,"68":0.03854,"69":0.00385,"70":0.00385,"74":0.00385,"75":0.01927,"76":0.03083,"77":0.00385,"79":0.0501,"81":0.00771,"83":0.00385,"84":0.01156,"86":0.00385,"87":0.02312,"88":0.01542,"91":0.01542,"92":0.00385,"93":0.06552,"94":0.01542,"95":0.01927,"96":0.00385,"97":0.00385,"98":0.00385,"99":0.00385,"100":0.01542,"101":0.00385,"102":0.07323,"103":0.528,"104":0.01542,"105":0.00385,"106":0.00385,"107":0.00385,"108":0.02312,"109":0.97506,"110":0.03083,"111":0.00771,"112":0.03083,"113":0.08093,"114":0.07708,"115":0.15031,"116":1.10224,"117":10.96848,"118":10.92994,"119":0.01542,"120":0.00771,_:"4 6 7 8 11 12 13 14 15 16 17 18 19 20 21 22 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 57 59 60 61 62 64 66 67 71 72 73 78 80 85 89 90 121 122"},F:{"28":0.02312,"46":0.00385,"95":0.00385,"100":0.00771,"101":0.00385,"102":0.74382,"103":0.11947,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00771,"18":0.00771,"92":0.01156,"109":0.04239,"110":0.00385,"111":0.01542,"113":0.00385,"114":0.00771,"115":0.02312,"116":0.06937,"117":2.63614,"118":2.28928,"119":0.00771,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 112"},E:{"5":0.00385,"11":0.00771,"12":0.00385,"13":0.00385,"14":0.03083,"15":0.00771,_:"0 4 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.00385,"12.1":0.00771,"13.1":0.17728,"14.1":0.07323,"15.1":0.00385,"15.2-15.3":0.01156,"15.4":0.01927,"15.5":0.07708,"15.6":0.23124,"16.0":0.01927,"16.1":0.0501,"16.2":0.05781,"16.3":0.05396,"16.4":0.05781,"16.5":0.15801,"16.6":0.87871,"17.0":0.39311,"17.1":0.02698},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00109,"5.0-5.1":0.00109,"6.0-6.1":0.00326,"7.0-7.1":0.00761,"8.1-8.4":0.00109,"9.0-9.2":0.00761,"9.3":0.02608,"10.0-10.2":0.00109,"10.3":0.03803,"11.0-11.2":0.03477,"11.3-11.4":0.01195,"12.0-12.1":0.00978,"12.2-12.5":0.17277,"13.0-13.1":0.00543,"13.2":0.02934,"13.3":0.01087,"13.4-13.7":0.03477,"14.0-14.4":0.09562,"14.5-14.8":0.1543,"15.0-15.1":0.06085,"15.2-15.3":0.06954,"15.4":0.07715,"15.5":0.10975,"15.6-15.7":0.75954,"16.0":0.28035,"16.1":0.53679,"16.2":0.26187,"16.3":0.48572,"16.4":0.10431,"16.5":0.27817,"16.6-16.7":5.21031,"17.0":1.85593,"17.1":0.11192,"17.2":0.00326},P:{"4":0.37761,"20":0.07552,"21":0.2913,"22":4.14296,"23":1.0789,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 15.0","7.2-7.4":0.17262,"9.2":0.01079,"11.1-11.2":0.02158,"13.0":0.02158,"14.0":0.01079,"16.0":0.02158,"17.0":0.04316,"18.0":0.02158,"19.0":0.15105},I:{"0":0.07338,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"10":0.00385,"11":0.01927,_:"6 7 8 9 5.5"},K:{"0":0.39334,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.25199},Q:{_:"13.1"},O:{"0":0.03688},H:{"0":0},L:{"0":46.09449}};
      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 744b149fcbab85..ea803d4a554aaa 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TV.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TV.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0.00887,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.01774,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00887,"109":0.03438,"110":0,"111":0,"112":0,"113":0,"114":0.02551,"115":0,"116":0.41588,"117":0.00887,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00887,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00887,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.02551,"115":0.04325,"116":0.27725,"117":0.21626},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.02551,"15.6":0.01774,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6":0,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0.04762,"15.4":0,"15.5":0,"15.6-15.7":0.04762,"16.0":0.04762,"16.1":0,"16.2":0,"16.3":0.28548,"16.4":0,"16.5":0.19036,"16.6":0.38061,"17.0":0.14274,"17.1":0},P:{"4":0,"20":0,"21":0,"22":0.08002,"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,"19.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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":97.5379},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0.08002},H:{"0":0}};
      +module.exports={C:{"114":0.20984,"118":0.06995,"119":0.20984,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 120 121 122 3.5 3.6"},D:{"109":0.27785,"114":0.06995,"115":0.76554,"116":0.62759,"117":4.59714,"118":6.61592,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 119 120 121 122"},F:{"103":0.27785,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.06995,"116":0.20984,"117":1.81088,"118":2.15867,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.6 17.0 17.1 17.2","14.1":0.3478,"15.6":0.1399,"16.5":0.06995},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00013,"5.0-5.1":0.00013,"6.0-6.1":0.0004,"7.0-7.1":0.00094,"8.1-8.4":0.00013,"9.0-9.2":0.00094,"9.3":0.00321,"10.0-10.2":0.00013,"10.3":0.00468,"11.0-11.2":0.00428,"11.3-11.4":0.00147,"12.0-12.1":0.0012,"12.2-12.5":0.02127,"13.0-13.1":0.00067,"13.2":0.00361,"13.3":0.00134,"13.4-13.7":0.00428,"14.0-14.4":0.01177,"14.5-14.8":0.01899,"15.0-15.1":0.00749,"15.2-15.3":0.00856,"15.4":0.0095,"15.5":0.01351,"15.6-15.7":0.0935,"16.0":0.03451,"16.1":0.06608,"16.2":0.03224,"16.3":0.05979,"16.4":0.01284,"16.5":0.03424,"16.6-16.7":0.64139,"17.0":0.22847,"17.1":0.01378,"17.2":0.0004},P:{"22":0.35254,"23":2.66921,_:"4 20 21 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.49154,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{_:"0"},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":76.63452}};
      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 b1a713b6e52904..61c49add627964 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00867,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00433,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00433,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"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.00433,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0.00433,"115":0.06934,"116":0.01734,"117":0.24704,"118":0.01734,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00433,"31":0,"32":0,"33":0,"34":0.00867,"35":0,"36":0,"37":0,"38":0.03034,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.026,"50":0,"51":0,"52":0,"53":0.026,"54":0,"55":0,"56":0.00867,"57":0,"58":0,"59":0,"60":0,"61":0.01734,"62":0.00433,"63":0,"64":0,"65":0.00433,"66":0.00433,"67":0.00433,"68":0.00433,"69":0.00433,"70":0.00433,"71":0.00433,"72":0.00433,"73":0.00433,"74":0.00867,"75":0.00433,"76":0.00433,"77":0.02167,"78":0.00433,"79":0.2167,"80":0.00433,"81":0.013,"83":0.00867,"84":0,"85":0.00433,"86":0.00867,"87":0.05201,"88":0.00433,"89":0.00867,"90":0.00433,"91":0.00433,"92":0.00433,"93":0.00433,"94":0.00433,"95":0.00433,"96":0.00867,"97":0.013,"98":0.00433,"99":0.01734,"100":0.00433,"101":0.00867,"102":0.013,"103":0.03901,"104":0.00433,"105":0.00867,"106":0.013,"107":0.013,"108":0.026,"109":1.59058,"110":0.00867,"111":0.01734,"112":0.026,"113":0.03901,"114":0.09535,"115":0.2037,"116":7.79253,"117":1.7076,"118":0.00867,"119":0.00433,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00867,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00433,"37":0.00433,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.03901,"47":0,"48":0,"49":0,"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.00867,"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.00433,"96":0,"97":0,"98":0,"99":0,"100":0.00433,"101":0.026,"102":0.01734,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00433,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00433,"109":0.04334,"110":0.00433,"111":0.00433,"112":0.00433,"113":0.00867,"114":0.013,"115":0.03467,"116":0.94915,"117":0.59376},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01734,"14":0.05634,"15":0.00867,_:"0","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.013,"13.1":0.04767,"14.1":0.15602,"15.1":0.01734,"15.2-15.3":0.013,"15.4":0.05201,"15.5":0.09101,"15.6":0.29471,"16.0":0.013,"16.1":0.06501,"16.2":0.05634,"16.3":0.16469,"16.4":0.04767,"16.5":0.16036,"16.6":1.2872,"17.0":0.026,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02113,"6.0-6.1":0.01268,"7.0-7.1":0.09298,"8.1-8.4":0.02959,"9.0-9.2":0.00423,"9.3":0.14793,"10.0-10.2":0.00845,"10.3":0.22401,"11.0-11.2":0.01691,"11.3-11.4":0.02536,"12.0-12.1":0.05072,"12.2-12.5":0.63821,"13.0-13.1":0.02959,"13.2":0.01268,"13.3":0.04649,"13.4-13.7":0.09721,"14.0-14.4":0.71007,"14.5-14.8":1.04397,"15.0-15.1":0.5241,"15.2-15.3":0.50296,"15.4":0.65512,"15.5":0.83686,"15.6-15.7":2.92903,"16.0":1.88083,"16.1":2.83604,"16.2":1.60188,"16.3":2.76419,"16.4":0.8749,"16.5":2.40493,"16.6":19.97485,"17.0":0.99325,"17.1":0},P:{"4":0.53018,"20":0.15148,"21":0.2705,"22":2.26136,"5.0-5.4":0.07574,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02164,"10.1":0,"11.1-11.2":0.03246,"12.0":0.01082,"13.0":0.0541,"14.0":0.02164,"15.0":0.02164,"16.0":0.04328,"17.0":0.06492,"18.0":0.0541,"19.0":0.09738},I:{"0":0,"3":0,"4":0.0069,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0138,"4.4":0,"4.4.3-4.4.4":0.0483},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04334,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":34.91011},R:{_:"0"},M:{"0":0.07932},Q:{"13.1":0.00567},O:{"0":0.08499},H:{"0":0.19311}};
      +module.exports={C:{"34":0.02414,"52":0.00805,"78":0.00402,"88":0.00402,"102":0.00402,"104":0.00402,"105":0.00402,"108":0.00402,"110":0.00402,"111":0.00402,"112":0.00402,"113":0.00402,"114":0.00402,"115":0.16092,"116":0.00805,"117":0.02414,"118":0.48678,"119":0.09655,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 103 106 107 109 120 121 122 3.5 3.6"},D:{"11":0.00402,"26":0.00402,"30":0.00805,"33":0.01207,"34":0.02012,"38":0.06839,"45":0.00402,"48":0.00402,"49":0.05632,"53":0.06035,"55":0.00402,"56":0.02012,"58":0.00402,"61":0.03621,"63":0.00402,"64":0.00402,"65":0.00805,"66":0.01207,"67":0.01207,"68":0.00805,"69":0.00402,"70":0.00805,"71":0.00805,"72":0.00402,"73":0.01207,"74":0.02012,"75":0.00402,"76":0.00805,"77":0.00402,"78":0.00805,"79":0.51897,"80":0.00805,"81":0.02414,"83":0.02012,"84":0.00402,"85":0.00402,"86":0.01207,"87":0.13276,"88":0.00402,"89":0.01207,"90":0.00805,"91":0.00805,"92":0.00805,"93":0.00402,"94":0.01207,"95":0.01207,"96":0.01609,"97":0.02816,"98":0.01207,"99":0.01609,"100":0.00805,"101":0.02012,"102":0.02816,"103":0.08448,"104":0.01207,"105":0.02012,"106":0.02414,"107":0.02414,"108":0.06035,"109":3.55231,"110":0.01609,"111":0.03218,"112":0.04023,"113":0.04828,"114":0.12069,"115":0.11264,"116":0.84081,"117":10.68911,"118":11.03107,"119":0.02012,"120":0.01609,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 31 32 35 36 37 39 40 41 42 43 44 46 47 50 51 52 54 57 59 60 62 121 122"},F:{"28":0.02012,"36":0.01207,"40":0.00402,"46":0.09655,"95":0.01207,"102":0.06839,"103":0.04023,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00402,"16":0.00402,"17":0.00402,"18":0.00805,"84":0.00402,"92":0.00402,"105":0.00402,"106":0.00402,"107":0.00402,"108":0.00805,"109":0.09655,"110":0.00402,"111":0.00402,"112":0.00805,"113":0.01207,"114":0.01207,"115":0.01609,"116":0.0523,"117":1.7138,"118":1.63334,"119":0.00402,_:"12 13 15 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104"},E:{"12":0.00402,"13":0.04425,"14":0.12874,"15":0.02012,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.00402,"12.1":0.02816,"13.1":0.09655,"14.1":0.35,"15.1":0.03621,"15.2-15.3":0.03218,"15.4":0.12069,"15.5":0.19713,"15.6":0.6638,"16.0":0.02816,"16.1":0.14885,"16.2":0.12069,"16.3":0.35402,"16.4":0.10058,"16.5":0.30575,"16.6":2.82817,"17.0":0.37816,"17.1":0.02414},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00283,"5.0-5.1":0.00283,"6.0-6.1":0.0085,"7.0-7.1":0.01984,"8.1-8.4":0.00283,"9.0-9.2":0.01984,"9.3":0.06801,"10.0-10.2":0.00283,"10.3":0.09918,"11.0-11.2":0.09068,"11.3-11.4":0.03117,"12.0-12.1":0.0255,"12.2-12.5":0.45056,"13.0-13.1":0.01417,"13.2":0.07651,"13.3":0.02834,"13.4-13.7":0.09068,"14.0-14.4":0.24937,"14.5-14.8":0.40238,"15.0-15.1":0.15869,"15.2-15.3":0.18136,"15.4":0.20119,"15.5":0.2862,"15.6-15.7":1.98075,"16.0":0.73109,"16.1":1.39985,"16.2":0.68292,"16.3":1.26666,"16.4":0.27203,"16.5":0.72543,"16.6-16.7":13.58757,"17.0":4.83995,"17.1":0.29187,"17.2":0.0085},P:{"4":0.55246,"20":0.1353,"21":0.21422,"22":2.17604,"23":0.38334,"5.0-5.4":0.0902,"6.2-6.4":0.01127,_:"7.2-7.4 8.2 10.1","9.2":0.01127,"11.1-11.2":0.03382,"12.0":0.01127,"13.0":0.05637,"14.0":0.02255,"15.0":0.02255,"16.0":0.0451,"17.0":0.05637,"18.0":0.05637,"19.0":0.0902},I:{"0":0.01784,"3":0,"4":0,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"11":0.12069,_:"6 7 8 9 10 5.5"},K:{"0":0.25103,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.09563},Q:{"13.1":0.00598},O:{"0":0.0777},H:{"0":0},L:{"0":27.91248}};
      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 799908d6c93932..4ae601718d1315 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:{"34":0.00191,"43":0.00191,"47":0.00191,"52":0.00574,"56":0.00191,"59":0.00191,"72":0.00383,"78":0.0134,"91":0.00574,"96":0.00191,"99":0.00383,"101":0.00191,"102":0.02297,"104":0.00383,"107":0.00191,"111":0.00383,"112":0.00383,"113":0.00957,"114":0.0134,"115":0.43256,"116":0.07465,"117":0.94934,"118":0.10527,"119":0.00766,_:"2 3 4 5 6 7 8 9 10 11 12 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 57 58 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 97 98 100 103 105 106 108 109 110 120 3.5 3.6"},D:{"11":0.00957,"33":0.00191,"49":0.00191,"55":0.00191,"63":0.00383,"64":0.00191,"68":0.00574,"70":0.00383,"71":0.00191,"72":0.00191,"73":0.00191,"74":0.01148,"75":0.00191,"76":0.00191,"77":0.00766,"79":0.00957,"80":0.00766,"81":0.00383,"83":0.00957,"84":0.0134,"85":0.00191,"87":0.0134,"88":0.00766,"89":0.01148,"90":0.0134,"91":0.00383,"92":0.00383,"93":0.00574,"94":0.356,"95":0.01723,"96":0.00383,"97":0.00766,"98":0.01914,"99":0.3139,"101":0.00383,"102":0.01914,"103":0.04211,"104":0.00574,"105":0.00766,"106":0.00766,"107":0.01148,"108":0.01531,"109":0.98188,"110":0.02105,"111":0.02871,"112":0.06508,"113":0.04594,"114":0.13781,"115":0.16269,"116":6.00613,"117":1.54651,"118":0.00957,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 65 66 67 69 78 86 100 119 120"},F:{"38":0.00191,"42":0.00383,"75":0.00383,"77":0.00574,"79":0.0134,"82":0.00383,"86":0.00191,"95":0.03445,"98":0.00383,"99":0.00383,"100":0.01148,"101":0.20863,"102":0.21054,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 78 80 81 83 84 85 87 88 89 90 91 92 93 94 96 97 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00957,"13":0.00766,"14":0.00191,"15":0.00383,"16":0.00574,"17":0.00383,"18":0.04785,"84":0.00191,"89":0.00383,"90":0.00766,"92":0.02105,"100":0.00191,"103":0.00191,"108":0.00383,"109":0.01148,"110":0.00383,"111":0.00191,"112":0.0134,"113":0.01148,"114":0.02871,"115":0.0689,"116":0.76369,"117":0.52444,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 106 107"},E:{"4":0,"13":0.00574,"14":0.00766,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 17.1","5.1":0.00766,"11.1":0.00383,"12.1":0.00383,"13.1":0.01723,"14.1":0.01723,"15.1":0.00383,"15.2-15.3":0.00383,"15.4":0.00383,"15.5":0.00574,"15.6":0.05551,"16.0":0.00766,"16.1":0.00957,"16.2":0.00766,"16.3":0.0268,"16.4":0.01914,"16.5":0.02488,"16.6":0.10527,"17.0":0.00766},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00103,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00412,"8.1-8.4":0.00257,"9.0-9.2":0.00618,"9.3":0.0103,"10.0-10.2":0.00154,"10.3":0.02317,"11.0-11.2":0.00309,"11.3-11.4":0.00103,"12.0-12.1":0.01133,"12.2-12.5":0.50043,"13.0-13.1":0.00618,"13.2":0.0381,"13.3":0.01802,"13.4-13.7":0.05303,"14.0-14.4":0.13695,"14.5-14.8":0.20285,"15.0-15.1":0.07002,"15.2-15.3":0.07156,"15.4":0.06899,"15.5":0.08238,"15.6-15.7":0.68268,"16.0":0.16887,"16.1":0.18123,"16.2":0.15085,"16.3":0.28625,"16.4":0.16887,"16.5":0.35988,"16.6":1.50438,"17.0":0.29449,"17.1":0},P:{"4":0.18825,"20":0.07321,"21":0.11504,"22":0.80531,"5.0-5.4":0.02092,"6.2-6.4":0.02092,"7.2-7.4":0.09413,"8.2":0,"9.2":0.05229,"10.1":0.01021,"11.1-11.2":0.05229,"12.0":0.03063,"13.0":0.01046,"14.0":0.06126,"15.0":0.01046,"16.0":0.08367,"17.0":0.04183,"18.0":0.03138,"19.0":0.14642},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00412,"4.4":0,"4.4.3-4.4.4":0.08483},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02871,_:"6 7 8 9 10 5.5"},S:{"2.5":1.27759,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.5403},R:{_:"0"},M:{"0":0.08086},Q:{"13.1":0},O:{"0":0.61454},H:{"0":11.39875}};
      +module.exports={C:{"32":0.00166,"34":0.00166,"40":0.00166,"43":0.00166,"44":0.00166,"45":0.00166,"47":0.00166,"49":0.00166,"50":0.00166,"52":0.00331,"56":0.00166,"68":0.00166,"72":0.00331,"78":0.00994,"86":0.00166,"91":0.00663,"95":0.00166,"101":0.00331,"102":0.00497,"103":0.00166,"107":0.00166,"108":0.00331,"109":0.00166,"110":0.00166,"111":0.00166,"112":0.00331,"113":0.00497,"114":0.00663,"115":0.21375,"116":0.00829,"117":0.08119,"118":0.76885,"119":0.14416,"120":0.00663,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 35 36 37 38 39 41 42 46 48 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 87 88 89 90 92 93 94 96 97 98 99 100 104 105 106 121 122 3.5 3.6"},D:{"11":0.00829,"32":0.00166,"38":0.00166,"40":0.00166,"41":0.00497,"44":0.00166,"46":0.00166,"49":0.00331,"50":0.00166,"55":0.00497,"56":0.00331,"58":0.00166,"61":0.00166,"62":0.00166,"63":0.00331,"64":0.00166,"65":0.00166,"66":0.00166,"67":0.00166,"68":0.00663,"69":0.00166,"70":0.00829,"71":0.00331,"72":0.00331,"73":0.00166,"74":0.00829,"75":0.00166,"76":0.00497,"77":0.00331,"78":0.00166,"79":0.0116,"80":0.01657,"81":0.00331,"83":0.00663,"84":0.0116,"85":0.00166,"86":0.00166,"87":0.01657,"88":0.00829,"89":0.00497,"90":0.0116,"91":0.00331,"92":0.00497,"93":0.00829,"94":0.2966,"95":0.00994,"96":0.00497,"97":0.00166,"98":0.00829,"99":0.27506,"100":0.00331,"101":0.00497,"102":0.0116,"103":0.04474,"104":0.00829,"105":0.00663,"106":0.00829,"107":0.00829,"108":0.01823,"109":0.89644,"110":0.00994,"111":0.02486,"112":0.06959,"113":0.02651,"114":0.07788,"115":0.07622,"116":0.30489,"117":3.33554,"118":3.15659,"119":0.00663,"120":0.00331,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 39 42 43 45 47 48 51 52 53 54 57 59 60 121 122"},F:{"37":0.00166,"42":0.00166,"51":0.00166,"67":0.01823,"73":0.00166,"77":0.00166,"78":0.00166,"79":0.00829,"92":0.00166,"94":0.00166,"95":0.03148,"99":0.00166,"100":0.00166,"101":0.00497,"102":0.20215,"103":0.17399,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 60 62 63 64 65 66 68 69 70 71 72 74 75 76 80 81 82 83 84 85 86 87 88 89 90 91 93 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00994,"13":0.00331,"14":0.00331,"15":0.00994,"16":0.00663,"17":0.00497,"18":0.03314,"84":0.00331,"85":0.00331,"89":0.00663,"90":0.00994,"92":0.01823,"99":0.00166,"100":0.00331,"103":0.00166,"105":0.00166,"107":0.00166,"108":0.00166,"109":0.01326,"110":0.00166,"111":0.00166,"112":0.00829,"113":0.00331,"114":0.00994,"115":0.0348,"116":0.02983,"117":0.62303,"118":0.58492,"119":0.00166,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 101 102 104 106"},E:{"11":0.00166,"13":0.00829,"14":0.00663,"15":0.00166,_:"0 4 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.00663,"11.1":0.00331,"12.1":0.00663,"13.1":0.04308,"14.1":0.02651,"15.1":0.00166,"15.2-15.3":0.00497,"15.4":0.00166,"15.5":0.00331,"15.6":0.02983,"16.0":0.00331,"16.1":0.01823,"16.2":0.00994,"16.3":0.00994,"16.4":0.01823,"16.5":0.02154,"16.6":0.09279,"17.0":0.06794,"17.1":0.00497},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00059,"5.0-5.1":0.00059,"6.0-6.1":0.00176,"7.0-7.1":0.0041,"8.1-8.4":0.00059,"9.0-9.2":0.0041,"9.3":0.01405,"10.0-10.2":0.00059,"10.3":0.0205,"11.0-11.2":0.01874,"11.3-11.4":0.00644,"12.0-12.1":0.00527,"12.2-12.5":0.09311,"13.0-13.1":0.00293,"13.2":0.01581,"13.3":0.00586,"13.4-13.7":0.01874,"14.0-14.4":0.05153,"14.5-14.8":0.08316,"15.0-15.1":0.03279,"15.2-15.3":0.03748,"15.4":0.04158,"15.5":0.05915,"15.6-15.7":0.40934,"16.0":0.15109,"16.1":0.28929,"16.2":0.14113,"16.3":0.26177,"16.4":0.05622,"16.5":0.14992,"16.6-16.7":2.80799,"17.0":1.00022,"17.1":0.06032,"17.2":0.00176},P:{"4":0.1828,"20":0.07109,"21":0.13202,"22":0.81244,"23":0.0914,"5.0-5.4":0.03047,"6.2-6.4":0.01016,"7.2-7.4":0.08124,_:"8.2 10.1 12.0","9.2":0.06093,"11.1-11.2":0.06093,"13.0":0.02031,"14.0":0.01016,"15.0":0.01016,"16.0":0.07109,"17.0":0.04062,"18.0":0.03047,"19.0":0.15233},I:{"0":0.13279,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.0004},A:{"11":0.02983,_:"6 7 8 9 10 5.5"},K:{"0":6.97953,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":1.31804,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.28363},Q:{_:"13.1"},O:{"0":0.45047},H:{"0":5.4},L:{"0":64.87546}};
      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 f44ee080f00c38..8e51959abf7831 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00575,"46":0.00575,"47":0,"48":0.60417,"49":0,"50":0.01151,"51":0.00575,"52":0.12659,"53":0.01151,"54":0,"55":0.00575,"56":0.01151,"57":0.00575,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01151,"69":0,"70":0.00575,"71":0,"72":0.00575,"73":0,"74":0.00575,"75":0,"76":0,"77":0,"78":0.01151,"79":0,"80":0.00575,"81":0.00575,"82":0,"83":0.01151,"84":0.00575,"85":0.02877,"86":0,"87":0.01151,"88":0.00575,"89":0,"90":0,"91":0.00575,"92":0,"93":0.05754,"94":0.01151,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01151,"101":0.01151,"102":0.11508,"103":0.01151,"104":0.01151,"105":0.00575,"106":0.01151,"107":0.01726,"108":0.02302,"109":0.00575,"110":0.01726,"111":0.03452,"112":0.01151,"113":0.02302,"114":0.02302,"115":0.47183,"116":0.20139,"117":0.99544,"118":0.08631,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00575,"39":0,"40":0,"41":0.00575,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00575,"48":0.00575,"49":0.05754,"50":0,"51":0.00575,"52":0,"53":0,"54":0,"55":0,"56":0.01151,"57":0.00575,"58":0.00575,"59":0,"60":0.00575,"61":0.01726,"62":0,"63":0.00575,"64":0,"65":0.00575,"66":0,"67":0.00575,"68":0.01726,"69":0.00575,"70":0.00575,"71":0.01151,"72":0.00575,"73":0.01151,"74":0.02302,"75":0.11508,"76":0.02877,"77":0.02302,"78":0.05754,"79":0.03452,"80":0.09782,"81":0.05179,"83":0.02877,"84":0.01726,"85":0.06329,"86":0.0748,"87":0.09206,"88":0.12083,"89":0.02302,"90":0.24742,"91":0.09782,"92":0.06905,"93":0.01726,"94":0.01151,"95":0.01726,"96":0.12659,"97":0.04028,"98":0.03452,"99":0.06905,"100":0.03452,"101":0.03452,"102":0.11508,"103":0.10933,"104":0.04028,"105":0.08631,"106":0.17262,"107":0.19564,"108":0.17837,"109":2.56053,"110":0.08631,"111":0.08056,"112":0.09782,"113":0.06905,"114":0.22441,"115":0.3625,"116":11.03617,"117":3.3028,"118":0.00575,"119":0.00575,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02877,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00575,"47":0,"48":0.00575,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00575,"55":0,"56":0,"57":0,"58":0,"60":0.01151,"62":0.00575,"63":0.01726,"64":0.00575,"65":0.06329,"66":0,"67":0.00575,"68":0,"69":0.00575,"70":0.01726,"71":0.00575,"72":0.02877,"73":0.02302,"74":0,"75":0,"76":0.01151,"77":0.12083,"78":0,"79":0.02302,"80":0.02877,"81":0.02302,"82":0.00575,"83":0.01151,"84":0.01151,"85":0.06329,"86":0.02302,"87":0.01151,"88":0.00575,"89":0.00575,"90":0.00575,"91":0,"92":0.00575,"93":0.00575,"94":0.01726,"95":0.63869,"96":0.00575,"97":0,"98":0.01151,"99":0.02877,"100":0.16687,"101":1.1508,"102":1.27739,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02302},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01151,"18":0.00575,"79":0,"80":0,"81":0,"83":0.02302,"84":0,"85":0.00575,"86":0,"87":0.00575,"88":0,"89":0,"90":0.02302,"91":0,"92":0.00575,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02302,"103":0.00575,"104":0.00575,"105":0,"106":0.00575,"107":0.02302,"108":0.00575,"109":0.04028,"110":0.00575,"111":0.12659,"112":0.00575,"113":0.00575,"114":0.00575,"115":0.02302,"116":0.51786,"117":0.37976},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01726,"15":0.00575,_:"0","3.1":0,"3.2":0,"5.1":0.01151,"6.1":0,"7.1":0,"9.1":0.04028,"10.1":0,"11.1":0,"12.1":0.00575,"13.1":0.01726,"14.1":0.06329,"15.1":0.01151,"15.2-15.3":0.00575,"15.4":0.01151,"15.5":0.02877,"15.6":0.0748,"16.0":0.00575,"16.1":0.02877,"16.2":0.01726,"16.3":0.04028,"16.4":0.02302,"16.5":0.0748,"16.6":0.4258,"17.0":0.05179,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00443,"5.0-5.1":0.00222,"6.0-6.1":0,"7.0-7.1":0.00887,"8.1-8.4":0.00665,"9.0-9.2":0.0133,"9.3":0.04878,"10.0-10.2":0,"10.3":0.03326,"11.0-11.2":0.02439,"11.3-11.4":0.01996,"12.0-12.1":0.01109,"12.2-12.5":0.19957,"13.0-13.1":0.00665,"13.2":0.00887,"13.3":7.19342,"13.4-13.7":0.051,"14.0-14.4":0.11753,"14.5-14.8":0.21509,"15.0-15.1":0.10866,"15.2-15.3":0.0887,"15.4":0.08205,"15.5":0.11087,"15.6-15.7":1.27282,"16.0":0.6475,"16.1":0.81381,"16.2":0.4568,"16.3":0.7362,"16.4":0.16853,"16.5":0.46567,"16.6":7.54822,"17.0":1.53891,"17.1":0.00443},P:{"4":0.05308,"20":0.04246,"21":0.06369,"22":0.92351,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02123,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01062,"14.0":0.01062,"15.0":0,"16.0":0.01062,"17.0":0.01062,"18.0":0.02123,"19.0":0.02123},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00461,"4.2-4.3":0.02306,"4.4":0,"4.4.3-4.4.4":0.08534},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00575,"9":0.00575,"10":0,"11":0.11508,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":39.39489},R:{_:"0"},M:{"0":0.3142},Q:{"13.1":0},O:{"0":0.30571},H:{"0":1.01702}};
      +module.exports={C:{"44":0.01186,"45":0.00593,"48":1.57092,"49":0.00593,"50":0.00593,"52":0.18377,"53":0.00593,"55":0.01186,"56":0.01778,"59":0.00593,"60":0.01778,"61":0.03557,"66":0.00593,"67":0.00593,"68":0.01186,"72":0.00593,"75":0.01778,"78":0.01186,"81":0.00593,"82":0.00593,"83":0.01186,"86":0.00593,"87":0.00593,"88":0.00593,"89":0.00593,"91":0.01186,"94":0.00593,"98":0.00593,"99":0.01778,"101":0.01186,"102":0.02964,"103":0.01186,"104":0.06521,"105":0.03557,"106":0.05335,"107":0.05928,"108":0.02371,"109":0.05928,"110":0.05928,"111":0.05928,"112":0.01186,"113":0.02964,"114":0.01778,"115":0.94255,"116":0.01778,"117":0.07706,"118":1.52942,"119":0.30826,"120":0.00593,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 46 47 51 54 57 58 62 63 64 65 69 70 71 73 74 76 77 79 80 84 85 90 92 93 95 96 97 100 121 122 3.5 3.6"},D:{"5":0.00593,"9":0.00593,"38":0.00593,"41":0.00593,"48":0.01778,"49":0.08299,"51":0.00593,"55":0.00593,"56":0.00593,"57":0.00593,"58":0.00593,"61":0.01778,"63":0.00593,"64":0.00593,"65":0.00593,"66":0.01186,"67":0.06521,"68":0.01186,"69":0.01186,"70":0.01186,"71":0.01778,"72":0.01778,"73":0.01186,"74":0.01186,"75":0.00593,"76":0.01186,"77":0.02371,"78":0.01186,"79":0.05928,"80":0.02371,"81":0.02964,"83":0.0415,"84":0.01778,"85":0.08299,"86":0.1897,"87":0.06521,"88":0.02371,"89":0.01186,"90":0.03557,"91":0.01186,"92":0.01186,"93":0.01778,"94":0.01186,"95":0.01778,"96":0.02964,"97":0.05928,"98":0.02964,"99":0.03557,"100":0.01778,"101":0.03557,"102":0.21341,"103":0.17784,"104":0.05335,"105":0.22526,"106":0.45646,"107":0.52166,"108":0.74693,"109":4.84318,"110":0.4446,"111":0.43274,"112":0.48017,"113":0.08299,"114":0.16006,"115":0.18377,"116":1.07297,"117":13.38542,"118":13.96637,"119":0.02964,"120":0.02964,_:"4 6 7 8 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 50 52 53 54 59 60 62 121 122"},F:{"28":0.00593,"36":0.01778,"46":0.00593,"48":0.00593,"53":0.00593,"54":0.00593,"60":0.00593,"65":0.00593,"69":0.00593,"75":0.00593,"76":0.00593,"77":0.00593,"78":0.00593,"79":0.0415,"80":0.01778,"81":0.00593,"82":0.00593,"83":0.01778,"84":0.02371,"85":0.08892,"86":0.02371,"87":0.01778,"88":0.02371,"89":0.00593,"90":0.00593,"91":0.00593,"92":0.03557,"93":0.02964,"94":0.03557,"95":1.07297,"96":0.02371,"97":0.00593,"98":0.01778,"99":0.01186,"100":0.00593,"101":0.03557,"102":2.96993,"103":1.48793,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 49 50 51 52 55 56 57 58 62 63 64 66 67 68 70 71 72 73 74 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.09485},B:{"12":0.00593,"14":0.00593,"17":0.00593,"18":0.01778,"84":0.00593,"85":0.00593,"86":0.00593,"89":0.00593,"92":0.01186,"99":0.00593,"103":0.01186,"104":0.00593,"105":0.01186,"106":0.0415,"107":0.08892,"108":0.07706,"109":0.09485,"110":0.05335,"111":0.12449,"112":0.00593,"113":0.00593,"114":0.00593,"115":0.01186,"116":0.05335,"117":0.78842,"118":0.80621,"119":0.00593,_:"13 15 16 79 80 81 83 87 88 90 91 93 94 95 96 97 98 100 101 102"},E:{"5":0.00593,"7":0.00593,"11":0.00593,"13":0.00593,"14":0.0415,"15":0.00593,_:"0 4 6 8 9 10 12 3.1 3.2 6.1 7.1 10.1 12.1 17.2","5.1":0.01778,"9.1":0.03557,"11.1":0.02371,"13.1":0.09485,"14.1":0.08299,"15.1":0.01186,"15.2-15.3":0.00593,"15.4":0.01186,"15.5":0.02964,"15.6":0.16598,"16.0":0.02371,"16.1":0.04742,"16.2":0.03557,"16.3":0.10078,"16.4":0.03557,"16.5":0.08892,"16.6":0.41496,"17.0":0.39718,"17.1":0.03557},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00099,"5.0-5.1":0.00099,"6.0-6.1":0.00297,"7.0-7.1":0.00694,"8.1-8.4":0.00099,"9.0-9.2":0.00694,"9.3":0.02378,"10.0-10.2":0.00099,"10.3":0.03468,"11.0-11.2":0.0317,"11.3-11.4":0.0109,"12.0-12.1":0.00892,"12.2-12.5":0.15752,"13.0-13.1":0.00495,"13.2":0.02675,"13.3":0.00991,"13.4-13.7":0.0317,"14.0-14.4":0.08718,"14.5-14.8":0.14068,"15.0-15.1":0.05548,"15.2-15.3":0.06341,"15.4":0.07034,"15.5":0.10006,"15.6-15.7":0.69251,"16.0":0.25561,"16.1":0.48941,"16.2":0.23876,"16.3":0.44285,"16.4":0.09511,"16.5":0.25362,"16.6-16.7":4.75049,"17.0":1.69215,"17.1":0.10204,"17.2":0.00297},P:{"4":0.04174,"20":0.06261,"21":0.05217,"22":0.82433,"23":0.17739,_:"5.0-5.4 6.2-6.4 8.2 9.2 12.0 14.0","7.2-7.4":0.0313,"10.1":0.01043,"11.1-11.2":0.01043,"13.0":0.01043,"15.0":0.01043,"16.0":0.01043,"17.0":0.02087,"18.0":0.0313,"19.0":0.04174},I:{"0":0.10128,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00031},A:{"8":0.03184,"9":0.01273,"10":0.00637,"11":0.29289,_:"6 7 5.5"},K:{"0":1.17124,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.15881},Q:{"13.1":0.00407},O:{"0":0.28911},H:{"0":0.03},L:{"0":27.77468}};
      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 72130806b3510a..e0f463923193c3 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00246,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00246,"57":0,"58":0,"59":0,"60":0.00246,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00246,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00246,"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.00985,"103":0,"104":0.00246,"105":0.00246,"106":0.00246,"107":0,"108":0,"109":0,"110":0.00246,"111":0.00246,"112":0.00246,"113":0.00493,"114":0.00493,"115":0.09113,"116":0.03941,"117":0.2931,"118":0.0468,"119":0.00246,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00246,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00246,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00246,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00246,"65":0,"66":0,"67":0,"68":0.00246,"69":0.00246,"70":0.00246,"71":0.00739,"72":0.00493,"73":0,"74":0.00246,"75":0,"76":0.00246,"77":0,"78":0.00246,"79":0.00246,"80":0.00246,"81":0.00739,"83":0.00246,"84":0,"85":0,"86":0.00246,"87":0.00493,"88":0.00246,"89":0.00246,"90":0,"91":0.00246,"92":0.00246,"93":0.00246,"94":0.00246,"95":0.00739,"96":0.00246,"97":0.00739,"98":0.00246,"99":0.00246,"100":0.00246,"101":0,"102":0.00246,"103":0.01232,"104":0.00246,"105":0.00493,"106":0.00493,"107":0.00246,"108":0.00493,"109":0.27093,"110":0.00246,"111":0.00493,"112":0.00985,"113":0.00985,"114":0.0468,"115":0.04926,"116":1.7044,"117":0.41378,"118":0.00246,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00246,"25":0,"26":0,"27":0,"28":0.00246,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.05419,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00246,"48":0,"49":0,"50":0.00246,"51":0,"52":0,"53":0,"54":0.00246,"55":0,"56":0,"57":0.00985,"58":0.00493,"60":0.02463,"62":0,"63":0.04433,"64":0.0197,"65":0.00739,"66":0.02709,"67":0.0197,"68":0.01478,"69":0.17734,"70":0.11084,"71":0.15763,"72":0.39162,"73":0.07389,"74":0.06158,"75":0.00246,"76":0.00739,"77":0.03448,"78":0.00246,"79":0.00246,"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.00739,"96":0,"97":0,"98":0,"99":0.00246,"100":0.00246,"101":0.0468,"102":0.06158,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00739},B:{"12":0.00246,"13":0,"14":0.00246,"15":0.00246,"16":0,"17":0,"18":0.00985,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00246,"91":0,"92":0.00493,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00246,"110":0,"111":0.00246,"112":0.00246,"113":0.00246,"114":0.00985,"115":0.01724,"116":0.20936,"117":0.11822},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00246,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00493,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00493,"14.1":0.00739,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00246,"15.6":0.00493,"16.0":0,"16.1":0.00246,"16.2":0.00246,"16.3":0.00985,"16.4":0,"16.5":0.00739,"16.6":0.0197,"17.0":0.00246,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00198,"6.0-6.1":0.00148,"7.0-7.1":0.04052,"8.1-8.4":0,"9.0-9.2":0.00198,"9.3":0.04743,"10.0-10.2":0,"10.3":0.03656,"11.0-11.2":0.00296,"11.3-11.4":0.00148,"12.0-12.1":0.00791,"12.2-12.5":0.32165,"13.0-13.1":0.00593,"13.2":0.00346,"13.3":0.00988,"13.4-13.7":0.01927,"14.0-14.4":0.15119,"14.5-14.8":0.20604,"15.0-15.1":0.08597,"15.2-15.3":0.08993,"15.4":0.0583,"15.5":0.08647,"15.6-15.7":0.77968,"16.0":0.18776,"16.1":0.22531,"16.2":0.14872,"16.3":0.26829,"16.4":0.14477,"16.5":0.39182,"16.6":1.28316,"17.0":0.29942,"17.1":0},P:{"4":0.08274,"20":0.0724,"21":0.13446,"22":0.55851,"5.0-5.4":0.01034,"6.2-6.4":0,"7.2-7.4":0.11377,"8.2":0,"9.2":0.12411,"10.1":0,"11.1-11.2":0.03103,"12.0":0.04137,"13.0":0.01034,"14.0":0.02069,"15.0":0.02069,"16.0":0.04137,"17.0":0.04137,"18.0":0.02069,"19.0":0.09308},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00187,"4.2-4.3":0.00467,"4.4":0,"4.4.3-4.4.4":0.07563},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00493,"5.5":0},S:{"2.5":0.41454,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.04054},R:{_:"0"},M:{"0":0.15074},Q:{"13.1":0},O:{"0":0.54266},H:{"0":14.9347}};
      +module.exports={C:{"34":0.0022,"38":0.0022,"42":0.0022,"43":0.00441,"45":0.0022,"47":0.0022,"50":0.00881,"52":0.00661,"55":0.0022,"56":0.0022,"58":0.0022,"59":0.00881,"60":0.00441,"67":0.0022,"68":0.0022,"72":0.00661,"78":0.00661,"90":0.0022,"91":0.00441,"93":0.0022,"101":0.0022,"102":0.00441,"103":0.0022,"107":0.0022,"108":0.0022,"109":0.0022,"110":0.00441,"111":0.00441,"112":0.00661,"113":0.00441,"114":0.00661,"115":0.37671,"116":0.01542,"117":0.08812,"118":1.08167,"119":0.33045,"120":0.01322,_:"2 3 4 5 6 7 8 9 10 11 12 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 44 46 48 49 51 53 54 57 61 62 63 64 65 66 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 92 94 95 96 97 98 99 100 104 105 106 121 122 3.5 3.6"},D:{"11":0.0022,"19":0.00441,"43":0.0022,"49":0.0022,"50":0.00661,"55":0.0022,"58":0.0022,"59":0.0022,"62":0.0022,"63":0.0022,"64":0.01322,"66":0.0022,"67":0.0022,"68":0.00661,"69":0.00441,"70":0.00441,"71":0.00441,"72":0.01542,"73":0.00441,"74":0.00441,"75":0.00441,"76":0.00441,"77":0.0022,"78":0.0022,"79":0.01762,"80":0.00441,"81":0.0022,"83":0.00881,"84":0.0022,"85":0.0022,"86":0.00441,"87":0.01983,"88":0.01322,"89":0.00441,"90":0.0022,"91":0.00441,"92":0.00441,"93":0.07711,"94":0.01322,"95":0.01983,"96":0.00441,"97":0.0022,"98":0.0022,"99":0.00661,"100":0.00441,"101":0.00441,"102":0.01322,"103":0.03965,"104":0.01102,"105":0.00881,"106":0.01102,"107":0.01322,"108":0.01762,"109":1.04643,"110":0.00661,"111":0.02644,"112":0.02423,"113":0.02423,"114":0.06829,"115":0.0705,"116":0.40756,"117":3.83983,"118":4.35533,"119":0.01322,"120":0.0022,_:"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 38 39 40 41 42 44 45 46 47 48 51 52 53 54 56 57 60 61 65 121 122"},F:{"57":0.0022,"74":0.0022,"77":0.0022,"78":0.0022,"79":0.0022,"92":0.0022,"95":0.02864,"99":0.00441,"101":0.00441,"102":0.25775,"103":0.16523,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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 75 76 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00881,"13":0.01102,"14":0.0022,"15":0.0022,"16":0.0022,"17":0.0022,"18":0.05728,"84":0.0022,"86":0.0022,"89":0.00661,"90":0.00441,"92":0.01762,"100":0.00661,"105":0.0022,"108":0.0022,"109":0.03084,"110":0.0022,"111":0.00441,"112":0.00441,"113":0.0022,"114":0.03305,"115":0.01762,"116":0.02864,"117":0.69395,"118":0.65209,"119":0.00881,_:"79 80 81 83 85 87 88 91 93 94 95 96 97 98 99 101 102 103 104 106 107"},E:{"12":0.0022,"13":0.0022,"14":0.00661,_:"0 4 5 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.01322,"11.1":0.0022,"12.1":0.0022,"13.1":0.01102,"14.1":0.02203,"15.1":0.00441,"15.2-15.3":0.00441,"15.4":0.0022,"15.5":0.00661,"15.6":0.02423,"16.0":0.0022,"16.1":0.00441,"16.2":0.00441,"16.3":0.01322,"16.4":0.01542,"16.5":0.02203,"16.6":0.03965,"17.0":0.04406,"17.1":0.00441},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00035,"5.0-5.1":0.00035,"6.0-6.1":0.00106,"7.0-7.1":0.00248,"8.1-8.4":0.00035,"9.0-9.2":0.00248,"9.3":0.0085,"10.0-10.2":0.00035,"10.3":0.01239,"11.0-11.2":0.01133,"11.3-11.4":0.00389,"12.0-12.1":0.00319,"12.2-12.5":0.05628,"13.0-13.1":0.00177,"13.2":0.00956,"13.3":0.00354,"13.4-13.7":0.01133,"14.0-14.4":0.03115,"14.5-14.8":0.05027,"15.0-15.1":0.01982,"15.2-15.3":0.02265,"15.4":0.02513,"15.5":0.03575,"15.6-15.7":0.24743,"16.0":0.09133,"16.1":0.17487,"16.2":0.08531,"16.3":0.15823,"16.4":0.03398,"16.5":0.09062,"16.6-16.7":1.69735,"17.0":0.6046,"17.1":0.03646,"17.2":0.00106},P:{"4":0.07173,"20":0.07173,"21":0.10247,"22":0.56361,"23":0.07173,"5.0-5.4":0.02049,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.10247,"9.2":0.12297,"11.1-11.2":0.04099,"12.0":0.03074,"13.0":0.01025,"14.0":0.01025,"15.0":0.03074,"16.0":0.03074,"17.0":0.05124,"18.0":0.02049,"19.0":0.08198},I:{"0":0.03879,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"8":0.00242,"10":0.00242,"11":0.01939,_:"6 7 9 5.5"},K:{"0":6.85897,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.45223,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.17153},Q:{_:"13.1"},O:{"0":0.42104},H:{"0":9.85},L:{"0":62.08877}};
      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 20d72213fb7dde..d2df9e50544a13 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0.00689,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02066,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00689,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00689,"45":0,"46":0,"47":0,"48":0.02066,"49":0,"50":0.00689,"51":0,"52":0.02066,"53":0.00689,"54":0.00689,"55":0,"56":0.00689,"57":0.00689,"58":0,"59":0.00689,"60":0,"61":0,"62":0,"63":0.00689,"64":0,"65":0.00689,"66":0,"67":0,"68":0.00689,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00689,"78":0.06198,"79":0,"80":0,"81":0,"82":0,"83":0.00689,"84":0,"85":0,"86":0,"87":0,"88":0.00689,"89":0.00689,"90":0,"91":0.00689,"92":0,"93":0,"94":0.01377,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00689,"102":0.08264,"103":0,"104":0,"105":0.00689,"106":0,"107":0,"108":0.00689,"109":0.00689,"110":0.00689,"111":0.01377,"112":0.14463,"113":0.01377,"114":0.02066,"115":0.18595,"116":0.12397,"117":1.29476,"118":0.08953,"119":0,"120":0,"3.5":0,"3.6":0.00689},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00689,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00689,"48":0.02066,"49":0.02755,"50":0,"51":0.00689,"52":0,"53":0,"54":0,"55":0,"56":0.06887,"57":0,"58":0.01377,"59":0,"60":0,"61":0,"62":0.00689,"63":0.00689,"64":0,"65":0.02755,"66":0.01377,"67":0.00689,"68":0.06198,"69":0.0551,"70":0.04821,"71":0.04132,"72":0.06198,"73":0.02066,"74":0.07576,"75":0.06887,"76":0.24105,"77":0.0551,"78":0.06887,"79":0.28237,"80":0.12397,"81":0.10331,"83":0.2135,"84":0.06887,"85":0.14463,"86":0.14463,"87":0.13085,"88":0.10331,"89":0.07576,"90":0.10331,"91":0.07576,"92":0.02066,"93":0.26171,"94":0.01377,"95":0.01377,"96":0.02066,"97":0.02066,"98":0.02755,"99":0.02755,"100":0.03444,"101":0.04132,"102":0.04132,"103":0.35124,"104":0.04821,"105":0.04821,"106":0.03444,"107":0.3168,"108":0.38567,"109":0.80578,"110":0.37879,"111":0.68181,"112":0.43388,"113":0.18595,"114":1.39117,"115":2.62395,"116":13.26436,"117":3.00273,"118":0.02066,"119":0.02755,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00689,"54":0.00689,"55":0.01377,"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.00689,"73":0.00689,"74":0,"75":0,"76":0.00689,"77":0.02066,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00689,"86":0,"87":0,"88":0,"89":0.01377,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02066,"96":0,"97":0.28925,"98":0.00689,"99":0.04132,"100":0.43388,"101":0.77823,"102":0.57851,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00689,"13":0,"14":0,"15":0.00689,"16":0,"17":0,"18":0.00689,"79":0.00689,"80":0.01377,"81":0.01377,"83":0.02066,"84":0.02066,"85":0.00689,"86":0.01377,"87":0.01377,"88":0.00689,"89":0.01377,"90":0.01377,"91":0,"92":0.00689,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.03444,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00689,"108":0.00689,"109":0.0551,"110":0.00689,"111":0.29614,"112":0.29614,"113":0.01377,"114":0.33746,"115":0.15151,"116":2.5964,"117":1.46693},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00689,"10":0,"11":0,"12":0.00689,"13":0.02755,"14":0.15151,"15":0.02755,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.41322,"10.1":0,"11.1":0.00689,"12.1":0.04132,"13.1":0.22727,"14.1":0.39945,"15.1":0.06887,"15.2-15.3":0.06198,"15.4":0.11019,"15.5":0.17906,"15.6":0.9022,"16.0":0.12397,"16.1":0.27548,"16.2":0.27548,"16.3":0.61294,"16.4":0.35124,"16.5":0.75068,"16.6":3.98069,"17.0":0.12397,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0143,"7.0-7.1":0.00572,"8.1-8.4":0.00286,"9.0-9.2":0.0143,"9.3":0.04004,"10.0-10.2":0,"10.3":0.05148,"11.0-11.2":0.0286,"11.3-11.4":0.02288,"12.0-12.1":0.01716,"12.2-12.5":0.22308,"13.0-13.1":0.00858,"13.2":0.00858,"13.3":0.0286,"13.4-13.7":0.05148,"14.0-14.4":0.14872,"14.5-14.8":0.25168,"15.0-15.1":0.09724,"15.2-15.3":0.1287,"15.4":0.13156,"15.5":0.21164,"15.6-15.7":1.38994,"16.0":0.61489,"16.1":1.49576,"16.2":0.70355,"16.3":1.28984,"16.4":0.19734,"16.5":0.69497,"16.6":19.25892,"17.0":1.15828,"17.1":0.00572},P:{"4":0.0215,"20":0.0215,"21":0.05374,"22":0.8491,"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.01075,"14.0":0,"15.0":0,"16.0":0.0215,"17.0":0.01075,"18.0":0.01075,"19.0":0.0215},I:{"0":0,"3":0.03104,"4":0.03991,"2.1":0.0133,"2.2":0.04435,"2.3":0.0133,"4.1":0.02217,"4.2-4.3":0.13748,"4.4":0,"4.4.3-4.4.4":0.13305},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00814,"9":0.01628,"10":0,"11":0.06511,"5.5":0},S:{"2.5":0.00311,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0.01868},L:{"0":21.4041},R:{_:"0"},M:{"0":0.29574},Q:{"13.1":0.01245},O:{"0":0.05292},H:{"0":0.18862}};
      +module.exports={C:{"3":0.00698,"4":0.00698,"7":0.00698,"11":0.03488,"38":0.00698,"40":0.00698,"43":0.00698,"44":0.01395,"45":0.00698,"47":0.00698,"48":0.04185,"50":0.01395,"51":0.00698,"52":0.03488,"53":0.00698,"54":0.01395,"55":0.00698,"56":0.01395,"57":0.01395,"58":0.00698,"59":0.02093,"60":0.01395,"61":0.01395,"62":0.00698,"63":0.01395,"64":0.00698,"65":0.01395,"66":0.00698,"67":0.00698,"68":0.00698,"70":0.00698,"72":0.00698,"73":0.00698,"74":0.00698,"76":0.00698,"77":0.00698,"78":0.10463,"79":0.00698,"80":0.00698,"81":0.00698,"83":0.01395,"85":0.00698,"87":0.00698,"88":0.00698,"91":0.00698,"94":0.01395,"101":0.00698,"102":0.04883,"105":0.00698,"107":0.00698,"108":0.00698,"109":0.01395,"110":0.01395,"111":0.02093,"112":0.01395,"113":0.01395,"114":0.02093,"115":0.279,"116":0.0279,"117":0.18135,"118":1.69493,"119":0.279,_:"2 5 6 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 46 49 69 71 75 82 84 86 89 90 92 93 95 96 97 98 99 100 103 104 106 120 121 122","3.5":0.00698,"3.6":0.00698},D:{"5":0.00698,"10":0.00698,"31":0.00698,"36":0.00698,"37":0.00698,"39":0.00698,"41":0.00698,"42":0.00698,"43":0.00698,"44":0.00698,"45":0.00698,"46":0.00698,"47":0.01395,"48":0.03488,"49":0.07673,"50":0.00698,"51":0.00698,"52":0.00698,"53":0.00698,"54":0.00698,"55":0.00698,"56":0.0558,"57":0.00698,"58":0.00698,"59":0.00698,"60":0.01395,"61":0.00698,"62":0.00698,"63":0.01395,"64":0.00698,"65":0.03488,"66":0.02093,"67":0.01395,"68":0.09765,"69":0.10463,"70":0.07673,"71":0.06278,"72":0.09765,"73":0.03488,"74":0.10463,"75":0.1116,"76":0.38363,"77":0.0837,"78":0.10463,"79":0.26505,"80":0.26505,"81":0.1674,"83":0.16043,"84":0.1116,"85":0.1674,"86":0.20925,"87":0.1953,"88":0.14648,"89":0.1116,"90":0.15345,"91":0.12555,"92":0.04883,"93":0.43245,"94":0.0279,"95":0.01395,"96":0.0279,"97":0.0279,"98":0.04883,"99":0.03488,"100":0.06278,"101":0.09068,"102":0.06278,"103":0.59985,"104":0.06278,"105":0.04883,"106":0.04883,"107":0.35573,"108":0.43943,"109":1.04625,"110":0.46035,"111":0.77423,"112":0.48825,"113":0.18135,"114":1.3392,"115":0.87885,"116":2.95043,"117":12.6945,"118":11.66918,"119":0.04185,"120":0.03488,_:"4 6 7 8 9 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 38 40 121 122"},F:{"43":0.00698,"47":0.00698,"48":0.00698,"49":0.00698,"52":0.00698,"53":0.01395,"54":0.02093,"55":0.02093,"56":0.00698,"65":0.00698,"66":0.00698,"67":0.00698,"68":0.00698,"74":0.00698,"75":0.00698,"76":0.00698,"85":0.00698,"95":0.0279,"97":0.32783,"98":0.00698,"99":0.02093,"100":0.02093,"101":0.0279,"102":3.11783,"103":0.37665,_:"9 11 12 15 16 17 18 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 50 51 57 58 60 62 63 64 69 70 71 72 73 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00698},B:{"12":0.01395,"13":0.00698,"14":0.00698,"15":0.01395,"16":0.00698,"17":0.00698,"18":0.01395,"79":0.01395,"80":0.0279,"81":0.02093,"83":0.03488,"84":0.0279,"85":0.01395,"86":0.0279,"87":0.14648,"88":0.01395,"89":0.02093,"90":0.01395,"92":0.02093,"95":0.01395,"98":0.00698,"99":0.0558,"100":0.00698,"106":0.00698,"107":0.00698,"108":0.00698,"109":0.09068,"110":0.01395,"111":0.3348,"112":0.3348,"113":0.01395,"114":0.04185,"115":0.06278,"116":0.16043,"117":4.23383,"118":2.78303,"119":0.00698,_:"91 93 94 96 97 101 102 103 104 105"},E:{"5":0.00698,"9":0.00698,"10":0.00698,"11":0.00698,"12":0.01395,"13":0.0558,"14":0.24413,"15":0.04185,_:"0 4 6 7 8 3.1 3.2 6.1 7.1 17.2","5.1":0.00698,"9.1":0.57195,"10.1":0.00698,"11.1":0.01395,"12.1":0.06278,"13.1":0.32783,"14.1":0.558,"15.1":0.10463,"15.2-15.3":0.07673,"15.4":0.1674,"15.5":0.26505,"15.6":1.29038,"16.0":0.16043,"16.1":0.40455,"16.2":0.37665,"16.3":0.85095,"16.4":0.37665,"16.5":1.05323,"16.6":5.28008,"17.0":1.24853,"17.1":0.07673},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00156,"5.0-5.1":0.00156,"6.0-6.1":0.00467,"7.0-7.1":0.01089,"8.1-8.4":0.00156,"9.0-9.2":0.01089,"9.3":0.03733,"10.0-10.2":0.00156,"10.3":0.05444,"11.0-11.2":0.04977,"11.3-11.4":0.01711,"12.0-12.1":0.014,"12.2-12.5":0.24732,"13.0-13.1":0.00778,"13.2":0.042,"13.3":0.01555,"13.4-13.7":0.04977,"14.0-14.4":0.13688,"14.5-14.8":0.22087,"15.0-15.1":0.08711,"15.2-15.3":0.09955,"15.4":0.11044,"15.5":0.1571,"15.6-15.7":1.08726,"16.0":0.40131,"16.1":0.76839,"16.2":0.37486,"16.3":0.69529,"16.4":0.14932,"16.5":0.3982,"16.6-16.7":7.45841,"17.0":2.65672,"17.1":0.16021,"17.2":0.00467},P:{"4":0.02212,"20":0.02212,"21":0.0553,"22":0.69673,"23":0.17695,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0","16.0":0.02212,"17.0":0.01106,"18.0":0.01106,"19.0":0.01106},I:{"0":0.11737,"3":0,"4":0.00002,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00035},A:{"8":0.00837,"9":0.02511,"11":0.09207,_:"6 7 10 5.5"},K:{"0":0.2057,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00303,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.29645},Q:{"13.1":0.00908},O:{"0":0.05143},H:{"0":0},L:{"0":13.2382}};
      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 398f60dc71b547..8ea28fa91a4576 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UY.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UY.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00499,"51":0,"52":0.01497,"53":0,"54":0,"55":0,"56":0,"57":0.00499,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00499,"66":0.00998,"67":0,"68":0.00499,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00499,"75":0,"76":0,"77":0,"78":0.00499,"79":0,"80":0,"81":0,"82":0,"83":0.00499,"84":0,"85":0,"86":0.00499,"87":0,"88":0.00998,"89":0,"90":0,"91":0.00499,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00499,"101":0,"102":0.02995,"103":0,"104":0.00499,"105":0.01996,"106":0.00499,"107":0.00998,"108":0,"109":0.00499,"110":0.00499,"111":0.00499,"112":0.00499,"113":0.01996,"114":0.01996,"115":0.16969,"116":0.06488,"117":0.67379,"118":0.10481,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.05989,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00499,"48":0,"49":0.03494,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00499,"56":0.00499,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00499,"63":0.00499,"64":0,"65":0.00499,"66":0,"67":0,"68":0.00998,"69":0,"70":0.00499,"71":0.00998,"72":0.00499,"73":0.01996,"74":0.02496,"75":0.01996,"76":0.02496,"77":0.00998,"78":0.00499,"79":0.02496,"80":0.05989,"81":0.00499,"83":0.01497,"84":0.00499,"85":0.00998,"86":0.18467,"87":0.00998,"88":0.00998,"89":0.00998,"90":0.01996,"91":0.02995,"92":0.00499,"93":0.02496,"94":0.00998,"95":0.00499,"96":0.01996,"97":0.00499,"98":0.00998,"99":0.00998,"100":0.00499,"101":0.00998,"102":0.00998,"103":0.05989,"104":0.00499,"105":0.01996,"106":0.03494,"107":0.01497,"108":0.03993,"109":1.40746,"110":0.01497,"111":0.01996,"112":0.02995,"113":0.03993,"114":0.1647,"115":0.33939,"116":11.18483,"117":3.78817,"118":0.00499,"119":0.00499,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00998,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00499,"73":0,"74":0,"75":0,"76":0,"77":0.00998,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00499,"86":0,"87":0,"88":0,"89":0.00998,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02995,"96":0,"97":0,"98":0,"99":0.00998,"100":0.24955,"101":0.52905,"102":0.89339,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00499,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00499,"90":0,"91":0,"92":0.00998,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00499,"104":0,"105":0,"106":0,"107":0,"108":0.00499,"109":0.07487,"110":0,"111":0,"112":0.00499,"113":0.00499,"114":0.01996,"115":0.03993,"116":0.90836,"117":0.87842},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01497,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01497,"10.1":0,"11.1":0,"12.1":0.00499,"13.1":0.02496,"14.1":0.01996,"15.1":0.01996,"15.2-15.3":0,"15.4":0.00998,"15.5":0.01497,"15.6":0.03494,"16.0":0.00499,"16.1":0.01497,"16.2":0.00998,"16.3":0.03494,"16.4":0.02995,"16.5":0.0549,"16.6":0.2246,"17.0":0.01497,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02993,"6.0-6.1":0,"7.0-7.1":0.01822,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03124,"10.0-10.2":0,"10.3":0.02213,"11.0-11.2":0.01692,"11.3-11.4":0.00521,"12.0-12.1":0.0039,"12.2-12.5":0.15488,"13.0-13.1":0.0026,"13.2":0.0026,"13.3":0.12624,"13.4-13.7":0.01822,"14.0-14.4":0.05206,"14.5-14.8":0.14577,"15.0-15.1":0.01822,"15.2-15.3":0.02213,"15.4":0.09891,"15.5":0.13405,"15.6-15.7":1.04379,"16.0":0.40997,"16.1":0.51929,"16.2":0.31886,"16.3":0.58697,"16.4":0.0846,"16.5":0.37352,"16.6":7.7412,"17.0":0.7913,"17.1":0.0026},P:{"4":0.03135,"20":0.03135,"21":0.16721,"22":1.18095,"5.0-5.4":0.01045,"6.2-6.4":0,"7.2-7.4":0.14631,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01045,"12.0":0,"13.0":0.01045,"14.0":0,"15.0":0,"16.0":0.03135,"17.0":0.0209,"18.0":0.01045,"19.0":0.0418},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01851,"4.2-4.3":0.06477,"4.4":0,"4.4.3-4.4.4":0.16656},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00499,"9":0,"10":0,"11":0.02995,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.15025},R:{_:"0"},M:{"0":0.20537},Q:{"13.1":0},O:{"0":0.02004},H:{"0":0.16123}};
      +module.exports={C:{"44":0.00515,"48":0.00515,"52":0.0206,"57":0.0103,"60":0.00515,"63":0.00515,"66":0.02575,"68":0.0103,"74":0.00515,"78":0.01545,"80":0.00515,"83":0.0103,"86":0.00515,"88":0.0206,"91":0.0103,"94":0.01545,"95":0.00515,"98":0.00515,"99":0.00515,"102":0.05664,"105":0.01545,"106":0.00515,"107":0.0103,"110":0.00515,"111":0.0103,"112":0.0206,"113":0.0206,"114":0.02575,"115":0.55609,"116":0.0103,"117":0.07209,"118":1.39538,"119":0.2729,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 50 51 53 54 55 56 58 59 61 62 64 65 67 69 70 71 72 73 75 76 77 79 81 82 84 85 87 89 90 92 93 96 97 100 101 103 104 108 109 120 121 122 3.5 3.6"},D:{"26":0.00515,"38":0.38103,"41":0.00515,"43":0.00515,"49":0.05149,"52":0.00515,"55":0.00515,"56":0.00515,"62":0.00515,"63":0.00515,"65":0.0206,"68":0.01545,"70":0.0103,"71":0.0206,"72":0.00515,"73":0.03089,"74":0.04634,"75":0.01545,"76":0.0206,"77":0.00515,"78":0.00515,"79":0.05149,"80":0.07209,"81":0.0103,"83":0.03089,"84":0.00515,"85":0.0103,"86":0.2832,"87":0.02575,"88":0.0206,"89":0.0103,"90":0.03089,"91":0.04634,"92":0.0103,"93":0.05149,"94":0.01545,"95":0.00515,"96":0.0206,"97":0.01545,"98":0.0103,"99":0.0103,"100":0.00515,"101":0.0206,"102":0.02575,"103":0.09783,"104":0.0103,"105":0.03604,"106":0.04119,"107":0.01545,"108":0.07724,"109":2.53846,"110":0.0206,"111":0.04119,"112":0.04119,"113":0.06179,"114":0.15447,"115":0.21626,"116":1.03495,"117":15.32857,"118":16.05973,"119":0.01545,"120":0.00515,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 47 48 50 51 53 54 57 58 59 60 61 64 66 67 69 121 122"},F:{"28":0.0103,"85":0.00515,"89":0.04119,"95":0.06694,"99":0.01545,"100":0.0103,"101":0.0206,"102":4.01107,"103":0.28834,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00515,"17":0.00515,"18":0.00515,"84":0.00515,"92":0.01545,"108":0.00515,"109":0.04119,"111":0.00515,"112":0.00515,"113":0.00515,"114":0.01545,"115":0.01545,"116":0.05149,"117":1.81245,"118":1.91543,"119":0.00515,_:"12 13 15 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110"},E:{"13":0.00515,"14":0.03089,"15":0.0103,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.0103,"13.1":0.04634,"14.1":0.04119,"15.1":0.03089,"15.2-15.3":0.00515,"15.4":0.0103,"15.5":0.03604,"15.6":0.09783,"16.0":0.00515,"16.1":0.04634,"16.2":0.0206,"16.3":0.04634,"16.4":0.03604,"16.5":0.09268,"16.6":0.35528,"17.0":0.21626,"17.1":0.0103},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00078,"5.0-5.1":0.00078,"6.0-6.1":0.00234,"7.0-7.1":0.00545,"8.1-8.4":0.00078,"9.0-9.2":0.00545,"9.3":0.01868,"10.0-10.2":0.00078,"10.3":0.02724,"11.0-11.2":0.02491,"11.3-11.4":0.00856,"12.0-12.1":0.00701,"12.2-12.5":0.12377,"13.0-13.1":0.00389,"13.2":0.02102,"13.3":0.00778,"13.4-13.7":0.02491,"14.0-14.4":0.0685,"14.5-14.8":0.11054,"15.0-15.1":0.04359,"15.2-15.3":0.04982,"15.4":0.05527,"15.5":0.07862,"15.6-15.7":0.54412,"16.0":0.20083,"16.1":0.38454,"16.2":0.1876,"16.3":0.34796,"16.4":0.07473,"16.5":0.19928,"16.6-16.7":3.73255,"17.0":1.32955,"17.1":0.08018,"17.2":0.00234},P:{"4":0.10188,"20":0.03056,"21":0.12226,"22":0.9373,"23":0.1732,"5.0-5.4":0.01019,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 18.0","7.2-7.4":0.12226,"11.1-11.2":0.01019,"13.0":0.01019,"16.0":0.03056,"17.0":0.03056,"19.0":0.04075},I:{"0":0.06273,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00019},A:{"8":0.00515,"9":0.00515,"11":0.06179,_:"6 7 10 5.5"},K:{"0":0.14005,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.1843},Q:{_:"13.1"},O:{"0":0.01455},H:{"0":0.02},L:{"0":40.25033}};
      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 dc4dfcb34e79bc..4f4d22f4c6f346 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UZ.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UZ.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00688,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00344,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00688,"73":0,"74":0.00688,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.03094,"85":0.00344,"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.00344,"102":0.02063,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00344,"110":0.00344,"111":0,"112":0.00344,"113":0.00344,"114":0,"115":0.04126,"116":0.02063,"117":0.16159,"118":0.01031,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00344,"47":0,"48":0,"49":0.01031,"50":0,"51":0.02063,"52":0,"53":0.00344,"54":0,"55":0,"56":0.00688,"57":0,"58":0,"59":0,"60":0,"61":0.02063,"62":0,"63":0,"64":0,"65":0,"66":0.00344,"67":0.05157,"68":0,"69":0.00688,"70":0,"71":0.02407,"72":0.01375,"73":0.00344,"74":0.02063,"75":0,"76":0.01031,"77":0.05157,"78":0.03438,"79":0.11689,"80":0.07907,"81":0.05845,"83":0.06876,"84":0.01719,"85":0.02407,"86":0.04126,"87":0.07907,"88":0.0275,"89":0.0722,"90":0.18909,"91":0.00344,"92":0.00688,"93":0.00344,"94":0.00344,"95":0.03782,"96":0.01719,"97":0.00688,"98":0.00344,"99":0.00688,"100":0.01375,"101":0.01719,"102":0.01375,"103":0.0275,"104":0.08939,"105":0.12377,"106":0.06532,"107":0.07564,"108":0.0722,"109":0.81824,"110":0.01719,"111":0.03094,"112":0.03782,"113":0.02063,"114":0.11689,"115":0.06876,"116":3.15265,"117":0.8595,"118":0.00344,"119":0.00344,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00688,"54":0.02407,"55":0,"56":0.00344,"57":0,"58":0,"60":0.02407,"62":0.00344,"63":0.0722,"64":0,"65":0.06188,"66":0,"67":0.01719,"68":0.01719,"69":0,"70":0,"71":0,"72":0.01375,"73":0.08595,"74":0.08939,"75":0.00344,"76":0,"77":0.01719,"78":0,"79":0.00688,"80":0,"81":0,"82":0.00344,"83":0,"84":0,"85":0,"86":0,"87":0.00344,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00688,"95":0.03094,"96":0,"97":0,"98":0,"99":0.04126,"100":0.01375,"101":0.04813,"102":0.04469,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.01375,"17":0,"18":0.04813,"79":0,"80":0,"81":0,"83":0,"84":0.00344,"85":0.00688,"86":0,"87":0.03782,"88":0,"89":0.00344,"90":0.08939,"91":0.00688,"92":0.00688,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01375,"103":0,"104":0,"105":0.00688,"106":0,"107":0.00688,"108":0,"109":0.0275,"110":0.01375,"111":0.06532,"112":0.01375,"113":0.01719,"114":0.01031,"115":0.08595,"116":0.31286,"117":0.22003},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00344,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.19597,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00344,"13.1":0.00344,"14.1":0.00688,"15.1":0.00344,"15.2-15.3":0,"15.4":0,"15.5":0.00688,"15.6":0.01375,"16.0":0,"16.1":0.00688,"16.2":0.00344,"16.3":0.02063,"16.4":0.00688,"16.5":0.01031,"16.6":0.05845,"17.0":0.00688,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01662,"8.1-8.4":0,"9.0-9.2":0.00831,"9.3":0.01454,"10.0-10.2":0,"10.3":0.01869,"11.0-11.2":0.01038,"11.3-11.4":0,"12.0-12.1":0.00415,"12.2-12.5":0.21184,"13.0-13.1":0.00208,"13.2":0,"13.3":12.59639,"13.4-13.7":0.01869,"14.0-14.4":0.04154,"14.5-14.8":0.07685,"15.0-15.1":0.05192,"15.2-15.3":0.04777,"15.4":0.04569,"15.5":0.09346,"15.6-15.7":0.71653,"16.0":0.30115,"16.1":0.35307,"16.2":0.21392,"16.3":0.46523,"16.4":0.20146,"16.5":0.38215,"16.6":3.82773,"17.0":0.94291,"17.1":0},P:{"4":0.32281,"20":0.16141,"21":0.3329,"22":1.73511,"5.0-5.4":0.01009,"6.2-6.4":0.05044,"7.2-7.4":0.21184,"8.2":0,"9.2":0.02018,"10.1":0,"11.1-11.2":0.05044,"12.0":0.01009,"13.0":0.07061,"14.0":0.03026,"15.0":0.02018,"16.0":0.06053,"17.0":0.07061,"18.0":0.06053,"19.0":0.15132},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00387,"4.2-4.3":0.0116,"4.4":0,"4.4.3-4.4.4":0.04485},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00352,"9":0,"10":0,"11":0.14079,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.88901},R:{_:"0"},M:{"0":0.07218},Q:{"13.1":0.00656},O:{"0":3.76003},H:{"0":0.3976}};
      +module.exports={C:{"48":0.0246,"50":0.00246,"52":0.0123,"56":0.00246,"67":0.00246,"68":0.00246,"78":0.00246,"91":0.00246,"96":0.00246,"97":0.00246,"99":0.00246,"101":0.00246,"102":0.01476,"104":0.00246,"105":0.0123,"107":0.00738,"110":0.00492,"113":0.00246,"114":0.00246,"115":0.11562,"116":0.00246,"117":0.0123,"118":0.27552,"119":0.05904,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 54 55 57 58 59 60 61 62 63 64 65 66 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 100 103 106 108 109 111 112 120 121 122 3.5 3.6"},D:{"11":0.00246,"22":0.00246,"38":0.00246,"39":0.00246,"41":0.00246,"42":0.00246,"43":0.00246,"44":0.00246,"45":0.00246,"46":0.00246,"47":0.00246,"49":0.0246,"51":0.00246,"53":0.00246,"55":0.00246,"56":0.00738,"61":0.00246,"64":0.00492,"66":0.00492,"68":0.00246,"69":0.00246,"71":0.00246,"72":0.00738,"73":0.00246,"74":0.00246,"75":0.01476,"78":0.00246,"79":0.01476,"80":0.00492,"81":0.00492,"83":0.02214,"84":0.00246,"85":0.00738,"86":0.00738,"87":0.00738,"88":0.00246,"89":0.01968,"90":0.00492,"91":0.00246,"92":0.00246,"93":0.02952,"94":0.00738,"95":0.00492,"96":0.00738,"97":0.00984,"98":0.01968,"99":0.00738,"100":0.01476,"101":0.00738,"102":0.04674,"103":0.02952,"104":0.00738,"105":0.0123,"106":0.15006,"107":0.03936,"108":0.0984,"109":2.25336,"110":0.0492,"111":0.02214,"112":0.06396,"113":0.02706,"114":0.37884,"115":0.0369,"116":0.29028,"117":5.289,"118":6.6297,"119":0.00738,"120":0.00246,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 48 50 52 54 57 58 59 60 62 63 65 67 70 76 77 121 122"},F:{"28":0.00246,"36":0.00492,"46":0.00246,"49":0.00492,"51":0.00492,"53":0.02706,"55":0.00246,"57":0.00246,"60":0.00246,"62":0.00738,"67":0.00246,"68":0.00984,"71":0.00246,"73":0.00246,"77":0.00246,"79":0.04428,"81":0.00246,"82":0.0123,"84":0.00246,"90":0.00246,"93":0.00246,"94":0.00984,"95":0.0492,"96":0.00492,"97":0.00246,"98":0.00246,"99":0.0123,"100":0.01476,"101":0.0246,"102":0.17958,"103":0.0984,_:"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 50 52 54 56 58 63 64 65 66 69 70 72 74 75 76 78 80 83 85 86 87 88 89 91 92 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00246,"14":0.00492,"15":0.00246,"16":0.00738,"17":0.00492,"18":0.0369,"84":0.00984,"89":0.00246,"90":0.00246,"91":0.00246,"92":0.0246,"100":0.00492,"106":0.00246,"107":0.00492,"108":0.00492,"109":0.05166,"110":0.00984,"111":0.00246,"112":0.01722,"113":0.01476,"114":0.00738,"115":0.01722,"116":0.02706,"117":0.67158,"118":0.7749,"119":0.00246,_:"13 79 80 81 83 85 86 87 88 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"9":0.00246,"13":0.00246,"14":0.00984,_:"0 4 5 6 7 8 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.34686,"12.1":0.00246,"13.1":0.00984,"14.1":0.01476,"15.1":0.00492,"15.2-15.3":0.00246,"15.4":0.00492,"15.5":0.00984,"15.6":0.03198,"16.0":0.00246,"16.1":0.01968,"16.2":0.0123,"16.3":0.01968,"16.4":0.01476,"16.5":0.02952,"16.6":0.08856,"17.0":0.13776,"17.1":0.00738},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00067,"5.0-5.1":0.00067,"6.0-6.1":0.002,"7.0-7.1":0.00466,"8.1-8.4":0.00067,"9.0-9.2":0.00466,"9.3":0.01598,"10.0-10.2":0.00067,"10.3":0.0233,"11.0-11.2":0.0213,"11.3-11.4":0.00732,"12.0-12.1":0.00599,"12.2-12.5":0.10585,"13.0-13.1":0.00333,"13.2":0.01797,"13.3":0.00666,"13.4-13.7":0.0213,"14.0-14.4":0.05858,"14.5-14.8":0.09453,"15.0-15.1":0.03728,"15.2-15.3":0.0426,"15.4":0.04726,"15.5":0.06724,"15.6-15.7":0.46532,"16.0":0.17175,"16.1":0.32885,"16.2":0.16043,"16.3":0.29757,"16.4":0.06391,"16.5":0.17042,"16.6-16.7":3.192,"17.0":1.137,"17.1":0.06857,"17.2":0.002},P:{"4":0.28414,"20":0.19281,"21":0.33488,"22":2.34419,"23":0.29429,"5.0-5.4":0.01015,"6.2-6.4":0.06089,"7.2-7.4":0.30444,_:"8.2 10.1","9.2":0.0203,"11.1-11.2":0.06089,"12.0":0.01015,"13.0":0.06089,"14.0":0.05074,"15.0":0.0203,"16.0":0.07104,"17.0":0.10148,"18.0":0.08118,"19.0":0.21311},I:{"0":0.0375,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.01029,"9":0.00257,"10":0.00257,"11":0.09001,_:"6 7 5.5"},K:{"0":0.40711,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.06785},Q:{"13.1":0.00754},O:{"0":2.62357},H:{"0":0},L:{"0":61.75431}};
      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 67f680fdaa1aa2..c6a6a3eadc2ee7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00962,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00962,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"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.00962,"92":0,"93":0.02885,"94":0,"95":0,"96":0.06731,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.09615,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.49998,"116":0.09615,"117":8.49966,"118":0.71151,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.01923,"67":0.04808,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00962,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.06731,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.75959,"94":0,"95":0,"96":0.00962,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00962,"103":0.09615,"104":0,"105":0,"106":0.01923,"107":0.00962,"108":0,"109":1.36533,"110":0.00962,"111":0.00962,"112":0,"113":0.00962,"114":0.73074,"115":0.3846,"116":45.86355,"117":13.42254,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.9615,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00962,"102":0.00962,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.11538,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.43268,"110":0.00962,"111":0,"112":0,"113":0,"114":0,"115":0.02885,"116":7.20164,"117":7.0478},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00962,"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.25961,"12.1":0.00962,"13.1":0.17307,"14.1":0.10577,"15.1":0.00962,"15.2-15.3":0,"15.4":0.05769,"15.5":0.00962,"15.6":0.3173,"16.0":0.01923,"16.1":0.05769,"16.2":0.07692,"16.3":0.25961,"16.4":0.06731,"16.5":0.08654,"16.6":1.95185,"17.0":0.02885,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.07007,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.05009,"14.0-14.4":0.01013,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0.01013,"15.4":0.01013,"15.5":0.01998,"15.6-15.7":0.17026,"16.0":0.08021,"16.1":0.19024,"16.2":0.06022,"16.3":0.1303,"16.4":0.05009,"16.5":0.01998,"16.6":1.81265,"17.0":0.12017,"17.1":0},P:{"4":0,"20":0,"21":0.03014,"22":0.18084,"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,"19.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.02885,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":4.39139},R:{_:"0"},M:{"0":0.07431},Q:{"13.1":0},O:{"0":0},H:{"0":0.03791}};
      +module.exports={C:{"39":0.01801,"96":0.09906,"109":0.00901,"115":0.79244,"117":0.52229,"118":6.50161,"119":1.13463,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 120 121 122 3.5 3.6"},D:{"49":0.06304,"67":0.07204,"93":0.79244,"97":0.05403,"103":0.01801,"105":0.1711,"107":2.42235,"108":2.18822,"109":1.29672,"111":0.01801,"112":0.00901,"113":0.08105,"114":0.36921,"115":0.1711,"116":0.5403,"117":26.60978,"118":23.68315,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 94 95 96 98 99 100 101 102 104 106 110 119 120 121 122"},F:{"93":0.26115,"102":0.00901,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.13508,"103":2.54842,"109":0.00901,"113":0.00901,"116":0.01801,"117":7.3751,"118":8.07749,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 111 112 114 115 119"},E:{"14":0.01801,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.2-15.3 15.4 15.5 16.0 16.2 17.2","11.1":0.23413,"12.1":0.01801,"13.1":0.09005,"14.1":0.04503,"15.1":0.14408,"15.6":0.57632,"16.1":0.07204,"16.3":0.39622,"16.4":0.04503,"16.5":0.06304,"16.6":1.54886,"17.0":0.34219,"17.1":0.03602},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0003,"5.0-5.1":0.0003,"6.0-6.1":0.00089,"7.0-7.1":0.00208,"8.1-8.4":0.0003,"9.0-9.2":0.00208,"9.3":0.00714,"10.0-10.2":0.0003,"10.3":0.01041,"11.0-11.2":0.00951,"11.3-11.4":0.00327,"12.0-12.1":0.00268,"12.2-12.5":0.04727,"13.0-13.1":0.00149,"13.2":0.00803,"13.3":0.00297,"13.4-13.7":0.00951,"14.0-14.4":0.02616,"14.5-14.8":0.04222,"15.0-15.1":0.01665,"15.2-15.3":0.01903,"15.4":0.02111,"15.5":0.03003,"15.6-15.7":0.20782,"16.0":0.0767,"16.1":0.14687,"16.2":0.07165,"16.3":0.1329,"16.4":0.02854,"16.5":0.07611,"16.6-16.7":1.42558,"17.0":0.5078,"17.1":0.03062,"17.2":0.00089},P:{"22":0.24484,"23":0.01113,_:"4 20 21 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0","18.0":0.01113,"19.0":0.03339},I:{"0":0.03168,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.02702,"9":0.00901,"11":0.03602,_:"6 7 10 5.5"},K:{"0":0.04975,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.03682},Q:{_:"13.1"},O:{"0":0.01393},H:{"0":0},L:{"0":6.59656}};
      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 dde783f2f54852..3a5d5cd90eb0d9 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00863,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00431,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00431,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00431,"110":0,"111":0,"112":0.00431,"113":0,"114":0,"115":0.06901,"116":0.13802,"117":0.74184,"118":0.05176,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.01294,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00431,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00431,"72":0,"73":0,"74":0.00431,"75":0.00863,"76":0.01294,"77":0,"78":0,"79":0.03019,"80":0,"81":0.00431,"83":0.09489,"84":0,"85":0,"86":0,"87":0.02157,"88":0.02157,"89":0,"90":0,"91":0.00863,"92":0,"93":0.0345,"94":0,"95":0.00863,"96":0,"97":0,"98":0,"99":0.00431,"100":0.01294,"101":0,"102":0.00431,"103":0.10351,"104":0,"105":0.00863,"106":0.01725,"107":0,"108":0.01294,"109":0.44424,"110":0.00863,"111":0.01294,"112":0.05607,"113":0.01294,"114":0.23722,"115":0.34504,"116":6.25385,"117":1.71226,"118":0.09057,"119":0.00431,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00431,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.01725,"73":0,"74":0,"75":0,"76":0,"77":0.01294,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00431,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.03019,"101":0.04744,"102":0.05176,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00431,"79":0,"80":0,"81":0,"83":0,"84":0.00431,"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.00431,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01294,"110":0,"111":0.00863,"112":0.00431,"113":0,"114":0.02157,"115":0.0647,"116":1.18176,"117":0.97905},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,_:"0","3.1":0,"3.2":0,"5.1":0.00431,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02588,"14.1":0.02588,"15.1":0,"15.2-15.3":0.00863,"15.4":0.00431,"15.5":0.00863,"15.6":0.37523,"16.0":0.01294,"16.1":0.03882,"16.2":0.00863,"16.3":0.02588,"16.4":0.16821,"16.5":0.03882,"16.6":0.52187,"17.0":0.08626,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0334,"6.0-6.1":0,"7.0-7.1":0.00167,"8.1-8.4":0.02338,"9.0-9.2":0,"9.3":0.02171,"10.0-10.2":0,"10.3":0.04341,"11.0-11.2":0.01837,"11.3-11.4":0.01002,"12.0-12.1":0.01002,"12.2-12.5":0.13525,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.01169,"14.0-14.4":0.03173,"14.5-14.8":0.08182,"15.0-15.1":0.05343,"15.2-15.3":0.02672,"15.4":0.00501,"15.5":1.27736,"15.6-15.7":1.27235,"16.0":0.17365,"16.1":0.59276,"16.2":0.21039,"16.3":0.89332,"16.4":0.07848,"16.5":0.51261,"16.6":9.44915,"17.0":1.2423,"17.1":0},P:{"4":0.14134,"20":0.10873,"21":0.34792,"22":3.64231,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.41316,"8.2":0,"9.2":0.02175,"10.1":0.01087,"11.1-11.2":0.08698,"12.0":0,"13.0":0.04349,"14.0":0,"15.0":0,"16.0":0.02175,"17.0":0.13047,"18.0":0.02175,"19.0":0.06524},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.16241,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.64965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00863,"11":0.00431,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.56651},R:{_:"0"},M:{"0":0.1308},Q:{"13.1":0},O:{"0":0.13649},H:{"0":0.09153}};
      +module.exports={C:{"39":0.00762,"78":0.00381,"80":0.00381,"113":0.01143,"115":0.12192,"116":0.02667,"117":0.06477,"118":1.27635,"119":0.17526,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 120 121 122 3.5 3.6"},D:{"29":0.04572,"49":0.01524,"57":0.00381,"62":0.00381,"70":0.00381,"71":0.00381,"74":0.06477,"75":0.01524,"76":0.05715,"79":0.00762,"81":0.02667,"83":0.0762,"85":0.00762,"86":0.00762,"87":0.02667,"88":0.01143,"89":0.01905,"91":0.01143,"93":0.08763,"97":0.01524,"99":0.00381,"100":0.00762,"103":0.14097,"104":0.00762,"105":0.01143,"108":0.06858,"109":0.64389,"111":0.03429,"112":0.0762,"113":0.02286,"114":0.33147,"115":0.05334,"116":1.83261,"117":8.29056,"118":6.79323,"119":0.05715,"120":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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 58 59 60 61 63 64 65 66 67 68 69 72 73 77 78 80 84 90 92 94 95 96 98 101 102 106 107 110 121 122"},F:{"28":0.00381,"46":0.00762,"85":0.03048,"95":0.02286,"102":0.8382,"103":0.08763,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00381,"96":0.00381,"105":0.28575,"109":0.08001,"111":0.05334,"112":0.03429,"114":0.0381,"115":0.00381,"116":0.04191,"117":2.52222,"118":2.59842,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 99 100 101 102 103 104 106 107 108 110 113 119"},E:{"14":0.03048,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.01524,"12.1":0.00381,"13.1":0.06477,"14.1":0.06096,"15.1":0.00381,"15.2-15.3":0.04572,"15.4":0.03429,"15.5":0.00381,"15.6":0.9525,"16.0":0.02667,"16.1":0.02667,"16.2":0.00762,"16.3":0.05715,"16.4":0.33909,"16.5":0.0381,"16.6":1.18872,"17.0":0.44958,"17.1":0.06477},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00097,"5.0-5.1":0.00097,"6.0-6.1":0.00291,"7.0-7.1":0.00678,"8.1-8.4":0.00097,"9.0-9.2":0.00678,"9.3":0.02325,"10.0-10.2":0.00097,"10.3":0.03391,"11.0-11.2":0.031,"11.3-11.4":0.01066,"12.0-12.1":0.00872,"12.2-12.5":0.15403,"13.0-13.1":0.00484,"13.2":0.02616,"13.3":0.00969,"13.4-13.7":0.031,"14.0-14.4":0.08525,"14.5-14.8":0.13756,"15.0-15.1":0.05425,"15.2-15.3":0.062,"15.4":0.06878,"15.5":0.09784,"15.6-15.7":0.67715,"16.0":0.24993,"16.1":0.47856,"16.2":0.23347,"16.3":0.43302,"16.4":0.093,"16.5":0.248,"16.6-16.7":4.64508,"17.0":1.6546,"17.1":0.09978,"17.2":0.00291},P:{"4":0.12148,"20":0.04417,"21":0.26505,"22":2.91554,"23":0.61845,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.20983,"11.1-11.2":0.07731,"13.0":0.04417,"14.0":0.01104,"16.0":0.03313,"17.0":0.02209,"18.0":0.04417,"19.0":0.04417},I:{"0":0.12933,"3":0,"4":0.00003,"2.1":0,"2.2":0.00004,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00039},A:{"10":0.01143,_:"6 7 8 9 11 5.5"},K:{"0":0.30331,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00619,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.3095},Q:{_:"13.1"},O:{"0":0.05571},H:{"0":0},L:{"0":54.00445}};
      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 688414be3dfdda..f1c0b21b6a61f6 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00461,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00461,"50":0,"51":0,"52":0.19379,"53":0,"54":0,"55":0,"56":0.00461,"57":0.00461,"58":0,"59":0,"60":0.00461,"61":0.01846,"62":0.00461,"63":0,"64":0,"65":0.00461,"66":0.00461,"67":0.00461,"68":0.01846,"69":0,"70":0.00461,"71":0,"72":0.00461,"73":0,"74":0,"75":0.00923,"76":0,"77":0,"78":0.01384,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00923,"89":0,"90":0.00461,"91":0.00923,"92":0,"93":0,"94":0,"95":0,"96":0.00461,"97":0,"98":0,"99":0.00461,"100":0.00461,"101":0,"102":0.02307,"103":0.00461,"104":0.00461,"105":0.00461,"106":0.00461,"107":0.00461,"108":0.00461,"109":0.01384,"110":0.00461,"111":0.00461,"112":0.01384,"113":0.01384,"114":0.00923,"115":0.51215,"116":0.05998,"117":0.56291,"118":0.05075,"119":0.00923,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00461,"47":0.00461,"48":0,"49":0.06921,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00923,"57":0.00461,"58":0,"59":0.00461,"60":0,"61":0.00923,"62":0,"63":0.00461,"64":0.00461,"65":0.00461,"66":0.0323,"67":0.00461,"68":0.01384,"69":0.01384,"70":0.00461,"71":0.00923,"72":0.00461,"73":0.00461,"74":0.00923,"75":0.00923,"76":0.01384,"77":0.00461,"78":0.00461,"79":0.02307,"80":0.02307,"81":0.02307,"83":0.02768,"84":0.00923,"85":0.0323,"86":0.01384,"87":0.0323,"88":0.02307,"89":0.00461,"90":0.01384,"91":0.02307,"92":0.01384,"93":0.01846,"94":0.01384,"95":0.00461,"96":0.01846,"97":0.02307,"98":0.02768,"99":0.01384,"100":0.01384,"101":0.01846,"102":0.02307,"103":0.05998,"104":0.01846,"105":0.02768,"106":0.0323,"107":0.04614,"108":0.07382,"109":3.79271,"110":0.01384,"111":0.03691,"112":0.05537,"113":0.09228,"114":0.21686,"115":0.13842,"116":5.60601,"117":1.58722,"118":0.00461,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00461,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00461,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00461,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00461,"70":0.00461,"71":0.00461,"72":0.03691,"73":0.01384,"74":0,"75":0,"76":0,"77":0.02307,"78":0,"79":0.01384,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00461,"86":0,"87":0,"88":0,"89":0.00461,"90":0,"91":0,"92":0,"93":0,"94":0.00461,"95":0.17533,"96":0,"97":0,"98":0.00461,"99":0.00923,"100":0.12919,"101":0.32298,"102":0.37835,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.0646,"18":0.00461,"79":0,"80":0,"81":0.00461,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01384,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00923,"108":0.00461,"109":0.0646,"110":0,"111":0.00461,"112":0.00461,"113":0.00461,"114":0.01384,"115":0.02768,"116":0.61366,"117":0.48908},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00461,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00461,"6.1":0,"7.1":0,"9.1":0.03691,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00461,"14.1":0.01384,"15.1":0,"15.2-15.3":0,"15.4":0.00461,"15.5":0.00461,"15.6":0.01846,"16.0":0,"16.1":0.00923,"16.2":0.00461,"16.3":0.00923,"16.4":0.00461,"16.5":0.01846,"16.6":0.05998,"17.0":0.00461,"17.1":0},G:{"8":0.00093,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00326,"6.0-6.1":0.00093,"7.0-7.1":0.01535,"8.1-8.4":0.00465,"9.0-9.2":0.00279,"9.3":0.05069,"10.0-10.2":0.00047,"10.3":0.04278,"11.0-11.2":0.01256,"11.3-11.4":0.00837,"12.0-12.1":0.00558,"12.2-12.5":0.13346,"13.0-13.1":0.02558,"13.2":0.00186,"13.3":0.08277,"13.4-13.7":0.01581,"14.0-14.4":0.03395,"14.5-14.8":0.07161,"15.0-15.1":0.01721,"15.2-15.3":0.03255,"15.4":0.05487,"15.5":0.03581,"15.6-15.7":0.46362,"16.0":0.13393,"16.1":0.19298,"16.2":0.11951,"16.3":0.20461,"16.4":0.07347,"16.5":0.12788,"16.6":2.18885,"17.0":0.41619,"17.1":0},P:{"4":0.12409,"20":0.02068,"21":0.06205,"22":0.5791,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08273,"8.2":0,"9.2":0.01034,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.02068,"14.0":0.01034,"15.0":0,"16.0":0.03102,"17.0":0.04136,"18.0":0.01034,"19.0":0.04136},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02362,"4.2-4.3":0.03247,"4.4":0,"4.4.3-4.4.4":0.49299},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02768,"5.5":0},S:{"2.5":0.01077,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":74.98551},R:{_:"0"},M:{"0":0.13465},Q:{"13.1":0},O:{"0":0.04847},H:{"0":0.46402}};
      +module.exports={C:{"27":0.0042,"34":0.0042,"35":0.021,"40":0.0042,"47":0.0042,"49":0.0084,"52":0.29813,"56":0.0042,"57":0.0042,"59":0.0042,"60":0.0126,"62":0.0084,"63":0.0042,"64":0.0042,"65":0.0084,"66":0.0042,"67":0.0084,"68":0.0168,"71":0.0042,"72":0.0084,"75":0.0126,"78":0.021,"80":0.0042,"88":0.0126,"91":0.0126,"93":0.0042,"96":0.0042,"99":0.0168,"100":0.0084,"102":0.0168,"103":0.0042,"104":0.0084,"105":0.0042,"106":0.0042,"107":0.0042,"108":0.0084,"109":0.0084,"110":0.0084,"111":0.0084,"112":0.0126,"113":0.02939,"114":0.0168,"115":0.93218,"116":0.03359,"117":0.04199,"118":1.04975,"119":0.23934,"120":0.0042,_:"2 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 36 37 38 39 41 42 43 44 45 46 48 50 51 53 54 55 58 61 69 70 73 74 76 77 79 81 82 83 84 85 86 87 89 90 92 94 95 97 98 101 121 122 3.5 3.6"},D:{"11":0.0042,"26":0.0042,"45":0.0042,"46":0.0084,"47":0.0084,"48":0.0042,"49":0.13857,"51":0.0042,"53":0.0084,"55":0.0042,"56":0.021,"57":0.0042,"58":0.0042,"59":0.0042,"61":0.0084,"63":0.0084,"64":0.0084,"65":0.0084,"66":0.04619,"67":0.0042,"68":0.0168,"69":0.0168,"70":0.0084,"71":0.0168,"72":0.0126,"73":0.021,"74":0.0126,"75":0.02519,"76":0.02519,"77":0.0084,"78":0.0042,"79":0.05459,"80":0.021,"81":0.02939,"83":0.04619,"84":0.0084,"85":0.05039,"86":0.05039,"87":0.06299,"88":0.03359,"89":0.0084,"90":0.021,"91":0.02519,"92":0.02939,"93":0.02939,"94":0.0084,"95":0.0126,"96":0.021,"97":0.05459,"98":0.05039,"99":0.021,"100":0.03359,"101":0.04619,"102":0.05039,"103":0.10078,"104":0.03359,"105":0.05039,"106":0.06299,"107":0.08818,"108":0.13857,"109":7.64638,"110":0.04199,"111":0.07558,"112":0.09238,"113":0.10917,"114":0.13437,"115":0.08398,"116":0.63405,"117":7.19709,"118":8.03269,"119":0.0126,"120":0.0042,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 50 52 54 60 62 121 122"},F:{"28":0.0042,"36":0.0042,"46":0.0042,"65":0.0042,"69":0.0042,"72":0.0042,"79":0.0168,"82":0.0042,"85":0.04199,"86":0.0042,"89":0.0042,"93":0.0042,"94":0.0084,"95":0.39051,"97":0.0126,"98":0.0042,"99":0.0042,"100":0.0084,"101":0.0042,"102":1.52844,"103":0.34012,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 70 71 73 74 75 76 77 78 80 81 83 84 87 88 90 91 92 96 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0084,"83":0.0042,"84":0.0042,"85":0.0042,"89":0.0042,"92":0.02519,"96":0.0084,"100":0.0042,"103":0.0042,"106":0.0042,"107":0.0168,"108":0.0084,"109":0.17216,"110":0.0042,"111":0.021,"112":0.021,"113":0.0084,"114":0.0168,"115":0.0168,"116":0.03779,"117":1.16312,"118":1.39407,"119":0.0042,_:"12 13 14 15 16 17 79 80 81 86 87 88 90 91 93 94 95 97 98 99 101 102 104 105"},E:{"14":0.0042,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 15.2-15.3 17.2","5.1":0.0042,"11.1":0.0042,"12.1":0.0042,"13.1":0.02519,"14.1":0.02519,"15.1":0.0084,"15.4":0.0168,"15.5":0.0084,"15.6":0.05879,"16.0":0.0042,"16.1":0.0084,"16.2":0.0042,"16.3":0.021,"16.4":0.0084,"16.5":0.03359,"16.6":0.09658,"17.0":0.07138,"17.1":0.0042},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00029,"5.0-5.1":0.00029,"6.0-6.1":0.00088,"7.0-7.1":0.00206,"8.1-8.4":0.00029,"9.0-9.2":0.00206,"9.3":0.00707,"10.0-10.2":0.00029,"10.3":0.01031,"11.0-11.2":0.00943,"11.3-11.4":0.00324,"12.0-12.1":0.00265,"12.2-12.5":0.04686,"13.0-13.1":0.00147,"13.2":0.00796,"13.3":0.00295,"13.4-13.7":0.00943,"14.0-14.4":0.02593,"14.5-14.8":0.04185,"15.0-15.1":0.0165,"15.2-15.3":0.01886,"15.4":0.02092,"15.5":0.02976,"15.6-15.7":0.20599,"16.0":0.07603,"16.1":0.14558,"16.2":0.07102,"16.3":0.13173,"16.4":0.02829,"16.5":0.07544,"16.6-16.7":1.41304,"17.0":0.50333,"17.1":0.03035,"17.2":0.00088},P:{"4":0.14902,"20":0.02129,"21":0.05322,"22":0.58542,"23":0.0958,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0","6.2-6.4":0.02129,"7.2-7.4":0.07451,"13.0":0.02129,"15.0":0.01064,"16.0":0.03193,"17.0":0.05322,"18.0":0.01064,"19.0":0.03193},I:{"0":0.02886,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.00452,"11":0.05426,_:"6 7 9 10 5.5"},K:{"0":0.41408,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0116,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.11602},Q:{"13.1":0.0058},O:{"0":0.04641},H:{"0":0.05},L:{"0":60.16784}};
      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 200ec70d75f4d2..71a416e3dafd1a 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.01143,"76":0,"77":0,"78":0.01524,"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.00381,"95":0,"96":0,"97":0,"98":0,"99":0.03049,"100":0,"101":0,"102":0.0343,"103":0.00381,"104":0.00762,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0.00381,"112":0,"113":0,"114":0.00381,"115":0.04192,"116":0.09528,"117":0.55641,"118":0.01143,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00381,"63":0.00381,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00381,"73":0,"74":0,"75":0.20198,"76":0.00762,"77":0.00381,"78":0,"79":0.00381,"80":0,"81":0,"83":0,"84":0,"85":0.00762,"86":0,"87":0.01143,"88":0,"89":0,"90":0,"91":0,"92":0.00381,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01524,"99":0,"100":0,"101":0,"102":0.00381,"103":0.08765,"104":0.00762,"105":0.19055,"106":0,"107":0.54878,"108":0.27058,"109":0.22104,"110":0.00762,"111":0.52973,"112":0.20579,"113":0.00762,"114":0.31631,"115":0.35442,"116":4.39408,"117":0.99467,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01524,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0343,"73":0.00762,"74":0,"75":0,"76":0,"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.15625,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00381,"100":0.01143,"101":0.05335,"102":0.06479,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00762,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00381,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.01143,"110":0.29345,"111":0,"112":0.00381,"113":0.00762,"114":0.01524,"115":0.08003,"116":1.13568,"117":0.83842},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00381,"14":0.01906,"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.02287,"14.1":0.04573,"15.1":0.00762,"15.2-15.3":0.02668,"15.4":0.01906,"15.5":0.01143,"15.6":0.11433,"16.0":0,"16.1":0.04954,"16.2":0.02668,"16.3":0.05335,"16.4":0.00762,"16.5":0.16387,"16.6":1.36053,"17.0":0.01143,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0136,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00816,"9.3":0.32378,"10.0-10.2":0,"10.3":0.04353,"11.0-11.2":0.02177,"11.3-11.4":0.0789,"12.0-12.1":0.0136,"12.2-12.5":0.09795,"13.0-13.1":0,"13.2":0.00816,"13.3":0.01905,"13.4-13.7":0.05442,"14.0-14.4":0.06258,"14.5-14.8":0.117,"15.0-15.1":0.02721,"15.2-15.3":0.0517,"15.4":0.06258,"15.5":0.06258,"15.6-15.7":1.07201,"16.0":1.36042,"16.1":1.18357,"16.2":0.58226,"16.3":1.62162,"16.4":0.16325,"16.5":0.43261,"16.6":18.02289,"17.0":1.19717,"17.1":0.00816},P:{"4":0.24477,"20":0.12239,"21":0.65272,"22":3.78375,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.8057,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0102,"12.0":0,"13.0":0.0408,"14.0":0,"15.0":0.0408,"16.0":0,"17.0":0.0306,"18.0":0,"19.0":0.06119},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.21198},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":49.19946},R:{_:"0"},M:{"0":0.43942},Q:{"13.1":0.00619},O:{"0":0.64985},H:{"0":0.22266}};
      +module.exports={C:{"75":0.01152,"104":0.01152,"110":0.00384,"111":0.45312,"114":0.00384,"115":0.14592,"117":0.3072,"118":1.39008,"119":0.0768,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 112 113 116 120 121 122 3.5 3.6"},D:{"38":0.00384,"41":0.00384,"42":0.00384,"49":0.01536,"53":0.00384,"54":0.00384,"64":0.00384,"68":0.00384,"69":0.00384,"75":0.61056,"76":0.01152,"79":0.00384,"87":0.0192,"88":0.00768,"91":0.00384,"92":0.00384,"93":0.00384,"94":0.00384,"98":0.00384,"100":0.03072,"101":0.01536,"103":0.54528,"106":0.00384,"107":0.53376,"108":0.00384,"109":1.10976,"110":0.00384,"112":0.08064,"113":0.00384,"114":0.40704,"115":0.06912,"116":2.60736,"117":9.27744,"118":6.28224,"119":0.00384,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 48 50 51 52 55 56 57 58 59 60 61 62 63 65 66 67 70 71 72 73 74 77 78 80 81 83 84 85 86 89 90 95 96 97 99 102 104 105 111 120 121 122"},F:{"77":0.00384,"98":0.01152,"101":0.01152,"102":0.3456,"103":0.06144,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00384,"107":0.00384,"108":0.00768,"109":0.0192,"110":0.02688,"114":0.04608,"115":0.1344,"116":0.11904,"117":2.97984,"118":1.8816,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 111 112 113 119"},E:{"13":0.02304,"14":0.04608,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.2","5.1":0.00384,"12.1":0.00768,"13.1":0.13056,"14.1":0.0576,"15.1":0.02304,"15.2-15.3":0.00384,"15.4":0.0192,"15.5":0.02304,"15.6":0.2688,"16.0":0.06912,"16.1":0.16512,"16.2":0.06912,"16.3":0.41088,"16.4":0.02688,"16.5":2.02752,"16.6":2.90688,"17.0":0.58368,"17.1":0.01536},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00184,"5.0-5.1":0.00184,"6.0-6.1":0.00553,"7.0-7.1":0.01289,"8.1-8.4":0.00184,"9.0-9.2":0.01289,"9.3":0.04421,"10.0-10.2":0.00184,"10.3":0.06447,"11.0-11.2":0.05895,"11.3-11.4":0.02026,"12.0-12.1":0.01658,"12.2-12.5":0.2929,"13.0-13.1":0.00921,"13.2":0.04974,"13.3":0.01842,"13.4-13.7":0.05895,"14.0-14.4":0.16211,"14.5-14.8":0.26158,"15.0-15.1":0.10316,"15.2-15.3":0.1179,"15.4":0.13079,"15.5":0.18606,"15.6-15.7":1.28766,"16.0":0.47527,"16.1":0.91002,"16.2":0.44396,"16.3":0.82344,"16.4":0.17685,"16.5":0.47159,"16.6-16.7":8.83306,"17.0":3.14637,"17.1":0.18974,"17.2":0.00553},P:{"4":0.14643,"20":0.03138,"21":0.38699,"22":3.30506,"23":0.55433,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 16.0 17.0","7.2-7.4":0.18826,"11.1-11.2":0.04184,"13.0":0.03138,"15.0":0.01046,"18.0":0.0523,"19.0":0.09413},I:{"0":0.00613,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.16635,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.30189},Q:{_:"13.1"},O:{"0":0.56681},H:{"0":0},L:{"0":38.74228}};
      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 d2e6c4f36d01a4..5416d9f11c54c5 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03245,"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.00541,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00541,"103":0,"104":0,"105":0,"106":0.04868,"107":0.00541,"108":0,"109":0,"110":0,"111":0.01082,"112":0,"113":0,"114":0.00541,"115":0.03786,"116":0.43813,"117":2.92086,"118":0.20554,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00541,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01082,"74":0,"75":0,"76":0.02164,"77":0,"78":0,"79":0,"80":0.00541,"81":0,"83":0.01623,"84":0,"85":0,"86":0,"87":0.00541,"88":0.01623,"89":0.00541,"90":0.00541,"91":0,"92":0,"93":0.04868,"94":0.01082,"95":0.01623,"96":0,"97":0.00541,"98":0,"99":0.00541,"100":0,"101":0.01623,"102":0,"103":0.12441,"104":0,"105":0.11359,"106":0,"107":0,"108":0.03786,"109":0.29209,"110":0.01623,"111":0.09736,"112":0.12441,"113":0.02705,"114":0.54631,"115":0.51386,"116":6.35558,"117":1.59566,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00541,"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.03786,"101":0.05409,"102":0.12982,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.01623,"105":0,"106":0,"107":0,"108":0,"109":0.04327,"110":0,"111":0,"112":0,"113":0.01082,"114":0.03786,"115":0.119,"116":3.52126,"117":2.73155},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01082,"14":0.01623,"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.18932,"14.1":0.16768,"15.1":0.01623,"15.2-15.3":0.00541,"15.4":0.01082,"15.5":0.05409,"15.6":0.35699,"16.0":0.07573,"16.1":0.05409,"16.2":0.04327,"16.3":0.51386,"16.4":0.06491,"16.5":3.01281,"16.6":2.59091,"17.0":0.04868,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00802,"6.0-6.1":0,"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.12025,"11.0-11.2":0.01202,"11.3-11.4":0.01603,"12.0-12.1":0,"12.2-12.5":0.10421,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.06012,"14.0-14.4":0.02004,"14.5-14.8":0.19239,"15.0-15.1":0.03207,"15.2-15.3":0.08016,"15.4":0.06413,"15.5":0.3447,"15.6-15.7":0.84573,"16.0":0.9299,"16.1":2.38888,"16.2":0.6373,"16.3":3.87191,"16.4":0.12826,"16.5":0.91787,"16.6":27.27972,"17.0":1.51109,"17.1":0.01603},P:{"4":0.02076,"20":0.01038,"21":0.3425,"22":2.13806,"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.01038,"14.0":0,"15.0":0,"16.0":0.05189,"17.0":0.31137,"18.0":0.01038,"19.0":0.01038},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.70694},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02164,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":26.64841},R:{_:"0"},M:{"0":0.51419},Q:{"13.1":0},O:{"0":0},H:{"0":0.0565}};
      +module.exports={C:{"34":0.0052,"78":0.0208,"102":0.0104,"104":0.0104,"106":0.0156,"111":0.0052,"114":0.0052,"115":0.0832,"116":0.0364,"117":0.1924,"118":3.9416,"119":0.546,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 105 107 108 109 110 112 113 120 121 122 3.5 3.6"},D:{"49":0.0104,"63":0.0052,"65":0.0052,"76":0.0104,"79":0.0364,"80":0.0104,"83":0.0104,"86":0.0156,"87":0.0052,"88":0.0312,"89":0.0676,"91":0.0156,"93":0.1144,"94":0.0104,"98":0.0052,"101":0.0104,"103":0.0884,"104":0.0052,"105":0.1092,"106":0.0052,"107":0.0728,"108":0.1872,"109":0.6864,"110":0.1196,"111":0.2184,"112":0.1664,"113":0.0104,"114":0.5148,"115":0.0936,"116":1.508,"117":9.3652,"118":8.6996,"119":0.0052,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 81 84 85 90 92 95 96 97 99 100 102 120 121 122"},F:{"90":0.0104,"95":0.0052,"97":0.0624,"102":0.2548,"103":0.0624,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 96 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0052,"90":0.0052,"92":0.0052,"97":0.0052,"100":0.0052,"104":0.0416,"106":0.0052,"109":0.1196,"110":0.0052,"111":0.078,"112":0.0728,"113":0.0052,"114":0.052,"115":0.0364,"116":0.0832,"117":5.2,"118":5.252,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 98 99 101 102 103 105 107 108 119"},E:{"14":0.0416,"15":0.0052,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.2","12.1":0.0416,"13.1":0.2912,"14.1":0.6188,"15.1":0.0104,"15.2-15.3":0.0104,"15.4":0.1092,"15.5":0.312,"15.6":1.2376,"16.0":0.1144,"16.1":0.312,"16.2":0.1196,"16.3":0.4316,"16.4":0.1872,"16.5":3.3904,"16.6":3.7232,"17.0":0.8996,"17.1":0.0364},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00247,"5.0-5.1":0.00247,"6.0-6.1":0.00741,"7.0-7.1":0.01728,"8.1-8.4":0.00247,"9.0-9.2":0.01728,"9.3":0.05926,"10.0-10.2":0.00247,"10.3":0.08642,"11.0-11.2":0.07901,"11.3-11.4":0.02716,"12.0-12.1":0.02222,"12.2-12.5":0.39259,"13.0-13.1":0.01235,"13.2":0.06667,"13.3":0.02469,"13.4-13.7":0.07901,"14.0-14.4":0.21728,"14.5-14.8":0.35062,"15.0-15.1":0.13827,"15.2-15.3":0.15802,"15.4":0.17531,"15.5":0.24938,"15.6-15.7":1.72591,"16.0":0.63703,"16.1":1.21975,"16.2":0.59506,"16.3":1.1037,"16.4":0.23704,"16.5":0.63209,"16.6-16.7":11.83943,"17.0":4.21726,"17.1":0.25432,"17.2":0.00741},P:{"4":0.02181,"20":0.02181,"21":0.04363,"22":1.97413,"23":0.70894,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 19.0","9.2":1.22156,"16.0":0.11997,"17.0":0.03272,"18.0":0.02181},I:{"0":0.00955,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"11":0.0364,_:"6 7 8 9 10 5.5"},K:{"0":0.072,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.3744},Q:{_:"13.1"},O:{"0":0.0048},H:{"0":0},L:{"0":19.5328}};
      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 17e947571fa759..f128c0c2e4b7c4 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VN.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VN.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00158,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.00946,"116":0.00315,"117":0.041,"118":0.00315,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00315,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01104,"50":0,"51":0,"52":0.00158,"53":0.00158,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00315,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00158,"75":0.00158,"76":0,"77":0.00158,"78":0,"79":0.01577,"80":0.00158,"81":0.00315,"83":0.00158,"84":0.00315,"85":0.00315,"86":0.00946,"87":0.00473,"88":0.00158,"89":0.00158,"90":0.00315,"91":0.00946,"92":0.00158,"93":0,"94":0,"95":0.00158,"96":0.00158,"97":0.00158,"98":0,"99":0.00158,"100":0.00158,"101":0.00158,"102":0.00315,"103":0.00473,"104":0.00789,"105":0.00315,"106":0.00473,"107":0.00631,"108":0.00789,"109":0.14666,"110":0.00473,"111":0.00631,"112":0.00789,"113":0.00473,"114":0.01262,"115":0.01577,"116":0.88627,"117":0.22867,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00158,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00158,"37":0.00315,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00158,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00158,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00631,"73":0.00158,"74":0,"75":0,"76":0,"77":0.00946,"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.00158,"96":0,"97":0,"98":0,"99":0,"100":0.00315,"101":0.01262,"102":0.01262,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00158,"91":0.00631,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00158,"108":0.00158,"109":0.00158,"110":0,"111":0,"112":0,"113":0,"114":0.00158,"115":0.00315,"116":0.07885,"117":0.05835},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00158,"14":0.00473,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00158,"10.1":0,"11.1":0.00158,"12.1":0,"13.1":0.00315,"14.1":0.01104,"15.1":0.00158,"15.2-15.3":0.00158,"15.4":0.00315,"15.5":0.00473,"15.6":0.0205,"16.0":0.00158,"16.1":0.00473,"16.2":0.00315,"16.3":0.00946,"16.4":0.00315,"16.5":0.00631,"16.6":0.0552,"17.0":0.00315,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00969,"8.1-8.4":0.00646,"9.0-9.2":0.00969,"9.3":0.08723,"10.0-10.2":0.01292,"10.3":0.126,"11.0-11.2":0.02908,"11.3-11.4":0.04846,"12.0-12.1":0.05169,"12.2-12.5":1.04031,"13.0-13.1":0.02585,"13.2":0.01615,"13.3":0.54923,"13.4-13.7":0.294,"14.0-14.4":0.83031,"14.5-14.8":1.61861,"15.0-15.1":0.40708,"15.2-15.3":0.53308,"15.4":0.53308,"15.5":0.77538,"15.6-15.7":5.43092,"16.0":1.02092,"16.1":1.94169,"16.2":1.03708,"16.3":1.94492,"16.4":0.54277,"16.5":1.34077,"16.6":11.02661,"17.0":0.70754,"17.1":0},P:{"4":0.26598,"20":0.08184,"21":0.16368,"22":2.046,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05115,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.03069,"12.0":0.01023,"13.0":0.02046,"14.0":0.03069,"15.0":0.02046,"16.0":0.04092,"17.0":0.05115,"18.0":0.04092,"19.0":0.07161},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03631},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00315,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.7412},R:{_:"0"},M:{"0":0.10108},Q:{"13.1":0.00842},O:{"0":2.51005},H:{"0":0.45454}};
      +module.exports={C:{"52":0.00417,"54":0.00139,"59":0.00417,"67":0.00139,"72":0.00139,"75":0.00139,"78":0.00139,"80":0.00139,"81":0.00139,"88":0.00139,"95":0.00139,"99":0.00139,"101":0.00139,"102":0.00139,"103":0.00139,"104":0.00278,"105":0.00278,"106":0.00139,"107":0.00278,"108":0.00417,"109":0.00278,"110":0.00278,"111":0.00139,"112":0.00139,"113":0.00139,"114":0.00139,"115":0.05425,"116":0.00278,"117":0.00974,"118":0.19613,"119":0.04034,"120":0.00139,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 68 69 70 71 73 74 76 77 79 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 100 121 122 3.5 3.6"},D:{"33":0.00278,"34":0.00278,"38":0.01947,"41":0.00139,"47":0.00278,"48":0.00139,"49":0.00974,"50":0.00139,"52":0.00139,"53":0.00696,"54":0.00139,"56":0.00139,"57":0.00556,"65":0.00139,"66":0.01669,"68":0.00278,"69":0.00278,"70":0.00278,"71":0.00417,"72":0.00139,"73":0.00278,"74":0.00278,"75":0.00278,"76":0.00278,"77":0.00278,"78":0.00278,"79":0.0626,"80":0.00417,"81":0.00696,"83":0.00835,"84":0.00696,"85":0.01669,"86":0.00696,"87":0.01808,"88":0.00278,"89":0.00556,"90":0.00417,"91":0.00556,"92":0.00556,"93":0.00139,"94":0.00278,"95":0.00417,"96":0.00556,"97":0.00417,"98":0.00278,"99":0.00556,"100":0.01252,"101":0.00278,"102":0.00974,"103":0.01947,"104":0.00556,"105":0.01669,"106":0.02643,"107":0.03895,"108":0.04173,"109":0.84434,"110":0.02365,"111":0.03338,"112":0.03756,"113":0.0153,"114":0.05008,"115":0.03478,"116":0.1697,"117":3.16592,"118":3.42882,"119":0.00835,"120":0.00278,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 42 43 44 45 46 51 55 58 59 60 61 62 63 64 67 121 122"},F:{"28":0.00835,"29":0.00139,"36":0.00696,"40":0.00139,"46":0.0153,"85":0.00139,"91":0.00278,"92":0.00139,"93":0.00139,"94":0.00139,"95":0.00556,"97":0.00139,"101":0.00139,"102":0.12936,"103":0.0459,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 96 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00139,"14":0.00139,"16":0.00139,"17":0.00278,"18":0.00417,"84":0.00139,"85":0.00139,"89":0.00139,"92":0.00139,"99":0.00139,"100":0.00139,"103":0.00139,"104":0.00139,"105":0.00139,"106":0.00278,"107":0.00556,"108":0.00696,"109":0.00835,"110":0.00278,"111":0.00278,"112":0.00139,"113":0.00139,"114":0.00556,"115":0.00556,"116":0.00835,"117":0.37001,"118":0.37418,"119":0.00417,_:"13 15 79 80 81 83 86 87 88 90 91 93 94 95 96 97 98 101 102"},E:{"13":0.00556,"14":0.02504,"15":0.00417,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.00696,"11.1":0.00417,"12.1":0.00278,"13.1":0.02087,"14.1":0.06677,"15.1":0.00835,"15.2-15.3":0.00556,"15.4":0.01947,"15.5":0.02365,"15.6":0.13075,"16.0":0.00974,"16.1":0.02643,"16.2":0.02087,"16.3":0.0459,"16.4":0.01669,"16.5":0.0306,"16.6":0.2782,"17.0":0.07511,"17.1":0.00696},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00261,"5.0-5.1":0.00261,"6.0-6.1":0.00784,"7.0-7.1":0.01829,"8.1-8.4":0.00261,"9.0-9.2":0.01829,"9.3":0.06272,"10.0-10.2":0.00261,"10.3":0.09146,"11.0-11.2":0.08362,"11.3-11.4":0.02874,"12.0-12.1":0.02352,"12.2-12.5":0.41549,"13.0-13.1":0.01307,"13.2":0.07055,"13.3":0.02613,"13.4-13.7":0.08362,"14.0-14.4":0.22996,"14.5-14.8":0.37107,"15.0-15.1":0.14634,"15.2-15.3":0.16724,"15.4":0.18553,"15.5":0.26393,"15.6-15.7":1.82658,"16.0":0.67419,"16.1":1.29089,"16.2":0.62977,"16.3":1.16807,"16.4":0.25086,"16.5":0.66896,"16.6-16.7":12.52998,"17.0":4.46323,"17.1":0.26915,"17.2":0.00784},P:{"4":0.31685,"20":0.07155,"21":0.15331,"22":1.76822,"23":0.4395,"5.0-5.4":0.01022,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.06133,"9.2":0.01022,"11.1-11.2":0.04088,"12.0":0.01022,"13.0":0.03066,"14.0":0.03066,"15.0":0.02044,"16.0":0.04088,"17.0":0.0511,"18.0":0.04088,"19.0":0.07155},I:{"0":0.03426,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.00161,"11":0.02899,_:"6 7 9 10 5.5"},K:{"0":0.47216,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.10332},Q:{"13.1":0.00861},O:{"0":2.28165},H:{"0":0.01},L:{"0":53.00498}};
      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 4ecd1d2958fadd..233d2f5502c175 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00303,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00303,"110":0,"111":0,"112":0.02723,"113":0.00303,"114":0,"115":0.22695,"116":0.03934,"117":0.3722,"118":0.04842,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00303,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.0121,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00303,"68":0.00303,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00303,"79":0,"80":0,"81":0.00605,"83":0.00303,"84":0,"85":0,"86":0,"87":0.02118,"88":0.04539,"89":0,"90":0,"91":0.00605,"92":0,"93":0.00303,"94":0.00303,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00303,"101":0,"102":0.00303,"103":0.00605,"104":0,"105":0.00303,"106":0.00303,"107":0,"108":0.00605,"109":0.11499,"110":0.02118,"111":0.01513,"112":0.22998,"113":0.01513,"114":0.12104,"115":0.21182,"116":3.45267,"117":0.72624,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00303,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00303,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00303,"69":0,"70":0,"71":0.00303,"72":0.00605,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.03329,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00908,"96":0,"97":0,"98":0,"99":0,"100":0.00605,"101":0.03631,"102":0.05144,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00605,"14":0,"15":0,"16":0.00303,"17":0.00605,"18":0.00908,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00303,"90":0.00303,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01816,"101":0,"102":0,"103":0.00303,"104":0,"105":0,"106":0,"107":0.00303,"108":0.02421,"109":0.00605,"110":0,"111":0.00303,"112":0.00303,"113":0.05447,"114":0.03026,"115":0.02421,"116":0.4418,"117":0.36009},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01513,"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.00908,"14.1":0.05447,"15.1":0,"15.2-15.3":0,"15.4":0.0121,"15.5":0.04842,"15.6":0.03026,"16.0":0,"16.1":0.00303,"16.2":0.00605,"16.3":0.02421,"16.4":0.00908,"16.5":0.00605,"16.6":0.10894,"17.0":0.02421,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02006,"10.0-10.2":0,"10.3":0.02865,"11.0-11.2":0.00573,"11.3-11.4":0.02579,"12.0-12.1":0.00287,"12.2-12.5":0.23668,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.08367,"14.5-14.8":0.08367,"15.0-15.1":0.05158,"15.2-15.3":0.03782,"15.4":0.15301,"15.5":0.06934,"15.6-15.7":0.54958,"16.0":0.13582,"16.1":0.31232,"16.2":0.20229,"16.3":0.2831,"16.4":0.03782,"16.5":0.32665,"16.6":2.74673,"17.0":0.18224,"17.1":0},P:{"4":0.08146,"20":0.10182,"21":0.05091,"22":1.68004,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.23419,"8.2":0,"9.2":0,"10.1":0.20364,"11.1-11.2":0.05091,"12.0":0,"13.0":0.01018,"14.0":0.08146,"15.0":0.04073,"16.0":0.16291,"17.0":0.02036,"18.0":0.08146,"19.0":0.25455},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.15355},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00908,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.68476},R:{_:"0"},M:{"0":0.26501},Q:{"13.1":0},O:{"0":0.25106},H:{"0":0.2509}};
      +module.exports={C:{"30":0.00238,"34":0.00953,"88":0.01192,"109":0.00715,"112":0.0143,"115":0.76018,"116":0.00238,"117":0.0143,"118":0.79354,"119":0.16443,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 113 114 120 121 122 3.5 3.6"},D:{"43":0.00953,"48":0.00238,"63":0.00715,"69":0.00238,"70":0.00238,"74":0.00238,"75":0.00477,"76":0.01668,"78":0.00477,"79":0.0143,"80":0.00477,"81":0.00238,"87":0.00953,"88":0.30026,"89":0.00238,"91":0.00238,"92":0.00715,"93":0.00238,"99":0.00238,"100":0.00477,"102":0.02383,"103":0.03336,"105":0.00477,"106":0.00238,"107":0.00953,"108":0.01906,"109":0.26928,"110":0.0143,"111":0.03813,"112":0.43847,"113":0.03098,"114":0.0286,"115":0.04766,"116":0.38843,"117":4.22744,"118":4.79698,"119":0.00715,"120":0.0143,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 71 72 73 77 83 84 85 86 90 94 95 96 97 98 101 104 121 122"},F:{"95":0.00238,"102":0.08817,"103":0.03098,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00953,"17":0.0143,"18":0.0143,"89":0.00238,"92":0.00477,"101":0.00238,"104":0.00238,"105":0.0286,"107":0.00238,"108":0.00477,"109":0.02383,"110":0.01906,"111":0.00238,"112":0.0143,"113":0.05481,"114":0.01668,"115":0.02145,"116":0.06911,"117":1.11048,"118":1.1772,"119":0.08817,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 102 103 106"},E:{"14":0.13583,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.2","13.1":0.05958,"14.1":0.09532,"15.1":0.00953,"15.4":0.00715,"15.5":0.00715,"15.6":0.06434,"16.0":0.00238,"16.1":0.02383,"16.2":0.00477,"16.3":0.02621,"16.4":0.02383,"16.5":0.06672,"16.6":0.25498,"17.0":0.11915,"17.1":0.00238},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00029,"5.0-5.1":0.00029,"6.0-6.1":0.00088,"7.0-7.1":0.00204,"8.1-8.4":0.00029,"9.0-9.2":0.00204,"9.3":0.007,"10.0-10.2":0.00029,"10.3":0.01021,"11.0-11.2":0.00934,"11.3-11.4":0.00321,"12.0-12.1":0.00263,"12.2-12.5":0.04639,"13.0-13.1":0.00146,"13.2":0.00788,"13.3":0.00292,"13.4-13.7":0.00934,"14.0-14.4":0.02567,"14.5-14.8":0.04143,"15.0-15.1":0.01634,"15.2-15.3":0.01867,"15.4":0.02071,"15.5":0.02946,"15.6-15.7":0.20392,"16.0":0.07527,"16.1":0.14412,"16.2":0.07031,"16.3":0.1304,"16.4":0.02801,"16.5":0.07468,"16.6-16.7":1.39885,"17.0":0.49828,"17.1":0.03005,"17.2":0.00088},P:{"4":0.02022,"20":0.09097,"21":0.12129,"22":0.94003,"23":0.04043,_:"5.0-5.4 6.2-6.4 8.2 9.2 12.0","7.2-7.4":0.11119,"10.1":0.06065,"11.1-11.2":0.06065,"13.0":0.01011,"14.0":0.09097,"15.0":0.04043,"16.0":0.10108,"17.0":0.01011,"18.0":0.11119,"19.0":0.32345},I:{"0":0.0682,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"11":0.01589,_:"6 7 8 9 10 5.5"},K:{"0":0.0457,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.07617},Q:{"13.1":0.02285},O:{"0":0.52557},H:{"0":0},L:{"0":77.77366}};
      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 977ebe119df320..055df25d160465 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WF.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WF.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.10076,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.56953,"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.07448,"92":0.10076,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.81487,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.86744,"116":0.10076,"117":1.3844,"118":0.12267,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.02629,"100":0,"101":0,"102":0,"103":0.02629,"104":0,"105":0.04819,"106":0,"107":0,"108":0,"109":6.5014,"110":0.02629,"111":0,"112":0,"113":0,"114":0.02629,"115":0.71848,"116":3.4347,"117":0.46877,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.04819,"102":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.02629,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.02629,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.04819,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0.02629,"116":1.97583,"117":0.12267},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.02629,"14.1":0.04819,"15.1":0.04819,"15.2-15.3":0.12267,"15.4":0.07448,"15.5":0,"15.6":0.10076,"16.0":0.07448,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0.22343,"16.6":0.31981,"17.0":0.02629,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.15658,"14.5-14.8":0.07757,"15.0-15.1":0.46831,"15.2-15.3":0.54588,"15.4":0.07757,"15.5":0,"15.6-15.7":0,"16.0":0,"16.1":1.40493,"16.2":0.78004,"16.3":1.95225,"16.4":0,"16.5":2.1864,"16.6":6.24604,"17.0":0.46831,"17.1":0},P:{"4":0,"20":0.06029,"21":0.7335,"22":2.8938,"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,"19.0":0.06029},I:{"0":0,"3":0,"4":0,"2.1":0,"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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":57.26833},R:{_:"0"},M:{"0":0},Q:{"13.1":0},O:{"0":0},H:{"0":2.36195}};
      +module.exports={C:{"78":0.46314,"91":0.11579,"92":0.05789,"101":0.05789,"109":0.05789,"114":0.17368,"115":1.50522,"117":0.05789,"118":11.27861,"119":0.11579,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 93 94 95 96 97 98 99 100 102 103 104 105 106 107 108 110 111 112 113 116 120 121 122 3.5 3.6"},D:{"78":0.05789,"85":0.05789,"103":0.05789,"109":7.23136,"110":0.05789,"112":0.05789,"116":0.11579,"117":4.16303,"118":3.12096,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 111 113 114 115 119 120 121 122"},F:{"102":0.23157,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"107":0.23157,"108":0.05789,"116":4.33671,"117":1.27365,"118":1.91047,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 110 111 112 113 114 115 119"},E:{"14":0.05789,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.4 15.5 16.1 16.3 16.4 17.1 17.2","14.1":0.17368,"15.1":0.34736,"15.2-15.3":0.11579,"15.6":0.23157,"16.0":0.17368,"16.2":0.05789,"16.5":0.69472,"16.6":5.43668,"17.0":1.50522},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00136,"5.0-5.1":0.00136,"6.0-6.1":0.00409,"7.0-7.1":0.00953,"8.1-8.4":0.00136,"9.0-9.2":0.00953,"9.3":0.03269,"10.0-10.2":0.00136,"10.3":0.04767,"11.0-11.2":0.04358,"11.3-11.4":0.01498,"12.0-12.1":0.01226,"12.2-12.5":0.21654,"13.0-13.1":0.00681,"13.2":0.03677,"13.3":0.01362,"13.4-13.7":0.04358,"14.0-14.4":0.11985,"14.5-14.8":0.19339,"15.0-15.1":0.07627,"15.2-15.3":0.08716,"15.4":0.09669,"15.5":0.13755,"15.6-15.7":0.95196,"16.0":0.35137,"16.1":0.67277,"16.2":0.32821,"16.3":0.60876,"16.4":0.13074,"16.5":0.34864,"16.6-16.7":6.53025,"17.0":2.3261,"17.1":0.14027,"17.2":0.00409},P:{"21":0.88876,"22":2.12484,"23":0.06129,_:"4 20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","19.0":0.12259},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.41686},Q:{_:"13.1"},O:{_:"0"},H:{"0":0},L:{"0":32.55617}};
      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 689b523a3f390d..bf74e901f2ea5b 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WS.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WS.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"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.00307,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.00307,"107":0,"108":0,"109":0,"110":0.01227,"111":0,"112":0,"113":0.00307,"114":0,"115":0.03988,"116":0.00614,"117":0.14726,"118":0.02148,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.01227,"69":0.00307,"70":0.00614,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01534,"80":0,"81":0.00614,"83":0,"84":0,"85":0,"86":0,"87":0.00307,"88":0.02148,"89":0,"90":0,"91":0.00307,"92":0.00307,"93":0.12579,"94":0,"95":0.00614,"96":0.00614,"97":0,"98":0,"99":0.00307,"100":0,"101":0.00307,"102":0,"103":0.03068,"104":0,"105":0.00614,"106":0.00307,"107":0.00307,"108":0.0092,"109":0.52156,"110":0.01227,"111":0.00307,"112":0,"113":0.03375,"114":0.19942,"115":0.20556,"116":3.2122,"117":0.65655,"118":0.0092,"119":0.0092,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.02454,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.07056,"70":0.00614,"71":0,"72":0.01534,"73":0.02148,"74":0,"75":0,"76":0,"77":0.00307,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"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.0092,"101":0.01534,"102":0.01534,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00307,"14":0,"15":0.00307,"16":0.0092,"17":0,"18":0.0092,"79":0,"80":0,"81":0,"83":0,"84":0.00307,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0092,"93":0,"94":0.00614,"95":0,"96":0,"97":0,"98":0.00307,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.00307,"109":0.09511,"110":0,"111":0.00307,"112":0.00614,"113":0.01534,"114":0.01841,"115":0.09818,"116":0.65655,"117":0.47247},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00307,"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.00307,"12.1":0.00307,"13.1":0.0092,"14.1":0.00307,"15.1":0.00614,"15.2-15.3":0,"15.4":0.00614,"15.5":0.03682,"15.6":0.77927,"16.0":0,"16.1":0.00614,"16.2":0,"16.3":0.0092,"16.4":0.00307,"16.5":0.03375,"16.6":0.30373,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00344,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.031,"10.0-10.2":0,"10.3":0.11024,"11.0-11.2":0.17397,"11.3-11.4":0.00344,"12.0-12.1":0.01722,"12.2-12.5":0.48574,"13.0-13.1":0.00344,"13.2":0.01206,"13.3":0,"13.4-13.7":0.06029,"14.0-14.4":0.1378,"14.5-14.8":0.30144,"15.0-15.1":0.12402,"15.2-15.3":0.04823,"15.4":0.11541,"15.5":0.37895,"15.6-15.7":4.21323,"16.0":0.37206,"16.1":1.24881,"16.2":0.86642,"16.3":0.64766,"16.4":0.91292,"16.5":1.18163,"16.6":5.52233,"17.0":0.18258,"17.1":0},P:{"4":0.07131,"20":0.20373,"21":2.26144,"22":4.37008,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.16299,"8.2":0.02037,"9.2":0.01019,"10.1":0,"11.1-11.2":0.04075,"12.0":0,"13.0":0.03056,"14.0":0.06112,"15.0":0.02037,"16.0":0.81493,"17.0":0.01019,"18.0":0.09168,"19.0":0.17317},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00988,"4.4":0,"4.4.3-4.4.4":0.11853},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00307,"5.5":0},S:{"2.5":0.01386,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.84102},R:{_:"0"},M:{"0":0.0208},Q:{"13.1":0},O:{"0":0.15944},H:{"0":1.91633}};
      +module.exports={C:{"77":0.00989,"88":0.00989,"100":0.00659,"108":0.00659,"112":0.00659,"115":0.05933,"116":0.00989,"117":0.00989,"118":0.39222,"119":0.06592,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 109 110 111 113 114 120 121 122 3.5 3.6"},D:{"51":0.0033,"52":0.0033,"55":0.0033,"74":0.02307,"76":0.00659,"78":0.0033,"79":0.04944,"80":0.0033,"81":0.0033,"83":0.00659,"87":0.00659,"88":0.01648,"89":0.00659,"90":0.0033,"91":0.02966,"93":0.1681,"94":0.01648,"96":0.0033,"98":0.00659,"99":0.00989,"100":0.0033,"102":0.00659,"103":0.21094,"104":0.01318,"105":0.06922,"106":0.00989,"107":0.00659,"108":0.04944,"109":1.16349,"110":0.07251,"112":0.01978,"113":0.13184,"114":0.12525,"115":0.0791,"116":0.79434,"117":7.38963,"118":7.48851,"120":0.03296,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 77 84 85 86 92 95 97 101 111 119 121 122"},F:{"100":0.0033,"101":0.00989,"102":0.10218,"103":0.05933,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 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 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00659,"18":0.0033,"92":0.03626,"94":0.01318,"102":0.0033,"106":0.00659,"107":0.01318,"109":0.27357,"110":0.02637,"111":0.0033,"112":0.00659,"113":0.04944,"114":0.07581,"115":0.08899,"116":0.44166,"117":1.81939,"118":2.45222,_:"12 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 95 96 97 98 99 100 101 103 104 105 108 119"},E:{"12":0.0033,"14":0.00659,_:"0 4 5 6 7 8 9 10 11 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.4 16.0 17.2","12.1":0.04944,"13.1":0.02637,"14.1":0.04614,"15.1":0.02966,"15.5":0.05603,"15.6":2.26106,"16.1":0.06262,"16.2":0.03296,"16.3":0.05933,"16.4":0.02637,"16.5":0.0791,"16.6":0.78115,"17.0":0.03626,"17.1":0.00989},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00112,"5.0-5.1":0.00112,"6.0-6.1":0.00336,"7.0-7.1":0.00784,"8.1-8.4":0.00112,"9.0-9.2":0.00784,"9.3":0.02687,"10.0-10.2":0.00112,"10.3":0.03918,"11.0-11.2":0.03583,"11.3-11.4":0.01232,"12.0-12.1":0.01008,"12.2-12.5":0.17801,"13.0-13.1":0.0056,"13.2":0.03023,"13.3":0.0112,"13.4-13.7":0.03583,"14.0-14.4":0.09852,"14.5-14.8":0.15898,"15.0-15.1":0.0627,"15.2-15.3":0.07165,"15.4":0.07949,"15.5":0.11308,"15.6-15.7":0.78258,"16.0":0.28885,"16.1":0.55307,"16.2":0.26982,"16.3":0.50045,"16.4":0.10748,"16.5":0.28661,"16.6-16.7":5.36833,"17.0":1.91222,"17.1":0.11532,"17.2":0.00336},P:{"4":0.01049,"20":0.06293,"21":0.62934,"22":6.671,"23":0.43005,_:"5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0","7.2-7.4":0.29369,"9.2":0.04196,"13.0":0.03147,"14.0":0.03147,"15.0":0.08391,"16.0":0.51396,"17.0":0.04196,"18.0":0.25174,"19.0":0.32516},I:{"0":0.07337,"3":0,"4":0.00001,"2.1":0,"2.2":0.00002,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"11":0.03955,_:"6 7 8 9 10 5.5"},K:{"0":1.52181,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.07374,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.04693},Q:{_:"13.1"},O:{"0":0.08045},H:{"0":0},L:{"0":49.74381}};
      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 a6707fd8d7fb14..cd04cf7b46a8ed 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YE.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YE.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00216,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00216,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00216,"103":0.00216,"104":0,"105":0,"106":0.00216,"107":0,"108":0,"109":0,"110":0.00433,"111":0.00216,"112":0,"113":0,"114":0.00216,"115":0.06922,"116":0.00433,"117":0.08003,"118":0.01298,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00216,"58":0.00649,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01298,"68":0.00216,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00216,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00216,"87":0.00649,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00216,"99":0.00216,"100":0.00216,"101":0,"102":0,"103":0.00433,"104":0,"105":0.00216,"106":0,"107":0.01298,"108":0.00216,"109":0.19467,"110":0,"111":0,"112":0.00649,"113":0.00649,"114":0.01298,"115":0.02812,"116":0.87602,"117":0.15357,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00216,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"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.00216,"71":0.00216,"72":0.00216,"73":0,"74":0,"75":0.00649,"76":0,"77":0.01947,"78":0,"79":0.00649,"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.00433,"101":0.00216,"102":0.00433,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.1168},B:{"12":0.00216,"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.00433,"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.00433,"106":0,"107":0,"108":0,"109":0,"110":0,"111":0,"112":0.00216,"113":0,"114":0.00865,"115":0.03028,"116":0.20332,"117":0.16006},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.01947,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00433,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00433,"16.0":0,"16.1":0.00433,"16.2":0,"16.3":0.00216,"16.4":0,"16.5":0,"16.6":0.02596,"17.0":0,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.04563,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.29661,"8.1-8.4":0,"9.0-9.2":0.00067,"9.3":0.00268,"10.0-10.2":0,"10.3":0.00201,"11.0-11.2":0.00067,"11.3-11.4":0.00738,"12.0-12.1":0.00336,"12.2-12.5":0.33621,"13.0-13.1":0,"13.2":0.00067,"13.3":0.02215,"13.4-13.7":0.04496,"14.0-14.4":0.13757,"14.5-14.8":0.11274,"15.0-15.1":0.12415,"15.2-15.3":0.04429,"15.4":0.12146,"15.5":0.05234,"15.6-15.7":0.63013,"16.0":0.29661,"16.1":0.23689,"16.2":0.25165,"16.3":0.23957,"16.4":0.22414,"16.5":0.61671,"16.6":2.66415,"17.0":0.15703,"17.1":0},P:{"4":0.09231,"20":0.06154,"21":0.2564,"22":2.07174,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01026,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.11282,"12.0":0,"13.0":0.02051,"14.0":0.13333,"15.0":0.01026,"16.0":0.15384,"17.0":0.17435,"18.0":0.02051,"19.0":0.06154},I:{"0":0,"3":0,"4":0.00343,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00343,"4.2-4.3":0.01116,"4.4":0,"4.4.3-4.4.4":0.05063},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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.74652},R:{_:"0"},M:{"0":0.18809},Q:{"13.1":0},O:{"0":16.31663},H:{"0":3.29429}};
      +module.exports={C:{"43":0.00234,"50":0.00234,"51":0.00234,"52":0.00468,"53":0.28757,"61":0.00234,"72":0.00234,"81":0.00234,"82":0.00234,"89":0.00468,"91":0.00234,"93":0.01403,"101":0.00468,"102":0.00701,"103":0.01637,"106":0.00234,"111":0.00234,"112":0.00234,"113":0.00234,"114":0.01169,"115":0.20808,"116":0.03039,"117":0.02338,"118":0.40214,"119":0.26653,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 83 84 85 86 87 88 90 92 94 95 96 97 98 99 100 104 105 107 108 109 110 120 121 122 3.5 3.6"},D:{"43":0.00234,"44":0.00234,"50":0.00935,"51":0.00234,"53":0.00234,"55":0.00234,"56":0.00701,"57":0.00701,"58":0.18704,"59":0.00234,"60":0.02338,"67":0.07482,"68":0.02572,"69":0.00468,"70":0.00468,"71":0.00701,"72":0.00234,"73":0.00701,"74":0.00234,"75":0.00468,"76":0.00468,"77":0.04208,"78":0.0187,"79":0.01637,"80":0.00468,"81":0.00234,"83":0.00468,"85":0.00468,"86":0.00701,"87":0.02104,"88":0.00234,"89":0.00234,"90":0.00234,"91":0.00468,"92":0.00234,"94":0.00935,"96":0.00468,"97":0.00701,"98":0.00468,"99":0.01169,"100":0.00935,"101":0.00234,"102":0.01637,"103":0.00701,"104":0.00234,"105":0.00701,"106":0.02572,"107":0.02104,"108":0.02572,"109":1.13159,"110":0.00935,"111":0.05611,"112":0.03741,"113":0.02338,"114":0.07482,"115":0.10053,"116":0.23848,"117":2.10186,"118":4.63859,"119":0.01169,"120":0.00701,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 45 46 47 48 49 52 54 61 62 63 64 65 66 84 93 95 121 122"},F:{"34":0.00234,"36":0.00234,"40":0.00701,"74":0.00234,"79":0.01169,"94":0.00234,"95":0.0187,"102":0.0678,"103":0.04676,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00935,"16":0.00234,"18":0.00234,"84":0.02104,"86":0.00468,"89":0.00468,"92":0.05144,"100":0.00234,"105":0.02338,"107":0.00701,"108":0.00234,"109":0.00935,"110":0.00234,"111":0.00234,"112":0.00701,"113":0.00234,"114":0.01403,"115":0.03039,"116":0.02338,"117":0.70374,"118":1.00768,"119":0.00701,_:"13 14 15 17 79 80 81 83 85 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 106"},E:{"11":0.00234,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.2 16.4 17.2","5.1":0.05144,"13.1":0.00234,"14.1":0.00234,"15.5":0.00701,"15.6":0.01403,"16.1":0.00701,"16.3":0.00234,"16.5":0.01169,"16.6":0.10989,"17.0":0.00935,"17.1":0.00234},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00026,"5.0-5.1":0.00026,"6.0-6.1":0.00078,"7.0-7.1":0.00181,"8.1-8.4":0.00026,"9.0-9.2":0.00181,"9.3":0.00622,"10.0-10.2":0.00026,"10.3":0.00906,"11.0-11.2":0.00829,"11.3-11.4":0.00285,"12.0-12.1":0.00233,"12.2-12.5":0.04118,"13.0-13.1":0.00129,"13.2":0.00699,"13.3":0.00259,"13.4-13.7":0.00829,"14.0-14.4":0.02279,"14.5-14.8":0.03677,"15.0-15.1":0.0145,"15.2-15.3":0.01657,"15.4":0.01839,"15.5":0.02616,"15.6-15.7":0.18102,"16.0":0.06682,"16.1":0.12793,"16.2":0.06241,"16.3":0.11576,"16.4":0.02486,"16.5":0.0663,"16.6-16.7":1.24179,"17.0":0.44233,"17.1":0.02667,"17.2":0.00078},P:{"4":0.10216,"20":0.13281,"21":0.1941,"22":1.63456,"23":0.4495,"5.0-5.4":0.03065,_:"6.2-6.4 8.2 12.0","7.2-7.4":0.04086,"9.2":0.07151,"10.1":0.03065,"11.1-11.2":0.23497,"13.0":0.10216,"14.0":0.17367,"15.0":0.03065,"16.0":0.20432,"17.0":0.12259,"18.0":0.04086,"19.0":0.08173},I:{"0":0.22106,"3":0,"4":0.00004,"2.1":0,"2.2":0.00007,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00016,"4.4":0,"4.4.3-4.4.4":0.00067},A:{"8":0.00234,"11":0.00234,_:"6 7 9 10 5.5"},K:{"0":1.77785,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00766,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.27583},Q:{_:"13.1"},O:{"0":9.43958},H:{"0":2.85},L:{"0":65.74554}};
      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 b961ddd5370a74..b2d36723b8c354 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00935,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0187,"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.00467,"94":0,"95":0,"96":0.00467,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0187,"103":0,"104":0.00467,"105":0,"106":0,"107":0,"108":0.00467,"109":0,"110":0.00935,"111":0,"112":0.00467,"113":0.00467,"114":0,"115":0.1262,"116":0.07946,"117":2.63146,"118":0.19163,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00467,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00935,"62":0,"63":0.00467,"64":0,"65":0,"66":0,"67":0,"68":0.00467,"69":0.00467,"70":0.00935,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00935,"80":0,"81":0.0187,"83":0.00467,"84":0,"85":0.00467,"86":0,"87":0.02337,"88":0.02804,"89":0,"90":0.00467,"91":0.00467,"92":0.00467,"93":0,"94":0.00935,"95":0,"96":0,"97":0.00467,"98":0,"99":0,"100":0.00467,"101":0,"102":0,"103":0.02804,"104":0,"105":0.00935,"106":0.02804,"107":0,"108":0.00467,"109":0.57023,"110":0.00467,"111":0,"112":0.01402,"113":0.02804,"114":0.13555,"115":0.14022,"116":6.95491,"117":1.83221,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.02804,"70":0.00467,"71":0.00935,"72":0.00467,"73":0,"74":0,"75":0,"76":0,"77":0.00467,"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.00935,"96":0,"97":0,"98":0,"99":0.00467,"100":0.00935,"101":0.17294,"102":0.16826,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"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.00467,"86":0,"87":0,"88":0,"89":0.00467,"90":0,"91":0,"92":0.00467,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.02337,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00935,"110":0.00467,"111":0,"112":0.00935,"113":0.00935,"114":0.04674,"115":0.06076,"116":3.68779,"117":1.57046},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00935,"15":0.01402,_:"0","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.06076,"14.1":0.06544,"15.1":0.01402,"15.2-15.3":0,"15.4":0.00467,"15.5":0.02337,"15.6":0.45338,"16.0":0.00935,"16.1":0.04207,"16.2":0.02337,"16.3":0.07946,"16.4":0.00935,"16.5":0.16359,"16.6":0.73382,"17.0":0.22903,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00338,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.0575,"11.0-11.2":0.0372,"11.3-11.4":0.00338,"12.0-12.1":0,"12.2-12.5":0.26719,"13.0-13.1":0.01184,"13.2":0,"13.3":0.02875,"13.4-13.7":0.04228,"14.0-14.4":0.02029,"14.5-14.8":0.33145,"15.0-15.1":0.04228,"15.2-15.3":0.10654,"15.4":0.06595,"15.5":0.14374,"15.6-15.7":1.08907,"16.0":0.39064,"16.1":0.52931,"16.2":0.48873,"16.3":1.05186,"16.4":0.23337,"16.5":2.52142,"16.6":8.28299,"17.0":0.969,"17.1":0.00338},P:{"4":0.01015,"20":0.12179,"21":0.22327,"22":2.6387,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.28417,"8.2":0.0203,"9.2":0.0203,"10.1":0.10149,"11.1-11.2":0.27402,"12.0":0.06089,"13.0":0.10149,"14.0":0.03045,"15.0":0,"16.0":0.15223,"17.0":0.01015,"18.0":0.08119,"19.0":0.23342},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01324,"4.4":0,"4.4.3-4.4.4":0.07284},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00935,"5.5":0},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":53.56256},R:{_:"0"},M:{"0":1.02259},Q:{"13.1":0.01065},O:{"0":0.01598},H:{"0":0.60508}};
      +module.exports={C:{"78":0.01018,"89":0.01018,"91":0.01018,"108":0.01018,"112":0.02037,"114":0.01018,"115":0.40736,"117":0.05092,"118":2.83115,"119":0.26988,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 113 116 120 121 122 3.5 3.6"},D:{"49":0.00509,"61":0.01528,"70":0.01018,"73":0.01528,"76":0.02037,"78":0.01018,"79":0.03564,"80":0.00509,"81":0.01528,"83":0.02546,"84":0.01018,"86":0.02037,"87":0.03564,"88":0.05092,"89":0.03564,"90":0.00509,"91":0.01018,"92":0.04074,"94":0.00509,"95":0.01528,"96":0.04074,"98":0.00509,"100":0.00509,"102":0.01018,"103":0.07638,"105":0.00509,"106":0.00509,"107":0.00509,"108":0.07638,"109":0.61613,"111":0.05601,"112":0.02037,"113":0.00509,"114":0.03564,"115":0.04074,"116":2.03171,"117":8.05045,"118":24.52307,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 71 72 74 75 77 85 93 97 99 101 104 110 119 120 121 122"},F:{"46":0.01528,"79":0.00509,"99":0.00509,"101":0.01528,"102":0.50411,"103":0.22405,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00509,"18":0.00509,"84":0.03564,"89":0.01528,"90":0.01018,"92":0.01018,"95":0.01528,"97":0.00509,"107":0.00509,"108":0.00509,"109":0.10184,"111":0.04074,"114":0.02546,"115":0.30043,"116":0.13748,"117":2.52563,"118":1.95024,_:"12 13 15 16 17 79 80 81 83 85 86 87 88 91 93 94 96 98 99 100 101 102 103 104 105 106 110 112 113 119"},E:{"14":0.02546,"15":0.01528,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 17.2","12.1":0.01528,"13.1":0.04583,"14.1":0.13748,"15.1":0.03564,"15.4":0.04074,"15.5":0.03055,"15.6":0.28006,"16.0":0.01018,"16.1":0.04074,"16.2":0.00509,"16.3":0.04074,"16.4":0.07638,"16.5":0.14767,"16.6":0.40736,"17.0":0.93184,"17.1":0.01528},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00073,"5.0-5.1":0.00073,"6.0-6.1":0.00219,"7.0-7.1":0.00511,"8.1-8.4":0.00073,"9.0-9.2":0.00511,"9.3":0.0175,"10.0-10.2":0.00073,"10.3":0.02553,"11.0-11.2":0.02334,"11.3-11.4":0.00802,"12.0-12.1":0.00656,"12.2-12.5":0.11596,"13.0-13.1":0.00365,"13.2":0.01969,"13.3":0.00729,"13.4-13.7":0.02334,"14.0-14.4":0.06418,"14.5-14.8":0.10356,"15.0-15.1":0.04084,"15.2-15.3":0.04668,"15.4":0.05178,"15.5":0.07366,"15.6-15.7":0.5098,"16.0":0.18817,"16.1":0.36029,"16.2":0.17577,"16.3":0.32601,"16.4":0.07002,"16.5":0.18671,"16.6-16.7":3.49713,"17.0":1.24569,"17.1":0.07512,"17.2":0.00219},P:{"4":0.05217,"20":0.0939,"21":0.17736,"22":1.9823,"23":0.27126,_:"5.0-5.4 6.2-6.4 8.2 10.1 15.0 17.0","7.2-7.4":0.22953,"9.2":0.01043,"11.1-11.2":0.0313,"12.0":0.01043,"13.0":0.16693,"14.0":0.04173,"16.0":0.08347,"18.0":0.04173,"19.0":0.29213},I:{"0":0.00488,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{"11":0.00509,_:"6 7 8 9 10 5.5"},K:{"0":0.22393,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":1.35952},Q:{_:"13.1"},O:{"0":0.11288},H:{"0":0.1},L:{"0":38.98919}};
      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 a5489a0e667a07..ab5bcac461c268 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00201,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00201,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00201,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00403,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00201,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00201,"103":0,"104":0.00201,"105":0,"106":0,"107":0,"108":0,"109":0,"110":0.00201,"111":0.00201,"112":0.00201,"113":0.00403,"114":0.00201,"115":0.01812,"116":0.01409,"117":0.1389,"118":0.01208,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00201,"50":0.00201,"51":0,"52":0,"53":0,"54":0,"55":0.00201,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00403,"67":0,"68":0,"69":0,"70":0.00201,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00201,"79":0.00201,"80":0,"81":0.01007,"83":0.00201,"84":0,"85":0.00201,"86":0.00201,"87":0.00201,"88":0.00403,"89":0,"90":0,"91":0.00201,"92":0,"93":0.08857,"94":0.00201,"95":0,"96":0,"97":0,"98":0.00201,"99":0.00805,"100":0.00201,"101":0.00201,"102":0.00201,"103":0.00604,"104":0.00201,"105":0.00201,"106":0.00403,"107":0.00201,"108":0.00403,"109":0.13286,"110":0.00201,"111":0.00403,"112":0.00403,"113":0.00805,"114":0.02416,"115":0.0463,"116":1.41917,"117":0.3563,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00201,"27":0,"28":0.00403,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00201,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00201,"52":0,"53":0,"54":0.00201,"55":0,"56":0.00201,"57":0.00201,"58":0.00201,"60":0.00604,"62":0,"63":0.00805,"64":0.00403,"65":0.00604,"66":0.00604,"67":0.01007,"68":0.00201,"69":0.07851,"70":0.02617,"71":0.02617,"72":0.1852,"73":0.03825,"74":0.00201,"75":0,"76":0.00201,"77":0.02214,"78":0.00201,"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.00403,"96":0,"97":0,"98":0,"99":0,"100":0.00604,"101":0.0302,"102":0.02818,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00201},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00201,"18":0.00201,"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.00201,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.00604,"110":0.00201,"111":0.00201,"112":0.00403,"113":0.00201,"114":0.00805,"115":0.01409,"116":0.26572,"117":0.16909},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00403,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00201,"12.1":0.00201,"13.1":0.00604,"14.1":0.00604,"15.1":0.00201,"15.2-15.3":0.00201,"15.4":0.00201,"15.5":0.00403,"15.6":0.02214,"16.0":0.00403,"16.1":0.00604,"16.2":0.00604,"16.3":0.0161,"16.4":0.00604,"16.5":0.0161,"16.6":0.1087,"17.0":0.00604,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00144,"6.0-6.1":0,"7.0-7.1":0.00287,"8.1-8.4":0.00575,"9.0-9.2":0.01149,"9.3":0.05314,"10.0-10.2":0,"10.3":0.03304,"11.0-11.2":0.00144,"11.3-11.4":0.00575,"12.0-12.1":0.00144,"12.2-12.5":0.32748,"13.0-13.1":0.01005,"13.2":0.00287,"13.3":0.02154,"13.4-13.7":0.04165,"14.0-14.4":0.09336,"14.5-14.8":0.2255,"15.0-15.1":0.05745,"15.2-15.3":0.08187,"15.4":0.09192,"15.5":0.16949,"15.6-15.7":1.27545,"16.0":0.34759,"16.1":0.65065,"16.2":0.2887,"16.3":0.69805,"16.4":0.15656,"16.5":0.50559,"16.6":8.391,"17.0":0.65496,"17.1":0.00144},P:{"4":0.1519,"20":0.19241,"21":0.37469,"22":6.46085,"5.0-5.4":0.01013,"6.2-6.4":0.01013,"7.2-7.4":0.36456,"8.2":0,"9.2":0.01013,"10.1":0.01013,"11.1-11.2":0.05063,"12.0":0.02025,"13.0":0.04051,"14.0":0.04051,"15.0":0.03038,"16.0":0.08101,"17.0":0.08101,"18.0":0.06076,"19.0":0.19241},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00663,"4.4":0,"4.4.3-4.4.4":0.04142},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01007,"5.5":0},S:{"2.5":0.00799,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.46044},R:{_:"0"},M:{"0":0.48721},Q:{"13.1":0.00799},O:{"0":0.51916},H:{"0":2.98682}};
      +module.exports={C:{"34":0.01012,"52":0.0081,"59":0.00405,"60":0.00405,"64":0.00202,"78":0.01012,"87":0.00202,"91":0.00202,"94":0.00202,"99":0.00202,"100":0.00202,"102":0.00202,"104":0.00405,"105":0.00202,"107":0.00202,"108":0.00202,"109":0.00405,"110":0.00405,"111":0.00405,"112":0.00607,"113":0.00607,"114":0.00202,"115":0.08703,"116":0.0081,"117":0.02226,"118":0.42504,"119":0.07894,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 95 96 97 98 101 103 106 120 121 122 3.5 3.6"},D:{"11":0.00202,"33":0.00202,"38":0.00202,"43":0.00202,"49":0.0081,"50":0.00405,"52":0.00607,"55":0.00202,"56":0.00405,"62":0.00202,"65":0.00202,"66":0.01619,"67":0.00405,"69":0.00405,"70":0.0081,"72":0.00202,"73":0.00202,"74":0.00405,"75":0.00202,"77":0.00202,"78":0.0081,"79":0.01822,"80":0.00202,"81":0.00607,"83":0.00607,"84":0.00202,"85":0.00405,"86":0.01012,"87":0.0081,"88":0.02024,"89":0.00202,"90":0.00405,"91":0.00607,"92":0.00405,"93":0.4129,"94":0.0081,"95":0.00607,"96":0.00202,"97":0.00202,"98":0.00405,"99":0.03643,"100":0.00607,"101":0.0081,"102":0.01012,"103":0.02834,"104":0.01012,"105":0.01214,"106":0.01012,"107":0.01822,"108":0.01012,"109":0.67602,"110":0.0081,"111":0.01619,"112":0.01822,"113":0.03441,"114":0.08298,"115":0.05667,"116":0.37444,"117":4.52162,"118":4.54186,"119":0.00607,"120":0.00202,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 44 45 46 47 48 51 53 54 57 58 59 60 61 63 64 68 71 76 121 122"},F:{"28":0.0081,"77":0.00202,"79":0.00202,"85":0.00202,"95":0.01822,"101":0.00202,"102":0.24288,"103":0.08906,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00405,"13":0.00202,"14":0.00607,"15":0.00202,"16":0.00405,"17":0.0081,"18":0.01012,"84":0.00202,"85":0.00202,"89":0.00202,"90":0.00202,"91":0.00202,"92":0.0081,"100":0.00202,"103":0.00202,"106":0.00202,"107":0.00202,"108":0.00202,"109":0.03441,"110":0.00202,"111":0.00607,"112":0.01822,"113":0.0081,"114":0.01619,"115":0.02631,"116":0.0506,"117":1.07474,"118":1.06867,"119":0.00202,_:"79 80 81 83 86 87 88 93 94 95 96 97 98 99 101 102 104 105"},E:{"10":0.00202,"13":0.00202,"14":0.02024,"15":0.00202,_:"0 4 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.00202,"11.1":0.01214,"12.1":0.00607,"13.1":0.03238,"14.1":0.03643,"15.1":0.00607,"15.2-15.3":0.01214,"15.4":0.01417,"15.5":0.01619,"15.6":0.12751,"16.0":0.01417,"16.1":0.03036,"16.2":0.03036,"16.3":0.06477,"16.4":0.02429,"16.5":0.0587,"16.6":0.3967,"17.0":0.16597,"17.1":0.01012},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00108,"5.0-5.1":0.00108,"6.0-6.1":0.00324,"7.0-7.1":0.00755,"8.1-8.4":0.00108,"9.0-9.2":0.00755,"9.3":0.02588,"10.0-10.2":0.00108,"10.3":0.03774,"11.0-11.2":0.03451,"11.3-11.4":0.01186,"12.0-12.1":0.00971,"12.2-12.5":0.17146,"13.0-13.1":0.00539,"13.2":0.02912,"13.3":0.01078,"13.4-13.7":0.03451,"14.0-14.4":0.0949,"14.5-14.8":0.15313,"15.0-15.1":0.06039,"15.2-15.3":0.06901,"15.4":0.07656,"15.5":0.10891,"15.6-15.7":0.75377,"16.0":0.27822,"16.1":0.53271,"16.2":0.25988,"16.3":0.48202,"16.4":0.10352,"16.5":0.27606,"16.6-16.7":5.17071,"17.0":1.84183,"17.1":0.11107,"17.2":0.00324},P:{"4":0.18254,"20":0.15212,"21":0.28396,"22":5.42562,"23":1.18654,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01014,"7.2-7.4":0.36509,"9.2":0.01014,"11.1-11.2":0.04057,"12.0":0.02028,"13.0":0.04057,"14.0":0.04057,"15.0":0.02028,"16.0":0.06085,"17.0":0.08113,"18.0":0.06085,"19.0":0.16226},I:{"0":0.03174,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"7":0.00202,"9":0.00202,"11":0.04453,_:"6 8 10 5.5"},K:{"0":3.1004,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00798,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.47856},Q:{"13.1":0.00798},O:{"0":0.50249},H:{"0":0.09},L:{"0":60.78942}};
      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 48c253ea439a71..ec9eee94e0cfb7 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZM.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZM.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.00237,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00237,"100":0,"101":0,"102":0.00475,"103":0.00237,"104":0,"105":0.00237,"106":0,"107":0,"108":0.00237,"109":0.00237,"110":0,"111":0.00237,"112":0,"113":0.00237,"114":0.00237,"115":0.0261,"116":0.01424,"117":0.12102,"118":0.01424,"119":0,"120":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,"27":0,"28":0,"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,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00237,"59":0.00237,"60":0,"61":0,"62":0,"63":0,"64":0.00237,"65":0,"66":0,"67":0,"68":0.00237,"69":0,"70":0.00237,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00237,"78":0.00237,"79":0.00237,"80":0.00237,"81":0.00712,"83":0.00237,"84":0,"85":0,"86":0,"87":0.00237,"88":0.00237,"89":0,"90":0.00237,"91":0,"92":0.00237,"93":0.00237,"94":0.00475,"95":0.00475,"96":0,"97":0.00237,"98":0.00237,"99":0.00237,"100":0,"101":0,"102":0.00475,"103":0.00712,"104":0.00237,"105":0.00237,"106":0.00475,"107":0.00237,"108":0.00475,"109":0.19696,"110":0.00475,"111":0.00475,"112":0.00712,"113":0.00712,"114":0.03085,"115":0.0356,"116":1.19125,"117":0.43426,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00237,"25":0,"26":0.00237,"27":0.00237,"28":0.00475,"29":0,"30":0.00475,"31":0,"32":0.00237,"33":0.00237,"34":0,"35":0.01661,"36":0,"37":0.03797,"38":0,"39":0,"40":0,"41":0,"42":0.00475,"43":0,"44":0,"45":0,"46":0.00237,"47":0.00475,"48":0,"49":0,"50":0.00475,"51":0.00237,"52":0,"53":0,"54":0.00237,"55":0.00237,"56":0.00712,"57":0.00237,"58":0.00712,"60":0.18509,"62":0,"63":0.0617,"64":0.01661,"65":0.00949,"66":0.04746,"67":0.05695,"68":0.03085,"69":0.22544,"70":0.22781,"71":0.41053,"72":0.96581,"73":0.15662,"74":0.00237,"75":0.00237,"76":0.00949,"77":0.0261,"78":0.00475,"79":0.00475,"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.02136,"96":0,"97":0,"98":0,"99":0.00237,"100":0.00237,"101":0.06644,"102":0.06882,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00475},B:{"12":0.00475,"13":0.00237,"14":0,"15":0.00237,"16":0.00237,"17":0.00237,"18":0.01187,"79":0,"80":0,"81":0,"83":0,"84":0.00237,"85":0,"86":0,"87":0,"88":0,"89":0.00237,"90":0.00475,"91":0,"92":0.01187,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00237,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0.00237,"108":0,"109":0.00949,"110":0.00237,"111":0.00237,"112":0.00475,"113":0.00475,"114":0.00949,"115":0.01898,"116":0.23967,"117":0.22781},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00237,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00237,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00237,"14.1":0.00475,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00237,"15.6":0.00475,"16.0":0,"16.1":0,"16.2":0,"16.3":0.00237,"16.4":0.00237,"16.5":0.00712,"16.6":0.01661,"17.0":0.00237,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00445,"6.0-6.1":0,"7.0-7.1":0.01336,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02821,"10.0-10.2":0.00148,"10.3":0.03266,"11.0-11.2":0.00594,"11.3-11.4":0.00297,"12.0-12.1":0.02969,"12.2-12.5":1.42905,"13.0-13.1":0.01782,"13.2":0,"13.3":0.01336,"13.4-13.7":0.0386,"14.0-14.4":0.1752,"14.5-14.8":0.14699,"15.0-15.1":0.13808,"15.2-15.3":0.12175,"15.4":0.11507,"15.5":0.15664,"15.6-15.7":1.70298,"16.0":0.18188,"16.1":0.18708,"16.2":0.15218,"16.3":0.29991,"16.4":0.1455,"16.5":0.4907,"16.6":1.44018,"17.0":0.2769,"17.1":0},P:{"4":0.11208,"20":0.07132,"21":0.15283,"22":0.64189,"5.0-5.4":0.01019,"6.2-6.4":0,"7.2-7.4":0.0917,"8.2":0,"9.2":0.05094,"10.1":0,"11.1-11.2":0.01019,"12.0":0,"13.0":0.01019,"14.0":0.02038,"15.0":0.01019,"16.0":0.05094,"17.0":0.03057,"18.0":0.02038,"19.0":0.05094},I:{"0":0,"3":0,"4":0.00097,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00097,"4.2-4.3":0.00145,"4.4":0,"4.4.3-4.4.4":0.1656},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01661,"5.5":0},S:{"2.5":0.01525,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.27704},R:{_:"0"},M:{"0":0.09152},Q:{"13.1":0.01525},O:{"0":1.22795},H:{"0":14.04436}};
      +module.exports={C:{"34":0.00434,"52":0.00217,"65":0.00217,"78":0.00869,"88":0.00434,"99":0.00217,"102":0.00217,"103":0.00434,"106":0.00217,"108":0.00217,"111":0.00434,"113":0.00434,"114":0.00217,"115":0.10426,"116":0.00434,"117":0.04344,"118":0.5278,"119":0.11294,"120":0.00434,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 101 104 105 107 109 110 112 121 122 3.5 3.6"},D:{"11":0.00217,"33":0.00217,"43":0.00217,"46":0.00217,"49":0.00217,"50":0.00217,"51":0.00217,"53":0.00217,"55":0.00217,"58":0.00217,"60":0.0152,"64":0.00217,"68":0.00869,"69":0.0152,"70":0.00217,"71":0.00217,"72":0.00217,"73":0.00217,"74":0.00652,"75":0.00434,"76":0.00217,"77":0.00869,"78":0.00869,"79":0.00652,"80":0.00652,"81":0.00652,"83":0.01086,"85":0.00434,"86":0.00434,"87":0.00869,"88":0.01303,"89":0.00652,"90":0.01086,"91":0.00217,"92":0.00869,"93":0.00652,"94":0.01303,"95":0.01086,"96":0.00869,"97":0.00869,"98":0.00217,"99":0.00217,"100":0.00652,"101":0.00217,"102":0.01738,"103":0.03475,"104":0.01086,"105":0.00869,"106":0.01303,"107":0.01086,"108":0.01955,"109":0.87532,"110":0.00434,"111":0.01303,"112":0.02824,"113":0.03258,"114":0.07819,"115":0.04778,"116":0.39096,"117":4.27015,"118":3.97476,"119":0.00869,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 47 48 52 54 56 57 59 61 62 63 65 66 67 84 120 121 122"},F:{"34":0.00217,"42":0.00217,"46":0.00217,"64":0.00217,"68":0.00217,"72":0.00217,"77":0.00434,"78":0.00434,"79":0.01086,"81":0.00217,"90":0.00652,"95":0.05647,"98":0.00217,"99":0.00217,"100":0.00217,"101":0.01303,"102":0.36272,"103":0.2563,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 69 70 71 73 74 75 76 80 82 83 84 85 86 87 88 89 91 92 93 94 96 97 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0152,"13":0.00869,"14":0.00217,"15":0.00434,"16":0.00869,"17":0.00652,"18":0.04344,"83":0.00652,"84":0.00652,"85":0.00217,"86":0.00434,"89":0.00434,"90":0.00869,"92":0.04344,"99":0.00217,"100":0.00434,"103":0.00217,"105":0.00434,"106":0.00217,"107":0.00869,"108":0.00217,"109":0.0391,"110":0.01955,"111":0.00434,"112":0.00652,"113":0.01303,"114":0.02389,"115":0.02824,"116":0.06733,"117":1.11206,"118":0.9079,_:"79 80 81 87 88 91 93 94 95 96 97 98 101 102 104 119"},E:{"13":0.00217,"14":0.00652,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 17.2","5.1":0.01086,"13.1":0.01955,"14.1":0.02172,"15.4":0.00652,"15.5":0.01303,"15.6":0.02606,"16.0":0.00434,"16.1":0.00217,"16.2":0.00217,"16.3":0.00869,"16.4":0.00217,"16.5":0.03475,"16.6":0.05647,"17.0":0.03692,"17.1":0.00217},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00054,"5.0-5.1":0.00054,"6.0-6.1":0.00163,"7.0-7.1":0.0038,"8.1-8.4":0.00054,"9.0-9.2":0.0038,"9.3":0.01302,"10.0-10.2":0.00054,"10.3":0.01899,"11.0-11.2":0.01736,"11.3-11.4":0.00597,"12.0-12.1":0.00488,"12.2-12.5":0.08625,"13.0-13.1":0.00271,"13.2":0.01465,"13.3":0.00542,"13.4-13.7":0.01736,"14.0-14.4":0.04774,"14.5-14.8":0.07703,"15.0-15.1":0.03038,"15.2-15.3":0.03472,"15.4":0.03852,"15.5":0.05479,"15.6-15.7":0.37919,"16.0":0.13996,"16.1":0.26799,"16.2":0.13074,"16.3":0.24249,"16.4":0.05208,"16.5":0.13887,"16.6-16.7":2.60119,"17.0":0.92656,"17.1":0.05588,"17.2":0.00163},P:{"4":0.09244,"20":0.0719,"21":0.1438,"22":0.83196,"23":0.08217,"5.0-5.4":0.01027,_:"6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.09244,"9.2":0.05136,"11.1-11.2":0.01027,"13.0":0.01027,"14.0":0.02054,"15.0":0.02054,"16.0":0.05136,"17.0":0.03081,"18.0":0.03081,"19.0":0.06163},I:{"0":0.08567,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00026},A:{"10":0.00434,"11":0.04778,_:"6 7 8 9 5.5"},K:{"0":11.17104,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01566,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.08611},Q:{"13.1":0.00783},O:{"0":0.9785},H:{"0":1.98},L:{"0":63.64241}};
      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 57a075a9cb8ad7..18c54c14aa9a84 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0033,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0033,"49":0,"50":0,"51":0,"52":0.0033,"53":0,"54":0,"55":0,"56":0,"57":0.0033,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.0033,"88":0.0033,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0033,"95":0,"96":0,"97":0.0033,"98":0,"99":0.0033,"100":0,"101":0,"102":0.00991,"103":0,"104":0,"105":0,"106":0.03962,"107":0,"108":0.0033,"109":0.0033,"110":0.0033,"111":0.0033,"112":0.0033,"113":0.0033,"114":0.0066,"115":0.09246,"116":0.03962,"117":0.36982,"118":0.03962,"119":0.0033,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0066,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0066,"41":0.0033,"42":0,"43":0,"44":0,"45":0,"46":0.0033,"47":0,"48":0,"49":0.0033,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0033,"56":0.0033,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0066,"64":0.00991,"65":0,"66":0,"67":0.0033,"68":0,"69":0.0033,"70":0.00991,"71":0.0033,"72":0,"73":0,"74":0.0066,"75":0,"76":0.0066,"77":0.0033,"78":0.0033,"79":0.02311,"80":0.0033,"81":0.0066,"83":0.0033,"84":0.0033,"85":0.0033,"86":0.0033,"87":0.0066,"88":0.0033,"89":0,"90":0.0033,"91":0.0033,"92":0.0033,"93":0.0033,"94":0.00991,"95":0.0066,"96":0.0066,"97":0.0066,"98":0.0066,"99":0.0066,"100":0.0033,"101":0.0066,"102":0.01321,"103":0.02642,"104":0.00991,"105":0.00991,"106":0.01981,"107":0.0066,"108":0.01321,"109":0.56794,"110":0.0066,"111":0.01321,"112":0.02972,"113":0.01981,"114":0.11887,"115":0.10897,"116":3.60248,"117":0.80899,"118":0.0033,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.0033,"27":0,"28":0.00991,"29":0,"30":0,"31":0,"32":0.0066,"33":0,"34":0,"35":0.01321,"36":0.01981,"37":0.0033,"38":0.0066,"39":0,"40":0,"41":0,"42":0.02311,"43":0,"44":0,"45":0.0033,"46":0.00991,"47":0.0033,"48":0,"49":0,"50":0.02311,"51":0.0033,"52":0,"53":0,"54":0.0033,"55":0,"56":0,"57":0.0033,"58":0.06274,"60":0.07264,"62":0,"63":0.12878,"64":0.01981,"65":0.03302,"66":0.03302,"67":0.03632,"68":0.01651,"69":0.26086,"70":0.13868,"71":0.28067,"72":0.67691,"73":0.12878,"74":0,"75":0,"76":0.0033,"77":0.03302,"78":0.0033,"79":0.0066,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0066,"86":0.0033,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02972,"96":0,"97":0,"98":0.0033,"99":0.0033,"100":0.01651,"101":0.1717,"102":0.19812,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.09576},B:{"12":0.00991,"13":0.0033,"14":0.02642,"15":0.0033,"16":0.0066,"17":0.0066,"18":0.03962,"79":0,"80":0,"81":0,"83":0,"84":0.0066,"85":0,"86":0,"87":0,"88":0,"89":0.0066,"90":0.0066,"91":0,"92":0.02642,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0066,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0.0033,"107":0.0033,"108":0.0033,"109":0.01321,"110":0.0033,"111":0.0033,"112":0.00991,"113":0.00991,"114":0.04623,"115":0.06934,"116":0.667,"117":0.46888},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0066,"15":0.0066,_:"0","3.1":0,"3.2":0,"5.1":0.0066,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0066,"14.1":0.05283,"15.1":0.0066,"15.2-15.3":0.0033,"15.4":0.0033,"15.5":0.0066,"15.6":0.05944,"16.0":0,"16.1":0.01321,"16.2":0.0033,"16.3":0.01321,"16.4":0.00991,"16.5":0.02642,"16.6":0.15189,"17.0":0.01321,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00235,"5.0-5.1":0.0047,"6.0-6.1":0,"7.0-7.1":0.00392,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06114,"10.0-10.2":0.00078,"10.3":0.02744,"11.0-11.2":0.00235,"11.3-11.4":0.00392,"12.0-12.1":0.00627,"12.2-12.5":0.27279,"13.0-13.1":0.00157,"13.2":0.00314,"13.3":0.01568,"13.4-13.7":0.03763,"14.0-14.4":0.08544,"14.5-14.8":0.17088,"15.0-15.1":0.10112,"15.2-15.3":0.09171,"15.4":0.07682,"15.5":0.13169,"15.6-15.7":0.88577,"16.0":0.29473,"16.1":0.41388,"16.2":0.26887,"16.3":0.45778,"16.4":0.19126,"16.5":0.52205,"16.6":3.1676,"17.0":0.45699,"17.1":0},P:{"4":0.14442,"20":0.09284,"21":0.17537,"22":1.05219,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1341,"8.2":0,"9.2":0.01032,"10.1":0.01032,"11.1-11.2":0.02063,"12.0":0.02063,"13.0":0.01032,"14.0":0.01032,"15.0":0.01032,"16.0":0.05158,"17.0":0.02063,"18.0":0.04126,"19.0":0.11347},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00296,"4.2-4.3":0.00296,"4.4":0,"4.4.3-4.4.4":0.1272},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.0039,"11":0.03902,"5.5":0},S:{"2.5":0.0134,_:"3.0-3.1"},J:{"7":0,"10":0.0067},N:{"10":0,"11":0},L:{"0":65.83168},R:{_:"0"},M:{"0":0.10717},Q:{"13.1":0.06698},O:{"0":1.39988},H:{"0":8.86504}};
      +module.exports={C:{"34":0.00303,"43":0.00303,"44":0.00303,"45":0.00303,"52":0.00908,"57":0.0121,"59":0.00303,"60":0.00605,"64":0.00303,"66":0.00605,"72":0.00605,"78":0.00605,"87":0.00908,"88":0.00303,"94":0.00605,"96":0.00303,"97":0.00303,"99":0.00605,"100":0.00303,"101":0.00303,"102":0.00908,"103":0.00303,"104":0.00605,"106":0.10285,"108":0.00908,"109":0.00303,"110":0.00303,"112":0.00908,"113":0.00908,"114":0.00605,"115":0.27225,"116":0.0121,"117":0.0605,"118":1.04665,"119":0.19965,"120":0.00303,_:"2 3 4 5 6 7 8 9 10 11 12 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 46 47 48 49 50 51 53 54 55 56 58 61 62 63 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 91 92 93 95 98 105 107 111 121 122 3.5 3.6"},D:{"11":0.00303,"36":0.00303,"37":0.00303,"41":0.00303,"49":0.0121,"55":0.00303,"56":0.00303,"57":0.00605,"58":0.00303,"59":0.01513,"60":0.00303,"61":0.00303,"62":0.00303,"63":0.01513,"64":0.00605,"65":0.00303,"66":0.00303,"67":0.00303,"68":0.00303,"69":0.00605,"70":0.0121,"71":0.00303,"72":0.01513,"74":0.00605,"75":0.00605,"76":0.01513,"77":0.00303,"78":0.00303,"79":0.02723,"80":0.00908,"81":0.01513,"83":0.00908,"84":0.00303,"85":0.0121,"86":0.00908,"87":0.0121,"88":0.0121,"89":0.00605,"90":0.00303,"91":0.00908,"92":0.00908,"93":0.0121,"94":0.0242,"95":0.0121,"96":0.00908,"97":0.01513,"98":0.01513,"99":0.01513,"100":0.00605,"101":0.0121,"102":0.03933,"103":0.0726,"104":0.01815,"105":0.01513,"106":0.02723,"107":0.01815,"108":0.0484,"109":1.63048,"110":0.03328,"111":0.03933,"112":0.04538,"113":0.05445,"114":0.14218,"115":0.1089,"116":0.59593,"117":6.34948,"118":6.30713,"119":0.0242,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 73 120 121 122"},F:{"36":0.00605,"40":0.00303,"42":0.00605,"48":0.00303,"55":0.0121,"57":0.00303,"67":0.0121,"74":0.00908,"75":0.00303,"77":0.00605,"79":0.01513,"85":0.01513,"87":0.00908,"94":0.00303,"95":0.05143,"98":0.00303,"99":0.00303,"101":0.01513,"102":0.71088,"103":0.45073,_:"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 49 50 51 52 53 54 56 58 60 62 63 64 65 66 68 69 70 71 72 73 76 78 80 81 82 83 84 86 88 89 90 91 92 93 96 97 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02723,"13":0.00908,"14":0.00908,"15":0.0121,"16":0.01815,"17":0.01815,"18":0.1089,"84":0.01815,"85":0.00605,"86":0.00303,"89":0.0121,"90":0.02723,"91":0.00303,"92":0.0605,"94":0.00908,"95":0.00303,"99":0.00303,"100":0.01815,"103":0.00303,"104":0.00303,"105":0.00303,"106":0.03328,"107":0.00908,"108":0.00908,"109":0.03025,"110":0.01513,"111":0.01513,"112":0.01815,"113":0.02723,"114":0.05748,"115":0.05748,"116":0.121,"117":1.6819,"118":1.3431,"119":0.03025,_:"79 80 81 83 87 88 93 96 97 98 101 102"},E:{"13":0.00605,"14":0.00908,"15":0.03025,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1 17.2","5.1":0.01513,"10.1":0.00303,"12.1":0.00303,"13.1":0.0242,"14.1":0.14823,"15.1":0.00605,"15.2-15.3":0.00303,"15.4":0.00605,"15.5":0.00605,"15.6":0.18755,"16.0":0.00908,"16.1":0.0242,"16.2":0.01815,"16.3":0.03328,"16.4":0.05445,"16.5":0.03933,"16.6":0.44468,"17.0":0.11193,"17.1":0.0121},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00052,"5.0-5.1":0.00052,"6.0-6.1":0.00157,"7.0-7.1":0.00367,"8.1-8.4":0.00052,"9.0-9.2":0.00367,"9.3":0.01259,"10.0-10.2":0.00052,"10.3":0.01836,"11.0-11.2":0.01678,"11.3-11.4":0.00577,"12.0-12.1":0.00472,"12.2-12.5":0.08339,"13.0-13.1":0.00262,"13.2":0.01416,"13.3":0.00524,"13.4-13.7":0.01678,"14.0-14.4":0.04615,"14.5-14.8":0.07447,"15.0-15.1":0.02937,"15.2-15.3":0.03356,"15.4":0.03724,"15.5":0.05297,"15.6-15.7":0.36659,"16.0":0.13531,"16.1":0.25908,"16.2":0.12639,"16.3":0.23443,"16.4":0.05035,"16.5":0.13426,"16.6-16.7":2.51471,"17.0":0.89575,"17.1":0.05402,"17.2":0.00157},P:{"4":0.22725,"20":0.06198,"21":0.15494,"22":1.03294,"23":0.16527,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.14461,"9.2":0.01033,"11.1-11.2":0.01033,"12.0":0.01033,"13.0":0.02066,"14.0":0.03099,"15.0":0.01033,"16.0":0.06198,"17.0":0.02066,"18.0":0.04132,"19.0":0.18593},I:{"0":0.08326,"3":0,"4":0.00002,"2.1":0,"2.2":0.00003,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{"10":0.01412,"11":0.07058,_:"6 7 8 9 5.5"},K:{"0":7.7958,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02092,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.12553},Q:{"13.1":0.03487},O:{"0":1.35993},H:{"0":1.11},L:{"0":57.03093}};
      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 800d806d71484f..76a4a10514b1c9 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.00493,"43":0.00246,"52":0.02463,"53":0.00246,"57":0.00246,"65":0.00246,"72":0.00246,"77":0.00493,"78":0.00985,"91":0.00246,"92":0.00246,"94":0.00246,"95":0.00246,"99":0.00493,"102":0.02217,"104":0.00493,"105":0.00493,"106":0.00493,"107":0.00246,"108":0.00493,"109":0.00493,"110":0.00739,"111":0.00493,"112":0.00493,"113":0.00739,"114":0.00985,"115":0.34975,"116":0.05911,"117":0.71427,"118":0.07882,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 54 55 56 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 93 96 97 98 100 101 103 119 120 3.5 3.6"},D:{"11":0.00493,"38":0.00246,"43":0.01478,"47":0.00493,"49":0.01724,"50":0.00493,"56":0.00493,"58":0.00985,"60":0.00246,"62":0.00246,"63":0.00493,"64":0.00493,"65":0.00246,"66":0.00493,"67":0.00985,"68":0.00739,"69":0.00493,"70":0.00985,"71":0.00246,"72":0.00985,"73":0.00493,"74":0.00985,"75":0.00739,"76":0.00985,"77":0.00739,"78":0.00493,"79":0.05665,"80":0.01232,"81":0.0197,"83":0.01232,"84":0.00739,"85":0.01478,"86":0.0197,"87":0.03448,"88":0.01724,"89":0.00739,"90":0.02217,"91":0.01724,"92":0.00985,"93":0.16995,"94":0.01724,"95":0.01478,"96":0.00985,"97":0.01232,"98":0.0197,"99":0.02709,"100":0.00985,"101":0.00985,"102":0.02956,"103":0.04926,"104":0.01478,"105":0.02217,"106":0.02709,"107":0.04187,"108":0.06896,"109":1.91621,"110":0.02217,"111":0.03202,"112":0.04433,"113":0.0468,"114":0.1601,"115":0.23152,"116":7.69441,"117":2.07385,"118":0.00985,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 51 52 53 54 55 57 59 61 119 120"},F:{"28":0.00493,"46":0.00246,"72":0.00246,"73":0.00493,"76":0.00246,"77":0.01478,"79":0.01232,"82":0.00246,"85":0.00493,"94":0.00246,"95":0.05665,"98":0.00246,"99":0.00985,"100":0.04433,"101":0.22906,"102":0.25615,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 74 75 78 80 81 83 84 86 87 88 89 90 91 92 93 96 97 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.00246,"14":0.00246,"15":0.00246,"16":0.00246,"17":0.00493,"18":0.02217,"84":0.00493,"89":0.00493,"90":0.00985,"92":0.02217,"100":0.00493,"107":0.00493,"108":0.00493,"109":0.0468,"110":0.00739,"111":0.00739,"112":0.01232,"113":0.01232,"114":0.03941,"115":0.06896,"116":1.20441,"117":0.88914,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106"},E:{"4":0,"13":0.00493,"14":0.01478,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 17.1","5.1":0.02709,"11.1":0.00493,"12.1":0.00493,"13.1":0.02709,"14.1":0.02463,"15.1":0.02709,"15.2-15.3":0.00493,"15.4":0.00739,"15.5":0.00985,"15.6":0.0665,"16.0":0.00739,"16.1":0.01724,"16.2":0.01724,"16.3":0.03941,"16.4":0.01478,"16.5":0.0468,"16.6":0.23645,"17.0":0.0197},G:{"8":0.00273,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00182,"6.0-6.1":0,"7.0-7.1":0.02183,"8.1-8.4":0.00182,"9.0-9.2":0.00364,"9.3":0.03821,"10.0-10.2":0.00091,"10.3":0.04276,"11.0-11.2":0.01001,"11.3-11.4":0.00728,"12.0-12.1":0.02547,"12.2-12.5":0.49033,"13.0-13.1":0.01092,"13.2":0.10371,"13.3":0.13646,"13.4-13.7":0.05458,"14.0-14.4":0.19923,"14.5-14.8":0.24198,"15.0-15.1":0.1692,"15.2-15.3":0.11371,"15.4":0.09643,"15.5":0.16284,"15.6-15.7":1.17716,"16.0":0.28565,"16.1":0.3939,"16.2":0.2247,"16.3":0.46395,"16.4":0.18467,"16.5":0.46213,"16.6":3.45505,"17.0":0.4312,"17.1":0},P:{"4":0.13505,"20":0.11427,"21":0.20776,"22":2.50357,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.19738,"8.2":0,"9.2":0.02078,"10.1":0.01032,"11.1-11.2":0.03116,"12.0":0.02063,"13.0":0.02078,"14.0":0.02078,"15.0":0.02078,"16.0":0.06233,"17.0":0.05194,"18.0":0.04155,"19.0":0.11427},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00164,"4.2-4.3":0.00781,"4.4":0,"4.4.3-4.4.4":0.05838},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0079,"9":0.00263,"10":0.00263,"11":0.06319,_:"6 7 5.5"},S:{"2.5":0.07537,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.23129},R:{_:"0"},M:{"0":0.24872},Q:{"13.1":0},O:{"0":0.52759},H:{"0":7.8491}};
      +module.exports={C:{"34":0.00487,"43":0.00244,"47":0.00244,"52":0.03412,"56":0.00244,"65":0.00244,"72":0.00244,"77":0.00731,"78":0.00731,"95":0.00244,"99":0.00487,"102":0.00731,"104":0.00244,"105":0.00244,"106":0.00244,"107":0.00244,"108":0.00487,"109":0.00487,"110":0.00487,"111":0.00487,"112":0.00487,"113":0.00731,"114":0.00731,"115":0.36311,"116":0.00975,"117":0.04143,"118":0.67992,"119":0.14622,"120":0.00244,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 103 121 122 3.5 3.6"},D:{"11":0.00244,"33":0.00244,"38":0.00244,"43":0.01462,"47":0.00487,"49":0.01462,"50":0.00244,"56":0.00487,"58":0.01706,"60":0.00487,"62":0.00244,"63":0.00487,"64":0.00975,"65":0.00244,"66":0.00487,"67":0.01706,"68":0.00487,"69":0.00731,"70":0.00975,"71":0.00244,"72":0.00487,"73":0.00731,"74":0.00975,"75":0.00487,"76":0.00731,"77":0.00487,"78":0.00487,"79":0.06336,"80":0.00975,"81":0.01706,"83":0.01219,"84":0.00487,"85":0.00975,"86":0.0195,"87":0.02924,"88":0.01706,"89":0.00731,"90":0.00975,"91":0.01462,"92":0.00975,"93":0.15597,"94":0.01462,"95":0.01462,"96":0.00731,"97":0.00731,"98":0.0195,"99":0.02437,"100":0.00975,"101":0.00731,"102":0.02681,"103":0.05118,"104":0.01219,"105":0.02681,"106":0.02437,"107":0.02924,"108":0.07555,"109":1.94229,"110":0.02193,"111":0.03168,"112":0.03412,"113":0.02924,"114":0.08773,"115":0.06824,"116":0.4216,"117":4.85938,"118":5.24199,"119":0.01462,"120":0.00487,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 44 45 46 48 51 52 53 54 55 57 59 61 121 122"},F:{"28":0.00487,"73":0.00244,"77":0.00487,"79":0.01462,"82":0.00244,"85":0.00487,"94":0.00244,"95":0.06336,"99":0.00487,"100":0.00731,"101":0.00975,"102":0.35337,"103":0.17303,_:"9 11 12 15 16 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 78 80 81 83 84 86 87 88 89 90 91 92 93 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00731,"13":0.00244,"14":0.00487,"15":0.00244,"16":0.00244,"17":0.00487,"18":0.02437,"84":0.00487,"89":0.00487,"90":0.00487,"92":0.02193,"100":0.00487,"107":0.00487,"108":0.00487,"109":0.05118,"110":0.00487,"111":0.00731,"112":0.00975,"113":0.01219,"114":0.0195,"115":0.03412,"116":0.05118,"117":1.08934,"118":1.09421,"119":0.00244,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106"},E:{"14":0.01219,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 17.2","5.1":0.02437,"11.1":0.00487,"12.1":0.00487,"13.1":0.02437,"14.1":0.02437,"15.1":0.02681,"15.2-15.3":0.00487,"15.4":0.00731,"15.5":0.00975,"15.6":0.07555,"16.0":0.00731,"16.1":0.01706,"16.2":0.01706,"16.3":0.03412,"16.4":0.01462,"16.5":0.03656,"16.6":0.17303,"17.0":0.10723,"17.1":0.00731},G:{"8":0.00261,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00087,"6.0-6.1":0,"7.0-7.1":0.01738,"8.1-8.4":0.00174,"9.0-9.2":0.00348,"9.3":0.03563,"10.0-10.2":0.00087,"10.3":0.04084,"11.0-11.2":0.03476,"11.3-11.4":0.00782,"12.0-12.1":0.02433,"12.2-12.5":0.5127,"13.0-13.1":0.00956,"13.2":0.11297,"13.3":0.01825,"13.4-13.7":0.05562,"14.0-14.4":0.20074,"14.5-14.8":0.23289,"15.0-15.1":0.15642,"15.2-15.3":0.10689,"15.4":0.08951,"15.5":0.15816,"15.6-15.7":1.18443,"16.0":0.2381,"16.1":0.33369,"16.2":0.19118,"16.3":0.37975,"16.4":0.14338,"16.5":0.33195,"16.6-16.7":2.62174,"17.0":1.35388,"17.1":0.07039,"17.2":0.00174},P:{"4":0.1668,"20":0.0834,"21":0.15638,"22":2.03293,"23":0.39616,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.19808,"9.2":0.01043,"11.1-11.2":0.03128,"13.0":0.02085,"14.0":0.02085,"15.0":0.02085,"16.0":0.05213,"17.0":0.05213,"18.0":0.0417,"19.0":0.10425},I:{"0":0.07425,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00016,"4.4":0,"4.4.3-4.4.4":0.00116},A:{"8":0.00525,"11":0.06299,_:"6 7 9 10 5.5"},K:{"0":6.62073,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.08319,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.24202},Q:{_:"13.1"},O:{"0":0.46891},H:{"0":1.57},L:{"0":59.43685}};
      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 ff65e9d14b602f..9d6ae3484df6eb 100644
      --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js
      +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js
      @@ -1 +1 @@
      -module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.14933,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.05247,"109":0.43992,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0,"118":0,"119":0,"120":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"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.12915,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0.2018,"109":0.1453,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0.04036,"117":0,"118":0,"119":0,"120":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0.3471,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":0,"117":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0.2018,"15.2-15.3":0.27848,"15.4":0.04036,"15.5":0.0565,"15.6":1.13412,"16.0":0.02825,"16.1":0.70226,"16.2":0.39553,"16.3":0.64576,"16.4":0.23812,"16.5":1.19869,"16.6":8.24555,"17.0":0.85563,"17.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.01691,"14.5-14.8":0,"15.0-15.1":0.37191,"15.2-15.3":2.03706,"15.4":0.01691,"15.5":0.18596,"15.6-15.7":1.00585,"16.0":3.27114,"16.1":5.55333,"16.2":2.73863,"16.3":4.17556,"16.4":0.63394,"16.5":2.28219,"16.6":53.59762,"17.0":6.70287,"17.1":0.01691},P:{"4":0,"20":0,"21":0,"22":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,"19.0":0.30416},I:{"0":0,"3":0,"4":0,"2.1":0,"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},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0.42121},R:{_:"0"},M:{"0":0.19085},Q:{"13.1":0},O:{"0":0},H:{"0":0}};
      +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 3.5 3.6"},D:{"117":0.01832,"118":0.0989,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 119 120 121 122"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"117":0.01099,"118":0.13919,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 17.2","15.1":0.58608,"15.2-15.3":1.25275,"15.4":0.0293,"15.5":0.36996,"15.6":2.09157,"16.0":0.17949,"16.1":1.57143,"16.2":0.63736,"16.3":2.53846,"16.4":1.19414,"16.5":3.24542,"16.6":11.05127,"17.0":10.08424,"17.1":0.95604},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.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.17713,"15.2-15.3":0.80972,"15.4":0.15182,"15.5":0.13917,"15.6-15.7":1.20193,"16.0":2.27102,"16.1":4.02331,"16.2":1.3158,"16.3":3.06809,"16.4":0.24671,"16.5":1.83453,"16.6-16.7":34.52708,"17.0":11.07043,"17.1":2.41652,"17.2":0.01265},P:{_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.03169,_:"3.0-3.1"},R:{_:"0"},M:{_:"0"},Q:{_:"13.1"},O:{"0":0.01268},H:{"0":0},L:{"0":0.13368}};
      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 bd3fa3b97f78c7..75cc49f70292bb 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.00604,"36":0.00604,"43":0.00604,"48":0.00604,"52":0.06038,"54":0.00604,"56":0.01811,"72":0.02717,"78":0.00604,"83":0.00604,"88":0.00604,"102":0.0151,"105":0.00302,"106":0.00302,"107":0.00302,"108":0.00604,"109":0.00302,"110":0.00604,"111":0.00604,"112":0.00302,"113":0.01208,"114":0.00604,"115":0.2385,"116":0.05736,"117":0.69739,"118":0.06642,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 47 49 50 51 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 119 120 3.5 3.6"},D:{"34":0.00906,"35":0.00302,"38":0.02415,"47":0.00302,"48":0.00906,"49":0.02717,"50":0.0151,"53":0.0151,"55":0.00906,"56":0.00604,"57":0.00302,"58":0.00302,"59":0.00302,"61":0.00604,"62":0.00302,"63":0.00604,"65":0.00302,"66":0.00906,"67":0.00302,"68":0.01208,"69":0.09057,"70":0.14189,"71":0.00906,"72":0.00604,"73":0.07246,"74":0.01208,"75":0.02113,"76":0.00604,"77":0.01811,"78":0.02415,"79":0.14793,"80":0.02113,"81":0.02415,"83":0.03925,"84":0.01208,"85":0.02415,"86":0.05434,"87":0.06642,"88":0.01811,"89":0.02113,"90":0.03019,"91":0.03019,"92":0.03019,"93":0.01208,"94":0.03321,"95":0.01208,"96":0.0151,"97":0.03019,"98":0.12378,"99":0.06038,"100":0.03321,"101":0.02415,"102":0.02415,"103":0.06944,"104":0.02415,"105":0.03019,"106":0.03925,"107":0.0483,"108":0.06944,"109":2.24312,"110":0.03623,"111":0.07849,"112":0.08453,"113":0.09963,"114":0.32001,"115":0.38945,"116":11.76806,"117":2.92239,"118":0.01811,"119":0.00302,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 39 40 41 42 43 44 45 46 51 52 54 60 64 120"},F:{"28":0.00906,"36":0.00604,"46":0.02415,"77":0.00604,"95":0.02717,"99":0.00302,"100":0.03321,"101":0.13586,"102":0.15699,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00302,"18":0.0151,"90":0.00302,"92":0.01208,"106":0.00302,"107":0.00906,"108":0.01208,"109":0.0634,"110":0.01208,"111":0.01208,"112":0.0151,"113":0.03623,"114":0.0483,"115":0.08151,"116":1.56988,"117":1.11703,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105"},E:{"4":0,"13":0.00906,"14":0.03623,"15":0.00604,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.1","5.1":0.00906,"9.1":0.02113,"12.1":0.00604,"13.1":0.03623,"14.1":0.08755,"15.1":0.0151,"15.2-15.3":0.01208,"15.4":0.03019,"15.5":0.0483,"15.6":0.18114,"16.0":0.0151,"16.1":0.05736,"16.2":0.04529,"16.3":0.12076,"16.4":0.03925,"16.5":0.12982,"16.6":0.87249,"17.0":0.04529},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00485,"5.0-5.1":0.00485,"6.0-6.1":0.00242,"7.0-7.1":0.01575,"8.1-8.4":0.00485,"9.0-9.2":0.01212,"9.3":0.0315,"10.0-10.2":0.00363,"10.3":0.06179,"11.0-11.2":0.0206,"11.3-11.4":0.01333,"12.0-12.1":0.01696,"12.2-12.5":0.27017,"13.0-13.1":0.00848,"13.2":0.01454,"13.3":0.10661,"13.4-13.7":0.07269,"14.0-14.4":0.19748,"14.5-14.8":0.29803,"15.0-15.1":0.12115,"15.2-15.3":0.126,"15.4":0.15871,"15.5":0.19263,"15.6-15.7":1.14609,"16.0":0.41797,"16.1":0.66633,"16.2":0.37799,"16.3":0.69177,"16.4":0.21202,"16.5":0.57547,"16.6":5.64323,"17.0":0.51732,"17.1":0},P:{"4":0.19818,"20":0.08345,"21":0.16689,"22":1.87754,"5.0-5.4":0.02086,"6.2-6.4":0,"7.2-7.4":0.05215,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02086,"12.0":0,"13.0":0.02086,"14.0":0.02086,"15.0":0.01043,"16.0":0.04172,"17.0":0.05215,"18.0":0.04172,"19.0":0.07302},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0641,"4.4":0,"4.4.3-4.4.4":0.64098},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01348,"9":0.09435,"11":0.84919,_:"6 7 10 5.5"},S:{"2.5":0.12566,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":51.89047},R:{_:"0"},M:{"0":0.16754},Q:{"13.1":0.38396},O:{"0":2.00355},H:{"0":1.20948}};
      +module.exports={C:{"34":0.00604,"36":0.00604,"43":0.00604,"48":0.00604,"52":0.06042,"54":0.00906,"56":0.02719,"72":0.00604,"78":0.00302,"88":0.00302,"102":0.00604,"106":0.00302,"107":0.00302,"108":0.00604,"109":0.00302,"110":0.00604,"111":0.00604,"112":0.00302,"113":0.00906,"114":0.00604,"115":0.23262,"116":0.02115,"117":0.03323,"118":0.6616,"119":0.13292,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 47 49 50 51 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 120 121 122 3.5 3.6"},D:{"34":0.01208,"35":0.00302,"38":0.02417,"47":0.00604,"48":0.00906,"49":0.02417,"50":0.01511,"53":0.01511,"55":0.00604,"56":0.00604,"57":0.00604,"58":0.00302,"61":0.00604,"63":0.00604,"65":0.00302,"66":0.00906,"67":0.00604,"68":0.00906,"69":0.08157,"70":0.10876,"71":0.00604,"72":0.00604,"73":0.07855,"74":0.01208,"75":0.01208,"76":0.00906,"77":0.02115,"78":0.01813,"79":0.14803,"80":0.02417,"81":0.01813,"83":0.03625,"84":0.00906,"85":0.02417,"86":0.04834,"87":0.06948,"88":0.00906,"89":0.02417,"90":0.02115,"91":0.02115,"92":0.06344,"93":0.00906,"94":0.03625,"95":0.01511,"96":0.01511,"97":0.02719,"98":0.12386,"99":0.05136,"100":0.02719,"101":0.02417,"102":0.02417,"103":0.06344,"104":0.01813,"105":0.03021,"106":0.03927,"107":0.04532,"108":0.06948,"109":2.24762,"110":0.03323,"111":0.0725,"112":0.06646,"113":0.06042,"114":0.19637,"115":0.13595,"116":0.5891,"117":7.5525,"118":7.51625,"119":0.01813,"120":0.00906,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 39 40 41 42 43 44 45 46 51 52 54 59 60 62 64 121 122"},F:{"28":0.00906,"36":0.00604,"46":0.02719,"95":0.02719,"101":0.00302,"102":0.287,"103":0.09365,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00604,"17":0.00302,"18":0.01208,"92":0.01511,"100":0.00302,"106":0.00302,"107":0.00906,"108":0.01208,"109":0.06344,"110":0.01208,"111":0.01208,"112":0.00906,"113":0.03021,"114":0.03021,"115":0.02719,"116":0.0725,"117":1.38966,"118":1.35643,"119":0.00604,_:"13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"13":0.00906,"14":0.03323,"15":0.00604,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.2","5.1":0.00604,"9.1":0.00302,"12.1":0.00604,"13.1":0.03323,"14.1":0.08459,"15.1":0.01511,"15.2-15.3":0.01208,"15.4":0.03021,"15.5":0.04532,"15.6":0.17824,"16.0":0.01511,"16.1":0.05136,"16.2":0.04229,"16.3":0.11178,"16.4":0.03625,"16.5":0.09365,"16.6":0.74317,"17.0":0.21449,"17.1":0.01511},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00354,"5.0-5.1":0.00472,"6.0-6.1":0.00236,"7.0-7.1":0.01416,"8.1-8.4":0.00354,"9.0-9.2":0.0118,"9.3":0.03186,"10.0-10.2":0.00472,"10.3":0.05901,"11.0-11.2":0.03186,"11.3-11.4":0.0118,"12.0-12.1":0.01534,"12.2-12.5":0.25963,"13.0-13.1":0.00826,"13.2":0.06019,"13.3":0.01888,"13.4-13.7":0.06255,"14.0-14.4":0.17702,"14.5-14.8":0.26435,"15.0-15.1":0.10739,"15.2-15.3":0.11683,"15.4":0.14162,"15.5":0.17466,"15.6-15.7":1.10108,"16.0":0.35995,"16.1":0.58653,"16.2":0.32454,"16.3":0.59007,"16.4":0.17348,"16.5":0.42249,"16.6-16.7":4.65097,"17.0":1.88352,"17.1":0.11093,"17.2":0.00236},P:{"4":0.20226,"20":0.06387,"21":0.12774,"22":1.71385,"23":0.33,"5.0-5.4":0.02129,_:"6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.05323,"11.1-11.2":0.01065,"13.0":0.02129,"14.0":0.01065,"15.0":0.01065,"16.0":0.03194,"17.0":0.04258,"18.0":0.03194,"19.0":0.06387},I:{"0":0.59863,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00012,"4.4":0,"4.4.3-4.4.4":0.00108},A:{"8":0.01279,"9":0.08951,"11":0.83119,_:"6 7 10 5.5"},K:{"0":1.29205,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.13958,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.15354},Q:{"13.1":0.38385},O:{"0":1.85641},H:{"0":0.02},L:{"0":51.77681}};
      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 d4a6573578cb9a..84587c00a2fdc6 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:{"12":0.00482,"45":0.01928,"48":0.02891,"50":0.0241,"52":0.06747,"53":0.03373,"56":0.00964,"59":0.01446,"68":0.00482,"78":0.03373,"83":0.00482,"87":0.00482,"88":0.00482,"91":0.00964,"102":0.2024,"103":0.09638,"104":0.00964,"105":0.00964,"106":0.00964,"107":0.00964,"108":0.01446,"109":0.01446,"110":0.00964,"111":0.00964,"112":0.01446,"113":0.02891,"114":0.0241,"115":0.54937,"116":0.17348,"117":3.2962,"118":0.30842,_:"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 46 47 49 51 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 89 90 92 93 94 95 96 97 98 99 100 101 119 120 3.5 3.6"},D:{"34":0.00482,"38":0.00964,"43":0.00482,"47":0.00482,"48":0.00482,"49":0.03855,"51":0.00482,"52":0.00964,"56":0.00964,"60":0.04337,"63":0.00964,"66":0.05301,"68":0.00964,"69":0.00482,"70":0.00964,"71":0.00964,"72":0.00964,"73":0.00964,"74":0.01928,"75":0.01928,"76":0.01928,"77":0.01928,"78":0.03855,"79":0.11084,"80":0.02891,"81":0.03373,"83":0.0241,"84":0.01446,"85":0.08674,"86":0.03855,"87":0.06747,"88":0.02891,"89":0.02891,"90":0.05301,"91":0.05301,"92":0.0241,"93":0.07229,"94":0.04337,"95":0.01446,"96":0.03855,"97":0.01446,"98":0.01446,"99":0.02891,"100":0.02891,"101":0.03373,"102":0.04819,"103":0.16385,"104":0.05301,"105":0.06265,"106":0.10602,"107":0.09156,"108":0.11084,"109":1.57581,"110":0.06747,"111":0.08674,"112":0.13011,"113":0.13493,"114":0.52527,"115":0.84814,"116":17.47369,"117":4.94429,"118":0.00964,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 50 53 54 55 57 58 59 61 62 64 65 67 119 120"},F:{"31":0.00964,"36":0.00482,"40":0.00964,"46":0.01446,"76":0.00964,"77":0.00482,"85":0.00964,"95":0.10602,"99":0.01928,"100":0.24577,"101":0.67948,"102":1.25294,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00482,"17":0.00964,"18":0.00482,"90":0.01928,"92":0.00964,"103":0.00482,"106":0.00482,"107":0.01446,"108":0.01446,"109":0.09638,"110":0.01446,"111":0.01928,"112":0.01928,"113":0.0241,"114":0.1012,"115":0.21204,"116":3.23837,"117":2.66009,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 104 105"},E:{"4":0,"13":0.00964,"14":0.05783,"15":0.00964,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.1","9.1":0.02891,"11.1":0.01446,"12.1":0.0241,"13.1":0.09156,"14.1":0.16867,"15.1":0.0241,"15.2-15.3":0.01928,"15.4":0.04337,"15.5":0.06265,"15.6":0.3807,"16.0":0.04819,"16.1":0.1012,"16.2":0.1012,"16.3":0.24095,"16.4":0.11084,"16.5":0.34215,"16.6":1.92278,"17.0":0.12048},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00337,"6.0-6.1":0,"7.0-7.1":0.00843,"8.1-8.4":0,"9.0-9.2":0.01011,"9.3":0.05224,"10.0-10.2":0,"10.3":0.05392,"11.0-11.2":0.02359,"11.3-11.4":0.02865,"12.0-12.1":0.00843,"12.2-12.5":0.2477,"13.0-13.1":0.00506,"13.2":0.00337,"13.3":0.48865,"13.4-13.7":0.03033,"14.0-14.4":0.08425,"14.5-14.8":0.18535,"15.0-15.1":0.06066,"15.2-15.3":0.07414,"15.4":0.07414,"15.5":0.13312,"15.6-15.7":1.06829,"16.0":0.50382,"16.1":0.90148,"16.2":0.4162,"16.3":0.81386,"16.4":0.14154,"16.5":0.46001,"16.6":9.63318,"17.0":1.11379,"17.1":0.00337},P:{"4":0.04264,"20":0.07461,"21":0.15989,"22":2.94188,"5.0-5.4":0.02086,"6.2-6.4":0,"7.2-7.4":0.05215,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01066,"12.0":0,"13.0":0.01066,"14.0":0.02086,"15.0":0.01043,"16.0":0.01066,"17.0":0.02132,"18.0":0.02132,"19.0":0.0533},I:{"0":0,"3":0.02176,"4":0.00484,"2.1":0,"2.2":0.00242,"2.3":0,"4.1":0.00967,"4.2-4.3":0.00967,"4.4":0,"4.4.3-4.4.4":0.06045},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01496,"9":0.01496,"11":0.11466,_:"6 7 10 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":31.10672},R:{_:"0"},M:{"0":0.45593},Q:{"13.1":0},O:{"0":0.15543},H:{"0":0.51993}};
      +module.exports={C:{"12":0.00468,"48":0.04212,"50":0.00936,"52":0.05616,"53":0.01404,"56":0.01404,"59":0.00936,"68":0.00468,"78":0.02808,"83":0.00468,"87":0.00468,"88":0.00468,"91":0.00936,"102":0.117,"103":0.1638,"104":0.00936,"105":0.00936,"106":0.00468,"107":0.00936,"108":0.01404,"109":0.01404,"110":0.00936,"111":0.00936,"112":0.00936,"113":0.0234,"114":0.01404,"115":0.57564,"116":0.03276,"117":0.12168,"118":3.00924,"119":0.57096,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 89 90 92 93 94 95 96 97 98 99 100 101 120 121 122 3.5 3.6"},D:{"38":0.00936,"43":0.00468,"49":0.03276,"52":0.00936,"56":0.00468,"60":0.03744,"63":0.00936,"66":0.05148,"68":0.00468,"70":0.00468,"71":0.00468,"72":0.00936,"73":0.00936,"74":0.00936,"75":0.00936,"76":0.00936,"77":0.00936,"78":0.02808,"79":0.09828,"80":0.01872,"81":0.0234,"83":0.0234,"84":0.01404,"85":0.10764,"86":0.03276,"87":0.06084,"88":0.0234,"89":0.0234,"90":0.01872,"91":0.03276,"92":0.01872,"93":0.06084,"94":0.03744,"95":0.01404,"96":0.02808,"97":0.00936,"98":0.01404,"99":0.02808,"100":0.0234,"101":0.03276,"102":0.03744,"103":0.1404,"104":0.10764,"105":0.04212,"106":0.0936,"107":0.0702,"108":0.08424,"109":1.41804,"110":0.0468,"111":0.07956,"112":0.0936,"113":0.08424,"114":0.26676,"115":0.2106,"116":1.38996,"117":11.19456,"118":10.59084,"119":0.01872,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 53 54 55 57 58 59 61 62 64 65 67 69 120 121 122"},F:{"31":0.00936,"40":0.00936,"46":0.01404,"85":0.00936,"95":0.09828,"99":0.00468,"100":0.00936,"101":0.01404,"102":2.1996,"103":0.38376,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00468,"17":0.00468,"90":0.00936,"92":0.00936,"106":0.00468,"107":0.01404,"108":0.01404,"109":0.08424,"110":0.01404,"111":0.01404,"112":0.0234,"113":0.01872,"114":0.04212,"115":0.04212,"116":0.12636,"117":2.80332,"118":2.6676,"119":0.00936,_:"12 13 14 16 18 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105"},E:{"13":0.00936,"14":0.05616,"15":0.01404,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.0234,"11.1":0.01404,"12.1":0.0234,"13.1":0.08892,"14.1":0.16848,"15.1":0.02808,"15.2-15.3":0.0234,"15.4":0.04212,"15.5":0.06084,"15.6":0.3744,"16.0":0.05148,"16.1":0.10296,"16.2":0.09828,"16.3":0.22932,"16.4":0.10296,"16.5":0.26676,"16.6":1.47888,"17.0":0.6552,"17.1":0.04212},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00168,"6.0-6.1":0.00168,"7.0-7.1":0.00842,"8.1-8.4":0,"9.0-9.2":0.00842,"9.3":0.04549,"10.0-10.2":0,"10.3":0.0556,"11.0-11.2":0.04886,"11.3-11.4":0.02527,"12.0-12.1":0.00842,"12.2-12.5":0.21734,"13.0-13.1":0.00674,"13.2":0.00505,"13.3":0.01011,"13.4-13.7":0.02696,"14.0-14.4":0.07582,"14.5-14.8":0.16343,"15.0-15.1":0.05392,"15.2-15.3":0.06908,"15.4":0.07076,"15.5":0.11794,"15.6-15.7":1.0008,"16.0":0.48355,"16.1":0.86769,"16.2":0.39257,"16.3":0.75313,"16.4":0.12468,"16.5":0.34708,"16.6-16.7":8.34335,"17.0":3.29555,"17.1":0.19039,"17.2":0.00505},P:{"4":0.0218,"20":0.06539,"21":0.11988,"22":2.4957,"23":0.54491,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.0109,"13.0":0.0109,"16.0":0.0109,"17.0":0.0218,"18.0":0.0218,"19.0":0.04359},I:{"0":0.0742,"3":0,"4":0.00001,"2.1":0,"2.2":0.00001,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00016},A:{"8":0.00975,"9":0.00975,"11":0.0975,_:"6 7 10 5.5"},K:{"0":0.53732,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.44688},Q:{_:"13.1"},O:{"0":0.13832},H:{"0":0},L:{"0":32.28952}};
      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 919ff4040c4b1b..13135c39787ed1 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.0066,"11":0.01981,"44":0.01321,"48":0.02642,"52":0.03302,"53":0.0066,"59":0.0066,"78":0.07925,"89":0.01321,"91":0.0066,"94":0.01321,"102":0.11227,"108":0.01321,"109":0.01321,"110":0.01321,"111":0.01321,"112":0.19152,"113":0.01981,"114":0.01981,"115":0.26416,"116":0.1651,"117":1.73025,"118":0.12548,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 50 51 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 93 95 96 97 98 99 100 101 103 104 105 106 107 119 120 3.5 3.6"},D:{"48":0.03962,"49":0.04623,"51":0.0066,"56":0.09246,"58":0.01321,"60":0.0066,"62":0.0066,"63":0.0066,"65":0.03302,"66":0.02642,"67":0.0066,"68":0.07925,"69":0.07264,"70":0.05944,"71":0.05944,"72":0.08585,"73":0.02642,"74":0.09906,"75":0.09246,"76":0.31699,"77":0.07264,"78":0.09246,"79":0.37643,"80":0.1651,"81":0.13868,"83":0.29718,"84":0.09246,"85":0.19152,"86":0.19152,"87":0.17831,"88":0.13868,"89":0.09906,"90":0.13868,"91":0.10566,"92":0.03302,"93":0.34341,"94":0.01981,"95":0.01981,"96":0.02642,"97":0.03302,"98":0.03962,"99":0.03302,"100":0.04623,"101":0.05944,"102":0.05944,"103":0.48209,"104":0.07264,"105":0.07264,"106":0.05283,"107":0.41605,"108":0.51511,"109":1.22174,"110":0.4953,"111":0.89814,"112":0.57455,"113":0.25756,"114":1.86233,"115":3.51333,"116":19.20443,"117":4.38506,"118":0.03302,"119":0.03302,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 52 53 54 55 57 59 61 64 120"},F:{"53":0.01321,"54":0.01321,"55":0.01321,"76":0.0066,"89":0.01981,"95":0.03302,"97":0.37643,"98":0.0066,"99":0.05283,"100":0.58115,"101":1.06324,"102":0.79908,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0066,"18":0.0066,"79":0.0066,"80":0.01981,"81":0.01981,"83":0.02642,"84":0.01981,"85":0.01321,"86":0.01981,"87":0.01981,"88":0.01321,"89":0.01321,"90":0.01321,"92":0.01321,"99":0.04623,"108":0.0066,"109":0.07925,"110":0.01321,"111":0.38303,"112":0.38303,"113":0.01321,"114":0.44247,"115":0.20472,"116":3.6322,"117":2.1529,_:"13 14 15 16 17 91 93 94 95 96 97 98 100 101 102 103 104 105 106 107"},E:{"4":0,"9":0.0066,"13":0.03962,"14":0.20472,"15":0.03962,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.1","9.1":0.54153,"11.1":0.0066,"12.1":0.05944,"13.1":0.31699,"14.1":0.54153,"15.1":0.09246,"15.2-15.3":0.07925,"15.4":0.15189,"15.5":0.24435,"15.6":1.23495,"16.0":0.1651,"16.1":0.36982,"16.2":0.36982,"16.3":0.8321,"16.4":0.46888,"16.5":1.01702,"16.6":5.50113,"17.0":0.17831},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00674,"7.0-7.1":0.00337,"8.1-8.4":0.00169,"9.0-9.2":0.00843,"9.3":0.02866,"10.0-10.2":0,"10.3":0.0354,"11.0-11.2":0.01686,"11.3-11.4":0.01349,"12.0-12.1":0.01011,"12.2-12.5":0.15002,"13.0-13.1":0.00506,"13.2":0.00506,"13.3":0.01854,"13.4-13.7":0.03203,"14.0-14.4":0.08597,"14.5-14.8":0.15676,"15.0-15.1":0.05731,"15.2-15.3":0.07585,"15.4":0.07585,"15.5":0.12811,"15.6-15.7":0.85125,"16.0":0.36578,"16.1":0.88159,"16.2":0.41467,"16.3":0.7636,"16.4":0.11631,"16.5":0.40624,"16.6":11.17919,"17.0":0.75517,"17.1":0.00337},P:{"4":0.01113,"20":0.03338,"21":0.06677,"22":1.04604,"5.0-5.4":0.02086,"6.2-6.4":0,"7.2-7.4":0.05215,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01066,"12.0":0,"13.0":0.01066,"14.0":0.02086,"15.0":0.01043,"16.0":0.01066,"17.0":0.01113,"18.0":0.01113,"19.0":0.02226},I:{"0":0,"3":0.00611,"4":0.00815,"2.1":0.00306,"2.2":0.00917,"2.3":0.00204,"4.1":0.00407,"4.2-4.3":0.0275,"4.4":0,"4.4.3-4.4.4":0.03157},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00784,"9":0.02353,"11":0.09411,_:"6 7 10 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":15.69797},R:{_:"0"},M:{"0":0.30895},Q:{"13.1":0.01019},O:{"0":0.06111},H:{"0":0.19606}};
      +module.exports={C:{"4":0.00675,"11":0.03373,"38":0.00675,"44":0.01349,"48":0.03373,"50":0.01349,"52":0.03373,"53":0.00675,"54":0.01349,"55":0.00675,"56":0.00675,"57":0.01349,"58":0.00675,"59":0.01349,"60":0.01349,"61":0.01349,"62":0.00675,"63":0.01349,"65":0.00675,"68":0.00675,"78":0.09444,"83":0.01349,"91":0.00675,"94":0.01349,"102":0.04722,"108":0.00675,"109":0.01349,"110":0.01349,"111":0.02024,"112":0.01349,"113":0.01349,"114":0.02024,"115":0.27659,"116":0.02698,"117":0.1754,"118":1.67975,"119":0.27659,_:"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 45 46 47 49 51 64 66 67 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 98 99 100 101 103 104 105 106 107 120 121 122 3.5 3.6"},D:{"41":0.00675,"46":0.00675,"47":0.01349,"48":0.04048,"49":0.07421,"51":0.00675,"55":0.00675,"56":0.05397,"57":0.00675,"58":0.00675,"60":0.01349,"61":0.00675,"62":0.00675,"63":0.01349,"64":0.00675,"65":0.03373,"66":0.02698,"67":0.01349,"68":0.0877,"69":0.09444,"70":0.06746,"71":0.06071,"72":0.0877,"73":0.03373,"74":0.09444,"75":0.10119,"76":0.34405,"77":0.07421,"78":0.09444,"79":0.26984,"80":0.24286,"81":0.15516,"83":0.18214,"84":0.10119,"85":0.15516,"86":0.18889,"87":0.18214,"88":0.14167,"89":0.10119,"90":0.14167,"91":0.12143,"92":0.04048,"93":0.39801,"94":0.02698,"95":0.01349,"96":0.02024,"97":0.02698,"98":0.04722,"99":0.03373,"100":0.06071,"101":0.0877,"102":0.06071,"103":0.56666,"104":0.06071,"105":0.04722,"106":0.04722,"107":0.32381,"108":0.41151,"109":1.0996,"110":0.41825,"111":0.70158,"112":0.44524,"113":0.1754,"114":1.22777,"115":0.81627,"116":2.82657,"117":12.58129,"118":11.6301,"119":0.04048,"120":0.03373,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 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 50 52 53 54 59 121 122"},F:{"53":0.01349,"54":0.02024,"55":0.02024,"95":0.03373,"97":0.29682,"98":0.00675,"99":0.02024,"100":0.02024,"101":0.02698,"102":2.90078,"103":0.35754,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00675},B:{"12":0.01349,"15":0.01349,"16":0.00675,"17":0.00675,"18":0.01349,"79":0.00675,"80":0.02024,"81":0.02024,"83":0.02698,"84":0.02698,"85":0.01349,"86":0.02024,"87":0.12817,"88":0.01349,"89":0.02024,"90":0.01349,"92":0.02024,"95":0.01349,"99":0.05397,"107":0.00675,"108":0.00675,"109":0.0877,"110":0.01349,"111":0.30357,"112":0.30357,"113":0.01349,"114":0.04048,"115":0.06071,"116":0.15516,"117":4.10157,"118":2.7861,"119":0.00675,_:"13 14 91 93 94 96 97 98 100 101 102 103 104 105 106"},E:{"9":0.00675,"11":0.00675,"12":0.01349,"13":0.04722,"14":0.22936,"15":0.04048,_:"0 4 5 6 7 8 10 3.1 3.2 5.1 6.1 7.1 10.1 17.2","9.1":0.5127,"11.1":0.01349,"12.1":0.06071,"13.1":0.31032,"14.1":0.52619,"15.1":0.09444,"15.2-15.3":0.07421,"15.4":0.15516,"15.5":0.2496,"15.6":1.22103,"16.0":0.14841,"16.1":0.37778,"16.2":0.35079,"16.3":0.80277,"16.4":0.35079,"16.5":0.97817,"16.6":5.01902,"17.0":1.21428,"17.1":0.08095},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0016,"5.0-5.1":0,"6.0-6.1":0.01122,"7.0-7.1":0.00321,"8.1-8.4":0.0016,"9.0-9.2":0.00802,"9.3":0.02565,"10.0-10.2":0,"10.3":0.03206,"11.0-11.2":0.05291,"11.3-11.4":0.01283,"12.0-12.1":0.00962,"12.2-12.5":0.13467,"13.0-13.1":0.00321,"13.2":0.02084,"13.3":0.00962,"13.4-13.7":0.02886,"14.0-14.4":0.07696,"14.5-14.8":0.13467,"15.0-15.1":0.0513,"15.2-15.3":0.06734,"15.4":0.06734,"15.5":0.11383,"15.6-15.7":0.76154,"16.0":0.2966,"16.1":0.77757,"16.2":0.3447,"16.3":0.62847,"16.4":0.09139,"16.5":0.29019,"16.6-16.7":9.13048,"17.0":2.64055,"17.1":0.17475,"17.2":0.00641},P:{"4":0.02297,"20":0.02297,"21":0.05742,"22":0.8269,"23":0.20672,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","17.0":0.01148,"19.0":0.02297},I:{"0":0.11258,"3":0.00006,"4":0.00009,"2.1":0.00003,"2.2":0.00028,"2.3":0.00002,"4.1":0.00003,"4.2-4.3":0.00031,"4.4":0,"4.4.3-4.4.4":0.00032},A:{"9":0.01661,"11":0.09133,_:"6 7 8 10 5.5"},K:{"0":0.20826,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00325,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.30262},Q:{"13.1":0.00651},O:{"0":0.05532},H:{"0":0},L:{"0":14.99395}};
      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 13df5df4b86b38..b0e0ac1f035f0f 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.07274,"34":0.0052,"48":0.0052,"52":0.02078,"54":0.01039,"59":0.0052,"78":0.03118,"83":0.0052,"87":0.0052,"102":0.05716,"103":0.0052,"108":0.0052,"109":0.01039,"110":0.0052,"111":0.01039,"113":0.01559,"114":0.02598,"115":0.24941,"116":0.15588,"117":1.76144,"118":0.15068,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 112 119 120 3.5 3.6"},D:{"25":0.02078,"26":0.01039,"34":0.02598,"38":0.08314,"39":0.0052,"40":0.0052,"41":0.0052,"42":0.0052,"43":0.01039,"44":0.01039,"45":0.01039,"46":0.01039,"47":0.01039,"48":0.0052,"49":0.03118,"50":0.0052,"51":0.01039,"52":0.01559,"53":0.01039,"55":0.01039,"56":0.01039,"57":0.0052,"58":0.0052,"59":0.03118,"60":0.01039,"65":0.0052,"66":0.04676,"67":0.02598,"68":0.01039,"69":0.17147,"70":0.0052,"74":0.01039,"75":0.01039,"76":0.0052,"78":0.01039,"79":0.10392,"80":0.01039,"81":0.03637,"83":0.01039,"85":0.02598,"86":0.03118,"87":0.06755,"88":0.04676,"89":0.01559,"90":0.02078,"91":0.01559,"92":0.01559,"93":0.10912,"94":0.01559,"95":0.0052,"96":0.01559,"97":0.01559,"98":0.02078,"99":0.03637,"100":0.02598,"101":0.04676,"102":0.03637,"103":0.24421,"104":0.05196,"105":0.03118,"106":0.04676,"107":0.07794,"108":0.10392,"109":0.87812,"110":0.27019,"111":0.08833,"112":0.16108,"113":0.22343,"114":0.76381,"115":1.31978,"116":20.83076,"117":4.98296,"118":0.02598,"119":0.0052,_:"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 54 61 62 63 64 71 72 73 77 84 120"},F:{"28":0.0052,"46":0.03637,"95":0.01559,"99":0.01559,"100":0.17147,"101":0.32735,"102":0.43646,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01559,"18":0.0052,"85":0.0052,"92":0.0052,"105":0.0052,"107":0.01039,"108":0.01559,"109":0.07274,"110":0.01039,"111":0.01559,"112":0.02078,"113":0.03118,"114":0.09872,"115":0.22343,"116":3.58004,"117":2.49408,_:"12 13 14 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106"},E:{"4":0,"9":0.01039,"13":0.03118,"14":0.15068,"15":0.03118,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.1","11.1":0.01039,"12.1":0.05196,"13.1":0.19225,"14.1":0.3949,"15.1":0.05716,"15.2-15.3":0.06235,"15.4":0.10392,"15.5":0.16627,"15.6":0.93008,"16.0":0.08314,"16.1":0.24941,"16.2":0.21304,"16.3":0.54558,"16.4":0.19745,"16.5":0.57156,"16.6":4.43219,"17.0":0.15068},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00727,"6.0-6.1":0.01212,"7.0-7.1":0.00727,"8.1-8.4":0.01212,"9.0-9.2":0.00727,"9.3":0.08487,"10.0-10.2":0.00242,"10.3":0.12852,"11.0-11.2":0.08487,"11.3-11.4":0.0582,"12.0-12.1":0.0291,"12.2-12.5":0.52861,"13.0-13.1":0.00485,"13.2":0.00485,"13.3":0.02667,"13.4-13.7":0.05335,"14.0-14.4":0.15034,"14.5-14.8":0.29098,"15.0-15.1":0.09942,"15.2-15.3":0.11397,"15.4":0.14549,"15.5":0.20126,"15.6-15.7":1.56886,"16.0":0.65955,"16.1":1.37973,"16.2":0.6547,"16.3":1.21969,"16.4":0.19641,"16.5":0.63531,"16.6":14.67265,"17.0":0.94083,"17.1":0},P:{"4":0.21482,"20":0.07519,"21":0.17186,"22":2.58862,"5.0-5.4":0.03222,"6.2-6.4":0,"7.2-7.4":0.05215,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01066,"12.0":0,"13.0":0.02148,"14.0":0.01074,"15.0":0.01043,"16.0":0.02148,"17.0":0.02148,"18.0":0.02148,"19.0":0.05371},I:{"0":0,"3":0,"4":0.00747,"2.1":0.00427,"2.2":0.00427,"2.3":0.00534,"4.1":0.00427,"4.2-4.3":0.00961,"4.4":0,"4.4.3-4.4.4":0.03203},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06153,"9":0.04923,"11":0.12306,_:"6 7 10 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":20.4107},R:{_:"0"},M:{"0":0.40354},Q:{"13.1":0.00961},O:{"0":0.07206},H:{"0":0.19102}};
      +module.exports={C:{"11":0.03137,"34":0.00523,"48":0.00523,"52":0.02092,"54":0.01046,"59":0.00523,"78":0.02615,"83":0.00523,"87":0.01046,"102":0.02092,"103":0.00523,"109":0.00523,"110":0.00523,"113":0.01046,"114":0.02092,"115":0.25099,"116":0.02092,"117":0.13073,"118":1.60007,"119":0.29282,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 111 112 120 121 122 3.5 3.6"},D:{"25":0.02092,"26":0.00523,"34":0.02092,"38":0.07321,"39":0.00523,"40":0.00523,"41":0.01046,"42":0.00523,"43":0.01046,"44":0.01046,"45":0.01046,"46":0.01046,"47":0.01046,"48":0.00523,"49":0.03137,"50":0.00523,"51":0.01046,"52":0.01569,"53":0.01046,"54":0.00523,"55":0.01046,"56":0.01046,"57":0.00523,"58":0.00523,"59":0.02615,"60":0.01046,"65":0.01046,"66":0.04706,"67":0.03137,"68":0.00523,"69":0.22485,"74":0.00523,"75":0.00523,"76":0.00523,"78":0.00523,"79":0.09412,"80":0.01046,"81":0.03137,"83":0.01569,"85":0.02615,"86":0.0366,"87":0.08366,"88":0.03137,"89":0.01046,"90":0.02092,"91":0.02092,"92":0.01046,"93":0.02615,"94":0.01569,"95":0.01046,"96":0.02615,"97":0.02092,"98":0.02092,"99":0.0366,"100":0.0366,"101":0.05752,"102":0.0366,"103":0.24576,"104":0.05229,"105":0.02615,"106":0.02615,"107":0.05752,"108":0.09935,"109":0.80527,"110":0.05752,"111":0.07321,"112":0.09412,"113":0.13073,"114":0.40263,"115":0.42878,"116":2.53607,"117":13.74704,"118":12.0267,"119":0.02615,"120":0.01569,_:"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 61 62 63 64 70 71 72 73 77 84 121 122"},F:{"28":0.00523,"46":0.03137,"95":0.01569,"100":0.01046,"101":0.01569,"102":0.89416,"103":0.11504,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00523,"85":0.00523,"92":0.00523,"106":0.01046,"107":0.00523,"108":0.01046,"109":0.06798,"110":0.01046,"111":0.01046,"112":0.01569,"113":0.02615,"114":0.05229,"115":0.0366,"116":0.14641,"117":3.13217,"118":2.9387,"119":0.01046,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105"},E:{"13":0.03137,"14":0.13595,"15":0.03137,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.2","11.1":0.01046,"12.1":0.04183,"13.1":0.18824,"14.1":0.36603,"15.1":0.06275,"15.2-15.3":0.06798,"15.4":0.09412,"15.5":0.17256,"15.6":0.87847,"16.0":0.08366,"16.1":0.24053,"16.2":0.18302,"16.3":0.50721,"16.4":0.17779,"16.5":0.46015,"16.6":3.76488,"17.0":0.94122,"17.1":0.06798},G:{"8":0.0024,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00719,"6.0-6.1":0.01438,"7.0-7.1":0.00719,"8.1-8.4":0.00479,"9.0-9.2":0.00958,"9.3":0.08626,"10.0-10.2":0.0024,"10.3":0.11501,"11.0-11.2":0.1198,"11.3-11.4":0.05271,"12.0-12.1":0.02396,"12.2-12.5":0.4816,"13.0-13.1":0.00479,"13.2":0.00479,"13.3":0.02156,"13.4-13.7":0.04792,"14.0-14.4":0.12938,"14.5-14.8":0.242,"15.0-15.1":0.09105,"15.2-15.3":0.09824,"15.4":0.12699,"15.5":0.18928,"15.6-15.7":1.44718,"16.0":0.62536,"16.1":1.28665,"16.2":0.57744,"16.3":1.09976,"16.4":0.16293,"16.5":0.48878,"16.6-16.7":12.99828,"17.0":3.17469,"17.1":0.19168,"17.2":0.00719},P:{"4":0.20048,"20":0.06683,"21":0.13365,"22":2.16075,"23":0.47893,"5.0-5.4":0.02228,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0","13.0":0.01114,"14.0":0.01114,"16.0":0.02228,"17.0":0.02228,"18.0":0.02228,"19.0":0.04455},I:{"0":0.04751,"3":0,"4":0.00002,"2.1":0,"2.2":0.00001,"2.3":0.00001,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.03137,"9":0.04706,"11":0.10981,_:"6 7 10 5.5"},K:{"0":0.17653,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.37691},Q:{"13.1":0.00477},O:{"0":0.05725},H:{"0":0},L:{"0":20.32629}};
      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 c85ef97360ace0..8180a57ecf9b8b 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:{"7":0.06306,"42":0.04504,"45":0.03153,"50":0.13062,"52":0.16214,"54":0.14413,"68":0.0045,"75":0.0045,"78":0.01351,"88":0.01351,"89":0.0045,"90":0.0045,"91":0.03153,"102":0.03153,"103":0.0045,"105":0.0045,"107":0.0045,"108":0.0045,"109":0.00901,"110":0.00901,"111":0.00901,"112":0.00901,"113":0.01351,"114":0.01802,"115":0.31078,"116":0.08107,"117":1.09898,"118":0.1126,_:"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 34 35 36 37 38 39 40 41 43 44 46 47 48 49 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 87 92 93 94 95 96 97 98 99 100 101 104 106 119 120 3.5 3.6"},D:{"38":0.01351,"47":0.06756,"49":0.03153,"51":0.00901,"55":0.06756,"57":0.14413,"60":0.41887,"62":0.01351,"66":0.00901,"68":0.01351,"69":0.00901,"70":0.0045,"71":0.0045,"72":0.0045,"73":0.0045,"74":0.00901,"75":0.01802,"76":0.01351,"77":0.01351,"78":0.00901,"79":0.1171,"80":0.02252,"81":0.03153,"83":0.01351,"84":0.00901,"85":0.02702,"86":0.02702,"87":0.05855,"88":0.02702,"89":0.01802,"90":0.02702,"91":0.46391,"92":0.02702,"93":0.01351,"94":0.01351,"95":0.00901,"96":0.01802,"97":0.01802,"98":0.01351,"99":0.02252,"100":0.02252,"101":0.01802,"102":0.03603,"103":0.08107,"104":0.02252,"105":0.04054,"106":0.04954,"107":0.07206,"108":0.08107,"109":3.0447,"110":0.04054,"111":0.05855,"112":0.08558,"113":0.10359,"114":0.25222,"115":0.40986,"116":19.43026,"117":6.03536,"118":0.01802,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 52 53 54 56 58 59 61 63 64 65 67 119 120"},F:{"28":0.00901,"36":0.0045,"77":0.0045,"85":0.0045,"94":0.0045,"95":0.08107,"99":0.01351,"100":0.52246,"101":0.98187,"102":1.53136,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 96 97 98 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.06756,"13":0.13512,"14":0.13512,"15":0.09008,"17":0.00901,"18":0.0045,"92":0.01802,"107":0.00901,"108":0.00901,"109":0.05855,"110":0.00901,"111":0.00901,"112":0.00901,"113":0.00901,"114":0.04054,"115":0.05405,"116":1.63946,"117":1.59892,_:"16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"4":0,"14":0.01351,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 17.1","5.1":0.01802,"9.1":0.02252,"13.1":0.02252,"14.1":0.03603,"15.1":0.0045,"15.2-15.3":0.0045,"15.4":0.00901,"15.5":0.01351,"15.6":0.07657,"16.0":0.00901,"16.1":0.02252,"16.2":0.01802,"16.3":0.04504,"16.4":0.02252,"16.5":0.07206,"16.6":0.32429,"17.0":0.03153},G:{"8":0,"3.2":0.00072,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0043,"6.0-6.1":0,"7.0-7.1":0.00287,"8.1-8.4":0.00072,"9.0-9.2":0.00072,"9.3":0.01648,"10.0-10.2":0,"10.3":0.01719,"11.0-11.2":0.02006,"11.3-11.4":0.01504,"12.0-12.1":0.01361,"12.2-12.5":0.08524,"13.0-13.1":0.00287,"13.2":0.00287,"13.3":0.12679,"13.4-13.7":0.01146,"14.0-14.4":0.03009,"14.5-14.8":0.07808,"15.0-15.1":0.01719,"15.2-15.3":0.02507,"15.4":0.02722,"15.5":0.04728,"15.6-15.7":0.6146,"16.0":0.18767,"16.1":0.33308,"16.2":0.15043,"16.3":0.32521,"16.4":0.04943,"16.5":0.17048,"16.6":4.15604,"17.0":0.51718,"17.1":0.00143},P:{"4":0.11473,"20":0.05215,"21":0.1043,"22":1.73141,"5.0-5.4":0.03222,"6.2-6.4":0,"7.2-7.4":0.15645,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02086,"12.0":0,"13.0":0.02086,"14.0":0.01074,"15.0":0.01043,"16.0":0.03129,"17.0":0.06258,"18.0":0.01043,"19.0":0.04172},I:{"0":0,"3":0,"4":0.00564,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00705,"4.2-4.3":0.00282,"4.4":0,"4.4.3-4.4.4":0.03946},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00918,"9":0.14685,"11":0.33041,_:"6 7 10 5.5"},S:{"2.5":0,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":46.75432},R:{_:"0"},M:{"0":0.1319},Q:{"13.1":0},O:{"0":0.06046},H:{"0":0.23935}};
      +module.exports={C:{"7":0.0737,"42":0.05067,"45":0.01382,"50":0.14739,"52":0.17503,"54":0.16582,"78":0.00921,"88":0.00921,"90":0.00461,"91":0.02764,"102":0.00921,"103":0.00461,"105":0.00461,"108":0.00461,"109":0.00461,"110":0.00461,"111":0.00921,"112":0.00461,"113":0.01382,"114":0.01382,"115":0.29018,"116":0.01382,"117":0.05527,"118":1.00411,"119":0.19806,_:"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 34 35 36 37 38 39 40 41 43 44 46 47 48 49 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 92 93 94 95 96 97 98 99 100 101 104 106 107 120 121 122 3.5 3.6"},D:{"38":0.01382,"47":0.0737,"49":0.02764,"51":0.00461,"55":0.0783,"57":0.16582,"60":0.47442,"62":0.00921,"66":0.00921,"68":0.00461,"74":0.00461,"75":0.00921,"76":0.00461,"77":0.00921,"78":0.00461,"79":0.09212,"80":0.00921,"81":0.02303,"83":0.00921,"84":0.00461,"85":0.01842,"86":0.01382,"87":0.04145,"88":0.01842,"89":0.00921,"90":0.00921,"91":0.48824,"92":0.02303,"93":0.01382,"94":0.00921,"95":0.00921,"96":0.01382,"97":0.01382,"98":0.01382,"99":0.01382,"100":0.01382,"101":0.01382,"102":0.01842,"103":0.0737,"104":0.01842,"105":0.03224,"106":0.04606,"107":0.05527,"108":0.0737,"109":2.84651,"110":0.03685,"111":0.05527,"112":0.06448,"113":0.04145,"114":0.14279,"115":0.12436,"116":0.8475,"117":12.64347,"118":13.5094,"119":0.02764,"120":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 35 36 37 39 40 41 42 43 44 45 46 48 50 52 53 54 56 58 59 61 63 64 65 67 69 70 71 72 73 121 122"},F:{"28":0.00461,"85":0.00461,"95":0.0737,"100":0.00461,"101":0.00921,"102":3.28408,"103":0.29478,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0737,"13":0.1566,"14":0.1566,"15":0.09212,"18":0.00461,"92":0.01842,"107":0.00921,"108":0.00921,"109":0.05988,"110":0.00461,"111":0.00921,"112":0.00921,"113":0.00921,"114":0.01842,"115":0.01842,"116":0.04606,"117":1.7687,"118":1.81016,"119":0.00921,_:"16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"14":0.01382,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 17.2","5.1":0.01382,"9.1":0.00461,"13.1":0.02303,"14.1":0.03685,"15.1":0.00461,"15.2-15.3":0.00461,"15.4":0.00921,"15.5":0.01382,"15.6":0.0737,"16.0":0.00921,"16.1":0.02303,"16.2":0.01382,"16.3":0.05067,"16.4":0.01842,"16.5":0.05067,"16.6":0.22109,"17.0":0.17042,"17.1":0.01382},G:{"8":0,"3.2":0.00072,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00288,"6.0-6.1":0,"7.0-7.1":0.00144,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01298,"10.0-10.2":0,"10.3":0.01154,"11.0-11.2":0.08654,"11.3-11.4":0.01731,"12.0-12.1":0.00865,"12.2-12.5":0.06707,"13.0-13.1":0.00144,"13.2":0.00144,"13.3":0.00361,"13.4-13.7":0.00793,"14.0-14.4":0.02452,"14.5-14.8":0.05914,"15.0-15.1":0.01587,"15.2-15.3":0.02091,"15.4":0.02524,"15.5":0.04399,"15.6-15.7":0.54882,"16.0":0.17092,"16.1":0.3065,"16.2":0.14135,"16.3":0.28487,"16.4":0.04616,"16.5":0.13414,"16.6-16.7":3.4905,"17.0":1.58443,"17.1":0.08221,"17.2":0.00288},P:{"4":0.07423,"20":0.04242,"21":0.07423,"22":1.41043,"23":0.29693,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.13786,"11.1-11.2":0.0106,"13.0":0.02121,"16.0":0.02121,"17.0":0.05302,"18.0":0.0106,"19.0":0.03181},I:{"0":0.04301,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.00469,"9":0.15938,"11":0.36563,_:"6 7 10 5.5"},K:{"0":0.23734,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},R:{_:"0"},M:{"0":0.12406},Q:{_:"13.1"},O:{"0":0.04855},H:{"0":0},L:{"0":45.37835}};
      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 7d6cfde21201ae..481274d2a5af63 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:{"11":0.00907,"43":0.00454,"44":0.00454,"45":0.00454,"48":0.01814,"50":0.00907,"52":0.05442,"53":0.00907,"54":0.00907,"56":0.01361,"59":0.00454,"72":0.01361,"78":0.03628,"83":0.00454,"88":0.00454,"89":0.00454,"91":0.00454,"94":0.00454,"102":0.11791,"103":0.02268,"105":0.00454,"106":0.00454,"107":0.00454,"108":0.00907,"109":0.00907,"110":0.00907,"111":0.00907,"112":0.06349,"113":0.01814,"114":0.01814,"115":0.31745,"116":0.11338,"117":1.56458,"118":0.13605,_:"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 46 47 49 51 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 90 92 93 95 96 97 98 99 100 101 104 119 120 3.5 3.6"},D:{"34":0.00454,"38":0.01361,"47":0.00907,"48":0.01814,"49":0.03628,"50":0.00907,"51":0.00454,"53":0.00907,"55":0.00907,"56":0.03175,"57":0.00907,"58":0.00907,"60":0.02721,"61":0.00454,"62":0.00454,"63":0.00454,"65":0.01361,"66":0.02268,"67":0.00454,"68":0.03175,"69":0.06349,"70":0.0771,"71":0.02268,"72":0.03175,"73":0.04082,"74":0.04082,"75":0.04082,"76":0.10431,"77":0.03628,"78":0.04535,"79":0.20408,"80":0.06803,"81":0.06349,"83":0.11338,"84":0.03628,"85":0.08617,"86":0.0907,"87":0.09977,"88":0.05896,"89":0.04535,"90":0.06803,"91":0.07256,"92":0.02721,"93":0.13152,"94":0.02721,"95":0.01361,"96":0.02268,"97":0.02721,"98":0.06803,"99":0.04535,"100":0.03175,"101":0.03628,"102":0.04082,"103":0.21768,"104":0.04535,"105":0.04989,"106":0.05442,"107":0.17233,"108":0.21315,"109":1.78679,"110":0.18594,"111":0.32652,"112":0.24489,"113":0.15419,"114":0.82991,"115":1.44213,"116":15.36912,"117":3.86382,"118":0.02268,"119":0.01361,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 52 54 59 64 120"},F:{"28":0.00454,"46":0.01361,"54":0.00454,"55":0.00454,"77":0.00454,"85":0.00454,"89":0.00454,"95":0.05442,"97":0.11791,"99":0.02268,"100":0.26303,"101":0.58048,"102":0.64397,_:"9 11 12 15 16 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 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 87 88 90 91 92 93 94 96 98 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00454,"13":0.00454,"14":0.00454,"15":0.00454,"17":0.00454,"18":0.01361,"80":0.00907,"81":0.00907,"83":0.00907,"84":0.00907,"85":0.00454,"86":0.00907,"87":0.00454,"88":0.00454,"89":0.00454,"90":0.00907,"92":0.01361,"99":0.01361,"107":0.00907,"108":0.00907,"109":0.07256,"110":0.01361,"111":0.12698,"112":0.12698,"113":0.02721,"114":0.17687,"115":0.14512,"116":2.54867,"117":1.76865,_:"16 79 91 93 94 95 96 97 98 100 101 102 103 104 105 106"},E:{"4":0,"13":0.01814,"14":0.0907,"15":0.01814,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 17.1","5.1":0.00907,"9.1":0.1814,"11.1":0.00454,"12.1":0.02721,"13.1":0.13152,"14.1":0.24036,"15.1":0.04082,"15.2-15.3":0.03628,"15.4":0.06803,"15.5":0.10884,"15.6":0.5442,"16.0":0.06803,"16.1":0.15873,"16.2":0.15419,"16.3":0.3628,"16.4":0.18594,"16.5":0.44443,"16.6":2.50332,"17.0":0.09977},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00286,"5.0-5.1":0.00286,"6.0-6.1":0.00286,"7.0-7.1":0.01,"8.1-8.4":0.00286,"9.0-9.2":0.01,"9.3":0.03427,"10.0-10.2":0.00143,"10.3":0.05141,"11.0-11.2":0.02142,"11.3-11.4":0.01571,"12.0-12.1":0.01428,"12.2-12.5":0.23848,"13.0-13.1":0.00714,"13.2":0.01285,"13.3":0.15566,"13.4-13.7":0.04998,"14.0-14.4":0.13566,"14.5-14.8":0.22563,"15.0-15.1":0.08997,"15.2-15.3":0.09853,"15.4":0.11281,"15.5":0.15708,"15.6-15.7":1.03961,"16.0":0.41127,"16.1":0.76114,"16.2":0.387,"16.3":0.72259,"16.4":0.16422,"16.5":0.48982,"16.6":7.98414,"17.0":0.70402,"17.1":0.00143},P:{"4":0.10707,"20":0.06424,"21":0.1392,"22":1.87381,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03212,"8.2":0,"9.2":0.01032,"10.1":0.01032,"11.1-11.2":0.01071,"12.0":0.02063,"13.0":0.02141,"14.0":0.01071,"15.0":0.01032,"16.0":0.02141,"17.0":0.03212,"18.0":0.02141,"19.0":0.05354},I:{"0":0,"3":0,"4":0.01565,"2.1":0,"2.2":0.01565,"2.3":0,"4.1":0.01565,"4.2-4.3":0.05476,"4.4":0,"4.4.3-4.4.4":0.24253},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02598,"9":0.06496,"11":0.38976,_:"6 7 10 5.5"},S:{"2.5":0.05464,_:"3.0-3.1"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":36.38025},R:{_:"0"},M:{"0":0.27866},Q:{"13.1":0.16392},O:{"0":0.89063},H:{"0":1.02942}};
      +module.exports={C:{"11":0.00916,"44":0.00458,"48":0.02291,"50":0.01374,"52":0.05497,"53":0.00458,"54":0.01374,"56":0.01832,"59":0.00916,"78":0.03665,"83":0.00458,"88":0.00458,"91":0.00458,"94":0.00458,"102":0.05497,"103":0.03665,"105":0.00458,"107":0.00458,"108":0.00916,"109":0.00916,"110":0.00916,"111":0.00916,"112":0.00916,"113":0.01374,"114":0.00916,"115":0.34816,"116":0.02291,"117":0.0962,"118":1.50715,"119":0.27944,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 51 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 95 96 97 98 99 100 101 104 106 120 121 122 3.5 3.6"},D:{"34":0.00458,"38":0.01374,"47":0.00916,"48":0.01832,"49":0.04123,"50":0.00916,"53":0.00916,"55":0.00916,"56":0.01832,"57":0.00916,"58":0.00458,"60":0.03207,"61":0.00458,"63":0.00916,"65":0.01374,"66":0.02291,"67":0.00916,"68":0.03207,"69":0.06413,"70":0.06413,"71":0.02291,"72":0.03207,"73":0.04123,"74":0.03665,"75":0.03665,"76":0.10994,"77":0.03207,"78":0.04123,"79":0.1695,"80":0.08704,"81":0.05955,"83":0.0733,"84":0.03665,"85":0.08246,"86":0.08704,"87":0.10078,"88":0.05497,"89":0.04581,"90":0.05497,"91":0.06872,"92":0.04123,"93":0.14659,"94":0.03207,"95":0.01374,"96":0.01832,"97":0.02291,"98":0.06413,"99":0.03665,"100":0.03665,"101":0.04581,"102":0.03665,"103":0.23363,"104":0.05039,"105":0.03665,"106":0.05497,"107":0.13743,"108":0.17866,"109":1.70413,"110":0.15575,"111":0.26112,"112":0.18782,"113":0.10078,"114":0.52223,"115":0.3619,"116":1.4705,"117":10.01407,"118":9.5972,"119":0.02749,"120":0.01374,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 51 52 54 59 62 64 121 122"},F:{"28":0.00458,"46":0.01374,"54":0.00458,"55":0.00458,"95":0.05039,"97":0.09162,"99":0.00916,"100":0.00916,"101":0.01374,"102":1.63542,"103":0.26112,_:"9 11 12 15 16 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 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00916,"13":0.00916,"14":0.00916,"15":0.00916,"17":0.00458,"18":0.01374,"80":0.00916,"81":0.00916,"83":0.00916,"84":0.00916,"85":0.00458,"86":0.00916,"87":0.04123,"88":0.00458,"89":0.00458,"90":0.00916,"92":0.01374,"99":0.01832,"107":0.00916,"108":0.00916,"109":0.0733,"110":0.01374,"111":0.10078,"112":0.10078,"113":0.02291,"114":0.03665,"115":0.04123,"116":0.10994,"117":2.54246,"118":2.0981,"119":0.00916,_:"16 79 91 93 94 95 96 97 98 100 101 102 103 104 105 106"},E:{"12":0.00458,"13":0.02291,"14":0.0962,"15":0.01832,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 10.1 17.2","5.1":0.00458,"9.1":0.16492,"11.1":0.00916,"12.1":0.02749,"13.1":0.13285,"14.1":0.23821,"15.1":0.04123,"15.2-15.3":0.03207,"15.4":0.06872,"15.5":0.10994,"15.6":0.54056,"16.0":0.06413,"16.1":0.16034,"16.2":0.14659,"16.3":0.34816,"16.4":0.14659,"16.5":0.40313,"16.6":2.20346,"17.0":0.61844,"17.1":0.04123},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0014,"5.0-5.1":0.0014,"6.0-6.1":0.00419,"7.0-7.1":0.00977,"8.1-8.4":0.0014,"9.0-9.2":0.00977,"9.3":0.03349,"10.0-10.2":0.0014,"10.3":0.04884,"11.0-11.2":0.04465,"11.3-11.4":0.01535,"12.0-12.1":0.01256,"12.2-12.5":0.22187,"13.0-13.1":0.00698,"13.2":0.03768,"13.3":0.01395,"13.4-13.7":0.04465,"14.0-14.4":0.12279,"14.5-14.8":0.19815,"15.0-15.1":0.07814,"15.2-15.3":0.08931,"15.4":0.09907,"15.5":0.14093,"15.6-15.7":0.97538,"16.0":0.36001,"16.1":0.68932,"16.2":0.33629,"16.3":0.62374,"16.4":0.13396,"16.5":0.35722,"16.6-16.7":6.69091,"17.0":2.38333,"17.1":0.14373,"17.2":0.00419},P:{"4":0.09798,"20":0.05444,"21":0.10887,"22":1.62217,"23":0.34839,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.03266,"11.1-11.2":0.01089,"13.0":0.01089,"16.0":0.02177,"17.0":0.03266,"18.0":0.02177,"19.0":0.04355},I:{"0":0.28574,"3":0,"4":0.00006,"2.1":0,"2.2":0.00009,"2.3":0,"4.1":0.00006,"4.2-4.3":0.0002,"4.4":0,"4.4.3-4.4.4":0.00086},A:{"8":0.01247,"9":0.06235,"11":0.37412,_:"6 7 10 5.5"},K:{"0":1.0238,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.05961,_:"3.0-3.1"},R:{_:"0"},M:{"0":0.27095},Q:{"13.1":0.15173},O:{"0":0.79117},H:{"0":0.06},L:{"0":36.03221}};
      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 af7c3a5c569cea..1e61dfba23ccb9 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.30001547",
      +  "version": "1.0.30001561",
         "description": "A smaller version of caniuse-db, with only the essentials!",
         "main": "dist/unpacker/index.js",
         "files": [
      diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.js
      index 4a34bafd738c21..90be7968ce8b4a 100644
      --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.js
      +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.js
      @@ -54,5 +54,7 @@ module.exports = {
       	"112": "24.0",
       	"114": "25.0",
       	"116": "26.0",
      -	"118": "27.0"
      +	"118": "27.0",
      +	"119": "28.0",
      +	"120": "28.0"
       };
      \ No newline at end of file
      diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.json b/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.json
      index 1c867933747c44..ca36debbf6eb44 100644
      --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.json
      +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.json
      @@ -1 +1 @@
      -{"39":"0.20","40":"0.21","41":"0.21","42":"0.25","43":"0.27","44":"0.30","45":"0.31","47":"0.36","49":"0.37","50":"1.1","51":"1.2","52":"1.3","53":"1.4","54":"1.4","56":"1.6","58":"1.7","59":"1.8","61":"2.0","66":"3.0","69":"4.0","72":"5.0","73":"5.0","76":"6.0","78":"7.0","79":"8.0","80":"8.0","82":"9.0","83":"9.0","84":"10.0","85":"10.0","86":"11.0","87":"11.0","89":"12.0","90":"13.0","91":"13.0","92":"14.0","93":"14.0","94":"15.0","95":"16.0","96":"16.0","98":"17.0","99":"18.0","100":"18.0","102":"19.0","103":"20.0","104":"20.0","105":"21.0","106":"21.0","107":"22.0","108":"22.0","110":"23.0","111":"24.0","112":"24.0","114":"25.0","116":"26.0","118":"27.0"}
      \ No newline at end of file
      +{"39":"0.20","40":"0.21","41":"0.21","42":"0.25","43":"0.27","44":"0.30","45":"0.31","47":"0.36","49":"0.37","50":"1.1","51":"1.2","52":"1.3","53":"1.4","54":"1.4","56":"1.6","58":"1.7","59":"1.8","61":"2.0","66":"3.0","69":"4.0","72":"5.0","73":"5.0","76":"6.0","78":"7.0","79":"8.0","80":"8.0","82":"9.0","83":"9.0","84":"10.0","85":"10.0","86":"11.0","87":"11.0","89":"12.0","90":"13.0","91":"13.0","92":"14.0","93":"14.0","94":"15.0","95":"16.0","96":"16.0","98":"17.0","99":"18.0","100":"18.0","102":"19.0","103":"20.0","104":"20.0","105":"21.0","106":"21.0","107":"22.0","108":"22.0","110":"23.0","111":"24.0","112":"24.0","114":"25.0","116":"26.0","118":"27.0","119":"28.0","120":"28.0"}
      \ No newline at end of file
      diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.js
      index 2520f20f794b54..3a97ab6a3ae1f5 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
      @@ -2514,7 +2514,8 @@ module.exports = {
       		"24.8.4",
       		"24.8.5",
       		"24.8.6",
      -		"24.8.7"
      +		"24.8.7",
      +		"24.8.8"
       	],
       	"114.0.5694.0": [
       		"25.0.0-alpha.1",
      @@ -2628,7 +2629,10 @@ module.exports = {
       		"25.8.2",
       		"25.8.3",
       		"25.8.4",
      -		"25.9.0"
      +		"25.9.0",
      +		"25.9.1",
      +		"25.9.2",
      +		"25.9.3"
       	],
       	"116.0.5791.0": [
       		"26.0.0-alpha.1",
      @@ -2727,7 +2731,11 @@ module.exports = {
       		"26.2.4"
       	],
       	"116.0.5845.228": [
      -		"26.3.0"
      +		"26.3.0",
      +		"26.4.0",
      +		"26.4.1",
      +		"26.4.2",
      +		"26.4.3"
       	],
       	"118.0.5949.0": [
       		"27.0.0-alpha.1",
      @@ -2817,6 +2825,43 @@ module.exports = {
       	"118.0.5993.54": [
       		"27.0.0"
       	],
      +	"118.0.5993.89": [
      +		"27.0.1",
      +		"27.0.2"
      +	],
      +	"118.0.5993.120": [
      +		"27.0.3"
      +	],
      +	"119.0.6045.0": [
      +		"28.0.0-alpha.1",
      +		"28.0.0-alpha.2",
      +		"28.0.0-nightly.20231006",
      +		"28.0.0-nightly.20231009",
      +		"28.0.0-nightly.20231010",
      +		"28.0.0-nightly.20231011",
      +		"29.0.0-nightly.20231012",
      +		"29.0.0-nightly.20231013",
      +		"29.0.0-nightly.20231016",
      +		"29.0.0-nightly.20231017",
      +		"29.0.0-nightly.20231018",
      +		"29.0.0-nightly.20231019",
      +		"29.0.0-nightly.20231020",
      +		"29.0.0-nightly.20231023",
      +		"29.0.0-nightly.20231024"
      +	],
      +	"119.0.6045.21": [
      +		"28.0.0-alpha.3",
      +		"28.0.0-alpha.4"
      +	],
      +	"119.0.6045.33": [
      +		"28.0.0-alpha.5",
      +		"28.0.0-alpha.6",
      +		"28.0.0-alpha.7",
      +		"28.0.0-beta.1"
      +	],
      +	"120.0.6099.0": [
      +		"28.0.0-beta.2"
      +	],
       	"118.0.5991.0": [
       		"28.0.0-nightly.20230906"
       	],
      @@ -2851,9 +2896,16 @@ module.exports = {
       		"28.0.0-nightly.20231004",
       		"28.0.0-nightly.20231005"
       	],
      -	"119.0.6045.0": [
      -		"28.0.0-nightly.20231006",
      -		"28.0.0-nightly.20231009",
      -		"28.0.0-nightly.20231010"
      +	"120.0.6078.0": [
      +		"29.0.0-nightly.20231025",
      +		"29.0.0-nightly.20231026",
      +		"29.0.0-nightly.20231027",
      +		"29.0.0-nightly.20231030",
      +		"29.0.0-nightly.20231031",
      +		"29.0.0-nightly.20231101"
      +	],
      +	"121.0.6100.0": [
      +		"29.0.0-nightly.20231102",
      +		"29.0.0-nightly.20231103"
       	]
       };
      \ 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 ec680a2ca90b02..6138c339f0a5e8 100644
      --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.json
      +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.json
      @@ -1 +1 @@
      -{"39.0.2171.65":["0.20.0","0.20.1","0.20.2","0.20.3","0.20.4","0.20.5","0.20.6","0.20.7","0.20.8"],"40.0.2214.91":["0.21.0","0.21.1","0.21.2"],"41.0.2272.76":["0.21.3","0.22.1","0.22.2","0.22.3","0.23.0","0.24.0"],"42.0.2311.107":["0.25.0","0.25.1","0.25.2","0.25.3","0.26.0","0.26.1","0.27.0","0.27.1"],"43.0.2357.65":["0.27.2","0.27.3","0.28.0","0.28.1","0.28.2","0.28.3","0.29.1","0.29.2"],"44.0.2403.125":["0.30.4","0.31.0"],"45.0.2454.85":["0.31.2","0.32.2","0.32.3","0.33.0","0.33.1","0.33.2","0.33.3","0.33.4","0.33.6","0.33.7","0.33.8","0.33.9","0.34.0","0.34.1","0.34.2","0.34.3","0.34.4","0.35.1","0.35.2","0.35.3","0.35.4","0.35.5"],"47.0.2526.73":["0.36.0","0.36.2","0.36.3","0.36.4"],"47.0.2526.110":["0.36.5","0.36.6","0.36.7","0.36.8","0.36.9","0.36.10","0.36.11","0.36.12"],"49.0.2623.75":["0.37.0","0.37.1","0.37.3","0.37.4","0.37.5","0.37.6","0.37.7","0.37.8","1.0.0","1.0.1","1.0.2"],"50.0.2661.102":["1.1.0","1.1.1","1.1.2","1.1.3"],"51.0.2704.63":["1.2.0","1.2.1"],"51.0.2704.84":["1.2.2","1.2.3"],"51.0.2704.103":["1.2.4","1.2.5"],"51.0.2704.106":["1.2.6","1.2.7","1.2.8"],"52.0.2743.82":["1.3.0","1.3.1","1.3.2","1.3.3","1.3.4","1.3.5","1.3.6","1.3.7","1.3.9","1.3.10","1.3.13","1.3.14","1.3.15"],"53.0.2785.113":["1.4.0","1.4.1","1.4.2","1.4.3","1.4.4","1.4.5"],"53.0.2785.143":["1.4.6","1.4.7","1.4.8","1.4.10","1.4.11","1.4.13","1.4.14","1.4.15","1.4.16"],"54.0.2840.51":["1.4.12"],"54.0.2840.101":["1.5.0","1.5.1"],"56.0.2924.87":["1.6.0","1.6.1","1.6.2","1.6.3","1.6.4","1.6.5","1.6.6","1.6.7","1.6.8","1.6.9","1.6.10","1.6.11","1.6.12","1.6.13","1.6.14","1.6.15","1.6.16","1.6.17","1.6.18"],"58.0.3029.110":["1.7.0","1.7.1","1.7.2","1.7.3","1.7.4","1.7.5","1.7.6","1.7.7","1.7.8","1.7.9","1.7.10","1.7.11","1.7.12","1.7.13","1.7.14","1.7.15","1.7.16"],"59.0.3071.115":["1.8.0","1.8.1","1.8.2-beta.1","1.8.2-beta.2","1.8.2-beta.3","1.8.2-beta.4","1.8.2-beta.5","1.8.2","1.8.3","1.8.4","1.8.5","1.8.6","1.8.7","1.8.8"],"61.0.3163.100":["2.0.0-beta.1","2.0.0-beta.2","2.0.0-beta.3","2.0.0-beta.4","2.0.0-beta.5","2.0.0-beta.6","2.0.0-beta.7","2.0.0-beta.8","2.0.0","2.0.1","2.0.2","2.0.3","2.0.4","2.0.5","2.0.6","2.0.7","2.0.8-nightly.20180819","2.0.8-nightly.20180820","2.0.8","2.0.9","2.0.10","2.0.11","2.0.12","2.0.13","2.0.14","2.0.15","2.0.16","2.0.17","2.0.18","2.1.0-unsupported.20180809"],"66.0.3359.181":["3.0.0-beta.1","3.0.0-beta.2","3.0.0-beta.3","3.0.0-beta.4","3.0.0-beta.5","3.0.0-beta.6","3.0.0-beta.7","3.0.0-beta.8","3.0.0-beta.9","3.0.0-beta.10","3.0.0-beta.11","3.0.0-beta.12","3.0.0-beta.13","3.0.0-nightly.20180818","3.0.0-nightly.20180821","3.0.0-nightly.20180823","3.0.0-nightly.20180904","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.0.8","3.0.9","3.0.10","3.0.11","3.0.12","3.0.13","3.0.14","3.0.15","3.0.16","3.1.0-beta.1","3.1.0-beta.2","3.1.0-beta.3","3.1.0-beta.4","3.1.0-beta.5","3.1.0","3.1.1","3.1.2","3.1.3","3.1.4","3.1.5","3.1.6","3.1.7","3.1.8","3.1.9","3.1.10","3.1.11","3.1.12","3.1.13","4.0.0-nightly.20180817","4.0.0-nightly.20180819","4.0.0-nightly.20180821"],"69.0.3497.106":["4.0.0-beta.1","4.0.0-beta.2","4.0.0-beta.3","4.0.0-beta.4","4.0.0-beta.5","4.0.0-beta.6","4.0.0-beta.7","4.0.0-beta.8","4.0.0-beta.9","4.0.0-beta.10","4.0.0-beta.11","4.0.0-nightly.20181010","4.0.0","4.0.1","4.0.2","4.0.3","4.0.4","4.0.5","4.0.6"],"67.0.3396.99":["4.0.0-nightly.20180929"],"68.0.3440.128":["4.0.0-nightly.20181006"],"69.0.3497.128":["4.0.7","4.0.8","4.1.0","4.1.1","4.1.2","4.1.3","4.1.4","4.1.5","4.2.0","4.2.1","4.2.2","4.2.3","4.2.4","4.2.5","4.2.6","4.2.7","4.2.8","4.2.9","4.2.10","4.2.11","4.2.12"],"72.0.3626.52":["5.0.0-beta.1","5.0.0-beta.2","6.0.0-nightly.20190123"],"73.0.3683.27":["5.0.0-beta.3"],"73.0.3683.54":["5.0.0-beta.4"],"73.0.3683.61":["5.0.0-beta.5"],"73.0.3683.84":["5.0.0-beta.6"],"73.0.3683.94":["5.0.0-beta.7"],"73.0.3683.104":["5.0.0-beta.8"],"73.0.3683.117":["5.0.0-beta.9"],"70.0.3538.110":["5.0.0-nightly.20190107"],"71.0.3578.98":["5.0.0-nightly.20190121","5.0.0-nightly.20190122"],"73.0.3683.119":["5.0.0"],"73.0.3683.121":["5.0.1","5.0.2","5.0.3","5.0.4","5.0.5","5.0.6","5.0.7","5.0.8","5.0.9","5.0.10","5.0.11","5.0.12","5.0.13"],"76.0.3774.1":["6.0.0-beta.1"],"76.0.3783.1":["6.0.0-beta.2","6.0.0-beta.3","6.0.0-beta.4"],"76.0.3805.4":["6.0.0-beta.5"],"76.0.3809.3":["6.0.0-beta.6"],"76.0.3809.22":["6.0.0-beta.7"],"76.0.3809.26":["6.0.0-beta.8","6.0.0-beta.9"],"76.0.3809.37":["6.0.0-beta.10"],"76.0.3809.42":["6.0.0-beta.11"],"76.0.3809.54":["6.0.0-beta.12"],"76.0.3809.60":["6.0.0-beta.13"],"76.0.3809.68":["6.0.0-beta.14"],"76.0.3809.74":["6.0.0-beta.15"],"72.0.3626.107":["6.0.0-nightly.20190212"],"72.0.3626.110":["6.0.0-nightly.20190213"],"74.0.3724.8":["6.0.0-nightly.20190311"],"76.0.3809.88":["6.0.0"],"76.0.3809.102":["6.0.1"],"76.0.3809.110":["6.0.2"],"76.0.3809.126":["6.0.3"],"76.0.3809.131":["6.0.4"],"76.0.3809.136":["6.0.5"],"76.0.3809.138":["6.0.6"],"76.0.3809.139":["6.0.7"],"76.0.3809.146":["6.0.8","6.0.9","6.0.10","6.0.11","6.0.12","6.1.0","6.1.1","6.1.2","6.1.3","6.1.4","6.1.5","6.1.6","6.1.7","6.1.8","6.1.9","6.1.10","6.1.11","6.1.12"],"78.0.3866.0":["7.0.0-beta.1","7.0.0-beta.2","7.0.0-beta.3","7.0.0-nightly.20190727","7.0.0-nightly.20190728","7.0.0-nightly.20190729","7.0.0-nightly.20190730","7.0.0-nightly.20190731","8.0.0-nightly.20190801","8.0.0-nightly.20190802"],"78.0.3896.6":["7.0.0-beta.4"],"78.0.3905.1":["7.0.0-beta.5","7.0.0-beta.6","7.0.0-beta.7","7.0.0"],"76.0.3784.0":["7.0.0-nightly.20190521"],"76.0.3806.0":["7.0.0-nightly.20190529","7.0.0-nightly.20190530","7.0.0-nightly.20190531","7.0.0-nightly.20190602","7.0.0-nightly.20190603"],"77.0.3814.0":["7.0.0-nightly.20190604"],"77.0.3815.0":["7.0.0-nightly.20190605","7.0.0-nightly.20190606","7.0.0-nightly.20190607","7.0.0-nightly.20190608","7.0.0-nightly.20190609","7.0.0-nightly.20190611","7.0.0-nightly.20190612","7.0.0-nightly.20190613","7.0.0-nightly.20190615","7.0.0-nightly.20190616","7.0.0-nightly.20190618","7.0.0-nightly.20190619","7.0.0-nightly.20190622","7.0.0-nightly.20190623","7.0.0-nightly.20190624","7.0.0-nightly.20190627","7.0.0-nightly.20190629","7.0.0-nightly.20190630","7.0.0-nightly.20190701","7.0.0-nightly.20190702"],"77.0.3843.0":["7.0.0-nightly.20190704","7.0.0-nightly.20190705"],"77.0.3848.0":["7.0.0-nightly.20190719","7.0.0-nightly.20190720","7.0.0-nightly.20190721"],"77.0.3864.0":["7.0.0-nightly.20190726"],"78.0.3904.92":["7.0.1"],"78.0.3904.94":["7.1.0"],"78.0.3904.99":["7.1.1"],"78.0.3904.113":["7.1.2"],"78.0.3904.126":["7.1.3"],"78.0.3904.130":["7.1.4","7.1.5","7.1.6","7.1.7","7.1.8","7.1.9","7.1.10","7.1.11","7.1.12","7.1.13","7.1.14","7.2.0","7.2.1","7.2.2","7.2.3","7.2.4","7.3.0","7.3.1","7.3.2","7.3.3"],"79.0.3931.0":["8.0.0-beta.1","8.0.0-beta.2","8.0.0-nightly.20191019","8.0.0-nightly.20191020","8.0.0-nightly.20191021","8.0.0-nightly.20191023"],"80.0.3955.0":["8.0.0-beta.3","8.0.0-beta.4"],"80.0.3987.14":["8.0.0-beta.5"],"80.0.3987.51":["8.0.0-beta.6"],"80.0.3987.59":["8.0.0-beta.7"],"80.0.3987.75":["8.0.0-beta.8","8.0.0-beta.9"],"78.0.3871.0":["8.0.0-nightly.20190803","8.0.0-nightly.20190806","8.0.0-nightly.20190807","8.0.0-nightly.20190808","8.0.0-nightly.20190809","8.0.0-nightly.20190810","8.0.0-nightly.20190811","8.0.0-nightly.20190812","8.0.0-nightly.20190813","8.0.0-nightly.20190814","8.0.0-nightly.20190815"],"78.0.3881.0":["8.0.0-nightly.20190816","8.0.0-nightly.20190817","8.0.0-nightly.20190818","8.0.0-nightly.20190819","8.0.0-nightly.20190820"],"78.0.3892.0":["8.0.0-nightly.20190824","8.0.0-nightly.20190825","8.0.0-nightly.20190827","8.0.0-nightly.20190828","8.0.0-nightly.20190830","8.0.0-nightly.20190901","8.0.0-nightly.20190902","8.0.0-nightly.20190907","8.0.0-nightly.20190909","8.0.0-nightly.20190910","8.0.0-nightly.20190911","8.0.0-nightly.20190912","8.0.0-nightly.20190913","8.0.0-nightly.20190914","8.0.0-nightly.20190915","8.0.0-nightly.20190917"],"79.0.3915.0":["8.0.0-nightly.20190919","8.0.0-nightly.20190920"],"79.0.3919.0":["8.0.0-nightly.20190922","8.0.0-nightly.20190923","8.0.0-nightly.20190924","8.0.0-nightly.20190926","8.0.0-nightly.20190928","8.0.0-nightly.20190929","8.0.0-nightly.20190930","8.0.0-nightly.20191001","8.0.0-nightly.20191004","8.0.0-nightly.20191005","8.0.0-nightly.20191006","8.0.0-nightly.20191009","8.0.0-nightly.20191011","8.0.0-nightly.20191012","8.0.0-nightly.20191017"],"80.0.3952.0":["8.0.0-nightly.20191101","8.0.0-nightly.20191103","8.0.0-nightly.20191105"],"80.0.3987.86":["8.0.0","8.0.1","8.0.2"],"80.0.3987.134":["8.0.3"],"80.0.3987.137":["8.1.0"],"80.0.3987.141":["8.1.1"],"80.0.3987.158":["8.2.0"],"80.0.3987.163":["8.2.1","8.2.2","8.2.3","8.5.3","8.5.4","8.5.5"],"80.0.3987.165":["8.2.4","8.2.5","8.3.0","8.3.1","8.3.2","8.3.3","8.3.4","8.4.0","8.4.1","8.5.0","8.5.1","8.5.2"],"82.0.4048.0":["9.0.0-beta.1","9.0.0-beta.2","9.0.0-beta.3","9.0.0-beta.4","9.0.0-beta.5"],"82.0.4058.2":["9.0.0-beta.6","9.0.0-beta.7","9.0.0-beta.9"],"82.0.4085.10":["9.0.0-beta.10"],"82.0.4085.14":["9.0.0-beta.11","9.0.0-beta.12","9.0.0-beta.13"],"82.0.4085.27":["9.0.0-beta.14"],"83.0.4102.3":["9.0.0-beta.15","9.0.0-beta.16"],"83.0.4103.14":["9.0.0-beta.17"],"83.0.4103.16":["9.0.0-beta.18"],"83.0.4103.24":["9.0.0-beta.19"],"83.0.4103.26":["9.0.0-beta.20","9.0.0-beta.21"],"83.0.4103.34":["9.0.0-beta.22"],"83.0.4103.44":["9.0.0-beta.23"],"83.0.4103.45":["9.0.0-beta.24"],"80.0.3954.0":["9.0.0-nightly.20191121","9.0.0-nightly.20191122","9.0.0-nightly.20191123","9.0.0-nightly.20191124","9.0.0-nightly.20191126","9.0.0-nightly.20191128","9.0.0-nightly.20191129","9.0.0-nightly.20191130","9.0.0-nightly.20191201","9.0.0-nightly.20191202","9.0.0-nightly.20191203","9.0.0-nightly.20191204","9.0.0-nightly.20191205","9.0.0-nightly.20191210"],"81.0.3994.0":["9.0.0-nightly.20191220","9.0.0-nightly.20191221","9.0.0-nightly.20191222","9.0.0-nightly.20191223","9.0.0-nightly.20191224","9.0.0-nightly.20191225","9.0.0-nightly.20191226","9.0.0-nightly.20191228","9.0.0-nightly.20191229","9.0.0-nightly.20191230","9.0.0-nightly.20191231","9.0.0-nightly.20200101","9.0.0-nightly.20200103","9.0.0-nightly.20200104","9.0.0-nightly.20200105","9.0.0-nightly.20200106","9.0.0-nightly.20200108","9.0.0-nightly.20200109","9.0.0-nightly.20200110","9.0.0-nightly.20200111","9.0.0-nightly.20200113","9.0.0-nightly.20200115","9.0.0-nightly.20200116","9.0.0-nightly.20200117"],"81.0.4030.0":["9.0.0-nightly.20200119","9.0.0-nightly.20200121"],"83.0.4103.64":["9.0.0"],"83.0.4103.94":["9.0.1","9.0.2"],"83.0.4103.100":["9.0.3"],"83.0.4103.104":["9.0.4"],"83.0.4103.119":["9.0.5"],"83.0.4103.122":["9.1.0","9.1.1","9.1.2","9.2.0","9.2.1","9.3.0","9.3.1","9.3.2","9.3.3","9.3.4","9.3.5","9.4.0","9.4.1","9.4.2","9.4.3","9.4.4"],"84.0.4129.0":["10.0.0-beta.1","10.0.0-beta.2","10.0.0-nightly.20200501","10.0.0-nightly.20200504","10.0.0-nightly.20200505","10.0.0-nightly.20200506","10.0.0-nightly.20200507","10.0.0-nightly.20200508","10.0.0-nightly.20200511","10.0.0-nightly.20200512","10.0.0-nightly.20200513","10.0.0-nightly.20200514","10.0.0-nightly.20200515","10.0.0-nightly.20200518","10.0.0-nightly.20200519","10.0.0-nightly.20200520","10.0.0-nightly.20200521","11.0.0-nightly.20200525","11.0.0-nightly.20200526"],"85.0.4161.2":["10.0.0-beta.3","10.0.0-beta.4"],"85.0.4181.1":["10.0.0-beta.8","10.0.0-beta.9"],"85.0.4183.19":["10.0.0-beta.10"],"85.0.4183.20":["10.0.0-beta.11"],"85.0.4183.26":["10.0.0-beta.12"],"85.0.4183.39":["10.0.0-beta.13","10.0.0-beta.14","10.0.0-beta.15","10.0.0-beta.17","10.0.0-beta.19","10.0.0-beta.20","10.0.0-beta.21"],"85.0.4183.70":["10.0.0-beta.23"],"85.0.4183.78":["10.0.0-beta.24"],"85.0.4183.80":["10.0.0-beta.25"],"82.0.4050.0":["10.0.0-nightly.20200209","10.0.0-nightly.20200210","10.0.0-nightly.20200211","10.0.0-nightly.20200216","10.0.0-nightly.20200217","10.0.0-nightly.20200218","10.0.0-nightly.20200221","10.0.0-nightly.20200222","10.0.0-nightly.20200223","10.0.0-nightly.20200226","10.0.0-nightly.20200303"],"82.0.4076.0":["10.0.0-nightly.20200304","10.0.0-nightly.20200305","10.0.0-nightly.20200306","10.0.0-nightly.20200309","10.0.0-nightly.20200310"],"82.0.4083.0":["10.0.0-nightly.20200311"],"83.0.4086.0":["10.0.0-nightly.20200316"],"83.0.4087.0":["10.0.0-nightly.20200317","10.0.0-nightly.20200318","10.0.0-nightly.20200320","10.0.0-nightly.20200323","10.0.0-nightly.20200324","10.0.0-nightly.20200325","10.0.0-nightly.20200326","10.0.0-nightly.20200327","10.0.0-nightly.20200330","10.0.0-nightly.20200331","10.0.0-nightly.20200401","10.0.0-nightly.20200402","10.0.0-nightly.20200403","10.0.0-nightly.20200406"],"83.0.4095.0":["10.0.0-nightly.20200408","10.0.0-nightly.20200410","10.0.0-nightly.20200413"],"84.0.4114.0":["10.0.0-nightly.20200414"],"84.0.4115.0":["10.0.0-nightly.20200415","10.0.0-nightly.20200416","10.0.0-nightly.20200417"],"84.0.4121.0":["10.0.0-nightly.20200422","10.0.0-nightly.20200423"],"84.0.4125.0":["10.0.0-nightly.20200427","10.0.0-nightly.20200428","10.0.0-nightly.20200429","10.0.0-nightly.20200430"],"85.0.4183.84":["10.0.0"],"85.0.4183.86":["10.0.1"],"85.0.4183.87":["10.1.0"],"85.0.4183.93":["10.1.1"],"85.0.4183.98":["10.1.2"],"85.0.4183.121":["10.1.3","10.1.4","10.1.5","10.1.6","10.1.7","10.2.0","10.3.0","10.3.1","10.3.2","10.4.0","10.4.1","10.4.2","10.4.3","10.4.4","10.4.5","10.4.6","10.4.7"],"86.0.4234.0":["11.0.0-beta.1","11.0.0-beta.3","11.0.0-beta.4","11.0.0-beta.5","11.0.0-beta.6","11.0.0-beta.7","11.0.0-nightly.20200822","11.0.0-nightly.20200824","11.0.0-nightly.20200825","11.0.0-nightly.20200826","12.0.0-nightly.20200827","12.0.0-nightly.20200831","12.0.0-nightly.20200902","12.0.0-nightly.20200903","12.0.0-nightly.20200907","12.0.0-nightly.20200910","12.0.0-nightly.20200911","12.0.0-nightly.20200914"],"87.0.4251.1":["11.0.0-beta.8","11.0.0-beta.9","11.0.0-beta.11"],"87.0.4280.11":["11.0.0-beta.12","11.0.0-beta.13"],"87.0.4280.27":["11.0.0-beta.16","11.0.0-beta.17","11.0.0-beta.18","11.0.0-beta.19"],"87.0.4280.40":["11.0.0-beta.20"],"87.0.4280.47":["11.0.0-beta.22","11.0.0-beta.23"],"85.0.4156.0":["11.0.0-nightly.20200529"],"85.0.4162.0":["11.0.0-nightly.20200602","11.0.0-nightly.20200603","11.0.0-nightly.20200604","11.0.0-nightly.20200609","11.0.0-nightly.20200610","11.0.0-nightly.20200611","11.0.0-nightly.20200615","11.0.0-nightly.20200616","11.0.0-nightly.20200617","11.0.0-nightly.20200618","11.0.0-nightly.20200619"],"85.0.4179.0":["11.0.0-nightly.20200701","11.0.0-nightly.20200702","11.0.0-nightly.20200703","11.0.0-nightly.20200706","11.0.0-nightly.20200707","11.0.0-nightly.20200708","11.0.0-nightly.20200709"],"86.0.4203.0":["11.0.0-nightly.20200716","11.0.0-nightly.20200717","11.0.0-nightly.20200720","11.0.0-nightly.20200721"],"86.0.4209.0":["11.0.0-nightly.20200723","11.0.0-nightly.20200724","11.0.0-nightly.20200729","11.0.0-nightly.20200730","11.0.0-nightly.20200731","11.0.0-nightly.20200803","11.0.0-nightly.20200804","11.0.0-nightly.20200805","11.0.0-nightly.20200811","11.0.0-nightly.20200812"],"87.0.4280.60":["11.0.0","11.0.1"],"87.0.4280.67":["11.0.2","11.0.3","11.0.4"],"87.0.4280.88":["11.0.5","11.1.0","11.1.1"],"87.0.4280.141":["11.2.0","11.2.1","11.2.2","11.2.3","11.3.0","11.4.0","11.4.1","11.4.2","11.4.3","11.4.4","11.4.5","11.4.6","11.4.7","11.4.8","11.4.9","11.4.10","11.4.11","11.4.12","11.5.0"],"89.0.4328.0":["12.0.0-beta.1","12.0.0-beta.3","12.0.0-beta.4","12.0.0-beta.5","12.0.0-beta.6","12.0.0-beta.7","12.0.0-beta.8","12.0.0-beta.9","12.0.0-beta.10","12.0.0-beta.11","12.0.0-beta.12","12.0.0-beta.14","13.0.0-nightly.20201119","13.0.0-nightly.20201123","13.0.0-nightly.20201124","13.0.0-nightly.20201126","13.0.0-nightly.20201127","13.0.0-nightly.20201130","13.0.0-nightly.20201201","13.0.0-nightly.20201202","13.0.0-nightly.20201203","13.0.0-nightly.20201204","13.0.0-nightly.20201207","13.0.0-nightly.20201208","13.0.0-nightly.20201209","13.0.0-nightly.20201210","13.0.0-nightly.20201211","13.0.0-nightly.20201214"],"89.0.4348.1":["12.0.0-beta.16","12.0.0-beta.18","12.0.0-beta.19","12.0.0-beta.20"],"89.0.4388.2":["12.0.0-beta.21","12.0.0-beta.22","12.0.0-beta.23","12.0.0-beta.24","12.0.0-beta.25","12.0.0-beta.26"],"89.0.4389.23":["12.0.0-beta.27","12.0.0-beta.28","12.0.0-beta.29"],"89.0.4389.58":["12.0.0-beta.30","12.0.0-beta.31"],"87.0.4268.0":["12.0.0-nightly.20201002","12.0.0-nightly.20201007","12.0.0-nightly.20201009","12.0.0-nightly.20201012","12.0.0-nightly.20201013","12.0.0-nightly.20201014","12.0.0-nightly.20201015"],"88.0.4292.0":["12.0.0-nightly.20201023","12.0.0-nightly.20201026"],"88.0.4306.0":["12.0.0-nightly.20201030","12.0.0-nightly.20201102","12.0.0-nightly.20201103","12.0.0-nightly.20201104","12.0.0-nightly.20201105","12.0.0-nightly.20201106","12.0.0-nightly.20201111","12.0.0-nightly.20201112"],"88.0.4324.0":["12.0.0-nightly.20201116"],"89.0.4389.69":["12.0.0"],"89.0.4389.82":["12.0.1"],"89.0.4389.90":["12.0.2"],"89.0.4389.114":["12.0.3","12.0.4"],"89.0.4389.128":["12.0.5","12.0.6","12.0.7","12.0.8","12.0.9","12.0.10","12.0.11","12.0.12","12.0.13","12.0.14","12.0.15","12.0.16","12.0.17","12.0.18","12.1.0","12.1.1","12.1.2","12.2.0","12.2.1","12.2.2","12.2.3"],"90.0.4402.0":["13.0.0-beta.2","13.0.0-beta.3","13.0.0-nightly.20210210","13.0.0-nightly.20210211","13.0.0-nightly.20210212","13.0.0-nightly.20210216","13.0.0-nightly.20210217","13.0.0-nightly.20210218","13.0.0-nightly.20210219","13.0.0-nightly.20210222","13.0.0-nightly.20210225","13.0.0-nightly.20210226","13.0.0-nightly.20210301","13.0.0-nightly.20210302","13.0.0-nightly.20210303","14.0.0-nightly.20210304"],"90.0.4415.0":["13.0.0-beta.4","13.0.0-beta.5","13.0.0-beta.6","13.0.0-beta.7","13.0.0-beta.8","13.0.0-beta.9","13.0.0-beta.10","13.0.0-beta.11","13.0.0-beta.12","13.0.0-beta.13","14.0.0-nightly.20210305","14.0.0-nightly.20210308","14.0.0-nightly.20210309","14.0.0-nightly.20210311","14.0.0-nightly.20210315","14.0.0-nightly.20210316","14.0.0-nightly.20210317","14.0.0-nightly.20210318","14.0.0-nightly.20210319","14.0.0-nightly.20210323","14.0.0-nightly.20210324","14.0.0-nightly.20210325","14.0.0-nightly.20210326","14.0.0-nightly.20210329","14.0.0-nightly.20210330"],"91.0.4448.0":["13.0.0-beta.14","13.0.0-beta.16","13.0.0-beta.17","13.0.0-beta.18","13.0.0-beta.20","14.0.0-nightly.20210331","14.0.0-nightly.20210401","14.0.0-nightly.20210402","14.0.0-nightly.20210406","14.0.0-nightly.20210407","14.0.0-nightly.20210408","14.0.0-nightly.20210409","14.0.0-nightly.20210413"],"91.0.4472.33":["13.0.0-beta.21","13.0.0-beta.22","13.0.0-beta.23"],"91.0.4472.38":["13.0.0-beta.24","13.0.0-beta.25","13.0.0-beta.26","13.0.0-beta.27","13.0.0-beta.28"],"89.0.4349.0":["13.0.0-nightly.20201215","13.0.0-nightly.20201216","13.0.0-nightly.20201221","13.0.0-nightly.20201222"],"89.0.4359.0":["13.0.0-nightly.20201223","13.0.0-nightly.20210104","13.0.0-nightly.20210108","13.0.0-nightly.20210111"],"89.0.4386.0":["13.0.0-nightly.20210113","13.0.0-nightly.20210114","13.0.0-nightly.20210118","13.0.0-nightly.20210122","13.0.0-nightly.20210125"],"89.0.4389.0":["13.0.0-nightly.20210127","13.0.0-nightly.20210128","13.0.0-nightly.20210129","13.0.0-nightly.20210201","13.0.0-nightly.20210202","13.0.0-nightly.20210203","13.0.0-nightly.20210205","13.0.0-nightly.20210208","13.0.0-nightly.20210209"],"91.0.4472.69":["13.0.0","13.0.1"],"91.0.4472.77":["13.1.0","13.1.1","13.1.2"],"91.0.4472.106":["13.1.3","13.1.4"],"91.0.4472.124":["13.1.5","13.1.6","13.1.7"],"91.0.4472.164":["13.1.8","13.1.9","13.2.0","13.2.1","13.2.2","13.2.3","13.3.0","13.4.0","13.5.0","13.5.1","13.5.2","13.6.0","13.6.1","13.6.2","13.6.3","13.6.6","13.6.7","13.6.8","13.6.9"],"92.0.4511.0":["14.0.0-beta.1","14.0.0-beta.2","14.0.0-beta.3","14.0.0-nightly.20210520","14.0.0-nightly.20210523","14.0.0-nightly.20210524","15.0.0-nightly.20210527","15.0.0-nightly.20210528","15.0.0-nightly.20210531","15.0.0-nightly.20210601","15.0.0-nightly.20210602"],"93.0.4536.0":["14.0.0-beta.5","14.0.0-beta.6","14.0.0-beta.7","14.0.0-beta.8","15.0.0-nightly.20210609","15.0.0-nightly.20210610","15.0.0-nightly.20210611","15.0.0-nightly.20210614","15.0.0-nightly.20210615","15.0.0-nightly.20210616"],"93.0.4539.0":["14.0.0-beta.9","14.0.0-beta.10","15.0.0-nightly.20210617","15.0.0-nightly.20210618","15.0.0-nightly.20210621","15.0.0-nightly.20210622"],"93.0.4557.4":["14.0.0-beta.11","14.0.0-beta.12"],"93.0.4566.0":["14.0.0-beta.13","14.0.0-beta.14","14.0.0-beta.15","14.0.0-beta.16","14.0.0-beta.17","15.0.0-alpha.1","15.0.0-alpha.2","15.0.0-nightly.20210706","15.0.0-nightly.20210707","15.0.0-nightly.20210708","15.0.0-nightly.20210709","15.0.0-nightly.20210712","15.0.0-nightly.20210713","15.0.0-nightly.20210714","15.0.0-nightly.20210715","15.0.0-nightly.20210716","15.0.0-nightly.20210719","15.0.0-nightly.20210720","15.0.0-nightly.20210721","16.0.0-nightly.20210722","16.0.0-nightly.20210723","16.0.0-nightly.20210726"],"93.0.4577.15":["14.0.0-beta.18","14.0.0-beta.19","14.0.0-beta.20","14.0.0-beta.21"],"93.0.4577.25":["14.0.0-beta.22","14.0.0-beta.23"],"93.0.4577.51":["14.0.0-beta.24","14.0.0-beta.25"],"92.0.4475.0":["14.0.0-nightly.20210426","14.0.0-nightly.20210427"],"92.0.4488.0":["14.0.0-nightly.20210430","14.0.0-nightly.20210503"],"92.0.4496.0":["14.0.0-nightly.20210505"],"92.0.4498.0":["14.0.0-nightly.20210506"],"92.0.4499.0":["14.0.0-nightly.20210507","14.0.0-nightly.20210510","14.0.0-nightly.20210511","14.0.0-nightly.20210512","14.0.0-nightly.20210513"],"92.0.4505.0":["14.0.0-nightly.20210514","14.0.0-nightly.20210517","14.0.0-nightly.20210518","14.0.0-nightly.20210519"],"93.0.4577.58":["14.0.0"],"93.0.4577.63":["14.0.1"],"93.0.4577.82":["14.0.2","14.1.0","14.1.1","14.2.0","14.2.1","14.2.2","14.2.3","14.2.4","14.2.5","14.2.6","14.2.7","14.2.8","14.2.9"],"94.0.4584.0":["15.0.0-alpha.3","15.0.0-alpha.4","15.0.0-alpha.5","15.0.0-alpha.6","16.0.0-nightly.20210727","16.0.0-nightly.20210728","16.0.0-nightly.20210729","16.0.0-nightly.20210730","16.0.0-nightly.20210802","16.0.0-nightly.20210803","16.0.0-nightly.20210804","16.0.0-nightly.20210805","16.0.0-nightly.20210806","16.0.0-nightly.20210809","16.0.0-nightly.20210810","16.0.0-nightly.20210811"],"94.0.4590.2":["15.0.0-alpha.7","15.0.0-alpha.8","15.0.0-alpha.9","16.0.0-nightly.20210812","16.0.0-nightly.20210813","16.0.0-nightly.20210816","16.0.0-nightly.20210817","16.0.0-nightly.20210818","16.0.0-nightly.20210819","16.0.0-nightly.20210820","16.0.0-nightly.20210823"],"94.0.4606.12":["15.0.0-alpha.10"],"94.0.4606.20":["15.0.0-beta.1","15.0.0-beta.2"],"94.0.4606.31":["15.0.0-beta.3","15.0.0-beta.4","15.0.0-beta.5","15.0.0-beta.6","15.0.0-beta.7"],"93.0.4530.0":["15.0.0-nightly.20210603","15.0.0-nightly.20210604"],"93.0.4535.0":["15.0.0-nightly.20210608"],"93.0.4550.0":["15.0.0-nightly.20210623","15.0.0-nightly.20210624"],"93.0.4552.0":["15.0.0-nightly.20210625","15.0.0-nightly.20210628","15.0.0-nightly.20210629"],"93.0.4558.0":["15.0.0-nightly.20210630","15.0.0-nightly.20210701","15.0.0-nightly.20210702","15.0.0-nightly.20210705"],"94.0.4606.51":["15.0.0"],"94.0.4606.61":["15.1.0","15.1.1"],"94.0.4606.71":["15.1.2"],"94.0.4606.81":["15.2.0","15.3.0","15.3.1","15.3.2","15.3.3","15.3.4","15.3.5","15.3.6","15.3.7","15.4.0","15.4.1","15.4.2","15.5.0","15.5.1","15.5.2","15.5.3","15.5.4","15.5.5","15.5.6","15.5.7"],"95.0.4629.0":["16.0.0-alpha.1","16.0.0-alpha.2","16.0.0-alpha.3","16.0.0-alpha.4","16.0.0-alpha.5","16.0.0-alpha.6","16.0.0-alpha.7","16.0.0-nightly.20210902","16.0.0-nightly.20210903","16.0.0-nightly.20210906","16.0.0-nightly.20210907","16.0.0-nightly.20210908","16.0.0-nightly.20210909","16.0.0-nightly.20210910","16.0.0-nightly.20210913","16.0.0-nightly.20210914","16.0.0-nightly.20210915","16.0.0-nightly.20210916","16.0.0-nightly.20210917","16.0.0-nightly.20210920","16.0.0-nightly.20210921","16.0.0-nightly.20210922","17.0.0-nightly.20210923","17.0.0-nightly.20210924","17.0.0-nightly.20210927","17.0.0-nightly.20210928","17.0.0-nightly.20210929","17.0.0-nightly.20210930","17.0.0-nightly.20211001","17.0.0-nightly.20211004","17.0.0-nightly.20211005"],"96.0.4647.0":["16.0.0-alpha.8","16.0.0-alpha.9","16.0.0-beta.1","16.0.0-beta.2","16.0.0-beta.3","17.0.0-nightly.20211006","17.0.0-nightly.20211007","17.0.0-nightly.20211008","17.0.0-nightly.20211011","17.0.0-nightly.20211012","17.0.0-nightly.20211013","17.0.0-nightly.20211014","17.0.0-nightly.20211015","17.0.0-nightly.20211018","17.0.0-nightly.20211019","17.0.0-nightly.20211020","17.0.0-nightly.20211021"],"96.0.4664.18":["16.0.0-beta.4","16.0.0-beta.5"],"96.0.4664.27":["16.0.0-beta.6","16.0.0-beta.7"],"96.0.4664.35":["16.0.0-beta.8","16.0.0-beta.9"],"95.0.4612.5":["16.0.0-nightly.20210824","16.0.0-nightly.20210825","16.0.0-nightly.20210826","16.0.0-nightly.20210827","16.0.0-nightly.20210830","16.0.0-nightly.20210831","16.0.0-nightly.20210901"],"96.0.4664.45":["16.0.0","16.0.1"],"96.0.4664.55":["16.0.2","16.0.3","16.0.4","16.0.5"],"96.0.4664.110":["16.0.6","16.0.7","16.0.8"],"96.0.4664.174":["16.0.9","16.0.10","16.1.0","16.1.1","16.2.0","16.2.1","16.2.2","16.2.3","16.2.4","16.2.5","16.2.6","16.2.7","16.2.8"],"96.0.4664.4":["17.0.0-alpha.1","17.0.0-alpha.2","17.0.0-alpha.3","17.0.0-nightly.20211022","17.0.0-nightly.20211025","17.0.0-nightly.20211026","17.0.0-nightly.20211027","17.0.0-nightly.20211028","17.0.0-nightly.20211029","17.0.0-nightly.20211101","17.0.0-nightly.20211102","17.0.0-nightly.20211103","17.0.0-nightly.20211104","17.0.0-nightly.20211105","17.0.0-nightly.20211108","17.0.0-nightly.20211109","17.0.0-nightly.20211110","17.0.0-nightly.20211111","17.0.0-nightly.20211112","17.0.0-nightly.20211115","17.0.0-nightly.20211116","17.0.0-nightly.20211117","18.0.0-nightly.20211118","18.0.0-nightly.20211119","18.0.0-nightly.20211122","18.0.0-nightly.20211123"],"98.0.4706.0":["17.0.0-alpha.4","17.0.0-alpha.5","17.0.0-alpha.6","17.0.0-beta.1","17.0.0-beta.2","18.0.0-nightly.20211124","18.0.0-nightly.20211125","18.0.0-nightly.20211126","18.0.0-nightly.20211129","18.0.0-nightly.20211130","18.0.0-nightly.20211201","18.0.0-nightly.20211202","18.0.0-nightly.20211203","18.0.0-nightly.20211206","18.0.0-nightly.20211207","18.0.0-nightly.20211208","18.0.0-nightly.20211209","18.0.0-nightly.20211210","18.0.0-nightly.20211213","18.0.0-nightly.20211214","18.0.0-nightly.20211215","18.0.0-nightly.20211216","18.0.0-nightly.20211217","18.0.0-nightly.20211220","18.0.0-nightly.20211221","18.0.0-nightly.20211222","18.0.0-nightly.20211223","18.0.0-nightly.20211228","18.0.0-nightly.20211229","18.0.0-nightly.20211231","18.0.0-nightly.20220103","18.0.0-nightly.20220104","18.0.0-nightly.20220105","18.0.0-nightly.20220106","18.0.0-nightly.20220107","18.0.0-nightly.20220110"],"98.0.4758.9":["17.0.0-beta.3"],"98.0.4758.11":["17.0.0-beta.4","17.0.0-beta.5","17.0.0-beta.6","17.0.0-beta.7","17.0.0-beta.8","17.0.0-beta.9"],"98.0.4758.74":["17.0.0"],"98.0.4758.82":["17.0.1"],"98.0.4758.102":["17.1.0"],"98.0.4758.109":["17.1.1","17.1.2","17.2.0"],"98.0.4758.141":["17.3.0","17.3.1","17.4.0","17.4.1","17.4.2","17.4.3","17.4.4","17.4.5","17.4.6","17.4.7","17.4.8","17.4.9","17.4.10","17.4.11"],"99.0.4767.0":["18.0.0-alpha.1","18.0.0-alpha.2","18.0.0-alpha.3","18.0.0-alpha.4","18.0.0-alpha.5","18.0.0-nightly.20220111","18.0.0-nightly.20220112","18.0.0-nightly.20220113","18.0.0-nightly.20220114","18.0.0-nightly.20220117","18.0.0-nightly.20220118","18.0.0-nightly.20220119","18.0.0-nightly.20220121","18.0.0-nightly.20220124","18.0.0-nightly.20220125","18.0.0-nightly.20220127","18.0.0-nightly.20220128","18.0.0-nightly.20220131","18.0.0-nightly.20220201","19.0.0-nightly.20220202","19.0.0-nightly.20220203","19.0.0-nightly.20220204","19.0.0-nightly.20220207","19.0.0-nightly.20220208","19.0.0-nightly.20220209"],"100.0.4894.0":["18.0.0-beta.1","18.0.0-beta.2","18.0.0-beta.3","18.0.0-beta.4","18.0.0-beta.5","18.0.0-beta.6","19.0.0-nightly.20220308","19.0.0-nightly.20220309","19.0.0-nightly.20220310","19.0.0-nightly.20220311","19.0.0-nightly.20220314","19.0.0-nightly.20220315","19.0.0-nightly.20220316","19.0.0-nightly.20220317","19.0.0-nightly.20220318","19.0.0-nightly.20220321","19.0.0-nightly.20220322","19.0.0-nightly.20220323","19.0.0-nightly.20220324"],"100.0.4896.56":["18.0.0"],"100.0.4896.60":["18.0.1","18.0.2"],"100.0.4896.75":["18.0.3","18.0.4"],"100.0.4896.127":["18.1.0"],"100.0.4896.143":["18.2.0","18.2.1","18.2.2","18.2.3"],"100.0.4896.160":["18.2.4","18.3.0","18.3.1","18.3.2","18.3.3","18.3.4","18.3.5","18.3.6","18.3.7","18.3.8","18.3.9","18.3.11","18.3.12","18.3.13","18.3.14","18.3.15"],"102.0.4962.3":["19.0.0-alpha.1","19.0.0-nightly.20220328","19.0.0-nightly.20220329","20.0.0-nightly.20220330"],"102.0.4971.0":["19.0.0-alpha.2","19.0.0-alpha.3","20.0.0-nightly.20220411"],"102.0.4989.0":["19.0.0-alpha.4","19.0.0-alpha.5","20.0.0-nightly.20220414","20.0.0-nightly.20220415","20.0.0-nightly.20220418","20.0.0-nightly.20220419","20.0.0-nightly.20220420","20.0.0-nightly.20220421"],"102.0.4999.0":["19.0.0-beta.1","19.0.0-beta.2","19.0.0-beta.3","20.0.0-nightly.20220425","20.0.0-nightly.20220426","20.0.0-nightly.20220427","20.0.0-nightly.20220428","20.0.0-nightly.20220429","20.0.0-nightly.20220502","20.0.0-nightly.20220503","20.0.0-nightly.20220504","20.0.0-nightly.20220505","20.0.0-nightly.20220506","20.0.0-nightly.20220509","20.0.0-nightly.20220511","20.0.0-nightly.20220512","20.0.0-nightly.20220513","20.0.0-nightly.20220516","20.0.0-nightly.20220517"],"102.0.5005.27":["19.0.0-beta.4"],"102.0.5005.40":["19.0.0-beta.5","19.0.0-beta.6","19.0.0-beta.7"],"102.0.5005.49":["19.0.0-beta.8"],"102.0.4961.0":["19.0.0-nightly.20220325"],"102.0.5005.61":["19.0.0","19.0.1"],"102.0.5005.63":["19.0.2","19.0.3","19.0.4"],"102.0.5005.115":["19.0.5","19.0.6"],"102.0.5005.134":["19.0.7"],"102.0.5005.148":["19.0.8"],"102.0.5005.167":["19.0.9","19.0.10","19.0.11","19.0.12","19.0.13","19.0.14","19.0.15","19.0.16","19.0.17","19.1.0","19.1.1","19.1.2","19.1.3","19.1.4","19.1.5","19.1.6","19.1.7","19.1.8","19.1.9"],"103.0.5044.0":["20.0.0-alpha.1","20.0.0-nightly.20220518","20.0.0-nightly.20220519","20.0.0-nightly.20220520","20.0.0-nightly.20220523","20.0.0-nightly.20220524","21.0.0-nightly.20220526","21.0.0-nightly.20220527","21.0.0-nightly.20220530","21.0.0-nightly.20220531"],"104.0.5073.0":["20.0.0-alpha.2","20.0.0-alpha.3","20.0.0-alpha.4","20.0.0-alpha.5","20.0.0-alpha.6","20.0.0-alpha.7","20.0.0-beta.1","20.0.0-beta.2","20.0.0-beta.3","20.0.0-beta.4","20.0.0-beta.5","20.0.0-beta.6","20.0.0-beta.7","20.0.0-beta.8","21.0.0-nightly.20220602","21.0.0-nightly.20220603","21.0.0-nightly.20220606","21.0.0-nightly.20220607","21.0.0-nightly.20220608","21.0.0-nightly.20220609","21.0.0-nightly.20220610","21.0.0-nightly.20220613","21.0.0-nightly.20220614","21.0.0-nightly.20220615","21.0.0-nightly.20220616","21.0.0-nightly.20220617","21.0.0-nightly.20220620","21.0.0-nightly.20220621","21.0.0-nightly.20220622","21.0.0-nightly.20220623","21.0.0-nightly.20220624","21.0.0-nightly.20220627"],"104.0.5112.39":["20.0.0-beta.9"],"104.0.5112.48":["20.0.0-beta.10","20.0.0-beta.11","20.0.0-beta.12"],"104.0.5112.57":["20.0.0-beta.13"],"104.0.5112.65":["20.0.0"],"104.0.5112.81":["20.0.1","20.0.2","20.0.3"],"104.0.5112.102":["20.1.0","20.1.1"],"104.0.5112.114":["20.1.2","20.1.3","20.1.4"],"104.0.5112.124":["20.2.0","20.3.0","20.3.1","20.3.2","20.3.3","20.3.4","20.3.5","20.3.6","20.3.7","20.3.8","20.3.9","20.3.10","20.3.11","20.3.12"],"105.0.5187.0":["21.0.0-alpha.1","21.0.0-alpha.2","21.0.0-alpha.3","21.0.0-alpha.4","21.0.0-alpha.5","21.0.0-nightly.20220720","21.0.0-nightly.20220721","21.0.0-nightly.20220722","21.0.0-nightly.20220725","21.0.0-nightly.20220726","21.0.0-nightly.20220727","21.0.0-nightly.20220728","21.0.0-nightly.20220801","21.0.0-nightly.20220802","22.0.0-nightly.20220808","22.0.0-nightly.20220809","22.0.0-nightly.20220810","22.0.0-nightly.20220811","22.0.0-nightly.20220812","22.0.0-nightly.20220815","22.0.0-nightly.20220816","22.0.0-nightly.20220817"],"106.0.5216.0":["21.0.0-alpha.6","21.0.0-beta.1","21.0.0-beta.2","21.0.0-beta.3","21.0.0-beta.4","21.0.0-beta.5","22.0.0-nightly.20220822","22.0.0-nightly.20220823","22.0.0-nightly.20220824","22.0.0-nightly.20220825","22.0.0-nightly.20220829","22.0.0-nightly.20220830","22.0.0-nightly.20220831","22.0.0-nightly.20220901","22.0.0-nightly.20220902","22.0.0-nightly.20220905"],"106.0.5249.40":["21.0.0-beta.6","21.0.0-beta.7","21.0.0-beta.8"],"105.0.5129.0":["21.0.0-nightly.20220628","21.0.0-nightly.20220629","21.0.0-nightly.20220630","21.0.0-nightly.20220701","21.0.0-nightly.20220704","21.0.0-nightly.20220705","21.0.0-nightly.20220706","21.0.0-nightly.20220707","21.0.0-nightly.20220708","21.0.0-nightly.20220711","21.0.0-nightly.20220712","21.0.0-nightly.20220713"],"105.0.5173.0":["21.0.0-nightly.20220715","21.0.0-nightly.20220718","21.0.0-nightly.20220719"],"106.0.5249.51":["21.0.0"],"106.0.5249.61":["21.0.1"],"106.0.5249.91":["21.1.0"],"106.0.5249.103":["21.1.1"],"106.0.5249.119":["21.2.0"],"106.0.5249.165":["21.2.1"],"106.0.5249.168":["21.2.2","21.2.3"],"106.0.5249.181":["21.3.0","21.3.1"],"106.0.5249.199":["21.3.3","21.3.4","21.3.5","21.4.0","21.4.1","21.4.2","21.4.3","21.4.4"],"107.0.5286.0":["22.0.0-alpha.1","22.0.0-nightly.20220909","22.0.0-nightly.20220912","22.0.0-nightly.20220913","22.0.0-nightly.20220914","22.0.0-nightly.20220915","22.0.0-nightly.20220916","22.0.0-nightly.20220919","22.0.0-nightly.20220920","22.0.0-nightly.20220921","22.0.0-nightly.20220922","22.0.0-nightly.20220923","22.0.0-nightly.20220926","22.0.0-nightly.20220927","22.0.0-nightly.20220928","23.0.0-nightly.20220929","23.0.0-nightly.20220930","23.0.0-nightly.20221003"],"108.0.5329.0":["22.0.0-alpha.3","22.0.0-alpha.4","22.0.0-alpha.5","22.0.0-alpha.6","23.0.0-nightly.20221004","23.0.0-nightly.20221005","23.0.0-nightly.20221006","23.0.0-nightly.20221007","23.0.0-nightly.20221010","23.0.0-nightly.20221011","23.0.0-nightly.20221012","23.0.0-nightly.20221013","23.0.0-nightly.20221014","23.0.0-nightly.20221017"],"108.0.5355.0":["22.0.0-alpha.7","23.0.0-nightly.20221018","23.0.0-nightly.20221019","23.0.0-nightly.20221020","23.0.0-nightly.20221021","23.0.0-nightly.20221024","23.0.0-nightly.20221026"],"108.0.5359.10":["22.0.0-alpha.8","22.0.0-beta.1","22.0.0-beta.2","22.0.0-beta.3"],"108.0.5359.29":["22.0.0-beta.4"],"108.0.5359.40":["22.0.0-beta.5","22.0.0-beta.6"],"108.0.5359.48":["22.0.0-beta.7","22.0.0-beta.8"],"107.0.5274.0":["22.0.0-nightly.20220908"],"108.0.5359.62":["22.0.0"],"108.0.5359.125":["22.0.1"],"108.0.5359.179":["22.0.2","22.0.3","22.1.0"],"108.0.5359.215":["22.2.0","22.2.1","22.3.0","22.3.1","22.3.2","22.3.3","22.3.4","22.3.5","22.3.6","22.3.7","22.3.8","22.3.9","22.3.10","22.3.11","22.3.12","22.3.13","22.3.14","22.3.15","22.3.16","22.3.17","22.3.18","22.3.20","22.3.21","22.3.22","22.3.23","22.3.24","22.3.25","22.3.26","22.3.27"],"110.0.5415.0":["23.0.0-alpha.1","23.0.0-nightly.20221118","23.0.0-nightly.20221121","23.0.0-nightly.20221122","23.0.0-nightly.20221123","23.0.0-nightly.20221124","23.0.0-nightly.20221125","23.0.0-nightly.20221128","23.0.0-nightly.20221129","23.0.0-nightly.20221130","24.0.0-nightly.20221201","24.0.0-nightly.20221202","24.0.0-nightly.20221205"],"110.0.5451.0":["23.0.0-alpha.2","23.0.0-alpha.3","24.0.0-nightly.20221206","24.0.0-nightly.20221207","24.0.0-nightly.20221208","24.0.0-nightly.20221213","24.0.0-nightly.20221214","24.0.0-nightly.20221215","24.0.0-nightly.20221216"],"110.0.5478.5":["23.0.0-beta.1","23.0.0-beta.2","23.0.0-beta.3"],"110.0.5481.30":["23.0.0-beta.4"],"110.0.5481.38":["23.0.0-beta.5"],"110.0.5481.52":["23.0.0-beta.6","23.0.0-beta.8"],"109.0.5382.0":["23.0.0-nightly.20221027","23.0.0-nightly.20221028","23.0.0-nightly.20221031","23.0.0-nightly.20221101","23.0.0-nightly.20221102","23.0.0-nightly.20221103","23.0.0-nightly.20221104","23.0.0-nightly.20221107","23.0.0-nightly.20221108","23.0.0-nightly.20221109","23.0.0-nightly.20221110","23.0.0-nightly.20221111","23.0.0-nightly.20221114","23.0.0-nightly.20221115","23.0.0-nightly.20221116","23.0.0-nightly.20221117"],"110.0.5481.77":["23.0.0"],"110.0.5481.100":["23.1.0"],"110.0.5481.104":["23.1.1"],"110.0.5481.177":["23.1.2"],"110.0.5481.179":["23.1.3"],"110.0.5481.192":["23.1.4","23.2.0"],"110.0.5481.208":["23.2.1","23.2.2","23.2.3","23.2.4","23.3.0","23.3.1","23.3.2","23.3.3","23.3.4","23.3.5","23.3.6","23.3.7","23.3.8","23.3.9","23.3.10","23.3.11","23.3.12","23.3.13"],"111.0.5560.0":["24.0.0-alpha.1","24.0.0-alpha.2","24.0.0-alpha.3","24.0.0-alpha.4","24.0.0-alpha.5","24.0.0-alpha.6","24.0.0-alpha.7","24.0.0-nightly.20230203","24.0.0-nightly.20230206","24.0.0-nightly.20230207","24.0.0-nightly.20230208","24.0.0-nightly.20230209","25.0.0-nightly.20230210","25.0.0-nightly.20230214","25.0.0-nightly.20230215","25.0.0-nightly.20230216","25.0.0-nightly.20230217","25.0.0-nightly.20230220","25.0.0-nightly.20230221","25.0.0-nightly.20230222","25.0.0-nightly.20230223","25.0.0-nightly.20230224","25.0.0-nightly.20230227","25.0.0-nightly.20230228","25.0.0-nightly.20230301","25.0.0-nightly.20230302","25.0.0-nightly.20230303","25.0.0-nightly.20230306","25.0.0-nightly.20230307","25.0.0-nightly.20230308","25.0.0-nightly.20230309","25.0.0-nightly.20230310"],"111.0.5563.50":["24.0.0-beta.1","24.0.0-beta.2"],"112.0.5615.20":["24.0.0-beta.3","24.0.0-beta.4"],"112.0.5615.29":["24.0.0-beta.5"],"112.0.5615.39":["24.0.0-beta.6","24.0.0-beta.7"],"111.0.5518.0":["24.0.0-nightly.20230109","24.0.0-nightly.20230110","24.0.0-nightly.20230111","24.0.0-nightly.20230112","24.0.0-nightly.20230113","24.0.0-nightly.20230116","24.0.0-nightly.20230117","24.0.0-nightly.20230118","24.0.0-nightly.20230119","24.0.0-nightly.20230120","24.0.0-nightly.20230123","24.0.0-nightly.20230124","24.0.0-nightly.20230125","24.0.0-nightly.20230126","24.0.0-nightly.20230127","24.0.0-nightly.20230131","24.0.0-nightly.20230201","24.0.0-nightly.20230202"],"112.0.5615.49":["24.0.0"],"112.0.5615.50":["24.1.0","24.1.1"],"112.0.5615.87":["24.1.2"],"112.0.5615.165":["24.1.3","24.2.0","24.3.0"],"112.0.5615.183":["24.3.1"],"112.0.5615.204":["24.4.0","24.4.1","24.5.0","24.5.1","24.6.0","24.6.1","24.6.2","24.6.3","24.6.4","24.6.5","24.7.0","24.7.1","24.8.0","24.8.1","24.8.2","24.8.3","24.8.4","24.8.5","24.8.6","24.8.7"],"114.0.5694.0":["25.0.0-alpha.1","25.0.0-alpha.2","25.0.0-nightly.20230405","26.0.0-nightly.20230406","26.0.0-nightly.20230407","26.0.0-nightly.20230410","26.0.0-nightly.20230411"],"114.0.5710.0":["25.0.0-alpha.3","25.0.0-alpha.4","26.0.0-nightly.20230413","26.0.0-nightly.20230414","26.0.0-nightly.20230417"],"114.0.5719.0":["25.0.0-alpha.5","25.0.0-alpha.6","25.0.0-beta.1","25.0.0-beta.2","25.0.0-beta.3","26.0.0-nightly.20230421","26.0.0-nightly.20230424","26.0.0-nightly.20230425","26.0.0-nightly.20230426","26.0.0-nightly.20230427","26.0.0-nightly.20230428","26.0.0-nightly.20230501","26.0.0-nightly.20230502","26.0.0-nightly.20230503","26.0.0-nightly.20230504","26.0.0-nightly.20230505","26.0.0-nightly.20230508","26.0.0-nightly.20230509","26.0.0-nightly.20230510"],"114.0.5735.16":["25.0.0-beta.4","25.0.0-beta.5","25.0.0-beta.6","25.0.0-beta.7"],"114.0.5735.35":["25.0.0-beta.8"],"114.0.5735.45":["25.0.0-beta.9","25.0.0","25.0.1"],"113.0.5636.0":["25.0.0-nightly.20230314"],"113.0.5651.0":["25.0.0-nightly.20230315"],"113.0.5653.0":["25.0.0-nightly.20230317"],"113.0.5660.0":["25.0.0-nightly.20230320"],"113.0.5664.0":["25.0.0-nightly.20230321"],"113.0.5666.0":["25.0.0-nightly.20230322"],"113.0.5668.0":["25.0.0-nightly.20230323"],"113.0.5670.0":["25.0.0-nightly.20230324","25.0.0-nightly.20230327","25.0.0-nightly.20230328","25.0.0-nightly.20230329","25.0.0-nightly.20230330"],"114.0.5684.0":["25.0.0-nightly.20230331","25.0.0-nightly.20230403"],"114.0.5692.0":["25.0.0-nightly.20230404"],"114.0.5735.106":["25.1.0","25.1.1"],"114.0.5735.134":["25.2.0"],"114.0.5735.199":["25.3.0"],"114.0.5735.243":["25.3.1"],"114.0.5735.248":["25.3.2","25.4.0"],"114.0.5735.289":["25.5.0","25.6.0","25.7.0","25.8.0","25.8.1","25.8.2","25.8.3","25.8.4","25.9.0"],"116.0.5791.0":["26.0.0-alpha.1","26.0.0-alpha.2","26.0.0-alpha.3","26.0.0-alpha.4","26.0.0-alpha.5","26.0.0-nightly.20230526","26.0.0-nightly.20230529","26.0.0-nightly.20230530","26.0.0-nightly.20230531","27.0.0-nightly.20230601","27.0.0-nightly.20230602","27.0.0-nightly.20230605","27.0.0-nightly.20230606","27.0.0-nightly.20230607","27.0.0-nightly.20230609"],"116.0.5815.0":["26.0.0-alpha.6","27.0.0-nightly.20230612","27.0.0-nightly.20230613"],"116.0.5831.0":["26.0.0-alpha.7","27.0.0-nightly.20230615"],"116.0.5845.0":["26.0.0-alpha.8","26.0.0-beta.1","27.0.0-nightly.20230622","27.0.0-nightly.20230623","27.0.0-nightly.20230626","27.0.0-nightly.20230627","27.0.0-nightly.20230628","27.0.0-nightly.20230629","27.0.0-nightly.20230630"],"116.0.5845.14":["26.0.0-beta.2","26.0.0-beta.3","26.0.0-beta.4","26.0.0-beta.5","26.0.0-beta.6","26.0.0-beta.7"],"116.0.5845.42":["26.0.0-beta.8","26.0.0-beta.9"],"116.0.5845.49":["26.0.0-beta.10","26.0.0-beta.11"],"116.0.5845.62":["26.0.0-beta.12"],"114.0.5708.0":["26.0.0-nightly.20230412"],"114.0.5715.0":["26.0.0-nightly.20230418"],"115.0.5760.0":["26.0.0-nightly.20230511","26.0.0-nightly.20230512","26.0.0-nightly.20230515","26.0.0-nightly.20230516","26.0.0-nightly.20230517","26.0.0-nightly.20230518","26.0.0-nightly.20230519","26.0.0-nightly.20230522","26.0.0-nightly.20230523"],"115.0.5786.0":["26.0.0-nightly.20230524"],"115.0.5790.0":["26.0.0-nightly.20230525"],"116.0.5845.82":["26.0.0"],"116.0.5845.97":["26.1.0"],"116.0.5845.179":["26.2.0"],"116.0.5845.188":["26.2.1"],"116.0.5845.190":["26.2.2","26.2.3","26.2.4"],"116.0.5845.228":["26.3.0"],"118.0.5949.0":["27.0.0-alpha.1","27.0.0-alpha.2","27.0.0-alpha.3","27.0.0-alpha.4","27.0.0-alpha.5","27.0.0-alpha.6","27.0.0-nightly.20230816","28.0.0-nightly.20230817","28.0.0-nightly.20230818","28.0.0-nightly.20230821","28.0.0-nightly.20230822","28.0.0-nightly.20230823","28.0.0-nightly.20230824","28.0.0-nightly.20230825","28.0.0-nightly.20230828","28.0.0-nightly.20230829","28.0.0-nightly.20230830","28.0.0-nightly.20230831"],"118.0.5993.5":["27.0.0-beta.1","27.0.0-beta.2","27.0.0-beta.3"],"118.0.5993.11":["27.0.0-beta.4"],"118.0.5993.18":["27.0.0-beta.5","27.0.0-beta.6","27.0.0-beta.7","27.0.0-beta.8","27.0.0-beta.9"],"116.0.5829.0":["27.0.0-nightly.20230614"],"116.0.5833.0":["27.0.0-nightly.20230616","27.0.0-nightly.20230619","27.0.0-nightly.20230620","27.0.0-nightly.20230621"],"117.0.5852.0":["27.0.0-nightly.20230703","27.0.0-nightly.20230704","27.0.0-nightly.20230705","27.0.0-nightly.20230706","27.0.0-nightly.20230707","27.0.0-nightly.20230710","27.0.0-nightly.20230711","27.0.0-nightly.20230712","27.0.0-nightly.20230713","27.0.0-nightly.20230714"],"117.0.5884.1":["27.0.0-nightly.20230717","27.0.0-nightly.20230718"],"117.0.5892.0":["27.0.0-nightly.20230719"],"117.0.5897.0":["27.0.0-nightly.20230720","27.0.0-nightly.20230721","27.0.0-nightly.20230724","27.0.0-nightly.20230725","27.0.0-nightly.20230726","27.0.0-nightly.20230727","27.0.0-nightly.20230728","27.0.0-nightly.20230731"],"117.0.5911.0":["27.0.0-nightly.20230801","27.0.0-nightly.20230802","27.0.0-nightly.20230803"],"117.0.5921.0":["27.0.0-nightly.20230804","27.0.0-nightly.20230807","27.0.0-nightly.20230808","27.0.0-nightly.20230814","27.0.0-nightly.20230815"],"118.0.5993.54":["27.0.0"],"118.0.5991.0":["28.0.0-nightly.20230906"],"118.0.5993.0":["28.0.0-nightly.20230907","28.0.0-nightly.20230908","28.0.0-nightly.20230911","28.0.0-nightly.20230912","28.0.0-nightly.20230913","28.0.0-nightly.20230914","28.0.0-nightly.20230915"],"119.0.6006.0":["28.0.0-nightly.20230919"],"119.0.6017.0":["28.0.0-nightly.20230920"],"119.0.6019.2":["28.0.0-nightly.20230921","28.0.0-nightly.20230925","28.0.0-nightly.20230926","28.0.0-nightly.20230927","28.0.0-nightly.20230928"],"119.0.6029.0":["28.0.0-nightly.20230929","28.0.0-nightly.20231002"],"119.0.6043.0":["28.0.0-nightly.20231003","28.0.0-nightly.20231004","28.0.0-nightly.20231005"],"119.0.6045.0":["28.0.0-nightly.20231006","28.0.0-nightly.20231009","28.0.0-nightly.20231010"]}
      \ No newline at end of file
      +{"39.0.2171.65":["0.20.0","0.20.1","0.20.2","0.20.3","0.20.4","0.20.5","0.20.6","0.20.7","0.20.8"],"40.0.2214.91":["0.21.0","0.21.1","0.21.2"],"41.0.2272.76":["0.21.3","0.22.1","0.22.2","0.22.3","0.23.0","0.24.0"],"42.0.2311.107":["0.25.0","0.25.1","0.25.2","0.25.3","0.26.0","0.26.1","0.27.0","0.27.1"],"43.0.2357.65":["0.27.2","0.27.3","0.28.0","0.28.1","0.28.2","0.28.3","0.29.1","0.29.2"],"44.0.2403.125":["0.30.4","0.31.0"],"45.0.2454.85":["0.31.2","0.32.2","0.32.3","0.33.0","0.33.1","0.33.2","0.33.3","0.33.4","0.33.6","0.33.7","0.33.8","0.33.9","0.34.0","0.34.1","0.34.2","0.34.3","0.34.4","0.35.1","0.35.2","0.35.3","0.35.4","0.35.5"],"47.0.2526.73":["0.36.0","0.36.2","0.36.3","0.36.4"],"47.0.2526.110":["0.36.5","0.36.6","0.36.7","0.36.8","0.36.9","0.36.10","0.36.11","0.36.12"],"49.0.2623.75":["0.37.0","0.37.1","0.37.3","0.37.4","0.37.5","0.37.6","0.37.7","0.37.8","1.0.0","1.0.1","1.0.2"],"50.0.2661.102":["1.1.0","1.1.1","1.1.2","1.1.3"],"51.0.2704.63":["1.2.0","1.2.1"],"51.0.2704.84":["1.2.2","1.2.3"],"51.0.2704.103":["1.2.4","1.2.5"],"51.0.2704.106":["1.2.6","1.2.7","1.2.8"],"52.0.2743.82":["1.3.0","1.3.1","1.3.2","1.3.3","1.3.4","1.3.5","1.3.6","1.3.7","1.3.9","1.3.10","1.3.13","1.3.14","1.3.15"],"53.0.2785.113":["1.4.0","1.4.1","1.4.2","1.4.3","1.4.4","1.4.5"],"53.0.2785.143":["1.4.6","1.4.7","1.4.8","1.4.10","1.4.11","1.4.13","1.4.14","1.4.15","1.4.16"],"54.0.2840.51":["1.4.12"],"54.0.2840.101":["1.5.0","1.5.1"],"56.0.2924.87":["1.6.0","1.6.1","1.6.2","1.6.3","1.6.4","1.6.5","1.6.6","1.6.7","1.6.8","1.6.9","1.6.10","1.6.11","1.6.12","1.6.13","1.6.14","1.6.15","1.6.16","1.6.17","1.6.18"],"58.0.3029.110":["1.7.0","1.7.1","1.7.2","1.7.3","1.7.4","1.7.5","1.7.6","1.7.7","1.7.8","1.7.9","1.7.10","1.7.11","1.7.12","1.7.13","1.7.14","1.7.15","1.7.16"],"59.0.3071.115":["1.8.0","1.8.1","1.8.2-beta.1","1.8.2-beta.2","1.8.2-beta.3","1.8.2-beta.4","1.8.2-beta.5","1.8.2","1.8.3","1.8.4","1.8.5","1.8.6","1.8.7","1.8.8"],"61.0.3163.100":["2.0.0-beta.1","2.0.0-beta.2","2.0.0-beta.3","2.0.0-beta.4","2.0.0-beta.5","2.0.0-beta.6","2.0.0-beta.7","2.0.0-beta.8","2.0.0","2.0.1","2.0.2","2.0.3","2.0.4","2.0.5","2.0.6","2.0.7","2.0.8-nightly.20180819","2.0.8-nightly.20180820","2.0.8","2.0.9","2.0.10","2.0.11","2.0.12","2.0.13","2.0.14","2.0.15","2.0.16","2.0.17","2.0.18","2.1.0-unsupported.20180809"],"66.0.3359.181":["3.0.0-beta.1","3.0.0-beta.2","3.0.0-beta.3","3.0.0-beta.4","3.0.0-beta.5","3.0.0-beta.6","3.0.0-beta.7","3.0.0-beta.8","3.0.0-beta.9","3.0.0-beta.10","3.0.0-beta.11","3.0.0-beta.12","3.0.0-beta.13","3.0.0-nightly.20180818","3.0.0-nightly.20180821","3.0.0-nightly.20180823","3.0.0-nightly.20180904","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.0.8","3.0.9","3.0.10","3.0.11","3.0.12","3.0.13","3.0.14","3.0.15","3.0.16","3.1.0-beta.1","3.1.0-beta.2","3.1.0-beta.3","3.1.0-beta.4","3.1.0-beta.5","3.1.0","3.1.1","3.1.2","3.1.3","3.1.4","3.1.5","3.1.6","3.1.7","3.1.8","3.1.9","3.1.10","3.1.11","3.1.12","3.1.13","4.0.0-nightly.20180817","4.0.0-nightly.20180819","4.0.0-nightly.20180821"],"69.0.3497.106":["4.0.0-beta.1","4.0.0-beta.2","4.0.0-beta.3","4.0.0-beta.4","4.0.0-beta.5","4.0.0-beta.6","4.0.0-beta.7","4.0.0-beta.8","4.0.0-beta.9","4.0.0-beta.10","4.0.0-beta.11","4.0.0-nightly.20181010","4.0.0","4.0.1","4.0.2","4.0.3","4.0.4","4.0.5","4.0.6"],"67.0.3396.99":["4.0.0-nightly.20180929"],"68.0.3440.128":["4.0.0-nightly.20181006"],"69.0.3497.128":["4.0.7","4.0.8","4.1.0","4.1.1","4.1.2","4.1.3","4.1.4","4.1.5","4.2.0","4.2.1","4.2.2","4.2.3","4.2.4","4.2.5","4.2.6","4.2.7","4.2.8","4.2.9","4.2.10","4.2.11","4.2.12"],"72.0.3626.52":["5.0.0-beta.1","5.0.0-beta.2","6.0.0-nightly.20190123"],"73.0.3683.27":["5.0.0-beta.3"],"73.0.3683.54":["5.0.0-beta.4"],"73.0.3683.61":["5.0.0-beta.5"],"73.0.3683.84":["5.0.0-beta.6"],"73.0.3683.94":["5.0.0-beta.7"],"73.0.3683.104":["5.0.0-beta.8"],"73.0.3683.117":["5.0.0-beta.9"],"70.0.3538.110":["5.0.0-nightly.20190107"],"71.0.3578.98":["5.0.0-nightly.20190121","5.0.0-nightly.20190122"],"73.0.3683.119":["5.0.0"],"73.0.3683.121":["5.0.1","5.0.2","5.0.3","5.0.4","5.0.5","5.0.6","5.0.7","5.0.8","5.0.9","5.0.10","5.0.11","5.0.12","5.0.13"],"76.0.3774.1":["6.0.0-beta.1"],"76.0.3783.1":["6.0.0-beta.2","6.0.0-beta.3","6.0.0-beta.4"],"76.0.3805.4":["6.0.0-beta.5"],"76.0.3809.3":["6.0.0-beta.6"],"76.0.3809.22":["6.0.0-beta.7"],"76.0.3809.26":["6.0.0-beta.8","6.0.0-beta.9"],"76.0.3809.37":["6.0.0-beta.10"],"76.0.3809.42":["6.0.0-beta.11"],"76.0.3809.54":["6.0.0-beta.12"],"76.0.3809.60":["6.0.0-beta.13"],"76.0.3809.68":["6.0.0-beta.14"],"76.0.3809.74":["6.0.0-beta.15"],"72.0.3626.107":["6.0.0-nightly.20190212"],"72.0.3626.110":["6.0.0-nightly.20190213"],"74.0.3724.8":["6.0.0-nightly.20190311"],"76.0.3809.88":["6.0.0"],"76.0.3809.102":["6.0.1"],"76.0.3809.110":["6.0.2"],"76.0.3809.126":["6.0.3"],"76.0.3809.131":["6.0.4"],"76.0.3809.136":["6.0.5"],"76.0.3809.138":["6.0.6"],"76.0.3809.139":["6.0.7"],"76.0.3809.146":["6.0.8","6.0.9","6.0.10","6.0.11","6.0.12","6.1.0","6.1.1","6.1.2","6.1.3","6.1.4","6.1.5","6.1.6","6.1.7","6.1.8","6.1.9","6.1.10","6.1.11","6.1.12"],"78.0.3866.0":["7.0.0-beta.1","7.0.0-beta.2","7.0.0-beta.3","7.0.0-nightly.20190727","7.0.0-nightly.20190728","7.0.0-nightly.20190729","7.0.0-nightly.20190730","7.0.0-nightly.20190731","8.0.0-nightly.20190801","8.0.0-nightly.20190802"],"78.0.3896.6":["7.0.0-beta.4"],"78.0.3905.1":["7.0.0-beta.5","7.0.0-beta.6","7.0.0-beta.7","7.0.0"],"76.0.3784.0":["7.0.0-nightly.20190521"],"76.0.3806.0":["7.0.0-nightly.20190529","7.0.0-nightly.20190530","7.0.0-nightly.20190531","7.0.0-nightly.20190602","7.0.0-nightly.20190603"],"77.0.3814.0":["7.0.0-nightly.20190604"],"77.0.3815.0":["7.0.0-nightly.20190605","7.0.0-nightly.20190606","7.0.0-nightly.20190607","7.0.0-nightly.20190608","7.0.0-nightly.20190609","7.0.0-nightly.20190611","7.0.0-nightly.20190612","7.0.0-nightly.20190613","7.0.0-nightly.20190615","7.0.0-nightly.20190616","7.0.0-nightly.20190618","7.0.0-nightly.20190619","7.0.0-nightly.20190622","7.0.0-nightly.20190623","7.0.0-nightly.20190624","7.0.0-nightly.20190627","7.0.0-nightly.20190629","7.0.0-nightly.20190630","7.0.0-nightly.20190701","7.0.0-nightly.20190702"],"77.0.3843.0":["7.0.0-nightly.20190704","7.0.0-nightly.20190705"],"77.0.3848.0":["7.0.0-nightly.20190719","7.0.0-nightly.20190720","7.0.0-nightly.20190721"],"77.0.3864.0":["7.0.0-nightly.20190726"],"78.0.3904.92":["7.0.1"],"78.0.3904.94":["7.1.0"],"78.0.3904.99":["7.1.1"],"78.0.3904.113":["7.1.2"],"78.0.3904.126":["7.1.3"],"78.0.3904.130":["7.1.4","7.1.5","7.1.6","7.1.7","7.1.8","7.1.9","7.1.10","7.1.11","7.1.12","7.1.13","7.1.14","7.2.0","7.2.1","7.2.2","7.2.3","7.2.4","7.3.0","7.3.1","7.3.2","7.3.3"],"79.0.3931.0":["8.0.0-beta.1","8.0.0-beta.2","8.0.0-nightly.20191019","8.0.0-nightly.20191020","8.0.0-nightly.20191021","8.0.0-nightly.20191023"],"80.0.3955.0":["8.0.0-beta.3","8.0.0-beta.4"],"80.0.3987.14":["8.0.0-beta.5"],"80.0.3987.51":["8.0.0-beta.6"],"80.0.3987.59":["8.0.0-beta.7"],"80.0.3987.75":["8.0.0-beta.8","8.0.0-beta.9"],"78.0.3871.0":["8.0.0-nightly.20190803","8.0.0-nightly.20190806","8.0.0-nightly.20190807","8.0.0-nightly.20190808","8.0.0-nightly.20190809","8.0.0-nightly.20190810","8.0.0-nightly.20190811","8.0.0-nightly.20190812","8.0.0-nightly.20190813","8.0.0-nightly.20190814","8.0.0-nightly.20190815"],"78.0.3881.0":["8.0.0-nightly.20190816","8.0.0-nightly.20190817","8.0.0-nightly.20190818","8.0.0-nightly.20190819","8.0.0-nightly.20190820"],"78.0.3892.0":["8.0.0-nightly.20190824","8.0.0-nightly.20190825","8.0.0-nightly.20190827","8.0.0-nightly.20190828","8.0.0-nightly.20190830","8.0.0-nightly.20190901","8.0.0-nightly.20190902","8.0.0-nightly.20190907","8.0.0-nightly.20190909","8.0.0-nightly.20190910","8.0.0-nightly.20190911","8.0.0-nightly.20190912","8.0.0-nightly.20190913","8.0.0-nightly.20190914","8.0.0-nightly.20190915","8.0.0-nightly.20190917"],"79.0.3915.0":["8.0.0-nightly.20190919","8.0.0-nightly.20190920"],"79.0.3919.0":["8.0.0-nightly.20190922","8.0.0-nightly.20190923","8.0.0-nightly.20190924","8.0.0-nightly.20190926","8.0.0-nightly.20190928","8.0.0-nightly.20190929","8.0.0-nightly.20190930","8.0.0-nightly.20191001","8.0.0-nightly.20191004","8.0.0-nightly.20191005","8.0.0-nightly.20191006","8.0.0-nightly.20191009","8.0.0-nightly.20191011","8.0.0-nightly.20191012","8.0.0-nightly.20191017"],"80.0.3952.0":["8.0.0-nightly.20191101","8.0.0-nightly.20191103","8.0.0-nightly.20191105"],"80.0.3987.86":["8.0.0","8.0.1","8.0.2"],"80.0.3987.134":["8.0.3"],"80.0.3987.137":["8.1.0"],"80.0.3987.141":["8.1.1"],"80.0.3987.158":["8.2.0"],"80.0.3987.163":["8.2.1","8.2.2","8.2.3","8.5.3","8.5.4","8.5.5"],"80.0.3987.165":["8.2.4","8.2.5","8.3.0","8.3.1","8.3.2","8.3.3","8.3.4","8.4.0","8.4.1","8.5.0","8.5.1","8.5.2"],"82.0.4048.0":["9.0.0-beta.1","9.0.0-beta.2","9.0.0-beta.3","9.0.0-beta.4","9.0.0-beta.5"],"82.0.4058.2":["9.0.0-beta.6","9.0.0-beta.7","9.0.0-beta.9"],"82.0.4085.10":["9.0.0-beta.10"],"82.0.4085.14":["9.0.0-beta.11","9.0.0-beta.12","9.0.0-beta.13"],"82.0.4085.27":["9.0.0-beta.14"],"83.0.4102.3":["9.0.0-beta.15","9.0.0-beta.16"],"83.0.4103.14":["9.0.0-beta.17"],"83.0.4103.16":["9.0.0-beta.18"],"83.0.4103.24":["9.0.0-beta.19"],"83.0.4103.26":["9.0.0-beta.20","9.0.0-beta.21"],"83.0.4103.34":["9.0.0-beta.22"],"83.0.4103.44":["9.0.0-beta.23"],"83.0.4103.45":["9.0.0-beta.24"],"80.0.3954.0":["9.0.0-nightly.20191121","9.0.0-nightly.20191122","9.0.0-nightly.20191123","9.0.0-nightly.20191124","9.0.0-nightly.20191126","9.0.0-nightly.20191128","9.0.0-nightly.20191129","9.0.0-nightly.20191130","9.0.0-nightly.20191201","9.0.0-nightly.20191202","9.0.0-nightly.20191203","9.0.0-nightly.20191204","9.0.0-nightly.20191205","9.0.0-nightly.20191210"],"81.0.3994.0":["9.0.0-nightly.20191220","9.0.0-nightly.20191221","9.0.0-nightly.20191222","9.0.0-nightly.20191223","9.0.0-nightly.20191224","9.0.0-nightly.20191225","9.0.0-nightly.20191226","9.0.0-nightly.20191228","9.0.0-nightly.20191229","9.0.0-nightly.20191230","9.0.0-nightly.20191231","9.0.0-nightly.20200101","9.0.0-nightly.20200103","9.0.0-nightly.20200104","9.0.0-nightly.20200105","9.0.0-nightly.20200106","9.0.0-nightly.20200108","9.0.0-nightly.20200109","9.0.0-nightly.20200110","9.0.0-nightly.20200111","9.0.0-nightly.20200113","9.0.0-nightly.20200115","9.0.0-nightly.20200116","9.0.0-nightly.20200117"],"81.0.4030.0":["9.0.0-nightly.20200119","9.0.0-nightly.20200121"],"83.0.4103.64":["9.0.0"],"83.0.4103.94":["9.0.1","9.0.2"],"83.0.4103.100":["9.0.3"],"83.0.4103.104":["9.0.4"],"83.0.4103.119":["9.0.5"],"83.0.4103.122":["9.1.0","9.1.1","9.1.2","9.2.0","9.2.1","9.3.0","9.3.1","9.3.2","9.3.3","9.3.4","9.3.5","9.4.0","9.4.1","9.4.2","9.4.3","9.4.4"],"84.0.4129.0":["10.0.0-beta.1","10.0.0-beta.2","10.0.0-nightly.20200501","10.0.0-nightly.20200504","10.0.0-nightly.20200505","10.0.0-nightly.20200506","10.0.0-nightly.20200507","10.0.0-nightly.20200508","10.0.0-nightly.20200511","10.0.0-nightly.20200512","10.0.0-nightly.20200513","10.0.0-nightly.20200514","10.0.0-nightly.20200515","10.0.0-nightly.20200518","10.0.0-nightly.20200519","10.0.0-nightly.20200520","10.0.0-nightly.20200521","11.0.0-nightly.20200525","11.0.0-nightly.20200526"],"85.0.4161.2":["10.0.0-beta.3","10.0.0-beta.4"],"85.0.4181.1":["10.0.0-beta.8","10.0.0-beta.9"],"85.0.4183.19":["10.0.0-beta.10"],"85.0.4183.20":["10.0.0-beta.11"],"85.0.4183.26":["10.0.0-beta.12"],"85.0.4183.39":["10.0.0-beta.13","10.0.0-beta.14","10.0.0-beta.15","10.0.0-beta.17","10.0.0-beta.19","10.0.0-beta.20","10.0.0-beta.21"],"85.0.4183.70":["10.0.0-beta.23"],"85.0.4183.78":["10.0.0-beta.24"],"85.0.4183.80":["10.0.0-beta.25"],"82.0.4050.0":["10.0.0-nightly.20200209","10.0.0-nightly.20200210","10.0.0-nightly.20200211","10.0.0-nightly.20200216","10.0.0-nightly.20200217","10.0.0-nightly.20200218","10.0.0-nightly.20200221","10.0.0-nightly.20200222","10.0.0-nightly.20200223","10.0.0-nightly.20200226","10.0.0-nightly.20200303"],"82.0.4076.0":["10.0.0-nightly.20200304","10.0.0-nightly.20200305","10.0.0-nightly.20200306","10.0.0-nightly.20200309","10.0.0-nightly.20200310"],"82.0.4083.0":["10.0.0-nightly.20200311"],"83.0.4086.0":["10.0.0-nightly.20200316"],"83.0.4087.0":["10.0.0-nightly.20200317","10.0.0-nightly.20200318","10.0.0-nightly.20200320","10.0.0-nightly.20200323","10.0.0-nightly.20200324","10.0.0-nightly.20200325","10.0.0-nightly.20200326","10.0.0-nightly.20200327","10.0.0-nightly.20200330","10.0.0-nightly.20200331","10.0.0-nightly.20200401","10.0.0-nightly.20200402","10.0.0-nightly.20200403","10.0.0-nightly.20200406"],"83.0.4095.0":["10.0.0-nightly.20200408","10.0.0-nightly.20200410","10.0.0-nightly.20200413"],"84.0.4114.0":["10.0.0-nightly.20200414"],"84.0.4115.0":["10.0.0-nightly.20200415","10.0.0-nightly.20200416","10.0.0-nightly.20200417"],"84.0.4121.0":["10.0.0-nightly.20200422","10.0.0-nightly.20200423"],"84.0.4125.0":["10.0.0-nightly.20200427","10.0.0-nightly.20200428","10.0.0-nightly.20200429","10.0.0-nightly.20200430"],"85.0.4183.84":["10.0.0"],"85.0.4183.86":["10.0.1"],"85.0.4183.87":["10.1.0"],"85.0.4183.93":["10.1.1"],"85.0.4183.98":["10.1.2"],"85.0.4183.121":["10.1.3","10.1.4","10.1.5","10.1.6","10.1.7","10.2.0","10.3.0","10.3.1","10.3.2","10.4.0","10.4.1","10.4.2","10.4.3","10.4.4","10.4.5","10.4.6","10.4.7"],"86.0.4234.0":["11.0.0-beta.1","11.0.0-beta.3","11.0.0-beta.4","11.0.0-beta.5","11.0.0-beta.6","11.0.0-beta.7","11.0.0-nightly.20200822","11.0.0-nightly.20200824","11.0.0-nightly.20200825","11.0.0-nightly.20200826","12.0.0-nightly.20200827","12.0.0-nightly.20200831","12.0.0-nightly.20200902","12.0.0-nightly.20200903","12.0.0-nightly.20200907","12.0.0-nightly.20200910","12.0.0-nightly.20200911","12.0.0-nightly.20200914"],"87.0.4251.1":["11.0.0-beta.8","11.0.0-beta.9","11.0.0-beta.11"],"87.0.4280.11":["11.0.0-beta.12","11.0.0-beta.13"],"87.0.4280.27":["11.0.0-beta.16","11.0.0-beta.17","11.0.0-beta.18","11.0.0-beta.19"],"87.0.4280.40":["11.0.0-beta.20"],"87.0.4280.47":["11.0.0-beta.22","11.0.0-beta.23"],"85.0.4156.0":["11.0.0-nightly.20200529"],"85.0.4162.0":["11.0.0-nightly.20200602","11.0.0-nightly.20200603","11.0.0-nightly.20200604","11.0.0-nightly.20200609","11.0.0-nightly.20200610","11.0.0-nightly.20200611","11.0.0-nightly.20200615","11.0.0-nightly.20200616","11.0.0-nightly.20200617","11.0.0-nightly.20200618","11.0.0-nightly.20200619"],"85.0.4179.0":["11.0.0-nightly.20200701","11.0.0-nightly.20200702","11.0.0-nightly.20200703","11.0.0-nightly.20200706","11.0.0-nightly.20200707","11.0.0-nightly.20200708","11.0.0-nightly.20200709"],"86.0.4203.0":["11.0.0-nightly.20200716","11.0.0-nightly.20200717","11.0.0-nightly.20200720","11.0.0-nightly.20200721"],"86.0.4209.0":["11.0.0-nightly.20200723","11.0.0-nightly.20200724","11.0.0-nightly.20200729","11.0.0-nightly.20200730","11.0.0-nightly.20200731","11.0.0-nightly.20200803","11.0.0-nightly.20200804","11.0.0-nightly.20200805","11.0.0-nightly.20200811","11.0.0-nightly.20200812"],"87.0.4280.60":["11.0.0","11.0.1"],"87.0.4280.67":["11.0.2","11.0.3","11.0.4"],"87.0.4280.88":["11.0.5","11.1.0","11.1.1"],"87.0.4280.141":["11.2.0","11.2.1","11.2.2","11.2.3","11.3.0","11.4.0","11.4.1","11.4.2","11.4.3","11.4.4","11.4.5","11.4.6","11.4.7","11.4.8","11.4.9","11.4.10","11.4.11","11.4.12","11.5.0"],"89.0.4328.0":["12.0.0-beta.1","12.0.0-beta.3","12.0.0-beta.4","12.0.0-beta.5","12.0.0-beta.6","12.0.0-beta.7","12.0.0-beta.8","12.0.0-beta.9","12.0.0-beta.10","12.0.0-beta.11","12.0.0-beta.12","12.0.0-beta.14","13.0.0-nightly.20201119","13.0.0-nightly.20201123","13.0.0-nightly.20201124","13.0.0-nightly.20201126","13.0.0-nightly.20201127","13.0.0-nightly.20201130","13.0.0-nightly.20201201","13.0.0-nightly.20201202","13.0.0-nightly.20201203","13.0.0-nightly.20201204","13.0.0-nightly.20201207","13.0.0-nightly.20201208","13.0.0-nightly.20201209","13.0.0-nightly.20201210","13.0.0-nightly.20201211","13.0.0-nightly.20201214"],"89.0.4348.1":["12.0.0-beta.16","12.0.0-beta.18","12.0.0-beta.19","12.0.0-beta.20"],"89.0.4388.2":["12.0.0-beta.21","12.0.0-beta.22","12.0.0-beta.23","12.0.0-beta.24","12.0.0-beta.25","12.0.0-beta.26"],"89.0.4389.23":["12.0.0-beta.27","12.0.0-beta.28","12.0.0-beta.29"],"89.0.4389.58":["12.0.0-beta.30","12.0.0-beta.31"],"87.0.4268.0":["12.0.0-nightly.20201002","12.0.0-nightly.20201007","12.0.0-nightly.20201009","12.0.0-nightly.20201012","12.0.0-nightly.20201013","12.0.0-nightly.20201014","12.0.0-nightly.20201015"],"88.0.4292.0":["12.0.0-nightly.20201023","12.0.0-nightly.20201026"],"88.0.4306.0":["12.0.0-nightly.20201030","12.0.0-nightly.20201102","12.0.0-nightly.20201103","12.0.0-nightly.20201104","12.0.0-nightly.20201105","12.0.0-nightly.20201106","12.0.0-nightly.20201111","12.0.0-nightly.20201112"],"88.0.4324.0":["12.0.0-nightly.20201116"],"89.0.4389.69":["12.0.0"],"89.0.4389.82":["12.0.1"],"89.0.4389.90":["12.0.2"],"89.0.4389.114":["12.0.3","12.0.4"],"89.0.4389.128":["12.0.5","12.0.6","12.0.7","12.0.8","12.0.9","12.0.10","12.0.11","12.0.12","12.0.13","12.0.14","12.0.15","12.0.16","12.0.17","12.0.18","12.1.0","12.1.1","12.1.2","12.2.0","12.2.1","12.2.2","12.2.3"],"90.0.4402.0":["13.0.0-beta.2","13.0.0-beta.3","13.0.0-nightly.20210210","13.0.0-nightly.20210211","13.0.0-nightly.20210212","13.0.0-nightly.20210216","13.0.0-nightly.20210217","13.0.0-nightly.20210218","13.0.0-nightly.20210219","13.0.0-nightly.20210222","13.0.0-nightly.20210225","13.0.0-nightly.20210226","13.0.0-nightly.20210301","13.0.0-nightly.20210302","13.0.0-nightly.20210303","14.0.0-nightly.20210304"],"90.0.4415.0":["13.0.0-beta.4","13.0.0-beta.5","13.0.0-beta.6","13.0.0-beta.7","13.0.0-beta.8","13.0.0-beta.9","13.0.0-beta.10","13.0.0-beta.11","13.0.0-beta.12","13.0.0-beta.13","14.0.0-nightly.20210305","14.0.0-nightly.20210308","14.0.0-nightly.20210309","14.0.0-nightly.20210311","14.0.0-nightly.20210315","14.0.0-nightly.20210316","14.0.0-nightly.20210317","14.0.0-nightly.20210318","14.0.0-nightly.20210319","14.0.0-nightly.20210323","14.0.0-nightly.20210324","14.0.0-nightly.20210325","14.0.0-nightly.20210326","14.0.0-nightly.20210329","14.0.0-nightly.20210330"],"91.0.4448.0":["13.0.0-beta.14","13.0.0-beta.16","13.0.0-beta.17","13.0.0-beta.18","13.0.0-beta.20","14.0.0-nightly.20210331","14.0.0-nightly.20210401","14.0.0-nightly.20210402","14.0.0-nightly.20210406","14.0.0-nightly.20210407","14.0.0-nightly.20210408","14.0.0-nightly.20210409","14.0.0-nightly.20210413"],"91.0.4472.33":["13.0.0-beta.21","13.0.0-beta.22","13.0.0-beta.23"],"91.0.4472.38":["13.0.0-beta.24","13.0.0-beta.25","13.0.0-beta.26","13.0.0-beta.27","13.0.0-beta.28"],"89.0.4349.0":["13.0.0-nightly.20201215","13.0.0-nightly.20201216","13.0.0-nightly.20201221","13.0.0-nightly.20201222"],"89.0.4359.0":["13.0.0-nightly.20201223","13.0.0-nightly.20210104","13.0.0-nightly.20210108","13.0.0-nightly.20210111"],"89.0.4386.0":["13.0.0-nightly.20210113","13.0.0-nightly.20210114","13.0.0-nightly.20210118","13.0.0-nightly.20210122","13.0.0-nightly.20210125"],"89.0.4389.0":["13.0.0-nightly.20210127","13.0.0-nightly.20210128","13.0.0-nightly.20210129","13.0.0-nightly.20210201","13.0.0-nightly.20210202","13.0.0-nightly.20210203","13.0.0-nightly.20210205","13.0.0-nightly.20210208","13.0.0-nightly.20210209"],"91.0.4472.69":["13.0.0","13.0.1"],"91.0.4472.77":["13.1.0","13.1.1","13.1.2"],"91.0.4472.106":["13.1.3","13.1.4"],"91.0.4472.124":["13.1.5","13.1.6","13.1.7"],"91.0.4472.164":["13.1.8","13.1.9","13.2.0","13.2.1","13.2.2","13.2.3","13.3.0","13.4.0","13.5.0","13.5.1","13.5.2","13.6.0","13.6.1","13.6.2","13.6.3","13.6.6","13.6.7","13.6.8","13.6.9"],"92.0.4511.0":["14.0.0-beta.1","14.0.0-beta.2","14.0.0-beta.3","14.0.0-nightly.20210520","14.0.0-nightly.20210523","14.0.0-nightly.20210524","15.0.0-nightly.20210527","15.0.0-nightly.20210528","15.0.0-nightly.20210531","15.0.0-nightly.20210601","15.0.0-nightly.20210602"],"93.0.4536.0":["14.0.0-beta.5","14.0.0-beta.6","14.0.0-beta.7","14.0.0-beta.8","15.0.0-nightly.20210609","15.0.0-nightly.20210610","15.0.0-nightly.20210611","15.0.0-nightly.20210614","15.0.0-nightly.20210615","15.0.0-nightly.20210616"],"93.0.4539.0":["14.0.0-beta.9","14.0.0-beta.10","15.0.0-nightly.20210617","15.0.0-nightly.20210618","15.0.0-nightly.20210621","15.0.0-nightly.20210622"],"93.0.4557.4":["14.0.0-beta.11","14.0.0-beta.12"],"93.0.4566.0":["14.0.0-beta.13","14.0.0-beta.14","14.0.0-beta.15","14.0.0-beta.16","14.0.0-beta.17","15.0.0-alpha.1","15.0.0-alpha.2","15.0.0-nightly.20210706","15.0.0-nightly.20210707","15.0.0-nightly.20210708","15.0.0-nightly.20210709","15.0.0-nightly.20210712","15.0.0-nightly.20210713","15.0.0-nightly.20210714","15.0.0-nightly.20210715","15.0.0-nightly.20210716","15.0.0-nightly.20210719","15.0.0-nightly.20210720","15.0.0-nightly.20210721","16.0.0-nightly.20210722","16.0.0-nightly.20210723","16.0.0-nightly.20210726"],"93.0.4577.15":["14.0.0-beta.18","14.0.0-beta.19","14.0.0-beta.20","14.0.0-beta.21"],"93.0.4577.25":["14.0.0-beta.22","14.0.0-beta.23"],"93.0.4577.51":["14.0.0-beta.24","14.0.0-beta.25"],"92.0.4475.0":["14.0.0-nightly.20210426","14.0.0-nightly.20210427"],"92.0.4488.0":["14.0.0-nightly.20210430","14.0.0-nightly.20210503"],"92.0.4496.0":["14.0.0-nightly.20210505"],"92.0.4498.0":["14.0.0-nightly.20210506"],"92.0.4499.0":["14.0.0-nightly.20210507","14.0.0-nightly.20210510","14.0.0-nightly.20210511","14.0.0-nightly.20210512","14.0.0-nightly.20210513"],"92.0.4505.0":["14.0.0-nightly.20210514","14.0.0-nightly.20210517","14.0.0-nightly.20210518","14.0.0-nightly.20210519"],"93.0.4577.58":["14.0.0"],"93.0.4577.63":["14.0.1"],"93.0.4577.82":["14.0.2","14.1.0","14.1.1","14.2.0","14.2.1","14.2.2","14.2.3","14.2.4","14.2.5","14.2.6","14.2.7","14.2.8","14.2.9"],"94.0.4584.0":["15.0.0-alpha.3","15.0.0-alpha.4","15.0.0-alpha.5","15.0.0-alpha.6","16.0.0-nightly.20210727","16.0.0-nightly.20210728","16.0.0-nightly.20210729","16.0.0-nightly.20210730","16.0.0-nightly.20210802","16.0.0-nightly.20210803","16.0.0-nightly.20210804","16.0.0-nightly.20210805","16.0.0-nightly.20210806","16.0.0-nightly.20210809","16.0.0-nightly.20210810","16.0.0-nightly.20210811"],"94.0.4590.2":["15.0.0-alpha.7","15.0.0-alpha.8","15.0.0-alpha.9","16.0.0-nightly.20210812","16.0.0-nightly.20210813","16.0.0-nightly.20210816","16.0.0-nightly.20210817","16.0.0-nightly.20210818","16.0.0-nightly.20210819","16.0.0-nightly.20210820","16.0.0-nightly.20210823"],"94.0.4606.12":["15.0.0-alpha.10"],"94.0.4606.20":["15.0.0-beta.1","15.0.0-beta.2"],"94.0.4606.31":["15.0.0-beta.3","15.0.0-beta.4","15.0.0-beta.5","15.0.0-beta.6","15.0.0-beta.7"],"93.0.4530.0":["15.0.0-nightly.20210603","15.0.0-nightly.20210604"],"93.0.4535.0":["15.0.0-nightly.20210608"],"93.0.4550.0":["15.0.0-nightly.20210623","15.0.0-nightly.20210624"],"93.0.4552.0":["15.0.0-nightly.20210625","15.0.0-nightly.20210628","15.0.0-nightly.20210629"],"93.0.4558.0":["15.0.0-nightly.20210630","15.0.0-nightly.20210701","15.0.0-nightly.20210702","15.0.0-nightly.20210705"],"94.0.4606.51":["15.0.0"],"94.0.4606.61":["15.1.0","15.1.1"],"94.0.4606.71":["15.1.2"],"94.0.4606.81":["15.2.0","15.3.0","15.3.1","15.3.2","15.3.3","15.3.4","15.3.5","15.3.6","15.3.7","15.4.0","15.4.1","15.4.2","15.5.0","15.5.1","15.5.2","15.5.3","15.5.4","15.5.5","15.5.6","15.5.7"],"95.0.4629.0":["16.0.0-alpha.1","16.0.0-alpha.2","16.0.0-alpha.3","16.0.0-alpha.4","16.0.0-alpha.5","16.0.0-alpha.6","16.0.0-alpha.7","16.0.0-nightly.20210902","16.0.0-nightly.20210903","16.0.0-nightly.20210906","16.0.0-nightly.20210907","16.0.0-nightly.20210908","16.0.0-nightly.20210909","16.0.0-nightly.20210910","16.0.0-nightly.20210913","16.0.0-nightly.20210914","16.0.0-nightly.20210915","16.0.0-nightly.20210916","16.0.0-nightly.20210917","16.0.0-nightly.20210920","16.0.0-nightly.20210921","16.0.0-nightly.20210922","17.0.0-nightly.20210923","17.0.0-nightly.20210924","17.0.0-nightly.20210927","17.0.0-nightly.20210928","17.0.0-nightly.20210929","17.0.0-nightly.20210930","17.0.0-nightly.20211001","17.0.0-nightly.20211004","17.0.0-nightly.20211005"],"96.0.4647.0":["16.0.0-alpha.8","16.0.0-alpha.9","16.0.0-beta.1","16.0.0-beta.2","16.0.0-beta.3","17.0.0-nightly.20211006","17.0.0-nightly.20211007","17.0.0-nightly.20211008","17.0.0-nightly.20211011","17.0.0-nightly.20211012","17.0.0-nightly.20211013","17.0.0-nightly.20211014","17.0.0-nightly.20211015","17.0.0-nightly.20211018","17.0.0-nightly.20211019","17.0.0-nightly.20211020","17.0.0-nightly.20211021"],"96.0.4664.18":["16.0.0-beta.4","16.0.0-beta.5"],"96.0.4664.27":["16.0.0-beta.6","16.0.0-beta.7"],"96.0.4664.35":["16.0.0-beta.8","16.0.0-beta.9"],"95.0.4612.5":["16.0.0-nightly.20210824","16.0.0-nightly.20210825","16.0.0-nightly.20210826","16.0.0-nightly.20210827","16.0.0-nightly.20210830","16.0.0-nightly.20210831","16.0.0-nightly.20210901"],"96.0.4664.45":["16.0.0","16.0.1"],"96.0.4664.55":["16.0.2","16.0.3","16.0.4","16.0.5"],"96.0.4664.110":["16.0.6","16.0.7","16.0.8"],"96.0.4664.174":["16.0.9","16.0.10","16.1.0","16.1.1","16.2.0","16.2.1","16.2.2","16.2.3","16.2.4","16.2.5","16.2.6","16.2.7","16.2.8"],"96.0.4664.4":["17.0.0-alpha.1","17.0.0-alpha.2","17.0.0-alpha.3","17.0.0-nightly.20211022","17.0.0-nightly.20211025","17.0.0-nightly.20211026","17.0.0-nightly.20211027","17.0.0-nightly.20211028","17.0.0-nightly.20211029","17.0.0-nightly.20211101","17.0.0-nightly.20211102","17.0.0-nightly.20211103","17.0.0-nightly.20211104","17.0.0-nightly.20211105","17.0.0-nightly.20211108","17.0.0-nightly.20211109","17.0.0-nightly.20211110","17.0.0-nightly.20211111","17.0.0-nightly.20211112","17.0.0-nightly.20211115","17.0.0-nightly.20211116","17.0.0-nightly.20211117","18.0.0-nightly.20211118","18.0.0-nightly.20211119","18.0.0-nightly.20211122","18.0.0-nightly.20211123"],"98.0.4706.0":["17.0.0-alpha.4","17.0.0-alpha.5","17.0.0-alpha.6","17.0.0-beta.1","17.0.0-beta.2","18.0.0-nightly.20211124","18.0.0-nightly.20211125","18.0.0-nightly.20211126","18.0.0-nightly.20211129","18.0.0-nightly.20211130","18.0.0-nightly.20211201","18.0.0-nightly.20211202","18.0.0-nightly.20211203","18.0.0-nightly.20211206","18.0.0-nightly.20211207","18.0.0-nightly.20211208","18.0.0-nightly.20211209","18.0.0-nightly.20211210","18.0.0-nightly.20211213","18.0.0-nightly.20211214","18.0.0-nightly.20211215","18.0.0-nightly.20211216","18.0.0-nightly.20211217","18.0.0-nightly.20211220","18.0.0-nightly.20211221","18.0.0-nightly.20211222","18.0.0-nightly.20211223","18.0.0-nightly.20211228","18.0.0-nightly.20211229","18.0.0-nightly.20211231","18.0.0-nightly.20220103","18.0.0-nightly.20220104","18.0.0-nightly.20220105","18.0.0-nightly.20220106","18.0.0-nightly.20220107","18.0.0-nightly.20220110"],"98.0.4758.9":["17.0.0-beta.3"],"98.0.4758.11":["17.0.0-beta.4","17.0.0-beta.5","17.0.0-beta.6","17.0.0-beta.7","17.0.0-beta.8","17.0.0-beta.9"],"98.0.4758.74":["17.0.0"],"98.0.4758.82":["17.0.1"],"98.0.4758.102":["17.1.0"],"98.0.4758.109":["17.1.1","17.1.2","17.2.0"],"98.0.4758.141":["17.3.0","17.3.1","17.4.0","17.4.1","17.4.2","17.4.3","17.4.4","17.4.5","17.4.6","17.4.7","17.4.8","17.4.9","17.4.10","17.4.11"],"99.0.4767.0":["18.0.0-alpha.1","18.0.0-alpha.2","18.0.0-alpha.3","18.0.0-alpha.4","18.0.0-alpha.5","18.0.0-nightly.20220111","18.0.0-nightly.20220112","18.0.0-nightly.20220113","18.0.0-nightly.20220114","18.0.0-nightly.20220117","18.0.0-nightly.20220118","18.0.0-nightly.20220119","18.0.0-nightly.20220121","18.0.0-nightly.20220124","18.0.0-nightly.20220125","18.0.0-nightly.20220127","18.0.0-nightly.20220128","18.0.0-nightly.20220131","18.0.0-nightly.20220201","19.0.0-nightly.20220202","19.0.0-nightly.20220203","19.0.0-nightly.20220204","19.0.0-nightly.20220207","19.0.0-nightly.20220208","19.0.0-nightly.20220209"],"100.0.4894.0":["18.0.0-beta.1","18.0.0-beta.2","18.0.0-beta.3","18.0.0-beta.4","18.0.0-beta.5","18.0.0-beta.6","19.0.0-nightly.20220308","19.0.0-nightly.20220309","19.0.0-nightly.20220310","19.0.0-nightly.20220311","19.0.0-nightly.20220314","19.0.0-nightly.20220315","19.0.0-nightly.20220316","19.0.0-nightly.20220317","19.0.0-nightly.20220318","19.0.0-nightly.20220321","19.0.0-nightly.20220322","19.0.0-nightly.20220323","19.0.0-nightly.20220324"],"100.0.4896.56":["18.0.0"],"100.0.4896.60":["18.0.1","18.0.2"],"100.0.4896.75":["18.0.3","18.0.4"],"100.0.4896.127":["18.1.0"],"100.0.4896.143":["18.2.0","18.2.1","18.2.2","18.2.3"],"100.0.4896.160":["18.2.4","18.3.0","18.3.1","18.3.2","18.3.3","18.3.4","18.3.5","18.3.6","18.3.7","18.3.8","18.3.9","18.3.11","18.3.12","18.3.13","18.3.14","18.3.15"],"102.0.4962.3":["19.0.0-alpha.1","19.0.0-nightly.20220328","19.0.0-nightly.20220329","20.0.0-nightly.20220330"],"102.0.4971.0":["19.0.0-alpha.2","19.0.0-alpha.3","20.0.0-nightly.20220411"],"102.0.4989.0":["19.0.0-alpha.4","19.0.0-alpha.5","20.0.0-nightly.20220414","20.0.0-nightly.20220415","20.0.0-nightly.20220418","20.0.0-nightly.20220419","20.0.0-nightly.20220420","20.0.0-nightly.20220421"],"102.0.4999.0":["19.0.0-beta.1","19.0.0-beta.2","19.0.0-beta.3","20.0.0-nightly.20220425","20.0.0-nightly.20220426","20.0.0-nightly.20220427","20.0.0-nightly.20220428","20.0.0-nightly.20220429","20.0.0-nightly.20220502","20.0.0-nightly.20220503","20.0.0-nightly.20220504","20.0.0-nightly.20220505","20.0.0-nightly.20220506","20.0.0-nightly.20220509","20.0.0-nightly.20220511","20.0.0-nightly.20220512","20.0.0-nightly.20220513","20.0.0-nightly.20220516","20.0.0-nightly.20220517"],"102.0.5005.27":["19.0.0-beta.4"],"102.0.5005.40":["19.0.0-beta.5","19.0.0-beta.6","19.0.0-beta.7"],"102.0.5005.49":["19.0.0-beta.8"],"102.0.4961.0":["19.0.0-nightly.20220325"],"102.0.5005.61":["19.0.0","19.0.1"],"102.0.5005.63":["19.0.2","19.0.3","19.0.4"],"102.0.5005.115":["19.0.5","19.0.6"],"102.0.5005.134":["19.0.7"],"102.0.5005.148":["19.0.8"],"102.0.5005.167":["19.0.9","19.0.10","19.0.11","19.0.12","19.0.13","19.0.14","19.0.15","19.0.16","19.0.17","19.1.0","19.1.1","19.1.2","19.1.3","19.1.4","19.1.5","19.1.6","19.1.7","19.1.8","19.1.9"],"103.0.5044.0":["20.0.0-alpha.1","20.0.0-nightly.20220518","20.0.0-nightly.20220519","20.0.0-nightly.20220520","20.0.0-nightly.20220523","20.0.0-nightly.20220524","21.0.0-nightly.20220526","21.0.0-nightly.20220527","21.0.0-nightly.20220530","21.0.0-nightly.20220531"],"104.0.5073.0":["20.0.0-alpha.2","20.0.0-alpha.3","20.0.0-alpha.4","20.0.0-alpha.5","20.0.0-alpha.6","20.0.0-alpha.7","20.0.0-beta.1","20.0.0-beta.2","20.0.0-beta.3","20.0.0-beta.4","20.0.0-beta.5","20.0.0-beta.6","20.0.0-beta.7","20.0.0-beta.8","21.0.0-nightly.20220602","21.0.0-nightly.20220603","21.0.0-nightly.20220606","21.0.0-nightly.20220607","21.0.0-nightly.20220608","21.0.0-nightly.20220609","21.0.0-nightly.20220610","21.0.0-nightly.20220613","21.0.0-nightly.20220614","21.0.0-nightly.20220615","21.0.0-nightly.20220616","21.0.0-nightly.20220617","21.0.0-nightly.20220620","21.0.0-nightly.20220621","21.0.0-nightly.20220622","21.0.0-nightly.20220623","21.0.0-nightly.20220624","21.0.0-nightly.20220627"],"104.0.5112.39":["20.0.0-beta.9"],"104.0.5112.48":["20.0.0-beta.10","20.0.0-beta.11","20.0.0-beta.12"],"104.0.5112.57":["20.0.0-beta.13"],"104.0.5112.65":["20.0.0"],"104.0.5112.81":["20.0.1","20.0.2","20.0.3"],"104.0.5112.102":["20.1.0","20.1.1"],"104.0.5112.114":["20.1.2","20.1.3","20.1.4"],"104.0.5112.124":["20.2.0","20.3.0","20.3.1","20.3.2","20.3.3","20.3.4","20.3.5","20.3.6","20.3.7","20.3.8","20.3.9","20.3.10","20.3.11","20.3.12"],"105.0.5187.0":["21.0.0-alpha.1","21.0.0-alpha.2","21.0.0-alpha.3","21.0.0-alpha.4","21.0.0-alpha.5","21.0.0-nightly.20220720","21.0.0-nightly.20220721","21.0.0-nightly.20220722","21.0.0-nightly.20220725","21.0.0-nightly.20220726","21.0.0-nightly.20220727","21.0.0-nightly.20220728","21.0.0-nightly.20220801","21.0.0-nightly.20220802","22.0.0-nightly.20220808","22.0.0-nightly.20220809","22.0.0-nightly.20220810","22.0.0-nightly.20220811","22.0.0-nightly.20220812","22.0.0-nightly.20220815","22.0.0-nightly.20220816","22.0.0-nightly.20220817"],"106.0.5216.0":["21.0.0-alpha.6","21.0.0-beta.1","21.0.0-beta.2","21.0.0-beta.3","21.0.0-beta.4","21.0.0-beta.5","22.0.0-nightly.20220822","22.0.0-nightly.20220823","22.0.0-nightly.20220824","22.0.0-nightly.20220825","22.0.0-nightly.20220829","22.0.0-nightly.20220830","22.0.0-nightly.20220831","22.0.0-nightly.20220901","22.0.0-nightly.20220902","22.0.0-nightly.20220905"],"106.0.5249.40":["21.0.0-beta.6","21.0.0-beta.7","21.0.0-beta.8"],"105.0.5129.0":["21.0.0-nightly.20220628","21.0.0-nightly.20220629","21.0.0-nightly.20220630","21.0.0-nightly.20220701","21.0.0-nightly.20220704","21.0.0-nightly.20220705","21.0.0-nightly.20220706","21.0.0-nightly.20220707","21.0.0-nightly.20220708","21.0.0-nightly.20220711","21.0.0-nightly.20220712","21.0.0-nightly.20220713"],"105.0.5173.0":["21.0.0-nightly.20220715","21.0.0-nightly.20220718","21.0.0-nightly.20220719"],"106.0.5249.51":["21.0.0"],"106.0.5249.61":["21.0.1"],"106.0.5249.91":["21.1.0"],"106.0.5249.103":["21.1.1"],"106.0.5249.119":["21.2.0"],"106.0.5249.165":["21.2.1"],"106.0.5249.168":["21.2.2","21.2.3"],"106.0.5249.181":["21.3.0","21.3.1"],"106.0.5249.199":["21.3.3","21.3.4","21.3.5","21.4.0","21.4.1","21.4.2","21.4.3","21.4.4"],"107.0.5286.0":["22.0.0-alpha.1","22.0.0-nightly.20220909","22.0.0-nightly.20220912","22.0.0-nightly.20220913","22.0.0-nightly.20220914","22.0.0-nightly.20220915","22.0.0-nightly.20220916","22.0.0-nightly.20220919","22.0.0-nightly.20220920","22.0.0-nightly.20220921","22.0.0-nightly.20220922","22.0.0-nightly.20220923","22.0.0-nightly.20220926","22.0.0-nightly.20220927","22.0.0-nightly.20220928","23.0.0-nightly.20220929","23.0.0-nightly.20220930","23.0.0-nightly.20221003"],"108.0.5329.0":["22.0.0-alpha.3","22.0.0-alpha.4","22.0.0-alpha.5","22.0.0-alpha.6","23.0.0-nightly.20221004","23.0.0-nightly.20221005","23.0.0-nightly.20221006","23.0.0-nightly.20221007","23.0.0-nightly.20221010","23.0.0-nightly.20221011","23.0.0-nightly.20221012","23.0.0-nightly.20221013","23.0.0-nightly.20221014","23.0.0-nightly.20221017"],"108.0.5355.0":["22.0.0-alpha.7","23.0.0-nightly.20221018","23.0.0-nightly.20221019","23.0.0-nightly.20221020","23.0.0-nightly.20221021","23.0.0-nightly.20221024","23.0.0-nightly.20221026"],"108.0.5359.10":["22.0.0-alpha.8","22.0.0-beta.1","22.0.0-beta.2","22.0.0-beta.3"],"108.0.5359.29":["22.0.0-beta.4"],"108.0.5359.40":["22.0.0-beta.5","22.0.0-beta.6"],"108.0.5359.48":["22.0.0-beta.7","22.0.0-beta.8"],"107.0.5274.0":["22.0.0-nightly.20220908"],"108.0.5359.62":["22.0.0"],"108.0.5359.125":["22.0.1"],"108.0.5359.179":["22.0.2","22.0.3","22.1.0"],"108.0.5359.215":["22.2.0","22.2.1","22.3.0","22.3.1","22.3.2","22.3.3","22.3.4","22.3.5","22.3.6","22.3.7","22.3.8","22.3.9","22.3.10","22.3.11","22.3.12","22.3.13","22.3.14","22.3.15","22.3.16","22.3.17","22.3.18","22.3.20","22.3.21","22.3.22","22.3.23","22.3.24","22.3.25","22.3.26","22.3.27"],"110.0.5415.0":["23.0.0-alpha.1","23.0.0-nightly.20221118","23.0.0-nightly.20221121","23.0.0-nightly.20221122","23.0.0-nightly.20221123","23.0.0-nightly.20221124","23.0.0-nightly.20221125","23.0.0-nightly.20221128","23.0.0-nightly.20221129","23.0.0-nightly.20221130","24.0.0-nightly.20221201","24.0.0-nightly.20221202","24.0.0-nightly.20221205"],"110.0.5451.0":["23.0.0-alpha.2","23.0.0-alpha.3","24.0.0-nightly.20221206","24.0.0-nightly.20221207","24.0.0-nightly.20221208","24.0.0-nightly.20221213","24.0.0-nightly.20221214","24.0.0-nightly.20221215","24.0.0-nightly.20221216"],"110.0.5478.5":["23.0.0-beta.1","23.0.0-beta.2","23.0.0-beta.3"],"110.0.5481.30":["23.0.0-beta.4"],"110.0.5481.38":["23.0.0-beta.5"],"110.0.5481.52":["23.0.0-beta.6","23.0.0-beta.8"],"109.0.5382.0":["23.0.0-nightly.20221027","23.0.0-nightly.20221028","23.0.0-nightly.20221031","23.0.0-nightly.20221101","23.0.0-nightly.20221102","23.0.0-nightly.20221103","23.0.0-nightly.20221104","23.0.0-nightly.20221107","23.0.0-nightly.20221108","23.0.0-nightly.20221109","23.0.0-nightly.20221110","23.0.0-nightly.20221111","23.0.0-nightly.20221114","23.0.0-nightly.20221115","23.0.0-nightly.20221116","23.0.0-nightly.20221117"],"110.0.5481.77":["23.0.0"],"110.0.5481.100":["23.1.0"],"110.0.5481.104":["23.1.1"],"110.0.5481.177":["23.1.2"],"110.0.5481.179":["23.1.3"],"110.0.5481.192":["23.1.4","23.2.0"],"110.0.5481.208":["23.2.1","23.2.2","23.2.3","23.2.4","23.3.0","23.3.1","23.3.2","23.3.3","23.3.4","23.3.5","23.3.6","23.3.7","23.3.8","23.3.9","23.3.10","23.3.11","23.3.12","23.3.13"],"111.0.5560.0":["24.0.0-alpha.1","24.0.0-alpha.2","24.0.0-alpha.3","24.0.0-alpha.4","24.0.0-alpha.5","24.0.0-alpha.6","24.0.0-alpha.7","24.0.0-nightly.20230203","24.0.0-nightly.20230206","24.0.0-nightly.20230207","24.0.0-nightly.20230208","24.0.0-nightly.20230209","25.0.0-nightly.20230210","25.0.0-nightly.20230214","25.0.0-nightly.20230215","25.0.0-nightly.20230216","25.0.0-nightly.20230217","25.0.0-nightly.20230220","25.0.0-nightly.20230221","25.0.0-nightly.20230222","25.0.0-nightly.20230223","25.0.0-nightly.20230224","25.0.0-nightly.20230227","25.0.0-nightly.20230228","25.0.0-nightly.20230301","25.0.0-nightly.20230302","25.0.0-nightly.20230303","25.0.0-nightly.20230306","25.0.0-nightly.20230307","25.0.0-nightly.20230308","25.0.0-nightly.20230309","25.0.0-nightly.20230310"],"111.0.5563.50":["24.0.0-beta.1","24.0.0-beta.2"],"112.0.5615.20":["24.0.0-beta.3","24.0.0-beta.4"],"112.0.5615.29":["24.0.0-beta.5"],"112.0.5615.39":["24.0.0-beta.6","24.0.0-beta.7"],"111.0.5518.0":["24.0.0-nightly.20230109","24.0.0-nightly.20230110","24.0.0-nightly.20230111","24.0.0-nightly.20230112","24.0.0-nightly.20230113","24.0.0-nightly.20230116","24.0.0-nightly.20230117","24.0.0-nightly.20230118","24.0.0-nightly.20230119","24.0.0-nightly.20230120","24.0.0-nightly.20230123","24.0.0-nightly.20230124","24.0.0-nightly.20230125","24.0.0-nightly.20230126","24.0.0-nightly.20230127","24.0.0-nightly.20230131","24.0.0-nightly.20230201","24.0.0-nightly.20230202"],"112.0.5615.49":["24.0.0"],"112.0.5615.50":["24.1.0","24.1.1"],"112.0.5615.87":["24.1.2"],"112.0.5615.165":["24.1.3","24.2.0","24.3.0"],"112.0.5615.183":["24.3.1"],"112.0.5615.204":["24.4.0","24.4.1","24.5.0","24.5.1","24.6.0","24.6.1","24.6.2","24.6.3","24.6.4","24.6.5","24.7.0","24.7.1","24.8.0","24.8.1","24.8.2","24.8.3","24.8.4","24.8.5","24.8.6","24.8.7","24.8.8"],"114.0.5694.0":["25.0.0-alpha.1","25.0.0-alpha.2","25.0.0-nightly.20230405","26.0.0-nightly.20230406","26.0.0-nightly.20230407","26.0.0-nightly.20230410","26.0.0-nightly.20230411"],"114.0.5710.0":["25.0.0-alpha.3","25.0.0-alpha.4","26.0.0-nightly.20230413","26.0.0-nightly.20230414","26.0.0-nightly.20230417"],"114.0.5719.0":["25.0.0-alpha.5","25.0.0-alpha.6","25.0.0-beta.1","25.0.0-beta.2","25.0.0-beta.3","26.0.0-nightly.20230421","26.0.0-nightly.20230424","26.0.0-nightly.20230425","26.0.0-nightly.20230426","26.0.0-nightly.20230427","26.0.0-nightly.20230428","26.0.0-nightly.20230501","26.0.0-nightly.20230502","26.0.0-nightly.20230503","26.0.0-nightly.20230504","26.0.0-nightly.20230505","26.0.0-nightly.20230508","26.0.0-nightly.20230509","26.0.0-nightly.20230510"],"114.0.5735.16":["25.0.0-beta.4","25.0.0-beta.5","25.0.0-beta.6","25.0.0-beta.7"],"114.0.5735.35":["25.0.0-beta.8"],"114.0.5735.45":["25.0.0-beta.9","25.0.0","25.0.1"],"113.0.5636.0":["25.0.0-nightly.20230314"],"113.0.5651.0":["25.0.0-nightly.20230315"],"113.0.5653.0":["25.0.0-nightly.20230317"],"113.0.5660.0":["25.0.0-nightly.20230320"],"113.0.5664.0":["25.0.0-nightly.20230321"],"113.0.5666.0":["25.0.0-nightly.20230322"],"113.0.5668.0":["25.0.0-nightly.20230323"],"113.0.5670.0":["25.0.0-nightly.20230324","25.0.0-nightly.20230327","25.0.0-nightly.20230328","25.0.0-nightly.20230329","25.0.0-nightly.20230330"],"114.0.5684.0":["25.0.0-nightly.20230331","25.0.0-nightly.20230403"],"114.0.5692.0":["25.0.0-nightly.20230404"],"114.0.5735.106":["25.1.0","25.1.1"],"114.0.5735.134":["25.2.0"],"114.0.5735.199":["25.3.0"],"114.0.5735.243":["25.3.1"],"114.0.5735.248":["25.3.2","25.4.0"],"114.0.5735.289":["25.5.0","25.6.0","25.7.0","25.8.0","25.8.1","25.8.2","25.8.3","25.8.4","25.9.0","25.9.1","25.9.2","25.9.3"],"116.0.5791.0":["26.0.0-alpha.1","26.0.0-alpha.2","26.0.0-alpha.3","26.0.0-alpha.4","26.0.0-alpha.5","26.0.0-nightly.20230526","26.0.0-nightly.20230529","26.0.0-nightly.20230530","26.0.0-nightly.20230531","27.0.0-nightly.20230601","27.0.0-nightly.20230602","27.0.0-nightly.20230605","27.0.0-nightly.20230606","27.0.0-nightly.20230607","27.0.0-nightly.20230609"],"116.0.5815.0":["26.0.0-alpha.6","27.0.0-nightly.20230612","27.0.0-nightly.20230613"],"116.0.5831.0":["26.0.0-alpha.7","27.0.0-nightly.20230615"],"116.0.5845.0":["26.0.0-alpha.8","26.0.0-beta.1","27.0.0-nightly.20230622","27.0.0-nightly.20230623","27.0.0-nightly.20230626","27.0.0-nightly.20230627","27.0.0-nightly.20230628","27.0.0-nightly.20230629","27.0.0-nightly.20230630"],"116.0.5845.14":["26.0.0-beta.2","26.0.0-beta.3","26.0.0-beta.4","26.0.0-beta.5","26.0.0-beta.6","26.0.0-beta.7"],"116.0.5845.42":["26.0.0-beta.8","26.0.0-beta.9"],"116.0.5845.49":["26.0.0-beta.10","26.0.0-beta.11"],"116.0.5845.62":["26.0.0-beta.12"],"114.0.5708.0":["26.0.0-nightly.20230412"],"114.0.5715.0":["26.0.0-nightly.20230418"],"115.0.5760.0":["26.0.0-nightly.20230511","26.0.0-nightly.20230512","26.0.0-nightly.20230515","26.0.0-nightly.20230516","26.0.0-nightly.20230517","26.0.0-nightly.20230518","26.0.0-nightly.20230519","26.0.0-nightly.20230522","26.0.0-nightly.20230523"],"115.0.5786.0":["26.0.0-nightly.20230524"],"115.0.5790.0":["26.0.0-nightly.20230525"],"116.0.5845.82":["26.0.0"],"116.0.5845.97":["26.1.0"],"116.0.5845.179":["26.2.0"],"116.0.5845.188":["26.2.1"],"116.0.5845.190":["26.2.2","26.2.3","26.2.4"],"116.0.5845.228":["26.3.0","26.4.0","26.4.1","26.4.2","26.4.3"],"118.0.5949.0":["27.0.0-alpha.1","27.0.0-alpha.2","27.0.0-alpha.3","27.0.0-alpha.4","27.0.0-alpha.5","27.0.0-alpha.6","27.0.0-nightly.20230816","28.0.0-nightly.20230817","28.0.0-nightly.20230818","28.0.0-nightly.20230821","28.0.0-nightly.20230822","28.0.0-nightly.20230823","28.0.0-nightly.20230824","28.0.0-nightly.20230825","28.0.0-nightly.20230828","28.0.0-nightly.20230829","28.0.0-nightly.20230830","28.0.0-nightly.20230831"],"118.0.5993.5":["27.0.0-beta.1","27.0.0-beta.2","27.0.0-beta.3"],"118.0.5993.11":["27.0.0-beta.4"],"118.0.5993.18":["27.0.0-beta.5","27.0.0-beta.6","27.0.0-beta.7","27.0.0-beta.8","27.0.0-beta.9"],"116.0.5829.0":["27.0.0-nightly.20230614"],"116.0.5833.0":["27.0.0-nightly.20230616","27.0.0-nightly.20230619","27.0.0-nightly.20230620","27.0.0-nightly.20230621"],"117.0.5852.0":["27.0.0-nightly.20230703","27.0.0-nightly.20230704","27.0.0-nightly.20230705","27.0.0-nightly.20230706","27.0.0-nightly.20230707","27.0.0-nightly.20230710","27.0.0-nightly.20230711","27.0.0-nightly.20230712","27.0.0-nightly.20230713","27.0.0-nightly.20230714"],"117.0.5884.1":["27.0.0-nightly.20230717","27.0.0-nightly.20230718"],"117.0.5892.0":["27.0.0-nightly.20230719"],"117.0.5897.0":["27.0.0-nightly.20230720","27.0.0-nightly.20230721","27.0.0-nightly.20230724","27.0.0-nightly.20230725","27.0.0-nightly.20230726","27.0.0-nightly.20230727","27.0.0-nightly.20230728","27.0.0-nightly.20230731"],"117.0.5911.0":["27.0.0-nightly.20230801","27.0.0-nightly.20230802","27.0.0-nightly.20230803"],"117.0.5921.0":["27.0.0-nightly.20230804","27.0.0-nightly.20230807","27.0.0-nightly.20230808","27.0.0-nightly.20230814","27.0.0-nightly.20230815"],"118.0.5993.54":["27.0.0"],"118.0.5993.89":["27.0.1","27.0.2"],"118.0.5993.120":["27.0.3"],"119.0.6045.0":["28.0.0-alpha.1","28.0.0-alpha.2","28.0.0-nightly.20231006","28.0.0-nightly.20231009","28.0.0-nightly.20231010","28.0.0-nightly.20231011","29.0.0-nightly.20231012","29.0.0-nightly.20231013","29.0.0-nightly.20231016","29.0.0-nightly.20231017","29.0.0-nightly.20231018","29.0.0-nightly.20231019","29.0.0-nightly.20231020","29.0.0-nightly.20231023","29.0.0-nightly.20231024"],"119.0.6045.21":["28.0.0-alpha.3","28.0.0-alpha.4"],"119.0.6045.33":["28.0.0-alpha.5","28.0.0-alpha.6","28.0.0-alpha.7","28.0.0-beta.1"],"120.0.6099.0":["28.0.0-beta.2"],"118.0.5991.0":["28.0.0-nightly.20230906"],"118.0.5993.0":["28.0.0-nightly.20230907","28.0.0-nightly.20230908","28.0.0-nightly.20230911","28.0.0-nightly.20230912","28.0.0-nightly.20230913","28.0.0-nightly.20230914","28.0.0-nightly.20230915"],"119.0.6006.0":["28.0.0-nightly.20230919"],"119.0.6017.0":["28.0.0-nightly.20230920"],"119.0.6019.2":["28.0.0-nightly.20230921","28.0.0-nightly.20230925","28.0.0-nightly.20230926","28.0.0-nightly.20230927","28.0.0-nightly.20230928"],"119.0.6029.0":["28.0.0-nightly.20230929","28.0.0-nightly.20231002"],"119.0.6043.0":["28.0.0-nightly.20231003","28.0.0-nightly.20231004","28.0.0-nightly.20231005"],"120.0.6078.0":["29.0.0-nightly.20231025","29.0.0-nightly.20231026","29.0.0-nightly.20231027","29.0.0-nightly.20231030","29.0.0-nightly.20231031","29.0.0-nightly.20231101"],"121.0.6100.0":["29.0.0-nightly.20231102","29.0.0-nightly.20231103"]}
      \ 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 04e5b3066cbf2d..b3593a4450df8d 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
      @@ -1846,6 +1846,7 @@ module.exports = {
       	"24.8.5": "112.0.5615.204",
       	"24.8.6": "112.0.5615.204",
       	"24.8.7": "112.0.5615.204",
      +	"24.8.8": "112.0.5615.204",
       	"25.0.0-alpha.1": "114.0.5694.0",
       	"25.0.0-alpha.2": "114.0.5694.0",
       	"25.0.0-alpha.3": "114.0.5710.0",
      @@ -1915,6 +1916,9 @@ module.exports = {
       	"25.8.3": "114.0.5735.289",
       	"25.8.4": "114.0.5735.289",
       	"25.9.0": "114.0.5735.289",
      +	"25.9.1": "114.0.5735.289",
      +	"25.9.2": "114.0.5735.289",
      +	"25.9.3": "114.0.5735.289",
       	"26.0.0-alpha.1": "116.0.5791.0",
       	"26.0.0-alpha.2": "116.0.5791.0",
       	"26.0.0-alpha.3": "116.0.5791.0",
      @@ -1981,6 +1985,10 @@ module.exports = {
       	"26.2.3": "116.0.5845.190",
       	"26.2.4": "116.0.5845.190",
       	"26.3.0": "116.0.5845.228",
      +	"26.4.0": "116.0.5845.228",
      +	"26.4.1": "116.0.5845.228",
      +	"26.4.2": "116.0.5845.228",
      +	"26.4.3": "116.0.5845.228",
       	"27.0.0-alpha.1": "118.0.5949.0",
       	"27.0.0-alpha.2": "118.0.5949.0",
       	"27.0.0-alpha.3": "118.0.5949.0",
      @@ -2048,6 +2056,18 @@ module.exports = {
       	"27.0.0-nightly.20230815": "117.0.5921.0",
       	"27.0.0-nightly.20230816": "118.0.5949.0",
       	"27.0.0": "118.0.5993.54",
      +	"27.0.1": "118.0.5993.89",
      +	"27.0.2": "118.0.5993.89",
      +	"27.0.3": "118.0.5993.120",
      +	"28.0.0-alpha.1": "119.0.6045.0",
      +	"28.0.0-alpha.2": "119.0.6045.0",
      +	"28.0.0-alpha.3": "119.0.6045.21",
      +	"28.0.0-alpha.4": "119.0.6045.21",
      +	"28.0.0-alpha.5": "119.0.6045.33",
      +	"28.0.0-alpha.6": "119.0.6045.33",
      +	"28.0.0-alpha.7": "119.0.6045.33",
      +	"28.0.0-beta.1": "119.0.6045.33",
      +	"28.0.0-beta.2": "120.0.6099.0",
       	"28.0.0-nightly.20230817": "118.0.5949.0",
       	"28.0.0-nightly.20230818": "118.0.5949.0",
       	"28.0.0-nightly.20230821": "118.0.5949.0",
      @@ -2081,5 +2101,23 @@ module.exports = {
       	"28.0.0-nightly.20231005": "119.0.6043.0",
       	"28.0.0-nightly.20231006": "119.0.6045.0",
       	"28.0.0-nightly.20231009": "119.0.6045.0",
      -	"28.0.0-nightly.20231010": "119.0.6045.0"
      +	"28.0.0-nightly.20231010": "119.0.6045.0",
      +	"28.0.0-nightly.20231011": "119.0.6045.0",
      +	"29.0.0-nightly.20231012": "119.0.6045.0",
      +	"29.0.0-nightly.20231013": "119.0.6045.0",
      +	"29.0.0-nightly.20231016": "119.0.6045.0",
      +	"29.0.0-nightly.20231017": "119.0.6045.0",
      +	"29.0.0-nightly.20231018": "119.0.6045.0",
      +	"29.0.0-nightly.20231019": "119.0.6045.0",
      +	"29.0.0-nightly.20231020": "119.0.6045.0",
      +	"29.0.0-nightly.20231023": "119.0.6045.0",
      +	"29.0.0-nightly.20231024": "119.0.6045.0",
      +	"29.0.0-nightly.20231025": "120.0.6078.0",
      +	"29.0.0-nightly.20231026": "120.0.6078.0",
      +	"29.0.0-nightly.20231027": "120.0.6078.0",
      +	"29.0.0-nightly.20231030": "120.0.6078.0",
      +	"29.0.0-nightly.20231031": "120.0.6078.0",
      +	"29.0.0-nightly.20231101": "120.0.6078.0",
      +	"29.0.0-nightly.20231102": "121.0.6100.0",
      +	"29.0.0-nightly.20231103": "121.0.6100.0"
       };
      \ 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 8ab3c302f7726b..175dcd649ad844 100644
      --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.json
      +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.json
      @@ -1 +1 @@
      -{"0.20.0":"39.0.2171.65","0.20.1":"39.0.2171.65","0.20.2":"39.0.2171.65","0.20.3":"39.0.2171.65","0.20.4":"39.0.2171.65","0.20.5":"39.0.2171.65","0.20.6":"39.0.2171.65","0.20.7":"39.0.2171.65","0.20.8":"39.0.2171.65","0.21.0":"40.0.2214.91","0.21.1":"40.0.2214.91","0.21.2":"40.0.2214.91","0.21.3":"41.0.2272.76","0.22.1":"41.0.2272.76","0.22.2":"41.0.2272.76","0.22.3":"41.0.2272.76","0.23.0":"41.0.2272.76","0.24.0":"41.0.2272.76","0.25.0":"42.0.2311.107","0.25.1":"42.0.2311.107","0.25.2":"42.0.2311.107","0.25.3":"42.0.2311.107","0.26.0":"42.0.2311.107","0.26.1":"42.0.2311.107","0.27.0":"42.0.2311.107","0.27.1":"42.0.2311.107","0.27.2":"43.0.2357.65","0.27.3":"43.0.2357.65","0.28.0":"43.0.2357.65","0.28.1":"43.0.2357.65","0.28.2":"43.0.2357.65","0.28.3":"43.0.2357.65","0.29.1":"43.0.2357.65","0.29.2":"43.0.2357.65","0.30.4":"44.0.2403.125","0.31.0":"44.0.2403.125","0.31.2":"45.0.2454.85","0.32.2":"45.0.2454.85","0.32.3":"45.0.2454.85","0.33.0":"45.0.2454.85","0.33.1":"45.0.2454.85","0.33.2":"45.0.2454.85","0.33.3":"45.0.2454.85","0.33.4":"45.0.2454.85","0.33.6":"45.0.2454.85","0.33.7":"45.0.2454.85","0.33.8":"45.0.2454.85","0.33.9":"45.0.2454.85","0.34.0":"45.0.2454.85","0.34.1":"45.0.2454.85","0.34.2":"45.0.2454.85","0.34.3":"45.0.2454.85","0.34.4":"45.0.2454.85","0.35.1":"45.0.2454.85","0.35.2":"45.0.2454.85","0.35.3":"45.0.2454.85","0.35.4":"45.0.2454.85","0.35.5":"45.0.2454.85","0.36.0":"47.0.2526.73","0.36.2":"47.0.2526.73","0.36.3":"47.0.2526.73","0.36.4":"47.0.2526.73","0.36.5":"47.0.2526.110","0.36.6":"47.0.2526.110","0.36.7":"47.0.2526.110","0.36.8":"47.0.2526.110","0.36.9":"47.0.2526.110","0.36.10":"47.0.2526.110","0.36.11":"47.0.2526.110","0.36.12":"47.0.2526.110","0.37.0":"49.0.2623.75","0.37.1":"49.0.2623.75","0.37.3":"49.0.2623.75","0.37.4":"49.0.2623.75","0.37.5":"49.0.2623.75","0.37.6":"49.0.2623.75","0.37.7":"49.0.2623.75","0.37.8":"49.0.2623.75","1.0.0":"49.0.2623.75","1.0.1":"49.0.2623.75","1.0.2":"49.0.2623.75","1.1.0":"50.0.2661.102","1.1.1":"50.0.2661.102","1.1.2":"50.0.2661.102","1.1.3":"50.0.2661.102","1.2.0":"51.0.2704.63","1.2.1":"51.0.2704.63","1.2.2":"51.0.2704.84","1.2.3":"51.0.2704.84","1.2.4":"51.0.2704.103","1.2.5":"51.0.2704.103","1.2.6":"51.0.2704.106","1.2.7":"51.0.2704.106","1.2.8":"51.0.2704.106","1.3.0":"52.0.2743.82","1.3.1":"52.0.2743.82","1.3.2":"52.0.2743.82","1.3.3":"52.0.2743.82","1.3.4":"52.0.2743.82","1.3.5":"52.0.2743.82","1.3.6":"52.0.2743.82","1.3.7":"52.0.2743.82","1.3.9":"52.0.2743.82","1.3.10":"52.0.2743.82","1.3.13":"52.0.2743.82","1.3.14":"52.0.2743.82","1.3.15":"52.0.2743.82","1.4.0":"53.0.2785.113","1.4.1":"53.0.2785.113","1.4.2":"53.0.2785.113","1.4.3":"53.0.2785.113","1.4.4":"53.0.2785.113","1.4.5":"53.0.2785.113","1.4.6":"53.0.2785.143","1.4.7":"53.0.2785.143","1.4.8":"53.0.2785.143","1.4.10":"53.0.2785.143","1.4.11":"53.0.2785.143","1.4.12":"54.0.2840.51","1.4.13":"53.0.2785.143","1.4.14":"53.0.2785.143","1.4.15":"53.0.2785.143","1.4.16":"53.0.2785.143","1.5.0":"54.0.2840.101","1.5.1":"54.0.2840.101","1.6.0":"56.0.2924.87","1.6.1":"56.0.2924.87","1.6.2":"56.0.2924.87","1.6.3":"56.0.2924.87","1.6.4":"56.0.2924.87","1.6.5":"56.0.2924.87","1.6.6":"56.0.2924.87","1.6.7":"56.0.2924.87","1.6.8":"56.0.2924.87","1.6.9":"56.0.2924.87","1.6.10":"56.0.2924.87","1.6.11":"56.0.2924.87","1.6.12":"56.0.2924.87","1.6.13":"56.0.2924.87","1.6.14":"56.0.2924.87","1.6.15":"56.0.2924.87","1.6.16":"56.0.2924.87","1.6.17":"56.0.2924.87","1.6.18":"56.0.2924.87","1.7.0":"58.0.3029.110","1.7.1":"58.0.3029.110","1.7.2":"58.0.3029.110","1.7.3":"58.0.3029.110","1.7.4":"58.0.3029.110","1.7.5":"58.0.3029.110","1.7.6":"58.0.3029.110","1.7.7":"58.0.3029.110","1.7.8":"58.0.3029.110","1.7.9":"58.0.3029.110","1.7.10":"58.0.3029.110","1.7.11":"58.0.3029.110","1.7.12":"58.0.3029.110","1.7.13":"58.0.3029.110","1.7.14":"58.0.3029.110","1.7.15":"58.0.3029.110","1.7.16":"58.0.3029.110","1.8.0":"59.0.3071.115","1.8.1":"59.0.3071.115","1.8.2-beta.1":"59.0.3071.115","1.8.2-beta.2":"59.0.3071.115","1.8.2-beta.3":"59.0.3071.115","1.8.2-beta.4":"59.0.3071.115","1.8.2-beta.5":"59.0.3071.115","1.8.2":"59.0.3071.115","1.8.3":"59.0.3071.115","1.8.4":"59.0.3071.115","1.8.5":"59.0.3071.115","1.8.6":"59.0.3071.115","1.8.7":"59.0.3071.115","1.8.8":"59.0.3071.115","2.0.0-beta.1":"61.0.3163.100","2.0.0-beta.2":"61.0.3163.100","2.0.0-beta.3":"61.0.3163.100","2.0.0-beta.4":"61.0.3163.100","2.0.0-beta.5":"61.0.3163.100","2.0.0-beta.6":"61.0.3163.100","2.0.0-beta.7":"61.0.3163.100","2.0.0-beta.8":"61.0.3163.100","2.0.0":"61.0.3163.100","2.0.1":"61.0.3163.100","2.0.2":"61.0.3163.100","2.0.3":"61.0.3163.100","2.0.4":"61.0.3163.100","2.0.5":"61.0.3163.100","2.0.6":"61.0.3163.100","2.0.7":"61.0.3163.100","2.0.8-nightly.20180819":"61.0.3163.100","2.0.8-nightly.20180820":"61.0.3163.100","2.0.8":"61.0.3163.100","2.0.9":"61.0.3163.100","2.0.10":"61.0.3163.100","2.0.11":"61.0.3163.100","2.0.12":"61.0.3163.100","2.0.13":"61.0.3163.100","2.0.14":"61.0.3163.100","2.0.15":"61.0.3163.100","2.0.16":"61.0.3163.100","2.0.17":"61.0.3163.100","2.0.18":"61.0.3163.100","2.1.0-unsupported.20180809":"61.0.3163.100","3.0.0-beta.1":"66.0.3359.181","3.0.0-beta.2":"66.0.3359.181","3.0.0-beta.3":"66.0.3359.181","3.0.0-beta.4":"66.0.3359.181","3.0.0-beta.5":"66.0.3359.181","3.0.0-beta.6":"66.0.3359.181","3.0.0-beta.7":"66.0.3359.181","3.0.0-beta.8":"66.0.3359.181","3.0.0-beta.9":"66.0.3359.181","3.0.0-beta.10":"66.0.3359.181","3.0.0-beta.11":"66.0.3359.181","3.0.0-beta.12":"66.0.3359.181","3.0.0-beta.13":"66.0.3359.181","3.0.0-nightly.20180818":"66.0.3359.181","3.0.0-nightly.20180821":"66.0.3359.181","3.0.0-nightly.20180823":"66.0.3359.181","3.0.0-nightly.20180904":"66.0.3359.181","3.0.0":"66.0.3359.181","3.0.1":"66.0.3359.181","3.0.2":"66.0.3359.181","3.0.3":"66.0.3359.181","3.0.4":"66.0.3359.181","3.0.5":"66.0.3359.181","3.0.6":"66.0.3359.181","3.0.7":"66.0.3359.181","3.0.8":"66.0.3359.181","3.0.9":"66.0.3359.181","3.0.10":"66.0.3359.181","3.0.11":"66.0.3359.181","3.0.12":"66.0.3359.181","3.0.13":"66.0.3359.181","3.0.14":"66.0.3359.181","3.0.15":"66.0.3359.181","3.0.16":"66.0.3359.181","3.1.0-beta.1":"66.0.3359.181","3.1.0-beta.2":"66.0.3359.181","3.1.0-beta.3":"66.0.3359.181","3.1.0-beta.4":"66.0.3359.181","3.1.0-beta.5":"66.0.3359.181","3.1.0":"66.0.3359.181","3.1.1":"66.0.3359.181","3.1.2":"66.0.3359.181","3.1.3":"66.0.3359.181","3.1.4":"66.0.3359.181","3.1.5":"66.0.3359.181","3.1.6":"66.0.3359.181","3.1.7":"66.0.3359.181","3.1.8":"66.0.3359.181","3.1.9":"66.0.3359.181","3.1.10":"66.0.3359.181","3.1.11":"66.0.3359.181","3.1.12":"66.0.3359.181","3.1.13":"66.0.3359.181","4.0.0-beta.1":"69.0.3497.106","4.0.0-beta.2":"69.0.3497.106","4.0.0-beta.3":"69.0.3497.106","4.0.0-beta.4":"69.0.3497.106","4.0.0-beta.5":"69.0.3497.106","4.0.0-beta.6":"69.0.3497.106","4.0.0-beta.7":"69.0.3497.106","4.0.0-beta.8":"69.0.3497.106","4.0.0-beta.9":"69.0.3497.106","4.0.0-beta.10":"69.0.3497.106","4.0.0-beta.11":"69.0.3497.106","4.0.0-nightly.20180817":"66.0.3359.181","4.0.0-nightly.20180819":"66.0.3359.181","4.0.0-nightly.20180821":"66.0.3359.181","4.0.0-nightly.20180929":"67.0.3396.99","4.0.0-nightly.20181006":"68.0.3440.128","4.0.0-nightly.20181010":"69.0.3497.106","4.0.0":"69.0.3497.106","4.0.1":"69.0.3497.106","4.0.2":"69.0.3497.106","4.0.3":"69.0.3497.106","4.0.4":"69.0.3497.106","4.0.5":"69.0.3497.106","4.0.6":"69.0.3497.106","4.0.7":"69.0.3497.128","4.0.8":"69.0.3497.128","4.1.0":"69.0.3497.128","4.1.1":"69.0.3497.128","4.1.2":"69.0.3497.128","4.1.3":"69.0.3497.128","4.1.4":"69.0.3497.128","4.1.5":"69.0.3497.128","4.2.0":"69.0.3497.128","4.2.1":"69.0.3497.128","4.2.2":"69.0.3497.128","4.2.3":"69.0.3497.128","4.2.4":"69.0.3497.128","4.2.5":"69.0.3497.128","4.2.6":"69.0.3497.128","4.2.7":"69.0.3497.128","4.2.8":"69.0.3497.128","4.2.9":"69.0.3497.128","4.2.10":"69.0.3497.128","4.2.11":"69.0.3497.128","4.2.12":"69.0.3497.128","5.0.0-beta.1":"72.0.3626.52","5.0.0-beta.2":"72.0.3626.52","5.0.0-beta.3":"73.0.3683.27","5.0.0-beta.4":"73.0.3683.54","5.0.0-beta.5":"73.0.3683.61","5.0.0-beta.6":"73.0.3683.84","5.0.0-beta.7":"73.0.3683.94","5.0.0-beta.8":"73.0.3683.104","5.0.0-beta.9":"73.0.3683.117","5.0.0-nightly.20190107":"70.0.3538.110","5.0.0-nightly.20190121":"71.0.3578.98","5.0.0-nightly.20190122":"71.0.3578.98","5.0.0":"73.0.3683.119","5.0.1":"73.0.3683.121","5.0.2":"73.0.3683.121","5.0.3":"73.0.3683.121","5.0.4":"73.0.3683.121","5.0.5":"73.0.3683.121","5.0.6":"73.0.3683.121","5.0.7":"73.0.3683.121","5.0.8":"73.0.3683.121","5.0.9":"73.0.3683.121","5.0.10":"73.0.3683.121","5.0.11":"73.0.3683.121","5.0.12":"73.0.3683.121","5.0.13":"73.0.3683.121","6.0.0-beta.1":"76.0.3774.1","6.0.0-beta.2":"76.0.3783.1","6.0.0-beta.3":"76.0.3783.1","6.0.0-beta.4":"76.0.3783.1","6.0.0-beta.5":"76.0.3805.4","6.0.0-beta.6":"76.0.3809.3","6.0.0-beta.7":"76.0.3809.22","6.0.0-beta.8":"76.0.3809.26","6.0.0-beta.9":"76.0.3809.26","6.0.0-beta.10":"76.0.3809.37","6.0.0-beta.11":"76.0.3809.42","6.0.0-beta.12":"76.0.3809.54","6.0.0-beta.13":"76.0.3809.60","6.0.0-beta.14":"76.0.3809.68","6.0.0-beta.15":"76.0.3809.74","6.0.0-nightly.20190123":"72.0.3626.52","6.0.0-nightly.20190212":"72.0.3626.107","6.0.0-nightly.20190213":"72.0.3626.110","6.0.0-nightly.20190311":"74.0.3724.8","6.0.0":"76.0.3809.88","6.0.1":"76.0.3809.102","6.0.2":"76.0.3809.110","6.0.3":"76.0.3809.126","6.0.4":"76.0.3809.131","6.0.5":"76.0.3809.136","6.0.6":"76.0.3809.138","6.0.7":"76.0.3809.139","6.0.8":"76.0.3809.146","6.0.9":"76.0.3809.146","6.0.10":"76.0.3809.146","6.0.11":"76.0.3809.146","6.0.12":"76.0.3809.146","6.1.0":"76.0.3809.146","6.1.1":"76.0.3809.146","6.1.2":"76.0.3809.146","6.1.3":"76.0.3809.146","6.1.4":"76.0.3809.146","6.1.5":"76.0.3809.146","6.1.6":"76.0.3809.146","6.1.7":"76.0.3809.146","6.1.8":"76.0.3809.146","6.1.9":"76.0.3809.146","6.1.10":"76.0.3809.146","6.1.11":"76.0.3809.146","6.1.12":"76.0.3809.146","7.0.0-beta.1":"78.0.3866.0","7.0.0-beta.2":"78.0.3866.0","7.0.0-beta.3":"78.0.3866.0","7.0.0-beta.4":"78.0.3896.6","7.0.0-beta.5":"78.0.3905.1","7.0.0-beta.6":"78.0.3905.1","7.0.0-beta.7":"78.0.3905.1","7.0.0-nightly.20190521":"76.0.3784.0","7.0.0-nightly.20190529":"76.0.3806.0","7.0.0-nightly.20190530":"76.0.3806.0","7.0.0-nightly.20190531":"76.0.3806.0","7.0.0-nightly.20190602":"76.0.3806.0","7.0.0-nightly.20190603":"76.0.3806.0","7.0.0-nightly.20190604":"77.0.3814.0","7.0.0-nightly.20190605":"77.0.3815.0","7.0.0-nightly.20190606":"77.0.3815.0","7.0.0-nightly.20190607":"77.0.3815.0","7.0.0-nightly.20190608":"77.0.3815.0","7.0.0-nightly.20190609":"77.0.3815.0","7.0.0-nightly.20190611":"77.0.3815.0","7.0.0-nightly.20190612":"77.0.3815.0","7.0.0-nightly.20190613":"77.0.3815.0","7.0.0-nightly.20190615":"77.0.3815.0","7.0.0-nightly.20190616":"77.0.3815.0","7.0.0-nightly.20190618":"77.0.3815.0","7.0.0-nightly.20190619":"77.0.3815.0","7.0.0-nightly.20190622":"77.0.3815.0","7.0.0-nightly.20190623":"77.0.3815.0","7.0.0-nightly.20190624":"77.0.3815.0","7.0.0-nightly.20190627":"77.0.3815.0","7.0.0-nightly.20190629":"77.0.3815.0","7.0.0-nightly.20190630":"77.0.3815.0","7.0.0-nightly.20190701":"77.0.3815.0","7.0.0-nightly.20190702":"77.0.3815.0","7.0.0-nightly.20190704":"77.0.3843.0","7.0.0-nightly.20190705":"77.0.3843.0","7.0.0-nightly.20190719":"77.0.3848.0","7.0.0-nightly.20190720":"77.0.3848.0","7.0.0-nightly.20190721":"77.0.3848.0","7.0.0-nightly.20190726":"77.0.3864.0","7.0.0-nightly.20190727":"78.0.3866.0","7.0.0-nightly.20190728":"78.0.3866.0","7.0.0-nightly.20190729":"78.0.3866.0","7.0.0-nightly.20190730":"78.0.3866.0","7.0.0-nightly.20190731":"78.0.3866.0","7.0.0":"78.0.3905.1","7.0.1":"78.0.3904.92","7.1.0":"78.0.3904.94","7.1.1":"78.0.3904.99","7.1.2":"78.0.3904.113","7.1.3":"78.0.3904.126","7.1.4":"78.0.3904.130","7.1.5":"78.0.3904.130","7.1.6":"78.0.3904.130","7.1.7":"78.0.3904.130","7.1.8":"78.0.3904.130","7.1.9":"78.0.3904.130","7.1.10":"78.0.3904.130","7.1.11":"78.0.3904.130","7.1.12":"78.0.3904.130","7.1.13":"78.0.3904.130","7.1.14":"78.0.3904.130","7.2.0":"78.0.3904.130","7.2.1":"78.0.3904.130","7.2.2":"78.0.3904.130","7.2.3":"78.0.3904.130","7.2.4":"78.0.3904.130","7.3.0":"78.0.3904.130","7.3.1":"78.0.3904.130","7.3.2":"78.0.3904.130","7.3.3":"78.0.3904.130","8.0.0-beta.1":"79.0.3931.0","8.0.0-beta.2":"79.0.3931.0","8.0.0-beta.3":"80.0.3955.0","8.0.0-beta.4":"80.0.3955.0","8.0.0-beta.5":"80.0.3987.14","8.0.0-beta.6":"80.0.3987.51","8.0.0-beta.7":"80.0.3987.59","8.0.0-beta.8":"80.0.3987.75","8.0.0-beta.9":"80.0.3987.75","8.0.0-nightly.20190801":"78.0.3866.0","8.0.0-nightly.20190802":"78.0.3866.0","8.0.0-nightly.20190803":"78.0.3871.0","8.0.0-nightly.20190806":"78.0.3871.0","8.0.0-nightly.20190807":"78.0.3871.0","8.0.0-nightly.20190808":"78.0.3871.0","8.0.0-nightly.20190809":"78.0.3871.0","8.0.0-nightly.20190810":"78.0.3871.0","8.0.0-nightly.20190811":"78.0.3871.0","8.0.0-nightly.20190812":"78.0.3871.0","8.0.0-nightly.20190813":"78.0.3871.0","8.0.0-nightly.20190814":"78.0.3871.0","8.0.0-nightly.20190815":"78.0.3871.0","8.0.0-nightly.20190816":"78.0.3881.0","8.0.0-nightly.20190817":"78.0.3881.0","8.0.0-nightly.20190818":"78.0.3881.0","8.0.0-nightly.20190819":"78.0.3881.0","8.0.0-nightly.20190820":"78.0.3881.0","8.0.0-nightly.20190824":"78.0.3892.0","8.0.0-nightly.20190825":"78.0.3892.0","8.0.0-nightly.20190827":"78.0.3892.0","8.0.0-nightly.20190828":"78.0.3892.0","8.0.0-nightly.20190830":"78.0.3892.0","8.0.0-nightly.20190901":"78.0.3892.0","8.0.0-nightly.20190902":"78.0.3892.0","8.0.0-nightly.20190907":"78.0.3892.0","8.0.0-nightly.20190909":"78.0.3892.0","8.0.0-nightly.20190910":"78.0.3892.0","8.0.0-nightly.20190911":"78.0.3892.0","8.0.0-nightly.20190912":"78.0.3892.0","8.0.0-nightly.20190913":"78.0.3892.0","8.0.0-nightly.20190914":"78.0.3892.0","8.0.0-nightly.20190915":"78.0.3892.0","8.0.0-nightly.20190917":"78.0.3892.0","8.0.0-nightly.20190919":"79.0.3915.0","8.0.0-nightly.20190920":"79.0.3915.0","8.0.0-nightly.20190922":"79.0.3919.0","8.0.0-nightly.20190923":"79.0.3919.0","8.0.0-nightly.20190924":"79.0.3919.0","8.0.0-nightly.20190926":"79.0.3919.0","8.0.0-nightly.20190928":"79.0.3919.0","8.0.0-nightly.20190929":"79.0.3919.0","8.0.0-nightly.20190930":"79.0.3919.0","8.0.0-nightly.20191001":"79.0.3919.0","8.0.0-nightly.20191004":"79.0.3919.0","8.0.0-nightly.20191005":"79.0.3919.0","8.0.0-nightly.20191006":"79.0.3919.0","8.0.0-nightly.20191009":"79.0.3919.0","8.0.0-nightly.20191011":"79.0.3919.0","8.0.0-nightly.20191012":"79.0.3919.0","8.0.0-nightly.20191017":"79.0.3919.0","8.0.0-nightly.20191019":"79.0.3931.0","8.0.0-nightly.20191020":"79.0.3931.0","8.0.0-nightly.20191021":"79.0.3931.0","8.0.0-nightly.20191023":"79.0.3931.0","8.0.0-nightly.20191101":"80.0.3952.0","8.0.0-nightly.20191103":"80.0.3952.0","8.0.0-nightly.20191105":"80.0.3952.0","8.0.0":"80.0.3987.86","8.0.1":"80.0.3987.86","8.0.2":"80.0.3987.86","8.0.3":"80.0.3987.134","8.1.0":"80.0.3987.137","8.1.1":"80.0.3987.141","8.2.0":"80.0.3987.158","8.2.1":"80.0.3987.163","8.2.2":"80.0.3987.163","8.2.3":"80.0.3987.163","8.2.4":"80.0.3987.165","8.2.5":"80.0.3987.165","8.3.0":"80.0.3987.165","8.3.1":"80.0.3987.165","8.3.2":"80.0.3987.165","8.3.3":"80.0.3987.165","8.3.4":"80.0.3987.165","8.4.0":"80.0.3987.165","8.4.1":"80.0.3987.165","8.5.0":"80.0.3987.165","8.5.1":"80.0.3987.165","8.5.2":"80.0.3987.165","8.5.3":"80.0.3987.163","8.5.4":"80.0.3987.163","8.5.5":"80.0.3987.163","9.0.0-beta.1":"82.0.4048.0","9.0.0-beta.2":"82.0.4048.0","9.0.0-beta.3":"82.0.4048.0","9.0.0-beta.4":"82.0.4048.0","9.0.0-beta.5":"82.0.4048.0","9.0.0-beta.6":"82.0.4058.2","9.0.0-beta.7":"82.0.4058.2","9.0.0-beta.9":"82.0.4058.2","9.0.0-beta.10":"82.0.4085.10","9.0.0-beta.11":"82.0.4085.14","9.0.0-beta.12":"82.0.4085.14","9.0.0-beta.13":"82.0.4085.14","9.0.0-beta.14":"82.0.4085.27","9.0.0-beta.15":"83.0.4102.3","9.0.0-beta.16":"83.0.4102.3","9.0.0-beta.17":"83.0.4103.14","9.0.0-beta.18":"83.0.4103.16","9.0.0-beta.19":"83.0.4103.24","9.0.0-beta.20":"83.0.4103.26","9.0.0-beta.21":"83.0.4103.26","9.0.0-beta.22":"83.0.4103.34","9.0.0-beta.23":"83.0.4103.44","9.0.0-beta.24":"83.0.4103.45","9.0.0-nightly.20191121":"80.0.3954.0","9.0.0-nightly.20191122":"80.0.3954.0","9.0.0-nightly.20191123":"80.0.3954.0","9.0.0-nightly.20191124":"80.0.3954.0","9.0.0-nightly.20191126":"80.0.3954.0","9.0.0-nightly.20191128":"80.0.3954.0","9.0.0-nightly.20191129":"80.0.3954.0","9.0.0-nightly.20191130":"80.0.3954.0","9.0.0-nightly.20191201":"80.0.3954.0","9.0.0-nightly.20191202":"80.0.3954.0","9.0.0-nightly.20191203":"80.0.3954.0","9.0.0-nightly.20191204":"80.0.3954.0","9.0.0-nightly.20191205":"80.0.3954.0","9.0.0-nightly.20191210":"80.0.3954.0","9.0.0-nightly.20191220":"81.0.3994.0","9.0.0-nightly.20191221":"81.0.3994.0","9.0.0-nightly.20191222":"81.0.3994.0","9.0.0-nightly.20191223":"81.0.3994.0","9.0.0-nightly.20191224":"81.0.3994.0","9.0.0-nightly.20191225":"81.0.3994.0","9.0.0-nightly.20191226":"81.0.3994.0","9.0.0-nightly.20191228":"81.0.3994.0","9.0.0-nightly.20191229":"81.0.3994.0","9.0.0-nightly.20191230":"81.0.3994.0","9.0.0-nightly.20191231":"81.0.3994.0","9.0.0-nightly.20200101":"81.0.3994.0","9.0.0-nightly.20200103":"81.0.3994.0","9.0.0-nightly.20200104":"81.0.3994.0","9.0.0-nightly.20200105":"81.0.3994.0","9.0.0-nightly.20200106":"81.0.3994.0","9.0.0-nightly.20200108":"81.0.3994.0","9.0.0-nightly.20200109":"81.0.3994.0","9.0.0-nightly.20200110":"81.0.3994.0","9.0.0-nightly.20200111":"81.0.3994.0","9.0.0-nightly.20200113":"81.0.3994.0","9.0.0-nightly.20200115":"81.0.3994.0","9.0.0-nightly.20200116":"81.0.3994.0","9.0.0-nightly.20200117":"81.0.3994.0","9.0.0-nightly.20200119":"81.0.4030.0","9.0.0-nightly.20200121":"81.0.4030.0","9.0.0":"83.0.4103.64","9.0.1":"83.0.4103.94","9.0.2":"83.0.4103.94","9.0.3":"83.0.4103.100","9.0.4":"83.0.4103.104","9.0.5":"83.0.4103.119","9.1.0":"83.0.4103.122","9.1.1":"83.0.4103.122","9.1.2":"83.0.4103.122","9.2.0":"83.0.4103.122","9.2.1":"83.0.4103.122","9.3.0":"83.0.4103.122","9.3.1":"83.0.4103.122","9.3.2":"83.0.4103.122","9.3.3":"83.0.4103.122","9.3.4":"83.0.4103.122","9.3.5":"83.0.4103.122","9.4.0":"83.0.4103.122","9.4.1":"83.0.4103.122","9.4.2":"83.0.4103.122","9.4.3":"83.0.4103.122","9.4.4":"83.0.4103.122","10.0.0-beta.1":"84.0.4129.0","10.0.0-beta.2":"84.0.4129.0","10.0.0-beta.3":"85.0.4161.2","10.0.0-beta.4":"85.0.4161.2","10.0.0-beta.8":"85.0.4181.1","10.0.0-beta.9":"85.0.4181.1","10.0.0-beta.10":"85.0.4183.19","10.0.0-beta.11":"85.0.4183.20","10.0.0-beta.12":"85.0.4183.26","10.0.0-beta.13":"85.0.4183.39","10.0.0-beta.14":"85.0.4183.39","10.0.0-beta.15":"85.0.4183.39","10.0.0-beta.17":"85.0.4183.39","10.0.0-beta.19":"85.0.4183.39","10.0.0-beta.20":"85.0.4183.39","10.0.0-beta.21":"85.0.4183.39","10.0.0-beta.23":"85.0.4183.70","10.0.0-beta.24":"85.0.4183.78","10.0.0-beta.25":"85.0.4183.80","10.0.0-nightly.20200209":"82.0.4050.0","10.0.0-nightly.20200210":"82.0.4050.0","10.0.0-nightly.20200211":"82.0.4050.0","10.0.0-nightly.20200216":"82.0.4050.0","10.0.0-nightly.20200217":"82.0.4050.0","10.0.0-nightly.20200218":"82.0.4050.0","10.0.0-nightly.20200221":"82.0.4050.0","10.0.0-nightly.20200222":"82.0.4050.0","10.0.0-nightly.20200223":"82.0.4050.0","10.0.0-nightly.20200226":"82.0.4050.0","10.0.0-nightly.20200303":"82.0.4050.0","10.0.0-nightly.20200304":"82.0.4076.0","10.0.0-nightly.20200305":"82.0.4076.0","10.0.0-nightly.20200306":"82.0.4076.0","10.0.0-nightly.20200309":"82.0.4076.0","10.0.0-nightly.20200310":"82.0.4076.0","10.0.0-nightly.20200311":"82.0.4083.0","10.0.0-nightly.20200316":"83.0.4086.0","10.0.0-nightly.20200317":"83.0.4087.0","10.0.0-nightly.20200318":"83.0.4087.0","10.0.0-nightly.20200320":"83.0.4087.0","10.0.0-nightly.20200323":"83.0.4087.0","10.0.0-nightly.20200324":"83.0.4087.0","10.0.0-nightly.20200325":"83.0.4087.0","10.0.0-nightly.20200326":"83.0.4087.0","10.0.0-nightly.20200327":"83.0.4087.0","10.0.0-nightly.20200330":"83.0.4087.0","10.0.0-nightly.20200331":"83.0.4087.0","10.0.0-nightly.20200401":"83.0.4087.0","10.0.0-nightly.20200402":"83.0.4087.0","10.0.0-nightly.20200403":"83.0.4087.0","10.0.0-nightly.20200406":"83.0.4087.0","10.0.0-nightly.20200408":"83.0.4095.0","10.0.0-nightly.20200410":"83.0.4095.0","10.0.0-nightly.20200413":"83.0.4095.0","10.0.0-nightly.20200414":"84.0.4114.0","10.0.0-nightly.20200415":"84.0.4115.0","10.0.0-nightly.20200416":"84.0.4115.0","10.0.0-nightly.20200417":"84.0.4115.0","10.0.0-nightly.20200422":"84.0.4121.0","10.0.0-nightly.20200423":"84.0.4121.0","10.0.0-nightly.20200427":"84.0.4125.0","10.0.0-nightly.20200428":"84.0.4125.0","10.0.0-nightly.20200429":"84.0.4125.0","10.0.0-nightly.20200430":"84.0.4125.0","10.0.0-nightly.20200501":"84.0.4129.0","10.0.0-nightly.20200504":"84.0.4129.0","10.0.0-nightly.20200505":"84.0.4129.0","10.0.0-nightly.20200506":"84.0.4129.0","10.0.0-nightly.20200507":"84.0.4129.0","10.0.0-nightly.20200508":"84.0.4129.0","10.0.0-nightly.20200511":"84.0.4129.0","10.0.0-nightly.20200512":"84.0.4129.0","10.0.0-nightly.20200513":"84.0.4129.0","10.0.0-nightly.20200514":"84.0.4129.0","10.0.0-nightly.20200515":"84.0.4129.0","10.0.0-nightly.20200518":"84.0.4129.0","10.0.0-nightly.20200519":"84.0.4129.0","10.0.0-nightly.20200520":"84.0.4129.0","10.0.0-nightly.20200521":"84.0.4129.0","10.0.0":"85.0.4183.84","10.0.1":"85.0.4183.86","10.1.0":"85.0.4183.87","10.1.1":"85.0.4183.93","10.1.2":"85.0.4183.98","10.1.3":"85.0.4183.121","10.1.4":"85.0.4183.121","10.1.5":"85.0.4183.121","10.1.6":"85.0.4183.121","10.1.7":"85.0.4183.121","10.2.0":"85.0.4183.121","10.3.0":"85.0.4183.121","10.3.1":"85.0.4183.121","10.3.2":"85.0.4183.121","10.4.0":"85.0.4183.121","10.4.1":"85.0.4183.121","10.4.2":"85.0.4183.121","10.4.3":"85.0.4183.121","10.4.4":"85.0.4183.121","10.4.5":"85.0.4183.121","10.4.6":"85.0.4183.121","10.4.7":"85.0.4183.121","11.0.0-beta.1":"86.0.4234.0","11.0.0-beta.3":"86.0.4234.0","11.0.0-beta.4":"86.0.4234.0","11.0.0-beta.5":"86.0.4234.0","11.0.0-beta.6":"86.0.4234.0","11.0.0-beta.7":"86.0.4234.0","11.0.0-beta.8":"87.0.4251.1","11.0.0-beta.9":"87.0.4251.1","11.0.0-beta.11":"87.0.4251.1","11.0.0-beta.12":"87.0.4280.11","11.0.0-beta.13":"87.0.4280.11","11.0.0-beta.16":"87.0.4280.27","11.0.0-beta.17":"87.0.4280.27","11.0.0-beta.18":"87.0.4280.27","11.0.0-beta.19":"87.0.4280.27","11.0.0-beta.20":"87.0.4280.40","11.0.0-beta.22":"87.0.4280.47","11.0.0-beta.23":"87.0.4280.47","11.0.0-nightly.20200525":"84.0.4129.0","11.0.0-nightly.20200526":"84.0.4129.0","11.0.0-nightly.20200529":"85.0.4156.0","11.0.0-nightly.20200602":"85.0.4162.0","11.0.0-nightly.20200603":"85.0.4162.0","11.0.0-nightly.20200604":"85.0.4162.0","11.0.0-nightly.20200609":"85.0.4162.0","11.0.0-nightly.20200610":"85.0.4162.0","11.0.0-nightly.20200611":"85.0.4162.0","11.0.0-nightly.20200615":"85.0.4162.0","11.0.0-nightly.20200616":"85.0.4162.0","11.0.0-nightly.20200617":"85.0.4162.0","11.0.0-nightly.20200618":"85.0.4162.0","11.0.0-nightly.20200619":"85.0.4162.0","11.0.0-nightly.20200701":"85.0.4179.0","11.0.0-nightly.20200702":"85.0.4179.0","11.0.0-nightly.20200703":"85.0.4179.0","11.0.0-nightly.20200706":"85.0.4179.0","11.0.0-nightly.20200707":"85.0.4179.0","11.0.0-nightly.20200708":"85.0.4179.0","11.0.0-nightly.20200709":"85.0.4179.0","11.0.0-nightly.20200716":"86.0.4203.0","11.0.0-nightly.20200717":"86.0.4203.0","11.0.0-nightly.20200720":"86.0.4203.0","11.0.0-nightly.20200721":"86.0.4203.0","11.0.0-nightly.20200723":"86.0.4209.0","11.0.0-nightly.20200724":"86.0.4209.0","11.0.0-nightly.20200729":"86.0.4209.0","11.0.0-nightly.20200730":"86.0.4209.0","11.0.0-nightly.20200731":"86.0.4209.0","11.0.0-nightly.20200803":"86.0.4209.0","11.0.0-nightly.20200804":"86.0.4209.0","11.0.0-nightly.20200805":"86.0.4209.0","11.0.0-nightly.20200811":"86.0.4209.0","11.0.0-nightly.20200812":"86.0.4209.0","11.0.0-nightly.20200822":"86.0.4234.0","11.0.0-nightly.20200824":"86.0.4234.0","11.0.0-nightly.20200825":"86.0.4234.0","11.0.0-nightly.20200826":"86.0.4234.0","11.0.0":"87.0.4280.60","11.0.1":"87.0.4280.60","11.0.2":"87.0.4280.67","11.0.3":"87.0.4280.67","11.0.4":"87.0.4280.67","11.0.5":"87.0.4280.88","11.1.0":"87.0.4280.88","11.1.1":"87.0.4280.88","11.2.0":"87.0.4280.141","11.2.1":"87.0.4280.141","11.2.2":"87.0.4280.141","11.2.3":"87.0.4280.141","11.3.0":"87.0.4280.141","11.4.0":"87.0.4280.141","11.4.1":"87.0.4280.141","11.4.2":"87.0.4280.141","11.4.3":"87.0.4280.141","11.4.4":"87.0.4280.141","11.4.5":"87.0.4280.141","11.4.6":"87.0.4280.141","11.4.7":"87.0.4280.141","11.4.8":"87.0.4280.141","11.4.9":"87.0.4280.141","11.4.10":"87.0.4280.141","11.4.11":"87.0.4280.141","11.4.12":"87.0.4280.141","11.5.0":"87.0.4280.141","12.0.0-beta.1":"89.0.4328.0","12.0.0-beta.3":"89.0.4328.0","12.0.0-beta.4":"89.0.4328.0","12.0.0-beta.5":"89.0.4328.0","12.0.0-beta.6":"89.0.4328.0","12.0.0-beta.7":"89.0.4328.0","12.0.0-beta.8":"89.0.4328.0","12.0.0-beta.9":"89.0.4328.0","12.0.0-beta.10":"89.0.4328.0","12.0.0-beta.11":"89.0.4328.0","12.0.0-beta.12":"89.0.4328.0","12.0.0-beta.14":"89.0.4328.0","12.0.0-beta.16":"89.0.4348.1","12.0.0-beta.18":"89.0.4348.1","12.0.0-beta.19":"89.0.4348.1","12.0.0-beta.20":"89.0.4348.1","12.0.0-beta.21":"89.0.4388.2","12.0.0-beta.22":"89.0.4388.2","12.0.0-beta.23":"89.0.4388.2","12.0.0-beta.24":"89.0.4388.2","12.0.0-beta.25":"89.0.4388.2","12.0.0-beta.26":"89.0.4388.2","12.0.0-beta.27":"89.0.4389.23","12.0.0-beta.28":"89.0.4389.23","12.0.0-beta.29":"89.0.4389.23","12.0.0-beta.30":"89.0.4389.58","12.0.0-beta.31":"89.0.4389.58","12.0.0-nightly.20200827":"86.0.4234.0","12.0.0-nightly.20200831":"86.0.4234.0","12.0.0-nightly.20200902":"86.0.4234.0","12.0.0-nightly.20200903":"86.0.4234.0","12.0.0-nightly.20200907":"86.0.4234.0","12.0.0-nightly.20200910":"86.0.4234.0","12.0.0-nightly.20200911":"86.0.4234.0","12.0.0-nightly.20200914":"86.0.4234.0","12.0.0-nightly.20201002":"87.0.4268.0","12.0.0-nightly.20201007":"87.0.4268.0","12.0.0-nightly.20201009":"87.0.4268.0","12.0.0-nightly.20201012":"87.0.4268.0","12.0.0-nightly.20201013":"87.0.4268.0","12.0.0-nightly.20201014":"87.0.4268.0","12.0.0-nightly.20201015":"87.0.4268.0","12.0.0-nightly.20201023":"88.0.4292.0","12.0.0-nightly.20201026":"88.0.4292.0","12.0.0-nightly.20201030":"88.0.4306.0","12.0.0-nightly.20201102":"88.0.4306.0","12.0.0-nightly.20201103":"88.0.4306.0","12.0.0-nightly.20201104":"88.0.4306.0","12.0.0-nightly.20201105":"88.0.4306.0","12.0.0-nightly.20201106":"88.0.4306.0","12.0.0-nightly.20201111":"88.0.4306.0","12.0.0-nightly.20201112":"88.0.4306.0","12.0.0-nightly.20201116":"88.0.4324.0","12.0.0":"89.0.4389.69","12.0.1":"89.0.4389.82","12.0.2":"89.0.4389.90","12.0.3":"89.0.4389.114","12.0.4":"89.0.4389.114","12.0.5":"89.0.4389.128","12.0.6":"89.0.4389.128","12.0.7":"89.0.4389.128","12.0.8":"89.0.4389.128","12.0.9":"89.0.4389.128","12.0.10":"89.0.4389.128","12.0.11":"89.0.4389.128","12.0.12":"89.0.4389.128","12.0.13":"89.0.4389.128","12.0.14":"89.0.4389.128","12.0.15":"89.0.4389.128","12.0.16":"89.0.4389.128","12.0.17":"89.0.4389.128","12.0.18":"89.0.4389.128","12.1.0":"89.0.4389.128","12.1.1":"89.0.4389.128","12.1.2":"89.0.4389.128","12.2.0":"89.0.4389.128","12.2.1":"89.0.4389.128","12.2.2":"89.0.4389.128","12.2.3":"89.0.4389.128","13.0.0-beta.2":"90.0.4402.0","13.0.0-beta.3":"90.0.4402.0","13.0.0-beta.4":"90.0.4415.0","13.0.0-beta.5":"90.0.4415.0","13.0.0-beta.6":"90.0.4415.0","13.0.0-beta.7":"90.0.4415.0","13.0.0-beta.8":"90.0.4415.0","13.0.0-beta.9":"90.0.4415.0","13.0.0-beta.10":"90.0.4415.0","13.0.0-beta.11":"90.0.4415.0","13.0.0-beta.12":"90.0.4415.0","13.0.0-beta.13":"90.0.4415.0","13.0.0-beta.14":"91.0.4448.0","13.0.0-beta.16":"91.0.4448.0","13.0.0-beta.17":"91.0.4448.0","13.0.0-beta.18":"91.0.4448.0","13.0.0-beta.20":"91.0.4448.0","13.0.0-beta.21":"91.0.4472.33","13.0.0-beta.22":"91.0.4472.33","13.0.0-beta.23":"91.0.4472.33","13.0.0-beta.24":"91.0.4472.38","13.0.0-beta.25":"91.0.4472.38","13.0.0-beta.26":"91.0.4472.38","13.0.0-beta.27":"91.0.4472.38","13.0.0-beta.28":"91.0.4472.38","13.0.0-nightly.20201119":"89.0.4328.0","13.0.0-nightly.20201123":"89.0.4328.0","13.0.0-nightly.20201124":"89.0.4328.0","13.0.0-nightly.20201126":"89.0.4328.0","13.0.0-nightly.20201127":"89.0.4328.0","13.0.0-nightly.20201130":"89.0.4328.0","13.0.0-nightly.20201201":"89.0.4328.0","13.0.0-nightly.20201202":"89.0.4328.0","13.0.0-nightly.20201203":"89.0.4328.0","13.0.0-nightly.20201204":"89.0.4328.0","13.0.0-nightly.20201207":"89.0.4328.0","13.0.0-nightly.20201208":"89.0.4328.0","13.0.0-nightly.20201209":"89.0.4328.0","13.0.0-nightly.20201210":"89.0.4328.0","13.0.0-nightly.20201211":"89.0.4328.0","13.0.0-nightly.20201214":"89.0.4328.0","13.0.0-nightly.20201215":"89.0.4349.0","13.0.0-nightly.20201216":"89.0.4349.0","13.0.0-nightly.20201221":"89.0.4349.0","13.0.0-nightly.20201222":"89.0.4349.0","13.0.0-nightly.20201223":"89.0.4359.0","13.0.0-nightly.20210104":"89.0.4359.0","13.0.0-nightly.20210108":"89.0.4359.0","13.0.0-nightly.20210111":"89.0.4359.0","13.0.0-nightly.20210113":"89.0.4386.0","13.0.0-nightly.20210114":"89.0.4386.0","13.0.0-nightly.20210118":"89.0.4386.0","13.0.0-nightly.20210122":"89.0.4386.0","13.0.0-nightly.20210125":"89.0.4386.0","13.0.0-nightly.20210127":"89.0.4389.0","13.0.0-nightly.20210128":"89.0.4389.0","13.0.0-nightly.20210129":"89.0.4389.0","13.0.0-nightly.20210201":"89.0.4389.0","13.0.0-nightly.20210202":"89.0.4389.0","13.0.0-nightly.20210203":"89.0.4389.0","13.0.0-nightly.20210205":"89.0.4389.0","13.0.0-nightly.20210208":"89.0.4389.0","13.0.0-nightly.20210209":"89.0.4389.0","13.0.0-nightly.20210210":"90.0.4402.0","13.0.0-nightly.20210211":"90.0.4402.0","13.0.0-nightly.20210212":"90.0.4402.0","13.0.0-nightly.20210216":"90.0.4402.0","13.0.0-nightly.20210217":"90.0.4402.0","13.0.0-nightly.20210218":"90.0.4402.0","13.0.0-nightly.20210219":"90.0.4402.0","13.0.0-nightly.20210222":"90.0.4402.0","13.0.0-nightly.20210225":"90.0.4402.0","13.0.0-nightly.20210226":"90.0.4402.0","13.0.0-nightly.20210301":"90.0.4402.0","13.0.0-nightly.20210302":"90.0.4402.0","13.0.0-nightly.20210303":"90.0.4402.0","13.0.0":"91.0.4472.69","13.0.1":"91.0.4472.69","13.1.0":"91.0.4472.77","13.1.1":"91.0.4472.77","13.1.2":"91.0.4472.77","13.1.3":"91.0.4472.106","13.1.4":"91.0.4472.106","13.1.5":"91.0.4472.124","13.1.6":"91.0.4472.124","13.1.7":"91.0.4472.124","13.1.8":"91.0.4472.164","13.1.9":"91.0.4472.164","13.2.0":"91.0.4472.164","13.2.1":"91.0.4472.164","13.2.2":"91.0.4472.164","13.2.3":"91.0.4472.164","13.3.0":"91.0.4472.164","13.4.0":"91.0.4472.164","13.5.0":"91.0.4472.164","13.5.1":"91.0.4472.164","13.5.2":"91.0.4472.164","13.6.0":"91.0.4472.164","13.6.1":"91.0.4472.164","13.6.2":"91.0.4472.164","13.6.3":"91.0.4472.164","13.6.6":"91.0.4472.164","13.6.7":"91.0.4472.164","13.6.8":"91.0.4472.164","13.6.9":"91.0.4472.164","14.0.0-beta.1":"92.0.4511.0","14.0.0-beta.2":"92.0.4511.0","14.0.0-beta.3":"92.0.4511.0","14.0.0-beta.5":"93.0.4536.0","14.0.0-beta.6":"93.0.4536.0","14.0.0-beta.7":"93.0.4536.0","14.0.0-beta.8":"93.0.4536.0","14.0.0-beta.9":"93.0.4539.0","14.0.0-beta.10":"93.0.4539.0","14.0.0-beta.11":"93.0.4557.4","14.0.0-beta.12":"93.0.4557.4","14.0.0-beta.13":"93.0.4566.0","14.0.0-beta.14":"93.0.4566.0","14.0.0-beta.15":"93.0.4566.0","14.0.0-beta.16":"93.0.4566.0","14.0.0-beta.17":"93.0.4566.0","14.0.0-beta.18":"93.0.4577.15","14.0.0-beta.19":"93.0.4577.15","14.0.0-beta.20":"93.0.4577.15","14.0.0-beta.21":"93.0.4577.15","14.0.0-beta.22":"93.0.4577.25","14.0.0-beta.23":"93.0.4577.25","14.0.0-beta.24":"93.0.4577.51","14.0.0-beta.25":"93.0.4577.51","14.0.0-nightly.20210304":"90.0.4402.0","14.0.0-nightly.20210305":"90.0.4415.0","14.0.0-nightly.20210308":"90.0.4415.0","14.0.0-nightly.20210309":"90.0.4415.0","14.0.0-nightly.20210311":"90.0.4415.0","14.0.0-nightly.20210315":"90.0.4415.0","14.0.0-nightly.20210316":"90.0.4415.0","14.0.0-nightly.20210317":"90.0.4415.0","14.0.0-nightly.20210318":"90.0.4415.0","14.0.0-nightly.20210319":"90.0.4415.0","14.0.0-nightly.20210323":"90.0.4415.0","14.0.0-nightly.20210324":"90.0.4415.0","14.0.0-nightly.20210325":"90.0.4415.0","14.0.0-nightly.20210326":"90.0.4415.0","14.0.0-nightly.20210329":"90.0.4415.0","14.0.0-nightly.20210330":"90.0.4415.0","14.0.0-nightly.20210331":"91.0.4448.0","14.0.0-nightly.20210401":"91.0.4448.0","14.0.0-nightly.20210402":"91.0.4448.0","14.0.0-nightly.20210406":"91.0.4448.0","14.0.0-nightly.20210407":"91.0.4448.0","14.0.0-nightly.20210408":"91.0.4448.0","14.0.0-nightly.20210409":"91.0.4448.0","14.0.0-nightly.20210413":"91.0.4448.0","14.0.0-nightly.20210426":"92.0.4475.0","14.0.0-nightly.20210427":"92.0.4475.0","14.0.0-nightly.20210430":"92.0.4488.0","14.0.0-nightly.20210503":"92.0.4488.0","14.0.0-nightly.20210505":"92.0.4496.0","14.0.0-nightly.20210506":"92.0.4498.0","14.0.0-nightly.20210507":"92.0.4499.0","14.0.0-nightly.20210510":"92.0.4499.0","14.0.0-nightly.20210511":"92.0.4499.0","14.0.0-nightly.20210512":"92.0.4499.0","14.0.0-nightly.20210513":"92.0.4499.0","14.0.0-nightly.20210514":"92.0.4505.0","14.0.0-nightly.20210517":"92.0.4505.0","14.0.0-nightly.20210518":"92.0.4505.0","14.0.0-nightly.20210519":"92.0.4505.0","14.0.0-nightly.20210520":"92.0.4511.0","14.0.0-nightly.20210523":"92.0.4511.0","14.0.0-nightly.20210524":"92.0.4511.0","14.0.0":"93.0.4577.58","14.0.1":"93.0.4577.63","14.0.2":"93.0.4577.82","14.1.0":"93.0.4577.82","14.1.1":"93.0.4577.82","14.2.0":"93.0.4577.82","14.2.1":"93.0.4577.82","14.2.2":"93.0.4577.82","14.2.3":"93.0.4577.82","14.2.4":"93.0.4577.82","14.2.5":"93.0.4577.82","14.2.6":"93.0.4577.82","14.2.7":"93.0.4577.82","14.2.8":"93.0.4577.82","14.2.9":"93.0.4577.82","15.0.0-alpha.1":"93.0.4566.0","15.0.0-alpha.2":"93.0.4566.0","15.0.0-alpha.3":"94.0.4584.0","15.0.0-alpha.4":"94.0.4584.0","15.0.0-alpha.5":"94.0.4584.0","15.0.0-alpha.6":"94.0.4584.0","15.0.0-alpha.7":"94.0.4590.2","15.0.0-alpha.8":"94.0.4590.2","15.0.0-alpha.9":"94.0.4590.2","15.0.0-alpha.10":"94.0.4606.12","15.0.0-beta.1":"94.0.4606.20","15.0.0-beta.2":"94.0.4606.20","15.0.0-beta.3":"94.0.4606.31","15.0.0-beta.4":"94.0.4606.31","15.0.0-beta.5":"94.0.4606.31","15.0.0-beta.6":"94.0.4606.31","15.0.0-beta.7":"94.0.4606.31","15.0.0-nightly.20210527":"92.0.4511.0","15.0.0-nightly.20210528":"92.0.4511.0","15.0.0-nightly.20210531":"92.0.4511.0","15.0.0-nightly.20210601":"92.0.4511.0","15.0.0-nightly.20210602":"92.0.4511.0","15.0.0-nightly.20210603":"93.0.4530.0","15.0.0-nightly.20210604":"93.0.4530.0","15.0.0-nightly.20210608":"93.0.4535.0","15.0.0-nightly.20210609":"93.0.4536.0","15.0.0-nightly.20210610":"93.0.4536.0","15.0.0-nightly.20210611":"93.0.4536.0","15.0.0-nightly.20210614":"93.0.4536.0","15.0.0-nightly.20210615":"93.0.4536.0","15.0.0-nightly.20210616":"93.0.4536.0","15.0.0-nightly.20210617":"93.0.4539.0","15.0.0-nightly.20210618":"93.0.4539.0","15.0.0-nightly.20210621":"93.0.4539.0","15.0.0-nightly.20210622":"93.0.4539.0","15.0.0-nightly.20210623":"93.0.4550.0","15.0.0-nightly.20210624":"93.0.4550.0","15.0.0-nightly.20210625":"93.0.4552.0","15.0.0-nightly.20210628":"93.0.4552.0","15.0.0-nightly.20210629":"93.0.4552.0","15.0.0-nightly.20210630":"93.0.4558.0","15.0.0-nightly.20210701":"93.0.4558.0","15.0.0-nightly.20210702":"93.0.4558.0","15.0.0-nightly.20210705":"93.0.4558.0","15.0.0-nightly.20210706":"93.0.4566.0","15.0.0-nightly.20210707":"93.0.4566.0","15.0.0-nightly.20210708":"93.0.4566.0","15.0.0-nightly.20210709":"93.0.4566.0","15.0.0-nightly.20210712":"93.0.4566.0","15.0.0-nightly.20210713":"93.0.4566.0","15.0.0-nightly.20210714":"93.0.4566.0","15.0.0-nightly.20210715":"93.0.4566.0","15.0.0-nightly.20210716":"93.0.4566.0","15.0.0-nightly.20210719":"93.0.4566.0","15.0.0-nightly.20210720":"93.0.4566.0","15.0.0-nightly.20210721":"93.0.4566.0","15.0.0":"94.0.4606.51","15.1.0":"94.0.4606.61","15.1.1":"94.0.4606.61","15.1.2":"94.0.4606.71","15.2.0":"94.0.4606.81","15.3.0":"94.0.4606.81","15.3.1":"94.0.4606.81","15.3.2":"94.0.4606.81","15.3.3":"94.0.4606.81","15.3.4":"94.0.4606.81","15.3.5":"94.0.4606.81","15.3.6":"94.0.4606.81","15.3.7":"94.0.4606.81","15.4.0":"94.0.4606.81","15.4.1":"94.0.4606.81","15.4.2":"94.0.4606.81","15.5.0":"94.0.4606.81","15.5.1":"94.0.4606.81","15.5.2":"94.0.4606.81","15.5.3":"94.0.4606.81","15.5.4":"94.0.4606.81","15.5.5":"94.0.4606.81","15.5.6":"94.0.4606.81","15.5.7":"94.0.4606.81","16.0.0-alpha.1":"95.0.4629.0","16.0.0-alpha.2":"95.0.4629.0","16.0.0-alpha.3":"95.0.4629.0","16.0.0-alpha.4":"95.0.4629.0","16.0.0-alpha.5":"95.0.4629.0","16.0.0-alpha.6":"95.0.4629.0","16.0.0-alpha.7":"95.0.4629.0","16.0.0-alpha.8":"96.0.4647.0","16.0.0-alpha.9":"96.0.4647.0","16.0.0-beta.1":"96.0.4647.0","16.0.0-beta.2":"96.0.4647.0","16.0.0-beta.3":"96.0.4647.0","16.0.0-beta.4":"96.0.4664.18","16.0.0-beta.5":"96.0.4664.18","16.0.0-beta.6":"96.0.4664.27","16.0.0-beta.7":"96.0.4664.27","16.0.0-beta.8":"96.0.4664.35","16.0.0-beta.9":"96.0.4664.35","16.0.0-nightly.20210722":"93.0.4566.0","16.0.0-nightly.20210723":"93.0.4566.0","16.0.0-nightly.20210726":"93.0.4566.0","16.0.0-nightly.20210727":"94.0.4584.0","16.0.0-nightly.20210728":"94.0.4584.0","16.0.0-nightly.20210729":"94.0.4584.0","16.0.0-nightly.20210730":"94.0.4584.0","16.0.0-nightly.20210802":"94.0.4584.0","16.0.0-nightly.20210803":"94.0.4584.0","16.0.0-nightly.20210804":"94.0.4584.0","16.0.0-nightly.20210805":"94.0.4584.0","16.0.0-nightly.20210806":"94.0.4584.0","16.0.0-nightly.20210809":"94.0.4584.0","16.0.0-nightly.20210810":"94.0.4584.0","16.0.0-nightly.20210811":"94.0.4584.0","16.0.0-nightly.20210812":"94.0.4590.2","16.0.0-nightly.20210813":"94.0.4590.2","16.0.0-nightly.20210816":"94.0.4590.2","16.0.0-nightly.20210817":"94.0.4590.2","16.0.0-nightly.20210818":"94.0.4590.2","16.0.0-nightly.20210819":"94.0.4590.2","16.0.0-nightly.20210820":"94.0.4590.2","16.0.0-nightly.20210823":"94.0.4590.2","16.0.0-nightly.20210824":"95.0.4612.5","16.0.0-nightly.20210825":"95.0.4612.5","16.0.0-nightly.20210826":"95.0.4612.5","16.0.0-nightly.20210827":"95.0.4612.5","16.0.0-nightly.20210830":"95.0.4612.5","16.0.0-nightly.20210831":"95.0.4612.5","16.0.0-nightly.20210901":"95.0.4612.5","16.0.0-nightly.20210902":"95.0.4629.0","16.0.0-nightly.20210903":"95.0.4629.0","16.0.0-nightly.20210906":"95.0.4629.0","16.0.0-nightly.20210907":"95.0.4629.0","16.0.0-nightly.20210908":"95.0.4629.0","16.0.0-nightly.20210909":"95.0.4629.0","16.0.0-nightly.20210910":"95.0.4629.0","16.0.0-nightly.20210913":"95.0.4629.0","16.0.0-nightly.20210914":"95.0.4629.0","16.0.0-nightly.20210915":"95.0.4629.0","16.0.0-nightly.20210916":"95.0.4629.0","16.0.0-nightly.20210917":"95.0.4629.0","16.0.0-nightly.20210920":"95.0.4629.0","16.0.0-nightly.20210921":"95.0.4629.0","16.0.0-nightly.20210922":"95.0.4629.0","16.0.0":"96.0.4664.45","16.0.1":"96.0.4664.45","16.0.2":"96.0.4664.55","16.0.3":"96.0.4664.55","16.0.4":"96.0.4664.55","16.0.5":"96.0.4664.55","16.0.6":"96.0.4664.110","16.0.7":"96.0.4664.110","16.0.8":"96.0.4664.110","16.0.9":"96.0.4664.174","16.0.10":"96.0.4664.174","16.1.0":"96.0.4664.174","16.1.1":"96.0.4664.174","16.2.0":"96.0.4664.174","16.2.1":"96.0.4664.174","16.2.2":"96.0.4664.174","16.2.3":"96.0.4664.174","16.2.4":"96.0.4664.174","16.2.5":"96.0.4664.174","16.2.6":"96.0.4664.174","16.2.7":"96.0.4664.174","16.2.8":"96.0.4664.174","17.0.0-alpha.1":"96.0.4664.4","17.0.0-alpha.2":"96.0.4664.4","17.0.0-alpha.3":"96.0.4664.4","17.0.0-alpha.4":"98.0.4706.0","17.0.0-alpha.5":"98.0.4706.0","17.0.0-alpha.6":"98.0.4706.0","17.0.0-beta.1":"98.0.4706.0","17.0.0-beta.2":"98.0.4706.0","17.0.0-beta.3":"98.0.4758.9","17.0.0-beta.4":"98.0.4758.11","17.0.0-beta.5":"98.0.4758.11","17.0.0-beta.6":"98.0.4758.11","17.0.0-beta.7":"98.0.4758.11","17.0.0-beta.8":"98.0.4758.11","17.0.0-beta.9":"98.0.4758.11","17.0.0-nightly.20210923":"95.0.4629.0","17.0.0-nightly.20210924":"95.0.4629.0","17.0.0-nightly.20210927":"95.0.4629.0","17.0.0-nightly.20210928":"95.0.4629.0","17.0.0-nightly.20210929":"95.0.4629.0","17.0.0-nightly.20210930":"95.0.4629.0","17.0.0-nightly.20211001":"95.0.4629.0","17.0.0-nightly.20211004":"95.0.4629.0","17.0.0-nightly.20211005":"95.0.4629.0","17.0.0-nightly.20211006":"96.0.4647.0","17.0.0-nightly.20211007":"96.0.4647.0","17.0.0-nightly.20211008":"96.0.4647.0","17.0.0-nightly.20211011":"96.0.4647.0","17.0.0-nightly.20211012":"96.0.4647.0","17.0.0-nightly.20211013":"96.0.4647.0","17.0.0-nightly.20211014":"96.0.4647.0","17.0.0-nightly.20211015":"96.0.4647.0","17.0.0-nightly.20211018":"96.0.4647.0","17.0.0-nightly.20211019":"96.0.4647.0","17.0.0-nightly.20211020":"96.0.4647.0","17.0.0-nightly.20211021":"96.0.4647.0","17.0.0-nightly.20211022":"96.0.4664.4","17.0.0-nightly.20211025":"96.0.4664.4","17.0.0-nightly.20211026":"96.0.4664.4","17.0.0-nightly.20211027":"96.0.4664.4","17.0.0-nightly.20211028":"96.0.4664.4","17.0.0-nightly.20211029":"96.0.4664.4","17.0.0-nightly.20211101":"96.0.4664.4","17.0.0-nightly.20211102":"96.0.4664.4","17.0.0-nightly.20211103":"96.0.4664.4","17.0.0-nightly.20211104":"96.0.4664.4","17.0.0-nightly.20211105":"96.0.4664.4","17.0.0-nightly.20211108":"96.0.4664.4","17.0.0-nightly.20211109":"96.0.4664.4","17.0.0-nightly.20211110":"96.0.4664.4","17.0.0-nightly.20211111":"96.0.4664.4","17.0.0-nightly.20211112":"96.0.4664.4","17.0.0-nightly.20211115":"96.0.4664.4","17.0.0-nightly.20211116":"96.0.4664.4","17.0.0-nightly.20211117":"96.0.4664.4","17.0.0":"98.0.4758.74","17.0.1":"98.0.4758.82","17.1.0":"98.0.4758.102","17.1.1":"98.0.4758.109","17.1.2":"98.0.4758.109","17.2.0":"98.0.4758.109","17.3.0":"98.0.4758.141","17.3.1":"98.0.4758.141","17.4.0":"98.0.4758.141","17.4.1":"98.0.4758.141","17.4.2":"98.0.4758.141","17.4.3":"98.0.4758.141","17.4.4":"98.0.4758.141","17.4.5":"98.0.4758.141","17.4.6":"98.0.4758.141","17.4.7":"98.0.4758.141","17.4.8":"98.0.4758.141","17.4.9":"98.0.4758.141","17.4.10":"98.0.4758.141","17.4.11":"98.0.4758.141","18.0.0-alpha.1":"99.0.4767.0","18.0.0-alpha.2":"99.0.4767.0","18.0.0-alpha.3":"99.0.4767.0","18.0.0-alpha.4":"99.0.4767.0","18.0.0-alpha.5":"99.0.4767.0","18.0.0-beta.1":"100.0.4894.0","18.0.0-beta.2":"100.0.4894.0","18.0.0-beta.3":"100.0.4894.0","18.0.0-beta.4":"100.0.4894.0","18.0.0-beta.5":"100.0.4894.0","18.0.0-beta.6":"100.0.4894.0","18.0.0-nightly.20211118":"96.0.4664.4","18.0.0-nightly.20211119":"96.0.4664.4","18.0.0-nightly.20211122":"96.0.4664.4","18.0.0-nightly.20211123":"96.0.4664.4","18.0.0-nightly.20211124":"98.0.4706.0","18.0.0-nightly.20211125":"98.0.4706.0","18.0.0-nightly.20211126":"98.0.4706.0","18.0.0-nightly.20211129":"98.0.4706.0","18.0.0-nightly.20211130":"98.0.4706.0","18.0.0-nightly.20211201":"98.0.4706.0","18.0.0-nightly.20211202":"98.0.4706.0","18.0.0-nightly.20211203":"98.0.4706.0","18.0.0-nightly.20211206":"98.0.4706.0","18.0.0-nightly.20211207":"98.0.4706.0","18.0.0-nightly.20211208":"98.0.4706.0","18.0.0-nightly.20211209":"98.0.4706.0","18.0.0-nightly.20211210":"98.0.4706.0","18.0.0-nightly.20211213":"98.0.4706.0","18.0.0-nightly.20211214":"98.0.4706.0","18.0.0-nightly.20211215":"98.0.4706.0","18.0.0-nightly.20211216":"98.0.4706.0","18.0.0-nightly.20211217":"98.0.4706.0","18.0.0-nightly.20211220":"98.0.4706.0","18.0.0-nightly.20211221":"98.0.4706.0","18.0.0-nightly.20211222":"98.0.4706.0","18.0.0-nightly.20211223":"98.0.4706.0","18.0.0-nightly.20211228":"98.0.4706.0","18.0.0-nightly.20211229":"98.0.4706.0","18.0.0-nightly.20211231":"98.0.4706.0","18.0.0-nightly.20220103":"98.0.4706.0","18.0.0-nightly.20220104":"98.0.4706.0","18.0.0-nightly.20220105":"98.0.4706.0","18.0.0-nightly.20220106":"98.0.4706.0","18.0.0-nightly.20220107":"98.0.4706.0","18.0.0-nightly.20220110":"98.0.4706.0","18.0.0-nightly.20220111":"99.0.4767.0","18.0.0-nightly.20220112":"99.0.4767.0","18.0.0-nightly.20220113":"99.0.4767.0","18.0.0-nightly.20220114":"99.0.4767.0","18.0.0-nightly.20220117":"99.0.4767.0","18.0.0-nightly.20220118":"99.0.4767.0","18.0.0-nightly.20220119":"99.0.4767.0","18.0.0-nightly.20220121":"99.0.4767.0","18.0.0-nightly.20220124":"99.0.4767.0","18.0.0-nightly.20220125":"99.0.4767.0","18.0.0-nightly.20220127":"99.0.4767.0","18.0.0-nightly.20220128":"99.0.4767.0","18.0.0-nightly.20220131":"99.0.4767.0","18.0.0-nightly.20220201":"99.0.4767.0","18.0.0":"100.0.4896.56","18.0.1":"100.0.4896.60","18.0.2":"100.0.4896.60","18.0.3":"100.0.4896.75","18.0.4":"100.0.4896.75","18.1.0":"100.0.4896.127","18.2.0":"100.0.4896.143","18.2.1":"100.0.4896.143","18.2.2":"100.0.4896.143","18.2.3":"100.0.4896.143","18.2.4":"100.0.4896.160","18.3.0":"100.0.4896.160","18.3.1":"100.0.4896.160","18.3.2":"100.0.4896.160","18.3.3":"100.0.4896.160","18.3.4":"100.0.4896.160","18.3.5":"100.0.4896.160","18.3.6":"100.0.4896.160","18.3.7":"100.0.4896.160","18.3.8":"100.0.4896.160","18.3.9":"100.0.4896.160","18.3.11":"100.0.4896.160","18.3.12":"100.0.4896.160","18.3.13":"100.0.4896.160","18.3.14":"100.0.4896.160","18.3.15":"100.0.4896.160","19.0.0-alpha.1":"102.0.4962.3","19.0.0-alpha.2":"102.0.4971.0","19.0.0-alpha.3":"102.0.4971.0","19.0.0-alpha.4":"102.0.4989.0","19.0.0-alpha.5":"102.0.4989.0","19.0.0-beta.1":"102.0.4999.0","19.0.0-beta.2":"102.0.4999.0","19.0.0-beta.3":"102.0.4999.0","19.0.0-beta.4":"102.0.5005.27","19.0.0-beta.5":"102.0.5005.40","19.0.0-beta.6":"102.0.5005.40","19.0.0-beta.7":"102.0.5005.40","19.0.0-beta.8":"102.0.5005.49","19.0.0-nightly.20220202":"99.0.4767.0","19.0.0-nightly.20220203":"99.0.4767.0","19.0.0-nightly.20220204":"99.0.4767.0","19.0.0-nightly.20220207":"99.0.4767.0","19.0.0-nightly.20220208":"99.0.4767.0","19.0.0-nightly.20220209":"99.0.4767.0","19.0.0-nightly.20220308":"100.0.4894.0","19.0.0-nightly.20220309":"100.0.4894.0","19.0.0-nightly.20220310":"100.0.4894.0","19.0.0-nightly.20220311":"100.0.4894.0","19.0.0-nightly.20220314":"100.0.4894.0","19.0.0-nightly.20220315":"100.0.4894.0","19.0.0-nightly.20220316":"100.0.4894.0","19.0.0-nightly.20220317":"100.0.4894.0","19.0.0-nightly.20220318":"100.0.4894.0","19.0.0-nightly.20220321":"100.0.4894.0","19.0.0-nightly.20220322":"100.0.4894.0","19.0.0-nightly.20220323":"100.0.4894.0","19.0.0-nightly.20220324":"100.0.4894.0","19.0.0-nightly.20220325":"102.0.4961.0","19.0.0-nightly.20220328":"102.0.4962.3","19.0.0-nightly.20220329":"102.0.4962.3","19.0.0":"102.0.5005.61","19.0.1":"102.0.5005.61","19.0.2":"102.0.5005.63","19.0.3":"102.0.5005.63","19.0.4":"102.0.5005.63","19.0.5":"102.0.5005.115","19.0.6":"102.0.5005.115","19.0.7":"102.0.5005.134","19.0.8":"102.0.5005.148","19.0.9":"102.0.5005.167","19.0.10":"102.0.5005.167","19.0.11":"102.0.5005.167","19.0.12":"102.0.5005.167","19.0.13":"102.0.5005.167","19.0.14":"102.0.5005.167","19.0.15":"102.0.5005.167","19.0.16":"102.0.5005.167","19.0.17":"102.0.5005.167","19.1.0":"102.0.5005.167","19.1.1":"102.0.5005.167","19.1.2":"102.0.5005.167","19.1.3":"102.0.5005.167","19.1.4":"102.0.5005.167","19.1.5":"102.0.5005.167","19.1.6":"102.0.5005.167","19.1.7":"102.0.5005.167","19.1.8":"102.0.5005.167","19.1.9":"102.0.5005.167","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","20.0.0-alpha.3":"104.0.5073.0","20.0.0-alpha.4":"104.0.5073.0","20.0.0-alpha.5":"104.0.5073.0","20.0.0-alpha.6":"104.0.5073.0","20.0.0-alpha.7":"104.0.5073.0","20.0.0-beta.1":"104.0.5073.0","20.0.0-beta.2":"104.0.5073.0","20.0.0-beta.3":"104.0.5073.0","20.0.0-beta.4":"104.0.5073.0","20.0.0-beta.5":"104.0.5073.0","20.0.0-beta.6":"104.0.5073.0","20.0.0-beta.7":"104.0.5073.0","20.0.0-beta.8":"104.0.5073.0","20.0.0-beta.9":"104.0.5112.39","20.0.0-beta.10":"104.0.5112.48","20.0.0-beta.11":"104.0.5112.48","20.0.0-beta.12":"104.0.5112.48","20.0.0-beta.13":"104.0.5112.57","20.0.0-nightly.20220330":"102.0.4962.3","20.0.0-nightly.20220411":"102.0.4971.0","20.0.0-nightly.20220414":"102.0.4989.0","20.0.0-nightly.20220415":"102.0.4989.0","20.0.0-nightly.20220418":"102.0.4989.0","20.0.0-nightly.20220419":"102.0.4989.0","20.0.0-nightly.20220420":"102.0.4989.0","20.0.0-nightly.20220421":"102.0.4989.0","20.0.0-nightly.20220425":"102.0.4999.0","20.0.0-nightly.20220426":"102.0.4999.0","20.0.0-nightly.20220427":"102.0.4999.0","20.0.0-nightly.20220428":"102.0.4999.0","20.0.0-nightly.20220429":"102.0.4999.0","20.0.0-nightly.20220502":"102.0.4999.0","20.0.0-nightly.20220503":"102.0.4999.0","20.0.0-nightly.20220504":"102.0.4999.0","20.0.0-nightly.20220505":"102.0.4999.0","20.0.0-nightly.20220506":"102.0.4999.0","20.0.0-nightly.20220509":"102.0.4999.0","20.0.0-nightly.20220511":"102.0.4999.0","20.0.0-nightly.20220512":"102.0.4999.0","20.0.0-nightly.20220513":"102.0.4999.0","20.0.0-nightly.20220516":"102.0.4999.0","20.0.0-nightly.20220517":"102.0.4999.0","20.0.0-nightly.20220518":"103.0.5044.0","20.0.0-nightly.20220519":"103.0.5044.0","20.0.0-nightly.20220520":"103.0.5044.0","20.0.0-nightly.20220523":"103.0.5044.0","20.0.0-nightly.20220524":"103.0.5044.0","20.0.0":"104.0.5112.65","20.0.1":"104.0.5112.81","20.0.2":"104.0.5112.81","20.0.3":"104.0.5112.81","20.1.0":"104.0.5112.102","20.1.1":"104.0.5112.102","20.1.2":"104.0.5112.114","20.1.3":"104.0.5112.114","20.1.4":"104.0.5112.114","20.2.0":"104.0.5112.124","20.3.0":"104.0.5112.124","20.3.1":"104.0.5112.124","20.3.2":"104.0.5112.124","20.3.3":"104.0.5112.124","20.3.4":"104.0.5112.124","20.3.5":"104.0.5112.124","20.3.6":"104.0.5112.124","20.3.7":"104.0.5112.124","20.3.8":"104.0.5112.124","20.3.9":"104.0.5112.124","20.3.10":"104.0.5112.124","20.3.11":"104.0.5112.124","20.3.12":"104.0.5112.124","21.0.0-alpha.1":"105.0.5187.0","21.0.0-alpha.2":"105.0.5187.0","21.0.0-alpha.3":"105.0.5187.0","21.0.0-alpha.4":"105.0.5187.0","21.0.0-alpha.5":"105.0.5187.0","21.0.0-alpha.6":"106.0.5216.0","21.0.0-beta.1":"106.0.5216.0","21.0.0-beta.2":"106.0.5216.0","21.0.0-beta.3":"106.0.5216.0","21.0.0-beta.4":"106.0.5216.0","21.0.0-beta.5":"106.0.5216.0","21.0.0-beta.6":"106.0.5249.40","21.0.0-beta.7":"106.0.5249.40","21.0.0-beta.8":"106.0.5249.40","21.0.0-nightly.20220526":"103.0.5044.0","21.0.0-nightly.20220527":"103.0.5044.0","21.0.0-nightly.20220530":"103.0.5044.0","21.0.0-nightly.20220531":"103.0.5044.0","21.0.0-nightly.20220602":"104.0.5073.0","21.0.0-nightly.20220603":"104.0.5073.0","21.0.0-nightly.20220606":"104.0.5073.0","21.0.0-nightly.20220607":"104.0.5073.0","21.0.0-nightly.20220608":"104.0.5073.0","21.0.0-nightly.20220609":"104.0.5073.0","21.0.0-nightly.20220610":"104.0.5073.0","21.0.0-nightly.20220613":"104.0.5073.0","21.0.0-nightly.20220614":"104.0.5073.0","21.0.0-nightly.20220615":"104.0.5073.0","21.0.0-nightly.20220616":"104.0.5073.0","21.0.0-nightly.20220617":"104.0.5073.0","21.0.0-nightly.20220620":"104.0.5073.0","21.0.0-nightly.20220621":"104.0.5073.0","21.0.0-nightly.20220622":"104.0.5073.0","21.0.0-nightly.20220623":"104.0.5073.0","21.0.0-nightly.20220624":"104.0.5073.0","21.0.0-nightly.20220627":"104.0.5073.0","21.0.0-nightly.20220628":"105.0.5129.0","21.0.0-nightly.20220629":"105.0.5129.0","21.0.0-nightly.20220630":"105.0.5129.0","21.0.0-nightly.20220701":"105.0.5129.0","21.0.0-nightly.20220704":"105.0.5129.0","21.0.0-nightly.20220705":"105.0.5129.0","21.0.0-nightly.20220706":"105.0.5129.0","21.0.0-nightly.20220707":"105.0.5129.0","21.0.0-nightly.20220708":"105.0.5129.0","21.0.0-nightly.20220711":"105.0.5129.0","21.0.0-nightly.20220712":"105.0.5129.0","21.0.0-nightly.20220713":"105.0.5129.0","21.0.0-nightly.20220715":"105.0.5173.0","21.0.0-nightly.20220718":"105.0.5173.0","21.0.0-nightly.20220719":"105.0.5173.0","21.0.0-nightly.20220720":"105.0.5187.0","21.0.0-nightly.20220721":"105.0.5187.0","21.0.0-nightly.20220722":"105.0.5187.0","21.0.0-nightly.20220725":"105.0.5187.0","21.0.0-nightly.20220726":"105.0.5187.0","21.0.0-nightly.20220727":"105.0.5187.0","21.0.0-nightly.20220728":"105.0.5187.0","21.0.0-nightly.20220801":"105.0.5187.0","21.0.0-nightly.20220802":"105.0.5187.0","21.0.0":"106.0.5249.51","21.0.1":"106.0.5249.61","21.1.0":"106.0.5249.91","21.1.1":"106.0.5249.103","21.2.0":"106.0.5249.119","21.2.1":"106.0.5249.165","21.2.2":"106.0.5249.168","21.2.3":"106.0.5249.168","21.3.0":"106.0.5249.181","21.3.1":"106.0.5249.181","21.3.3":"106.0.5249.199","21.3.4":"106.0.5249.199","21.3.5":"106.0.5249.199","21.4.0":"106.0.5249.199","21.4.1":"106.0.5249.199","21.4.2":"106.0.5249.199","21.4.3":"106.0.5249.199","21.4.4":"106.0.5249.199","22.0.0-alpha.1":"107.0.5286.0","22.0.0-alpha.3":"108.0.5329.0","22.0.0-alpha.4":"108.0.5329.0","22.0.0-alpha.5":"108.0.5329.0","22.0.0-alpha.6":"108.0.5329.0","22.0.0-alpha.7":"108.0.5355.0","22.0.0-alpha.8":"108.0.5359.10","22.0.0-beta.1":"108.0.5359.10","22.0.0-beta.2":"108.0.5359.10","22.0.0-beta.3":"108.0.5359.10","22.0.0-beta.4":"108.0.5359.29","22.0.0-beta.5":"108.0.5359.40","22.0.0-beta.6":"108.0.5359.40","22.0.0-beta.7":"108.0.5359.48","22.0.0-beta.8":"108.0.5359.48","22.0.0-nightly.20220808":"105.0.5187.0","22.0.0-nightly.20220809":"105.0.5187.0","22.0.0-nightly.20220810":"105.0.5187.0","22.0.0-nightly.20220811":"105.0.5187.0","22.0.0-nightly.20220812":"105.0.5187.0","22.0.0-nightly.20220815":"105.0.5187.0","22.0.0-nightly.20220816":"105.0.5187.0","22.0.0-nightly.20220817":"105.0.5187.0","22.0.0-nightly.20220822":"106.0.5216.0","22.0.0-nightly.20220823":"106.0.5216.0","22.0.0-nightly.20220824":"106.0.5216.0","22.0.0-nightly.20220825":"106.0.5216.0","22.0.0-nightly.20220829":"106.0.5216.0","22.0.0-nightly.20220830":"106.0.5216.0","22.0.0-nightly.20220831":"106.0.5216.0","22.0.0-nightly.20220901":"106.0.5216.0","22.0.0-nightly.20220902":"106.0.5216.0","22.0.0-nightly.20220905":"106.0.5216.0","22.0.0-nightly.20220908":"107.0.5274.0","22.0.0-nightly.20220909":"107.0.5286.0","22.0.0-nightly.20220912":"107.0.5286.0","22.0.0-nightly.20220913":"107.0.5286.0","22.0.0-nightly.20220914":"107.0.5286.0","22.0.0-nightly.20220915":"107.0.5286.0","22.0.0-nightly.20220916":"107.0.5286.0","22.0.0-nightly.20220919":"107.0.5286.0","22.0.0-nightly.20220920":"107.0.5286.0","22.0.0-nightly.20220921":"107.0.5286.0","22.0.0-nightly.20220922":"107.0.5286.0","22.0.0-nightly.20220923":"107.0.5286.0","22.0.0-nightly.20220926":"107.0.5286.0","22.0.0-nightly.20220927":"107.0.5286.0","22.0.0-nightly.20220928":"107.0.5286.0","22.0.0":"108.0.5359.62","22.0.1":"108.0.5359.125","22.0.2":"108.0.5359.179","22.0.3":"108.0.5359.179","22.1.0":"108.0.5359.179","22.2.0":"108.0.5359.215","22.2.1":"108.0.5359.215","22.3.0":"108.0.5359.215","22.3.1":"108.0.5359.215","22.3.2":"108.0.5359.215","22.3.3":"108.0.5359.215","22.3.4":"108.0.5359.215","22.3.5":"108.0.5359.215","22.3.6":"108.0.5359.215","22.3.7":"108.0.5359.215","22.3.8":"108.0.5359.215","22.3.9":"108.0.5359.215","22.3.10":"108.0.5359.215","22.3.11":"108.0.5359.215","22.3.12":"108.0.5359.215","22.3.13":"108.0.5359.215","22.3.14":"108.0.5359.215","22.3.15":"108.0.5359.215","22.3.16":"108.0.5359.215","22.3.17":"108.0.5359.215","22.3.18":"108.0.5359.215","22.3.20":"108.0.5359.215","22.3.21":"108.0.5359.215","22.3.22":"108.0.5359.215","22.3.23":"108.0.5359.215","22.3.24":"108.0.5359.215","22.3.25":"108.0.5359.215","22.3.26":"108.0.5359.215","22.3.27":"108.0.5359.215","23.0.0-alpha.1":"110.0.5415.0","23.0.0-alpha.2":"110.0.5451.0","23.0.0-alpha.3":"110.0.5451.0","23.0.0-beta.1":"110.0.5478.5","23.0.0-beta.2":"110.0.5478.5","23.0.0-beta.3":"110.0.5478.5","23.0.0-beta.4":"110.0.5481.30","23.0.0-beta.5":"110.0.5481.38","23.0.0-beta.6":"110.0.5481.52","23.0.0-beta.8":"110.0.5481.52","23.0.0-nightly.20220929":"107.0.5286.0","23.0.0-nightly.20220930":"107.0.5286.0","23.0.0-nightly.20221003":"107.0.5286.0","23.0.0-nightly.20221004":"108.0.5329.0","23.0.0-nightly.20221005":"108.0.5329.0","23.0.0-nightly.20221006":"108.0.5329.0","23.0.0-nightly.20221007":"108.0.5329.0","23.0.0-nightly.20221010":"108.0.5329.0","23.0.0-nightly.20221011":"108.0.5329.0","23.0.0-nightly.20221012":"108.0.5329.0","23.0.0-nightly.20221013":"108.0.5329.0","23.0.0-nightly.20221014":"108.0.5329.0","23.0.0-nightly.20221017":"108.0.5329.0","23.0.0-nightly.20221018":"108.0.5355.0","23.0.0-nightly.20221019":"108.0.5355.0","23.0.0-nightly.20221020":"108.0.5355.0","23.0.0-nightly.20221021":"108.0.5355.0","23.0.0-nightly.20221024":"108.0.5355.0","23.0.0-nightly.20221026":"108.0.5355.0","23.0.0-nightly.20221027":"109.0.5382.0","23.0.0-nightly.20221028":"109.0.5382.0","23.0.0-nightly.20221031":"109.0.5382.0","23.0.0-nightly.20221101":"109.0.5382.0","23.0.0-nightly.20221102":"109.0.5382.0","23.0.0-nightly.20221103":"109.0.5382.0","23.0.0-nightly.20221104":"109.0.5382.0","23.0.0-nightly.20221107":"109.0.5382.0","23.0.0-nightly.20221108":"109.0.5382.0","23.0.0-nightly.20221109":"109.0.5382.0","23.0.0-nightly.20221110":"109.0.5382.0","23.0.0-nightly.20221111":"109.0.5382.0","23.0.0-nightly.20221114":"109.0.5382.0","23.0.0-nightly.20221115":"109.0.5382.0","23.0.0-nightly.20221116":"109.0.5382.0","23.0.0-nightly.20221117":"109.0.5382.0","23.0.0-nightly.20221118":"110.0.5415.0","23.0.0-nightly.20221121":"110.0.5415.0","23.0.0-nightly.20221122":"110.0.5415.0","23.0.0-nightly.20221123":"110.0.5415.0","23.0.0-nightly.20221124":"110.0.5415.0","23.0.0-nightly.20221125":"110.0.5415.0","23.0.0-nightly.20221128":"110.0.5415.0","23.0.0-nightly.20221129":"110.0.5415.0","23.0.0-nightly.20221130":"110.0.5415.0","23.0.0":"110.0.5481.77","23.1.0":"110.0.5481.100","23.1.1":"110.0.5481.104","23.1.2":"110.0.5481.177","23.1.3":"110.0.5481.179","23.1.4":"110.0.5481.192","23.2.0":"110.0.5481.192","23.2.1":"110.0.5481.208","23.2.2":"110.0.5481.208","23.2.3":"110.0.5481.208","23.2.4":"110.0.5481.208","23.3.0":"110.0.5481.208","23.3.1":"110.0.5481.208","23.3.2":"110.0.5481.208","23.3.3":"110.0.5481.208","23.3.4":"110.0.5481.208","23.3.5":"110.0.5481.208","23.3.6":"110.0.5481.208","23.3.7":"110.0.5481.208","23.3.8":"110.0.5481.208","23.3.9":"110.0.5481.208","23.3.10":"110.0.5481.208","23.3.11":"110.0.5481.208","23.3.12":"110.0.5481.208","23.3.13":"110.0.5481.208","24.0.0-alpha.1":"111.0.5560.0","24.0.0-alpha.2":"111.0.5560.0","24.0.0-alpha.3":"111.0.5560.0","24.0.0-alpha.4":"111.0.5560.0","24.0.0-alpha.5":"111.0.5560.0","24.0.0-alpha.6":"111.0.5560.0","24.0.0-alpha.7":"111.0.5560.0","24.0.0-beta.1":"111.0.5563.50","24.0.0-beta.2":"111.0.5563.50","24.0.0-beta.3":"112.0.5615.20","24.0.0-beta.4":"112.0.5615.20","24.0.0-beta.5":"112.0.5615.29","24.0.0-beta.6":"112.0.5615.39","24.0.0-beta.7":"112.0.5615.39","24.0.0-nightly.20221201":"110.0.5415.0","24.0.0-nightly.20221202":"110.0.5415.0","24.0.0-nightly.20221205":"110.0.5415.0","24.0.0-nightly.20221206":"110.0.5451.0","24.0.0-nightly.20221207":"110.0.5451.0","24.0.0-nightly.20221208":"110.0.5451.0","24.0.0-nightly.20221213":"110.0.5451.0","24.0.0-nightly.20221214":"110.0.5451.0","24.0.0-nightly.20221215":"110.0.5451.0","24.0.0-nightly.20221216":"110.0.5451.0","24.0.0-nightly.20230109":"111.0.5518.0","24.0.0-nightly.20230110":"111.0.5518.0","24.0.0-nightly.20230111":"111.0.5518.0","24.0.0-nightly.20230112":"111.0.5518.0","24.0.0-nightly.20230113":"111.0.5518.0","24.0.0-nightly.20230116":"111.0.5518.0","24.0.0-nightly.20230117":"111.0.5518.0","24.0.0-nightly.20230118":"111.0.5518.0","24.0.0-nightly.20230119":"111.0.5518.0","24.0.0-nightly.20230120":"111.0.5518.0","24.0.0-nightly.20230123":"111.0.5518.0","24.0.0-nightly.20230124":"111.0.5518.0","24.0.0-nightly.20230125":"111.0.5518.0","24.0.0-nightly.20230126":"111.0.5518.0","24.0.0-nightly.20230127":"111.0.5518.0","24.0.0-nightly.20230131":"111.0.5518.0","24.0.0-nightly.20230201":"111.0.5518.0","24.0.0-nightly.20230202":"111.0.5518.0","24.0.0-nightly.20230203":"111.0.5560.0","24.0.0-nightly.20230206":"111.0.5560.0","24.0.0-nightly.20230207":"111.0.5560.0","24.0.0-nightly.20230208":"111.0.5560.0","24.0.0-nightly.20230209":"111.0.5560.0","24.0.0":"112.0.5615.49","24.1.0":"112.0.5615.50","24.1.1":"112.0.5615.50","24.1.2":"112.0.5615.87","24.1.3":"112.0.5615.165","24.2.0":"112.0.5615.165","24.3.0":"112.0.5615.165","24.3.1":"112.0.5615.183","24.4.0":"112.0.5615.204","24.4.1":"112.0.5615.204","24.5.0":"112.0.5615.204","24.5.1":"112.0.5615.204","24.6.0":"112.0.5615.204","24.6.1":"112.0.5615.204","24.6.2":"112.0.5615.204","24.6.3":"112.0.5615.204","24.6.4":"112.0.5615.204","24.6.5":"112.0.5615.204","24.7.0":"112.0.5615.204","24.7.1":"112.0.5615.204","24.8.0":"112.0.5615.204","24.8.1":"112.0.5615.204","24.8.2":"112.0.5615.204","24.8.3":"112.0.5615.204","24.8.4":"112.0.5615.204","24.8.5":"112.0.5615.204","24.8.6":"112.0.5615.204","24.8.7":"112.0.5615.204","25.0.0-alpha.1":"114.0.5694.0","25.0.0-alpha.2":"114.0.5694.0","25.0.0-alpha.3":"114.0.5710.0","25.0.0-alpha.4":"114.0.5710.0","25.0.0-alpha.5":"114.0.5719.0","25.0.0-alpha.6":"114.0.5719.0","25.0.0-beta.1":"114.0.5719.0","25.0.0-beta.2":"114.0.5719.0","25.0.0-beta.3":"114.0.5719.0","25.0.0-beta.4":"114.0.5735.16","25.0.0-beta.5":"114.0.5735.16","25.0.0-beta.6":"114.0.5735.16","25.0.0-beta.7":"114.0.5735.16","25.0.0-beta.8":"114.0.5735.35","25.0.0-beta.9":"114.0.5735.45","25.0.0-nightly.20230210":"111.0.5560.0","25.0.0-nightly.20230214":"111.0.5560.0","25.0.0-nightly.20230215":"111.0.5560.0","25.0.0-nightly.20230216":"111.0.5560.0","25.0.0-nightly.20230217":"111.0.5560.0","25.0.0-nightly.20230220":"111.0.5560.0","25.0.0-nightly.20230221":"111.0.5560.0","25.0.0-nightly.20230222":"111.0.5560.0","25.0.0-nightly.20230223":"111.0.5560.0","25.0.0-nightly.20230224":"111.0.5560.0","25.0.0-nightly.20230227":"111.0.5560.0","25.0.0-nightly.20230228":"111.0.5560.0","25.0.0-nightly.20230301":"111.0.5560.0","25.0.0-nightly.20230302":"111.0.5560.0","25.0.0-nightly.20230303":"111.0.5560.0","25.0.0-nightly.20230306":"111.0.5560.0","25.0.0-nightly.20230307":"111.0.5560.0","25.0.0-nightly.20230308":"111.0.5560.0","25.0.0-nightly.20230309":"111.0.5560.0","25.0.0-nightly.20230310":"111.0.5560.0","25.0.0-nightly.20230314":"113.0.5636.0","25.0.0-nightly.20230315":"113.0.5651.0","25.0.0-nightly.20230317":"113.0.5653.0","25.0.0-nightly.20230320":"113.0.5660.0","25.0.0-nightly.20230321":"113.0.5664.0","25.0.0-nightly.20230322":"113.0.5666.0","25.0.0-nightly.20230323":"113.0.5668.0","25.0.0-nightly.20230324":"113.0.5670.0","25.0.0-nightly.20230327":"113.0.5670.0","25.0.0-nightly.20230328":"113.0.5670.0","25.0.0-nightly.20230329":"113.0.5670.0","25.0.0-nightly.20230330":"113.0.5670.0","25.0.0-nightly.20230331":"114.0.5684.0","25.0.0-nightly.20230403":"114.0.5684.0","25.0.0-nightly.20230404":"114.0.5692.0","25.0.0-nightly.20230405":"114.0.5694.0","25.0.0":"114.0.5735.45","25.0.1":"114.0.5735.45","25.1.0":"114.0.5735.106","25.1.1":"114.0.5735.106","25.2.0":"114.0.5735.134","25.3.0":"114.0.5735.199","25.3.1":"114.0.5735.243","25.3.2":"114.0.5735.248","25.4.0":"114.0.5735.248","25.5.0":"114.0.5735.289","25.6.0":"114.0.5735.289","25.7.0":"114.0.5735.289","25.8.0":"114.0.5735.289","25.8.1":"114.0.5735.289","25.8.2":"114.0.5735.289","25.8.3":"114.0.5735.289","25.8.4":"114.0.5735.289","25.9.0":"114.0.5735.289","26.0.0-alpha.1":"116.0.5791.0","26.0.0-alpha.2":"116.0.5791.0","26.0.0-alpha.3":"116.0.5791.0","26.0.0-alpha.4":"116.0.5791.0","26.0.0-alpha.5":"116.0.5791.0","26.0.0-alpha.6":"116.0.5815.0","26.0.0-alpha.7":"116.0.5831.0","26.0.0-alpha.8":"116.0.5845.0","26.0.0-beta.1":"116.0.5845.0","26.0.0-beta.2":"116.0.5845.14","26.0.0-beta.3":"116.0.5845.14","26.0.0-beta.4":"116.0.5845.14","26.0.0-beta.5":"116.0.5845.14","26.0.0-beta.6":"116.0.5845.14","26.0.0-beta.7":"116.0.5845.14","26.0.0-beta.8":"116.0.5845.42","26.0.0-beta.9":"116.0.5845.42","26.0.0-beta.10":"116.0.5845.49","26.0.0-beta.11":"116.0.5845.49","26.0.0-beta.12":"116.0.5845.62","26.0.0-nightly.20230406":"114.0.5694.0","26.0.0-nightly.20230407":"114.0.5694.0","26.0.0-nightly.20230410":"114.0.5694.0","26.0.0-nightly.20230411":"114.0.5694.0","26.0.0-nightly.20230412":"114.0.5708.0","26.0.0-nightly.20230413":"114.0.5710.0","26.0.0-nightly.20230414":"114.0.5710.0","26.0.0-nightly.20230417":"114.0.5710.0","26.0.0-nightly.20230418":"114.0.5715.0","26.0.0-nightly.20230421":"114.0.5719.0","26.0.0-nightly.20230424":"114.0.5719.0","26.0.0-nightly.20230425":"114.0.5719.0","26.0.0-nightly.20230426":"114.0.5719.0","26.0.0-nightly.20230427":"114.0.5719.0","26.0.0-nightly.20230428":"114.0.5719.0","26.0.0-nightly.20230501":"114.0.5719.0","26.0.0-nightly.20230502":"114.0.5719.0","26.0.0-nightly.20230503":"114.0.5719.0","26.0.0-nightly.20230504":"114.0.5719.0","26.0.0-nightly.20230505":"114.0.5719.0","26.0.0-nightly.20230508":"114.0.5719.0","26.0.0-nightly.20230509":"114.0.5719.0","26.0.0-nightly.20230510":"114.0.5719.0","26.0.0-nightly.20230511":"115.0.5760.0","26.0.0-nightly.20230512":"115.0.5760.0","26.0.0-nightly.20230515":"115.0.5760.0","26.0.0-nightly.20230516":"115.0.5760.0","26.0.0-nightly.20230517":"115.0.5760.0","26.0.0-nightly.20230518":"115.0.5760.0","26.0.0-nightly.20230519":"115.0.5760.0","26.0.0-nightly.20230522":"115.0.5760.0","26.0.0-nightly.20230523":"115.0.5760.0","26.0.0-nightly.20230524":"115.0.5786.0","26.0.0-nightly.20230525":"115.0.5790.0","26.0.0-nightly.20230526":"116.0.5791.0","26.0.0-nightly.20230529":"116.0.5791.0","26.0.0-nightly.20230530":"116.0.5791.0","26.0.0-nightly.20230531":"116.0.5791.0","26.0.0":"116.0.5845.82","26.1.0":"116.0.5845.97","26.2.0":"116.0.5845.179","26.2.1":"116.0.5845.188","26.2.2":"116.0.5845.190","26.2.3":"116.0.5845.190","26.2.4":"116.0.5845.190","26.3.0":"116.0.5845.228","27.0.0-alpha.1":"118.0.5949.0","27.0.0-alpha.2":"118.0.5949.0","27.0.0-alpha.3":"118.0.5949.0","27.0.0-alpha.4":"118.0.5949.0","27.0.0-alpha.5":"118.0.5949.0","27.0.0-alpha.6":"118.0.5949.0","27.0.0-beta.1":"118.0.5993.5","27.0.0-beta.2":"118.0.5993.5","27.0.0-beta.3":"118.0.5993.5","27.0.0-beta.4":"118.0.5993.11","27.0.0-beta.5":"118.0.5993.18","27.0.0-beta.6":"118.0.5993.18","27.0.0-beta.7":"118.0.5993.18","27.0.0-beta.8":"118.0.5993.18","27.0.0-beta.9":"118.0.5993.18","27.0.0-nightly.20230601":"116.0.5791.0","27.0.0-nightly.20230602":"116.0.5791.0","27.0.0-nightly.20230605":"116.0.5791.0","27.0.0-nightly.20230606":"116.0.5791.0","27.0.0-nightly.20230607":"116.0.5791.0","27.0.0-nightly.20230609":"116.0.5791.0","27.0.0-nightly.20230612":"116.0.5815.0","27.0.0-nightly.20230613":"116.0.5815.0","27.0.0-nightly.20230614":"116.0.5829.0","27.0.0-nightly.20230615":"116.0.5831.0","27.0.0-nightly.20230616":"116.0.5833.0","27.0.0-nightly.20230619":"116.0.5833.0","27.0.0-nightly.20230620":"116.0.5833.0","27.0.0-nightly.20230621":"116.0.5833.0","27.0.0-nightly.20230622":"116.0.5845.0","27.0.0-nightly.20230623":"116.0.5845.0","27.0.0-nightly.20230626":"116.0.5845.0","27.0.0-nightly.20230627":"116.0.5845.0","27.0.0-nightly.20230628":"116.0.5845.0","27.0.0-nightly.20230629":"116.0.5845.0","27.0.0-nightly.20230630":"116.0.5845.0","27.0.0-nightly.20230703":"117.0.5852.0","27.0.0-nightly.20230704":"117.0.5852.0","27.0.0-nightly.20230705":"117.0.5852.0","27.0.0-nightly.20230706":"117.0.5852.0","27.0.0-nightly.20230707":"117.0.5852.0","27.0.0-nightly.20230710":"117.0.5852.0","27.0.0-nightly.20230711":"117.0.5852.0","27.0.0-nightly.20230712":"117.0.5852.0","27.0.0-nightly.20230713":"117.0.5852.0","27.0.0-nightly.20230714":"117.0.5852.0","27.0.0-nightly.20230717":"117.0.5884.1","27.0.0-nightly.20230718":"117.0.5884.1","27.0.0-nightly.20230719":"117.0.5892.0","27.0.0-nightly.20230720":"117.0.5897.0","27.0.0-nightly.20230721":"117.0.5897.0","27.0.0-nightly.20230724":"117.0.5897.0","27.0.0-nightly.20230725":"117.0.5897.0","27.0.0-nightly.20230726":"117.0.5897.0","27.0.0-nightly.20230727":"117.0.5897.0","27.0.0-nightly.20230728":"117.0.5897.0","27.0.0-nightly.20230731":"117.0.5897.0","27.0.0-nightly.20230801":"117.0.5911.0","27.0.0-nightly.20230802":"117.0.5911.0","27.0.0-nightly.20230803":"117.0.5911.0","27.0.0-nightly.20230804":"117.0.5921.0","27.0.0-nightly.20230807":"117.0.5921.0","27.0.0-nightly.20230808":"117.0.5921.0","27.0.0-nightly.20230814":"117.0.5921.0","27.0.0-nightly.20230815":"117.0.5921.0","27.0.0-nightly.20230816":"118.0.5949.0","27.0.0":"118.0.5993.54","28.0.0-nightly.20230817":"118.0.5949.0","28.0.0-nightly.20230818":"118.0.5949.0","28.0.0-nightly.20230821":"118.0.5949.0","28.0.0-nightly.20230822":"118.0.5949.0","28.0.0-nightly.20230823":"118.0.5949.0","28.0.0-nightly.20230824":"118.0.5949.0","28.0.0-nightly.20230825":"118.0.5949.0","28.0.0-nightly.20230828":"118.0.5949.0","28.0.0-nightly.20230829":"118.0.5949.0","28.0.0-nightly.20230830":"118.0.5949.0","28.0.0-nightly.20230831":"118.0.5949.0","28.0.0-nightly.20230906":"118.0.5991.0","28.0.0-nightly.20230907":"118.0.5993.0","28.0.0-nightly.20230908":"118.0.5993.0","28.0.0-nightly.20230911":"118.0.5993.0","28.0.0-nightly.20230912":"118.0.5993.0","28.0.0-nightly.20230913":"118.0.5993.0","28.0.0-nightly.20230914":"118.0.5993.0","28.0.0-nightly.20230915":"118.0.5993.0","28.0.0-nightly.20230919":"119.0.6006.0","28.0.0-nightly.20230920":"119.0.6017.0","28.0.0-nightly.20230921":"119.0.6019.2","28.0.0-nightly.20230925":"119.0.6019.2","28.0.0-nightly.20230926":"119.0.6019.2","28.0.0-nightly.20230927":"119.0.6019.2","28.0.0-nightly.20230928":"119.0.6019.2","28.0.0-nightly.20230929":"119.0.6029.0","28.0.0-nightly.20231002":"119.0.6029.0","28.0.0-nightly.20231003":"119.0.6043.0","28.0.0-nightly.20231004":"119.0.6043.0","28.0.0-nightly.20231005":"119.0.6043.0","28.0.0-nightly.20231006":"119.0.6045.0","28.0.0-nightly.20231009":"119.0.6045.0","28.0.0-nightly.20231010":"119.0.6045.0"}
      \ No newline at end of file
      +{"0.20.0":"39.0.2171.65","0.20.1":"39.0.2171.65","0.20.2":"39.0.2171.65","0.20.3":"39.0.2171.65","0.20.4":"39.0.2171.65","0.20.5":"39.0.2171.65","0.20.6":"39.0.2171.65","0.20.7":"39.0.2171.65","0.20.8":"39.0.2171.65","0.21.0":"40.0.2214.91","0.21.1":"40.0.2214.91","0.21.2":"40.0.2214.91","0.21.3":"41.0.2272.76","0.22.1":"41.0.2272.76","0.22.2":"41.0.2272.76","0.22.3":"41.0.2272.76","0.23.0":"41.0.2272.76","0.24.0":"41.0.2272.76","0.25.0":"42.0.2311.107","0.25.1":"42.0.2311.107","0.25.2":"42.0.2311.107","0.25.3":"42.0.2311.107","0.26.0":"42.0.2311.107","0.26.1":"42.0.2311.107","0.27.0":"42.0.2311.107","0.27.1":"42.0.2311.107","0.27.2":"43.0.2357.65","0.27.3":"43.0.2357.65","0.28.0":"43.0.2357.65","0.28.1":"43.0.2357.65","0.28.2":"43.0.2357.65","0.28.3":"43.0.2357.65","0.29.1":"43.0.2357.65","0.29.2":"43.0.2357.65","0.30.4":"44.0.2403.125","0.31.0":"44.0.2403.125","0.31.2":"45.0.2454.85","0.32.2":"45.0.2454.85","0.32.3":"45.0.2454.85","0.33.0":"45.0.2454.85","0.33.1":"45.0.2454.85","0.33.2":"45.0.2454.85","0.33.3":"45.0.2454.85","0.33.4":"45.0.2454.85","0.33.6":"45.0.2454.85","0.33.7":"45.0.2454.85","0.33.8":"45.0.2454.85","0.33.9":"45.0.2454.85","0.34.0":"45.0.2454.85","0.34.1":"45.0.2454.85","0.34.2":"45.0.2454.85","0.34.3":"45.0.2454.85","0.34.4":"45.0.2454.85","0.35.1":"45.0.2454.85","0.35.2":"45.0.2454.85","0.35.3":"45.0.2454.85","0.35.4":"45.0.2454.85","0.35.5":"45.0.2454.85","0.36.0":"47.0.2526.73","0.36.2":"47.0.2526.73","0.36.3":"47.0.2526.73","0.36.4":"47.0.2526.73","0.36.5":"47.0.2526.110","0.36.6":"47.0.2526.110","0.36.7":"47.0.2526.110","0.36.8":"47.0.2526.110","0.36.9":"47.0.2526.110","0.36.10":"47.0.2526.110","0.36.11":"47.0.2526.110","0.36.12":"47.0.2526.110","0.37.0":"49.0.2623.75","0.37.1":"49.0.2623.75","0.37.3":"49.0.2623.75","0.37.4":"49.0.2623.75","0.37.5":"49.0.2623.75","0.37.6":"49.0.2623.75","0.37.7":"49.0.2623.75","0.37.8":"49.0.2623.75","1.0.0":"49.0.2623.75","1.0.1":"49.0.2623.75","1.0.2":"49.0.2623.75","1.1.0":"50.0.2661.102","1.1.1":"50.0.2661.102","1.1.2":"50.0.2661.102","1.1.3":"50.0.2661.102","1.2.0":"51.0.2704.63","1.2.1":"51.0.2704.63","1.2.2":"51.0.2704.84","1.2.3":"51.0.2704.84","1.2.4":"51.0.2704.103","1.2.5":"51.0.2704.103","1.2.6":"51.0.2704.106","1.2.7":"51.0.2704.106","1.2.8":"51.0.2704.106","1.3.0":"52.0.2743.82","1.3.1":"52.0.2743.82","1.3.2":"52.0.2743.82","1.3.3":"52.0.2743.82","1.3.4":"52.0.2743.82","1.3.5":"52.0.2743.82","1.3.6":"52.0.2743.82","1.3.7":"52.0.2743.82","1.3.9":"52.0.2743.82","1.3.10":"52.0.2743.82","1.3.13":"52.0.2743.82","1.3.14":"52.0.2743.82","1.3.15":"52.0.2743.82","1.4.0":"53.0.2785.113","1.4.1":"53.0.2785.113","1.4.2":"53.0.2785.113","1.4.3":"53.0.2785.113","1.4.4":"53.0.2785.113","1.4.5":"53.0.2785.113","1.4.6":"53.0.2785.143","1.4.7":"53.0.2785.143","1.4.8":"53.0.2785.143","1.4.10":"53.0.2785.143","1.4.11":"53.0.2785.143","1.4.12":"54.0.2840.51","1.4.13":"53.0.2785.143","1.4.14":"53.0.2785.143","1.4.15":"53.0.2785.143","1.4.16":"53.0.2785.143","1.5.0":"54.0.2840.101","1.5.1":"54.0.2840.101","1.6.0":"56.0.2924.87","1.6.1":"56.0.2924.87","1.6.2":"56.0.2924.87","1.6.3":"56.0.2924.87","1.6.4":"56.0.2924.87","1.6.5":"56.0.2924.87","1.6.6":"56.0.2924.87","1.6.7":"56.0.2924.87","1.6.8":"56.0.2924.87","1.6.9":"56.0.2924.87","1.6.10":"56.0.2924.87","1.6.11":"56.0.2924.87","1.6.12":"56.0.2924.87","1.6.13":"56.0.2924.87","1.6.14":"56.0.2924.87","1.6.15":"56.0.2924.87","1.6.16":"56.0.2924.87","1.6.17":"56.0.2924.87","1.6.18":"56.0.2924.87","1.7.0":"58.0.3029.110","1.7.1":"58.0.3029.110","1.7.2":"58.0.3029.110","1.7.3":"58.0.3029.110","1.7.4":"58.0.3029.110","1.7.5":"58.0.3029.110","1.7.6":"58.0.3029.110","1.7.7":"58.0.3029.110","1.7.8":"58.0.3029.110","1.7.9":"58.0.3029.110","1.7.10":"58.0.3029.110","1.7.11":"58.0.3029.110","1.7.12":"58.0.3029.110","1.7.13":"58.0.3029.110","1.7.14":"58.0.3029.110","1.7.15":"58.0.3029.110","1.7.16":"58.0.3029.110","1.8.0":"59.0.3071.115","1.8.1":"59.0.3071.115","1.8.2-beta.1":"59.0.3071.115","1.8.2-beta.2":"59.0.3071.115","1.8.2-beta.3":"59.0.3071.115","1.8.2-beta.4":"59.0.3071.115","1.8.2-beta.5":"59.0.3071.115","1.8.2":"59.0.3071.115","1.8.3":"59.0.3071.115","1.8.4":"59.0.3071.115","1.8.5":"59.0.3071.115","1.8.6":"59.0.3071.115","1.8.7":"59.0.3071.115","1.8.8":"59.0.3071.115","2.0.0-beta.1":"61.0.3163.100","2.0.0-beta.2":"61.0.3163.100","2.0.0-beta.3":"61.0.3163.100","2.0.0-beta.4":"61.0.3163.100","2.0.0-beta.5":"61.0.3163.100","2.0.0-beta.6":"61.0.3163.100","2.0.0-beta.7":"61.0.3163.100","2.0.0-beta.8":"61.0.3163.100","2.0.0":"61.0.3163.100","2.0.1":"61.0.3163.100","2.0.2":"61.0.3163.100","2.0.3":"61.0.3163.100","2.0.4":"61.0.3163.100","2.0.5":"61.0.3163.100","2.0.6":"61.0.3163.100","2.0.7":"61.0.3163.100","2.0.8-nightly.20180819":"61.0.3163.100","2.0.8-nightly.20180820":"61.0.3163.100","2.0.8":"61.0.3163.100","2.0.9":"61.0.3163.100","2.0.10":"61.0.3163.100","2.0.11":"61.0.3163.100","2.0.12":"61.0.3163.100","2.0.13":"61.0.3163.100","2.0.14":"61.0.3163.100","2.0.15":"61.0.3163.100","2.0.16":"61.0.3163.100","2.0.17":"61.0.3163.100","2.0.18":"61.0.3163.100","2.1.0-unsupported.20180809":"61.0.3163.100","3.0.0-beta.1":"66.0.3359.181","3.0.0-beta.2":"66.0.3359.181","3.0.0-beta.3":"66.0.3359.181","3.0.0-beta.4":"66.0.3359.181","3.0.0-beta.5":"66.0.3359.181","3.0.0-beta.6":"66.0.3359.181","3.0.0-beta.7":"66.0.3359.181","3.0.0-beta.8":"66.0.3359.181","3.0.0-beta.9":"66.0.3359.181","3.0.0-beta.10":"66.0.3359.181","3.0.0-beta.11":"66.0.3359.181","3.0.0-beta.12":"66.0.3359.181","3.0.0-beta.13":"66.0.3359.181","3.0.0-nightly.20180818":"66.0.3359.181","3.0.0-nightly.20180821":"66.0.3359.181","3.0.0-nightly.20180823":"66.0.3359.181","3.0.0-nightly.20180904":"66.0.3359.181","3.0.0":"66.0.3359.181","3.0.1":"66.0.3359.181","3.0.2":"66.0.3359.181","3.0.3":"66.0.3359.181","3.0.4":"66.0.3359.181","3.0.5":"66.0.3359.181","3.0.6":"66.0.3359.181","3.0.7":"66.0.3359.181","3.0.8":"66.0.3359.181","3.0.9":"66.0.3359.181","3.0.10":"66.0.3359.181","3.0.11":"66.0.3359.181","3.0.12":"66.0.3359.181","3.0.13":"66.0.3359.181","3.0.14":"66.0.3359.181","3.0.15":"66.0.3359.181","3.0.16":"66.0.3359.181","3.1.0-beta.1":"66.0.3359.181","3.1.0-beta.2":"66.0.3359.181","3.1.0-beta.3":"66.0.3359.181","3.1.0-beta.4":"66.0.3359.181","3.1.0-beta.5":"66.0.3359.181","3.1.0":"66.0.3359.181","3.1.1":"66.0.3359.181","3.1.2":"66.0.3359.181","3.1.3":"66.0.3359.181","3.1.4":"66.0.3359.181","3.1.5":"66.0.3359.181","3.1.6":"66.0.3359.181","3.1.7":"66.0.3359.181","3.1.8":"66.0.3359.181","3.1.9":"66.0.3359.181","3.1.10":"66.0.3359.181","3.1.11":"66.0.3359.181","3.1.12":"66.0.3359.181","3.1.13":"66.0.3359.181","4.0.0-beta.1":"69.0.3497.106","4.0.0-beta.2":"69.0.3497.106","4.0.0-beta.3":"69.0.3497.106","4.0.0-beta.4":"69.0.3497.106","4.0.0-beta.5":"69.0.3497.106","4.0.0-beta.6":"69.0.3497.106","4.0.0-beta.7":"69.0.3497.106","4.0.0-beta.8":"69.0.3497.106","4.0.0-beta.9":"69.0.3497.106","4.0.0-beta.10":"69.0.3497.106","4.0.0-beta.11":"69.0.3497.106","4.0.0-nightly.20180817":"66.0.3359.181","4.0.0-nightly.20180819":"66.0.3359.181","4.0.0-nightly.20180821":"66.0.3359.181","4.0.0-nightly.20180929":"67.0.3396.99","4.0.0-nightly.20181006":"68.0.3440.128","4.0.0-nightly.20181010":"69.0.3497.106","4.0.0":"69.0.3497.106","4.0.1":"69.0.3497.106","4.0.2":"69.0.3497.106","4.0.3":"69.0.3497.106","4.0.4":"69.0.3497.106","4.0.5":"69.0.3497.106","4.0.6":"69.0.3497.106","4.0.7":"69.0.3497.128","4.0.8":"69.0.3497.128","4.1.0":"69.0.3497.128","4.1.1":"69.0.3497.128","4.1.2":"69.0.3497.128","4.1.3":"69.0.3497.128","4.1.4":"69.0.3497.128","4.1.5":"69.0.3497.128","4.2.0":"69.0.3497.128","4.2.1":"69.0.3497.128","4.2.2":"69.0.3497.128","4.2.3":"69.0.3497.128","4.2.4":"69.0.3497.128","4.2.5":"69.0.3497.128","4.2.6":"69.0.3497.128","4.2.7":"69.0.3497.128","4.2.8":"69.0.3497.128","4.2.9":"69.0.3497.128","4.2.10":"69.0.3497.128","4.2.11":"69.0.3497.128","4.2.12":"69.0.3497.128","5.0.0-beta.1":"72.0.3626.52","5.0.0-beta.2":"72.0.3626.52","5.0.0-beta.3":"73.0.3683.27","5.0.0-beta.4":"73.0.3683.54","5.0.0-beta.5":"73.0.3683.61","5.0.0-beta.6":"73.0.3683.84","5.0.0-beta.7":"73.0.3683.94","5.0.0-beta.8":"73.0.3683.104","5.0.0-beta.9":"73.0.3683.117","5.0.0-nightly.20190107":"70.0.3538.110","5.0.0-nightly.20190121":"71.0.3578.98","5.0.0-nightly.20190122":"71.0.3578.98","5.0.0":"73.0.3683.119","5.0.1":"73.0.3683.121","5.0.2":"73.0.3683.121","5.0.3":"73.0.3683.121","5.0.4":"73.0.3683.121","5.0.5":"73.0.3683.121","5.0.6":"73.0.3683.121","5.0.7":"73.0.3683.121","5.0.8":"73.0.3683.121","5.0.9":"73.0.3683.121","5.0.10":"73.0.3683.121","5.0.11":"73.0.3683.121","5.0.12":"73.0.3683.121","5.0.13":"73.0.3683.121","6.0.0-beta.1":"76.0.3774.1","6.0.0-beta.2":"76.0.3783.1","6.0.0-beta.3":"76.0.3783.1","6.0.0-beta.4":"76.0.3783.1","6.0.0-beta.5":"76.0.3805.4","6.0.0-beta.6":"76.0.3809.3","6.0.0-beta.7":"76.0.3809.22","6.0.0-beta.8":"76.0.3809.26","6.0.0-beta.9":"76.0.3809.26","6.0.0-beta.10":"76.0.3809.37","6.0.0-beta.11":"76.0.3809.42","6.0.0-beta.12":"76.0.3809.54","6.0.0-beta.13":"76.0.3809.60","6.0.0-beta.14":"76.0.3809.68","6.0.0-beta.15":"76.0.3809.74","6.0.0-nightly.20190123":"72.0.3626.52","6.0.0-nightly.20190212":"72.0.3626.107","6.0.0-nightly.20190213":"72.0.3626.110","6.0.0-nightly.20190311":"74.0.3724.8","6.0.0":"76.0.3809.88","6.0.1":"76.0.3809.102","6.0.2":"76.0.3809.110","6.0.3":"76.0.3809.126","6.0.4":"76.0.3809.131","6.0.5":"76.0.3809.136","6.0.6":"76.0.3809.138","6.0.7":"76.0.3809.139","6.0.8":"76.0.3809.146","6.0.9":"76.0.3809.146","6.0.10":"76.0.3809.146","6.0.11":"76.0.3809.146","6.0.12":"76.0.3809.146","6.1.0":"76.0.3809.146","6.1.1":"76.0.3809.146","6.1.2":"76.0.3809.146","6.1.3":"76.0.3809.146","6.1.4":"76.0.3809.146","6.1.5":"76.0.3809.146","6.1.6":"76.0.3809.146","6.1.7":"76.0.3809.146","6.1.8":"76.0.3809.146","6.1.9":"76.0.3809.146","6.1.10":"76.0.3809.146","6.1.11":"76.0.3809.146","6.1.12":"76.0.3809.146","7.0.0-beta.1":"78.0.3866.0","7.0.0-beta.2":"78.0.3866.0","7.0.0-beta.3":"78.0.3866.0","7.0.0-beta.4":"78.0.3896.6","7.0.0-beta.5":"78.0.3905.1","7.0.0-beta.6":"78.0.3905.1","7.0.0-beta.7":"78.0.3905.1","7.0.0-nightly.20190521":"76.0.3784.0","7.0.0-nightly.20190529":"76.0.3806.0","7.0.0-nightly.20190530":"76.0.3806.0","7.0.0-nightly.20190531":"76.0.3806.0","7.0.0-nightly.20190602":"76.0.3806.0","7.0.0-nightly.20190603":"76.0.3806.0","7.0.0-nightly.20190604":"77.0.3814.0","7.0.0-nightly.20190605":"77.0.3815.0","7.0.0-nightly.20190606":"77.0.3815.0","7.0.0-nightly.20190607":"77.0.3815.0","7.0.0-nightly.20190608":"77.0.3815.0","7.0.0-nightly.20190609":"77.0.3815.0","7.0.0-nightly.20190611":"77.0.3815.0","7.0.0-nightly.20190612":"77.0.3815.0","7.0.0-nightly.20190613":"77.0.3815.0","7.0.0-nightly.20190615":"77.0.3815.0","7.0.0-nightly.20190616":"77.0.3815.0","7.0.0-nightly.20190618":"77.0.3815.0","7.0.0-nightly.20190619":"77.0.3815.0","7.0.0-nightly.20190622":"77.0.3815.0","7.0.0-nightly.20190623":"77.0.3815.0","7.0.0-nightly.20190624":"77.0.3815.0","7.0.0-nightly.20190627":"77.0.3815.0","7.0.0-nightly.20190629":"77.0.3815.0","7.0.0-nightly.20190630":"77.0.3815.0","7.0.0-nightly.20190701":"77.0.3815.0","7.0.0-nightly.20190702":"77.0.3815.0","7.0.0-nightly.20190704":"77.0.3843.0","7.0.0-nightly.20190705":"77.0.3843.0","7.0.0-nightly.20190719":"77.0.3848.0","7.0.0-nightly.20190720":"77.0.3848.0","7.0.0-nightly.20190721":"77.0.3848.0","7.0.0-nightly.20190726":"77.0.3864.0","7.0.0-nightly.20190727":"78.0.3866.0","7.0.0-nightly.20190728":"78.0.3866.0","7.0.0-nightly.20190729":"78.0.3866.0","7.0.0-nightly.20190730":"78.0.3866.0","7.0.0-nightly.20190731":"78.0.3866.0","7.0.0":"78.0.3905.1","7.0.1":"78.0.3904.92","7.1.0":"78.0.3904.94","7.1.1":"78.0.3904.99","7.1.2":"78.0.3904.113","7.1.3":"78.0.3904.126","7.1.4":"78.0.3904.130","7.1.5":"78.0.3904.130","7.1.6":"78.0.3904.130","7.1.7":"78.0.3904.130","7.1.8":"78.0.3904.130","7.1.9":"78.0.3904.130","7.1.10":"78.0.3904.130","7.1.11":"78.0.3904.130","7.1.12":"78.0.3904.130","7.1.13":"78.0.3904.130","7.1.14":"78.0.3904.130","7.2.0":"78.0.3904.130","7.2.1":"78.0.3904.130","7.2.2":"78.0.3904.130","7.2.3":"78.0.3904.130","7.2.4":"78.0.3904.130","7.3.0":"78.0.3904.130","7.3.1":"78.0.3904.130","7.3.2":"78.0.3904.130","7.3.3":"78.0.3904.130","8.0.0-beta.1":"79.0.3931.0","8.0.0-beta.2":"79.0.3931.0","8.0.0-beta.3":"80.0.3955.0","8.0.0-beta.4":"80.0.3955.0","8.0.0-beta.5":"80.0.3987.14","8.0.0-beta.6":"80.0.3987.51","8.0.0-beta.7":"80.0.3987.59","8.0.0-beta.8":"80.0.3987.75","8.0.0-beta.9":"80.0.3987.75","8.0.0-nightly.20190801":"78.0.3866.0","8.0.0-nightly.20190802":"78.0.3866.0","8.0.0-nightly.20190803":"78.0.3871.0","8.0.0-nightly.20190806":"78.0.3871.0","8.0.0-nightly.20190807":"78.0.3871.0","8.0.0-nightly.20190808":"78.0.3871.0","8.0.0-nightly.20190809":"78.0.3871.0","8.0.0-nightly.20190810":"78.0.3871.0","8.0.0-nightly.20190811":"78.0.3871.0","8.0.0-nightly.20190812":"78.0.3871.0","8.0.0-nightly.20190813":"78.0.3871.0","8.0.0-nightly.20190814":"78.0.3871.0","8.0.0-nightly.20190815":"78.0.3871.0","8.0.0-nightly.20190816":"78.0.3881.0","8.0.0-nightly.20190817":"78.0.3881.0","8.0.0-nightly.20190818":"78.0.3881.0","8.0.0-nightly.20190819":"78.0.3881.0","8.0.0-nightly.20190820":"78.0.3881.0","8.0.0-nightly.20190824":"78.0.3892.0","8.0.0-nightly.20190825":"78.0.3892.0","8.0.0-nightly.20190827":"78.0.3892.0","8.0.0-nightly.20190828":"78.0.3892.0","8.0.0-nightly.20190830":"78.0.3892.0","8.0.0-nightly.20190901":"78.0.3892.0","8.0.0-nightly.20190902":"78.0.3892.0","8.0.0-nightly.20190907":"78.0.3892.0","8.0.0-nightly.20190909":"78.0.3892.0","8.0.0-nightly.20190910":"78.0.3892.0","8.0.0-nightly.20190911":"78.0.3892.0","8.0.0-nightly.20190912":"78.0.3892.0","8.0.0-nightly.20190913":"78.0.3892.0","8.0.0-nightly.20190914":"78.0.3892.0","8.0.0-nightly.20190915":"78.0.3892.0","8.0.0-nightly.20190917":"78.0.3892.0","8.0.0-nightly.20190919":"79.0.3915.0","8.0.0-nightly.20190920":"79.0.3915.0","8.0.0-nightly.20190922":"79.0.3919.0","8.0.0-nightly.20190923":"79.0.3919.0","8.0.0-nightly.20190924":"79.0.3919.0","8.0.0-nightly.20190926":"79.0.3919.0","8.0.0-nightly.20190928":"79.0.3919.0","8.0.0-nightly.20190929":"79.0.3919.0","8.0.0-nightly.20190930":"79.0.3919.0","8.0.0-nightly.20191001":"79.0.3919.0","8.0.0-nightly.20191004":"79.0.3919.0","8.0.0-nightly.20191005":"79.0.3919.0","8.0.0-nightly.20191006":"79.0.3919.0","8.0.0-nightly.20191009":"79.0.3919.0","8.0.0-nightly.20191011":"79.0.3919.0","8.0.0-nightly.20191012":"79.0.3919.0","8.0.0-nightly.20191017":"79.0.3919.0","8.0.0-nightly.20191019":"79.0.3931.0","8.0.0-nightly.20191020":"79.0.3931.0","8.0.0-nightly.20191021":"79.0.3931.0","8.0.0-nightly.20191023":"79.0.3931.0","8.0.0-nightly.20191101":"80.0.3952.0","8.0.0-nightly.20191103":"80.0.3952.0","8.0.0-nightly.20191105":"80.0.3952.0","8.0.0":"80.0.3987.86","8.0.1":"80.0.3987.86","8.0.2":"80.0.3987.86","8.0.3":"80.0.3987.134","8.1.0":"80.0.3987.137","8.1.1":"80.0.3987.141","8.2.0":"80.0.3987.158","8.2.1":"80.0.3987.163","8.2.2":"80.0.3987.163","8.2.3":"80.0.3987.163","8.2.4":"80.0.3987.165","8.2.5":"80.0.3987.165","8.3.0":"80.0.3987.165","8.3.1":"80.0.3987.165","8.3.2":"80.0.3987.165","8.3.3":"80.0.3987.165","8.3.4":"80.0.3987.165","8.4.0":"80.0.3987.165","8.4.1":"80.0.3987.165","8.5.0":"80.0.3987.165","8.5.1":"80.0.3987.165","8.5.2":"80.0.3987.165","8.5.3":"80.0.3987.163","8.5.4":"80.0.3987.163","8.5.5":"80.0.3987.163","9.0.0-beta.1":"82.0.4048.0","9.0.0-beta.2":"82.0.4048.0","9.0.0-beta.3":"82.0.4048.0","9.0.0-beta.4":"82.0.4048.0","9.0.0-beta.5":"82.0.4048.0","9.0.0-beta.6":"82.0.4058.2","9.0.0-beta.7":"82.0.4058.2","9.0.0-beta.9":"82.0.4058.2","9.0.0-beta.10":"82.0.4085.10","9.0.0-beta.11":"82.0.4085.14","9.0.0-beta.12":"82.0.4085.14","9.0.0-beta.13":"82.0.4085.14","9.0.0-beta.14":"82.0.4085.27","9.0.0-beta.15":"83.0.4102.3","9.0.0-beta.16":"83.0.4102.3","9.0.0-beta.17":"83.0.4103.14","9.0.0-beta.18":"83.0.4103.16","9.0.0-beta.19":"83.0.4103.24","9.0.0-beta.20":"83.0.4103.26","9.0.0-beta.21":"83.0.4103.26","9.0.0-beta.22":"83.0.4103.34","9.0.0-beta.23":"83.0.4103.44","9.0.0-beta.24":"83.0.4103.45","9.0.0-nightly.20191121":"80.0.3954.0","9.0.0-nightly.20191122":"80.0.3954.0","9.0.0-nightly.20191123":"80.0.3954.0","9.0.0-nightly.20191124":"80.0.3954.0","9.0.0-nightly.20191126":"80.0.3954.0","9.0.0-nightly.20191128":"80.0.3954.0","9.0.0-nightly.20191129":"80.0.3954.0","9.0.0-nightly.20191130":"80.0.3954.0","9.0.0-nightly.20191201":"80.0.3954.0","9.0.0-nightly.20191202":"80.0.3954.0","9.0.0-nightly.20191203":"80.0.3954.0","9.0.0-nightly.20191204":"80.0.3954.0","9.0.0-nightly.20191205":"80.0.3954.0","9.0.0-nightly.20191210":"80.0.3954.0","9.0.0-nightly.20191220":"81.0.3994.0","9.0.0-nightly.20191221":"81.0.3994.0","9.0.0-nightly.20191222":"81.0.3994.0","9.0.0-nightly.20191223":"81.0.3994.0","9.0.0-nightly.20191224":"81.0.3994.0","9.0.0-nightly.20191225":"81.0.3994.0","9.0.0-nightly.20191226":"81.0.3994.0","9.0.0-nightly.20191228":"81.0.3994.0","9.0.0-nightly.20191229":"81.0.3994.0","9.0.0-nightly.20191230":"81.0.3994.0","9.0.0-nightly.20191231":"81.0.3994.0","9.0.0-nightly.20200101":"81.0.3994.0","9.0.0-nightly.20200103":"81.0.3994.0","9.0.0-nightly.20200104":"81.0.3994.0","9.0.0-nightly.20200105":"81.0.3994.0","9.0.0-nightly.20200106":"81.0.3994.0","9.0.0-nightly.20200108":"81.0.3994.0","9.0.0-nightly.20200109":"81.0.3994.0","9.0.0-nightly.20200110":"81.0.3994.0","9.0.0-nightly.20200111":"81.0.3994.0","9.0.0-nightly.20200113":"81.0.3994.0","9.0.0-nightly.20200115":"81.0.3994.0","9.0.0-nightly.20200116":"81.0.3994.0","9.0.0-nightly.20200117":"81.0.3994.0","9.0.0-nightly.20200119":"81.0.4030.0","9.0.0-nightly.20200121":"81.0.4030.0","9.0.0":"83.0.4103.64","9.0.1":"83.0.4103.94","9.0.2":"83.0.4103.94","9.0.3":"83.0.4103.100","9.0.4":"83.0.4103.104","9.0.5":"83.0.4103.119","9.1.0":"83.0.4103.122","9.1.1":"83.0.4103.122","9.1.2":"83.0.4103.122","9.2.0":"83.0.4103.122","9.2.1":"83.0.4103.122","9.3.0":"83.0.4103.122","9.3.1":"83.0.4103.122","9.3.2":"83.0.4103.122","9.3.3":"83.0.4103.122","9.3.4":"83.0.4103.122","9.3.5":"83.0.4103.122","9.4.0":"83.0.4103.122","9.4.1":"83.0.4103.122","9.4.2":"83.0.4103.122","9.4.3":"83.0.4103.122","9.4.4":"83.0.4103.122","10.0.0-beta.1":"84.0.4129.0","10.0.0-beta.2":"84.0.4129.0","10.0.0-beta.3":"85.0.4161.2","10.0.0-beta.4":"85.0.4161.2","10.0.0-beta.8":"85.0.4181.1","10.0.0-beta.9":"85.0.4181.1","10.0.0-beta.10":"85.0.4183.19","10.0.0-beta.11":"85.0.4183.20","10.0.0-beta.12":"85.0.4183.26","10.0.0-beta.13":"85.0.4183.39","10.0.0-beta.14":"85.0.4183.39","10.0.0-beta.15":"85.0.4183.39","10.0.0-beta.17":"85.0.4183.39","10.0.0-beta.19":"85.0.4183.39","10.0.0-beta.20":"85.0.4183.39","10.0.0-beta.21":"85.0.4183.39","10.0.0-beta.23":"85.0.4183.70","10.0.0-beta.24":"85.0.4183.78","10.0.0-beta.25":"85.0.4183.80","10.0.0-nightly.20200209":"82.0.4050.0","10.0.0-nightly.20200210":"82.0.4050.0","10.0.0-nightly.20200211":"82.0.4050.0","10.0.0-nightly.20200216":"82.0.4050.0","10.0.0-nightly.20200217":"82.0.4050.0","10.0.0-nightly.20200218":"82.0.4050.0","10.0.0-nightly.20200221":"82.0.4050.0","10.0.0-nightly.20200222":"82.0.4050.0","10.0.0-nightly.20200223":"82.0.4050.0","10.0.0-nightly.20200226":"82.0.4050.0","10.0.0-nightly.20200303":"82.0.4050.0","10.0.0-nightly.20200304":"82.0.4076.0","10.0.0-nightly.20200305":"82.0.4076.0","10.0.0-nightly.20200306":"82.0.4076.0","10.0.0-nightly.20200309":"82.0.4076.0","10.0.0-nightly.20200310":"82.0.4076.0","10.0.0-nightly.20200311":"82.0.4083.0","10.0.0-nightly.20200316":"83.0.4086.0","10.0.0-nightly.20200317":"83.0.4087.0","10.0.0-nightly.20200318":"83.0.4087.0","10.0.0-nightly.20200320":"83.0.4087.0","10.0.0-nightly.20200323":"83.0.4087.0","10.0.0-nightly.20200324":"83.0.4087.0","10.0.0-nightly.20200325":"83.0.4087.0","10.0.0-nightly.20200326":"83.0.4087.0","10.0.0-nightly.20200327":"83.0.4087.0","10.0.0-nightly.20200330":"83.0.4087.0","10.0.0-nightly.20200331":"83.0.4087.0","10.0.0-nightly.20200401":"83.0.4087.0","10.0.0-nightly.20200402":"83.0.4087.0","10.0.0-nightly.20200403":"83.0.4087.0","10.0.0-nightly.20200406":"83.0.4087.0","10.0.0-nightly.20200408":"83.0.4095.0","10.0.0-nightly.20200410":"83.0.4095.0","10.0.0-nightly.20200413":"83.0.4095.0","10.0.0-nightly.20200414":"84.0.4114.0","10.0.0-nightly.20200415":"84.0.4115.0","10.0.0-nightly.20200416":"84.0.4115.0","10.0.0-nightly.20200417":"84.0.4115.0","10.0.0-nightly.20200422":"84.0.4121.0","10.0.0-nightly.20200423":"84.0.4121.0","10.0.0-nightly.20200427":"84.0.4125.0","10.0.0-nightly.20200428":"84.0.4125.0","10.0.0-nightly.20200429":"84.0.4125.0","10.0.0-nightly.20200430":"84.0.4125.0","10.0.0-nightly.20200501":"84.0.4129.0","10.0.0-nightly.20200504":"84.0.4129.0","10.0.0-nightly.20200505":"84.0.4129.0","10.0.0-nightly.20200506":"84.0.4129.0","10.0.0-nightly.20200507":"84.0.4129.0","10.0.0-nightly.20200508":"84.0.4129.0","10.0.0-nightly.20200511":"84.0.4129.0","10.0.0-nightly.20200512":"84.0.4129.0","10.0.0-nightly.20200513":"84.0.4129.0","10.0.0-nightly.20200514":"84.0.4129.0","10.0.0-nightly.20200515":"84.0.4129.0","10.0.0-nightly.20200518":"84.0.4129.0","10.0.0-nightly.20200519":"84.0.4129.0","10.0.0-nightly.20200520":"84.0.4129.0","10.0.0-nightly.20200521":"84.0.4129.0","10.0.0":"85.0.4183.84","10.0.1":"85.0.4183.86","10.1.0":"85.0.4183.87","10.1.1":"85.0.4183.93","10.1.2":"85.0.4183.98","10.1.3":"85.0.4183.121","10.1.4":"85.0.4183.121","10.1.5":"85.0.4183.121","10.1.6":"85.0.4183.121","10.1.7":"85.0.4183.121","10.2.0":"85.0.4183.121","10.3.0":"85.0.4183.121","10.3.1":"85.0.4183.121","10.3.2":"85.0.4183.121","10.4.0":"85.0.4183.121","10.4.1":"85.0.4183.121","10.4.2":"85.0.4183.121","10.4.3":"85.0.4183.121","10.4.4":"85.0.4183.121","10.4.5":"85.0.4183.121","10.4.6":"85.0.4183.121","10.4.7":"85.0.4183.121","11.0.0-beta.1":"86.0.4234.0","11.0.0-beta.3":"86.0.4234.0","11.0.0-beta.4":"86.0.4234.0","11.0.0-beta.5":"86.0.4234.0","11.0.0-beta.6":"86.0.4234.0","11.0.0-beta.7":"86.0.4234.0","11.0.0-beta.8":"87.0.4251.1","11.0.0-beta.9":"87.0.4251.1","11.0.0-beta.11":"87.0.4251.1","11.0.0-beta.12":"87.0.4280.11","11.0.0-beta.13":"87.0.4280.11","11.0.0-beta.16":"87.0.4280.27","11.0.0-beta.17":"87.0.4280.27","11.0.0-beta.18":"87.0.4280.27","11.0.0-beta.19":"87.0.4280.27","11.0.0-beta.20":"87.0.4280.40","11.0.0-beta.22":"87.0.4280.47","11.0.0-beta.23":"87.0.4280.47","11.0.0-nightly.20200525":"84.0.4129.0","11.0.0-nightly.20200526":"84.0.4129.0","11.0.0-nightly.20200529":"85.0.4156.0","11.0.0-nightly.20200602":"85.0.4162.0","11.0.0-nightly.20200603":"85.0.4162.0","11.0.0-nightly.20200604":"85.0.4162.0","11.0.0-nightly.20200609":"85.0.4162.0","11.0.0-nightly.20200610":"85.0.4162.0","11.0.0-nightly.20200611":"85.0.4162.0","11.0.0-nightly.20200615":"85.0.4162.0","11.0.0-nightly.20200616":"85.0.4162.0","11.0.0-nightly.20200617":"85.0.4162.0","11.0.0-nightly.20200618":"85.0.4162.0","11.0.0-nightly.20200619":"85.0.4162.0","11.0.0-nightly.20200701":"85.0.4179.0","11.0.0-nightly.20200702":"85.0.4179.0","11.0.0-nightly.20200703":"85.0.4179.0","11.0.0-nightly.20200706":"85.0.4179.0","11.0.0-nightly.20200707":"85.0.4179.0","11.0.0-nightly.20200708":"85.0.4179.0","11.0.0-nightly.20200709":"85.0.4179.0","11.0.0-nightly.20200716":"86.0.4203.0","11.0.0-nightly.20200717":"86.0.4203.0","11.0.0-nightly.20200720":"86.0.4203.0","11.0.0-nightly.20200721":"86.0.4203.0","11.0.0-nightly.20200723":"86.0.4209.0","11.0.0-nightly.20200724":"86.0.4209.0","11.0.0-nightly.20200729":"86.0.4209.0","11.0.0-nightly.20200730":"86.0.4209.0","11.0.0-nightly.20200731":"86.0.4209.0","11.0.0-nightly.20200803":"86.0.4209.0","11.0.0-nightly.20200804":"86.0.4209.0","11.0.0-nightly.20200805":"86.0.4209.0","11.0.0-nightly.20200811":"86.0.4209.0","11.0.0-nightly.20200812":"86.0.4209.0","11.0.0-nightly.20200822":"86.0.4234.0","11.0.0-nightly.20200824":"86.0.4234.0","11.0.0-nightly.20200825":"86.0.4234.0","11.0.0-nightly.20200826":"86.0.4234.0","11.0.0":"87.0.4280.60","11.0.1":"87.0.4280.60","11.0.2":"87.0.4280.67","11.0.3":"87.0.4280.67","11.0.4":"87.0.4280.67","11.0.5":"87.0.4280.88","11.1.0":"87.0.4280.88","11.1.1":"87.0.4280.88","11.2.0":"87.0.4280.141","11.2.1":"87.0.4280.141","11.2.2":"87.0.4280.141","11.2.3":"87.0.4280.141","11.3.0":"87.0.4280.141","11.4.0":"87.0.4280.141","11.4.1":"87.0.4280.141","11.4.2":"87.0.4280.141","11.4.3":"87.0.4280.141","11.4.4":"87.0.4280.141","11.4.5":"87.0.4280.141","11.4.6":"87.0.4280.141","11.4.7":"87.0.4280.141","11.4.8":"87.0.4280.141","11.4.9":"87.0.4280.141","11.4.10":"87.0.4280.141","11.4.11":"87.0.4280.141","11.4.12":"87.0.4280.141","11.5.0":"87.0.4280.141","12.0.0-beta.1":"89.0.4328.0","12.0.0-beta.3":"89.0.4328.0","12.0.0-beta.4":"89.0.4328.0","12.0.0-beta.5":"89.0.4328.0","12.0.0-beta.6":"89.0.4328.0","12.0.0-beta.7":"89.0.4328.0","12.0.0-beta.8":"89.0.4328.0","12.0.0-beta.9":"89.0.4328.0","12.0.0-beta.10":"89.0.4328.0","12.0.0-beta.11":"89.0.4328.0","12.0.0-beta.12":"89.0.4328.0","12.0.0-beta.14":"89.0.4328.0","12.0.0-beta.16":"89.0.4348.1","12.0.0-beta.18":"89.0.4348.1","12.0.0-beta.19":"89.0.4348.1","12.0.0-beta.20":"89.0.4348.1","12.0.0-beta.21":"89.0.4388.2","12.0.0-beta.22":"89.0.4388.2","12.0.0-beta.23":"89.0.4388.2","12.0.0-beta.24":"89.0.4388.2","12.0.0-beta.25":"89.0.4388.2","12.0.0-beta.26":"89.0.4388.2","12.0.0-beta.27":"89.0.4389.23","12.0.0-beta.28":"89.0.4389.23","12.0.0-beta.29":"89.0.4389.23","12.0.0-beta.30":"89.0.4389.58","12.0.0-beta.31":"89.0.4389.58","12.0.0-nightly.20200827":"86.0.4234.0","12.0.0-nightly.20200831":"86.0.4234.0","12.0.0-nightly.20200902":"86.0.4234.0","12.0.0-nightly.20200903":"86.0.4234.0","12.0.0-nightly.20200907":"86.0.4234.0","12.0.0-nightly.20200910":"86.0.4234.0","12.0.0-nightly.20200911":"86.0.4234.0","12.0.0-nightly.20200914":"86.0.4234.0","12.0.0-nightly.20201002":"87.0.4268.0","12.0.0-nightly.20201007":"87.0.4268.0","12.0.0-nightly.20201009":"87.0.4268.0","12.0.0-nightly.20201012":"87.0.4268.0","12.0.0-nightly.20201013":"87.0.4268.0","12.0.0-nightly.20201014":"87.0.4268.0","12.0.0-nightly.20201015":"87.0.4268.0","12.0.0-nightly.20201023":"88.0.4292.0","12.0.0-nightly.20201026":"88.0.4292.0","12.0.0-nightly.20201030":"88.0.4306.0","12.0.0-nightly.20201102":"88.0.4306.0","12.0.0-nightly.20201103":"88.0.4306.0","12.0.0-nightly.20201104":"88.0.4306.0","12.0.0-nightly.20201105":"88.0.4306.0","12.0.0-nightly.20201106":"88.0.4306.0","12.0.0-nightly.20201111":"88.0.4306.0","12.0.0-nightly.20201112":"88.0.4306.0","12.0.0-nightly.20201116":"88.0.4324.0","12.0.0":"89.0.4389.69","12.0.1":"89.0.4389.82","12.0.2":"89.0.4389.90","12.0.3":"89.0.4389.114","12.0.4":"89.0.4389.114","12.0.5":"89.0.4389.128","12.0.6":"89.0.4389.128","12.0.7":"89.0.4389.128","12.0.8":"89.0.4389.128","12.0.9":"89.0.4389.128","12.0.10":"89.0.4389.128","12.0.11":"89.0.4389.128","12.0.12":"89.0.4389.128","12.0.13":"89.0.4389.128","12.0.14":"89.0.4389.128","12.0.15":"89.0.4389.128","12.0.16":"89.0.4389.128","12.0.17":"89.0.4389.128","12.0.18":"89.0.4389.128","12.1.0":"89.0.4389.128","12.1.1":"89.0.4389.128","12.1.2":"89.0.4389.128","12.2.0":"89.0.4389.128","12.2.1":"89.0.4389.128","12.2.2":"89.0.4389.128","12.2.3":"89.0.4389.128","13.0.0-beta.2":"90.0.4402.0","13.0.0-beta.3":"90.0.4402.0","13.0.0-beta.4":"90.0.4415.0","13.0.0-beta.5":"90.0.4415.0","13.0.0-beta.6":"90.0.4415.0","13.0.0-beta.7":"90.0.4415.0","13.0.0-beta.8":"90.0.4415.0","13.0.0-beta.9":"90.0.4415.0","13.0.0-beta.10":"90.0.4415.0","13.0.0-beta.11":"90.0.4415.0","13.0.0-beta.12":"90.0.4415.0","13.0.0-beta.13":"90.0.4415.0","13.0.0-beta.14":"91.0.4448.0","13.0.0-beta.16":"91.0.4448.0","13.0.0-beta.17":"91.0.4448.0","13.0.0-beta.18":"91.0.4448.0","13.0.0-beta.20":"91.0.4448.0","13.0.0-beta.21":"91.0.4472.33","13.0.0-beta.22":"91.0.4472.33","13.0.0-beta.23":"91.0.4472.33","13.0.0-beta.24":"91.0.4472.38","13.0.0-beta.25":"91.0.4472.38","13.0.0-beta.26":"91.0.4472.38","13.0.0-beta.27":"91.0.4472.38","13.0.0-beta.28":"91.0.4472.38","13.0.0-nightly.20201119":"89.0.4328.0","13.0.0-nightly.20201123":"89.0.4328.0","13.0.0-nightly.20201124":"89.0.4328.0","13.0.0-nightly.20201126":"89.0.4328.0","13.0.0-nightly.20201127":"89.0.4328.0","13.0.0-nightly.20201130":"89.0.4328.0","13.0.0-nightly.20201201":"89.0.4328.0","13.0.0-nightly.20201202":"89.0.4328.0","13.0.0-nightly.20201203":"89.0.4328.0","13.0.0-nightly.20201204":"89.0.4328.0","13.0.0-nightly.20201207":"89.0.4328.0","13.0.0-nightly.20201208":"89.0.4328.0","13.0.0-nightly.20201209":"89.0.4328.0","13.0.0-nightly.20201210":"89.0.4328.0","13.0.0-nightly.20201211":"89.0.4328.0","13.0.0-nightly.20201214":"89.0.4328.0","13.0.0-nightly.20201215":"89.0.4349.0","13.0.0-nightly.20201216":"89.0.4349.0","13.0.0-nightly.20201221":"89.0.4349.0","13.0.0-nightly.20201222":"89.0.4349.0","13.0.0-nightly.20201223":"89.0.4359.0","13.0.0-nightly.20210104":"89.0.4359.0","13.0.0-nightly.20210108":"89.0.4359.0","13.0.0-nightly.20210111":"89.0.4359.0","13.0.0-nightly.20210113":"89.0.4386.0","13.0.0-nightly.20210114":"89.0.4386.0","13.0.0-nightly.20210118":"89.0.4386.0","13.0.0-nightly.20210122":"89.0.4386.0","13.0.0-nightly.20210125":"89.0.4386.0","13.0.0-nightly.20210127":"89.0.4389.0","13.0.0-nightly.20210128":"89.0.4389.0","13.0.0-nightly.20210129":"89.0.4389.0","13.0.0-nightly.20210201":"89.0.4389.0","13.0.0-nightly.20210202":"89.0.4389.0","13.0.0-nightly.20210203":"89.0.4389.0","13.0.0-nightly.20210205":"89.0.4389.0","13.0.0-nightly.20210208":"89.0.4389.0","13.0.0-nightly.20210209":"89.0.4389.0","13.0.0-nightly.20210210":"90.0.4402.0","13.0.0-nightly.20210211":"90.0.4402.0","13.0.0-nightly.20210212":"90.0.4402.0","13.0.0-nightly.20210216":"90.0.4402.0","13.0.0-nightly.20210217":"90.0.4402.0","13.0.0-nightly.20210218":"90.0.4402.0","13.0.0-nightly.20210219":"90.0.4402.0","13.0.0-nightly.20210222":"90.0.4402.0","13.0.0-nightly.20210225":"90.0.4402.0","13.0.0-nightly.20210226":"90.0.4402.0","13.0.0-nightly.20210301":"90.0.4402.0","13.0.0-nightly.20210302":"90.0.4402.0","13.0.0-nightly.20210303":"90.0.4402.0","13.0.0":"91.0.4472.69","13.0.1":"91.0.4472.69","13.1.0":"91.0.4472.77","13.1.1":"91.0.4472.77","13.1.2":"91.0.4472.77","13.1.3":"91.0.4472.106","13.1.4":"91.0.4472.106","13.1.5":"91.0.4472.124","13.1.6":"91.0.4472.124","13.1.7":"91.0.4472.124","13.1.8":"91.0.4472.164","13.1.9":"91.0.4472.164","13.2.0":"91.0.4472.164","13.2.1":"91.0.4472.164","13.2.2":"91.0.4472.164","13.2.3":"91.0.4472.164","13.3.0":"91.0.4472.164","13.4.0":"91.0.4472.164","13.5.0":"91.0.4472.164","13.5.1":"91.0.4472.164","13.5.2":"91.0.4472.164","13.6.0":"91.0.4472.164","13.6.1":"91.0.4472.164","13.6.2":"91.0.4472.164","13.6.3":"91.0.4472.164","13.6.6":"91.0.4472.164","13.6.7":"91.0.4472.164","13.6.8":"91.0.4472.164","13.6.9":"91.0.4472.164","14.0.0-beta.1":"92.0.4511.0","14.0.0-beta.2":"92.0.4511.0","14.0.0-beta.3":"92.0.4511.0","14.0.0-beta.5":"93.0.4536.0","14.0.0-beta.6":"93.0.4536.0","14.0.0-beta.7":"93.0.4536.0","14.0.0-beta.8":"93.0.4536.0","14.0.0-beta.9":"93.0.4539.0","14.0.0-beta.10":"93.0.4539.0","14.0.0-beta.11":"93.0.4557.4","14.0.0-beta.12":"93.0.4557.4","14.0.0-beta.13":"93.0.4566.0","14.0.0-beta.14":"93.0.4566.0","14.0.0-beta.15":"93.0.4566.0","14.0.0-beta.16":"93.0.4566.0","14.0.0-beta.17":"93.0.4566.0","14.0.0-beta.18":"93.0.4577.15","14.0.0-beta.19":"93.0.4577.15","14.0.0-beta.20":"93.0.4577.15","14.0.0-beta.21":"93.0.4577.15","14.0.0-beta.22":"93.0.4577.25","14.0.0-beta.23":"93.0.4577.25","14.0.0-beta.24":"93.0.4577.51","14.0.0-beta.25":"93.0.4577.51","14.0.0-nightly.20210304":"90.0.4402.0","14.0.0-nightly.20210305":"90.0.4415.0","14.0.0-nightly.20210308":"90.0.4415.0","14.0.0-nightly.20210309":"90.0.4415.0","14.0.0-nightly.20210311":"90.0.4415.0","14.0.0-nightly.20210315":"90.0.4415.0","14.0.0-nightly.20210316":"90.0.4415.0","14.0.0-nightly.20210317":"90.0.4415.0","14.0.0-nightly.20210318":"90.0.4415.0","14.0.0-nightly.20210319":"90.0.4415.0","14.0.0-nightly.20210323":"90.0.4415.0","14.0.0-nightly.20210324":"90.0.4415.0","14.0.0-nightly.20210325":"90.0.4415.0","14.0.0-nightly.20210326":"90.0.4415.0","14.0.0-nightly.20210329":"90.0.4415.0","14.0.0-nightly.20210330":"90.0.4415.0","14.0.0-nightly.20210331":"91.0.4448.0","14.0.0-nightly.20210401":"91.0.4448.0","14.0.0-nightly.20210402":"91.0.4448.0","14.0.0-nightly.20210406":"91.0.4448.0","14.0.0-nightly.20210407":"91.0.4448.0","14.0.0-nightly.20210408":"91.0.4448.0","14.0.0-nightly.20210409":"91.0.4448.0","14.0.0-nightly.20210413":"91.0.4448.0","14.0.0-nightly.20210426":"92.0.4475.0","14.0.0-nightly.20210427":"92.0.4475.0","14.0.0-nightly.20210430":"92.0.4488.0","14.0.0-nightly.20210503":"92.0.4488.0","14.0.0-nightly.20210505":"92.0.4496.0","14.0.0-nightly.20210506":"92.0.4498.0","14.0.0-nightly.20210507":"92.0.4499.0","14.0.0-nightly.20210510":"92.0.4499.0","14.0.0-nightly.20210511":"92.0.4499.0","14.0.0-nightly.20210512":"92.0.4499.0","14.0.0-nightly.20210513":"92.0.4499.0","14.0.0-nightly.20210514":"92.0.4505.0","14.0.0-nightly.20210517":"92.0.4505.0","14.0.0-nightly.20210518":"92.0.4505.0","14.0.0-nightly.20210519":"92.0.4505.0","14.0.0-nightly.20210520":"92.0.4511.0","14.0.0-nightly.20210523":"92.0.4511.0","14.0.0-nightly.20210524":"92.0.4511.0","14.0.0":"93.0.4577.58","14.0.1":"93.0.4577.63","14.0.2":"93.0.4577.82","14.1.0":"93.0.4577.82","14.1.1":"93.0.4577.82","14.2.0":"93.0.4577.82","14.2.1":"93.0.4577.82","14.2.2":"93.0.4577.82","14.2.3":"93.0.4577.82","14.2.4":"93.0.4577.82","14.2.5":"93.0.4577.82","14.2.6":"93.0.4577.82","14.2.7":"93.0.4577.82","14.2.8":"93.0.4577.82","14.2.9":"93.0.4577.82","15.0.0-alpha.1":"93.0.4566.0","15.0.0-alpha.2":"93.0.4566.0","15.0.0-alpha.3":"94.0.4584.0","15.0.0-alpha.4":"94.0.4584.0","15.0.0-alpha.5":"94.0.4584.0","15.0.0-alpha.6":"94.0.4584.0","15.0.0-alpha.7":"94.0.4590.2","15.0.0-alpha.8":"94.0.4590.2","15.0.0-alpha.9":"94.0.4590.2","15.0.0-alpha.10":"94.0.4606.12","15.0.0-beta.1":"94.0.4606.20","15.0.0-beta.2":"94.0.4606.20","15.0.0-beta.3":"94.0.4606.31","15.0.0-beta.4":"94.0.4606.31","15.0.0-beta.5":"94.0.4606.31","15.0.0-beta.6":"94.0.4606.31","15.0.0-beta.7":"94.0.4606.31","15.0.0-nightly.20210527":"92.0.4511.0","15.0.0-nightly.20210528":"92.0.4511.0","15.0.0-nightly.20210531":"92.0.4511.0","15.0.0-nightly.20210601":"92.0.4511.0","15.0.0-nightly.20210602":"92.0.4511.0","15.0.0-nightly.20210603":"93.0.4530.0","15.0.0-nightly.20210604":"93.0.4530.0","15.0.0-nightly.20210608":"93.0.4535.0","15.0.0-nightly.20210609":"93.0.4536.0","15.0.0-nightly.20210610":"93.0.4536.0","15.0.0-nightly.20210611":"93.0.4536.0","15.0.0-nightly.20210614":"93.0.4536.0","15.0.0-nightly.20210615":"93.0.4536.0","15.0.0-nightly.20210616":"93.0.4536.0","15.0.0-nightly.20210617":"93.0.4539.0","15.0.0-nightly.20210618":"93.0.4539.0","15.0.0-nightly.20210621":"93.0.4539.0","15.0.0-nightly.20210622":"93.0.4539.0","15.0.0-nightly.20210623":"93.0.4550.0","15.0.0-nightly.20210624":"93.0.4550.0","15.0.0-nightly.20210625":"93.0.4552.0","15.0.0-nightly.20210628":"93.0.4552.0","15.0.0-nightly.20210629":"93.0.4552.0","15.0.0-nightly.20210630":"93.0.4558.0","15.0.0-nightly.20210701":"93.0.4558.0","15.0.0-nightly.20210702":"93.0.4558.0","15.0.0-nightly.20210705":"93.0.4558.0","15.0.0-nightly.20210706":"93.0.4566.0","15.0.0-nightly.20210707":"93.0.4566.0","15.0.0-nightly.20210708":"93.0.4566.0","15.0.0-nightly.20210709":"93.0.4566.0","15.0.0-nightly.20210712":"93.0.4566.0","15.0.0-nightly.20210713":"93.0.4566.0","15.0.0-nightly.20210714":"93.0.4566.0","15.0.0-nightly.20210715":"93.0.4566.0","15.0.0-nightly.20210716":"93.0.4566.0","15.0.0-nightly.20210719":"93.0.4566.0","15.0.0-nightly.20210720":"93.0.4566.0","15.0.0-nightly.20210721":"93.0.4566.0","15.0.0":"94.0.4606.51","15.1.0":"94.0.4606.61","15.1.1":"94.0.4606.61","15.1.2":"94.0.4606.71","15.2.0":"94.0.4606.81","15.3.0":"94.0.4606.81","15.3.1":"94.0.4606.81","15.3.2":"94.0.4606.81","15.3.3":"94.0.4606.81","15.3.4":"94.0.4606.81","15.3.5":"94.0.4606.81","15.3.6":"94.0.4606.81","15.3.7":"94.0.4606.81","15.4.0":"94.0.4606.81","15.4.1":"94.0.4606.81","15.4.2":"94.0.4606.81","15.5.0":"94.0.4606.81","15.5.1":"94.0.4606.81","15.5.2":"94.0.4606.81","15.5.3":"94.0.4606.81","15.5.4":"94.0.4606.81","15.5.5":"94.0.4606.81","15.5.6":"94.0.4606.81","15.5.7":"94.0.4606.81","16.0.0-alpha.1":"95.0.4629.0","16.0.0-alpha.2":"95.0.4629.0","16.0.0-alpha.3":"95.0.4629.0","16.0.0-alpha.4":"95.0.4629.0","16.0.0-alpha.5":"95.0.4629.0","16.0.0-alpha.6":"95.0.4629.0","16.0.0-alpha.7":"95.0.4629.0","16.0.0-alpha.8":"96.0.4647.0","16.0.0-alpha.9":"96.0.4647.0","16.0.0-beta.1":"96.0.4647.0","16.0.0-beta.2":"96.0.4647.0","16.0.0-beta.3":"96.0.4647.0","16.0.0-beta.4":"96.0.4664.18","16.0.0-beta.5":"96.0.4664.18","16.0.0-beta.6":"96.0.4664.27","16.0.0-beta.7":"96.0.4664.27","16.0.0-beta.8":"96.0.4664.35","16.0.0-beta.9":"96.0.4664.35","16.0.0-nightly.20210722":"93.0.4566.0","16.0.0-nightly.20210723":"93.0.4566.0","16.0.0-nightly.20210726":"93.0.4566.0","16.0.0-nightly.20210727":"94.0.4584.0","16.0.0-nightly.20210728":"94.0.4584.0","16.0.0-nightly.20210729":"94.0.4584.0","16.0.0-nightly.20210730":"94.0.4584.0","16.0.0-nightly.20210802":"94.0.4584.0","16.0.0-nightly.20210803":"94.0.4584.0","16.0.0-nightly.20210804":"94.0.4584.0","16.0.0-nightly.20210805":"94.0.4584.0","16.0.0-nightly.20210806":"94.0.4584.0","16.0.0-nightly.20210809":"94.0.4584.0","16.0.0-nightly.20210810":"94.0.4584.0","16.0.0-nightly.20210811":"94.0.4584.0","16.0.0-nightly.20210812":"94.0.4590.2","16.0.0-nightly.20210813":"94.0.4590.2","16.0.0-nightly.20210816":"94.0.4590.2","16.0.0-nightly.20210817":"94.0.4590.2","16.0.0-nightly.20210818":"94.0.4590.2","16.0.0-nightly.20210819":"94.0.4590.2","16.0.0-nightly.20210820":"94.0.4590.2","16.0.0-nightly.20210823":"94.0.4590.2","16.0.0-nightly.20210824":"95.0.4612.5","16.0.0-nightly.20210825":"95.0.4612.5","16.0.0-nightly.20210826":"95.0.4612.5","16.0.0-nightly.20210827":"95.0.4612.5","16.0.0-nightly.20210830":"95.0.4612.5","16.0.0-nightly.20210831":"95.0.4612.5","16.0.0-nightly.20210901":"95.0.4612.5","16.0.0-nightly.20210902":"95.0.4629.0","16.0.0-nightly.20210903":"95.0.4629.0","16.0.0-nightly.20210906":"95.0.4629.0","16.0.0-nightly.20210907":"95.0.4629.0","16.0.0-nightly.20210908":"95.0.4629.0","16.0.0-nightly.20210909":"95.0.4629.0","16.0.0-nightly.20210910":"95.0.4629.0","16.0.0-nightly.20210913":"95.0.4629.0","16.0.0-nightly.20210914":"95.0.4629.0","16.0.0-nightly.20210915":"95.0.4629.0","16.0.0-nightly.20210916":"95.0.4629.0","16.0.0-nightly.20210917":"95.0.4629.0","16.0.0-nightly.20210920":"95.0.4629.0","16.0.0-nightly.20210921":"95.0.4629.0","16.0.0-nightly.20210922":"95.0.4629.0","16.0.0":"96.0.4664.45","16.0.1":"96.0.4664.45","16.0.2":"96.0.4664.55","16.0.3":"96.0.4664.55","16.0.4":"96.0.4664.55","16.0.5":"96.0.4664.55","16.0.6":"96.0.4664.110","16.0.7":"96.0.4664.110","16.0.8":"96.0.4664.110","16.0.9":"96.0.4664.174","16.0.10":"96.0.4664.174","16.1.0":"96.0.4664.174","16.1.1":"96.0.4664.174","16.2.0":"96.0.4664.174","16.2.1":"96.0.4664.174","16.2.2":"96.0.4664.174","16.2.3":"96.0.4664.174","16.2.4":"96.0.4664.174","16.2.5":"96.0.4664.174","16.2.6":"96.0.4664.174","16.2.7":"96.0.4664.174","16.2.8":"96.0.4664.174","17.0.0-alpha.1":"96.0.4664.4","17.0.0-alpha.2":"96.0.4664.4","17.0.0-alpha.3":"96.0.4664.4","17.0.0-alpha.4":"98.0.4706.0","17.0.0-alpha.5":"98.0.4706.0","17.0.0-alpha.6":"98.0.4706.0","17.0.0-beta.1":"98.0.4706.0","17.0.0-beta.2":"98.0.4706.0","17.0.0-beta.3":"98.0.4758.9","17.0.0-beta.4":"98.0.4758.11","17.0.0-beta.5":"98.0.4758.11","17.0.0-beta.6":"98.0.4758.11","17.0.0-beta.7":"98.0.4758.11","17.0.0-beta.8":"98.0.4758.11","17.0.0-beta.9":"98.0.4758.11","17.0.0-nightly.20210923":"95.0.4629.0","17.0.0-nightly.20210924":"95.0.4629.0","17.0.0-nightly.20210927":"95.0.4629.0","17.0.0-nightly.20210928":"95.0.4629.0","17.0.0-nightly.20210929":"95.0.4629.0","17.0.0-nightly.20210930":"95.0.4629.0","17.0.0-nightly.20211001":"95.0.4629.0","17.0.0-nightly.20211004":"95.0.4629.0","17.0.0-nightly.20211005":"95.0.4629.0","17.0.0-nightly.20211006":"96.0.4647.0","17.0.0-nightly.20211007":"96.0.4647.0","17.0.0-nightly.20211008":"96.0.4647.0","17.0.0-nightly.20211011":"96.0.4647.0","17.0.0-nightly.20211012":"96.0.4647.0","17.0.0-nightly.20211013":"96.0.4647.0","17.0.0-nightly.20211014":"96.0.4647.0","17.0.0-nightly.20211015":"96.0.4647.0","17.0.0-nightly.20211018":"96.0.4647.0","17.0.0-nightly.20211019":"96.0.4647.0","17.0.0-nightly.20211020":"96.0.4647.0","17.0.0-nightly.20211021":"96.0.4647.0","17.0.0-nightly.20211022":"96.0.4664.4","17.0.0-nightly.20211025":"96.0.4664.4","17.0.0-nightly.20211026":"96.0.4664.4","17.0.0-nightly.20211027":"96.0.4664.4","17.0.0-nightly.20211028":"96.0.4664.4","17.0.0-nightly.20211029":"96.0.4664.4","17.0.0-nightly.20211101":"96.0.4664.4","17.0.0-nightly.20211102":"96.0.4664.4","17.0.0-nightly.20211103":"96.0.4664.4","17.0.0-nightly.20211104":"96.0.4664.4","17.0.0-nightly.20211105":"96.0.4664.4","17.0.0-nightly.20211108":"96.0.4664.4","17.0.0-nightly.20211109":"96.0.4664.4","17.0.0-nightly.20211110":"96.0.4664.4","17.0.0-nightly.20211111":"96.0.4664.4","17.0.0-nightly.20211112":"96.0.4664.4","17.0.0-nightly.20211115":"96.0.4664.4","17.0.0-nightly.20211116":"96.0.4664.4","17.0.0-nightly.20211117":"96.0.4664.4","17.0.0":"98.0.4758.74","17.0.1":"98.0.4758.82","17.1.0":"98.0.4758.102","17.1.1":"98.0.4758.109","17.1.2":"98.0.4758.109","17.2.0":"98.0.4758.109","17.3.0":"98.0.4758.141","17.3.1":"98.0.4758.141","17.4.0":"98.0.4758.141","17.4.1":"98.0.4758.141","17.4.2":"98.0.4758.141","17.4.3":"98.0.4758.141","17.4.4":"98.0.4758.141","17.4.5":"98.0.4758.141","17.4.6":"98.0.4758.141","17.4.7":"98.0.4758.141","17.4.8":"98.0.4758.141","17.4.9":"98.0.4758.141","17.4.10":"98.0.4758.141","17.4.11":"98.0.4758.141","18.0.0-alpha.1":"99.0.4767.0","18.0.0-alpha.2":"99.0.4767.0","18.0.0-alpha.3":"99.0.4767.0","18.0.0-alpha.4":"99.0.4767.0","18.0.0-alpha.5":"99.0.4767.0","18.0.0-beta.1":"100.0.4894.0","18.0.0-beta.2":"100.0.4894.0","18.0.0-beta.3":"100.0.4894.0","18.0.0-beta.4":"100.0.4894.0","18.0.0-beta.5":"100.0.4894.0","18.0.0-beta.6":"100.0.4894.0","18.0.0-nightly.20211118":"96.0.4664.4","18.0.0-nightly.20211119":"96.0.4664.4","18.0.0-nightly.20211122":"96.0.4664.4","18.0.0-nightly.20211123":"96.0.4664.4","18.0.0-nightly.20211124":"98.0.4706.0","18.0.0-nightly.20211125":"98.0.4706.0","18.0.0-nightly.20211126":"98.0.4706.0","18.0.0-nightly.20211129":"98.0.4706.0","18.0.0-nightly.20211130":"98.0.4706.0","18.0.0-nightly.20211201":"98.0.4706.0","18.0.0-nightly.20211202":"98.0.4706.0","18.0.0-nightly.20211203":"98.0.4706.0","18.0.0-nightly.20211206":"98.0.4706.0","18.0.0-nightly.20211207":"98.0.4706.0","18.0.0-nightly.20211208":"98.0.4706.0","18.0.0-nightly.20211209":"98.0.4706.0","18.0.0-nightly.20211210":"98.0.4706.0","18.0.0-nightly.20211213":"98.0.4706.0","18.0.0-nightly.20211214":"98.0.4706.0","18.0.0-nightly.20211215":"98.0.4706.0","18.0.0-nightly.20211216":"98.0.4706.0","18.0.0-nightly.20211217":"98.0.4706.0","18.0.0-nightly.20211220":"98.0.4706.0","18.0.0-nightly.20211221":"98.0.4706.0","18.0.0-nightly.20211222":"98.0.4706.0","18.0.0-nightly.20211223":"98.0.4706.0","18.0.0-nightly.20211228":"98.0.4706.0","18.0.0-nightly.20211229":"98.0.4706.0","18.0.0-nightly.20211231":"98.0.4706.0","18.0.0-nightly.20220103":"98.0.4706.0","18.0.0-nightly.20220104":"98.0.4706.0","18.0.0-nightly.20220105":"98.0.4706.0","18.0.0-nightly.20220106":"98.0.4706.0","18.0.0-nightly.20220107":"98.0.4706.0","18.0.0-nightly.20220110":"98.0.4706.0","18.0.0-nightly.20220111":"99.0.4767.0","18.0.0-nightly.20220112":"99.0.4767.0","18.0.0-nightly.20220113":"99.0.4767.0","18.0.0-nightly.20220114":"99.0.4767.0","18.0.0-nightly.20220117":"99.0.4767.0","18.0.0-nightly.20220118":"99.0.4767.0","18.0.0-nightly.20220119":"99.0.4767.0","18.0.0-nightly.20220121":"99.0.4767.0","18.0.0-nightly.20220124":"99.0.4767.0","18.0.0-nightly.20220125":"99.0.4767.0","18.0.0-nightly.20220127":"99.0.4767.0","18.0.0-nightly.20220128":"99.0.4767.0","18.0.0-nightly.20220131":"99.0.4767.0","18.0.0-nightly.20220201":"99.0.4767.0","18.0.0":"100.0.4896.56","18.0.1":"100.0.4896.60","18.0.2":"100.0.4896.60","18.0.3":"100.0.4896.75","18.0.4":"100.0.4896.75","18.1.0":"100.0.4896.127","18.2.0":"100.0.4896.143","18.2.1":"100.0.4896.143","18.2.2":"100.0.4896.143","18.2.3":"100.0.4896.143","18.2.4":"100.0.4896.160","18.3.0":"100.0.4896.160","18.3.1":"100.0.4896.160","18.3.2":"100.0.4896.160","18.3.3":"100.0.4896.160","18.3.4":"100.0.4896.160","18.3.5":"100.0.4896.160","18.3.6":"100.0.4896.160","18.3.7":"100.0.4896.160","18.3.8":"100.0.4896.160","18.3.9":"100.0.4896.160","18.3.11":"100.0.4896.160","18.3.12":"100.0.4896.160","18.3.13":"100.0.4896.160","18.3.14":"100.0.4896.160","18.3.15":"100.0.4896.160","19.0.0-alpha.1":"102.0.4962.3","19.0.0-alpha.2":"102.0.4971.0","19.0.0-alpha.3":"102.0.4971.0","19.0.0-alpha.4":"102.0.4989.0","19.0.0-alpha.5":"102.0.4989.0","19.0.0-beta.1":"102.0.4999.0","19.0.0-beta.2":"102.0.4999.0","19.0.0-beta.3":"102.0.4999.0","19.0.0-beta.4":"102.0.5005.27","19.0.0-beta.5":"102.0.5005.40","19.0.0-beta.6":"102.0.5005.40","19.0.0-beta.7":"102.0.5005.40","19.0.0-beta.8":"102.0.5005.49","19.0.0-nightly.20220202":"99.0.4767.0","19.0.0-nightly.20220203":"99.0.4767.0","19.0.0-nightly.20220204":"99.0.4767.0","19.0.0-nightly.20220207":"99.0.4767.0","19.0.0-nightly.20220208":"99.0.4767.0","19.0.0-nightly.20220209":"99.0.4767.0","19.0.0-nightly.20220308":"100.0.4894.0","19.0.0-nightly.20220309":"100.0.4894.0","19.0.0-nightly.20220310":"100.0.4894.0","19.0.0-nightly.20220311":"100.0.4894.0","19.0.0-nightly.20220314":"100.0.4894.0","19.0.0-nightly.20220315":"100.0.4894.0","19.0.0-nightly.20220316":"100.0.4894.0","19.0.0-nightly.20220317":"100.0.4894.0","19.0.0-nightly.20220318":"100.0.4894.0","19.0.0-nightly.20220321":"100.0.4894.0","19.0.0-nightly.20220322":"100.0.4894.0","19.0.0-nightly.20220323":"100.0.4894.0","19.0.0-nightly.20220324":"100.0.4894.0","19.0.0-nightly.20220325":"102.0.4961.0","19.0.0-nightly.20220328":"102.0.4962.3","19.0.0-nightly.20220329":"102.0.4962.3","19.0.0":"102.0.5005.61","19.0.1":"102.0.5005.61","19.0.2":"102.0.5005.63","19.0.3":"102.0.5005.63","19.0.4":"102.0.5005.63","19.0.5":"102.0.5005.115","19.0.6":"102.0.5005.115","19.0.7":"102.0.5005.134","19.0.8":"102.0.5005.148","19.0.9":"102.0.5005.167","19.0.10":"102.0.5005.167","19.0.11":"102.0.5005.167","19.0.12":"102.0.5005.167","19.0.13":"102.0.5005.167","19.0.14":"102.0.5005.167","19.0.15":"102.0.5005.167","19.0.16":"102.0.5005.167","19.0.17":"102.0.5005.167","19.1.0":"102.0.5005.167","19.1.1":"102.0.5005.167","19.1.2":"102.0.5005.167","19.1.3":"102.0.5005.167","19.1.4":"102.0.5005.167","19.1.5":"102.0.5005.167","19.1.6":"102.0.5005.167","19.1.7":"102.0.5005.167","19.1.8":"102.0.5005.167","19.1.9":"102.0.5005.167","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","20.0.0-alpha.3":"104.0.5073.0","20.0.0-alpha.4":"104.0.5073.0","20.0.0-alpha.5":"104.0.5073.0","20.0.0-alpha.6":"104.0.5073.0","20.0.0-alpha.7":"104.0.5073.0","20.0.0-beta.1":"104.0.5073.0","20.0.0-beta.2":"104.0.5073.0","20.0.0-beta.3":"104.0.5073.0","20.0.0-beta.4":"104.0.5073.0","20.0.0-beta.5":"104.0.5073.0","20.0.0-beta.6":"104.0.5073.0","20.0.0-beta.7":"104.0.5073.0","20.0.0-beta.8":"104.0.5073.0","20.0.0-beta.9":"104.0.5112.39","20.0.0-beta.10":"104.0.5112.48","20.0.0-beta.11":"104.0.5112.48","20.0.0-beta.12":"104.0.5112.48","20.0.0-beta.13":"104.0.5112.57","20.0.0-nightly.20220330":"102.0.4962.3","20.0.0-nightly.20220411":"102.0.4971.0","20.0.0-nightly.20220414":"102.0.4989.0","20.0.0-nightly.20220415":"102.0.4989.0","20.0.0-nightly.20220418":"102.0.4989.0","20.0.0-nightly.20220419":"102.0.4989.0","20.0.0-nightly.20220420":"102.0.4989.0","20.0.0-nightly.20220421":"102.0.4989.0","20.0.0-nightly.20220425":"102.0.4999.0","20.0.0-nightly.20220426":"102.0.4999.0","20.0.0-nightly.20220427":"102.0.4999.0","20.0.0-nightly.20220428":"102.0.4999.0","20.0.0-nightly.20220429":"102.0.4999.0","20.0.0-nightly.20220502":"102.0.4999.0","20.0.0-nightly.20220503":"102.0.4999.0","20.0.0-nightly.20220504":"102.0.4999.0","20.0.0-nightly.20220505":"102.0.4999.0","20.0.0-nightly.20220506":"102.0.4999.0","20.0.0-nightly.20220509":"102.0.4999.0","20.0.0-nightly.20220511":"102.0.4999.0","20.0.0-nightly.20220512":"102.0.4999.0","20.0.0-nightly.20220513":"102.0.4999.0","20.0.0-nightly.20220516":"102.0.4999.0","20.0.0-nightly.20220517":"102.0.4999.0","20.0.0-nightly.20220518":"103.0.5044.0","20.0.0-nightly.20220519":"103.0.5044.0","20.0.0-nightly.20220520":"103.0.5044.0","20.0.0-nightly.20220523":"103.0.5044.0","20.0.0-nightly.20220524":"103.0.5044.0","20.0.0":"104.0.5112.65","20.0.1":"104.0.5112.81","20.0.2":"104.0.5112.81","20.0.3":"104.0.5112.81","20.1.0":"104.0.5112.102","20.1.1":"104.0.5112.102","20.1.2":"104.0.5112.114","20.1.3":"104.0.5112.114","20.1.4":"104.0.5112.114","20.2.0":"104.0.5112.124","20.3.0":"104.0.5112.124","20.3.1":"104.0.5112.124","20.3.2":"104.0.5112.124","20.3.3":"104.0.5112.124","20.3.4":"104.0.5112.124","20.3.5":"104.0.5112.124","20.3.6":"104.0.5112.124","20.3.7":"104.0.5112.124","20.3.8":"104.0.5112.124","20.3.9":"104.0.5112.124","20.3.10":"104.0.5112.124","20.3.11":"104.0.5112.124","20.3.12":"104.0.5112.124","21.0.0-alpha.1":"105.0.5187.0","21.0.0-alpha.2":"105.0.5187.0","21.0.0-alpha.3":"105.0.5187.0","21.0.0-alpha.4":"105.0.5187.0","21.0.0-alpha.5":"105.0.5187.0","21.0.0-alpha.6":"106.0.5216.0","21.0.0-beta.1":"106.0.5216.0","21.0.0-beta.2":"106.0.5216.0","21.0.0-beta.3":"106.0.5216.0","21.0.0-beta.4":"106.0.5216.0","21.0.0-beta.5":"106.0.5216.0","21.0.0-beta.6":"106.0.5249.40","21.0.0-beta.7":"106.0.5249.40","21.0.0-beta.8":"106.0.5249.40","21.0.0-nightly.20220526":"103.0.5044.0","21.0.0-nightly.20220527":"103.0.5044.0","21.0.0-nightly.20220530":"103.0.5044.0","21.0.0-nightly.20220531":"103.0.5044.0","21.0.0-nightly.20220602":"104.0.5073.0","21.0.0-nightly.20220603":"104.0.5073.0","21.0.0-nightly.20220606":"104.0.5073.0","21.0.0-nightly.20220607":"104.0.5073.0","21.0.0-nightly.20220608":"104.0.5073.0","21.0.0-nightly.20220609":"104.0.5073.0","21.0.0-nightly.20220610":"104.0.5073.0","21.0.0-nightly.20220613":"104.0.5073.0","21.0.0-nightly.20220614":"104.0.5073.0","21.0.0-nightly.20220615":"104.0.5073.0","21.0.0-nightly.20220616":"104.0.5073.0","21.0.0-nightly.20220617":"104.0.5073.0","21.0.0-nightly.20220620":"104.0.5073.0","21.0.0-nightly.20220621":"104.0.5073.0","21.0.0-nightly.20220622":"104.0.5073.0","21.0.0-nightly.20220623":"104.0.5073.0","21.0.0-nightly.20220624":"104.0.5073.0","21.0.0-nightly.20220627":"104.0.5073.0","21.0.0-nightly.20220628":"105.0.5129.0","21.0.0-nightly.20220629":"105.0.5129.0","21.0.0-nightly.20220630":"105.0.5129.0","21.0.0-nightly.20220701":"105.0.5129.0","21.0.0-nightly.20220704":"105.0.5129.0","21.0.0-nightly.20220705":"105.0.5129.0","21.0.0-nightly.20220706":"105.0.5129.0","21.0.0-nightly.20220707":"105.0.5129.0","21.0.0-nightly.20220708":"105.0.5129.0","21.0.0-nightly.20220711":"105.0.5129.0","21.0.0-nightly.20220712":"105.0.5129.0","21.0.0-nightly.20220713":"105.0.5129.0","21.0.0-nightly.20220715":"105.0.5173.0","21.0.0-nightly.20220718":"105.0.5173.0","21.0.0-nightly.20220719":"105.0.5173.0","21.0.0-nightly.20220720":"105.0.5187.0","21.0.0-nightly.20220721":"105.0.5187.0","21.0.0-nightly.20220722":"105.0.5187.0","21.0.0-nightly.20220725":"105.0.5187.0","21.0.0-nightly.20220726":"105.0.5187.0","21.0.0-nightly.20220727":"105.0.5187.0","21.0.0-nightly.20220728":"105.0.5187.0","21.0.0-nightly.20220801":"105.0.5187.0","21.0.0-nightly.20220802":"105.0.5187.0","21.0.0":"106.0.5249.51","21.0.1":"106.0.5249.61","21.1.0":"106.0.5249.91","21.1.1":"106.0.5249.103","21.2.0":"106.0.5249.119","21.2.1":"106.0.5249.165","21.2.2":"106.0.5249.168","21.2.3":"106.0.5249.168","21.3.0":"106.0.5249.181","21.3.1":"106.0.5249.181","21.3.3":"106.0.5249.199","21.3.4":"106.0.5249.199","21.3.5":"106.0.5249.199","21.4.0":"106.0.5249.199","21.4.1":"106.0.5249.199","21.4.2":"106.0.5249.199","21.4.3":"106.0.5249.199","21.4.4":"106.0.5249.199","22.0.0-alpha.1":"107.0.5286.0","22.0.0-alpha.3":"108.0.5329.0","22.0.0-alpha.4":"108.0.5329.0","22.0.0-alpha.5":"108.0.5329.0","22.0.0-alpha.6":"108.0.5329.0","22.0.0-alpha.7":"108.0.5355.0","22.0.0-alpha.8":"108.0.5359.10","22.0.0-beta.1":"108.0.5359.10","22.0.0-beta.2":"108.0.5359.10","22.0.0-beta.3":"108.0.5359.10","22.0.0-beta.4":"108.0.5359.29","22.0.0-beta.5":"108.0.5359.40","22.0.0-beta.6":"108.0.5359.40","22.0.0-beta.7":"108.0.5359.48","22.0.0-beta.8":"108.0.5359.48","22.0.0-nightly.20220808":"105.0.5187.0","22.0.0-nightly.20220809":"105.0.5187.0","22.0.0-nightly.20220810":"105.0.5187.0","22.0.0-nightly.20220811":"105.0.5187.0","22.0.0-nightly.20220812":"105.0.5187.0","22.0.0-nightly.20220815":"105.0.5187.0","22.0.0-nightly.20220816":"105.0.5187.0","22.0.0-nightly.20220817":"105.0.5187.0","22.0.0-nightly.20220822":"106.0.5216.0","22.0.0-nightly.20220823":"106.0.5216.0","22.0.0-nightly.20220824":"106.0.5216.0","22.0.0-nightly.20220825":"106.0.5216.0","22.0.0-nightly.20220829":"106.0.5216.0","22.0.0-nightly.20220830":"106.0.5216.0","22.0.0-nightly.20220831":"106.0.5216.0","22.0.0-nightly.20220901":"106.0.5216.0","22.0.0-nightly.20220902":"106.0.5216.0","22.0.0-nightly.20220905":"106.0.5216.0","22.0.0-nightly.20220908":"107.0.5274.0","22.0.0-nightly.20220909":"107.0.5286.0","22.0.0-nightly.20220912":"107.0.5286.0","22.0.0-nightly.20220913":"107.0.5286.0","22.0.0-nightly.20220914":"107.0.5286.0","22.0.0-nightly.20220915":"107.0.5286.0","22.0.0-nightly.20220916":"107.0.5286.0","22.0.0-nightly.20220919":"107.0.5286.0","22.0.0-nightly.20220920":"107.0.5286.0","22.0.0-nightly.20220921":"107.0.5286.0","22.0.0-nightly.20220922":"107.0.5286.0","22.0.0-nightly.20220923":"107.0.5286.0","22.0.0-nightly.20220926":"107.0.5286.0","22.0.0-nightly.20220927":"107.0.5286.0","22.0.0-nightly.20220928":"107.0.5286.0","22.0.0":"108.0.5359.62","22.0.1":"108.0.5359.125","22.0.2":"108.0.5359.179","22.0.3":"108.0.5359.179","22.1.0":"108.0.5359.179","22.2.0":"108.0.5359.215","22.2.1":"108.0.5359.215","22.3.0":"108.0.5359.215","22.3.1":"108.0.5359.215","22.3.2":"108.0.5359.215","22.3.3":"108.0.5359.215","22.3.4":"108.0.5359.215","22.3.5":"108.0.5359.215","22.3.6":"108.0.5359.215","22.3.7":"108.0.5359.215","22.3.8":"108.0.5359.215","22.3.9":"108.0.5359.215","22.3.10":"108.0.5359.215","22.3.11":"108.0.5359.215","22.3.12":"108.0.5359.215","22.3.13":"108.0.5359.215","22.3.14":"108.0.5359.215","22.3.15":"108.0.5359.215","22.3.16":"108.0.5359.215","22.3.17":"108.0.5359.215","22.3.18":"108.0.5359.215","22.3.20":"108.0.5359.215","22.3.21":"108.0.5359.215","22.3.22":"108.0.5359.215","22.3.23":"108.0.5359.215","22.3.24":"108.0.5359.215","22.3.25":"108.0.5359.215","22.3.26":"108.0.5359.215","22.3.27":"108.0.5359.215","23.0.0-alpha.1":"110.0.5415.0","23.0.0-alpha.2":"110.0.5451.0","23.0.0-alpha.3":"110.0.5451.0","23.0.0-beta.1":"110.0.5478.5","23.0.0-beta.2":"110.0.5478.5","23.0.0-beta.3":"110.0.5478.5","23.0.0-beta.4":"110.0.5481.30","23.0.0-beta.5":"110.0.5481.38","23.0.0-beta.6":"110.0.5481.52","23.0.0-beta.8":"110.0.5481.52","23.0.0-nightly.20220929":"107.0.5286.0","23.0.0-nightly.20220930":"107.0.5286.0","23.0.0-nightly.20221003":"107.0.5286.0","23.0.0-nightly.20221004":"108.0.5329.0","23.0.0-nightly.20221005":"108.0.5329.0","23.0.0-nightly.20221006":"108.0.5329.0","23.0.0-nightly.20221007":"108.0.5329.0","23.0.0-nightly.20221010":"108.0.5329.0","23.0.0-nightly.20221011":"108.0.5329.0","23.0.0-nightly.20221012":"108.0.5329.0","23.0.0-nightly.20221013":"108.0.5329.0","23.0.0-nightly.20221014":"108.0.5329.0","23.0.0-nightly.20221017":"108.0.5329.0","23.0.0-nightly.20221018":"108.0.5355.0","23.0.0-nightly.20221019":"108.0.5355.0","23.0.0-nightly.20221020":"108.0.5355.0","23.0.0-nightly.20221021":"108.0.5355.0","23.0.0-nightly.20221024":"108.0.5355.0","23.0.0-nightly.20221026":"108.0.5355.0","23.0.0-nightly.20221027":"109.0.5382.0","23.0.0-nightly.20221028":"109.0.5382.0","23.0.0-nightly.20221031":"109.0.5382.0","23.0.0-nightly.20221101":"109.0.5382.0","23.0.0-nightly.20221102":"109.0.5382.0","23.0.0-nightly.20221103":"109.0.5382.0","23.0.0-nightly.20221104":"109.0.5382.0","23.0.0-nightly.20221107":"109.0.5382.0","23.0.0-nightly.20221108":"109.0.5382.0","23.0.0-nightly.20221109":"109.0.5382.0","23.0.0-nightly.20221110":"109.0.5382.0","23.0.0-nightly.20221111":"109.0.5382.0","23.0.0-nightly.20221114":"109.0.5382.0","23.0.0-nightly.20221115":"109.0.5382.0","23.0.0-nightly.20221116":"109.0.5382.0","23.0.0-nightly.20221117":"109.0.5382.0","23.0.0-nightly.20221118":"110.0.5415.0","23.0.0-nightly.20221121":"110.0.5415.0","23.0.0-nightly.20221122":"110.0.5415.0","23.0.0-nightly.20221123":"110.0.5415.0","23.0.0-nightly.20221124":"110.0.5415.0","23.0.0-nightly.20221125":"110.0.5415.0","23.0.0-nightly.20221128":"110.0.5415.0","23.0.0-nightly.20221129":"110.0.5415.0","23.0.0-nightly.20221130":"110.0.5415.0","23.0.0":"110.0.5481.77","23.1.0":"110.0.5481.100","23.1.1":"110.0.5481.104","23.1.2":"110.0.5481.177","23.1.3":"110.0.5481.179","23.1.4":"110.0.5481.192","23.2.0":"110.0.5481.192","23.2.1":"110.0.5481.208","23.2.2":"110.0.5481.208","23.2.3":"110.0.5481.208","23.2.4":"110.0.5481.208","23.3.0":"110.0.5481.208","23.3.1":"110.0.5481.208","23.3.2":"110.0.5481.208","23.3.3":"110.0.5481.208","23.3.4":"110.0.5481.208","23.3.5":"110.0.5481.208","23.3.6":"110.0.5481.208","23.3.7":"110.0.5481.208","23.3.8":"110.0.5481.208","23.3.9":"110.0.5481.208","23.3.10":"110.0.5481.208","23.3.11":"110.0.5481.208","23.3.12":"110.0.5481.208","23.3.13":"110.0.5481.208","24.0.0-alpha.1":"111.0.5560.0","24.0.0-alpha.2":"111.0.5560.0","24.0.0-alpha.3":"111.0.5560.0","24.0.0-alpha.4":"111.0.5560.0","24.0.0-alpha.5":"111.0.5560.0","24.0.0-alpha.6":"111.0.5560.0","24.0.0-alpha.7":"111.0.5560.0","24.0.0-beta.1":"111.0.5563.50","24.0.0-beta.2":"111.0.5563.50","24.0.0-beta.3":"112.0.5615.20","24.0.0-beta.4":"112.0.5615.20","24.0.0-beta.5":"112.0.5615.29","24.0.0-beta.6":"112.0.5615.39","24.0.0-beta.7":"112.0.5615.39","24.0.0-nightly.20221201":"110.0.5415.0","24.0.0-nightly.20221202":"110.0.5415.0","24.0.0-nightly.20221205":"110.0.5415.0","24.0.0-nightly.20221206":"110.0.5451.0","24.0.0-nightly.20221207":"110.0.5451.0","24.0.0-nightly.20221208":"110.0.5451.0","24.0.0-nightly.20221213":"110.0.5451.0","24.0.0-nightly.20221214":"110.0.5451.0","24.0.0-nightly.20221215":"110.0.5451.0","24.0.0-nightly.20221216":"110.0.5451.0","24.0.0-nightly.20230109":"111.0.5518.0","24.0.0-nightly.20230110":"111.0.5518.0","24.0.0-nightly.20230111":"111.0.5518.0","24.0.0-nightly.20230112":"111.0.5518.0","24.0.0-nightly.20230113":"111.0.5518.0","24.0.0-nightly.20230116":"111.0.5518.0","24.0.0-nightly.20230117":"111.0.5518.0","24.0.0-nightly.20230118":"111.0.5518.0","24.0.0-nightly.20230119":"111.0.5518.0","24.0.0-nightly.20230120":"111.0.5518.0","24.0.0-nightly.20230123":"111.0.5518.0","24.0.0-nightly.20230124":"111.0.5518.0","24.0.0-nightly.20230125":"111.0.5518.0","24.0.0-nightly.20230126":"111.0.5518.0","24.0.0-nightly.20230127":"111.0.5518.0","24.0.0-nightly.20230131":"111.0.5518.0","24.0.0-nightly.20230201":"111.0.5518.0","24.0.0-nightly.20230202":"111.0.5518.0","24.0.0-nightly.20230203":"111.0.5560.0","24.0.0-nightly.20230206":"111.0.5560.0","24.0.0-nightly.20230207":"111.0.5560.0","24.0.0-nightly.20230208":"111.0.5560.0","24.0.0-nightly.20230209":"111.0.5560.0","24.0.0":"112.0.5615.49","24.1.0":"112.0.5615.50","24.1.1":"112.0.5615.50","24.1.2":"112.0.5615.87","24.1.3":"112.0.5615.165","24.2.0":"112.0.5615.165","24.3.0":"112.0.5615.165","24.3.1":"112.0.5615.183","24.4.0":"112.0.5615.204","24.4.1":"112.0.5615.204","24.5.0":"112.0.5615.204","24.5.1":"112.0.5615.204","24.6.0":"112.0.5615.204","24.6.1":"112.0.5615.204","24.6.2":"112.0.5615.204","24.6.3":"112.0.5615.204","24.6.4":"112.0.5615.204","24.6.5":"112.0.5615.204","24.7.0":"112.0.5615.204","24.7.1":"112.0.5615.204","24.8.0":"112.0.5615.204","24.8.1":"112.0.5615.204","24.8.2":"112.0.5615.204","24.8.3":"112.0.5615.204","24.8.4":"112.0.5615.204","24.8.5":"112.0.5615.204","24.8.6":"112.0.5615.204","24.8.7":"112.0.5615.204","24.8.8":"112.0.5615.204","25.0.0-alpha.1":"114.0.5694.0","25.0.0-alpha.2":"114.0.5694.0","25.0.0-alpha.3":"114.0.5710.0","25.0.0-alpha.4":"114.0.5710.0","25.0.0-alpha.5":"114.0.5719.0","25.0.0-alpha.6":"114.0.5719.0","25.0.0-beta.1":"114.0.5719.0","25.0.0-beta.2":"114.0.5719.0","25.0.0-beta.3":"114.0.5719.0","25.0.0-beta.4":"114.0.5735.16","25.0.0-beta.5":"114.0.5735.16","25.0.0-beta.6":"114.0.5735.16","25.0.0-beta.7":"114.0.5735.16","25.0.0-beta.8":"114.0.5735.35","25.0.0-beta.9":"114.0.5735.45","25.0.0-nightly.20230210":"111.0.5560.0","25.0.0-nightly.20230214":"111.0.5560.0","25.0.0-nightly.20230215":"111.0.5560.0","25.0.0-nightly.20230216":"111.0.5560.0","25.0.0-nightly.20230217":"111.0.5560.0","25.0.0-nightly.20230220":"111.0.5560.0","25.0.0-nightly.20230221":"111.0.5560.0","25.0.0-nightly.20230222":"111.0.5560.0","25.0.0-nightly.20230223":"111.0.5560.0","25.0.0-nightly.20230224":"111.0.5560.0","25.0.0-nightly.20230227":"111.0.5560.0","25.0.0-nightly.20230228":"111.0.5560.0","25.0.0-nightly.20230301":"111.0.5560.0","25.0.0-nightly.20230302":"111.0.5560.0","25.0.0-nightly.20230303":"111.0.5560.0","25.0.0-nightly.20230306":"111.0.5560.0","25.0.0-nightly.20230307":"111.0.5560.0","25.0.0-nightly.20230308":"111.0.5560.0","25.0.0-nightly.20230309":"111.0.5560.0","25.0.0-nightly.20230310":"111.0.5560.0","25.0.0-nightly.20230314":"113.0.5636.0","25.0.0-nightly.20230315":"113.0.5651.0","25.0.0-nightly.20230317":"113.0.5653.0","25.0.0-nightly.20230320":"113.0.5660.0","25.0.0-nightly.20230321":"113.0.5664.0","25.0.0-nightly.20230322":"113.0.5666.0","25.0.0-nightly.20230323":"113.0.5668.0","25.0.0-nightly.20230324":"113.0.5670.0","25.0.0-nightly.20230327":"113.0.5670.0","25.0.0-nightly.20230328":"113.0.5670.0","25.0.0-nightly.20230329":"113.0.5670.0","25.0.0-nightly.20230330":"113.0.5670.0","25.0.0-nightly.20230331":"114.0.5684.0","25.0.0-nightly.20230403":"114.0.5684.0","25.0.0-nightly.20230404":"114.0.5692.0","25.0.0-nightly.20230405":"114.0.5694.0","25.0.0":"114.0.5735.45","25.0.1":"114.0.5735.45","25.1.0":"114.0.5735.106","25.1.1":"114.0.5735.106","25.2.0":"114.0.5735.134","25.3.0":"114.0.5735.199","25.3.1":"114.0.5735.243","25.3.2":"114.0.5735.248","25.4.0":"114.0.5735.248","25.5.0":"114.0.5735.289","25.6.0":"114.0.5735.289","25.7.0":"114.0.5735.289","25.8.0":"114.0.5735.289","25.8.1":"114.0.5735.289","25.8.2":"114.0.5735.289","25.8.3":"114.0.5735.289","25.8.4":"114.0.5735.289","25.9.0":"114.0.5735.289","25.9.1":"114.0.5735.289","25.9.2":"114.0.5735.289","25.9.3":"114.0.5735.289","26.0.0-alpha.1":"116.0.5791.0","26.0.0-alpha.2":"116.0.5791.0","26.0.0-alpha.3":"116.0.5791.0","26.0.0-alpha.4":"116.0.5791.0","26.0.0-alpha.5":"116.0.5791.0","26.0.0-alpha.6":"116.0.5815.0","26.0.0-alpha.7":"116.0.5831.0","26.0.0-alpha.8":"116.0.5845.0","26.0.0-beta.1":"116.0.5845.0","26.0.0-beta.2":"116.0.5845.14","26.0.0-beta.3":"116.0.5845.14","26.0.0-beta.4":"116.0.5845.14","26.0.0-beta.5":"116.0.5845.14","26.0.0-beta.6":"116.0.5845.14","26.0.0-beta.7":"116.0.5845.14","26.0.0-beta.8":"116.0.5845.42","26.0.0-beta.9":"116.0.5845.42","26.0.0-beta.10":"116.0.5845.49","26.0.0-beta.11":"116.0.5845.49","26.0.0-beta.12":"116.0.5845.62","26.0.0-nightly.20230406":"114.0.5694.0","26.0.0-nightly.20230407":"114.0.5694.0","26.0.0-nightly.20230410":"114.0.5694.0","26.0.0-nightly.20230411":"114.0.5694.0","26.0.0-nightly.20230412":"114.0.5708.0","26.0.0-nightly.20230413":"114.0.5710.0","26.0.0-nightly.20230414":"114.0.5710.0","26.0.0-nightly.20230417":"114.0.5710.0","26.0.0-nightly.20230418":"114.0.5715.0","26.0.0-nightly.20230421":"114.0.5719.0","26.0.0-nightly.20230424":"114.0.5719.0","26.0.0-nightly.20230425":"114.0.5719.0","26.0.0-nightly.20230426":"114.0.5719.0","26.0.0-nightly.20230427":"114.0.5719.0","26.0.0-nightly.20230428":"114.0.5719.0","26.0.0-nightly.20230501":"114.0.5719.0","26.0.0-nightly.20230502":"114.0.5719.0","26.0.0-nightly.20230503":"114.0.5719.0","26.0.0-nightly.20230504":"114.0.5719.0","26.0.0-nightly.20230505":"114.0.5719.0","26.0.0-nightly.20230508":"114.0.5719.0","26.0.0-nightly.20230509":"114.0.5719.0","26.0.0-nightly.20230510":"114.0.5719.0","26.0.0-nightly.20230511":"115.0.5760.0","26.0.0-nightly.20230512":"115.0.5760.0","26.0.0-nightly.20230515":"115.0.5760.0","26.0.0-nightly.20230516":"115.0.5760.0","26.0.0-nightly.20230517":"115.0.5760.0","26.0.0-nightly.20230518":"115.0.5760.0","26.0.0-nightly.20230519":"115.0.5760.0","26.0.0-nightly.20230522":"115.0.5760.0","26.0.0-nightly.20230523":"115.0.5760.0","26.0.0-nightly.20230524":"115.0.5786.0","26.0.0-nightly.20230525":"115.0.5790.0","26.0.0-nightly.20230526":"116.0.5791.0","26.0.0-nightly.20230529":"116.0.5791.0","26.0.0-nightly.20230530":"116.0.5791.0","26.0.0-nightly.20230531":"116.0.5791.0","26.0.0":"116.0.5845.82","26.1.0":"116.0.5845.97","26.2.0":"116.0.5845.179","26.2.1":"116.0.5845.188","26.2.2":"116.0.5845.190","26.2.3":"116.0.5845.190","26.2.4":"116.0.5845.190","26.3.0":"116.0.5845.228","26.4.0":"116.0.5845.228","26.4.1":"116.0.5845.228","26.4.2":"116.0.5845.228","26.4.3":"116.0.5845.228","27.0.0-alpha.1":"118.0.5949.0","27.0.0-alpha.2":"118.0.5949.0","27.0.0-alpha.3":"118.0.5949.0","27.0.0-alpha.4":"118.0.5949.0","27.0.0-alpha.5":"118.0.5949.0","27.0.0-alpha.6":"118.0.5949.0","27.0.0-beta.1":"118.0.5993.5","27.0.0-beta.2":"118.0.5993.5","27.0.0-beta.3":"118.0.5993.5","27.0.0-beta.4":"118.0.5993.11","27.0.0-beta.5":"118.0.5993.18","27.0.0-beta.6":"118.0.5993.18","27.0.0-beta.7":"118.0.5993.18","27.0.0-beta.8":"118.0.5993.18","27.0.0-beta.9":"118.0.5993.18","27.0.0-nightly.20230601":"116.0.5791.0","27.0.0-nightly.20230602":"116.0.5791.0","27.0.0-nightly.20230605":"116.0.5791.0","27.0.0-nightly.20230606":"116.0.5791.0","27.0.0-nightly.20230607":"116.0.5791.0","27.0.0-nightly.20230609":"116.0.5791.0","27.0.0-nightly.20230612":"116.0.5815.0","27.0.0-nightly.20230613":"116.0.5815.0","27.0.0-nightly.20230614":"116.0.5829.0","27.0.0-nightly.20230615":"116.0.5831.0","27.0.0-nightly.20230616":"116.0.5833.0","27.0.0-nightly.20230619":"116.0.5833.0","27.0.0-nightly.20230620":"116.0.5833.0","27.0.0-nightly.20230621":"116.0.5833.0","27.0.0-nightly.20230622":"116.0.5845.0","27.0.0-nightly.20230623":"116.0.5845.0","27.0.0-nightly.20230626":"116.0.5845.0","27.0.0-nightly.20230627":"116.0.5845.0","27.0.0-nightly.20230628":"116.0.5845.0","27.0.0-nightly.20230629":"116.0.5845.0","27.0.0-nightly.20230630":"116.0.5845.0","27.0.0-nightly.20230703":"117.0.5852.0","27.0.0-nightly.20230704":"117.0.5852.0","27.0.0-nightly.20230705":"117.0.5852.0","27.0.0-nightly.20230706":"117.0.5852.0","27.0.0-nightly.20230707":"117.0.5852.0","27.0.0-nightly.20230710":"117.0.5852.0","27.0.0-nightly.20230711":"117.0.5852.0","27.0.0-nightly.20230712":"117.0.5852.0","27.0.0-nightly.20230713":"117.0.5852.0","27.0.0-nightly.20230714":"117.0.5852.0","27.0.0-nightly.20230717":"117.0.5884.1","27.0.0-nightly.20230718":"117.0.5884.1","27.0.0-nightly.20230719":"117.0.5892.0","27.0.0-nightly.20230720":"117.0.5897.0","27.0.0-nightly.20230721":"117.0.5897.0","27.0.0-nightly.20230724":"117.0.5897.0","27.0.0-nightly.20230725":"117.0.5897.0","27.0.0-nightly.20230726":"117.0.5897.0","27.0.0-nightly.20230727":"117.0.5897.0","27.0.0-nightly.20230728":"117.0.5897.0","27.0.0-nightly.20230731":"117.0.5897.0","27.0.0-nightly.20230801":"117.0.5911.0","27.0.0-nightly.20230802":"117.0.5911.0","27.0.0-nightly.20230803":"117.0.5911.0","27.0.0-nightly.20230804":"117.0.5921.0","27.0.0-nightly.20230807":"117.0.5921.0","27.0.0-nightly.20230808":"117.0.5921.0","27.0.0-nightly.20230814":"117.0.5921.0","27.0.0-nightly.20230815":"117.0.5921.0","27.0.0-nightly.20230816":"118.0.5949.0","27.0.0":"118.0.5993.54","27.0.1":"118.0.5993.89","27.0.2":"118.0.5993.89","27.0.3":"118.0.5993.120","28.0.0-alpha.1":"119.0.6045.0","28.0.0-alpha.2":"119.0.6045.0","28.0.0-alpha.3":"119.0.6045.21","28.0.0-alpha.4":"119.0.6045.21","28.0.0-alpha.5":"119.0.6045.33","28.0.0-alpha.6":"119.0.6045.33","28.0.0-alpha.7":"119.0.6045.33","28.0.0-beta.1":"119.0.6045.33","28.0.0-beta.2":"120.0.6099.0","28.0.0-nightly.20230817":"118.0.5949.0","28.0.0-nightly.20230818":"118.0.5949.0","28.0.0-nightly.20230821":"118.0.5949.0","28.0.0-nightly.20230822":"118.0.5949.0","28.0.0-nightly.20230823":"118.0.5949.0","28.0.0-nightly.20230824":"118.0.5949.0","28.0.0-nightly.20230825":"118.0.5949.0","28.0.0-nightly.20230828":"118.0.5949.0","28.0.0-nightly.20230829":"118.0.5949.0","28.0.0-nightly.20230830":"118.0.5949.0","28.0.0-nightly.20230831":"118.0.5949.0","28.0.0-nightly.20230906":"118.0.5991.0","28.0.0-nightly.20230907":"118.0.5993.0","28.0.0-nightly.20230908":"118.0.5993.0","28.0.0-nightly.20230911":"118.0.5993.0","28.0.0-nightly.20230912":"118.0.5993.0","28.0.0-nightly.20230913":"118.0.5993.0","28.0.0-nightly.20230914":"118.0.5993.0","28.0.0-nightly.20230915":"118.0.5993.0","28.0.0-nightly.20230919":"119.0.6006.0","28.0.0-nightly.20230920":"119.0.6017.0","28.0.0-nightly.20230921":"119.0.6019.2","28.0.0-nightly.20230925":"119.0.6019.2","28.0.0-nightly.20230926":"119.0.6019.2","28.0.0-nightly.20230927":"119.0.6019.2","28.0.0-nightly.20230928":"119.0.6019.2","28.0.0-nightly.20230929":"119.0.6029.0","28.0.0-nightly.20231002":"119.0.6029.0","28.0.0-nightly.20231003":"119.0.6043.0","28.0.0-nightly.20231004":"119.0.6043.0","28.0.0-nightly.20231005":"119.0.6043.0","28.0.0-nightly.20231006":"119.0.6045.0","28.0.0-nightly.20231009":"119.0.6045.0","28.0.0-nightly.20231010":"119.0.6045.0","28.0.0-nightly.20231011":"119.0.6045.0","29.0.0-nightly.20231012":"119.0.6045.0","29.0.0-nightly.20231013":"119.0.6045.0","29.0.0-nightly.20231016":"119.0.6045.0","29.0.0-nightly.20231017":"119.0.6045.0","29.0.0-nightly.20231018":"119.0.6045.0","29.0.0-nightly.20231019":"119.0.6045.0","29.0.0-nightly.20231020":"119.0.6045.0","29.0.0-nightly.20231023":"119.0.6045.0","29.0.0-nightly.20231024":"119.0.6045.0","29.0.0-nightly.20231025":"120.0.6078.0","29.0.0-nightly.20231026":"120.0.6078.0","29.0.0-nightly.20231027":"120.0.6078.0","29.0.0-nightly.20231030":"120.0.6078.0","29.0.0-nightly.20231031":"120.0.6078.0","29.0.0-nightly.20231101":"120.0.6078.0","29.0.0-nightly.20231102":"121.0.6100.0","29.0.0-nightly.20231103":"121.0.6100.0"}
      \ 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 db0151ad980727..b42fe452188977 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.549",
      +  "version": "1.4.576",
         "description": "Provides a list of electron-to-chromium version mappings",
         "main": "index.js",
         "files": [
      diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js
      index 242ef583b8d2ce..cbf6e1a8eeb6a3 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
      @@ -135,5 +135,7 @@ module.exports = {
       	"26.1": "116",
       	"26.2": "116",
       	"26.3": "116",
      -	"27.0": "118"
      +	"26.4": "116",
      +	"27.0": "118",
      +	"28.0": "120"
       };
      \ 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 4a3b66325bf102..507b849f9cb003 100644
      --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json
      +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json
      @@ -1 +1 @@
      -{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","19.1":"102","20.0":"104","20.1":"104","20.2":"104","20.3":"104","21.0":"106","21.1":"106","21.2":"106","21.3":"106","21.4":"106","22.0":"108","22.1":"108","22.2":"108","22.3":"108","23.0":"110","23.1":"110","23.2":"110","23.3":"110","24.0":"112","24.1":"112","24.2":"112","24.3":"112","24.4":"112","24.5":"112","24.6":"112","24.7":"112","24.8":"112","25.0":"114","25.1":"114","25.2":"114","25.3":"114","25.4":"114","25.5":"114","25.6":"114","25.7":"114","25.8":"114","25.9":"114","26.0":"116","26.1":"116","26.2":"116","26.3":"116","27.0":"118"}
      \ No newline at end of file
      +{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","19.1":"102","20.0":"104","20.1":"104","20.2":"104","20.3":"104","21.0":"106","21.1":"106","21.2":"106","21.3":"106","21.4":"106","22.0":"108","22.1":"108","22.2":"108","22.3":"108","23.0":"110","23.1":"110","23.2":"110","23.3":"110","24.0":"112","24.1":"112","24.2":"112","24.3":"112","24.4":"112","24.5":"112","24.6":"112","24.7":"112","24.8":"112","25.0":"114","25.1":"114","25.2":"114","25.3":"114","25.4":"114","25.5":"114","25.6":"114","25.7":"114","25.8":"114","25.9":"114","26.0":"116","26.1":"116","26.2":"116","26.3":"116","26.4":"116","27.0":"118","28.0":"120"}
      \ No newline at end of file
      diff --git a/tools/node_modules/eslint/node_modules/punycode/package.json b/tools/node_modules/eslint/node_modules/punycode/package.json
      index 9d0790b2a69d03..b8b76fc76c2162 100644
      --- a/tools/node_modules/eslint/node_modules/punycode/package.json
      +++ b/tools/node_modules/eslint/node_modules/punycode/package.json
      @@ -1,6 +1,6 @@
       {
         "name": "punycode",
      -  "version": "2.3.0",
      +  "version": "2.3.1",
         "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
         "homepage": "https://mths.be/punycode",
         "main": "punycode.js",
      @@ -44,8 +44,8 @@
           "build": "node scripts/prepublish.js"
         },
         "devDependencies": {
      -    "codecov": "^1.0.1",
      -    "istanbul": "^0.4.1",
      +    "codecov": "^3.8.3",
      +    "nyc": "^15.1.0",
           "mocha": "^10.2.0"
         },
         "jspm": {
      diff --git a/tools/node_modules/eslint/node_modules/punycode/punycode.es6.js b/tools/node_modules/eslint/node_modules/punycode/punycode.es6.js
      index 244e1bfbf307da..dadece25b35f59 100644
      --- a/tools/node_modules/eslint/node_modules/punycode/punycode.es6.js
      +++ b/tools/node_modules/eslint/node_modules/punycode/punycode.es6.js
      @@ -422,7 +422,7 @@ const punycode = {
       	 * @memberOf punycode
       	 * @type String
       	 */
      -	'version': '2.1.0',
      +	'version': '2.3.1',
       	/**
       	 * An object of methods to convert from JavaScript's internal character
       	 * representation (UCS-2) to Unicode code points, and back.
      diff --git a/tools/node_modules/eslint/node_modules/punycode/punycode.js b/tools/node_modules/eslint/node_modules/punycode/punycode.js
      index 752b98a9fde674..a1ef251924c81e 100644
      --- a/tools/node_modules/eslint/node_modules/punycode/punycode.js
      +++ b/tools/node_modules/eslint/node_modules/punycode/punycode.js
      @@ -422,7 +422,7 @@ const punycode = {
       	 * @memberOf punycode
       	 * @type String
       	 */
      -	'version': '2.1.0',
      +	'version': '2.3.1',
       	/**
       	 * An object of methods to convert from JavaScript's internal character
       	 * representation (UCS-2) to Unicode code points, and back.
      diff --git a/tools/node_modules/eslint/package.json b/tools/node_modules/eslint/package.json
      index 2d2c2a85883ea5..38398a793d8b0d 100644
      --- a/tools/node_modules/eslint/package.json
      +++ b/tools/node_modules/eslint/package.json
      @@ -1,6 +1,6 @@
       {
         "name": "eslint",
      -  "version": "8.51.0",
      +  "version": "8.53.0",
         "author": "Nicholas C. Zakas ",
         "description": "An AST-based pattern checker for JavaScript.",
         "bin": {
      @@ -41,10 +41,6 @@
             "node tools/update-eslint-all.js",
             "git add packages/js/src/configs/eslint-all.js"
           ],
      -    "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": [
      @@ -62,11 +58,12 @@
         "dependencies": {
           "@eslint-community/eslint-utils": "^4.2.0",
           "@eslint-community/regexpp": "^4.6.1",
      -    "@eslint/eslintrc": "^2.1.2",
      -    "@eslint/js": "8.51.0",
      -    "@humanwhocodes/config-array": "^0.11.11",
      +    "@eslint/eslintrc": "^2.1.3",
      +    "@eslint/js": "8.53.0",
      +    "@humanwhocodes/config-array": "^0.11.13",
           "@humanwhocodes/module-importer": "^1.0.1",
           "@nodelib/fs.walk": "^1.2.8",
      +    "@ungap/structured-clone": "^1.2.0",
           "ajv": "^6.12.4",
           "chalk": "^4.0.0",
           "cross-spawn": "^7.0.2",
      @@ -133,12 +130,6 @@
           "markdownlint-cli": "^0.31.1",
           "marked": "^4.0.8",
           "memfs": "^3.0.1",
      -    "metascraper": "^5.25.7",
      -    "metascraper-description": "^5.25.7",
      -    "metascraper-image": "^5.29.3",
      -    "metascraper-logo": "^5.25.7",
      -    "metascraper-logo-favicon": "^5.25.7",
      -    "metascraper-title": "^5.25.7",
           "mocha": "^8.3.2",
           "mocha-junit-reporter": "^2.0.0",
           "node-polyfill-webpack-plugin": "^1.0.3",
      diff --git a/tools/osx-notarize.sh b/tools/osx-notarize.sh
      index 499bf168b23562..bd7ae48a8b15c0 100755
      --- a/tools/osx-notarize.sh
      +++ b/tools/osx-notarize.sh
      @@ -3,10 +3,6 @@
       # Notarize a generated node-.pkg file as an Apple requirement for installation on macOS Catalina and later, as validated by Gatekeeper.
       # Uses notarytool and requires Xcode >= 13.0.
       
      -version() {
      -  echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }' || echo "0"
      -}
      -
       pkgid="$1"
       
       if [ -z "$pkgid" ]; then
      @@ -41,22 +37,21 @@ fi
       # Submit the package for notarization
       # TODO(@ulisesGascon): refactor to use --keychain-profile
       # when https://github.com/nodejs/build/issues/3385#issuecomment-1729281269 is ready
      -notarization_output=$(
      -  xcrun notarytool submit \
      -    --apple-id "$NOTARIZATION_ID" \
      -    --password "$NOTARIZATION_PASSWORD" \
      -    --team-id "$NOTARIZATION_TEAM_ID" \
      -    --wait \
      -    "node-$pkgid.pkg" 2>&1
      -)
      +echo "Submitting node-$pkgid.pkg for notarization..."
      +
      +xcrun notarytool submit \
      +  --apple-id "$NOTARIZATION_ID" \
      +  --password "$NOTARIZATION_PASSWORD" \
      +  --team-id "$NOTARIZATION_TEAM_ID" \
      +  --wait \
      +  "node-$pkgid.pkg"
       
       if [ $? -eq 0 ]; then
      -  # Extract the operation ID from the output
      -  operation_id=$(echo "$notarization_output" | awk '/RequestUUID/ {print $NF}')
      -  echo "Notarization submitted. Operation ID: $operation_id"
      -  exit 0
      +  echo "Notarization node-$pkgid.pkg submitted successfully."
       else
      -  echo "Notarization failed. Error: $notarization_output"
      +  echo "Notarization node-$pkgid.pkg failed."
         exit 1
       fi
       
      +xcrun stapler staple "node-$pkgid.pkg"
      +echo "Stapler was successful."
      \ No newline at end of file
      diff --git a/tools/search_files.py b/tools/search_files.py
      new file mode 100755
      index 00000000000000..65d0e1be42f0a8
      --- /dev/null
      +++ b/tools/search_files.py
      @@ -0,0 +1,20 @@
      +#!/usr/bin/env python3
      +# Copyright 2008 the V8 project authors.
      +# Copyright 2023 Microsoft Inc.
      +# Use of this source code is governed by a BSD-style license that can be
      +# found in the LICENSE file.
      +
      +import os
      +import sys
      +
      +from utils import SearchFiles
      +
      +
      +if __name__ == '__main__':
      +  try:
      +    files = SearchFiles(*sys.argv[2:])
      +    files = [ os.path.relpath(x, sys.argv[1]) for x in files ]
      +    print('\n'.join(files))
      +  except Exception as e:
      +    print(str(e))
      +    sys.exit(1)
      diff --git a/tools/test.py b/tools/test.py
      index d35b45a669bccc..5a2bcb3b6d92ca 100755
      --- a/tools/test.py
      +++ b/tools/test.py
      @@ -915,6 +915,7 @@ def GetTestStatus(self, context, sections, defs):
       TIMEOUT_SCALEFACTOR = {
           'arm'       : { 'debug' :  8, 'release' : 3 }, # The ARM buildbots are slow.
           'riscv64'   : { 'debug' :  8, 'release' : 3 }, # The riscv devices are slow.
      +    'loong64'   : { 'debug' :  4, 'release' : 1 },
           'ia32'      : { 'debug' :  4, 'release' : 1 },
           'ppc'       : { 'debug' :  4, 'release' : 1 },
           's390'      : { 'debug' :  4, 'release' : 1 } }
      diff --git a/tools/utils.py b/tools/utils.py
      index 32a3b3dbcb824c..f0172b3c825a05 100644
      --- a/tools/utils.py
      +++ b/tools/utils.py
      @@ -99,6 +99,8 @@ def GuessArchitecture():
           return 's390'
         elif id == 'riscv64':
           return 'riscv64'
      +  elif id == 'loong64':
      +    return 'loong64'
         else:
           id = platform.processor()
           if id == 'powerpc':
      diff --git a/tools/v8_gypfiles/toolchain.gypi b/tools/v8_gypfiles/toolchain.gypi
      index bcecdb21aeb368..b311c04d29281f 100644
      --- a/tools/v8_gypfiles/toolchain.gypi
      +++ b/tools/v8_gypfiles/toolchain.gypi
      @@ -41,7 +41,7 @@
           'has_valgrind%': 0,
           'coverage%': 0,
           'v8_target_arch%': '<(target_arch)',
      -    'v8_host_byteorder%': '